From 16b7cdc488116db0f25120a12adde3d04f12b87c Mon Sep 17 00:00:00 2001 From: Chiggy-Playz Date: Sun, 3 Oct 2021 16:18:46 +0530 Subject: [PATCH 1/3] Sort event references by categories --- docs/Python/doctrees/api.doctree | Bin 0 -> 7461039 bytes docs/Python/doctrees/discord.doctree | Bin 0 -> 26317 bytes docs/Python/doctrees/environment.pickle | Bin 0 -> 2471857 bytes docs/Python/doctrees/ext/commands/api.doctree | Bin 0 -> 2078459 bytes .../Python/doctrees/ext/commands/cogs.doctree | Bin 0 -> 32844 bytes .../doctrees/ext/commands/commands.doctree | Bin 0 -> 184097 bytes .../doctrees/ext/commands/extensions.doctree | Bin 0 -> 15313 bytes .../doctrees/ext/commands/index.doctree | Bin 0 -> 6738 bytes .../ext/commands/slash-commands.doctree | Bin 0 -> 9140 bytes docs/Python/doctrees/ext/tasks/index.doctree | Bin 0 -> 113317 bytes docs/Python/doctrees/faq.doctree | Bin 0 -> 97713 bytes docs/Python/doctrees/index.doctree | Bin 0 -> 16860 bytes docs/Python/doctrees/intents.doctree | Bin 0 -> 60760 bytes docs/Python/doctrees/intro.doctree | Bin 0 -> 17563 bytes docs/Python/doctrees/logging.doctree | Bin 0 -> 12130 bytes docs/Python/doctrees/migrating.doctree | Bin 0 -> 333580 bytes .../doctrees/migrating_to_async.doctree | Bin 0 -> 55534 bytes docs/Python/doctrees/quickstart.doctree | Bin 0 -> 19894 bytes .../doctrees/version_guarantees.doctree | Bin 0 -> 11114 bytes docs/Python/doctrees/whats_new.doctree | Bin 0 -> 702489 bytes docs/Python/html/_images/snake.svg | 17 + docs/Python/html/_images/snake_dark.svg | 17 + docs/Python/html/_sources/api.rst.txt | 4242 ++ docs/Python/html/_sources/discord.rst.txt | 96 + .../html/_sources/ext/commands/api.rst.txt | 681 + .../html/_sources/ext/commands/cogs.rst.txt | 159 + .../_sources/ext/commands/commands.rst.txt | 962 + .../_sources/ext/commands/extensions.rst.txt | 64 + .../html/_sources/ext/commands/index.rst.txt | 19 + .../ext/commands/slash-commands.rst.txt | 23 + .../html/_sources/ext/tasks/index.rst.txt | 154 + docs/Python/html/_sources/faq.rst.txt | 443 + docs/Python/html/_sources/index.rst.txt | 76 + docs/Python/html/_sources/intents.rst.txt | 192 + docs/Python/html/_sources/intro.rst.txt | 113 + docs/Python/html/_sources/logging.rst.txt | 46 + docs/Python/html/_sources/migrating.rst.txt | 1172 + .../html/_sources/migrating_to_async.rst.txt | 322 + docs/Python/html/_sources/quickstart.rst.txt | 79 + .../html/_sources/version_guarantees.rst.txt | 30 + docs/Python/html/_sources/whats_new.rst.txt | 1315 + docs/Python/html/_static/basic.css | 904 + docs/Python/html/_static/codeblocks.css | 143 + docs/Python/html/_static/copy.js | 34 + docs/Python/html/_static/custom.js | 97 + docs/Python/html/_static/discord_py_logo.ico | Bin 0 -> 270398 bytes docs/Python/html/_static/doctools.js | 323 + .../html/_static/documentation_options.js | 12 + docs/Python/html/_static/icons.css | 10 + docs/Python/html/_static/icons.woff | Bin 0 -> 2608 bytes docs/Python/html/_static/jquery-3.5.1.js | 10872 +++++ docs/Python/html/_static/jquery.js | 2 + docs/Python/html/_static/language_data.js | 382 + docs/Python/html/_static/pygments.css | 69 + docs/Python/html/_static/scorer.js | 83 + docs/Python/html/_static/searchtools.js | 528 + docs/Python/html/_static/settings.js | 106 + docs/Python/html/_static/sidebar.js | 127 + docs/Python/html/_static/style.css | 1326 + docs/Python/html/_static/underscore-1.13.1.js | 2042 + docs/Python/html/_static/underscore.js | 6 + docs/Python/html/api.html | 34431 ++++++++++++++++ docs/Python/html/discord.html | 234 + docs/Python/html/ext/commands/api.html | 8921 ++++ docs/Python/html/ext/commands/cogs.html | 282 + docs/Python/html/ext/commands/commands.html | 1021 + docs/Python/html/ext/commands/extensions.html | 200 + docs/Python/html/ext/commands/index.html | 184 + .../html/ext/commands/slash-commands.html | 149 + docs/Python/html/ext/tasks/index.html | 704 + docs/Python/html/faq.html | 601 + docs/Python/html/genindex.html | 5392 +++ docs/Python/html/index.html | 213 + docs/Python/html/intents.html | 331 + docs/Python/html/intro.html | 242 + docs/Python/html/logging.html | 171 + docs/Python/html/migrating.html | 1462 + docs/Python/html/migrating_to_async.html | 457 + docs/Python/html/objects.inv | Bin 0 -> 18639 bytes docs/Python/html/quickstart.html | 205 + docs/Python/html/search.html | 167 + docs/Python/html/searchindex.js | 1 + docs/Python/html/version_guarantees.html | 174 + docs/Python/html/whats_new.html | 1885 + docs/api.rst | 1187 +- 85 files changed, 85331 insertions(+), 571 deletions(-) create mode 100644 docs/Python/doctrees/api.doctree create mode 100644 docs/Python/doctrees/discord.doctree create mode 100644 docs/Python/doctrees/environment.pickle create mode 100644 docs/Python/doctrees/ext/commands/api.doctree create mode 100644 docs/Python/doctrees/ext/commands/cogs.doctree create mode 100644 docs/Python/doctrees/ext/commands/commands.doctree create mode 100644 docs/Python/doctrees/ext/commands/extensions.doctree create mode 100644 docs/Python/doctrees/ext/commands/index.doctree create mode 100644 docs/Python/doctrees/ext/commands/slash-commands.doctree create mode 100644 docs/Python/doctrees/ext/tasks/index.doctree create mode 100644 docs/Python/doctrees/faq.doctree create mode 100644 docs/Python/doctrees/index.doctree create mode 100644 docs/Python/doctrees/intents.doctree create mode 100644 docs/Python/doctrees/intro.doctree create mode 100644 docs/Python/doctrees/logging.doctree create mode 100644 docs/Python/doctrees/migrating.doctree create mode 100644 docs/Python/doctrees/migrating_to_async.doctree create mode 100644 docs/Python/doctrees/quickstart.doctree create mode 100644 docs/Python/doctrees/version_guarantees.doctree create mode 100644 docs/Python/doctrees/whats_new.doctree create mode 100644 docs/Python/html/_images/snake.svg create mode 100644 docs/Python/html/_images/snake_dark.svg create mode 100644 docs/Python/html/_sources/api.rst.txt create mode 100644 docs/Python/html/_sources/discord.rst.txt create mode 100644 docs/Python/html/_sources/ext/commands/api.rst.txt create mode 100644 docs/Python/html/_sources/ext/commands/cogs.rst.txt create mode 100644 docs/Python/html/_sources/ext/commands/commands.rst.txt create mode 100644 docs/Python/html/_sources/ext/commands/extensions.rst.txt create mode 100644 docs/Python/html/_sources/ext/commands/index.rst.txt create mode 100644 docs/Python/html/_sources/ext/commands/slash-commands.rst.txt create mode 100644 docs/Python/html/_sources/ext/tasks/index.rst.txt create mode 100644 docs/Python/html/_sources/faq.rst.txt create mode 100644 docs/Python/html/_sources/index.rst.txt create mode 100644 docs/Python/html/_sources/intents.rst.txt create mode 100644 docs/Python/html/_sources/intro.rst.txt create mode 100644 docs/Python/html/_sources/logging.rst.txt create mode 100644 docs/Python/html/_sources/migrating.rst.txt create mode 100644 docs/Python/html/_sources/migrating_to_async.rst.txt create mode 100644 docs/Python/html/_sources/quickstart.rst.txt create mode 100644 docs/Python/html/_sources/version_guarantees.rst.txt create mode 100644 docs/Python/html/_sources/whats_new.rst.txt create mode 100644 docs/Python/html/_static/basic.css create mode 100644 docs/Python/html/_static/codeblocks.css create mode 100644 docs/Python/html/_static/copy.js create mode 100644 docs/Python/html/_static/custom.js create mode 100644 docs/Python/html/_static/discord_py_logo.ico create mode 100644 docs/Python/html/_static/doctools.js create mode 100644 docs/Python/html/_static/documentation_options.js create mode 100644 docs/Python/html/_static/icons.css create mode 100644 docs/Python/html/_static/icons.woff create mode 100644 docs/Python/html/_static/jquery-3.5.1.js create mode 100644 docs/Python/html/_static/jquery.js create mode 100644 docs/Python/html/_static/language_data.js create mode 100644 docs/Python/html/_static/pygments.css create mode 100644 docs/Python/html/_static/scorer.js create mode 100644 docs/Python/html/_static/searchtools.js create mode 100644 docs/Python/html/_static/settings.js create mode 100644 docs/Python/html/_static/sidebar.js create mode 100644 docs/Python/html/_static/style.css create mode 100644 docs/Python/html/_static/underscore-1.13.1.js create mode 100644 docs/Python/html/_static/underscore.js create mode 100644 docs/Python/html/api.html create mode 100644 docs/Python/html/discord.html create mode 100644 docs/Python/html/ext/commands/api.html create mode 100644 docs/Python/html/ext/commands/cogs.html create mode 100644 docs/Python/html/ext/commands/commands.html create mode 100644 docs/Python/html/ext/commands/extensions.html create mode 100644 docs/Python/html/ext/commands/index.html create mode 100644 docs/Python/html/ext/commands/slash-commands.html create mode 100644 docs/Python/html/ext/tasks/index.html create mode 100644 docs/Python/html/faq.html create mode 100644 docs/Python/html/genindex.html create mode 100644 docs/Python/html/index.html create mode 100644 docs/Python/html/intents.html create mode 100644 docs/Python/html/intro.html create mode 100644 docs/Python/html/logging.html create mode 100644 docs/Python/html/migrating.html create mode 100644 docs/Python/html/migrating_to_async.html create mode 100644 docs/Python/html/objects.inv create mode 100644 docs/Python/html/quickstart.html create mode 100644 docs/Python/html/search.html create mode 100644 docs/Python/html/searchindex.js create mode 100644 docs/Python/html/version_guarantees.html create mode 100644 docs/Python/html/whats_new.html diff --git a/docs/Python/doctrees/api.doctree b/docs/Python/doctrees/api.doctree new file mode 100644 index 0000000000000000000000000000000000000000..d6d2bfac9c12417de1b0076e9eefc9222d947c6e GIT binary patch literal 7461039 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%0AdI-i|2gYpW^Jm!&acD4l6E$FcV`B$;j?X|* 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%0A09n>$5&Dx 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 FxH;u`Cj>0zhj8y^NiNPw^dVfAQpSgH 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

tY1^wNLFg8sP<7Na3EduqVqV)$vl^*;PL(;5 zjWBo3&SLGv=z~thkbMG{h>fV!Xf~Qf>j9Be56lYu@f zBbC9BeKw0C271b5pwr=MN(M59Y_h?kpC>Vq&yd|m(a#KnS0p{~>PCLtukNLr-HO|4VlNLD0~IOGLgaFKY9kSTr;Z z+egsQ7EmWW4dooIbqLp?q1n*1ku>x-j2?Q>O+&VCO=i$-&}oQ-jsu|yXh>y{q#;aT zv$I$<^kL{!(9l6xA{wGnqiJY1jL@+78aW-B=32p^wwcU_MoLiuCR&Zr5J@iUm{im* zqoqJ(-cKi5d0)k%h>D&!sp#WyH6;~I)NXfMgrOD}J&W0Vtn5FEi=204a;-hxgy>|p zJTM_rcVtSwV>)y;wiY4chbU%{&Vd@~S?EkhYaPLLSm+XHnh6WBVMrJ1<3G=1)X;Zs z4zj&!(t>V*&Os#fL=c*QgH+~74#LbeJB!6Z--b>F2i=V&;vgzDnuE5%rR_)t;t#p$ zXo8lR@Xv-MD8N3yz&ME1rW$5i|4K$F1Mc}biz4oM!Q`GF!_}1Bv$5?hi+TQzIs8-E zdld6*>AD#ck0H_#&+}|{fOsazJ25HV!8@;FV-XzpGo#m`LVDVH#nD;^Z5`Tq51M8| zJIXGdbzZ=Tq2t`FW4qKO0^IT{wY%CG$P^sap z(_iUM$vV(78`dE~0oK_a9HCeTYnZIFCtl5F6?!R)BG!4yWSt%1Y8I@6CRnWVBIfYU zviB&~+1$lC`0yqj=N!pK2RLWE^; zXcdDbnBol#Lmq%D%^Mis0bhl4q8=>g8yMf>=EQ^hi~>qJP5(^#7*tjUJEC zD8ZI%hem#Od$&PHNrnsc1_qj84G;f9()p%T+&MhxZ(uC4zk@m!TwUxI z-#aMtv;M^G*shCc1E8m!&VK)<37l`;@Lmm=SLmt2d9Uq-9)B{UWrOi} zowqD&6fS zHA%jDn5g0vfhlhPSy}uV#(A{V!I{O{O9E3?!b?uO*CJ{_hPOm&6^n><5CxM>5hnYH*jX5HU1EoMW$Xann`1+h0OT!H5x>5gV7{s> zk^n)MrU1y9(5V2(Sy&=~P^r-XncWU|GNtGtg`W%Pfu^?g;31sv^}|eO-swZ18fxwu z2`LT9-t3*E{WdsKN(zAEDh!4IhpfY)CTx6B1}g(>e1Sy~Hr_L_@j1Af5*rhPF0-KV zU(CD9W&ciS=<}e7h>d+IY!);eSJ++Nw^2S!H`&Z2$an`e{HCvA-8V|NZ&@NoH2>2e zlMXGe#UpFr^VwCr_3-P2f2!WE6Z}*?U1Q@Y7k&on1#ZhD4vu=*(MBH$!`>);fW1h` z@~)9A3En6LGic4^?GbP*T$OMHtF&LoHX`x%t?AhGa1KW zrEI3RqgfQ?#s+ZL>QCLg4d7}@VwxJ_LW`Z&8wJTYLMq{8CvAQ^70GG8BlF8;JS~O_ zyUfn>W?@G#O=Y8#(9{N~>I_!ZcasfC4Liy*i5+xr3he9(oeJzM#S&qMO5xa1={P*_ z%!OQCTdZnF=4eqhrntQ6TC30^TW12B(JU;0nZq$AVjSmM9CKpt6*6iWjO2&0C<4q# z6EGi!t0@69$>lil zD4Qfs(5oqMayoP>aPny^5l*PoXq?O`_E*Yq9w$G4)?#VE#Cazu8rMUK90~iiX{~dr zJ4%TPVC3@{4}lR?iNj40xe_a6Gp1b5q6i}6Oo&_pS5rd7xDk}5S_m11$u}ewa3VyX z?b7Yuej;`jLR^>FW8R(E158@k(j)*GgF4>o>$on?cYh4(=~Dq(jft4=KImwp&nd&^ zyFXwrQob}9`C<>Qbq-1mneR3!ciWtz>!yv_DtjasVfv=vqL;uZ!9_1)iMWVL;ant9 zKD;4&UPqfod%ZK_L)wfl1@EpiIE%AWIPVmB~bWs8&W z(*#s>OI9@20Iuwkph4fJ0L@O&sQ}H+SR&9+DI7E^6NiVI<}P@!b3FVndI;x}Rkbm` zMK#X^Gh=*d0mvMRVG-lFUyb8Vi1~<&Tn3ZfgIN?IW}=Ch55d)xh?(qko&}hVF%J)v zD#QZJ0T{u9@E;dof>+sbUJ1K_X)7C?1TYg((RNle7GRWJ5-{l66o5GeIu(F96-xvd zDm5A~vrE10r9w1XoJ+gZwjNaENEkV~jFgfBFu4qaAz&iwaHt6*SIA&xfRP~B-ag3#1Rj1z4uBzi&+J$Ru9Oc4~K)s|>-TNJF^yy^SRQG%AMM{>bMzSQD>MnLI z?M_whw#h`-O`Gbf+>s=NxtoH7UI3#63B8CVA|Wb;laK`X@CNPKUZJm`y>_CFDaK8= zlY^*jJq}V6i)a#(q5>qe;pILFi8^NDjl}EOOl{X^QIuDk8+qlu17XR6goF_m32lZs z_pZ!qCkbiOT4I_HQ`lS_WL{x!dDGE6n3J-VNjPY8RB)PXY6Cq47|I?A4D@FTU@U=7 z1u%BN5&?rs;lNN?H#}s_fqhEt`iBC-py6DP5{)y##waB#0FHw&AYz18l{nr+%ZJE_ zWiUh^$f5`xTbbzC7p|s6hp`|fO|{^$1!mv=Qh_LV(4y19B6b!&T$k8kUI%snb5J%k z2|%_&6$`9ltm&(=NCE_1ngSpvL#F~DpTrUYgh~wuNTt78jWd6B0z@><1|UjS03erQ zKqNq9C5|@%p>U0C^Bg1Q04U8X)tkrQXg$Um3pY9Qjbg zxs1r|Gl9uiO?POmM2&gfn^&LEWd%PDZyeaBl-qgc$taG z_*p4qwis(8GhDk(Gzpm?XPhB0fSql?K@vMgP0j&A&upxf&7I0j z7DecpW1?qExSA3@Ic<*Hq8n}DXBMXAbg4xYem28r=qoU&`DG%i7KFkpum`<8v9p}F zJ6oOvMRQQyU0K~&C{or*6rqn(plAhjD#o6bSRxcr>HR@b>+vx73=2gsrdTMNi)q;*wTMDd&PUNf6jTdD zq1V}e-r3ky&O4LsPJ*F%sO;&iY%B~Z+a!k2!znOyC3Gqjb0BNcP zmHC)`w@3w|phCC#D@5!pl(;Uj!@Nha1Nce@8=3?l3sA+Mu!^w&qAZdCL6@cg$kWiN z0LU{~B7jh-(Eyp>UmfPYU|&EcKxxwD1;Fw)21kHJugLKy!2C}}FayB6#i9r>i%h`0 z23J!8#@H9EnQVb(A!g(oQi&+g(8k{*SJd4X?6}O%^QL~Dz%v>Dgidph;6eAM0MEA2sQ}LcED?C9)M)U`g}@aHsrLoT)|tR&Gz$x0W;w=0V1{dP z%n302$*5%jm}M-A0JGQx%VmQk5v!&?aEO#eNt`Yp`)%W9NCtVHfcA3^qE+XtNlVJcgBwHQFef zBw*0JDF9Q2P6c3USR%kssnLLGhIr9EY4n85xxYv?&jd1Kd}#s9oQGi%nDMJ|+zB-2 z%gAK_nsZqcfo4Y&G-txql%tHXzlhDXz_JAM@NB6<6j&zXJq&2Z$OJPRSt0|Y%ogA#i5#mg=K|qpE36kfAy0HV!88^{ z_}R_G&t$lo5pen z-+DWt67V4i_DK?)?S^J-&t}BJnX+2q485NMX9q#2Vmvw+ON28jH5zBzVq9S$h*z*X=-M6A z@;IqQ6uP#SvpMb7Ck$J0sRVg|m+6@v9!PXx`E_>d@Ly0W+fwW@_Ng6sJ!qya<5-WPJnUVgU6Is{8)eMnErdY_@3)AujsYP659qrHlqL5XuDtpy?2o=bA53)Cs zAZr<#a6g+63t7ryi7fPc3S|8OIu*$JBbEqRREk8F*_pNas1D~)2i!>|@zg=HUF2br ze`f{%!3t8zrC^4KMb0{^SSfYDMu{36*>Z4kO%cxLXzMP(cYNU_7dcOzH#F#P-nOd; zhtcE*M@|eVLHBuSj*r~%O32U9xvCyM=kby6f%8RkLiq_0$dt!NPOPg)vzOrbNS9K^ zE%5r-mmoujD;c~*i8CVfN^ppzLoYw;z5jwMlTe~ML=ug$sBby)#yc`JPU_R&uo?0X zku2nwQZg@H^&y<9ulmH?DjrY737_xAj9-vn+f{1o%9pD78cg@wDkV6D5w@k4dYi3T+tUx@V^6VI%dakW;I6#YMcCDqFRbn^=4)j*pt83eE?29C&LYSvlQ_Cb z5cdepaNOv4T|56B80&YicSkEw+Ban;m{vKCH{RRNh>>Kv-xFoQKImlaj2U{dyz8yO z4f+O#2FJjM^~i0ZU)I~x(Okz?odb>!hNjv9$MX2x_@CCp^zi7@deSh+75H}E|^9>LhTow(2?q6g5=1>;7BAxK-_j$_$zK7eFG+SEiLMt zuR?o!v3=>%{Nk4FnwsF}_F@$fw7LjCotWQakNiMWQy%_rc~`ORcoP2MFQQ z$AG8e3H^ocmVlU<3B~l5Yhj}H3@QZY%LX_B$)Ky$*#)47t%UI1Ob`kG5masW`0~2T zYa_+&>990Hzj8&`ii8ucW&*iFPnTFZEZ2R15b_}M{XxG@`1^x?o#6X}bd4cKjMh)6 zH>Z@%5l3a5;Amse*myXwthd@-s3F4-ohuLmM^8#%$m!le#=U?It2#$zfElj$2S1D~ zRwCWJly4y604ndjq@c(b=tc>&I#$@fjOL2zg{oxw{(AO@>uw;?0^yff6ivVm4Y;;B zJb-tbbgb+l2cr+KmcpD<2JL;g1xd(>90UV-vPSGM?_N|Y=Y5wAb@@!sLYKIcs=w6H&NowVNsO0E7KjUn;FDNet6pM-m^89uo8mNsM*a|CGc%b)BCm ziAyYslKAMfNqi(mwnGYwO5z=(lh`rYS2>)rHM`I|3)O@VZ?ox1Qut^z^fWd!RthV> z$P`8=r%2&1K&K*wskBa{FidFimdlaDx1fu73PF`P0+htJ)pdWOB)*A7Q4)VFZ4!SJ zV|$|%7L~+%L?^Ml0}j0vglX_FrLarAAEVki?;&zfcPsQDscPOx;=TDISV07X)S9AtBAa%BquJ|&oBhH0z2#p0-FR&sPdv;j z)M~I8*#T#ba5&`5) z7DWJQHvw`gTulj(DM5gssTMv~V*;Kob%?^pZii?O9=i%_ig|U@4By!<_7vc|S8%`- zJeep}^81#mZRJXPzR=cI?(g-XG%Oh$1@Br^Ip?BvFTP zN`bn&pi_amZ)1s2N2NxiZb476z0|LN%FjlW0X((Yq9vF_LQp2y8>M6g;P)s7N5D^2 z;@A@ce<`Dv0RkUkQG~!Q6M+xI)szU_EYx`x2#c7HKapxgf$(F|AS}Rx|J6l$eG5O~ z2;c-*DnPf!B0PoZni`^Zx-4anx`v;n8#ohqu*H!g6dA#k>(K&As2R#X49FL(|z@dso z7%H-oFfhGR5XSz{sUVCGVTlNXN{uFrg_yGD9_qS-zW*kWU9Ck*%7ivXv#yI_!D`ok`c^c-2ViNBJ$`n$>V6anvy)G1;>45vc(_0n3TszJ)-!d?##Ilz7J3w z=IlF421mjhK$UaeTJ~TPB=(`vH8wgH5|xi65;0aOkaz)fDv)>~mI#SdibSH>S;#Gd z+7l|3#O=CfyU2alSFwUuvw~D|DVXKH>qE;m-i8`u-*upRkQh?zyLLzgE=aTQ`Y!NZ z_!L7ApL5^!H@P`6!=(_&l>4q9WJxZBB-(fFQp#A=yA%5o^+%~=e*UKO#2&{hV%tVp7mB|J>A9o2C23>hlzpT6K!=4${F5PXSY09_e{Cf z*)5M|bCta7L3CiVI6l?1_na3D))8SqyM>-Ev9u$g*;^O4Iyb{u5#X4JtIY;U6tExs~ zELmHfBN{QWdu3D#w#&1jE}!XHsPpnC(JYV6ignYXydduf(52=e5NoURnb4`YRiTpW zPT+$`*^sTySD=eHWgT0czfjlxiB|tEV^Nf{r>0HWPho5?mBOM@*4nWgmVNNM90*m~ zCU5Ac?l)1noOc@=oFsKmMe}ZE^J1m0@`g-ZbZv^%eHc0wsY|7GB6UNzI{yJZBg&3Uh~ z@kx^S(`f3y*wk1_tUM!=7~PyAiJM^j6iG~_btQ@2Tb-wavVIZ=w>szXdN$8qwq#M1 z#Al^V;xjO^)14*;hH7vbCSWyP%pmZzncANeZ8ZhAv@4W2Lb2i%em3 za*7l_1UeNdOr>=qg~PWx7tlpKg>YYuq9}>aNt?uHV{AVmg+(Q?u}RsT z#C7g4RWc7#il5XcquOxB5W6BtQlEo{uVKSuCAIRCOlov`iln{>Iu%JxrFA8#L$*3! zk1pb*c5HRNp|1NACH0qC6eaa}X_NX~jO{g2SX5FQyOiBY9kIM&Z*@*A#82t_Q0bg^ zFFPVhN}q>je}~PEmD0*fGNsYwDN_0|=v1UMmBLfnk{xHOvszPB4^GoAaLBFBi(!ep zl@Ax;FG?J$t)>UJJkL=_O$Ms9=;DG8lYHedqhoD-9&btn=$TufU%>ziK$=xKi)hyW zYTXn{1k0CM6v6UB1D4)D;A)ZwB_6Gi(^lx|5$?oQ9_?lH^D)0)l*&ZGdWG1uQiaWA zZAIKGrlYb-4@=Gtw#L5LomQ5P-AV(o(Y|bhtykRi5^l@$wdbQjEpvBFTsaf zfNA-tD<-DrhGW{0mkFphvP1?@y(>mcpxUa-c|ow=O-5F+p-J+IV7)VoB3NHy!g?`W zO$qB6L0FsSTe!XmQ+5ZbO%$$|MdO;;9Uh(z(0MovVK|J6QJjG!j*Yhx)z5iHuuqc= z+?SvO4r2$HF%7}2@|PUAF?uO5TY^pnW<4wsW~mg3S+lbcCDlW3sU+@4Fxy3LELqD6 zp2!MP$)#Y18%y%b%e}DKu(p4x8#W?45A&O%2*juwq>JPmN;a}20xzW5OmZ=JEZzX( z+)Q#lHz$7hE(9;-W|C`Ik_#1yHj}uNGB%T3h5~aS8OH^wJ@H-JNAP*{`byPx&jmd+5}(V?Jaj!3VmGz_zaqk0$W?E!g*zuE`p;Io%8pA70*Q5Q69y{B59o4QGSWB zNWUHB5l3^KG3#tc`9Eknob4!>MWNeKF2j66$I*6_Yw?^vI}+G+i6^q!XE4dcdEEH zs)R{&tg;6Lx=#-blUQfTGa%W$sU}Qv#JbbExvgfyFFUw0Vq497#6jWn-ocPVzY>+*Tt64P#r)cHmk$Ou4t!EXE3ZkAds9?@JkBv@}zSp6N z=dg*f(pPyzrZ2iTMf!djIu+?lrF9~GL$}x5g&vak2CnTjch_}(qU61kMN#tJkT!X* z$H?9;g+(RrE`IVBoQxYb4^t_eUVxv-zeHu>t8DCmB#C?jn)@?0H&!Am@5n?(SEoqi zzd@%Wk*TzM^3HJ**)jcB zd7QevpT?7}qcom~e?q5WVbh5l(bx&HslD1@HB!?FfW-i=UORWMZS^QzZ8B(5XmlDy=Jt9kSKtRCEz1wqvW!>2=+oD6v1q zqA0O%O`F&^V{A{7!lDv;&p3%4vFHJtZH6nxPwUU4;yLefc1Du4z7SRH9NQPg1X!p;5S#CU8bDk_{RB2Hn zf{)gGWig9mZLb;QO9QBxTWcP{U<3Z3c5>H^1&?aWq8tqcd~Sl8XnkUt^8V8ennvt1Tnv_g%InEFmz~(0~Mq(^9YH}VBK97@;RI>#$o{8}JF&0Jm{Emsw zBjIXFd`=7ZqlM9LV{#rX^@zgg(nJ_ldrdJ57@5Nn!Ex}`qQW_^pZ%8vkKaL)D{QhE zzmP=-)97r!7EuoD!CNQ zaO>H$6}3XGAE?6d0oe&^&zYzbB!c9d%|`Xr;@003NN* zJALR=L(N?yy;rccjEtz|A7(_6c@+&$znAM}M{_;N>+I$FA2c1#UM>uo*vmCaS_T2+ zkG6gfqldnu&0HJhpE~UdKM0(hgX4_Yh!#40{nWDePhe;2!=}{P)6f|YvF2WGT3hM+g4m_ z5lw;wsFV`CA8Scql#&H%n+pO9zv3s8ti+zAWLkt3vbjImmPHW}-fzx-=D^h?F!v}~ zXgOdb(_2(8NYBTuq6M2?`s+(e_6Meuz2O zCp(V<$5aa(LL{Rj>@qvey9hhVc^9y;N#OAys(K!)8VerEG6@fKYYKRL1v(Y*xB*K9 z4=Obp9y3btx?bHuW0HjpY>){sMhHm(RD2HuAW$KyaC8Y0-p0224GD1yYpCM52H zt0^HdPC|k#v<8bGVUpb~dyc}xBohxPkHO%)#=i1?k6pkCF>GTJBs`2tKE_JMLV~hM zA_2Xb0tx?wP6ZNP!V)2YN{vRs^maH&otJw>0F8CtO)Vfm{Y-GMAqfh=VB`%91FFH1 zB@~RttJzGNHe^wRf}ffwco(9O5(P~X1!$iIf*)gkttUH<0>KOu1Y7T0&coZ0_|{CV zzp{F32E;aIy{AsQ%B=a+X;-)SH!@xxyU%&k+598``6(K(1sf0xAj)0|5Oj13fb0mJ z3V`f{B?1VQ8V!(n?d4W@WYr2VK)=_;3O^H3DPT0s1U3^)b;NC~vA}Q$hDQt}c4ZSx zhsii*Fr*yBq6kbsH^H<&Tulk4DQ-_%xcV8U%+M`gloIpa`K&V(wh{Z@MQzRo{wwj&A zy0`l>bSfC>IxG<*QK`|4G^^CRrc^D#)`+@fw3#(<24s+RoGUGUwTfpR||W>RPZkrh~FRh2}4YfEtcJA6P(a+bV%Uj<#m z=d=p)02AcKkD6A%bc5}{nMQg`G@4y$_K}UJh9Fdrai#>=dU}0NItcvFC`@GeW^VsC z&-0C<`RkL=q%NytG(%bakB-(lFVkiQCJ6gvK<;Kud4`u2B znhgt&-B=(0%-)0Aj}AzgBdKnaK5SEp{1Q?m!LY4(Ru0=p^JZtUhV31}eey;EOX5ZX zOOeC2*_maT+E%X~f=MOup`_U^^5OAvR&ZZdkV-BEGkkbFb6J0TsdjL=b6FdH_`~@S znOBU>y1^Mm@`uS2Y>~jMX&x#c3r-7PBG9Aee5ia3H>bJ8(PLp$KMf|f>M0?-WGTM# z%J<*?4-66F`r}!W>kd27LuHpz#y#K1u`e+c*?u&Y8i-IT!NX;TQhug;E1{z#vo7^; z87;9US&!pza+FluImyx=E}wKnQOs;=V)t8ZpbtJ024{+htX^Hjqe$BE%VG4@8~#3y zO27T!5#zwBPb_F!+f{1o!g*Mwhz}jt;Lgf_(_U$=+9>PfSSYAi6n=?FoxIktACC``QaN?QUJ+OOCWSgDb6u&k@fX z8r((=FJ_$faCK*pW$|BmuuthyrT4T-sA^cyLnnaE@yWo8)Ig-A|CBod^l3xi2 zUv+WwaE+uHg&2)MJ90qU7*C0|kZxa3qeKevYS5NmpqP?5Q zreJSngg?~*x`za4_SR~@4Q{m@ml$vit+DNE3cav!kw5Z?gN0o`QIjQa4oVhT6w%PP zhuXl#5@>3VGhtTz8LgNV-N0J|ra;x1(qJ)3$DKZgjd_QSxX1wzuJ&~os_-dkw8=Mf z58uq_w!Wp*Ea&YNtvD}t{sk@FExJKWOXoQ(UAF&0d0a>8Eq3EkYqe5O5nc_jO4|`;%z<5z!4|+CIl&`>W49@q(V}0R1$Ts|V-|)B+e5ka)t5&% zh-o!^QH*(<2CGW38|EnO`C3_H_O+$<&SI^}vVCyd1dT=8iOJgdp1Kp=ob$dJZ8&@C z8T8aG(G5a96+Tn+rmhe75IOh<=M5*|XhIwI4xtgqA4mPMVelAQfmdt#IB1GHQC#PT zPt(i0Q@J8}ikhm>U1&?KPyzSDB7C(8E313C58mQO=d{e~sslB$2h zGT9YBJyV{}aq~a5(%O=ter+c{b_04v(?F$G{DuxWf*6 z$oyYN^Oz1FbEDz#Vcg0~!*EXfoW!E(;=p~OozmfG*C)y()CusGkCdz8X)NEz$*l$C zzNM>FPV8Ii=vXDD{`eqmv#@qrE`-;C+?WMU48i6Ul^aIijucshG6W{a>veq{2$|bM zHG49iAX64Pn#atP-Jq!k&0%DUX`h}je@9HBH^s(;rM~fl>qESPo{pC?B-T%v=zFV~ zHlt$3v=lmyZ*3Fv@l|3l^=~|m1*Iu`&+{#p`pM*8^(*AvI8C5$DTTS{h!cl7a?{Cb zN9&kTE<;l-%1Jk!_yoL}p2WKA3=)0;1Kt{;u8w|c@bTydYD)1@s4Ad|YZ-wX%vsJr zR|nuxdrxSrFGQILRX^71Co|USSBUilQ>GQ}%N+*A5BHFxbS2 zh`)#tzc@l;J>t~h{OATTBOVTId4C;%_WjVe6>jyD8E*Bfg0{M0=Q%V%`zH=l;>Y?S zN9&leehivs66+wem8E*1|A~QqAVOU|(A41j(G6k-dWjR-?Zu8le|JrNJqkCJmO4sp zbcb0Dg#J~~#tOaq$qc>v6+*vN-7YNPzwIzLelq;W(K==_jQn~=$uQsG`TDl&>G2Y# z$LkRW=;=WXUWslHGd&hM(?jj7Y=wmw{B%gG_@F`{F=m7Nti(`1nTer(g~Z5(2)9yV zA&3s0;YAMp^Bt{Yro_%!rNk^FCBm%Mli_7dhPe@{>&ZY3wux>KGZ|($lcA@h(Ao`$ zK6D4de>C)Lg(;UCN5tbn&V%!tncpK!E}8SoM`&168BY6RT3QxEaKFvQ11 zD65B<8XOtjAZCa+cZRsP&{GUV_gv`Iimv*}jIR0>qB{a5S%JOSp?v(nUf^gQGq6`e z(@X+8(FiP=sK@jbjOlq1dg?Ky2A_#;5HqG*IAdB~3#;dWpxy($T0vDmnL$;*LQqGN zC@ZQDIMk0H)gL%o$BgRFp=l;j-PDMxuu%`|zcH-ei%?V#D>e8|bc2{--O?FW@c<+c z*MCB{R$SFjW?a>;5Z6)iVTw61f8Aj~{J{R((K=>e--D)^1a^`USZSml*;g^LFGpyq zN0u7A5ZxeVWal^|%MZC)Lt;GR8-WXRm{Nnoq8r4Fshg$6v+F=q&wy^NsH&gL zsH$I)rG+djuID)nh#%K;9Ia!<^>ffPlen5JEsfM8`vyk#tO!l@$WnvTqZ`DG>})4X zi@imy{grOGIc^Wmn!g48TOn3InITrcLWnoEgj%uwp2MX0vHq^3b<9{l3{5kM^_B)l z+t%tqe-nfL?Fg0ipi_f8q8o$;J^a~8=)-kdefJ-vgi8QL)q5Cf51)J{h`R~RcClU- zc?}E|FN?g6C3;zeO0IV?XcOj+Vzd7+kG0xfKJaO6gSP@>?i`&>V{xUuMFn5%E~R$@ zVK0{ymBrrC38r@9v7+%l!uXpcD&Y}?RoR^VPQZ%V{(@obA8le$w10HWXnmgLjfATy z_mA?7$L&x|I_+%iw-8aIr7n>>NH<@W?=7z7{dQ~Nt#lD`|C90cs<1P?x!7aQo6Sye zy>z1UkPhm%QRl5$XKnY&XJTzFv6(xtd!<-{{VNrCV^uwuF05{Ap=~V7<&#a^cBU>K zw%UUa!LFiHiSb*o2kz^?njdrP3Oi;nW&?1*63ch~gSNrMdtLTKS@rh1>S4dM`}D(L82A%Ft8`$S`&|1Z_l+t8Fo6G)5rcd>;&o|E}+Q zK0{Li)Zy`Se2Jqv)3D zd`+Qr@^#m;d{4Oo@3z6~{IHo5&vY*no8lP)`W`~Xv26wTh;|#0EWG>QQSR?;Z(5Cq z4&VlVH>(#q;H&o9=EHnckA4CSM%M+G+>R-vO$js_j*)=(Vrxmf&IG*AkwFO(@Vk!Y zdYI}k?~kErHb8eJ;CiE_@5GC15Yy1WY7yD8ZoT@^2;7Q`VP7POgB$+phh`*I^7SBU zc-rAwj!fhu$iFyR#|+Fr&A_DJeZ=?JnkS5nM`n-$TNCZnkH-ci)X4@P*w)0ca3D|! zhGTC{oQyJ}wR8v9m>a#>4}ckF=KibG;Kgk$wYk~I0|FhAEBonQ)+NRbc2{N4b0kTXJi>(=2}~U z7Z`(^&AtL%Tai^inUPh$LS&nKc~*RHb{G;rzF&8=jv3!?L(@#+n^VhYmg9_Zd^AS+ zs}b7jQKkmhMK=hIayYGrE}Ift_#7WD0TflsrfT6zE}P;an%OSavgtEms8}}r8zqY6ni&Ua{{@j|>_JST zV+!!?qqgwLH4tG>u*0m{2(6kE-9XXYHqrrtZUXN~z(ESW&8tf_cqO-}TN`*WmCj67 zPI5F5?wL3kSY8_a;|2U^o;AqFhtM?r!OQ6R6rfQcXxbdes?T*%Zkn5}=RiJ4m)12tl`%N&5 z(W`Xp>A#iA&@kUrt>gbhYxd_skJ9(S^=$5&M#1wPe&i@b-};~HXdW{RmqSx63=Lbe zH)9aGW?#qmF_uhk^F6K>7EM2Y)8VKDe!j)gJf@%T&CJirG8}`|6A{z9=Gr`aV9@+s zVnQGA!`WIN@ToH=L7yA7g03EU4Rg(&NE+W!Ub@OUXJB;^&cZ7;a#8;Y%rR|}lx$J| z8Eh^2*tw|xtRuw|Wav|l<}ow$U(hrgCU9lwB;;W9UABw*b)u1UQGYBPu_Z&}T+|;2 z*X`LOM<#Mnf3%}@%)m^6rdnXqFXBZm>YG6dCFwd&51F7ySUMi1wD?{hC2CpgFxxpC z7vJp*9Ia!zeQ8#1w9qz3nXH?jlUO$76+D$jt}7(afQ{gr{KXJuI84DtGNrf zu5D`bM)H3OjY!A#Z-R6pw$rY!3ENGb6&2e|9+0;{e4mc!%JC(EC*uN%_*Pyu+YyZ8 zA#85B2%Ed5t7f}FZJj5{a|G!`jQ6Vx!%6}t z#sv~#EzF)MIBWL50PNf0xgN0QmJ6)83&5_WEAyazkI;m4Xx}ABCqjD}h}HtFon zIV;^;Be?H~sLH`5fw#s562X-t^VmfHe04l;0pHKVqdk1hEf-&N7bA0Cp9k?BLPOFa z{<0vQ2=RR&S_{N(WM&QJU3eQr`HK;4Im#q(Yg`}^<=J9>wRC8pH9G(FN%}6@d_0r4 zfc76i1rKd=%SGGV1++IR*6X4Ew9v40)c+(%C!+o=h}MGowoc9^G?=5mEu#NKL~D*d z3H&ZDkcfWynOV)riP8DZvHroKrLFk`lj>OJf+K8mL%|WuE!PpuU2p_@W|sH}&nI?< z2XvmJ?I1`e`ota}T8mG}XJ*N5=kC!!_h>{Kz}e>}W+&YsbUL=# zX?yHZOSCT0%}$%SdzDm``TL=vpREzI_u!LyvI}hEtGpY!BkKB2t1H`BGEmRP5_tE> zU*KE@uZyn47e6oe43pDw)nEL)8tc+amEs}ipMV0Lk0T!wq!Y)H8$q;|al}p<_-nq- zq+w_D8MG?#>uceQpMY{cptkKTU5{Y-`Cv%kGG7E==3l#2%H?;yue>7Y}l6yVH?>@KiOA) zq*puj`-=G+-+OoP1mu(UR8K z;vx7f)#ymWK101ZMF+~|>`^5dYw&D;)Tt-i*BYt{rL+&WYA@R=Mk)P2@~+b1p4sAa zOZ_E4VQzUW)>TG0y$T9+KDT^@Ae}f2y%t1k8HT*MrKZ(zNHJ4`{m`S(s(NmzKbXj9 zfc*U>U6O|iX8%g>DviSvO?2|#iOZi&Q?p6Ijy4&HPt8sj#1mmS2SgbRT};i2?_-5A z2yTNf@%;q4@BO*O4Jl@W6507O!B7?K{60ZE(as;O&CaG}Ve2N-eZIBb1ctW^A9lA+ zb*MW@0s7=UVV8Cnw14Xic!!t1XKD`uG~EC3qr)xdJ<@rt#S8GHvBohA>EtrS4FQ+j zfUhU%v&w)?9BB+q;LZGONks$m<0Ij4Gd$2t9g4Oa6vg+a;qQ@wMssFgA5L8Q`Wp80 zjqm~J3H%PO*0HZ|moZRo7bpT}=E1)flV1WiigiFZI{4v+VPmI=VHp5y6)-Tws7({`VRy}>j4 zp9RBNv&Tn}KMLZBcKEM-Hr=2b%pybe7?X}IANC*Y!%Tpt!gw|zuK)S#q>GOkw zENe(fp{V9Cnw!De=srW;$R9v{bb1Hcd(kP|80xUCb1k?oPZNwLYn#l$)8)+_=(0;{ z?vamH$s&T4)AB|dHl@6=y~yyeN6~?P{z;B}DG(l(j9n)F%WOD}<(x3F3*N z=|&K(XAp7Q#{<-hF(pE423OyFQ>Xb1)tmcFr>k!Rt&!ygKL0^bmw?OPuQRut?wXmq z80xSluY>+rfW{&l&3JzxNGAgOD-dPCcAoLNt8dgq4(?$H?)M{lqJWtplE4FT0mI>c z3yP|4D6YQAZ{{?IhewwcK%Mc~0;uMe3#z#bpiZZ%JXF_*ih@aB6xCURbRw#ogJ>vL+^g61!2@J*sf|!O!<>2Be1^ax64%YyR zn#EJIXr&oNTtai@k`_-t0S#4q>#xBpT0EtzmA81R&X#PJ`kw5E7LqEvjO-~48an|zq(7Eqvbv^Eo@6VcicL~B7SzCi9GHl2DILq*>xw|v!gq=R$Ai|a@) z7A%*Z+#MuHC))j(y6hfZM{>=+0jxl}vCBs4cJVg>3^#+~t;ODH=H~QJF>bFi7H%QB z0!uGg2u^00aWW{da90V?SY)Go%|`_3L}0H6Q3mXkv2e#BxK~E> z60>v?dnr+gKI$#++I;w_H%oT>w>N;T{&$Pe=88f^;IPkAi3|sK!{h z;}O;eB8qZYN#OptKq9Or$+d_6hFG}g-crES+;TBBcLCEP3pW#L={%iUOOQ?kbQ2J* z1<+C!?gT`0T0~2ZCJC$&7f3|20t>efJk;x>=9Y`6xr>39C@Pzm&~)ZSg7WEI^guy6 z5z&`|Xf23FShy1r)BPfPa!g5Jued-E)9|PqWZ@{-=RSf_fr3Du5onSMax3XEaF79@;cVSVMCU?QY zoo}lm7H+_0;m(6!YiHqflhFMb3wILst+#4zqAXm>>j>&O)m~w+GS=YPRj5->_EBr7 zD%{w~*sA}rt@^)~8~cpc`aGR$o3tT?8~YMglg5pG8H#qE9(+NNP8>|W0iv}GCaf20 z_78^!!;QTbJp;`;Roqw!WRM4@oru;GAX*Drac;~-tb`jY zv3yl-Y^__Z;YDt29r(TTUNT*fPPF^RAXR^ z=KT>ZIhrJJPh21o%?jMuv+z(4Pjkz~)7%YkV>3S2O`^7@Af1Tl1|V7sq7iPaA2D4c zq9@0c1pd_prr}XJ$c<63&xh!64WOvu#tbK+xiMr&T)8A}>|n5r;>HfaE8@oJYKpnB zT}~V7KP`z5+fv@S){7OC9phm(YEQClXFvzTxaMs|o2F`lAKdL{uLgrq7XwzAir9>v zSmoE?&n)llg6ulMRz+mjVwdbX7JluJ?6Q*>eO?DO1AS;Y?%Ug!p4P$+@+z%Cl;GL~ zPBWy}hv_s9tgn?bS@Mt8Y}pcgN>4VTA2zse70PN6>Uo;glTlWSx_G18Y}?W&E|_;* zUp)@5Za0<GN+x}O0qvA=x*nw&$}VRtP&#RLp2lW$O>fbnU;UN(7( z&t9()#1qYZD~K|4cQJdNM(x7k((r|@eK#odncU9B-!w8jin>D>Zyz6{>7imQI4l?o zCk8`UNW&f-;nwIU{yJ=?UF*!y6>S!urY%5=E5hr)Fx4*kKkTE!^%{5 zUP~9t6(J9MRB#dNVbNLiBZ4#spoAXz1BfyQ>wFe%zqRF9!+DKl7&|l?mOAuI23+oH z{H_2)nv>CkawjVlGD(>kNA=i>Be^S=l$34sd6SfFj8~MD(N#DpGuh5SA=??8jYrY% z3R_)vga3Nrzdhi;yLR;gG1eoy$l7Mxswj^-%gx$$fL}Yz+O{-rQR%GBX}OoZ zjbLxsNox|#-nO>cn?iV56W#$B8(OreHOA7oNGWU3>_~hr99(4$Q6-;Sf|?&{HD~$U zNx{I2FDRJfY2WHT@{tV91=+#DKNkqv@qE#W?%zKx-mpj9c_&w^+_Q{$SCeQoEq zF3&r;!-(MN5XvLWxdzklpLul@C(emj2fLv@9l~l?_=L0X4en6Djm?uAYO>fd&g!CL z=(kUD`@t6tCP&7XwEBl&SNA|;$=K)_%k=@~>hz9@Wuy7)VdHbjT2nmxxdg1vfn(jL z>I&tDu`1Pj#1+bq3IM0)N>>Wf9M6(m>C+%uOXsnZd-i&flPOJN-$9d7-#Li&oyyqT znBVTI8m$k9IIT}mQ}R9$U&A`GuTSlnnXg9A@%aPI<>P&Qa~p@jiEAShEg13|%KMk& z*=qQ5*TUwQdIgTM9~c|;J8$1GZ!%`z24kXA&2}S7PvBuDz-%n2;>DZqMI4I7n+FV{ zy%igigIHA(a8plBL+cE5y!#Vcv~(JsuX8V&m69@(#x8>&jMdvO>+3ThjYn}!zaov9G9fVPjRt!fn>UBB2^sNML)^SmZ`{_w8^>*?|5@5UeY zEAxl2QSv9ZJFNlWR$8R_$8z+KrxRKj@{jOif)qRXWFA3Sy19B$2HSnX^aYhnvmvlL zWw0AorUt|FmSHe~GI#^}8yYs9GVoytdmK;Q=s~%Yl?oZk zz)apWWq{L2S1yS%I2Br_)^Xb`OH41F)T#4lK{taLz^tKV2&j zWdYn}8mMlBP5$K{t<|y%@hLsoyKQT$%=ynjJ=<1K7KEpK4Tm>#if1t&^lZaIcx4jc z<5-u9;PM*IHBg}Q0DhGqofyDx0?}Fmc$@?{7u^P}O7T0ohErny=o-#9;VIhQYOTY1 zKE;b~3HGwH#`qe}y@Gh6xqkqn%-prE;kfqA*J(_ju{MCMtY%Hr{HBrNLDU_-c>DNR zNe>lc!RnQe{S`fe4H2w2S5L^E^F`}kfrM;LDA9R;{!ix)wjMl~IoOo0;hcvZ8V#GC zkohpAIT<}Dcd}9;laQHlR3~IOkh^k83EAFYPL+`DgIAQ0(bZHZWV0tnpl>FnWLpJN zGOD4Lq-?sbs*skw9E_sltS)1N3UX>;gA2I|6>~Ffp?Omrl%7 zTfNlmt?246)ha|&Gx!*?;st1X4OPgKv(V4hcG*IFQcpHu+gv3*dpqjdw7RnNY^V$7 znJvlS`i;EB#%<~pCun1yby!HRoS>bJb(JM(=RkqZ1Ns{TX+ENs5Y6X()#&hm>JDkVjXX)C2a6G5^-9w2MXzAP1?$n(leF(+WvWXDlC*~fH?dw8-DvZm zAk6_N>C=ybD08wYP14?lof-|Bo}~FOq&XQqD0i|_A(Nz;5mhH?IHyy8opZ-PvgXuOmb9r%AbvFGdR~o%+^qq&(*46LYoie5aNA=! z)+xKl;kL0=Q4aSZH-~#Z{Mum-x0SrtMm~}A-Pj|x)T%^txkGI(HwfEoRE-0@jT7E#Rbf3I!Eays^D@gAnmkjzY_;r%hkdn?DAa-3(1QoCtwQ&oEtjOYA$R+#@?6> z|9}sB;RdV8k%7@&2Idsj9{2628nb@5e|70c-*oA~oP4z}TZGN*$y#y4*t7Xope37e zfuJSbAk6^_uG|rNx!18-$s6jQmCRFLZ9^;r6O|5Yo!88>t`+y*xXxX3DX4&Ga7Oq`4%x8fnB-uf-E&M20JRFSq=t++i6!Kg%qc>m;8!vG#4Yd%EY9S}Rf~oe9PKJfngu%@D*BU1<{#t*4W^?L%zM+dG$H zKtyX&Kzz>JJVIs1eFE&Ge&nW3^BJl)_nG*9J^9sVOdbm#TiMqDm!COdZn**2+{IU) zv8KFngzUirG#1(DBz~?Soe1nvF0h?X;@wxDsfiri4Hi4Ir(^mdK{^rBPlD(aU`kEo zn0^p3{Xj%djwuOT5*G+!8V=&YSs2BJJfeqd07VT+XQ&cQ(jjZ($|aF>4?{!MO6m{r ziby)T3X^o2>gw)gxP3Jbh9A$aLe$MEC+b*rb+C0C6}41zkrnJs!0bt|oSutF0&dFl z6c%RLRTsS76SgYi?XGcoyWhgE9rAYD$-EsmE;=IHBX?m8 z%bro2Ws7W#Yu9|$J&#E?weRx~>?TLNjXVU?gT)ZM%J`Uz(E-?4!a`#*A9E$v zp+cg|S6DOBto_4+H&k$@4+-Mj&?S-aS`e+Lo4V~oYz-fCHHJjAW{{8ZO`Ya5RB!Gx z0w3cpamgPv#-Vn+FwgrYs7t`*b9Zygo#&amFwdJ#Re2M=?+MsgXrp7^1A=rSvOfh; zhHU4Pcl)XaeWFCQk;D55g!fw!MR{K*fqUZuW~O&H6jdEjGcs=O&g~JL>CrQDUnzAk zGt)D9wVvr=p6|*f&Ggp2-OTjX!z-HU(bW{s^m_Fi3g0bF+Bmy?`4kW9sbg+8i|Hjy z>UIPp>4@o+bOYwjSc=7F*CS?USHL_myAu9rIo@$0-hMCq0q&Sx1b>6)Zf~oi+1xGe zY;J4#wZqxm7V>P4?1;~2)3{G!7ur@U5}n2^HghYO#w{Hk>Tl84Oh;P7iSxOc3IRN1 zh+aHyOu(54je((s3*oimkqNg>JEI#lPo){%N_ehCJbN)(rYAetB2{I7$EVP?bFFP_ zn%w1Ak8~&NdmI~L~9x5q9;#WkB)>U zr8K6iBO|P9cYX4N53xHyaU1dxn3|IJ2_bXx_B;*t_2KDk5M$_+0=tdmMCb>H>mN9y z@yZ2RtA7Fxn;e=Lq~j;FbmN#KV1*Y?FTfdvibMK10}4et+E@Z6I}hxQe&-!dF^lPA zHV@IZR?yH(z|N2O7KUPd=)hYIxYOX!0q3*D^lyM)m#|4;dlR#vhFe0|H}N6e4oDMc zv7(-?R|>k?WHCNnzg!UKE>O~qt^rZjjk=hwJIzCIMt8}ZpYNb3nAq|l z+NlKV-kDo>hANfUOcSiH36`l~*sloUiH7}FZH6^13)^(B4*FXjiaL?Dh^ECIa)JMj z7!y0BJ|p8CDC%VX?u70ThytUNBNJ6mPEnzzuy^s`uBs!q^up9Swnh`Arjx>+cm6ZM zB05Cb#>%LO@UQaukErIt^R#VeXr z)72DDs`t^8SDGqAI@CXrG_?*KC1R%Nd2Mw}us1B|s76d@?X-nnq4Ig5yz8xttOrT+ zu1b^bep?kyw(oSDF*_B0?QpW)kSE*Bvgm_s%6%(_rarAsbjsZ{lV3aK9-n|6(=_2$ z#}*e}f>3LxY_7d`iEap6rbl7YSmo zE8C6ppGOo8wtS^P%JD*u!EJ$-W zOQr-L0Z}$3=$t@~&aA(LeuO5anf2T%XF7V&TgPs9Q;XJy6O8T{#Vx4DS@qcoYDnH8 zgn6}_z`}u!9VM_lh!oHNJED$SyGUp6jrbf!Vx7+3Wk5fuS~}|(AkU`TT~!0HD}B10+vf!bDs((xAaWrV5?(t`**=4vm?pv(}D~)NIQ_+KIzzW z-W^Up(S34zhZ*4fB$eyNl3SBc=;RjD8`qbTlG|;dbExEYTfCy=mae8ax!rZa=)`=; z`IA!GZKw;54fJ}6m#(9ZM0PD(7YvW?0eJg?Vf3JBOWD{@Q>+89L_I4+``D@|X}!;J zvTS$wwZo)!vw-cqRQ0Rqg?nlxqNyqzbPsl;mo#bqhO0YBwl10+8qU9J6e(qGnH`7E z?a5wgZBQja{5op>3adFw5Z}I1-*O!4A1pP<6uBI>7x9~BMz

Px?ZZ5+E9o4-qI203X5fi?N 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�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
b(>U}BR zaJ@d8$lj~`->t!0_a3TcH(^QM=kM6HxuQTS8va8|5&O9x)r0q~@(N{V8ayPAQmff_ zs`_H-$Tqky!P^%)r=oS_@Pu&VU*h`;Z9)~?$$bgKNXu;UT7Wy3IFr?A;Ul!f=RE-J z>5n)02#} zdrTcJ#tiIF?o{UPD~R+X7$9*`wOMsEXLAZw$N1XMLzQUXx_xghDG$}Y_`{t-$=Ai_ z($r|JY)nod3e?=y7%SJC_e|E1%rs4}7xLwLqTBX%#?>V`ytF*6<-8;^mDJ37tWWOz zF7?eXPcAkVBhgcQ?dOq5v~Q7U9;5-0?F6*eA>}8k-P)) z+=)l*T3pn%AT%~dB!Te2~T68mroA0+rb1rAc=sTNxie#>c0iN*vKrQa6bi}nB(Ja>qe`4 zkyN@nsSKJYp^JiP&5*oH|?XO_)UdYAE6;`l+M+4fO1mt&>C$()vW{s@u@GF%6zj( z^y%S=Qs2&TTp)5swbp;-=GY_5e&d*Sh2#M!24fxKQHAJixN5kGgz;b>Du0@ zD(+&S_rrVC@khQ+22IiZzqr}AJS11)$^F)Bwb$tP4+FSQUWTTAH~9wL*SZgN%?g*a z>$6b^ZuvYnLhYCOQm%?FnlJEcid*W7X}|;zPE>)23_W}o&8sE6r3U4z6v{1r z_aXb3DUIx-t*R+BuR^V~Ocy}&au0YUnok92chKxiFAu?U?lQAa9!<%_oYkg~IZ%tl zywbPsf6yY0Tl)ILSe9eG#bN`w9P(L8<)H2eXicO z*QZiD+MhHDneBE21TM-B+{BG|?SL#Y>LwT-9zkO{;o-zH-~tL}*aIG^V448!j)HN+ z!%}tATSpp^8Rel%yvjqD-q>ya(%jPOded^g#e{TwfPTe<^tK1!-_((DmAI0Po&LA6d-_m^%!V<00(fa+P0DR8#9wt=i+K z#}{k0(%2-1&_q@bJu0ERS-SGD+5~E_2%fu9=sLbsG%O^DdY6pu#F9`6Kh9u zlrl2}OIg^r2bd#DnZ1P@@hUS}R6v=11dZh=vp@F?xPUVIkOw?cnSBbNv#89DfpBX? zW|WyO@hUT2y3A5$B!q_AtxS>Z&sHW@O3Vs*eo>z;^*OlTF|=xXp!VN97}o>~o?ra7 z2Rf2oKXK_5cYe{ghOnlVa%~q|IOOAtOG>t~v#_5ku;5hC!NUE~68ChPmZO?(g7)J5 zT0%VMMVF$q?Q$ZB?;a0yB)*Ras3jjW$2U(Zfa%+=hZ*{fCF!Ci(QeCcP|GhQcM-K7 zX%DZh-Wbq)8MiIB$>bif4Ew8y6`M@HqX1%5@?CH80kOCXK8Z5_=5n=xZ7*rx)t{R6 zcztzKKn2mnW%}rLRPBC@v;W#1J8rsq|6qkLN~SO-;?lI9bp2HJ_bMuoXw)|*L7`PA zu(-r&Qq4d0)kVX21R7*eac`h%YY~pG4I$sWIzBCONsh*c%6__ayV{(7z-aB{uH{D@ z!PT4P`kqR2I+;M*xlSNrX?O{mM*t7d>z?S+Q}Pk15zq=$ls($6OD^|g-=jAf3Sh|+ zs4`d04_2Iub-*>XNx1AX&TYJWzMM%q|CwwrAA2lRZ7I$$A2d!_Hr^gF2gwv~4OF$6 zB6%Jvx8j-Nk5E0#6mR4av||cgdeRPO`R5`}PrsF04dkWviZR3+czn5=Jt}%77$TR) zl!m=KqE)G3Nqu!$!!D4oNGe9se``cCAN^~@Af=A|HmZhnthGVJcTkQ`j_pP+Bo?du zv`cBKUTtDoE@S}=kzYv&vGmrA*-}R4qUze&CDEuvwbxi!$j!03MyY?&zm3#NLtTeX#YOvFdeR z_zc8a54b(moZX^L05vA86?yN5Z>7i6B2KaPhv?XOAI+R^Sjp8E%wT5+CPHRLG8oaU z5QF6_AbHADZAhzyWj>I4B}OJ(Xcj_Zs0-L9jKq9wRgct$e6N6!5s|lRU}Exi4f@qS z3svTLc9?;RUEiUZWS|mUH!@Jq+M@4e?B}r{`_x3-I!QKt0nitx-`oVTOGMt^b2a#( z%lZ&V=JZZC*;Et=eKME-aFyS*9(>2irUnnmgVbs^*>t6cWUK;Hd8I{DHUAjhrK2&q zshV&10N8rarL#-~dvoS$odApwoIPV#*a_uA$ za5>sa%el=FnBwJ!<@SFu0MRK~wv>WS7{G#3Gj&>+;o)~agdC#{sA`v1C!0=l|@GP2XnX{ zA$F9DAzlLtDIUOxn=MX$JRc$de8 zp|+-$GS&+u&4gnP0Z3&xXiTIFEI1XNvTz?rdsz5Pjdf4jLk~*Rwksar^F7d!_+ACj zuHf5AdyvwR#`JIY=DWQ&uX*)1sO>gtJ<=X>)O(ZH2Q(kqUl~3p4=x?0wuP3e@|}se zo{X!84`Zo}1gYKCpPETnwOrLp=Ga|65IieL)8x z>BgBMRwJf0!v?@%G=^dv*5WzkZfO?butSm&^Vx_wNGAGBplT;f^f=lMGtsAb1nrne zm*%Fr7*@%x28N*aiZR3|0vO7uoLnuYGGcCsXjPhYvX@;p={f^O+I0Q5MkFhvW%p*+ z4{2vY8ui7f8Zzo8a@0DF@|)zd1AKtPO(WDvF~NFzz!6RMCM6nWq12dDB2XadL@4Mo zot!inNh{}@o<7s-@`%AodR<1Ch>rBNWPqB7U;;Sd;QdbOCMS4*t7pV|g&Izfxy1u+ zGiXlmz6?-ni5i(8i zi85+Lp2Q2>-6pO|>?C#OA<2*`(A3_|aZ@T}>dZSecYg@@`E2&g0$nCFj{e)# zl7FUW(QyuqK}hluYW4qP?_J>Js*3z^0(njXAqg-bujVC_5JnIaF#-|-2=Wji2nv|# z%ycq+nVBBCdkBL(f^V=vgb@Kz)b*{PAS#NetM0NYvg-QW^|!kCcYpiabzNV(zR>-D ztIqq})Ayd+(;f2reU^`AZr^+AJgVwc)u~gbPCAC>(0o#MBc$e=Xx;bpWroyzJpf=! zPM7{Nq~H&#L-0B z-H{!V;hY3@3-p}>a_*?#?%X*jG_1Q2Sl2Ee;4>H?IyK$uQ2kl75%m|N&ALz{MQI}% z?ua(AKr-AZBxFn#$$P-gvk7-vp4LBh>a(3d&~r@8`!GylOLaf!sSJj&O`q8WJ&gsJ z%NDG#B?%kZym*GuNx|F9v(ag$xq5#D^zTdiVUgq zNXuFW=QL(wkMfIR0dSMgSZ3{{H@~^xERx-m1#cl(A&loz8Phbc_1+rboB}JS+XLV> zn`W$>-UZO&E2m2U<%d0qanX#RvjsPzgp7J3ym8diGuji>;G>mQDw_%iWU)nnD4(G| z3Zm>2VkP9pcNOMmc_gl#t;s}N-o%#f!2w$7eGwdOZ--c2c0jT4CgSMArqtZJCgv*Utc`r7!tNc<>qnH&RE%F{wG69H`924 zlj%G`!Dz$HGzqMY7_)yK7i~CB@M02KA$hK5t_7xoo=LgUhL;DRBPY@{K&^=s7i}1t zN7m3hdy5jZ5)Ro&E)Z#$f%lw9!`slB#CRama3+AQcwFBafR4oVI{?}hTsx75Qe@d! z{-02|Zim9@+4?`I?KWzqbg(6C^qPy9p7bpNV-fHaawO@S<ZA72W{i@Y`0=L0Z~jA^sxdPJhaI4G88tynVGT+eB<=31&vqdY40Cx_&W zgUnVL0e27=&5nTEApQKIoTYHL(f%kU`ZO1{MH=am`w73!8BLUV{vTXP&^(u)3Yg~$ zuGe}_n6WPFEy8D?{#w!Ho9FWa;0_nIKXbAIpq8fVws}tR3L23q^IU%kn&>>|hM@Y2F~r;)45dU)rW8{u z{Y?>UCRIA=%Py;Q9VRawVfwd5Bri|Tix|38>gNz%bCkNZwjT7-f^w!8UZaKL9&{9a zQ7}E6R#8Z>O4(zTOqsyi=@k+9l0+qZb(yG6JiR2W^G;)fiFxPv1p+{dX`h5nsvzS)fKO7lPNAot=nnEzsDn?Ap^;Q% zTdU7Hk;&1J)QtD`n9F8HpM4pJt~?0tx%LRv^U=pf*Pb)9J2q23u3Vj%>%6n|uzJy& zw;s1EHkIo_{?f7``3<^`N`FOvqCFI!0>po42=2xxx{<6vM6GIA^kj74TI{o}!U$I5 z{}|h-98Gc{$|m!%ADSFQPxsN&!FW;~P7a|TyX!*?JPP9W<#?ZN|8i=7cDYCQWlWU@ zhR1LrCBpPdvh9^Kem6$vpWB=%Q)hZp z`PO{V14T3SQxlB^dg+E(in-y|@=U}58oV{pl`|2*S*1BRIlXSAHrznQH^eU@XS5=p z_{w9Jx7BaAv9VB(MoAHl3U*AlxZ^J)Cv+MB}G&2}T2C3Hc z!Hn#w!&Epir$6^n!|%jD8U4AveSeHZO8U`K;dtrM`N>DA2QL6H4PB;#-0>9WSm^yE zvM^I0K(7?PE16~du!o*snXFe3OlpRI^ZW zG4-H7d8zD(63BVB-kPUjjxfe9Fc>@LPJ^+FHv)ZwgShIfF~Ug zaff=uQV10g4s4#Q2IdR8al46~Q#qL?(hCDw71DgnqUV*FOgxYj5Ix&;RmliFu03m^ z?^hp4-cN$$1Ng@gWk#wfP)ZWmlobYNy0tJoB$ri{LWn4-(UaUx&G#p7*24-Z3)>pO zD0tgNj-FCA-J*w(DIF4N@v0HSo-`;l;+xE$)x(F2hl&mn1NmtoSnk^C) zx2}!=d2;(*LXMg!f#kc?rT*mGdZ+~%mu^x0rXE%l<0>o|#sykCVBCL0vx0H?Y3E>E zp^^fO``?5l$+)tR%eZr1g#v9CM1>glPnw#Farf+;aVf{*A2fvnc9bPu2a9Q8#k@tq zG~$x|2x?MJH6nS7u?kZdu_62e~VBbMBE7+Hxb{6&}J1D@urx21f z`*I;o1(v&~W|E)~`<|?;QtZ2zPn&q-fC3s$lojU5-DkI9-we}Fv2Z7#8iC2B)WQDb z<$B-+r7(pMT%-pXC507E3>yQ<9kB5gXjZT>KkXE3yg(Y@0X}{$VM*|@E~V+fjQsjc zA{1ieSL>=2BlmaC$a{mv+hv7$jC_!74YXNwU@4ndOd}?_mm2O*-mV8!kU{$ae7Ej= z6oaa<8U_XOI$+R;(5zrkernI4Ufq2)q_rzIDXE=nJ<|f@Sy&rmNNTmLmi4pr2OdBd zoDV3^6#K5|CUo?pISrrSGUv-63a8VmqlsB_-*sH<~|q z;(R-rIfDMdZ)ot=*beXyTBA<;;W)-!iitoF|4(#RL(`y;h%lp0o}^mcU4i6lcvsj5 z$Idr)!?i5pTI*)f68n3;E{777CdEzaZdu*fw-$Lu9CcLPHnmeV=q&9OiZ&IeK3s6;$p zwb?_bnain&ojxrFRK%WcB6n34v#L4eYCFF<>0?sT0oVvgCvq{#JJDrb0C5E%GxpK46!k}H*3VE^)+C>#KSed`*9pkgtm>7kS=C#b7HQ4;oj`93Xx489z-@V- zp;>&i zV6A|Biq)*kU!yeZ3VLGA%1=GktcO<{o5~Z_@p7}`-knP!86|PaFBYu(xeHbcC`;3} zuHFI5Ke1L3i$JGeth90$%_~xnILyXJ%zdXNG+X>fgNj|+16Zl6+6nNv z#SS*wRidhWq?QvrBa{1?@g&cup?M1ZFua?MLSL35sIAyVi>#WSDe)Rq>}FNfTBGl4 ztkuSb*69$5ZKKFzg*XI?Z(t_mQ=@V&sr+hsCDzi}&)Q{4xrq8B7%OxP^JVz#Yq|ou zLqz$d>GhnJMFWW8doL zxzywQ=v%eHq&N(!A;9UDYRCv>y^+w!+xs`s6DtOOYOfd)(PKoV&T`pRs#hk*%ENBD zXjd`p?J5Qdkfju2S6$B&^H_BONrfBLt1BlC4i2uSOoz}|;bH{q?uLn=M!?VR0Dc~7plHHh(P(=K8BL5nGdn}%m@hu7 z;i#YPh!(syz)D$pn0I4<=se7Ohw9HFiKsuGB!`6>C`uC1XctJbEG0KXl-b=Wr3mD` zb?J0MXqZ`aI=&d4UKFZ7i%z2ccsgAiYM>~cM57(iDHfv_jJ7Sk(Emmm2J{&-d07RFj>))WJZtRlAQ6$+5|^% zOHF2CwmYvtb7`_21cpexj{dX_)AHmn?@c{@dYrNRO4(u9b!lH(x3AE?9gX>#+rx?4 zvbvS}wMKGZYRd|C6-=(ec}iOYq@zm%NO`@IZmQb|{vej&w=$}nS6yE78+Web@QZ{*VVmxTBA!3}%Yp6| zSp0n<0B#dA!*TcoK#MQ_T$ITzIT{vu0clIFMZ;Zt)?Ca(jm1<79{nYlaYBE6Mh0)_ zS>MVkC3|5@gZ5HbI5PW__vav$7)7R~dJh-P&M>h}7(t~0xQ!i-m+z7JeR#Ayu@%Xw znx$rKuyoE;qgmQqDODgoEA_r3w^cSz9=W=7WHMRVD*p1H$qD*{)bK}ct!_Dzj#X5f zIEA5{e!=OZEHKHC>Ze8~ua$OrUABaXnnF)8W`a{lehN$>z4z@-p}o){HHFf?_k9B0 zEii?a2f!nzPzj)2nnE-zZwk?Y1C7Ph6w+UUQ%HZkR!yNuW_xn`oy2a4LtkCOGqId` z){kI4ehcP9A+R5Q2?oT2&4QY-T3ZWtq;swpSSvQ=f8X6H|0>72j-C1b$*74Vn`Som zxl*Cj20tVYNH7Fvzh~adDdoM@Bx6}{e$MQOk_G2-B|%vrKgG*}EvT!#EEo-Rw}31d z34lk+f;vEZCky%@3p5r}vOs?c$^!j0M;4^m4|6$#0V5=Z5D!9FSa~m7muJg@R7Ykv z4+Q3l$%C_U7$Ic>WLgy}RklK&E%pwrGEHGZ)PdW>c4)E8Ty7x!R~SJbU!P zh=I$LARk51yw!oV+j9Jw6IYhUsw3;`Tc^gc1|-{m{REEG^IK{D*QE!zv<>NC#HvwB zG86hH*B#sKWUfoS%9TSS_1=|kUyT^8ToOE%Q`F9qR5VT7KzFg#z6?mR9DTP*;_hqMx{IvKzX8P3h|x-t z&}h3%5+@sxB#ZM-kDEzzOhjiTX^tjL#FNI(<6x{0eG4!<$3n~b7g94~Iq&C9;U1qE z=y3rHFFTedK!KHJ}EQWNjXEY=04G`5Tj+QTNzKQ z+-hpiFB?e4(<+arW~FovpyWrG7p;t~UHUGzc3+2qiLG6JYQMEBH%~h}zdevlBJ#C$ zC^=j=kt5By2iV=%?RPhJHApwMc15CwOXuWa8z`c^~6eV3L zS7`V4ZMv$~RXce1)*5em|8@b94X9#Vc$>4v>6sMU?ffLqD;HatyPXdP0BrFS+!(x{ zf!tl%IbtB*CY^W*69%7M3O^BOICDSws{w$>p0<|*?(iyNAI5M@avvJ?_hIh9yV>l+ zEEW4OhB-(sikv*MJ>Da@lbVj%iP32Wf;%yd$;xnbOBIF)@td%%L62fUnsmv3Qm^`x zU(3#g=ci2;VTG)DTIU|)^A`r6z29?L_=ac;a~_I9_XtjFv*%)2n7!RhIWVW+_M+wI zKxl9?Wk0SY=>3tOjQy3jnQ|;)r|o9Sae?j@u)UrY0JnKJ!}dB6pv7%37iEFXlsPn9 zv6-T=nDYMUFTr)8{+hK-q9=6TW(w72FE`qYQZdo{lYMfKYFUBA`jJ-Pu3WTBK94IR zx+oVJ6DV3>b{^}wCDeW=?{Ahy%UBM&9*|x-J8p~^rgV0^E~n^hoE>jO-I;QOogJ^@ z9<+0I=&uLS0y_hnhOzTXLW@zY#hCm096VXfO`OwZ=GN|vZ1=_&B04GA`%%I`yz<#c z`EkR}jdq_6QQDONF}_J%DGC~|? z|3);E;n-M+?|$4!0p&V303NAamjkpr%GGmhNcBp2zjmR~M>;nC6hS-5Xhge0jFzcT z)j?rpyDD=#8%R1f)B-}YQoynC4s@ zqb%g;Q1K`vhg?^O{RLKm`sreD3d8nARHnP*iU5Eulw5y+3`!qopxL=QZVoh@>F&5O z01(;J_R_%}o^*E@-bu#LsPFE$5btK=?vSUrY&Ib)Njf}4i@ZR;h#HS^cnoHSo*IXT z;5_Z}C<>-oEqRD~)}K5mI~bm?HgUvSXwB0+7a6M`HCXMv+v71b=FdkDFKT1$%hazm zlH>B-9;*d0+eX&p#*r!kA}t>EQxlmb@(*+RZ!cr+L)oDF7HP0^xo^ zSd#9KbRgWX0^KcOq5V7nZc{76{qYn)i(60+}3A#V@*8|jA zMRJbIA)4;3>~fg)RHMBxX)j*IwC_*8lY>}ml}OVd(q8;aF4`p*$T2rX&(xz)w7^U~ zu80f77SRJeiTF4pVxZCqa#~K&**HO7gt{}O2RlL5a}U}%LG)J+p$|Gi6g~}m=a&VG zQ_aO#{G=RQSu9Tc(`6Qqbc9?V(Mh@HzJ@Rmua4UKF@&sc_t}u8T?r85R_aP2N65_) zA!7= z(O>OmBBD~FUUPbSM>c5)_$oob?L`TgTu%^d&!X&d27^1`?DGuT^`)K1V9Fu&X6oV^ zIiK?#QpZW^rVe>Jb0?53a=<;`tQ=99eyI=U48vYoj-hPOFZEuoBsn++cQ57Vt|+_N4=w8jC5vl>QR*OX;tNDZf+}qv$Eu ziYhMqWgAHCHJT8r{mHv?&}4Y zFV*s#qOTLa*cO7|TA?T*s*yi`){F2USy(dZ++R5#`f#hUd*yF!eXsaBPj zN}0H7fs+j+y;N!ur&%fBrCLRp&hS#vcj2Y_COvVANq*|Fm+HWJrJR*?c)5E7iAs0F z6SYKmqD12|yu`jkJK6nUq}&s8W`22F8R=HMQz-umG}$Vpy%cl(0P_Cqf7akT`h3GV z)vKx#g94EpbmQd6oGU(vk&7Q%*Ro6dce>-V&gyS)ko=ZvO@{z=mRvYgubD{6KcTJJ z_*nW3?^vnOo>nrlgW)HVGQnKNb^^Bf*We25+BJghVT`R{C&ZSiiD9}Qi!&J8+`bQl z=m9uPW^?=Ke#+-KdH_$8gZ1x2<+NEujZ8JG6aGawN20ErmG$UBLI9%W!*fcHo;Z3E ztxNXR5W24~IBU+-W{hu+l~7{z)WB#Ab5K5BTX#{-bR*FYKL6*;Q6}zwk^mTxx##=^ zaLU!Il`AX4YcyP&Xi~NWj#q$NNjQs;9id#(>8q!kmBvu1wmGQ`H`NIOaS26SMMetp z%@vVA!1-xD2N{=vK1scqd&hj~W_3D`fTab)g-kbCD4ic*k^&aYxdCvS3o_gWmjbl7 z1+x#JjHgAo4d#h~5y#O<>Qhlf`n?Es%*YEh;j~O{nRfvs=Q6h4jA60P+-p%uL$2qs zv{#m7VM*)w8p6ODsT$h2)rzMSeEzA`1|-wSX;%$bCRyHz#Det-ClZ;cA$>SoAK;{IS?CIC9cB;}JG!dDH-yVS(xsbm*r|4`J^7o={dm-<#s^HH4 zc=7{}dzP?+zXm-B7!80~)JkQ~z zQ)}BM#%kpex=asFc`1Xpl&fPE>4MMUpWU4*74vv+HM*E{z7sJh$vNN3DQa_0@*oPg z7S}6VDpyU8Rfnt1nH!C$OD@|JX#^JGYqMP6T4~NC-$U_y&Uu1+(2jHT*8{T=sS(i1 zDF`m1I*W11*SL?_LaG3l9C~i8d3p`IIPRG~%3Cy28LJ@Gi_*keCxWg}cdoyGp{hnP zg?XXT!Thk~mRti%WiMTnQ*<``um|eS=ZAURgLeF&zp_J07&H#v^vGN7N`M2XmSP;R zYYtvgaw1dosH9#uNAQ)3w&J4Mwel^3{mC>J&G(x}Iu*~27`oKZXAxd=G_+-|?nnC< zj*%+mquwXZC}9YlQ3$l&sX_yebo#_nrJ#55+KA3d>Re5jh^LOU zKiSOIa;TMWo6k@)8MgTyfgTsI&2I~UN80A^1gKG1t$D*^5Fj%ljkc{^pP0EZ`4KYX zB(A}eWt&r`#an3fk>15O<_v{|iexmRT_HxxmJ~9}k+Sd$c^8#iL9e=emj7eRCj8ORHw zTP6DHUQZ)lqN{UOc|9EnG@KbkcX$Axqn@#KfGe%&)a*=*=pl6v# zKSAKnMb(L_p*bgds5&=Pf7W#*qJHZ-lDQ-lRQ=+IJA_L^O*{dNIF|*rRy3w2Cu{ZQ zrp9==-n?R}26x}gjkIe2cPJ~-YCqH1^>pJ(rFjG?rU2Yye=Ux2RF>IQ@P-! z%3|VfmjrNJ@GCEX%|PyV?Qe(sum+F&7I=J)9;;qn(LP&gBo~0tA|Sb++U`$2BD;`p z01ySSagltOAVm12>3?Vb-M;h6^)haQt<)PzQrWL`XIW)`0qy2&@+d#=qtwMUQXO~A z&-;}vlcj+RC*Zujq*@z1WopY7cp^v6eDNt|iju802G1)uN6!X*F4Grn_$0#(8zo`@ zN!@0%JUq(jsPP{8%E`S)AQM1JA6`v0Dubmnw@BL4TiQyK_Zgw^g#1Ephq28{DSqi- z11c&v`&3Pc>K&n~M&O5TG_l<+eM7D_*6c)(ER~+Z?{Ot$!;}U* zb*Deg7x*=wTj~vXRhBYK$!Dlds1!Xy$#Z{0Tp>)tWhnsDA~V~61qNJTiTSGlxGfDc zwtsfHwUZ^Li*&KX3=ERyFl`0NIlRyy6;xSmZPD^C^VOhyFNJc8-$TgW55thiUThWh z(7ZoN`E$Aen)?Ibk!U`mYiM?cmxbUtmzmKgk0OD*!7q&EmF6RJpq>)J2wwg5ZR7#l zS;dSN;H{myo01N;DU@eC^e5lWnc^h)q(}doTr_*%XT+>NN&|G4GwYCx)Me068(8j> z`XC*_tNsbv5R!=mhyhCFEl{MSUg!f3bTp=hhbxW7mZ>qE1sTEBcR{&tuW{srwO?rx zGE-iXGvT82z(rh1P!GsYM%?6HZ(T!WvfH8St*;1lxPX8e4}eDsm{$U{xT`QE$KC6# zrRZJ^rqzf{2@m}xC_MDn7k8V#G`F<6UbP%=u}QiyhkmI^nmO;)rppr%Q(t;r$r6q9 zx_(ATiHoh9MKI@JuM8xYS?^j=K@pEc3|u<(A4bvc8_PRwP{a=+Fe44t@8%S>w=#>~ zy7CXGJ5yTn>4tA{4D>VGwBsE8H7C}=@JmiXa0%5} zj7t{eV5uON?C79~Ga|Y#`QfyjqO;+L7oqNaept^vXvYuwYrBvK!wBt4fCH$OVjOT% z4qj3m5T&2L5+Qx0ekSGDW&Io(6me6;(4~fcJ>fOSon-|@h$LcD!1{oLKug=| z)h0rDbzDStAw%x$av=KKJfgSXK?E^5I^xcVkxTN>$h%CQg3%G5j_9l;(O%vvAHK%zbisv4xnzGLQeY`c#QnTa7-f zUbGgR18+%rtKKx#zqK?>2GMC$yqf-i8CB=9W!|R%u~I{DSFS);k`>r%RgH_4-sr%! zGXtZmFbeO`NOB;`Ci5wn=pcH!kDd<3lj(GF2>o2D4!5bX5U(%CmvkSR)Q8z!`SlFh zN@;)tp|HQ8l0L1RNq1#*{<+PWGIeMe-FG@9FCd%3dlw@E$<@}o)*{*9Kq%U!HDB~X zZ6&FnntbfSdby@VDDuPM*f$fFZ^J*-XL-u*r5e1|>`KC>alv$hlhf-)YQxB@D&2aD zkm|b}xy;eD-Nwp7RaTAMyl}@})twKGeIRMkfN#b>?#y-Ya6LYQb_Ng0DAk&d!O_!4 zDlGlm?bEiLKHW=wdS`Z@Zg1ZwBcGC&pryhg0;BVjk5Uh&0ZeQl;{u*8+Vi&Y1rlYs zF#(63Uzw~|8aTm4C$=OfmA2Gt<0W~fMB9TgMK$4)+o%V~4k+^vRi2y9XVr3`_3c3p#*zbEW-!K?as;iG8Lx`8ZKh*ukohW=@v!pUC9QLMi$l&{ZYx zpvSdmElh1$ChsR1@d5nfNKPX#6zDw6n)_vi!Rc$Q;||H?JSFcVN^0~ZU#I5#ldtJv zg>-?f2Qdl`{E(xk#6y3hhmdLdB+|51BZlE^oJlDY>n~-6 zc}#jl29p{Irx-P|v_@01=k3g_d(fX~gPWq1B%jeX*hB{SDdSIZ;liTl-O4o#GBo|Pl{mD!8UW%U6Nu}8IY-f~ zU`~G8DVTGW+KWzFj{Nl=J2uhvy5*4(Re)?5Y(Z<7_~vF1Smwu7ao zOg6=xr9d&}PF+x=Cb@%}?oVd)kP0&B3IM-ZcRz|j)o2Za0(~7Y=!em)U{HSAIT%!! z$pHraJRwOks4S$Zz_Rl%Gf7a0K_AssDF*HDoI&>ng+C)J%wy2~0-Og1RVxGRErp~j z^Cp$i2uXfG4I-RV52PSl_5=9ay3Sap& z&~WWrGCZDz#VCfPmZxepJxk}@!A-3C2b60_x{pfbCOk}=r`3x90WxAuv)5H zx$CywxE@RgchROY&|%g?4(JzTp+JQ7tRHn#eJe@(+9wO`(^A0cd-HlCk-A0zj?Jx4GO- zD4@hXlg!NhW6j)4@YL!vqvJgk+JckosQo1(Icd;=*?gqY(#k0qAdV|GZ3K8;2S%^3>-hn&t5Q>18gK^=We8E8{KslNt<$LLi1nl{a#94(byvI*0>$B7YJiDj-I4O zz{FsBBUrz3lUC`1%UYpe*KL9RY7Sfo4iv}L+p%CX0B%ztg9UE@sKtVj=i);==mxt= z?mHO7z9Of09)A$Xcs_{Q2PXRY27x_xA~h$+&@`q7UIr+^fZ0Zf+!j{+suX-CvnzLm zQYVJHpv+uIx$C+}>vmVlh@IDm&{yF_`vg7l)-XSXY#7%0a_4oHW=M%EQedH;kYtD=)j+(M?vS9MiNk{)U6h~%&Ey+c!Ei8e(D zTg0I9G7dRu4grHcCY#T-Med|yBuptp3`uhVN6#ionKB&OO0t9L>pHP(cK=U zb;P~vhQyamaxpt3HyvP=-0-yb&}fI9p);WFPc?I;ESr78=nPmlzo1IQT-d`!z8NoT z!(XAG&ATc4h6w0N9%4#q-~2oPZ41~8lPF~yCzavT zN46`1?V(V$mJ6DyeUgyeLrdkLx1?#~bxBz&`=hAQB`HfqpYM~>h0G#xzRxmP2B{9$ zU{SAJgGIf?{8cNbfSt8A(E9>*%W(m4d+-^obuvIL)|!Rg;tbDYtY?A)j>+ky$20`8 zIv+%tFGN(|DzH(2+CB4y8rT<51KZZwVAa>j4&)m$>vd-0b1D=9J;aCMaeNYKjI9_7 zK36Z5B;98oX(YchQa9XMHGKNpPmu`w-K13 z7tRA{PxZpl24`(@o1`$hOwmu1D=_n`2B!;EIdAq~9zaWh*}pXa9*Nbdu3^=T&65BQ zUPCEO1X`mfI@Px}XT<1&TItY4^cN5|a;T{5sHFxD1yq5RjuJe|a?Tu#TInbg)rbk$ z$S!2mO6Mc!t61sWM^C)c;in$2bPkg~x9p`(zrWOxP~BMTEYNj9Ai9g4FB1WUg{wO+6>zcexmMrj-i;J-KHxWL*E z1Hp*Gxv4IU{~j7Fv_tnx)Nhl9)-}E~kUMlgr>^MTo0JCECod6SmhyMad8_0;vq7g` zx&AKo7Tw(q6?uAL5vuWfTR<<&4}jZ)&Cs?h0NNdG%fs?i!f~MVZaJMJ5X-zHkpGS# zo;;>W#PfxzJ@mBHrw0CwNY3`7D-3){xjm4wCgCu>T{`&R%7Qr^olS}?J+AENIdt)i7n z;6ht;m+GpNw12)mNt284y+digyOQ=|m}yzR23-0w*?z99{}jpkE6Zbu;hCarj+>`h z%uC{w*cHXO9?8u$JXU3oSFLnqrC!}aMd28sFH$Yg+T6(yMjkR5T!c@w!PjWkkl?a3 zR->C|D)n&=N5a0|sp7sP#QtIBi|XMuLxxEJaX=FHtui@U8Arq$Qjh5)W}n{4`p=Px zaU;;omrN725Y(%grl3}QE`Xbc;yuxdZ$$kz3ukD>H&9pFYsI5p%okdf$1ZUfxTGY_ z>J|~NLzksiwr``VF|lc7yVR@4D8}?BAn5Hp0BfzA*3PcpeZOogtam@i)p;T!ewF*) z0JyCUGW71p0opsgyUw7h%@VggB8g^!)$QXJB2mQ9iKXrn0ZbGyV7?jvk3{76yN5^` zmS@1Yhy*L^`QF-<7+Z0qtJm$Wd*%&QcvsG7NgGJ>hGwB}HF&jqi&|>nwSX#M-YBV~ zRA%O2)S^}?CnF=E99_sL^JdRGm3gy_p4hzMryiR(hteLE4R#AcOm^jbWRVfo^y{#XTL-4&r6Gv~~$$_SAoD;yRhsh4)+Bk=- zM@TXvjZqO=L*#!)$=?Cu%w=Rfl+VeURkPGU*9C^4d{?7WX({<^SF?y zm>IjlRd%e7YXNXuSZ1i>YXRCFbu0(w>5-ES!jRF~QX?wev%sb+KkdGIYJ}<=&Ka(y zMu;tZ>Fm|+sS#@6#egcHM$|MYq(;>IH%tow3 z7WIvaz=Ccl620L{bJq2ZK28M0Tg*3IN{c>Ww^51isFJVhs+1}@!xmb}U*UU)s>Jw4 zCEC)uBM#AQP;njxMRt()IK*NW|7PbSESSjZnIj z!M+U~_DY9sH0Y`4gerU?t|*_>AF5jr7J`Lxxun8M9Iq^`jpkA}jfj-LG0>lCRHtG> zbd;Vwtbi!~1yvzfW3g4#w8rf5E0nT{STH)|=K*kA>|_Y!rvTa=f$R*=6U%f#J0X)p zMCMXJk3m37{LV(V-fETH62SD{cWF$|7o|)ajO2b4m<5to1i&Mad$`Ka~uQTE*b9>9t(VZZky#BwJ@lwn!H=Jz}bz5I}o@74Pu@@JOni-ZiROgUceE zH!+gsgdRO{^v*|XZ-rb((gpDQ3aUT|pCxu#55+?P92G$Er2+6r6w`%m-I*Bf__DBk zASIHjHre+WPzqXaBStMtccit0Yfaf0pzc^(FC-10gftX3UvEy%-JC-dbV)_l+=QaW zEQE-3PtG-6$D^ghEC-|%%f=(Ar?XYaWm!P}H9QXm_THGdypmyb!D@QP{?z znL==cYJS4tRw*zSt=|aXrGNx_JOCbv*1zu>TGhyAkI^{g`D=qzOTV~y{m%em3gGpZ z0q{t?{&&~#Y7K7osEt;g``#U;I-h}Jv#=@m34li;_;7%BM;>IV&h`Q!`5G~x78k}m z*^VOqG)Y2rIzQ>jL1B_&%d+_zsOSi?c&+EFp!XEe@jM+j1r| zx}bJL$RhB)LpGYIs2k!(4ZNQCAwJkcSwMx{SjzQa>=igaTr@~(+F(?<&aAfrA#%}Rm2>sVT~ww!?yR@ys+2qH zd|RLU_aS9Xc;}hTV6qM{PozEPc#HpoC<&hEC$;0(pqcMq7;D`j#pz5+w zgrJoBw$#SPYTNKxIZ3g@TG=YH9pPTox&lLT8uX(gw{Xaoeraz8WTbY_S^(KTrdcQD zo;x55r2!@M2vsFk%6o;#U=2FLBmwSBZ(*bB(yk@Kd9s{VQ^*cX46dt9g zhR%{mX1Cpiz2QVHSXw=5AiyZD!mv?K2(VV_gn;{qHCU}BPgxPPtrh21wo$%)3co`3 zrqZ#4Yvk6bK3kGe=I1K8QAU|%;cpsa%!)q?Fw;QtNAxs#U|~8NGT#~hF98@E3#}#1 zdU>KTR&J8W5_ir24N&p_NmLl^d!9cF>}rzZ=OL%j5{V!Pv&zU!vX0*E24r!<4C<#) zBue_fSfU)VxF?&uOW&5Bx^|~YL&$*TB`9i!nsSV+)*)5O;Jwb%+UF}}pLS>*Om$0# z#v)yj5i>38B`|Ub_u6u69Gc%|K+GK_TZQD`Q;Ip=N7FX*)zREy$DWRr0dO1588Ys< z0JUV?EK&mO+m0T7_|Z!Yio@H+0{_u+gX%jl2Lr@tGWv)Z%{OChWKmJq-lhf?0jhw# zt>joCds|sXW*WdcbI}lGZ%?4F!rrdY6WiPT)MI;lHQntF>Aa}|DKt$9{W8-CsH}X0 za&ip%;N7sk_e@usGQwX+v=#P9y11(V-XPgP(bb!>MULIPMpvbz@hfcko?MUb9opji zw#6thw`-DL0Or0yb|u#&KdNo6M2Y4`NzqeS*V7W2s;a(}e)OM~`dt z2igSqAukq2YDn=!QQw@?iLblBYGY{VWYzznA(aXNFDa)JUNo_*PJ!PrMC`ruYO_%p z+cMa9ei?7;_=F;Kr*#EME2|SDSc^2#81^?RRav0Jmikt$Lg@LbRg`;Sq&iZnAP#+M z5(^HVcDP9=WfT3sJ=nMGvI`P9;y$RT!kwhd@Un$MTyo>*+Ru}rY`GUn|>|Q?5X-RkJ;7K!TtGq2mLv_n+$LI z)9P-$ZSYc%UO(;tKLL6rkE5P8J&L5%uR7?-zHKPgXJNg48PnfS;;K3=C>Ka+qxfn! z$R1N4bJe_i^6mRipibQaxcnIz(o2i~%u>2G*EaH|m%X%n89?sK$Lr|#QBElhZH3|5 zzuv5lRz+Y>u8xjGQQe`lQmZ4Kz=PDzkRX^|7$@rpnCu(9ZJ=K{GETn*l|l(uPYLw5 zz<$6B0^l~yGFB;P1GGDt~mIX)jmEjoyPzAbN$J-z6l1`Y>Q zfklVmTwyC^P7ihDLD_zWyI_X8kWq_{>(N)~#EeEV$4}o+=}lVE-I7{!(cAGnAilS zy-ju@Z!vN4O4x4Z{DX3_$h2P~tZp0ZZe`w9MmUL?V|cSEo{B5#Lm6SA^WlnZ)v+(ivUxz83p@`39Pneq0ik?fPX-8Bz!3Py0C*(* zf7Uhn2lIV7)L&ghKv*;_2A55#{WAnlfNt~Nu4nEFduL6`D$_~UI}1>{?KIBaSlcZC z9ZAJy0JUau=NoImL1xY97w^(tX>BmtdU2N(0iDCmkmKbzeIwk8wfYGB zf;vwTd+QqFKlqaT3lN6mhJT+EEX@+UkO4GHel1M|}MNCb^jA7On@+;eC%`Mgeku zK1lK?ILYEIy+rGoM`ALfQ_>?bP9txBD7W7^l&dlarnhFdQ#G(PDLy9ST<)v5W5$8e zib`JCl9iKhRdvBgY}SFdaK)~lR?ED6Q}(6+xGgC%OxZgDYAL~4?7W(>dGhXZFptDs zc&Al-j23iM-*q`7Mi-RRgIL7(CD_QJqV7&BHIM+RfYU<>UbQ2aIT+>iP-|4fz*r`` zkWo&LzeQh#)8iZT#7+->>ao*fwTwN(RcBI}WI8`mJFPx=S9V&{m117I&XE62v=uAM zJyXTCRON~Jev37E?WvJ^ayna(j0awTW2J1+gdqZi}W2x!n)Y?#S&uQ)BexcTM7! zoe`IG(HW5v!>b%S=xpv_r}OKjvJuSdH1BB^VDWn~H{=Q3_#|Q*1K>7o zGv?Q3fbO9ARR>E+jE3za@iCf3slGFEMougwBhiS3e6zzw5*2mrBWmC|fGS`gsVSpm zbLL=_eWcWsVQ^?n7c$B|x(j_3_R-z+#P$(C_1HdISx59uq;Yhh7q>X*z;?qj+TE)W z)7&+S9w3qmz2}v6C*{W_=@l)#=~=`k`lzl-*+f^{>NNQfzISL7?X9BE++hB z-vz*JIg=rb{|TVo5yoO%U;=x$;qCt=1IOnBS8UpNCuCR#4k6<)AVazldt%_s zy*JHCUYC@CGY3VD{7)G;D;xud89Qav>_t`N8#ViIr!1o;cfOQl#V}+-^W{*k(36hw z#>+tga2rV(^JO(adpKXF!6Fh{VS`0{jAl8iZ+XsWNp4Gng;>J318l@lQP*Ih2L7yh z+NFpODf5!6DWH^G=3tb;qST0CSg11>GRj~X#t4PMGD1&mu<%ol4VHrtCy?pFS?*gY z)sb$PCc9EKDSPCV7`s$QRKPVtuBDINiB_4`RVgE6yRGJuCcbxQg!CyR1pOzrbS;lp zf-SF0eJ&!3R*k zjcqb2{3$8dy6>f~wD<94~vw(6>oAqDE*n7&Jl=ZClJUd^Ffr*CgSnhPXj23422_Dn zrefAYLR-y1!&;dB9SH3|p|3({|CydxX!BE#h4wSIRW^^-YL{=y6W-78g|`9hh7j+w zt4j&6vtU5d5J^!0YUNblATn8={~Q4k<)I{0~3W7bpbeyJSbaymPhM=#zD6P4SA^ zH^Ldz+BKtTnH)po?oS3a4GJorR|EJcgS(z6o>Nf2%@G-j=LOW2_KIg8eU?}4GLQyJ zEkn+yTI4dsI_ayi<{kgt$o(_=s+HDnuI74$tUs)|hPXP{^ev#dE)9U&;yXigB>?T6 z=6W4iMWQOa77-s^d2aXIQ)^V;c{zin$u8F-#2UV~@M`zgBGkYMfGVKY)Kn;>)|Biq zj0*wiq9JN6@-FmMsI_;~6RS0T>akio5)sJd;ZfRJ&bdioe_yXzklj#hi=FyXn(fm> zOfoHzMbIv(CpN3LMXe1}!rvCIN-_pn_sB>-t@ZXv-^+f0VGwQcV zm7#NfLS1REbM|xmUhDN#NvoazqKc&2$p~%w9e2%AH!GAfvnmhxjCXyP=KelY(p#+0 zMInFO1(eS&0dQN$W+t>hP8TXfpsMQ!a7KNbcL@y08a-|eZPrd6{&-W zReaIz)$ZvaYT(Dj7aS_;iXtCU`oq-JQ1UBtFv=gMWQ1X4NGcaHN(Y?=DheHRIz6!t z;-?<#phJ<8YXUj8GJRsHi);i?H#EAYV%dRQRdaOP#1L364NujPg|CUYWzm>cHwB?Io|CJn zUvS}R{1j9xFo?+*00fU3AR0B%dP3{~+FfObb!1W)(g24dfn(>qTO5XhbRAZjf_^z+55J$9O0 z?!E{$@ESlB&;yEJ3+Vwhfem*-f^?tpUTcBc%1B^4#^AT15{` zlusu)lgga&GOEPYt?HGlTh&_#ge7*39=*$f{uj`(uLywKG|SMjmjkprI@TQ@DNbua zb~hN{lAK-=h_#(XAQ$C>C|yf*^;MXS17ZPJ*HQx;098QODzTyDx2rMz=H%VzN>UoG zgQRvLqt;ySKwpKfy_cR?*YZ=3buH3mmxn2TUyi;Fq|26Y-O#y6gRN^z>D^Bf8HL`p z%DFQ2VM%I5yIJVohjdj+WWLK5naM}-y+hq=rOQ^sCC+uj6z&1%J|O#$tA8&#Um?!* z?Ul@XnVdqVp&OpUjpySy@KH;ulzFVtM1rSs9Vz7|s>8LBiuj@xchBnARa-Pzf^B3t67f@P%;(oca(3YSXN^3D%?vBzjWAhZ&JHav%b72pn z_~?ppyZfFtqxycCGh&+P(t}7W;wuTSc2Ap81OJPN7Vkk+Q$k6^%)uxRqLMp?fg$@` z$S7@g3TP;_*#>%IZN^VM)@Fy3SiQ2^oX++krt(55ux{wGg{HEUDtkGwAyt_vrbQvI z4lbo4ZC5^pR*@I$s+1763uPB_71@U<-cD6kDmNOn z;VLqyj+C}lo1;#!#$f3J_!Y(b^Q*(7N1um>J{X>!XrcgzMQl1?b%RZ8Oi48m(|lB~`0 zSn2Z0bYmSWC#a#$fX%30Ek<=ir=xnmGpeL+xeYKYNe?I6taq)mhK49b*wE0r(t67G zi_1X3AR`rU3NsIwneQEeKSXk)VeZWpDk3=%3C;u#vg|)}G@bLq%qwy@QJa_Zzw~22G0YR0nd1{<+G>(~|az@`C`mEn@Un(tQa1$(snt zEM}!_r1TmNiPsJdQD&BD1o{z~Nj~v!1b+qOll(Z?=TWn@rlV@OmI24z&{|^Gq?ll# z>Z8X9Ux+}3WQ5NuMpzj=O4C@Y01(hF+KMLXhXC?$#7HuT+P8>k? zFSOlG++?I&Z~R*S7BMjC*ZLO}HJ!r@ch4R7r$XXL2B#Mlf23;Uq9P(D?oZr7YjL6X zq_}!!L5D??1@93JK&s58GKNpswpoPFzH}a4a8YQ(XTipf=_yD2Q(rY|TSrHNszLTAqE%PQ zdg{PdHV*;!cSnp#8d+~8v}Ib(&m9_?D36Q9QOuyxb1I)&2z`-SN)reRAyK^|(Omjz zFvgPZv4{al`}fOS6ht~U64Oj1(PKlVSPGlL_9vp{XhMAgg!)3nxS|Pl+R)HQr7>Ku z@|v6%vyt?&z*1!UmoV9udW|XSEw<|Ni1_ajgOx=5S4G6*ixAOj+MaT2BkKSyof<$N z(T`}7ei9)695KphlD+`aYq&O%O-m|4%UBt$VM)pqG52_HyE!PDQB<5uKRxoT0Boe7 z+>?u94n8*v^;!KkGqK|;Knu~2X!3muAWI@f8BM+oLqo$gT%@+CI*x~vLe!eZ;K#}MlxP$lQ{TE!4+vKWFM$Twy?Iv9n#2&r}z(!2kRY47G0#pH4g_;h9Tor05X_yxaS{Dsbu8J?CufkRF zSMo09i^SuL^A+~GVgxG#Tq8zN$llZ2= zoUs#wOZ|Qn4Oj1zr1bkUoRg9l2$6IqxH-KWaT3)eReZ)#$&ao6m=5TF%68CNA9@tMMqA`Ho z(D{9Kbt$d?UZSMX`gTEAT)$tEThY&(jYahSU+Aio-v62{jgxoadxv^oC!(eOkC>5U>iK669+Ru* zO_}z3-jqq}dH$w{$9n$T=$=hpQnq<|{u==pTOzg7^N(vhD$e?f-?Uv#hMvbj+UWVe zktpw#p8svm*omE`p8pLEx4oX<*U|GElqgDT`33J60w5=lc@c^sA*?>m+FGu(ys0~& z<5$Sqq2m|nf}V!oo2&L@O1y?&767*iow1ZZ7@*zJ@Ydi+A6uaZUj@rZ_1g)YmuB6*U& zcPGSPOjp&KK6Txt=S??9v2Sr+ox+5NE0>;9Yc?)Dwb~fQt!bsrwdSR#jZ98oTA9E_ zDZ`bKqg9$BypxZY%23R~$?0`4$>qi|HbGQTd5CYYUf!nj$j^+fJ!_85r^!}yt3wk) zAHEgXB^GzBhsQBFs&d%5*25Z#X%Jk(N#ZP{0oT!v)h4zg1iFTsDYvK?2gEyQ|3Qb) zn%c=t)X)Cp4Vp>??TaS>{8}^Co-AzdLH#!I{M9&7Kq|bus4E!?FBN0=LYkjxh4&Gv zM=on4g6!_+9$JcT52g4-{Q;%-uxtTJZyp!&6y9gJ%8nJ@Cj;QNNY7AsUj}G*6rLOy z=wmCpZ-8Ya!otcwH6;ou zJ0&x~z}Hf9EVEoRL@B#J0$3=!r|5~59Y6J0*$vntH(Tc&kS(p}pWB=%6U~Ob|9-IrQe@@i%854c_NW@wRR?lN7~ z)2kX0HE%|dEJ3gGHDhamq~J_)Kk%MRgF?wi@ze(ML`@a&vf89y{tIh1!^&XqK;{P>G?T z6HcabI1q5s(2%!EFCqK^Cx@Csz0zXmjBd4Sq>VA z(=X=k<58W>4Ix!4H}|P!zWrn0wpi3Nr`5hpU<|Iv^JFtg{?^K3mLJ+!tvSt#t-Nd_ zD@e1*&Ku28U>td0Be;s*Hu@@*ijgk=1!GpP#E~_%w=0?USsfk% zQ~|q9i3v4#G6$oa6iSPMS%q$cLUjS7%(lNGI-IgAl<8m76Ps=P)MK;l7&3wUTTrvj zx5Go`n_opYJQxSqW?Z^~lsUIoXe>(Yg+FTf$qMjCl3x@9c+Yt+%FUY`lC973Mh?r13&+cgJ|~N0BK}*?1YuHC~v? zzUA_u;kceyF8>&TJ!!f819fFh@;&;~ndS0x0?oHve!+bzV7dH3)*H55p5p2}2^ep= z{4M})Yv>HiW&Vdcv0Ofe1~V-eNddAnB&x!ei};w!nu?-S-_LReYgsPD4w06N)#2|0 zs(|I9*k9?f%)uzjMM-HetB~EDSuQ7ndctx!iJsVU;in#3E-Qz}D&>hya$6$XCv%{0 zwK%Zduvql<@LtU+Yi0Lz0nA75t!t%R1iTV6DC&B1w1|~*fv&1`^$xXCyit1=%DL#) zY%G*E*te{c3JqLXC+A5VXJWSOfD*O}Ns@ z*r=>eTP=p zvW@pA-%Ai{&zcWlYxF-*d6Qb7=FtO}xV!?%8&{ReTecu0DB=L>mygu8O$?TBjq7x6 zsPK?CuFd>Q4*N*{8A){#UTyS=I;38V?y;VrG(GBq*0ZfL4m9cv7V@|#qtA<8Q1 z6cE*z0)5C&L`g}plRP%P8e7bW<5P(=Au*|LqJTuVPG|Ff`$#xGoQYwkS8JYl0pdLj zI%2jTtO?g=Xr^Z8LPbSW15ePuWLVcM@OkAR)5fwE5?P1M-xZRR6K+xaKS73g9rF0>2MHM^a$Hhr3GwZ=jhJ7>JgG zT1&LzVKgOk^=x9X$3r=&B#!z%s#cl?OGg2XrDJbmVvYfY^6Vw)csUwHb%)YhMmlf> zVezReaZV;!k{X)t6ZOg!FX}D%P*9PXK`ctn2=rDn@{|dRC%+H*oRKbGj;d*9Q65d=RC%iOjx6v=KqmT!v;?efln-3TSS{)@mZU3fON> zUR|d|39u26X?&Evwd>^cOlzUiI<94wtfzp}V?Ux4_p|AV6*oWiSaBa-89|byT)myT zw@!m~Lv8B|-K<(?rM1rj4%_c#*n|vf?H6kB)|ER{Yg^+_EA2(rR}xb=t8d-XC$>&mS zb3zVD+E78-Aa%QpK%mg(IATJZAyV0Et=_fzG>MWa8VmCM$ss9m;~G{rmrB|BG;$-; zVA9Z_Cu;u+M)J^8GhQlSZF>9>%zRynv0E#Ju?Si$RA)3ku0TJJ>%kcz|(Aui!|9S z+d?$RdhHLA9=W!~iRY_B&!r2`KO5!(++FhUDwz&4jsn}8giG4yY*KWFZ&A#$7EO)h zD8gBPvNDq(Ha99e;%VbLM)xyie}V3vm=PzT{zx<8`P7v)$#dyXz>LWB=ATPIG*yf@ zU%hfQy?P5xAMobCG|<}uy8VIxxJ~j5-97}+;=28CK>51e@#afpk~Tjtr*o1Y75)k2 z?0gWVu!(q)3ft<_@qj9zuobf^Q6HtSl|TV&1>{<+!oD3n6$*QXo>*b?Q;!w);nl{b z#x!nl9UoYk*4g6~T`M+p**bS!*^Bgd<;k|*Xi>?E>pn?& zMM_s|7gAgw)K%@Ea~Mj8oFiP(gVv~7m2a{4H+Ge%8XdS6ih3hxbX`=4#{TD&OwrT5Sw>i(WJe)=H;mLd@*y;Q=GITlzvqu88@_mEhl_E(xn>E|oEBLT0QV;IprA3W)IU1i)=-Wr*;f z0JOLWe;iQ02p8ibfegRyPQcX63g2YRKyR)pKwUlQ3qe8kP;0i=FjLg?Li0ZfLd5$% zA%PKHWrE4J;(ga44Ko*yW!Zri;2MFc3FzPnR}}*xXZPX1?|3or%C( zM9Vdhtr*d9FfJQ4lErXkXlzQi5re1p5>Df@cp z73WsA(Iy+>CmXcscI@DBsd&BiW!k65HT9&^Jf7bD7+Y$3Cx1jwlLr>=vWp+H zHTv%u(ux3#jfHmUahGa5CK5sO{if||GScH>AbxsWRii|Cp6w(zIFvkwF%!@WmN7G5 zm-37JP;=@)jX6=T12uSy7& zD>Tmt_Onc^y+Q*ESX$Rm6~fY5Vk5!ym__n+C}y(-OCfcPkfLb`jjkXf0?TOHs{_!s zRLwBB-T+X`;F`` zgamdBn(v<}lIjnaVS-@8%%$o^aO>bmWlMQ#tU1J|9RlC$mC3Q`p-Wfyv2QGyYBVt) zL@Gft+%YAl#>xopcPD~82sJcVdNJAf+p1&&!MTPhq|*?dHnDZA+89-KJ}#BSQ3SQq zCo9ksP2f_MHB)SfHambaDk=IiQ54H3Db)bwCeqB@W_TXKl3p;|4C9^X z^>}f9$Vg?Z(yU}|GVJ58$puU|*5XGgT_L-%YBemzvGVkZ=i;pH>QbXR24CEXr{gql zMeRJ;rwEeW4@QW;FxciJ;H=uTPP(zSxl^)$qN!QMX8Ysi*?}1izJpfa<8p7o#S7B* zrOpq`S5%P0mp`>u;Nibd_kY&T2!o2`y;N&@%VYlx>aoc%kc`<|By&~?L!usd2?2`F z?qEKPW_@9wTnFH?Ed@#BUxAm9Ne>4A?4s@#%;f^;AqH}L+Gm(j4&-LL&-3^*e?hgE%78NKwLwhC3omERfve3<(lbMe-)F z*=(GPdw8Ogw3sR1yG4Ysm2dYu{@AHMk9`c8y?dh?Nx^ zDUM0yOc0w`mJrwnlk03Sg6(S>-A`A40BcE|b71sPsWlf-BREu!sqZq?MFFO=WhYJO zgM?N^%Nuh_kDfSs5<%>%A#`6~KzCA+xcBpj=n`v$?lL^$t8S{9E=1TdPV%-Yn(2F{ zq=DnI+v`-evM4D~I=DUjQBxz?Mm6>)Q?lZGOGct2X%fWRvuJlO*sBk}tTt6IAv1{b zz|k(~6fSDpTp=qAX5k2D>i~bi?K3U!9x37ek@0GSHUk@jr88>VD76ZuV9)n#LEbi*{7OGO1lS@5fn1Qohc`Hi#rkGyI z<~rV50ccycWGrOw2B@`=jr0AV4j_LWyMG4f>1+;i2F;V`W;wOQVM{$tTkiV+fpX=S zny}QInXvA5{Duv<6L2dgk+UU#?7GtWkr6qyCa_`825IT?%JeqeD0p;j0Fr_5@f2k~sB=C0u66}fxPYZC+Th=x|!?PDtL z;o{4%cgz0*Vwg&VCURy?YthgUqkBl6W^JaHt9K56Y0LV*)6k0bcQ4NR zrjiir_YDmRgd5%uud|ju5Y7C4i``&;zs};!|Cs_nwJSF5Cir4H{E_XdQf+jNI&T~){zFXn4z3E2~gytJz?jm>S;X4(uP%g&&q12nyENjs}#_-rHtHm^a>Z5p|XZ_IznSs zw@#p%5ovoS+pV!ECy%t2f-ax)bMTwI2^GFUd8H?}-|jo3_1D%;#ok&h zw05q3Nix{RUwgq#H2fPtoRz~@G`Fr4WITh5CYdq{>s;D`C=F1^xspus9m$FcXVTnQ zpTcehiIqydj&ysRf)s%-w34ou5hnv72I0c5@k$AnK6dHIU>z1{#@RRE${VFt<&0E6 zHR)I)+?O-FVa)b8&5|zm=hl2LM6zFgP8S?o6c%%&ZIzYQ4L!6*} zB|=t!6Ez}JQbKoK5^wKAdwHu!N4#Z9%;X9o2~UftRi4l%Q!r{LzCSsZi{@Lc^Uo&{sV!FZ)0J(5 z59SYCTB}E)X!otv(@(F}H&@|hnIQWV&cD(~jq)s)M$1T@EbP=qme@ z?Q-kjldzOsVZTT>rL1`Cjf{mF7%xF6z$IF0ilqlhe2dkP1P$r@ub0bL48|v}RF>?5QouGG`In9jD}A z*Rnfaz(up|j-$@4HBYC-3^ChA7#5O$u;gh-wi>~)cVrkGnT}zpg{nTqQRaol84Lc` zM2tf+)D1aBZH7w9C>)B>Zo^QoL-Blux|Vy;j-m9|gYyumQP9dQ3g)1Ci!sO5+|O*? zAfWtRhsP>sb{*k;Cx|OsC^8zYncrsPrIo-a;?PEF?B+oWSn**c_RYq7JVE~98kwkJr1Zl zn9`YLhSTlkhtm;6H-hP2b&d=k<1WbP>k|hD2UnLWaGs4=j}7sR^Bv{kQM&d*zM$A0 z9B-Asg!!_myal^PG9r&NtsqySx++7|b7i%%jh;G-(K{3bvL{P>Iq60R$r!zZGo%#?r>fi8ctRy z-8RvSx*bW0xJKzNN<}!{7^**u9-{tudb~B%Kv8;#M!P_dKE^l;;t)aRi_Z#M>ZePR zkA+5*MUsycBgyAN^=FYp)E`fh$3qPiC5dRX3nW?Usml;u7F%T$ah!K9g?<_uU>1e` zsThTR9jZTzLZbe73e9;aAcc!kNHp373N5kimk@atssf5O=7md`XN1O;MVNgUAX>W& zgzC>CjHo}JFl$2%6eWykvR~`XpmV{I;$9!E(_J4MI}+c zMWx)R`pZL26s41BwhMIHD`ek?NVTV5P?0PB!6n&iLgURM+4f>2yDe0I7Rf~Y7RhqV zws(daC`vHVXcq{!P%XVeM4C$<6=B2=ml&T8jU|g1pD0F*$3pdI5ku4;PmJ$`8YoH( z(P&4+hy{{IA401%Q$?~LwDoL`KInWFyznHCkv#bDw62ReEPj6sjn??NNnAQO_V5&# z!1f=^=Geo6Po(V`drO)2;momzxjCiN#~yTF+a7z+C8Cc#JpI)Dy`+G1=wbP3@N0#S zJcK@J$&?%ktiq*n1pSHKg66ZuhZBT2@DS|LxwH=;y$hvr%6fuejPm9&&g6zieP1lc zS7ZMUX$zZma;sliE#od`{1}knD~GI+Zjcsb3V@y+rdHjAEsn_N(Pa=s)!SIHdZcOm$ftX;VTwBK*X3ElU z6AR26X=MtUPsPJ`v)a74VD7G>LO3KIPf4$_iIr%#tg6NHlHV#eZw`&1r4}Pmr30gD&zbE4<2Qy7>e9rXFFAqn zsf>YgA}o*-VTZ&9zcqqRGTLH>M!!aSox2trJf_67i4KN{60yO=r*z0g6@j3p=XliU{(RWleZqI;V-F4wA1C>BRO#ASwFS14AniocEOgxIGOr0(`#* z(Bi>)E_y|Puam7rPNXH6NE)r7@Lu!L5AW4qf&nc0>)OsZ)RMiO)*y#wn@tYMDfo{j zf|1mrlm34ozKFHFlK?75UanQfXyNuL9_lA!d_pCY7> zENi5XK4QRF3mq|d9$J?2XC4>xAc3A60FRVFrvbD(5=ah=IFybUNEt*| z8f)Z+WRUsj%OL$FD1-FZHA)5*Vo*bXR)-bHf!UIv0|_)roKaK)(b#Puu=L)Z1d_AO z$e%U^0;9;6KKteHTS4h_H+QyC8aTV!XkNneBOrSC*nn;RxU#2oj#}oH#>-b#$EU{W z2-UI24EAl*rVw1YB0!{3y5zD_V^mp8leobg%OfuVI8Ltx#g*EEloMM0)TrheeM=6C zq6F4WTuD%1=}+?*X%;)n7a*)GQ$$d`pEygNgMmOk4PA2C&`_GSh0`3IbV&~zH@wo@W%cVnvpxF5{+xz?o!es?bp;FJdqTDKHR;qZsXrT-uB{bLg7DE_C!9lS z1?Qd14@Z5f3pVPA zB>?X5{(L@`GCY&aN2sF{Dt;b7yQBQ<(RrqNKloqcIAp4ukG`p{zXUa){(5X-CN>mk zbpR{}Gz&%1Ail8lOnYair7~!|HW0WOr(z4tMLn+y!Ue{gFUk(jVatM|>>rhn+&W3D z@5;h8Lehh->~Q2SU=O91TzpbkNTo&}Ni2viRk%ty5%f9aL6UOvH=kgHlmnJG(>|8i zjg#vNN|;arENYrAZNps{x)(6|`z~yV<0MQVnK=kz@ro(jjD)OSZmO=}g23znND*RQ zXiBmGxhn_NQHz4Na3w(rDL)zMmwRmaK4MiFw;i}^?4yAW7m#=#4uD5WyiWtPI}*=5 zwk&o10hlTpktu^-e+h~+{q_9r^R*@KdQrO^wJn@n%Q@=E^!JHriV8)-nhgX7USiK+ zYvk_x+&)JhVE#9+15u(p(Cdx85Hr^3dsBY^i{_wQ>j;%cZ!jZST*z+PI12Pmr6_@x%9tz@uCJrYoqH92kWh`>zXr*>@U%F~}O@K9R=896w z$8se>wX8oyY%a*MMuqFmg|_*N&PB^|l)?N(=LLqRXI_5(qO$|wHg+<$H(w4=YwAVj zFY@MID1VWhUnR^hjoi?R#eDQvEc#1O#p|#4z{KoHdakZ8zh>js&fQN*CR_dI3%bD^ zzAGl^F8(;y)P5+pCGXacjUmDB$T@T)D)RjbpUZ~YM6+HKNz;&*Kzu?d9W5BZ6~j0` zDiW0P!b2}%z%%>;7lsM<3#Wz=$=hn1lgcn>UmLF=qlCyiOr9BPT^}~ZrUh0#RDzn? zTtViIDyJ}}{H8Tznye#V94;Hiy>r#gQ^-4y2Fo%*$L0#eW#y{LvFdQO$>~t3mwoUQ z(Mn3Rzgi?O=8Mgcu4xKMN%*T(AuX(sa4y|5jBcVP>oKcZ^o9LPEUc*^o$P6A^-6RI z7tH!q^^yMxO;d_jT$x->ZNMBm_?+N+D;;?+#b5e^o*}&cx;2NTq6B@5D+vmE{V77w z%d$q$AEG=}*QsOE9#4ksuMeU#a_~#N;>M)pv41!)_5xbq{Q>YuE$|6|c1H{Jx511~ zV=VQ;N(dZHi;!M0AAP-`zXbJy{HphIE`AtNWrs-#Wuz-CY#6ITCJp-YYG~(?9`QZy zSgOP}k(M@kPprDbC}`$nYX>%p+3=b;k zJfJPLDcuTv4Nxs_iKk;7NKlexMG7h})`rc654fxqeDvi1D307dg+ z9WD&OI9$*s*5M_96S`UjQ4aVb$*v|N)&T?YFCUN=@_(H~YlMeZgyy5aBGg}kD?htWzoMePWz zqG^JUK;4-Ng3|;az&*h935pi|b^k0h>fyICi(x8JefG4?mKT=lZQzq35CEbx2UzNT5uD$2vP{?NeI@)SHVbiJU0MUUJ5HW%EFqMLBYt2A zz#Cm{OdQ#yyZGu2=|wh956lE8ZoD`c1FJUZZt4Dd@E@mpMJ#*s9@>q3b zeSPZ`Z7k7*pk&~U$;xnb3r&p8xL#7Sa~a98MJSteS!z2l#K-&U{R6KJ6%N1Df3FF_ zYUH+vkxJ%%Q%=!YFn3G)`u*PKbNm~*TkSYre_atkxMhTy=+Lno&;Ky1SRrCJ9nmx9eqnsak2HTYChV0e?{q6r}?_1#PDvG=bd5{bQNCFw&T;7uqCV+qtK?&h0 zf*3$RjhUO7o6J3#nLEtAlVlVW6?bL5xXQ){3hKJ9y1o$=S4G#?`qtH5*XN20tFk^9 zS6xwDzkgM~`}8?|&b@b%eBbZ$=a1Yur>jqORdrQ$Rdu(B3FyCFJFr3zq3bi74KNS04^WKt8nb*R&RFL%zYX)24?lZ0uDwb<@5apB$ zAzDh&Y6lL$1nyHAuCZT9*U?VY#>5H;4nt?aS~Da&2&4XFn?y|6wQTiByv3FE$uvQT zBg=xLx}3Z*KB|nb8KN+*N=(}|$<5jXl}X8q)2#&}4IlRuQQ?(Z?k#CAO?PVfN};zH z+pXT%%(Ah4Y#gOPmi#ZNL!oOIJNO%1*z~|6viz`E|3JOsfAfa7hv)9YHa69K2gpWk_T_g(2#YFIz>sVV@+JARjcU(*#(E3B5we8PXLVbLZK?KD5Q`Dsp>qzbYXPD8hjwmkJp9nw~6zs18v?qdH zsOn!z6`fy3f|i2o@mapVn6VsX~k|!FcC+FR2D~? z+98#)LFuLF+m4>N8k`I@-CehcG02LZ=(kVmmc*Jw?XJ6$Sljw7HbMH61rbUUQ)I+p zE;r2&Zm&)yKct(sYx5tM78sQjwTmK6ZBa{3K;sgj=_jLkT-4Sw23ew}-yRjAq>-dp zO9%?}T24@&$XL48%b&fDpybM)3Qg@*pjR21B86EnH1)FrYFLJ*lvPkJd_LCl!ZNku z)cQLRnqpDO2~E*^5t@1x{o>FR|C;5{)KQc5iQKT%GF3#N*ZsI4bacU$t({d;2Ez!V zK!9$)!xf-p+6u0Sfc!x69P3&8aI3$8m8(#eQf)RS_@1%Of>ZAS-E0}omQ6QoB7;-! z(BSPIyC*nBbWI1Q=7K>gNx{GM#AYjczec<3fRv#?@=@wF9gy1JtvV8 zlgT!R#1RTcKAj*$FfxeGL^^I*BuJ8qQT2&^px8!<_|e2ElT-C=sBW#upsXld+0hb% zr7%z^BB_TPe2d}Nyy5pCv@=Ov77Fc5p`~xsiidV40?_sh%86Ot1klo7WJn){P#zOZ?BYH5hcRN<@$S-+@;UX*RKkc zlFPO_wAGHCo&RNGh|mRrv-7_i7@D5{@#66>2EYp{fNulTQUC>u$6fLU&d!%pWM9lL zP1aDsxOwRpjO#bSs!sXV*uE!T1G(#5PSxb=wi_+6$)m*Z{^Wn?pQ5GVwpCpyNhe*n z$8bNou08ON9M#jxn$p>AdbXWs@y7yIEBOO3O)`%zT@-+EL^WeO&wRiMIx4rL&o`KM zH|4hTNNMfU(i*b?{mHu`Q;t-Q3_Ou8E*N;albgoPhALfG`f`1>j>9LsmGYA!q_)h( zxkTNFxk#og5mXVH?Wt#$2%ejpOfZ>9_^b^wENRy@QrT{$3M3`0CweNf?c7j+7}7*M zBhu84=$1_$Y((F=c8Ze+PiG9WBD(tRYCm}pBdI1yyEG`K27T97W${UJb%c^6fimWM z6*tXK4xD>sqjfQgGDf)Y-AXLOFHwtu?NyOv-puXrLY&N{j^;I9y^vtn4Oyr@pv-}J zph?Hl^vVJQlhSlYq^T`U$rKuw$Pc_4&EwMaGR7cFn)KUK$%3j>eIbf!nzYNqLZ0Z$ z<>cw5Jd)gnX&HICF`aBmd$$#_(`FSVJ~!bw?U~BRG+zuwj;@qC-cmuQ3*nfd@dnQ0 z!Pbe1%9*FKw~Q)uNmX4^qus`k5PBPPq+;`)YSObfeyIRmq&R*)(zF|K{0jPxi{ob) zgDi2>Z-)@f@K+kW<%OnUd-lHtai@`$6ZcO>c$HG0xf)re%&sWVtMpvREhy!=0!{fqGG(Tsnc7PUq|8`*=A_K%y-1lI_Hq2;lo|h;<&;@vdIH`}Zqn>vKWWAw zy-1rKsp8WD2{$3rS>o(*pq?$s*$UZ>;>*O@Y7O3g&TdJZN!q4UXY=J7u}+tNX*I#B zcCALf>-3qSLvlX#x=Ye$*WpY4!YMa>c69*2S!uljN!sKN{D;($OrJfKfo36n)(Bve zn?BnrFe#coyE)YV^ROGCYLA&ldZXB)Ao?$pK6`2C6J^t9;EMwD-xrl@;tJg?4{Hq&#`GQfMEJv`(kc zG_IK`G~J?b3T+Qy?|U?Rt)RuSYspxL(`dnW+CC)zM*a0C-<91e&SslO=n)S2eTN`K zA}xs1|5b^!|MZ4$mfY=5YovcoT^35D{T3~K^QHso(c=GK1)%MDl#@u?>mQsrda>gF zcj9{;CDNq8P$G@Uy=NrSe8w9qk(EfZhGFD>7bMb-1G9W7vH48)T_(~hXo@w5aM0q3 zwDH1;G~y@_12B%bW~9?@ z({xNEfqIxuQ$1>ljadTRKM)xQsT~=VB8^-yD0L(^?NK`IQw30zM&lpQG-fo)r_-KT zCY{EUb~Y1g|6YI`(olRq($tPQmrbZWguZjF6(`ib!x&`6ob}t&A_=tsQMHC@cL0nD zLf^I(T70T}GeS+8Dl)0|FWmJ1mZaLDpGfOJTbEg`$MQ&1TcVQRf(j*)YKNomxI`^w z46-Cjzb&5_GXhl}7V<=2E+L|rGV3~`cAQ?Kb{6;5aa=XmYsCVuP}&W0)L1t~uP?~dTR z_?EvW%FXwDGXP*a5iaLtV&tDo0m;Njh$2RPB=1I_-6Td1Qi&0V>7-`m*-3kZjB=Xf zy%?%oSKnjp*c7IGz>2LexM{dC)wqdegf?m{yN0eB-i%{*NE`979@Z&*qsw8b=6uq% zRNbUW_CsI3Fxj#J;#z5vMUmF&G>OJFGfkpf6i$=uIb8l<&1H+DN39(h!L}S_P^gfT z>Y`-9liq(6Yo;fCvWocKpRDxQo~_D>X|x$>1wn`$N)XcvD5}LO2Deeq;5Im*Jv~t$ zZj7kMsClbahNqjY#&~7RbbV~3qK=2Zh&0=f@>Q3#AJ;)&rZ~4Va1iBek0@4VMc;2J zP!(GEQ`Tfm))BBQY~V%)A+{A4;k`dOO2kdq2EgsPl@m98DnQG}P5%IK^m8Zk#lT1; zer!a7vLr-0&XUX-w8nj5fT%`=XJsvZ4F zua3#*&aO)V2rGcuj>~Sh*IT2~1#x#R6j(+*5E-5wqjHrG4O|AwzRR7!ZBOTW^{WM9 zm}UmG)e~@3w$ib_cHC?E9T7XnYx#X(V0v!Gv%S9!fES#c^FHNF&Vm~!UE+#tZ`f zX}AvPda$CaJy}Dvy};0RKfA3*-wOi-Dj~Gz2fz!`_sX8p*BxJB8YhPli2|x1wtspv z!3jkW*griQAV~>|js(C9QgjNSmW}R04e+q?2pKB+(294CU-Y5h1dBfO+e6G!*0VI0 zjn8Z&Icd9PF&p2Xd@G`K$>hkOKiS%XLH|#4(;nse-yRVNLQ&@W--@O&cc6T(KYa<* z+K~};?gIM*6fm3JOQ1eifC$nx_)Mg!okJ^|;r{~q&h<|?!~Y4!AS;Ka-yWVvMkDdL z%^>vDUpb-wScF0(Q8H`)5pJ5FweR$tR^dv9qIA96YQ5K|)9!<fG*cp+g-N@KEg=Fkh#vn_^^xG4Sna!o6 z5v8IKkQn+(If*$XLbtLKz3m@Aa&}wrW!ACCJGEr z>Zq-errpTTB>Il)s4a{^mi*|qM;rMGlT(wR9c>DUp?=Fr%t(Y%DT>6;+MMhYDye z=`NBlR?1z>M?ltys6bSy8WEKf)vjTnMuZJoPK^k?7d0XuB{|_55&kvHH6km;jnBo( zM2_~$L_FYLREnIaa^YUzqF7`V(v9PrYEzvRjeNrsb2mp|`z>zifGisMng(y*x?74y zJd%X!Mh-}|5ewHEcr}H#1{tu3L>7Z3|+~W z^)Dfwnl6$rff(J?zw~F!d3%fSo-*UO3g#;qFxku5*ev{baMiZO-BiI`5RnjAX{!q6 zNs-p+Dj1DxW)+NXQMd|bk7D#0k{L*>noU!ut%m~JMnxq$ISxGBU z8`A-#))C1j!lgeMk|-$`CEJJ*cd1-vBSDCAnc#T-A1IfZ@Q7lS9>fz*GX$KIczQ10 z`xd1{#CdxF+*Z>$cK}q`yd1;rP zH&_8q*w=&&)CX&Wm7yVFNrzCVVlNhD(-kzgCi-ZCh003&+r+%gwttb>iN$a-L5X%z z2oU$LL0nszyH_9MN?|onwU!OL25)B`<<9g(UU^JkWOi0!w6jJOZyOkkHOD&L?Ei5h zk91Hywi)c$LH$I40(uTci+b)4Ko^{XUj(Q%1&bB+gl1r&Q?um+qM8WJ$mJOVtSv)3 zt3`lmh37D#5S+s|Q0T!3t|euB7v)rKa;kekv&h5i&P0r5+&yQ1C)dC;B2!Cmisn zRZ*dVTKJcT4UE;AZp&4Y+9je`csP}y3;t10u*FVegB?$=g=p7>iJKPyFF3!J0@Rvc z1(T|w3FZxuydSCzl~ali{MF3Fo$n-XW(LUz0kRjKF!TX4VRk_s)0q*XlN8Iu<>_b& zQi%09Unhb`&UesuMqQJkG6wfoW?OFLl}y053QlrvciV>FAX@$!WO1Ay`JKQ;M90N}XP2 zC~C@qG`m>Gy*xmb5=3nWzzY)fwLK%M8JnlxI-qOeQm1UjMqhV)g=w6;lt>g%1+h}6ZxWnP1c6egZwE+Hf}-CDfET3bLjdiK8gNRTLP{W1 z>ZBEKs?IteSI<+UAtFF9y?m@)H@{nZgFlc|x_9v5@d{A!Pj zrPDm%xN9p^3RS+P>shvs)`v%F7nTV5bHGV0tb-O+tu3X%sXsMUSW6!I*|aBU3r!)L zdN6kqw5jryv6jW1*;CM~#NG4t+##$E457rdIXM7sQy?c^a}GdzGi|&9dYb4!NUElB zYL4hP!8xMeuA(_oSe`VA+vVUSrsd|;(g+Jub1HY5s_gQ*0y9-+m&su+m|b2iCiV5H z+c5@`4c4=Ep?f@L3JhHO^xM$1_db34NDmHn@8WXAR~I0Ibl-PIn%X5BWy=xoMBlmk zj>{2W&KN-11*e;Sdt^Q#&HRcq#Dt|@+7Jf6gARS9v1RMUoIz4kM&lbPWQ?Rm8&g; z$wYm3O|{~A5kawJYE7hRH!}64LNaw0W00l4^xJ3&q7k8JQ%DT;TTWsg7ok+j{1x&i z|Ga=4N`I1^wNn0MJ_52@QH7gTDL_7uJkd(ku4vyeP_4+u4(r3#Xk%n&&0hQ@Yxl+# z5cFPDE54NEgsT<#*DO~nt{5JxRi}y-D<0(+E4r|~s8!VWt+-uxbFS5!J=xB-nr@+% zEKz);25-M;x0EQlln7NQ?(a7d;V=KORtfCYy-$y;>-t1PqU0XxHC>-*S09eeweI4y zUpV!B)(cXGY&lGJiAV4`e9O$kyWnkyBotL>oOa)eZP=>D}~)nZQr92R)f4&ZQpMrt<$xA8rRI) zKHZ{lZQq{6=bvgmTcv%g){%i}qIRJazI+KC5L_G zL$=B%mQq3Aa)J;AeZf)uKTyzjf=3h+A1IJsJ(YlkS&>;tO?1}9r{le^i%SHE2Ls@? zX3hx^p9|3P0pf=ts$9_b%Dwi&IbZl+GIIwW?T0_wUY=FT237VE4a1dvK6Q<@&#LUR zx($llWfY>I(mGB1Vd_%I&;j|S zX*DLZJ8QKxMN8AF0qBCl)Bva@OvOsmv@BU7RH!sfN&wY`5xH5goD+c@Ch7_2o*Lw| z2{5j(AQBoz5R=F3NPGG^^v8*On5F2m+vHuDuKK}omRHucWAkEVTWzXI+w)Hw#5+A` z)-pQ-oQ>V_@bUnRBMljMJhTBPCV(;yo!{~BINo+aSG&7CE|MgNV|2AeZj6;eYVp$; z`mRz1bWK(5YCm#`cVC1MwPYk`Hpmm(vx zBYEy*r7_EJ;^(*%tToa_OZt^6QPPC9&u5aYOd2*`CjUdCbB`Wd3sHF%C))2bH%`>KSj*up6@O-8eISUmn^?gB8 z)D-q;cCixK4^6soRTc)o3leoXKzl<}Gd6NysU}m}k`CxvxM*p$p{-lg|ZP-dm-tIn?>G&_E9aDceQofFfH0?&dPDI~v`8tv@$dWJpw&)p4 zMv#g^Kw{`Cwm4AWMGq+i3BE5u9jK zNDTE`PGX)Gp;Ss@a(zWrH~Y5*G?#Q2$rmf-F6JX3>l{>|Po>TBfn=S7%HwI*Fi_{f z#w@4Kf!>Qchrc5^;W`KYHOqAlE7^SMI)`TNS|JUFfj4WZ&q(&8Uf7xnZZD{c));%LPLHni-k=J-*dVxqvGulcgoXlnYHIxjDjX4WCTy~aq3{WW;tsj!3zl2!~N0R<2RWEP^ zL5O;R;23sq^7dqJJZ1^p?lgIO7Ii80ZGQ6hY_#+zg^pH6lecFCpzSG@QweYZK&@b9 zvE=P9Ac6kLK82FEQUa(dfXLmOeL0v!A(F=71jD!P2azzL-C;)&|;@gl}YuUYNf$W#fu8iL9VrK zi8Qs>T4ke%FGk&*aM<%C@Dh)}JwTDV7OY4cIA4||j3Jh0D(1#*TZ3#+VgT^JI ziT9&O*SN+ODlv?#GXI$&@z^b2xE@#zG@5QQr(UnI z;@^?nHUE*R%?&naFIN2L=oP=+^T5hgm5J(jZB?Z@-D+&CP7RONx79X|OixwmTHo^q z2M0Tg2pkJa+ftt`&F-31?t3^&gSTI}d-grpR0?f-SnM!Yn{D^0)+VfUPt}9!Iu>B) zldPs*)3JbKEDHnQe9@D+c!C_g)ZLGI3tX9NH`Liy0lNhVq04CLTo zYi@~=WxREVx-Ect?og)~z~laT>YH=U^SFO&sQ*0fi~dJVP3Bx^7}Y)hb_Z}r=mTHz z#jCxnIXyYqm}+foj^j?o8>btsT65=ZGFq+0S zGmNHN6b_^9L2Uk@X0sJUTe*(SC+)kLoZd8sT{pr9QXw>Ky&kVMo7FAys6gnmG9X$< zB>zEQ?@u0-NGN&8_BM!{wB_dC2||R>f+J|sVuH^F9j)SMaJ2zKxoP%=&eG(Ifl6l& zS8}76yfHO`)5BYhKG7sh4LVlUBE~6v z|AdCUZ3gcPG2PeZis#F{vtxinTC?;-ZZ)H<$tTC~Lu6+`d zWfPsEuTHbQrnaNCPCyN*0LGH`V7bnWaFvDxEslps*vk-WavT&wGa&w}sS6?g`&uJ1 zc(Kr*hE|zEA1{_aB>-Mf>Yo5mOX>?2%ZJ3?8J;KD3nekb`_Ftb7Zy3{)`(pGwx81n zPnE8sxw^sMwqx2D7c;v}dfN}f>nX^b-56j^Y}?N>127IdGq(L)2RI?F%0TVw3zgkX za`t@eoY+t9S;FP;wUM348hSPt1M#>0$XQP38WYKP$+n*tMhF2ZQxW^;)7a0H%h{eq z>`$OoVr2lAv+E-l`AK6lC-;O~B9)U{n;Bh4-W?g69oTfI8;x2anq| zPfTNt4Ev3fN6BVO{~V^BdKyRcZx~64nTm`Ej#SVNfYsqveOtXXGuVe)Ht6~eoC~+D z4!yIAr<3#%PHI+0YMZOmW4JT`y{S$r27@N;4_5gxciv?LHk1b%9H?iEe;FZep_%zp z?j$%f<*UHV1igm>KE&Lwnwg0v9=h}K)>rc-X6Bp#c)^)@06=>*Gig|!&p@Y|YAU8? zrhXHgnfmRWG&7Chz|Wjj(S7iiI|~c1(G9QOwMdqjUxEYWbkoC;>66k;x#~{kpI%;| zSDAkzSD;}2=_YR4qxyoUMrINXT-Fyn1xiHlD0ajn|vBJ-tcCMC+h}RsOcXkfa>F zDbm!IqvVBXT%y$At!N&Xqt`PAS#qS`9-c==BQv?pARp9UIr(@UQj5OdRlAp&>&@I#Tu@QKIo8i*6TGioE?ZV}2oz#WiQum~uYtpd>`d)#-O3C?l zq-i&j^L_Lkmz-}f23eA$->$yK4xbeuuO>;mG$JPDvdu` z)*c)Geb(1n(^C`rm=gWBCN9g{QU8?o!)-^}GXIC8Y0Ugv`4HafE$lTNs01A>*FKP! z;5&_2_%%4YnlLC)HQb-9Dlk0B0~%hBd9bhGL8Ub_DYEt$y7NpAnR#(V0c52s_GF?& zByeQ$V!<^`f01-HOSl77I2iG1;!kK9H$q<$0T$JZi}mIJ)+JVQn*!jr0OrJ4CIQ;@ zO71Ul4A4u&!6|Bdka;`5(GSUcHc^2SySa7Y%C>n`HDvtovGlm z$_(ZM$*pE8b*-f;P;|!bM^4chy%$Aie}jREqBH(A%SC56-*9qlCb!t^V3podSo_&cWrN%2S_kaz zBO3^1yQHoEcE|SvVB!bBa?6yy#{h-PlztKFKd($l^lz0Z%_9+3qY!_%LwGFo3B)Gc zI=D!olK5=4igG1e*2aBH(88(WTd3xmWQtSGxA#g>;|BvwKizR0{Ivip@<_FW0TPGp z3&ccM^iqGiUpg-Ir8|9!k%4IAA#92GQb*J&3M9+8LX*UFk=zT4cT>i-*wK=9`PS}L zO9Hf1ijnA&0E#cJp`UAp2I=BDDY4Z}W3@qC20bz)?x};PK|flfwLa}W%cfSv$HBqw zjpAu%G=RiR`4VFs_9JugW3hDWm~N)Ngq2+$8WT28yBg~G0in^}JnbbU0=d^Ikh+pL zO+PmPZ3}3QGk+UEEoXine@}om2VUlLN}rvm#3;13dJ~}`xU-KGA@faM626(SbNxQej(7t5jREk2{CGD& zEq)X%vB_qL9v~?xIzKVQgE{v3vlj*^Y%Ee%U6<9ZnfLicHm41q6)mzcZL*7OOq+C( z4Zm}z+Sdcji51y=B>>|vG^5Do3xE?=NYQ;C-}$t=$tkkIK>Q*bN%95Y7m>WvBAY^I z>is4{08&OWM)E5f^O@4+?^$t8I=yf;Y=g=!jEl0?GJ9c{KTj=9oy3K5By%^#F8g}g zbG7+M)R58Q10zlCXmQDWRa-Bv-4WOUWLGf=9nhcb$4J4E3Z}61+r#rntS41Fw;6aap>E5z3M! z{q_ldIJ?eN?KDS?;Wmv>u|R)x%54Y$R`XYXRy= z$$dejX*ZJFuO!zWMO=PwX0)>8SHGP{WjDr4Y>U4kQPjegC}$ziUNkhs%oq}WD1CaFQfA(btypxt?s*u(q^HcjUmlEB8@?TDf9O|qRf1r7^ZWW zKAI^zqgWQ?;Fo%YXUY}#xg58i&jBiVUS>*T<#wrRs^%8xRi;pd zG^$#+sWhuL4J<8xDuASPQy(LSMch;?ZgCjRf8}PjMysvL_G+^N51}R3FiYBbO*ERh ztssmC{-*_afhVD+VU=t^8}2^Q|Z0*bH1WIP-B{ZJceZ)nHB-|ym56oDx!lji zO3Xj^p{qUamg1>6?kdNDD$5-|5LjrRrsYz-Dn7`~H%+)QqNhKR^fIoZ9X>9%TN5_;uI%a;Ne z=cal;C$ODD4sgW_cG9_~^V>LwLK=qDi4@-n^`Do&6#d(&UYZ)J|9Sj}JA{WrpD3H^ z6`#%4jyaqw3M7-6W>O{Z0Op+WH(ew<@vNI<=0PE)W92mEM>)6nD*AqrBOxy4`dT`K zQ*S2LYhwAm^-AXssY3;@MR|G(YM63Z-iG=<)1S54u%ANv?EfzUJEh1>O>6sDmEFq5 zf+faTXC{YIheClK=wofrU>EFgH1++(5}r(d0NmCCIiAc304?vyECQ63Y~qV65Ap1q z=8#G??HNj)C6Rc|nXbcfq(@Ktc3!K1@wzAuj(-j{xgN%5F<4PW3!!rhXY zxtuBG+N4-!=8^!6BaRuFnRSvB@B<}*=J}Jt?xtL3M)o)t{34Qfnwhb$IFysyexzlF zr}adH5af=_mDN@n`9C$PonvSuqN`p&@B2yCU_=7G%knTC0{+V9 zs1qTuxtZ241VpcdgR? zcI9s@uzME zXm6}ibP282MRe2hR-z3r9OF_t8X29XN{I2Lq%>ENB{DBSOD=n2rq#L%;a&Z~hg_3lzfe>O0i1l2Q6eA!8SCKwv0qM%@_r+Px7P|CmPb z;~GK!6+&|CC z+AEj7nO9mJiMD)&d~y{1dKaY|j>az=@#GkKpi8ODh)C|2;$0e#n+T5)bfyRq!K1wo zC^S{axx?5dkxT-xeT4o_Wng%$+T>#rWsq!zRoSJRrISF0IAZ5lGM&O`AbF1Uti7-9 zEqIq(dx5}2@lyS%8Oe6yG0l_EhBI3&x^Zf`+3t55ynRzo@;Jjv1e=4CGiyc~!#K~4 z0vagCQb9+niKc)&xBV8IJ_{9qqJVke(qP|z&6DJTq>Wya+wmWFPCI$6=i@a*%g`g~ zqh8aS0IeyNGs&1Yheq%!k#7s(WwclF-(X|u)WGP1RFmLHOl|KChUbt0menASPmS_BxS;8JiJj!ZjwaNyyC3iae^F>LX_~X{%GUHEKe3-hrX( zIziX9W$BunPY~ix$aM^iZGB zHF|Qkmnm*rjYJzWTR#e{h~qAM)l;yy&j5QY{zPCvC0P8i0C+(be-WU)VX-|rkInml zXCIE>=&_kVJ{SkdW3%y8{48s-e9oM`l79RLUlp~oj&3oU-LhM!^T|xoPlwsx1RoQ} zopMF;FpfTl@yF@r^@(PyI?u>(h~oZH z(@_y zlonjs+F2zL9~SEjB?T%%5MM3M)5kF-b`@Z9CWtQ=BBF`Q&&Sj2Oj#{e^Y=L2m15Tt zn_bBu-p3aq2|F0?Rtpbag0%P7F=vn zqM?isZzNQ-76O!0vC!6eN6iKLT*{A{qF!7-NmYuH{q%un0gALj zOnziYSc$UIR@wHPJ|{!MYPMQm_7Rm4*F{=|x<@o59Cf`9xQejwhv*lFh51(~>dJaG z6?F|w4T+@+GyqE-@NtJ14GVupBlwRRLH-p&kilx&f21CPt(k$IAAuLUSu0q30b7@d2G;HXRETLWl zpACJq$Td@;;bVa&&92=T8n$S97Kbt) zlX4mL0#A;GhDFyEgaEZ`SPI7I%_k5$`;&8Wx$5i9-4z^8QS>Z{wi6t_kQdo}Hkh_e zC>6!d&C$l#2yO+Lq?3ov#ARbRX&SZs#?R*DS+z1{k+nCS8G1ii(EHM|^iD1z2oW?6 zj`~C~>IszO){#-zJk=Q2`x>+>YaN({BY{Dpy3^ixxpX9O`ZWaQ=^o-H(rn_>=5rk0 za$W2ybs%+&ZfHKt3xr{`@g2Mp?)An1xGlmt?)5l8%e&WS07^ujN$tqUvl$%p5WCir zg&cWi6rpER+rE7Q8-*C~1$pIWb!#MJj||bgf=BIElEez_ZV$jX%*+VU+y*$|396~n zX`x*pL?cN~0Y)NuuR}Ci&xJ!Y`gKN#MoEEM^mHDg`2-PBOx93{=2M!+p(sPC5Y5MR zSBhQx+ZrJGFy6L94!iLNZfZIIDu^|Tnv^O>+BSa(RfC7tqMbPv_hd>@Hz*<>M zO04xGA2tzaCdm+uh10{t%Hkm!CCW-$cvkvqVA({*67l&y0 zS11C)dR0b1x-8o|Q9GYHF0Zweqx26`ae4iEP=ThG>*W>yLem*0pBtZlCMY76nrWuh z7&~eks7YqHrIZ1*YcD%pnP zkf-1fiD#;ux%Q@q5S}1Ap>vDLYp5SQqK#7X8OSUr)B}wCwTxNm^~#%N?-Uc!NSF`s zGcHpkYy7ofedHP+zBXizFZ>hxuXcv!D&Fk?^dr|`U@ ztgC%({5>N?{kL6*c)SpIs?(-eip7ZISOq1ma7H0_d))1T_xUFXy0)?YU5A3fjy)59O zDIjwL9tQ31a|4Hpj|39~J|d%j34lSTXjWjM_*@q$fyZek#Ef1rC9qn9w`X=kwYX%d zh`e`JDt>_;L5KjQ@&Sez$y(|)oexlwnKhZ%>RlDVs6-|pgptuv$x3`F?)znA0@eeV z=90_=>{j-38eo;ATinTX(g2&dM${Z7a-lpF!BmVJC$lu5QIlHKberA%!Q8DZxGadDr(Mm+?U7#uFMy0s+Z+iI^>yGCm`ToFHo^&2WK zr>5bc;O-GF#++`_H6)@E3&|pJts=H*$VrIhom!YEt36#G6k2|$kIFcC35XqSa!%^i z%C7t>Er`zRYLLd)@3teTl=leU>SE{iVc9ecB#u5zQX(dZ-ejkVZV+YD^ilqltFuZ> zln({K3r>`O1ZZz2N??$*kfMc|lx#{rNTM!j@9&A7*667>8mjOVq7S_zLKDL6TWF`I znnsg$Jv?TW5vC5EGIhRYmiVVWm^MAD7k(r#pja~M=K&Z;Ffx)+{|Pv;=uo`d*Vp5A zH|6Sur8M+O;)C4XZ7HoZTQksoIxs2JniG{gNNGLsZjd3;@kk>JMHdS5WlxyrZZPtg z@9Nnv+h_sj8GjtT&s^4(ibNi*yHd<@tA!84`?xonu<_$m6dONIMeXO%%Xp>gL$u}o z2>JP_dw2+`cEKxoWxytO5w#nb-9XbWIhVfHpRCbi4y`V1*`#?+$tWpx`vds#2IEG^QH^YQPvAzPN-<)0Ocm54ptUN+Ul!G(o^Na&!$eu(r8nas7G!tN^?#Z>0D#WIytdTru3>UIcAn+lZ`rlc)HnYjBl)ufU zyuUJMME||+N~yU+Z2gnGAMZP~00*XMM`9~?j7YIv3bFm5L?LPgX2=R$cA>g8MwkFm z?uNU4nmF8OxK`hWozNrGe4IfQ*Jk3zWZHIyD>MiDE~DcYv7V8D__Y})E>>vPt&Cq;S?AXKT z-VF$^&kRz3zbzmdG9N~w;aeB4ch3yc2OcC*C|;DIrh-zYxr0$=Q0XiqxKNue zWFa$n3D_sh;HC77%^?4pWixox^we0c0bJ@Wd(gfYrf)9ylQMc6F?eb8xP?}BJiDs& zwl@o&4Z163?vAqOZE`){cWCbVq`9LJrVZVp5X@)Dk4FvNF=Xgql^k9j)H7%3p(D(b39hwFu4aeaCo;G8c6~oa+|29W*499JRO4o+tF6yPY;dnjcSHf_- zP4*AF6fhib=k7fJt#~=bTLR#=g3K`-?+57Y8IB_%Dw0%T!y#U}8q>zyGaS_4Ya@fD zNhb{liH5I_z1}^;K_B=tK$S2YYATd697+cm!G!{H$xz5}{1mtf!|^lv#fF1_&9dP* z4t9a^1^LS-eOIB>i3+F}CWHaA}KjG$i(awZukF;5t#As@;NRG3y^iN;-KS3mj?Fzn;3*p^e#zs;Z=+j0t_l5JZ8ht-=rY;ryU(-PhU)zl+5sHUDm zTti3NUmC!-#H!+=0JyCLbBx1!fcC~XxJTN{RsV5d_5~5_JOe-=PmF^o13>)q^{PE~ znoe#2jXtmvP$dk2lGjoOKuuXAT~Hbw7=RZ8S78ADjDE2J;9s+B04ihEO||^BgP$^C zh+e4v`Ld_f`r&S39L+eC#fmmsGqKWtgJi7Yl;?1j37EZ3ccqm6N?WHSufqEdmA*=u zh!LbU{s|D#*T~OD*ANw2LvT-Syew6w9dD>-O01@RvNa9dI47>Qp2 zv^Pc~6na_#QIVtyuOP%rS998!dj^F1`&MMIH09(9f<(jD%UMjHd^Vi0a-`yd$VeIlI}_wkkz)jO4i_gmj*e zTveUI!G~iP(R4^BG@eJ@6}Kw4Frt=K(fNPpGl9&;U&s%^yzFPU^->&d{y@ie<|P4e zTc76GnO6a{H+IGy9~lTMtG^oJB&irSIO3(NY3(6+28a5)DKcuy;E?$Edfe;XGdT2t zQ9zY2IBL3-GB`?O7~zJ(a>-E0;CvaliWSRO=ocFt{uMJg?zeoR$TPxJsX4IJmHsZE zL^Av8i0^6yzo!x8Um*l}XGnVQ&jJx#F&lqIvDc?ApN!|hUu!i6rKzH7uqw({1i=Q z6RU35)>dpfQccwK1lLPd$8gaEr3;$Xaa2Rm%^f3CjmeS5_K8*4@xQ&ctv1!yn5c|5 zHq}u>jru7ZFg8+~qK2EOnyS8ebB*o~A2UY+?4qw3mJJD(J-aN+k_`kQ&LFesW_Hvh zwA?AVqsAq4pIQeX2}4)@4q}IgP?JMkgqFFjW>mUPPb`FqGFegCxv=arQT>LW2FM?WG5>t zAV)LMJ!mc!OAOXTA5Fa!4_42CI)%G)hg-sAt_XnJ)XFiLj|XUP zOs12VlA=OKOG#3N2FesaXYe=0X;V6HWkE5hrZWFOC!PuTU6{EkJL!2CbYNs}9%bEHmtr*IPo3 zB6SSaQ2|3`!S}*c?d$ZHGFE>^EEUGeX{nVWo2!>d#w$*G^RZ0j!>zh2#b0-;(DU)W zLvyv?K0Nhr~Ip*rS0G&N^MLS|7slw(;yma-njk)J3QGcI^ z4AwGNBpSXI@Ot;m6@B1cfGT0G)KpMPuJ+26d*L`_{BJbto@+u;W{#9PF%sO_UY@1@ zuI$z_`o(sOf6cPpS}|Uq*to4aHjUkjF|&1Kz-$@tURbR@yStRpS_#TXqh&YLnvreR zDr%IOwJLSM!GP{c*{q{&ot7Mj_Z`}-gDsn7jX7-jda~dD> zqrf)RTH9-Y6HiY+Qx|aThA(TjCl?WY`jd5z1mzqbp0L!Fyw=tnN~l>eIwenufTDc-%D9DvK@EKT4)6 zE_&``nbp-Nbyvz#ooFkYNn5H4WUPvs47~rvl8Au|Q&;ZvgC}(+qcGf%Ji&63gLU`!x3<<-MXx zSe1@*?Trs4*HlW27}0_@b0G^^s*6ECVW}>mUu>!P*DPDA6B~T$NPI!1FRidv0}{3u zHfkT;SIR&=8w8OCO1IK#imlTSwdl<{>RGxgWt~>p;*(s5_Z?cNr2)#NO%v@LxMK620x_s-MGNvxExg}FX~B^9E6R6?ZJL7f3>$|o~~Wq-0=Q>>(c zpnW7QGtyZx5HCglHve)A#7hX3Yy)w)b9IGax|JkrK^waA$Vqq`nxkSYMQdrERo3g+TQEkGfVV=7Xzw8cxl^28U|0>ptM-o`z8ukbi{`gZrx_ymM0r@gq5C~iCue;&xI-$AY-+!hL0Qk0wNn zQoE=OVUq7tujyS>+43)g7ugN;v}Tv_=Mk(+6yAogHaa!=EWQ-?7&CTQ{Sv^&Mci}5 zg?CzgUeYicK^eogpvl@Wwx=UnGSR9};K-lW%p|Ufq2j5L8cL>6ZLoc`)*3~E8vp5= zsx=#9bojCqUF-%@dR#vmt&UWh^@(8|K}IR)5uxyPR7+Q~@ITmSETDf18x7jm zwa4fJX6{^xKg_JTUF5Y?PcS(>HHl&YagGBP8^dGOW|PX@P#w^$O;)F>ty+LzvfyC2 zF+DcIn?W|!`Zm{E!=vDGbz%f;r%qWSwqvJPWpb*vt=^b!V&9l*hTYKOH0>O=@5v|{ zA?X)Fa&TE8Ne&{2vo4E1KppY!S@L1 zq8)4YIi>BrN$4mpv4nrRV;|SZhsIv2{LRoI8KYjwJ+mC0Yw@hKqmz(_lkhI1Tmdjn zko-0qsq5t6q8`X;TnH!JWNXur^ce!yO1lvqKxzggFCqMJ6tF~7O@?gUfMHUt(HGPcfGQ zWpMWfuq_d}dv5^T);>9ryZZrJK63X0K#7gJJk7+-40aiuB<5TQ>ANDxNzqjFCy>93 zgQ&nAG0)Z(p%|?U+*vri5>O=qcS=~*JTuBE^f?(4Q#u5q70_w~C_`ckmBHCrvzeBx z-5Vz3zksO-+dV?RIBdtiLQyd`j=kAtbk^`_bpq=t=L(`MOKO|-lcQ$c^qfxdlsE6k zWg#_af2S)m-}gfyEsFiwYBm^_S)jq&FWJ3Lq)m}@45ZI~EzG|CNLwHF!VlGh>e~Dp z`Xq-?ub%mzgJ<2C|3U&{xd8$Pu~wCXEanDC@^#<_l!MfaNX{Vq`jgWonsND5Zor-- zhfL|!hSIa*4qSr%3%Uar5-MjV=hHuB-GS=}$aM$QBi9{JPs8rO#sIb@+<|8Wz-`Nt z;||mTTHYNv1yH%}fFvf__8TI|DR;mExi$`>+yP= z0nrL*xuWjCUFb!)19#Ieb_e*^EV~0|Y?-c)jg)o})W&e7qae5e-C5MJ zSPxPN$Kq=G#f}C4ia8dAa8wyx;HVSuE?~4gXhGW`Dn#j^04~w^TU;1;n`b@CYCyh+1w8x+%+?066s84;ei&CD~Yj%X3BU_^e zUB%aG@b>nexQbI!_A+aEbOSZ`u8McwrST69zf|##Aw}{|>NVi88kD8Ssvqcy#UATN zB3P9u&Iw^}PUHvZ`D6aaS6UM;B>b%Kv`4n9@_Mdce+Ra~Rf zUxnIg?j`?9IN&yMiHb6iuA5`eD&_3%#@WNf`N<6ZVPq$vfcrTor0EG<0QS zqBb-n=u95y4YT$wvtMa8KLV~leDDr4Z_Ky)y<8maW#dk zu9!Mi>MgZ2jEjQ!(6s|U}~kQ_={DX5g1nqVk@0g zWLQ!SA}k`8Oq|Sye{%ulv@gMD#R`*ug%)sfCUsbn*4dOK-4&RU&m?yJF+D2O=)qg=ls<%U?~)JEXK`h$9!^Q|JP5$|YSasfry8jd zPmrzy@%%DAE5wt3?GfU+K)7Q8>HK#hlGLWMkt>`J<+7lZa6X{BQo`vR1`9o?d1LwcYTYWZ#Iq1mYUVy518LGN>+UnWB#C?5$Iwgqv+5mV#;=ZkC#C6A4 zn8wMSL?X=rLt|Y7KvN+=+J7K8;YRW8A1*~d86Zgsihe8rUXY?+0%&i<)w$FpB&>5b z7+Fp3r;Tljj;@bjV@`~rBX_O->XE^cu9GzYr0aYa-RoT)5@LPeT0oVk0Z_VKc`Lbt zQIQ#C4$aUyJ92mKf5HrNjAkDF;wk|C6>`Yfb?MD+gJZFKccN9=r(&p{_*Al|luvay z$e?^G(Z-!=N7DP=_*94Lu9SG5VB6s2AiVF|rxIfznHG1es!vrgd6r8AqCVA$SLzer zTXm!mMCM96S(LjPua4*wQHnO#lugbeO!|{EG(}4KNOXGbX=XID;v-#({%!sQQb5W_ zx`*yF+JXGD%>x1cd6<5vcrE#>KCS>wY^zHuSE1Cc$_4)vSzi9BE6}|o-`nTDUqt_oGRI>GY z{-J-rB4Agst4FS4S5KkXLx=wTK7elt&Hg_D@Pe9s-cNd^+1*3`q-tLYX8$^Zou}Ff zii?GkVjc?Et>Y|QD}hz8m;jotu!T* zgudIKjA{y$)c1n`t{L2CMc?0q{tN2+8A2sn-yf*LjFN~cU%pN7uF6-BT$Qh$Lgnux zJM-L;odK*%X#H0Nz-?8OXlDUO4tEv_cektXzdF7RKwX^Qa_rRi(PQRh#19E7hrQTHFA@nO=yF)qfr)hhT zJP*K5JsW9=8}SfoVZQ)CHp90HpoI*SIGFYsQI!L^-Nt!7zg7|{|8j932%wVO8N$6S z&^TV8;nL_1VPEq$+0q4tHLPkhB6LVH!jrCiIE2ED@jWh$TgVYC@(%3dD4gJP4%{celM`b441JPm?qC2|_KBCJ?do-LJZN z$H{+4T^x1xpP`D4aNm$}UDuKYybM;d+GP7HrHZ3)GGo~qJ|&eFv`Szj0yWjh?u?HGSTk#@-S*V>0Gb*9n^_1Qj48& zm=Ck9epf)AOZd)z7XY`FOOEe+A3)3d&aVZO*dfhTGJM#YH$YN+@Syh)2_$av4w`d1 z7a*-g+g)@LkSwDK0)aiw4SyckW6#bU0N+hN5e2|t^!EPt^;A(bG{nk&XsANx62rB{ z`OHEx`YzLJTn%oLS-(yCeT6UNg_T^y%BMm78mxKX@@ZUr( zsSupT20K;=zX?#JghF^E0A5fb{0X2vQV8wK9%%XN3oqJH9iJS7gC?0_9%vkrqkaZn^(RNrKbdhio2n$Hd*d_Khp}ju)I zVkz;%E*`^9+S&x~l$_ul%5)dw8cRs}Gn!apli38Hy`)n?qHQ|{=fn}D*9rgYyozAI zW-C7)STP7|LZcd3(RW-$G)3qZRtCmMT{U?vLSXDuQCPu)ELKUnT`5z zZGfRx^o7Mszz6}`-Vi&Nr>dJbkJSc^MD5Wyx}x>;E<}qqBw1`q$EF98>rs@Zq81Qk zSfYVsgY~T4hYCvJJZRl$KXQ>xBFK_LltsB)NcPT@@srev#sZaO%EClpw>|aDnlra@ z0HQJ=ZmX=0Jrng98&*_KIR#sg;rgd;y2i?3daQ-&AlkT0tAN2iq?Bnh84kSNhV8`I z+AdyTKQs0jlY1nDcKc`pH+4W$X00reTP#G|1tKFaju0>TOLX{>+|sv z?0x}v0;RckWx!|wR#N&^fdijpTV2r8P8R?k z4aAyCu9ZAB5RbwR|V97Y-`kjj&wNW2~~eT3Ji)YZ2k}!ZVA=! zKLPN9s$u@md!-r{JJg_}Ce9T~N1yfrX`+Xegn8*J3H>IhB=pveZ(%?K zmk!azXc}{fEKlbNmtJ$tRTu3TuJIM&cjQc z&fAPhPc~pR#m!sQsV%kE&SV&U=PF4|PE_PF2GEefsiohpEJ0OGjdmF*iA%W&bzOvh zBv(@ONv?V=`Zv^TVXoL3i`R~dAjwFKfK2@)6qpQAG(B?_yz~cw!2XqvokJAHKimLnouNa1_xR(u= z^Wi8X3S}Tez&hM~!;OhnZAXhvGD7r~cOis2;lcFL@kz8q z5vWsmWURJX#AEr)UNLEn0{H(_q0_#VDvNBld^^jc6`<91uT1G`9c(Nm2qkD^;Q@M@12b+fIc42j#xu2YRW zjR0x?qFq2l{uC3DIloA|QYA#>kDZIizW8!)rd$ybIjb{kVsX3E9zvXpD$3(QoE$}Y zVs~6SHUM65VxQVGuEiDQu?5Vx_Kw;`T5De9u7vF54r%VUM1#P^!%HdAh4Tjn+=B>E4olqXReN;E|Qshl_jrY$fSt zA7u%e8C>#m8Yl74OwVKoo^?}#c1RYp?Ja-e!(7JlTuJL-MVMLjv{xu+b5o-+HngU~ z8vwCt!~fl*a@5MeI3e1UF=)U`eJ9}{eST_VOe#y(yYbqO<&K;Gs_h3C;B_`8Y^M*DcB#Vzmo>5Ga1tJ6QO_Sewe0LSF%|KT# z$qT1{t-;&R+g%1u(KWr#V1ariDIovU(}ESnf?v9l?^2+Y2{P13=2Nffod)xWQ$m@I z%{96Fw)On>@N-Od(a6RA2zBeRq z;7tO{RP6z>$Y$~pIXi-8(mqpe!A-cgzHt)^2AxK>jE`X7JUuZ?2N4Q$X-!-@Ir0J$ zFiT;N9;ypNj^G)8wEp{8sR0(zN2ZZ=@Q)(6BEnu$`A3OW0lxg?NbAw_MxRI!hiC|m z>ys{@!_}XugYb2W)D=4!=4Ve~@slJQobteR>)AlK*&L*rDP*iFRdn4h#Vdy@o2MG% zGNjD=Zk0o{q{w#Y+QR)7rTmdK;j+(TEw6Zhtx`Z7*T3 z+B%bxEA(2Gna1=~rLlbinUz6Y&@ePKO_FBUmz#zwNcJZBNI=)ng&=E&o_AGkYP{ZT z(m|+$sy!fL&JK@No6R*tPGw8c zJs>|Ksp)P){W2mDmh8~im=9-nI#?sh?auoEJN$856R>#U)V%-FQ_ia^(()u$8EEJG z>3YH~#DrrGX3n_11K#ypX8=hU+ULntw) zo)G{qIHyJdx+~_?eh_(0<2io4p?(uAiqdb-Bnwkss5GtH9d;mbw@piIuJmleM#W1+RZTdht`C^q z`oRwuAcIsB_eGj^Q$P4o^qs4#xPI_n#sG>cI92r9Bl8JqrbMJ6M4$RBC;IP=P>Doe z*2uq$o95TZUyd^4P4$tH+5}0+4UK8FUy!%i(@GDa2(05QcUbPM$+9rUL4r#I{p?zt zMf!Vc>1939lw)V;R|Q5YMdz21rncxLUq$24TB0>GS=*T|J^eMB$3^F-j6s&@=(kVo zlERuo?QVO5@DWz!gzsS_;WH03Wm)!CJd$?AZL4p2Hz!7#b|ZTyqwl!v z9m^PG$)0|Dfwu7Z6y{5QGH9%+)IPspZ#n$xPYAbi5_oik+9~yy>rAL!2X8MR*V3OL zV_nLh$VWgH)ulkVpXsZe$~8B$V)B15{JWQ{YV{3|;{D)W!sWk-)0 z9;;QS@{^Xha=*tg$dG^-IEq)==I-Oh8xMt=Sb&JBe#ocydqQl{jYYtnH zqZ8NBMI5{; zlHsscCKURD3kgshX(BW_Mz`4M(uxavFEE}*z44f}OuN%;%e-G|vfVO8)PPXMhfLd{?V%e6Df>eGov{1H1N&uxgh}<0IKO~chTIAZli6)h!x8$19yFWT zGXtC*Nd5p!lY17XFG%N;C{GK(IMT3R3+Jyiacm3iq7x@reh#EK1#rS4Pb8lf`XXs} zlbk&t8#VWn1gav8FtRgQL(k@dSX^sEc)C6ABS{XMl#b5#DEfANWc*~PW%TV@8uFRa z?Z^nq_agenDtQ-2-?kMXgAAcGBTemPY}wtrJJ7eijCFMfnFiXu+h7c`ma+Qnk@4`8gJ$63LYefYiBZe)R3hIvQ3k`ooh1#S^vYu$dvC?^W zfq_cNc}JwFEjh_c(YQqL?Y(Fomz=jU23eA$-=0T~fIJQ@65b3ESQDt-Wk--a!l|6( zy_v_D>tL0Uywg=AOoiTfYYSBanb=!p76WWQEHE4?Uk^r_b|YUuM&EJy`aWZjC13jO zi4+nmKu04;MIj(D^p$cF^W6yDO6sc9FPqp_9jlM5o!T;u;{#i+;F#k`QT9|9EtLzN z8sCb^QqMKjSU(-{-)U#r_DpDSQhpANH0?%yjzZsY`8k*|$dVuZ_GlwNVRC8` zw4+TSG1PB4iCG$f~$ovd^PSa7yM1$Nk1uO<^syQnq)Cg&7L30+P$%U z*iLBiy{kJkg8VCl;5dCG6&-0WRGH+R97&^(IL}VS#BzTDHn>M$3+ z9>M1ggwGrE@%gK4e2g|q-ia@jjw!+~9BF`Ip==iZn*7B07T5)X@~oB<`y_(o z2=pLhAgYm;4pxmvQG-mEqSS`Z!*o|leER&L>Ok^VQgm;_e;n0sw4MT`=xM*~FsO;F ziFb5F*p#`7w$r3Z&Z1A_igZ1skRh|pH%7qmb~$kt0r)hHey$!<8^P6R;fc#mKt5wy zD8S!dsAe0SP&lBY(&=O`7gmH_+{^J<;e+$9kc%tjszXPtGXbUf9T3osL?mIlA)wqy zbAbi4n#+Px0=hwWr6|0A=K{JfIQ$IRVN5`e%M?(f(v*-EYO6_<%n%Cw$#y-ol7hMz zz%4zDLV~JBZ3Go$>_AXohR+H?tF;P7<(|Rfag-a*yoYMA{E9uz6nyhp3QTkwi@?kxYl7hJe!1rmS z3kjwgqY+FHtpmaQ8a^uolYi|Ig1JCAD*?IuArVPxP}#^8%OB^mpp;lXq`OjLxx90+ zTm}yRKz7)XSh9Z>5lhiV6D0W)eXu|IqaH{}u{;>Szt>0?5=%8kBbFdq2V!~9Z1k#8NiWTwravk{a~J^E^>^rNr{k&c(7H96nBV7!%9>lrF?tL#+T1 z2v2KM)|J#k6C=5RKGvU{uLn_5Bo77fc^ctDBB{n_L=pt+KqRljXN9KZU)dt*_1#B% zE%+*ert8U)Z@C()Obkh_J5?~C)Af`*r|2ls1m@mk4jNTx!*zYrbgPEw;Zhad;#Y&z zJY9mDLMnQ6+&s|{6tufCnDL)>ZN%pBP2T)dsm+KXwvn6p-&o!Nrms8)k%v_JJ zk9X53K3+pxYczh$$2XyWo7#aoEmfiO20}$I{%GMpZkK84YiwZT z#jO=)37ou-U`d*E5>h{Mj)c%pp`7NTBM;jT2e8$(dGU?e_XWW1b!tv=-lqX-73US) zn9VZz11*z$cP9^vmg96%iCjq^4Nkv5f*gU+QEnEVHmV_|yzEU&i!zA!Pz>kyeN9)_aje`yb#cA`HKyU!3LR zUm>l}dQv9Qx>Vev)S#KCx({+yH`gZMi2nswwsuyD@G_iMUU@H2U8U6b0l$?K4#&64 zM()I4LJfN3-YnK#Dd9ZP7MNrq-gl_L_Y(?Sj(}(-k`L-b$6(_0$bNTc_X$F?lXlnF*Zot_p(@XpTrc}Z*Yg<%(=*$&XK#iItF#^!uSP3~WQu>yi zIKdDMWL<>=@87b)44$3{UMRAiEf#antOR1tKITzLNHO_pAwh;4DCu zuqJ9=l(HsD85k*sE^^6G$eP>*T!l5cn|`r1;a{_CO^$80>cd-6>7Hj#^o~5C9Ti9~ zEXqRDS<0ropZG`9d`a6h)4GtS-UlU%70MNs#gcd7eTPd(z zYEOh|lf9?Hv`O!&;CFg>EG`cLJ)5aynqqq@9tgnLx~HA7r{cSsj!K?Z`JcAC$=OqZ zf%tnWq*H#fBsoN8R!sSV|4Gx!Mw$d!?x&cGrbY>-O!+acDd!1swNO177JWH&Sj3_q z!bn;c{a|I$ov#E8`?2y9P%y&rlNcEj$5L}Vf51~MqmPR15b;%DB>-*{F~`0S0<<^w z-5noUW6R8+0x^?dHyxaW*#*-TWBxafU`1m;(gwtQ2_M9 z#N(iC`gR~D{ygHGFz~98tFLd7tW~`7=3p7~ev|G>spB(kb)0O+`wq>!Tr|pIl03VM z#?=tg8Tt9Baepbr{Uo={dT~>2tTC~rS!qlR(q(pZhaKONFj}1$rj4(1aVg+%**Y8q z=XN`ak#X@6I!8JGG{aM}eX2Ix*fN3JFZsG#`e1DWb^ZuOH>L)6zH-i9SP0>NN)cbt zQ|yeMZTGliQ2f=J;lhux3`9C~=mrJfM4&=013|$z_ikd2X733+e$9S9K0K# zy)g%&px|keXuLJ|^bVv&&)s$>&;gdY3f3l)XJ-iYoy0Vb9nOv~^tA}zXx>X-=qrRu zc39&e<)1vgQ6H|YXYH7ZVE;SyK{99}*y@ohtm-M8n0>7d&D>%i=05}2mxxjPC;)Er zBS&ce8=$=rT4#790hSAM1|;C22$G)A5Xb{@5apZ@Q+=CnlYsc|MzrYzUj$SM=R^sy zGI+T&KshJMwiuCvX>%b9IVUInPB|wh(JyvR_}45uCnr=lZ{0|js^b2EJP+ki$9WmF zpnBn^?CbQ0ndjywp9qpjo8Yw6N{^@6`P8a6QSNhfSIS{|f^Bt@$K!p64$Be|kFWnW~mrS+Py{j%2suUl)tmf7M+no3PeaGs)NRzI&UXhLN@j=R$h_S>h12 z373#fkbQ|IDvq0Nv}$xdm1_}j#le-0i5jjS!TuQBt3J}GH78EO=9V4xW=n1#0gYD{ z@6c$tQcxJ)Bbvm*t~iR6ZV(Zeiu@z4-J(Cu*O=kIM;A6*LfT*6AVOc`^;W+ zI;Jziyxv(S{E8vWLz;^^p^&Vg?(m3m!izMlVV3<6ggBWIHS4Xmjw3st3B-}llpn%( z_OsiXPqAD)oQ^RHR9#z)jg@{I6-?!v5&jr-l#8tqNpq)hJ1iCe%N z;+N^Jl%>7IR_V!Yc;BI=T_{#xz&>qYFMvS4RDL>YU`;8gTV=h3?Bo{O*&e8_eh2m5 zpZuL3U&-aug#dnw!Ejbg#{KBurgq4HN|W(nLZ!py)0YXBWXXis)Fa30C+aEmdtmwW zjR3YKmQP;~fZJLtN3A~q(B7!^(DLbGaQdqeqVjM&%Y+|0T2koJ!6*hg~ zK0uXF*h*NHQgGF-|2bJCs^*{(ElhtGvXH`F`g^6Ym(ed)*!*jj751?xFsw~&%val9 zS&stgh4Nl#I!meWm7s)F;ij3Z$X8L5-h|NxbXQ7|Utz13X+ zdV)kCs?N{SYMaVKYg0n0SFXj$w(>w+VL13DmP!-NR;{WpK)`k19=uZi+=H={?Zdow z)^~OS-*uW`sl3^;03HE%_)6+Q*yw#Nlnn}Otgk{Vn-fkNEqd*~#21lCE%11m|Qj!;Uiwv{0oVTrq0jj&Y#vYlca_K|o6TxRO^>uTE*d+MU z9zTar>ChhEPOz>$R*zhJte%GL@hbz^maxZn1i)?j=SbEY0BT8AH=8ynO6!T#Q^4uJ zj3DO;2Z6ja4x;QaG0!)1_RxvXZi&Ra=&DJ~1D7gl*+r@xe8{s}Qs>TSEF)>*8#etWrMvd!1o79n{E?>n^3GR0*NgQV9@aa{@N{h`DmYMy^`*~CbFxJvO$I>kpV zv8WKo`pRI1uQ#UCFq;T#UNbdKVNJB=laBhPYGd{4rutaDHA4rDHSl7}RAHgMXS&s_ zkI;!ouFbEHz~DD4&9VA;g)Vmm+)QP>zGbx4SN%WKeF>OcRh2)4tW6e@KpF^3k+5_i zX~NQoQIwDbjF1qMfFet}(p{adM|V|IRh`fX$~dSXrRW$3QQXFTMHJTo_rY!4MpT?} zTyVxw|2poD3+n%zbI)Dheec~@O9%PsZO(R zxX1?%zb#g#;COsE-fUmF0e3~})>Fb2zBhTGn2uR9IQ%m&&pOJtL=74_`uGVBM=o6Gr`vJ9%?f#q=dvZKx%}<*1?wM%n6IzSb(I&<1>1Rp{~qN zJ&K8$V)kUf#thk^S8`2pV@Eo%vVdl1%Jay>j=-i#ppuNl04nJqkc7YqI!E8!LPr6S zLs~a7Ss7Y4Sgq`$+|@3_Bf)Le;Pl)NR74#tl=i}61LN|K9$l=Va`P!P=xT0|bTme{ zJI1ZcY>cN1j$%=w3oi3907qsjb&!XOJZ52aNEC*>?bNW85f8N~{ge*b08+CG|aR1X&*#@myL3*;iq-PP(?Y-P>AA~E)7of?*ptQZi8+ci5!fg{@gL1$vdjr9*klI z9{{QxgHdU(G6bX=yPVCFLk4YKFl@0Yg9f9EAC-gACHRX5qx7rGgV9sQi`Va(sFh%W z-VlstQuc%_w2x=sv87dRzCkF!@@t^&buTy?%x-i!L#Y4}}d62_;fqU50TYI7(N zt$_C}4oa7bY^cpN+Oa(>eFoU^iQJ0JVQK$P7|TJ4Jcbb%66&I!b40`ZeIcU_r4yd26mmF64&ahTYFO-W8zE>r79WW2zI zn6afMBUlPpZ{SjsQEHzKF3tEdPdm)ixO{)cvq8l;reyLm`MV>FSx~2Y{UYKXi$rn^nGV<&(omliByl*k`a5~gvBOZ6I0qgxNw;?m` ztoFwpsZ@W|$w#CF9sLMf)f@d#2`FdG83f`VD9%Q|C69J#uBX%G)j3a?J*rm5rV45- zRoGiD7S@fI8l&q5`!|f0ANY6NV#-EjOA0B5bHcp-ipPRNAo2*3%C8jG5@=%+OG$p_+1X3fw%%pm9 zrYr7%#fP^>bQs!_IIr$#d00yqf{t-8x8kg9CI;F3HH-$?^i zPJJtM!mhxhb29XSu7TmvS@5Z9Q0$t_W*|Je5K9S%M^B;l8OEIjkG6C9et5K#inA4v zV-UX0LvHFX#d@y+Qp0-N7=-)a(Fhm~i^>m=#LHk~#qu_0Fl)dgGz}MZm~z2S?EyMg zuokFtz$4u$gv(E5Mh?(r5YvVWfz+l9f=4fhwhDOkkNAt=5&h~iJURp8^j??;tjaAV zyWoE7^fQ`HiVxL2C3FHd^(M4VL>cS4jd!841%yhZQc<4Z)IDq-9e`8sP(?{NRW(Cc z^k#V9BAhx_59ED9M$5N{^rK+;Z{_x6LaWpL&`Ov9T$xh@Py)6g_tvN}eQr7>`slOR zw%+JLC9<3VD+1zAY5pEH4{D9yb$zyrnqp@^ozXA9Nk02Ye-l6ZiQXyp$g;i-%`^2+ z5GLb3?T0-yri)8D`{^MiM`?QFZq;TnDQ7{OB`d7cMBx^HG_9-6@!FF zk=?d)D2x6goJC*`WifniA>b^Ku$;^HgM?$LxRyb}Q66$r#VH`+6d>&$NT`6Bu&DeX zLA~%_aKmu0q2kt*uj4jk2Kpm0&{JL> z)?gdus)(+aYSUtF>k}oy=%rX6tPNGH=M3I8Aa3e5cV)==1}NWDL`p{fb=Z_V(F6~- zie=>AhoyuMIp0t1^9?!G@$z;?{$pG|Mw9r#@t>gLT8<_Uc*sq!nG#LD0Hhs?Cdd|g ze`DIW0j9#D@<$W#(srX}%dtFTT@aRcZw9m2$vB#zX}C_>Dcy-CSi!4-D#wshc7X|bf&8DvVDPDGM;*3aYW#ClVvz@ z@XQO>7dWk7hEj*e%W!UB1Fx;w3p3DSGKUM+hYa?dp_bK7L6Iu5y~opRigAzGhAU%> z22eM>(OJq!a>m>1fq1RfZ&%{&MNqzJvMKR)BQ_;D-o}SjdiiGbbfm=ukD7>3kL+-% zKJ;#(-Q{U*jtuQp9&$4*q=d^dkaj3sdbaG`2%5ekqj63|M3T$0Nn}Js<+*{zWF5VW zorJ{-)&o_Jh$xLUS45N^Oq&+?&=w-%-OyGszIrwOqKHVpx*QQ#!wuDCxR;vTW_D;) zm&ObK9w+WZj9lU?Ha6(G54DS(a&gl~pd1-R%@43CNZmS^HP8I@dsR^~YW}_Hf}(f9 z`xc|-k%>}`htFq&f#1VT$qb*zn?o>Dx*RA8i+~_cP~TCM@_nh~8hsgShm-V`JaPtz zn}PWAnuD$ci0?!Brgl;S#CNbM$pPYMxiac)B|^#L@E3&=`qkx7 zaz^R;iLvrfxv^`gT4}%%l3gR^u?Fn?OIdpB%;zPP(21bZn^<-%vTOyhab!uPQf`ns z=QgD1%%JQNRg?@bx0wzsx(MF47+!cjFG&#b7;_6){$_4ZW{f#e#STdG$vO&b3I$;b zYG8D-`j`Su;^#`tQ5oCO8|_iz$r){)55&Wom###cXF>U8X zT}VAC7HMwBQtU`0AK8&cK7~lLz$(&-GB5LRkR!^x#6xa+yOb#NY9Q^*5XE88i7>Z< z9lR)`nNEa3lH0OLWQ0N0x{livLOjA?1(QIPBf>~i&J|%~U)F{PzNLi-^A%{Th%jHp zUld{JSC=Eq>BFUw;^bIk7bI-dpe1!{$4Wbu=cVsNbU7lSdGqFr8KOeR$tuWLYi-E`A}z>MG>QG^6h|ZKL)^?X+;-@x6OAz;z z3cIHY8_V^fYK@Ph1E+U@YFB!XUX603WQ)6Re)qVAKGGmzanQrMjL`&b+YD-^kwKS?3i!Z_Yp=b0(`;2GJfx*G` zTQ_f6zjM>ZU7I&tx^-}HU4dXq0Tm8cE?0}ga8v{QuRIRt9Ss-CFjjS!Y)1EEbE$Ci zvgGFCSm9D23#>|=5cmlw&Fn|MV9v*+e3U)~6FV`e*-FlV--9qk4YqrB9J>j2?gWyL z1hjuIC;>kGAPSB^6?+ie=V2*m)8OC*>$h&*v^_yH!v$Ci49kFbzzrDV7+mL_2|l^re=%U9Tojg0E?`m|DsPpMW=aHx&ah4{^H?Rp|Z>~lm6(THf<;cl+B%CfwGp)OfvR7 zN$wmt_6jXGSjuCZPZNE6;9#^_n zdB=uJFW?|6!Gc94TBSN4`0rNTrJhD3VoRH#pshRVe;_;;*WAC2|6Py3Y! zK-#HD>T!Yf+)?G{0+?l0J}6arCaaQigMmzFO|E6?90GuyW>j~u8ea`+{A2)U!D`$x zIJjlgmJ2p*-v#b+^M#u?tlzo$(yhBLft-GMJ#X}El(774An}d z3gV7Z1$(X>^lHHI6KJXjaGV%Ysnl{It9_2*e;yznR{T%tQvfKdWFOAvQ0qGf5ok@+ z6|Csj0LhO6I0;rXpvWzkZr!wV^D~8py~<@h7RKQ+uSWR>TJja^r-vQlRqByR6-Y%M z?yKKX-VsoCAi7*apMvsEFqP-$Kr1caW01TkJ6Kt-1(JmUEe}@K<4~5{p$Bfc^r@Te z{#UL*uPfp`3gV(!yi`z+e(0#>2?5M;pE_5n z#p)jEt=8(vK?E`vbp@;GbwF}<04Kp}dLqkl$Ii_gF5a|#M~0^Ajq=d7u-e71tE>FF zg78Ob(RE05EwG+D8Y>3y$r`&xYD^_5&O3U(@hER_=NAdLr}En$58R=@aRd~6gc zbudpoa}@Ee0CrdrZFIHV zhlU1&uf65cKG4JN66|wZxC9ZIRP5M|WQf zkOS-PD^hoxBs^%3H?86h6$ok-Z49=AHv-AO21p>-63$0WY`z?^{?4at-?V89ct-KfAWMdTm9*#T6-=t{VsmIW`^~TZo9|HJgjsH$+TxAWzc+i^7 zNeJo?bp~tjO+fOi0FHt+2sy?bn=aq9b=SuASFjFut>3=kDVr}h@?N$W8n8RAj_1S| zhKo3TH#Ca-*6_}H-qq$;?a?#6sQ;L>21p$rnbbx{*~dd2f$0Aj`V`Rrd9r)A#-&z% zn+1VpMVo?+;mtsDWB|u`i~+mxrkuurow=0H7|u^LhU5k)V@UeMF@{Y6qT!x@L4YxY za2aF_Aq9bEMVo?+;VnS&qyUbCjp4~~KMamaaB>?x#LgY@Xpdb+4wz|dg5lk~Lc$nI zj`&r+Jf#|`@!o`nI10ZufPGf@s8qO``c7p<>ox3q(1oZWSbc8=lHq{%2dnRCgM*jD zI)R;6?7D3GC3;+m7)Go_DeQ%12{4z$X-fF2&{yi;)35g5?b&lWFKt~@oG7n~p|hr6 zp^zIeE0#L!(GMN9y)=MrR@;lE+BQh1-3~ums~ss0G$`5^tn{}5$qNIx4^}#iOhpzp zHa3DODp<~(JT!W*Uzsqos|%E>oGTwWiu_;zE3C--q#}=%ilh--td&|t86ScqMVZ0E ze>;%8C!oc_!e0Zj+PrPo_DvT-0^9+@@S?D{S{^DDYNb8pY9)?*ANDI?kyEJD!J$S~ zjvD?mfGJkPze_c!Q75`VPh+(nvc3eVic*6W@eUyQMnIc`6>-7f;L|r<0@K?twX^}? z%+`#+1$cH}X$)r90oT%uM1PMEvzmu!!i-~^MN)}<*2!^I@tYF-G z5Pb@`_Y~RltjHIag{~@`1T-q@2{wXv0?DK889{Pg(XxXNJ}Byi|HE}N*Wv0hwT2zn zoaxnx-8m-s^Z@nn34p8NQ{6Zi%-EOhEV%?0qFyO?ZsCbavGbaqj3waeG|=%Z`rObU zKLDQB3p>y&z0~m(SSp#HWvtP~TrL#rIj3n073VAm4!=2Jvxhuzk=N6Kv@#Pgyo%=!7LgnpVNfq;I3~s<$|9+-Lhw_U=>j1ScospUoPrS zWk#O*Cs$8vV}<40Hf7L4{1-!8#X|f$@E0w_r(a!Oh<`F%>@r@S9N*O_r|%y=+TPz~ zl67K1{(QSY=(zU5e{V)z!c*vW_NOW&(;CaSvdX0not~KI^ocjBqU6H-512WX=(X^^ z#fAAx#3n9_Wi(;?=)d=X3BR5jk-0d33iobtfslj(U5cZX08j3jERPNM7dBL3ad~~B zS{bHH!qT&HT` zES%OFgSC=-OFSN0+`K7o3m&=oZnF)K-2CcxTA}P9`UJ|XH~N^;U(SX4?*-!fwcNY1 z*X(OhzG+Rq<>?#>zk*FsaXJHm3Jt5z;& z-#Ygr54q{RQ3y&p9F-x-Z_0vD2eKbu4bE>xZy4@}nMfeS16B2eWB zT+&#j)3d{mTOIEplb%JJ7PvQ?GAMBM&6a^{75<{YMZdZnxXzZ|6ZR3oaHUM=*1~xh zcwbq{F&Or%{^UYB5!8-OD?S$D&IkE%h)W|>j*bG}1xS>*qqZ+kzy7#fT-DD3(AZoBBRv(h&bA35 zCJ9oEM#;oV2ho+-LO7I7$u4KG`7jV)uDR?=uo;K)O--f*n+TiIVz9XhY3*PmAKAf1 zKE)vvdSxX|vgqe|TAL%-Jl8{Ry1l(SFK=d5OWip=FwcnTMpcvyc3-f9 z-9C8VVz4_*1UrM>c$oV%8157|Av4VNVwj^;AndE!y5qv9I|tGprQXx7E%OT{zvwQk ztv9+;@tre_JP5@5b&FH4^*XbEEr(1!|L9)*rN2qO)=PgAzt)T1DfY-b-UZDwm576- zzKm3j-B*vs1l6)tdL`GUvryIab0ifpXNja?G^FWm&(n@b3y|o=L z-Rd~EDV?G=Ht@?fWl*F&X|9a4C*v=QwDhaXk@jS9BQ)QE(YMMSZQ`ZH)nOQFF1KT? zMV1zBn>TJ;ch$BjD5X-^R)cFjU`ftZ7r@T9t2T;bmkPV9jjJ{dPfT4^s*DyZL#5$0 zvMPASKd%xqOA}M;hO0w>1aVLV$v63-cq`(V)3S5$h?>cR4?0L*oDHrQfp~O-@vPbJ zq3t_$HJm~?B5!Ko*y)~6+2jW!;y_W3E5`WqJyw}H1no8cCPbDAsm7k^(QNF1X zbdQpUne>Ov!k2ti5|xBa`y7ZaB02}S$sTnz=Wv|bAH5sh_d~yi%V6$- zU(KbSutVTlEYCRL?)>6|p#wY~m=rK7x)&Pl#8JK9pn1pk5=3U$i~!rvDg_C#``2S! z+zhd^2uEEF!c-TW<0!T;)M0JzP^r8Zqj|#^GwK_;Dg`*05f+8OLJ&MR4yVah_pC!u zvTkrQ-A7RG=dT9~Hm~8{o^@(SnK|hsZ#_Cyq0{WhuZu!Mg3>k>YqvVG!Mn8C%*4v|7~O*`--*7{@bGO zqRt)d&qoio$YD{XXnmSr9PgqkIy5~mJv!0O*E6+DBTS>>U!nEEiUlycZ%Mb++_n=Z z>XG3poK!`wYW=p&aOlz4SbyO{xO8w&3AVJuy0pnUOr@;G%P#70XMIf`QmNccxl(Vy zmRdJ+6m4SzK+kh-tCbn%-Fg`yzwKlrh8L5^OG-987JL;m0PUZ{pXuh1-CjebI_XR~ zp^$mLggM1E*;#kMpPK}4^+hD82;TfiVPW~pI$0T|s4YG!pc^JydW8UGRv20*IoYGvW zj};quOqD?6m|wgd=)_Q2#+G?*05ywA$zuW|ZXT0e$6OXZxDA~TK4v|f+zH1>6v1

OKp(_Ze@*j2%%|er$m?5c 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

$#U5;64)1HKcCV5)+TeV#{9zpQMQ6 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

0l{B1Gs<$^7@i!#H-7$Gj6 zZV=yV$j!*B&Vdzi^sumRT5}^$Zp@-T87{7M@az(v$zVBJ1z+G0imjb*8t#I(|2hDL zDBk{r=!E5MT@=CFRM+sfzC|-)gOTI%e}Negmmg`@&9VEpnAIk*`!|^8k?j6MXxcZs zzZ~vF-y!|X?kaQKzaAJu1D@l4Q<&#|UBYrdm72rYN1zm#4>c>&oPP(Jjb2g3hAb!3O<`W9>k?L`Q>l^ZFGHC=1E8(VivdP04iHZ& zjuv=eG=&KSMPtsGNB1``LnwXs1gLlglA)z+vMU!YI!sIZRSppHJSj{wmnUBvpgWXt zSHK7~vIzWGjPYyMs^stB+>T-Jp=P+YfGX3!&_nN@$2^CVu&v?JOKZohJEU4RDgAZ= zG)6W!gbjc%GJp>m0H0;rIKr&N0QeMv!bC8fRJj3g5`jE$_ZrN!!R*q&IuZ?lcanf| zL#8)l?n<5A3Xa@w+AK76b6mc$*Qnt+7g{$ptD)YyN%u>vDWJOAVRaR&?bq?sS1eps ztocgt@oxekjj{oLB{~7g%<2^?HG1U_G;~$+1&k8vAIy%d6$$7pDaJv1ls3*V^9U1V z^=4PnTal02_k;@(2yon`*?MeR8h>yil;-&=!BjbpY3^`$`RjmZLepwY6)xQA6ku5d znov@Y>mR>H1@)@vjb>M&^4=1_gr&SSTuPO9p4?o+;#6CCv$U<`z$pPHFi;f&;i`G8 zp%65cpL?_dMv_5!aR@8my$pat3V4!f1HKRe2?`kgY@n+BVnE`%6uo0r%)Gk-uelc+ZD2 zpi#6kyD_k?3nR zO{tL;IW5;8H0*??S@OuD*<(vHTrpA75rL{UC1u|M@NlWz#BMvgX$?45R=|77(t6(C zTcapRPcuwJzZDoLBO+b;SaekM1$YgyUjKaoS>nvn$nw`>rT!2{3TBpM>7{ff@jn{T zD@lA5rxi>5Wt5ju5vcyHp)Kh1vH;OpGXL>VH6-(`bAl6*F62hh@S_S&QnT_`(o^mE z>jBcAij%WER9<8XS#({*$_YKV@`};3QldwkCMjSz-}KrAnr0&=ORBkxkO-(|3r$O< z4v=#&p6TP%u2oAsS&!TJy$nZ`8$Z>XJNs8KvrpLj^_b?i4E4CFUk6RA+4~)(Bq+fP z7{k8xvH@uD4upd^RSQ$!3j%9Gz9Z^GgeFm+Upi63Xmy!QUFY;SdOvvTVTI}{vZgQR z)dP{GPiiL5;~uEFWRAWs!op;ZKJnKA=jhu=vS$aF2BBQhCo5zZQ|OID`zo^Ytt;yq z7|G3wm-58N_lX1*R?7*|O^iiPeB7s-_nvh?^5c~Op_n3iz@SgbOZ$^6aDJ}W(RW5X z1Cs2&u-9C2=zoE4{iGu(BLn1r$_y=s6<5T+Me7P?hJKjJ%G@=^8QdWeFvNJ8ZgUEi zbM4yg+oXFC%)GOiHsYEK-%3L~Tk|M@%V2gC{*$1BHyvym6Chnlvj&hZ$ZHg*LH|B? zhGk&Ya4MU!6Y-zoJ>K4WrIHKJ+)JfwlzMgnc7YmMD|G$I_1Wr*YkSPY@*2g$26-g2 zk_0XO2&Q?Y7Joc6P1oWppjG}BI`p5T)Lgc!8xcvMx3W@69k%so>}EFOh^-{I$Re{*3X)WFsQ`?s`tS z%eGZ0_J`U!ji%)0Or2lq+gB0+D2yhm_Lu4Ay;}~5YA>X|RUj_v_NA(bHWBpG6+ds% z3+P*?8(3s-#9oV8ZjW*?CM=F2H;rp*!r6OZq`V^VCY-&SXBsUsx+teGuAZ#UgDxb5arP2eqf~l4 zSYfwZTPkDjVr(I^Rk5?W+D#~7O z0!zCrw=`qq_l8quC6t=G9k>R&mP&YaZV_fqVl!|p)XY=7-V6j2Qay!fZS#xAqqhT^ zT6=-GM{QO@qx@FjG-U?b3B2-)M&iKSHbfkliVDFmf<2CNQ&CxH)zsK4ufrhH2=|h7 zb@nt2jWYYzs*_PYFMu!98{~d|4paqzNxP~f8I{?o_MS$Us)ls96vT&{$aL$Kg{BtYMkbwd!AnV}VCDJ-ATj0&U?&Y$E?(Re=Htb6 z2^-g^OU2P-U*xDUA&)ux>Wh|ZyW2w21ERPC*hA{2GY912C?CaOc8jPQ&VIM_>UtA$ zFe&G)`l+EJ=<~lKrbvS3KcQ+!(4=R*yY$lb^iKIy9>f%&T8500t#-F2UelA$U|Mot zWUZ6iRdJ_Li6yyVG@2O}2R!Kp6CACN*7TSPI4jH-7d}Tnx~O(-2DAjw>OfUHoFFwY zWv$YkW}aT5D1uT}iV2m)6X?>5=MQuZt6m?S0Bhk~(pYPG0N98ZiXd1bs`>+4;DsbU zumxjUkQ#T1s22!i!4LIGkR{`D@Sr35zs8kWsdWZNeCd%aPl{L~>AuSXRc+GCHbCXd zB3WF00Z42+YelHF>T~u-OQL|l&PVYm_@!{Gz^E>$XF#y&k@^V*>>wBe` zhWmB%-t!LF!N-*nFZG?1jS&YB?2~`F8glox%KfUPg0Pc+r5DxrVTgfG_TSiR@i1hG zK%O*d-IIkQn&aYg<~)|BzJeUYKi!$HeoWDV^`0ZFWE$8euZwg#23aN=xsyHo9649_ zL_&UqsY0(al2&b) zAU6rqmyrs5F_>Zd@+6|SUcKW>ry_;Xy%1QbF4AYu#eSspUq&-FqYJrzJ3|r){=4Te z&20(g@w>kinx^~jo&c@#j`!8dd7zevRF6*f8K_JrFbGlMWM5Z;F)gZlWi=SQ7!g_K zV7I1Vi0uG4*xxVKTW;B)*d@Q$dk{*SNLPm)>>J>Ui_WQz8{8>rn$#}81hc$Mw%dE~ zS~u~4>!I>0@=pb(Y&(QpGQh>qF7B@so{L^`Dl)7Tx_|t21Ppn;;fivObH2e$H-U4$ z#x#%QobN%?YBH;$_EKrPP_` zoND}k7e&B|=gxmo5u+zg35|KA*hXRX2Awv|1 zNKK+ZzdWKdDCICnI)hT4OHE_U8I-VMJZDf?F3+I$!ouVkl=y3b&!EnfxBEN6)29=Z z$HzV&qQ+I6I~~jPJ2bz;rWX^%DI}J=WL(EQ9X7o{H}Bngzz&<9Fw>kI-$q$Wp?_Bub`4BVp zf51bUy%PQp8JNyLxPA?fX1Bpu{hWUs!_bp`H{zh9R(QjoM|fI@LywQ-XrP}%kH3Mw z@}c53h5@hEp~t;}+QmZ;J=fAh4_zbr(Bsg+@Ly;QTXx@L$k2ps`D7Db-EG5zQ1EP1 z9Ugh#hj+T|H^SldcYGuqFB_;7J#r5Z24dg+XsMBXALlukeV3*imYs-lyg>V}*h1d9 zVApyLZkk2na1nl)a=QVY+vvOyYj3u|G@i;G_T;Zt==E@yE`FL@n+fgg`_jd4uxlxi z1D7s-2Q~AYq|LtIrHfxPt!+N^SbZxV=U9DlmoEMc#>=1mBwe~7>cC4E2!3%MbbL8p z4gNfps4shSV-!bT_vFYFCt}ESey2hz?3oa*e(Jf4{mC$ZJCA1@Q>Y1P)3_0;0wYQ7 zT5=kc?sE3~3;8H$$!sWr3cRNGL7XRgKK{ZdMgWN1HctptwcR$UzUY9z&}9H5ru%_{ zwuuRqxomW4!PA!jbxlpZetMy~rm)Ij_SgWpk#xy%y+u^@JFXvB@E2}v)f&^&5c%95 z8=IM)2Cv8LL=%quMVN~6BBs({Ke-}rk61C$;%$MdHZ5j5pmKumI>Lp>)8j2-Qf2h0 zOV3LOydlGRGzRL!vD2t;E&$*H^?7B#ax`v^=#@MRD2^jN3ulU|;X}$uN8{f_OpoH<+RL_{b9R z)wr_N2Y~d_Z7!rOLpUX8;9BfP8ohkZz+<37-UiaPZuq9+YNokuLV1kclb~t3i_;aZ z@}^>0&OkD3S6bi{#w~YoF%NIA#1e@u7X_A%LXapMi6x1$y`!t#L&`>0`#^sq3dUF7 z3{AU?BUGqFk0TVzr6Y7Zz(6`e#a|2U2%T!Qx|miilvj{-gi_-w9HEZmO81LQon5@h z1RADf6r2J`#z|J!Q%4Tbrf%N5`G7b?ZP%TK0OJeQWl{(&Q@>rodyAfa-@Z@-iR@X} zE6&MqMm7%LD)U*Y#UQIw7C||ta2)QUMFky)=Zkt^McIRD(YIL!9AY_G+4_5+vo$cvvVplnyG53D~~Uz;;2>3BD8h&#OgSuOY_C z5_lUfV3Dnh7E_LA7#1pSaj$1H*BP3TaSPPo!`MsrK&#c z5~ZreUkj|NPn&A*3tyKzjytf#mQ^U}^^S_d>6~@eo>_Psxih~b%i{rneQ4-ob@Sdc z4~T{?BnFg#E$ZmSvOp?m`9rG+u`Sx5r{1@AHc-gU#9oUhmCF^DmkP;G1!?HPB~2rqP-_!`WxK2b1PsefVK;t_}YI{d_n; z{AgIH6yMdSyL$%ptz>;aC%U%;kc_I&Tw|LH)GnUr>baJl=;|8LC%Oj{&xGEVMz687 zdfT?vrki6EaBR|TOz*0XL29^mZK5%`w}#TM2G7>Wzz&GYo`eHT_ypx`FuA8y3FVOk z@lr`&T54o}g!3KDUPsebloPbVv)5t^d92H>`LfG*)fzX0zp%Eq-D!%QGcFeQ6Zlk* zdSH6EHaglEZ+1sVYn_Sq%;b0to{xs)dGMYOoN`0T6BUoXwl@^pqY=LeZ2$;w&jG=) zf_ux=M3o3$jPo{Q32k*3bdeYJwrE7r`$>=oG@9@T9ap+?jV8!3R|=ityp338OgwQW zPsqc=P8NCBx@YpZ`Aa&NH#ZG{k_RBWlA8+g=wkN;zBe|AA?3Q-^1-^Brhv?RDZ#=l4LP{8lIFbe`yB8G&Dr>!5Xy#KEqi z*3v2r8l#C7Ct(rm*VT>M-u2hDn;=q2hIVSRO$?QpoUPAwP?&Vu(~vL;{sOl~t=qV{ zt80!7Y{#G(@o?BB&CXbRdK}I`rkY(Vh{TfO3p>u*gsQkf>++Mv$4C`YN69|XlJ`Uxe@QYT|dzfHWRun z(XO(5mS|AnPty!S>fpnGvb@CE=MaP(jMcl1-Ru<>FqqUZH28%n0j?OQBB>0NK8L z?MiwCKZPUQAUeTqX>G{pSiu2Qq`iN=RVt4GLX^upx)*UtTXn3H>u{QxuvU)Y_;QwI5Z?o6YV z!6Pb~qZ0kvLbR2Ef3A_r;7JwDw4e;~vkNPOZv}WiQ5n2Qs_EL$HLdpSuF3kIhS)7^ zHxUi66M#rZ<6)x)?HSk(VEi$-ENPz*-V1079+ukz|8_u`5F|*|PmN}wr}qMCe9AFO z_D_mVSlLfSM)segHUc`g8lLBA@Nrv%=Og*Zt-%Ui(MTMzju$fPNKgsSW12^*gjYb* zYW4>@1lxg#eyV^r3@3oB(*Q5%2wlSJ2wi&p0#T^JN^il2p!M65)|H@%vi^NYUa5vZ zLeg$jChPO{+?hsfOFo$!C`uFMM}^sWrF_1=JIhEZ|J90ST9ESj*@dNi6Q<&mYKc<* zg<^-3AmnBJ%4EFM8LZETHeVzj*{#_B1b`7G;(sAJVMRO@^(EqudO}#luYo#wq$Y^? zBbnxrB7QwIJ&+>)WDs#0-~|z{OIQ)FORw{Y_&(^_RO#bR3YE7wffFW4Da% z$XBcHga#uu$N`Cm7O)k;8lmd}FDa z>iVP=+M?YR*-J)8&o>^T!_POf5F5>VkuXw~3Bty1g!Z@;3Z{4cB{;*QEnk+9C1$!u zY1ttPOz&du|CpOb)Lw#_``iDw2rsk#-v6FC2l1b1{`{~atRFEvV8IiA1!o#z{ybRO z?3iP>Jng!i9&PrlzRYFc`SOj|MDx!zau5E{ie`GGqt&(Y>$%?<{D%#NbV>=V)~aYozJYVKmYdv0(%glDOC#Fic^I{j_$p4BPZ^MKAU$%QMm8v&K?K2VIUS@pmT$v`?Rinj(hB2g6I(3xwE?J)7#9X?C~YoTPd zVtp~N7Gm9Ou?pL89VEv|$~F1Hl*B9+Xmki_x+k#cD9L%Z=!BJ=RAi)KF!b$nNUG(b zZ(m?0oFMi-!!(Z+d;bVcs}Xx_=-b19Xf+@UyG>of3Nl@~#fo;A2W4s6==IqVt;H5O zVFr9(05^#YI7DxP55bjeeGYBC6OR0aa-Ka&fC$KXr`=L)q<(4u3FcXTc?D+2V$li9 zJXB#S#*N3zZkG_8hpocrVCr#Ty_O+&H3 zIl6@999?=GngA?yXdw2=>(C6+=>6~jKnwKlWg(Sc>-QpJIw)ZcMvO;YiyzD$DXNC^ zYpE2BM1|_7hN0k_iHL<$PQ&Pp@G{OYjhAl;z}({HIZ@Rg zR=WkxPj)uP$6>?GJTYV&m1eV|FJ_TKGuQTj>A;|J_tq=)2#Nr$FB+tRT|XYNHX^-` z1ghGkm%Sb;$LD0sJ^|Ikr1$4y24$qDOV7oNk#JqI)$Z0rHsl~oHB5TxZGoh4$ z`VJG)17ZecgrrN?d!VRS-}BW1;=tb0h~vir_!Q(#l%;nKB?W@S9v(8TLVRsGsWByt1o(>?j$-7*pxd}}u>)j2ydGA>VB&SXp5Q<54 z268Y0abbVb0zinrJ$fB|C)hC{$ujIUm;UY=_|{L3mohRysX`g>+ZPm5>KFeC-v=N@muGZpPt9q!Q1LJAXk4|h*v4kA}t-8!W85D@Od zUIhYqAU0-fVqgqnap0!A1fy zzt1#}MCN~0hD@FIm|Lz7vxPX*JPUcPZIP$M;!>li=9dN|G86y0Clw{04RTnpN`P?; zR0T;wmI;WEY|2W90{BNZH>pp=gVPj#0OrSDt)Dnctxm^(dm5CFc2*F_=w4pv-fdOH35Mmmw^3q zN5&)#uACKnk7CCWP>SIz^Yi&;Xm)<##afN&xrsndXt;er09g4(Rd% zz!w2KSX3^4T1Zj5Ba6D{t&87f;2)uj-@`yN0U7ULnnxnz&nrVliY_i-h6`oNb3#ZZ z4`$Z{;D8E}lmW`uBxT?oT|H2t3;{(+{zl}pQ$7PN?u$OVh`iSiz=EXL?%(k*;k6Tg zEwI<_Y~!og0lBDxPxd}kZFzXl682Gr_wJPP?uXhtGnEi~Kiuxo$=!}}m!kam`OmIS zUw(zF8gsj&?2Rx&_9pm0H&?my`0T5o8064m-Bs`T2gJEoNSK`mKrvbMA^@J;dN_Hi z&F7acvLLEIg9A(a?ZWO9Sa5y|pZPLJpTIP*1)b|NrOeTTNsTCTw82HT4$+eHD*g_5 ztRJtUld3%jb(B)%S(HNyXV~F53oyZgo<;rqD!Qe}Oh3D`w=ve-)f}_z`5JHJmS_3U)?xV*g#-ltHHp+Cp&y943=k& z9E8+f?>d~~gbAEAkl8&< z0l4c6E-h3&NO#;7%Xi~A1YoRVFerA>?`0sA0N{5r%_9N)7tpjC0IyM2kb;9w=E4D) zvyL?e3Q>N#gpD}TrRSj=Cym*)MDNX`F;R`}M(~=)!o9OQfGo?RM==;_(O)B~hTS`n ze!2gMm?XJ%{tc=o$m+8YN345IXm7l+T?2967$ZrH=Y$DO3_ep@0U{5-5|&~4gF>1d zQaMM!h_+@3qlyvf_~gQVx>I0zk;?Z(ghagZWqko+LPitK+vjj0&PB>ib{vgvAx0m; zEHXiiKAdSDDMlX$O{)>3Q9cKfsOWPz7a=5!=rF~e9ax|xdXNZ`DAp_Zlruruo621F zHzH?(+9qh4EORD!0)S>Mk9GzNmcjGF?n-Hw3P<_11qu$Iy7qK7?zAa9~=xl5-)^yy;M(aDliFYQ$N4 z>~rA4I3NbXkibA|wXOTKcyC;oZBQ^edTD*K19x0a?9Uld4b6tA7uf*7{5Lr;JHa+R zNFzX#QEtyA;v~f(Sk{3SiN2mxZJR<-t^Wnz( z!p8;q7e1)Rr37-2OGT$wcn7t(JGU3!wxrGccKqSO>*yzk35xbktD!2GH8e4xEhnad zdq~1?WcE;OjMLC|w*KTWg8m9yDS0>5o$p!9d=sqZ4NP+f)o{DA|id3<_ccA&a!cEl#Na1(XphWLxJk~NNTfFq$*gvqXqW+fh!GV#imjErWb ze1WnsLBluR`yf=41j9~QMUD@b#>bo2Dop5#{;aN0& z7s~(_8sb~B9CkJ;?Jr79p~4CRB1O=0FelMocN&zIf;Pr9{lk>n3b(!J1=Wv3Up^xMMYwrE^&^4W#TQidTuWb2)it7DP(7%;DzN*0ja_3h z^d1X0E~c9e%&H0RZ^1#S;B$=dhh&*`uLKRnF^^xDF#PH5ZfLsz|>>c1l`EV6In zOb4@nrU{1yrPA5oz!vi9RBN^7LBrQv0{0i-RIhHmMre|+TtY7uZoTUAVX;Paprgd! z=z#P?<0GrxnQ4T^&N;c$ffS$x%~`%9*|tztaKm`i?dK8EglU_i^zeK~|X-yzLiy+C9Iyk9}AfNy&e^w#z+o;Up( zxb@SCnTx^X`f}D_Pqy+5<>EH(McH!H zG7I$~c_~R0El%MQ4apcq3dW+z8$~%miq!L?0Fh%8e4kVaTupoUK520~9r0kMN+P1H z=&S3^PNS24kW+e^9aO}uM&P8|3$3Qv~GZ_j`q*R1jS0-GdU#H)F zaRw2T4noy?n|@EkiYanrB2d-7O`n(%q^EQExht?ET3lL|#5$Obi%G#M*&};hdS)cF z4SmP903yXv>;s4pCk$rw04R~p=u8*sENbsRm|ZEVhFwdMhx2cam?Sxv-UL+>m|??q zu=O;hms*9|42-UC&==hV@b^KSebSlyT@j!m{2^#6#$V!@{NG1Rmhku`ghaehTXjXV z)4h>YrnwrkM0_@)wMQQS)c=YDSfIA7uj7^VrKK5l%mq3W9Itrd0nb=#jX z%_BAS|3K4pccUxbr2Vy89nlgbbf^>AVMkdIl?Mhl8K`F;!$+r!AP-BYZwJr0=GzY)12m7hV=Z}I#-yA4s}Ilsqp>4-ee2e=W2lvI7r6%+C>t zEvs-u{+;cJ6w|@|CcLG$1=Gh4*Up07Yqvu`F!Fia{#zC7YECxjJN~IYce>57J@A?Z z6^%D=|GGoGh(VuPZ3tSRzrknFo^6cpz@%z$El;%q|2~`xnrc+Mqdo(>fOcCxxw|-90Jxq$iY2&IH$O;@H%SeQ8&wvN8&&+!x>D?GZqPID z+l^{~kX?_x7Tu^H|KCko(nFa!*Eo)}mqZnu3mwa-g0jl>Zx;_OfLMNi>Al#Ii3ZuU zMdrQ3x2RFzFSq|&xc;9Fjq5gXqlAA3d<69&`=2n!yfU3MDPJzP^dE3T{B3@S-Z7n- zy?fi!-5s5&`gHdhGw_;DXa9@QuKzbZY`Nff*^ln4?2@o>5Oerh0v0&{$&avYfMORw zZ{}w21JE0p1~x3CXS!U;SB`uZL7_sb_}iWJN0>=?$>z@`sA9?Hvt0i^sL1|P$mVO@ z5UFG%hpm8Y28@d1(6K}mD}>N57bX9}t;cso>nCX_`7PJK4<)ky6qFqK6h;`OqC^f` z0ZLX1m`iJb!^u)vu8^XBx>z}bTapher-}wS@lh^cFW~z3VMX?zf|ae@5UE&^!&ZQm z724$EaIzRn6-ML_7avdK7URRmb!qsR;QIIBL-wD7kA2(_srZn?R)CKIV|Q~1St5!R zM(CG|l9zMq@uB1;X(;()u74j&WdA8Bc^5ZCDoW(A6`*95v;E<)vRu_rh%p~r-264S zFduF{k%pVU=lb{IM)seAn{RVNq~b;nTLEs?7WSeXevY(jDIB>UT|E7YTci(9KTpHc zva1=*?8B4nKLt<6azmuzNe){9o(7DAfJ4v{QLHdSzg(1zaO?4*)(eG z*?$U3p2!W6iV`_&1t>X|_0w?JS(C4+5LGO2aW=*+*oU(nX*hcZ*S`;Evi}sEJ%<}2 z6=!nT3UGFm>qO&_wL(`>ShBvj=y?sdHXnNSr=jPqT>n1w$o^B%^FeNiRP@MUD?raN zj8Bup(NS(ag{b^z7h7NCmg>XSXVb9t4X%G5wq*Y)*!m$iL@KuAuoYnI|FiccU~(PB z{gHLAZp-#swk(g0u~+hHk&G>jKsNG)g^&@Jj1TN+N4vAyd77PB&&+BqV;gfgVDcOw zh;SqXLiiIB2v-P4IAb6{2!uNa2@pcK0{jVq@Hq$h|Ellq*YmpH%&a87@6Y!c&A#sH zqpG^9y1Kf0sd6^^XtaPzC1v;@Ha$++=h5ML^!P!OvJNZ%hjkObd9>791ug3J~Y-270ajyj?ft>uX!v_u+Jq;-*Eg1%;_n zu+ex08_qgjw{O&Sq^dZe;BOVF*o$78Q1ULBrqK;1buq~J;M*yJ;K8@v8NP!;N#w|< zW?FPB6Z56ZQuG5U2Kxx*NHPNm?;ao<#MnIwSs_~Ff6jD3AB->TJ|=GXJgKr7i!v7us} zQ-&npI=^KD68-IOlxC)D4ZNR*Rg5)^Y+K~bd@`Y~Tr3)dfB2it7}$3NS#TtX`_zHCCA>DZXhF7uXa;e~uoz2TukU1}cIS z9|IGaYTcFySVJ7=k`a9l{?EkoA@#;2z>uDE$%|G=L}N1XFrIlCVQATGW{f~=iq`a# zZxV7uLA&Zzzsm)&pW$Lopc$H@|w&p1k`MBa`jr-D)(smM`r_ zA?nexg>f)|cG{@_DMl@3!$evp`-ZCxqpcc}lwPam0>4$m>^o^`WVaN#Dluc%TuZT< zxrPnvL0LBZufCWzR@Z&8Z8msp8#Z8$Elu?_R1+k*8%)vJx{0*2pBKSdVuwTh9UuF~ zotdFx20Ji_N7=lR@WTz9g^ZLMy=+mv+B5Y6qVTso;E|&64FK(rwpk%V?D+&8wL<~+ z2GvBuNZ;mwF`-yP8cpd?o>^qU1o?45?E4HW#~} zB$DUd)Gs6#Sly;gqgmbj>fz~=(9$^*$P0Pggr%b-TgK9HIV{@JAqLi#PIotT2lkem zWu!j9eGzE_nx7PLm=4+&F}8r1N>`Y0MK- zu00d}P@NQB7GujoUSq=%Pu_dswXxH{tE&M*1ggL7sXsk1b@TG9y}2h1ATIUpVU56R zluZY(ik7OG8Jf-b2%3w!`Ud`TX=VT!z6*Q_5rf+n^HD`N%&1!POs#21%AO+t z?T>(G({k*I(=@7Z^}uskPvJb1n_QK6FFLEzN12BTop?_1Q5scU4B9l6Ljqwic}jo= z#Dn7D`6sig`O9oK?mv`<4mKLKjdXc_R~^sRA{A$=RJGTY-Wy?gwc+?>XFZj>+MC-A zdds6SHtAh+f%_G23Ct#Ht-Xmg;$3T^NUtAdBGHt63+N+gOqxhk$5}xSdj?!!1%1c^ z9=U@43ZVU2K|G6~vxF$^lR{)>m8cT$Dp937dgC9xetK+3%%#}M`ac2M6kJ(b*fyjz z#5O=|aghjV;+^LbFQM0NNOcKK=3PD!_hEh!7?iFX~SQe-aVN7HmnD;Y)ezPDKPTa4d# z1@Kvr-**vn!_0arrS%}{^KHydB(_6f4XjCCt|wL6qatpm%6C<#W~Qjt)-B#;5pnhC z^?~_BEsWn~jd&M^D#}SwBI?N$X_JcJ8Fq_7m@A}Q~|^4Q@+ z2$rpnBaRhvhQf!DzlTd2?a`dAloGNANS-LE!)qeSn9>=xgqT70atf-2eNk^i096mw z(Wu`QYTvOGy4C)usLwoyPYbNKDCx4BHR6>nqDV`ZmD174Q0$X0V`xo`d?BmkNSKOe z$OX)TvIjg;!ZZNd9|jP|6 zOdj3xhlq4>Z-JJEcJfSLdmsoX(HApqu14B1Jg!OE!b!OB5(M#*yn*B*!$l?x&zL#* zP;DV%kE$@~#%&sYZcjpIs?t29LV=w$VyZ&k!~~Pff6D_MDPevBP(#ARC7HKl z3wY+*bESakuEzw-M0#!SDMuJ?r)B_#K zrGo%H@m%_Z9;`Bht$J!^?)YF!JRe-*p=7+Y8u36!^1%~N3O+d1qb-#Mocc;VR13w^ zs7qHQD9N%S1%-?J|80b;rP)V1g(*L&jIf+KI>T${c6<+cq7OA)X7HCi6b(J(d4~ta z;(`tjdEN>*uB+v(w2NJlWHyugkmsfDL!Lr6T`W)@$a9YO9S4(F2Xt@2UGp?dW|fYo zG;~uPJ2aVZf4H=VzpHhl%!@r-LgZw-TCRx#d3vW?5c^S4&K!M{6zFlZF~i>FYF4Ie zbn%q-&e$!}-Fe)e9mB&?ZS0y^FctQ+2ULSdS&nlDu^An&HY;Pa`NauCSq^TbbSv5x zm+)y{KQKFqSFPZ1WId?;JwBCqB5(3U(qF2Rae0=(2OtWu)kcbN>|~n*Y6DH6u7ytn z#6B21Yv!@E6X#?%zuUZJ;%~z#4f`B za_m7?VYb|?AA2zQI@VC)vr#*~t{~R^V>KQT9y@H_IHbRHsmAj88P|imMt#1Azt-qp z?bg@iWwQ129>f*E`)54hk$C@V-|(*9Q_alP@ji4WK=N0FG7p<)uh-im(TDzjr?xn^ zue57B$p4uKdj*jHZyxYSpZ(>&DsPV$u)%6NrTiPtM6N|ix!%X6?i zcWPlzI*Fuzr-d}yozmJ)PbqF6Rqi0cdLyPX!yU;Ex~$`1=19A_UIxcYhsWu(_8Ya; z-{`2T0Fe^IR)M3Vwh~0n8|B_v>mh|+1*x|f>+qagr5VOwk1+0f6;eDy)K0GA*@POd zg;!t=Ug!ajT!WVav_ESwqLA2iv1*ywY5Lcv{)E zF`nk3l_E9y7idi%tC-{?^IBYO-0gujtLB&(x7w6m!20RN!dNebtxw#zE-;Jg>pIFJ zjifZEQaOPxNb7%}&)VX<%yGd34e zJ)YJ53e7FcO*N&b#_ZTvd1$U!Cg?kSxd%FuV}9S}nC?B?7s$1pr<`-w_)1%IYYe4s ziHBx(0-V!)YM)UDd&tmf!=DAPX$V!)^GqwPa%>7?@R_3E=ugdBBy#M5jJ92jJagC8 zwOyiJaU>GRoQ-qE3CBXND^AwQbH&LzK35#dY!&)L4}wCjxbJyjti{#A756WIvt4nQ zxQ3e9Os*?#TL)L%B?9F!uDBNkwp+y31uh`Y+D3CpU-zZkcih#6gIV~Q5a*$SMYtnN zTkAS{#OJGubw|0YLhfGeAv(Np&TU!C*&+yk_}k+yAxw$u!s}QgUdNOwGHwPdZcL4j zprNR%9Vfx-j@!_&m?pm#sG4T_*QT9n041Zu4*oOxo=up;)HdIQ z=9w^49-dJw7c^n29_UDpn+2%BamU$&xl~}EnE@+pf*Z7ROFT5|qY3jH0c;v33~>${ zd&UrOc`DivAe7K@I*AQ|w|Wp1G6ep}17oph2SebE0u?$_X;+E9lJBNG&a$I{Pwoovbf|m8t2m zwfLZi*+M4F10EQQK|7c*&rx`kVMR~u(uBc8I`}f4s5mn$Z#M?!QBdAKM?N=M8roO6 zbEZ-st2~oOlRSB*S{vWju8tk9G>1##$F6o|>JC>Rt0qDs`LV87L($#2JFMTl6e3H1 zusPv<0c=EBLVwB{@k(V?w93JbHf7RG5vVEPw4~l3Ehu&FY~t5vM}2`9PwYL-y1Hk! z7QW=cKmob^IS;tCEIJ!eUjt}=&$lsR$NAB<~Et!iAZboeoaJ%sT!|J`9=f&iR5NpbqlMS++sv? zL(W4F3?+9M-_k`lmT`MjrA3v0DxPM_;YfghG;xs-X>9d#!w$hSD|e zQ<+JW6NF_1P`Cbdz!0CeomJ!vr9Z8fr6gEkf3>l3ECL(iaO0(cs-`y~J!Sf+H|msL z9y^xYv06AE+GSigZXZiem!j7mYp$sRPXbOD*`Q#jcx9?8Jv$G@3L|N5HPM?X40G26 zi+F!g0BOcDdjYGOpXc-X>l)32)$ws$Xa?Ubye`h;H4uCSH%)C_o$##4+JKN>)IL0AE>|G)>{xXIHx~GlUep5K?;7V# z@oEUt^weao1Xh(h6;xf~b#+C;$P7TkQMWI6Z8y%EVmIvYUwJC0wk|#?e5P704qoJ% zS>=9Lyuen@!aK6Yh-ncJb;Qa!B~Z1Om80&yyQ2-SpI_vzA62@5m_%*JBpkZ#YA0XukBzb-l0m|l+!1@RK~%-r@qVPzp(YsT!vhu|n9 zskf(3<6N%o$5!ijzvrP-%pu29G) zDXejkIt9UzuNWOwGF+p$LzLea#prYUd-SBGfg-$4y` z<5f21Z#h!XnO51{vfRqo#Z{*}#2w7tTJc zi4eMQ_U9gS7NEulJ>Zel_;lZ>5q;q-Ll!*2(=^vN|2v-~*{e&ot>tq;eoGT1{|ef- zJ@_m@j&FLvBgygOzL6vH3R;F3nSdSFs0nXY|EuT*A-75C6MB9`tHLKl4wpXrgcjde zY0ot4$|~zESA@1;3yz#*EXORRTar72yeev# zX697KEWW_n9!uIAPdZ^b!%)H#Ku+Lp>v6u)=M(k1!E%+ZhB> zik2x}wZ|)_xTmPkT*ck+OrU^lI_v>A88k<69|h>~QQX&q4-XM0z=y7pVh$FoiFwDy z1CydvCpeIZT8IPlWz&t^vn(IulD0!W(AyF5gc)8SZwbqaQ2;L-V_%$vD1me9p0Zj}1*O zFQl?pjN1R;clr1A2K?ME*!#Ri)6)IM5Ki&bl zda_)vS85PgH1dtd(nm>8no;UDa%^(Z4eeuP8ub`Q5gV}~jFOqmsE3lfjc@7AIqeT| zH}P<36Tdt#+pM-LJ6e^>=7W`5V|Eyxo^q>E-*H2uj_2+-Z8GM!k%^X}6!sg?Ghb7WGI}wtXViL)3;{Ry&m!lWZ>(3Q<`oJ~YZ{K?qxU84< zHp^oO9jM%XRioXy{TdMpi8t(Tzjl23=cn=SP zQ3_6Y)nwK3!Lbo`PAtfmCD1nTXmZR%_$r4Jqzuk{x8?8`)!aBg+Nc>yUQ76R9sbX{ zd1|BSWhl1Llzf3&Wn-K$2$gQ{p74V1HM6-z;<$lmpFGs51kN8>(VqJEFi2ObC9gs= zWpmLHAEfw*3I2-*z^rOxP>}I`4pIr1$wodMEGn zfBH4j)9G@LTA!uONRWdSDu`jBe5tA_InVfFPiLKPI(djcodG!L+9CUyx5Gi#MZWg) z(8b%I)WKWJAdIZZf-2TGdqS7_I{d6lpLA_&W_r5OY#(S%A#>54GYw?bJx0o5@`vCq zK8Vg5E1J8I97c&xAEglPLgf;D@=tq8H~6NMN28|{qtWfY_VZ}O+c#*mfYgJW1pmXH zLgMS9C{=j3eW1z;OOFY$p;|+%49wbC4WE)>`fU3_7;3e7Yl`ZEO{%{`YqUH z$=j&l>>TTb1vnl>t;x$y9&=##JV=laVbk!w)n`j}X2GyugiQk@IAoYJNSlz0OsCpD%2&rPRp`@{m;=UVhla zSEe2%iMWB=YUugHf!dQhCa)lfGZlmy>y^9b`7b}I8o~hsVaIdiqoLvgGl$1HL0 zH(P&>W?Zw?Sv~R`lzLzzG>~n{VPdzB#s!_gx>gcW*!XN9wSOJ7T#seOS@Ev_axO(o8 z%`Xq#gPj(#Ub-EtcnA_yAtudzlIxa>!7yBSsjZYLzlQ1Y=R?&amHKdLik=?Qf^2k@ zY+;uAEGxA3s?f2g$-Ug@NC|;d^u#S%!%G2UaI?_CIwdZp^rlb-1BWX|XX$PyBKlZ3 zPz&!MA=-vK6&bmxyJ(H-JJK!jE)vWMJX12xoH-D^b=eig?o3thVj3&kn|ObXWVwM3 zymrzo!|xXpBsWmI7i57`SwRgx|k6i37Qg$|Lqx%p%fmS!!Md8J>u%uiGEx|tko>0Ks4T% z^m@oModVM9K@WJO^m+wA`=c(-mg>ScT}PNL6517&ZogU&9p#57t;E}ZdK;LMuuB({S%%l0!`z~rVR?|6X+`}1`MOaiK ze=$HcpG00}DiE#cteZruA0A%$|7yc|B^VBbsP%G`p8pCu;f}@SnZcED9-GjNN4en55 z+*}OxntuucdS)2SVXHcE*uGm~!7;;-z0pR@=4LZ8B+JNDxn4e0Incy507jc;G)m$@ zPwY~{dTnE!nr+;mpsy6eJP#x=dCss2HbxK4V;2llyWB2VZcamwh$)2;4+kiv5KLLL z$pdZjPtNx7a)284KwQcq-|kTz2zDZzinJ5^$x{W^*@`=}BULrycCO>0Uo?->Fbpa9 zchWVOUcnrV{4lz-i85xE@xtLICK(&Ganm`a?0@VV#0!6%9ks_Rxmhp*J=L|`Y+7@I z^Bn`bl@WGQ`76@_JrHRwFOfsj4KbD~2bhA?^#)@li<&KAi;Uo)C>}g+|&vkk1w= z;+mkBunFsK9Gy96Qk9gFM~F)T>BQ~7uhwH}hsPvREHSiE?~)KQWr#SyF(GG^BM3r^ zK$Md>9Voi2)WFo*`lT4Fy^?<(V6Qx3`e>VM`;6=R5Y$*8L*Z-w1Gq83eY(nyFhALY zU3M_MtrKy>OHdUI#$(ZTgBg>l%Oayi`3;#zie1H}IrEX#+!R7Nl5;me`y)96XMptJ zoR5|I?OkF46ZU3} zq$4@2xLk$N+ANW^iq8Y%WRR09s-oqmS6&*Yc0!yOUlhKXRC{9p8BtR6^{f%E)Ko=A z4tO;JCo#OJt7T``_UMN(ATjfZqq0Bu;Gn>=|DXpva@l_xp#71mMeNZLEE`1^pA^uA z8yzL6O1x4)m0n6xpeUQ`uF~${#k5RmV4tW&dCGr8yc6x25f4t$%uOJyg>{{mtX=>) zl{~Wv%eL1Bc(I^tYgkdblmcaE$&F3mnIv#s!=X3aH!P$M(bbSw6XZo78MqqvZxH8z zXfuR5AR!8KYbpWi6=t4DVPMz!sxZog+G%6?R&kV2Tg@6lS6)_ErTgasBgRsgoA$w6 zGy{`m?WIyM9OPoBv3z%?STybkfa}aPU$;(p39JYZzu*#h2EQI)Jo$nPN?MnTQi>fN zZ;-Qw4vI>26{=AmDeaqV%(jrUx`Z%dQrqR3@oKwNYaH@&y1aTIw*cZ|g3a4|1JjG* z?WeLvfbZ-!M-@dVY*AM$?Bz1H1vv7BFI0(5_y%V_s%SQ6%l5EmY6bN0ArE+@9-aYc zfAlb$7Ff&-Yov#Z6k2`yRu{VZR+V^#kScv5>D#VZQ88HBTRUQ!rcenl*IfasWtMAh zlk!&nx(GceuHKSgB;c8onHm?es$mz7OwA}4vPj&h@XWaVeGwBEuA6tGYX4m~H>m7! zzHEDrHm{K2$_b=bhvP~ZV3Jtrwj-yToO^#0fhXa;`BI>&nK`Uz4#z;wy^KeR7#1>(t=K~TOaS@DLjFruHGf;Z!^)LO9C|HSkTh%_ z7ap&~qN~UAElirMV9FJNswPt=KLBP5B!Y}cEb3>>rEE~07*mxF7s9#b!D4V=H|nt% zyDbW!wII7)dqbmrU1J7W8AYB)=Bb8NCw$ijE5v#v1+i;^g-5#>1YfJ{kJhc1Tp74V zT?Ua|%Cq?;>Vv{0(-hZ7OjR)3wSlU=FxzSwjjM*4YilwAxRZ^i6Q8Nl$20qd&ISr& zT%juMp%HK(jind|UJ<}`K@KcCDJdl*s@<^}G01b161HetAhQA!vFFg|y*>@yYo5>hBak9^_1-|$UU)Ss&!=BB9%aMo#ImaNN@Cd_XruQ&Y0pi8 zeQ8`K`)Vqu@y8=?pho!i%y&HUMi0RX?9X2B0gv3Dy&a(a*`MVekI;LY5|J!skf(gp zB8LBM)RGr94RjYd@cWcTxc|WK(;l1^K=~&;;E^c*a^FxMIPl9LJ>vtCB$3F@-2t-9 zOGg6p&WPsRCgrB`6A>1!*i_PvtBQfDRq1G!HLrnIN{G)-k+*|#ohK8mxl7G|!wX?}T)L1(v|4=nzlYbhbDWxlKD39^f!u!MjiOGCL??J79`jU1oq97P9pj z=2t4Zm5R`~zOY30D0kJ1_y}}sY*D{FfJu&b-V-wgHw0#&WCn6Z1m>C@zh0{y60S&` zQ=Shm&i8EE&s3y|=-FzmRyu@7h-b@3OXUgN5-)AtQfgIj(S5wdB1`zkvP$3z#|8pL zMe5ce3#+1eg;oBygVlFNV)d=89_W3ofvX;dtC8QQ27zW8qp1y}X|&LyQ7)LY(WJD3 zji&U14LHR8)j2lWmoQ##qkWlvv7DRiS7#eda8<@2bOewb$YSSeqLOY&QQIH+M zEi{7O(yp%Kos@>gYCK(r3`<9bRd*nnWU3k=A_Z*F@?FBa^IEy-B0dI1Iq|2W9FzW~ ziCD7P=9aK@*DLU})t4PZo3U4`V+K@N&L@71+l}{|={uIlosXQj{$Nl2F>367Yc?f@ zdIp8}s-}{0`nhfQ5_fafDTSsM4HA^>z_w`6yHbstex(q{NwFTT zsF0Jqj5;4oUaBVLllYFU$1b6Xxi1FrZ>S06u5)Q3%K5^O)d|{MTb4HdP3V@JuxraqRKuA(7$|@-;Fc$q#E(r>;=%1;kB!-uF z&!Uu{WnMJi=lWZDSSs^L;3Jqc~`I4GkK~`M`;LodxM6s%zw`Nr!vI|!I zS9Hr+mHj#?Saq>bC>~z@U&0dSRaHyTfidg6L#WYlPg96l|3}eNGVAK@nRNwd{GW=( z9=Dz$PtWSCL?w&D>|sym7<%@b_rFSLTJ6_J))6`elfhi9n1W20J#xmBq2@FJ>`vYR zlTuX9QnMz|)&*;hpj*zG?AJ-bnv1y6;^EAz2uVVUib^(PUXx3LLX7z&)s!UDX)bNz z75y4ec!y{(Bt_56aviKY*lCh2J)FzflBy_lB)3y{NPDQJQBYp41@O&k$WiiA&QLQY zP}T)g-idBGQ?g$t2UBvZ*u#_$5RwE_ib{$KOj^Dmmjs2F@_DK$$&`cLGv(=^@cp8} z5L0@14os;x0(_I`m6p7cLP_#k>T)o7jhae9#vBCjtJSch7*oztGbYg11!KMo-Ezic zzdAFf)Aj&8NzTqOTDCC*SGu%38kN@rle3RnS@GyjPkHgEqOXw$?RDP@}u!*C6<}U%I=@f2Kjy> zdiP2&^9_g96pqIoHMZc&7ARCDr%p0qwVM9vXz-eB=$LlrV1z3KFh-b7_YuA-vH+)( z`q>s7s<~OnFF^Yy!aWCsiMS?m9t}lpyvgliX81_6m$S6NoLow<#84`BS$(oD2CA>n z37#ulPxOqoK)l-HJ>Vw(a}rcs2hidnf{ZO$l6uCLEJ?j}g-eJM%09I%FgS-f2;`D5 zh`7%TVg+)cmO0VVt8)3i)f_UBQ+5{u2x72l`H(-R?)7(_qh_d?N9 zMu5MR2*(AusH4OZ)5R|ngq4)CEulgZ{Kcv%DZwu^*(G@q%Da@{$TCT;@ew}DtO%#f zW~t~tD8fr5!a1#2P&?PM`ehNdMG99`xJ=$cz2l8Zg#({LbQs_Cfl?x_KhQIn6A}L* zv~N-*N5sFMhN2`uM#Qg__ivv}kFf9?xQ3AbEJ52sUVgHLy!;9wzmPShx1NkUzv3Bj z0WtqY54cH#95Me5fc8hsi;0ocrYA^*pr;I8p9>7n5%dJ|S78t-=!t}`{4^(@74+1> zdjVBI&`Xw;;=>l#Zg)b^%ay9J0YPCyMhW`0RVnCCqhCzWvtM&8=+CK+=Sq2Xg;Pka zD&jlbr(KJi=%-LK8To!OW-jDARZs$nEuYO)*wNrDB-}TurX&Xso1!GS0Oef@_oW(5 zS;>A8c=AHgcTlpgG>mh@)#ZLxNJ_4wmIsq-)Z_|E?TrB5sYf>_Qu`LPZ=yO!YTrad zQ6eTIwUuEGuV+SPPZF#xv*jmSX3MW+n4=+w<)%HOEg-R{Jm97j$&uK11GGO9n@!7+ z*ObvL2@KAW*90;V29ffbi06tybLv@nO�_r~>j@GHW4uE!UrBEv)@6}SDKtODt=@{nvn=A3}MTvK(FzW~l4gW<~mDuaeU2|=0K5mtKkDB0wTxL|&oibAX zD{7etCy8D_Mt;WwZVHMV8Tm7S_D4oq({p6yV+1l;Jp0*s6jCgn=2r6%#}+^4^c^Wo zgZV0vg?TUL#&>pRk|n4!BuO4NF`51XL1am_9@O*mR8vwtUv6rP%BH?0_#TGyZu5BC$?qz(6x^g;2H@Y; zGn$i4+B?y{Nu-=j+S_O-U2f7ICRkeo$WOKgkYD{8;4eL+EuaBD;Q=?rV2%d(5| zjM4y$4@(WOgnls%z<$lK2H1ovJ#G0oPDl}KaJFg=Y(MnDs!W?1wQw#FB-BEtwh~`V zJDf)~`{Rf^M>QoS_LZjKNzO!hm)hYBp&i_rXO+a`!PIAofdrMrVG{b(rn>%#JsT4B zw((g!tHf@D@(a6aD~D%{0Z~3WunA$mn@ZEjdfKKccr3YcSC#Jc9-^E>N6Ix=4f4$< zwkM-KAIo*qL#KMn)_YSx*5!(7VsEM6L0ib?#|BQ)8k5z1Gv?U|Sd+va-NIf!qdwS{ z>!Mg>DJD&$K|FJ@g^VMf%rmYh0QfS^HFKhfN5jaHTd_N6D4iAY8Bd$0JLBcrGv(%= z+@^5Skp5NiQpq&6f=|SB5vgpOY!8=noJ7ZF8#7@zH(|LB%c+@FMA#Dk=4hlzGzC4f07)N_1f z;Hm~)J4H%O+KIM!u7CN^?Oyeib4$LxE3WjnMqxe-9~cG?3q7bKRG%dM35%Rye)cQjP)M@sL7xn10{JXS`)o68|9MX zB-Op9-9UThXsF=}au`7|48wq}o>$hCd{`wOMV8g|co~*fqo#``wdoGNi@e+eZEB<( zO??(X4NV>QF0wCR@$8(%q@F|;@hw-G#HMtH0~#GE|GRsFsFmp<$YZkvk=6AG7(p)c zpfsK!TRqT`1i5l938E$onQjIgSp->=6=_PFrJh0$scf6WoH=z&PfQw|@I$Rh=EUkh z7$64eHxayi09Eziup&DIFZ*I7ngmP6fDT@kpKPfhzxs{#yFH^-j2AZAXFcF1{&PgZ z^8spzg2;DCeX_uJ0P|$9Njoq&hdBsjIt(K1aw48@)WPk5DqxpOW|fv) zE~m=_7-=hM)`HDuLq^%<@4;BPUH)GB#q4tSYmV)5`Ret7F(fB%=bGi~9kX0W91htJ zt9*siV#X-{Ya%E&%ALAOiZKcQc|mwd$sTO-�!PTtiYS-CpuZly_;9pC)W_d)CCt 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/ZHK;eoCdGs5_*!XU+Nid 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 z%0DU-yDFphZ&fe`$DHyz{#2hKHgRMRTr`zMBB9;R@))EulbNFyGn{NgHeORr7Vj)iLpn3n&&}1!UaGJ1-p7UJUkV7fC6l{X3Kl6ExL>X~=#J~co{wqvhZ_vwdzze!7|I5!r5sl6mw!Aaq=d=7Y};?V(Fb_;cbH5)F74gezO{7&Ss+u2+uQI|3yjfMgK9c0=$qLBKB1PF>Jn` zaM@2@k{A)Na4$)$C0L{YBt8Nf=B!Nt=r!EzivaYOOoMzuQ83d*O1^UBGY<+CQt7u# zHV-kAC?uPA2~aiWnd=2@AQov&Wyt1}T>nK-5&g%I%|CKO#FC8|wg+U>Z&VzIj`>uq zz$O23QSunKo_he^Wt%$CifY40Fwwprhmv1${THD`^dEzg#h+({Q7lTtusuM@5`wv~ z1~{B75akLf>Q5IdCvi(E!piZ~ASFKX8D#_4e-Tzh|1nrOj~gNuD`MClU}dp3`8b^P zVX4B1_`}7=Gq}YR;p3V(d{nspi|`@(kHJTi8zL4TV%Q$wqu zTTc;6UKEFtS8@Fpp+xi_gOWFJL&Ty)4BG>gEOWL$999;o8VWJy1LEfHzC+*|ApGBL z;8~eZcHBp~6&4}s;W#9Hk?X$*NuvK4Bz>J5A{I$v*d8EhMP^gVA!?~zOCihs=rYsK zxkVP?>A&Of)b|BOMHk^o^dEz#!?_`1@g#=r0iODer+`Dyd@5F$k$<@;IfGkI5lT*{ z2Eiu4Ib8omC=va~pyX0+h**?}VS9j*BUy(Hhn?l=nhH_b0vBh)+=7d6c4HjQCb|BL za3=bX!P%|c5V1HD!}b7Yhq~T04q14WL^#|OmaH!>dhX`dR)n6H#i8eKxc-aKBl?d) z&x70$vFH)Q_5eLA8RsU4qeI<#3Q_6LF19|yEwu<+pNzxSqg?+**b@E6VC%cw5V6=2 z!}b7Mi?!F8!%-iWD$IyKTzveFTTBr?eiet0WnYZ65k&tn_&A0eA{HNF*pBcK+DN7w z;at?Fi{w0Tt@J1omt5`W`xbj$lVl~f)#o-ahY((N-2xMR%pL7$6dlf@cDbJY| ziThMf?QA5jo@;I-uC8&AN8;MpeTu|@lT&2VHE=|T`9x$~5yq)vpskgH!i1{IbBfaL z>dlo&9emME7h2jS6F56ahao4a4x{r=*?@CIA`5IGqHoz1K8Ud)YUUHu%~okw1=fof zV_~HbZwxR0VL2porA)z)S_QJK&?QYsZL@p4G&~F+24xRxhKGmxFCQZqsZJpfw^^aK z!^2nCCo99lr9lD1vGR1SwT8laMf~#cFnJ=O1|(FJk2c|)`e9B}jrz@1$Rw-o9oF@ZDmE`TG=b>?pX0-=9G_o*Jov%3*Gtn=wR(9J7+fYuLZ_yPs~;Z5-wx|F$LrHI z2&bo)u11BREBEK6R=Nb6mqai=JiVsJngAxRLd1QE9H{nS&EesG!|3d2I)hUULZzVh zG5tYb_O{1u4)w2Hd(Bj3q&hZ(LTVSh`)F{|geAazidqFAfENxX1RYhrhkv-p-`**?0NU!Te zFNa$z3aHGi#Ueia=pl&hjv1V2ZZ)&Q2%0;RX&y*(CqvWT&|Dv_tBBV6 zP>!0Fx5eMZkPT<+b1e`vY<(UBqX-ahVwwkn__CgXIGnBfC0m1HvH)&>Wx$@iXRZ}o z@}y2Rn&RarbfOT=Y>6>;dcckw^>@RpU7G|BnRt-u@)~Y#$w`yn?p)8H; zmZDH4X4Kck7_wPt*w6?~XT08+HqOvJv2BiLY#W-sn7u(*+gB4%vKNRV-?|C3v!5G4 zSsw#5%klP)eUo09rDAjjd2QbaEHTRFZiJ68aOP7b172dPS1?PD5QTR!%>zZ@UqjR0 zXq#oq!VwEhsU3{4M_5X%6>JWO2qh00FtrDZ%p#|ammd4&zR$99_(-RRJa9!>m!`-7 z%f)Q}0xC1Bv1rh1=6oKOP+;bKky&8`;eD2A9!Pj!fu_A7Jl4!{=q=aG=?!=Pw}COs z-9KfZ6anNPGtC2m{M()ZIfA=wo5qm3{gt8VgV54B@=N|rjcH0K13cJ_scnorO&XwKxtfuEFKk?wxrts2A zxpo8iLwD$Rvs5u`SZ z=kxEUm^b%qzw_JA@0{~HqH2ET*K2VNqSCv!(HIeuwPS3sK2UAdnw7dQS9Wa#@oH5j zDcW0U)eg4Sw;Jn_6Sp=n%*tHgn#CIfvneENuN9rJvZjix{1_LBrpyV@`_Y+pk*H2W zg8q>KxP%0~muX&5g8l_fJ0n4J#k>+CL{C{5M5d&~l(14_O1Dmrf2{mWvm-T^a+3Ae z0os(5tPNrrQt1^7AY-;B>I1_SS%Pew?uIBUJ_WAD{4M}?ArbnO=!6v^Rb)k|#7g(r zPa9!kec@#&Pi|wDkftR}^McZJ8k%-Sn(}?&lfjAxxhb(SC9GJP(p6-9@;Ju|POz$i zr<`c~JiucmMdM7`RjBk*6xaxc_=Mdzxf96>L-6j)&Hz6Y5``V26IK*dkrjpF(eEmH z)neh)B^mk@+KO!I<*Fp8#~5ro|6_o?7JgV~fEm=abFOetPtlH0|!O{*Ej@;+Ov z#x2M1R|oJ}lHYd_bHmNLj`DgC_2n{V8#3GBU=6%US#Bp)*=bJPj8+fUM<++A*2WF2 zSQNN{^vb||3JJzviB4F-Fhw~zN>rV8gy(*YoFhE%VP;oCc;3Y{FDN`8MbpC|JS)J& z2F2X+#ulzg_^YObl`K-?qN?7xV{hU7Hh`HzGX6`^2`l5O$jYw?Mc_GeZY8z!KaJEf z?=2mN(rLJUi<#yHh4xf5?Tpa+?=2w|g!tDgu(iQr%Fvk-Rvb;~)5*{saXz&2Jv-o0 zm@TI;{wE+7B^Abf?tR5d?+}j7wPfUE$Q(tLd!}QP*dU%DyWOlISc&7pP$>th^_I@c zySF-U$37gE9UH_sR_GZzK8yskQq$Oo=7CxzB5#27iP1W;W@D^E`3##%%~01+Lhvs{ z4&eH}F?7m@Lj4<-%C`C+4fRFj@VbD!71A!(h)!7TqKd3`S*kbO1&TTS(vRL0zpqm%@PQ!_%{kV-4@c zvl&W7g>w4nssLM+(?_?y5l0}BcR(w>+eStj2Wo>mp$I77mrzhwBG2_iV}uezl5&wH zIK)f(27Ew{i_RFHa&z#Z-o%MLsv>wr`ZRLio|MjL4KHNrqrh@-lWnZ8o2(htprQ8G z;QZ7ZlhBM~@RAz1Krn&x`?yTe!Ucl8lN5Uv7Yu}tw6_NLsdjLDq&`p=dCdg~-O!{o z3pxI}3QqIZCJx}Kz6w+zyf!&Ur$f4EfE3?JM2Q3OV-3|0%|lKRuuxqZLr!$CChjCO zvGWL48Vrn-W%mt5Wm8@vZkm1spcvRvEwz3tTx;C%+^q4!G_!TZFzi z#4w2MDTAUzq?LqN(NS{O`eCD>6}!VZC>Z_=qzar%56;1*-l7;}PSbshx|KWLA(i(|Ec4vOfmK?;WXRoALeZ>Ncozrlo;7=f(qY2c1l7!O z>4MJ`=F)Cd&5Vo$xwMOEU64ypMAIYBrI${_D|6UtTHVYXAFMCV2j?@CEUvB2V_FyF zgG*)w9~{qEOXC5@Tq#4f(0Lkj>53F3c~)egaFPG_NbHJ7?%1|Gtc9>=tC>&1&(6V`umM}_i0qH_Vy zUj}S1jZpm5)2-uhnN2dDO7G2MSfS~J`|Bz@TEshDmXdWs#ix;f!@8dJ*f4l zDi?viVLIq>s4*!X=9;LDkI=rrl#Y#G{GWcTkJb zLABsZ;C|HUuKX&b7)eX<`RWi zY9muPROa^ajWKKDN-z{!P{yU!Ax zu*+Rj)FrvWF(vv7_*K=ii{etxE4-ehO1i4%4Jdz>Z)9d^bbk1Gh1W98T{+FU-1-hQ zb&UVKff0mSrntw^4^$_{rtXct1{sPtA2suN1$DpmLW@Tnk6q{9IHbR9sm1b{snA1G zM!DF-zgcu2m#lBeD|G887{ryp`^TB)1@Zocj^X`ey*5bAm9)BZ!8n@$(Z3MN7&cE| zulH3VhyI^XUy|FG`n40t{~3e563G7%)4U+^e~+e}VS4k9ZDOW*sONU_jT%Ztg-i(> z6;h?fA-VM)i03w|?8zpP_RkWe{`QR47J5fxOTP&RDc0+AjT!DpX4tY!U}ng=C8G?9 zC>>s>v(~TQH-G*8Ndt(K7`_SY@Ar)$a^9Hm&It@DtQ5p-G34;n&uTYJJ|f|SOiCG^ zv#Fn4!*ecbBt5(mGI$o#yr2wjMAOd5V94;SR~Qw+kj?EeyhF5hd&sBj*@Z-kiG%%# zrSVc%{Cbl|g05p|Wk^l&1(NBh`V2#%agHSdp-Fp1Mhfz&xs- zlBtUv!sb-Ur(G$TY*>0_ID>aGs5XQOJAx=6!%@GjVD|gp}23N zogX;6AnB;N-QI{h5{i3fV7XN;6c-=xo#u+Y?n}4SWT*`rvxqa{oQF9q zA_H00Teqi2xL8%ua8yz%^y<|IF~JL`elG1fdjyd$e>33{!j!r$yj*m`2Bu7rb2Hd* zW9)nc4OLwmI0;^NybuGcY07JXrfXqOHZhYk_9X0rY-F0dxXFn}JpxTTvn*h*J3h=} zi@z~!(4Ja|n-X>*u1d{9JRah?x0FNRvo~jy>{4?%Kc3~-)?c8e+aSiqM8 z(IwaF*zu%}+>sHt)>^dA$=rOq_bEmhqr1!1Xw%1pzk&9J3@h-vOI zWf%4h2O9%ZQ5OQsF>TWgHb$%Uv8m{HXzJ+AP6P||6v0C7#>FMzPJ`)`T{b1GT{fk? zg}KSNLUHjn3PRV0hV)%e^qBziOG?rnnE*}QHx>B@^p>^0aH?uRjMO#S%p0ePvkw>a z@t06_$~48S`cH#G!K3Rx-vL*7jp&3GHB*#x4OP{#;#eY`!POXAO^{7za1ArR5;C}* zXtu&8Y@KunLzJ2630Zsw!)zhX<*7^?k3lm$mnR!M z>eECIZ_{(ZL^47c4>z0{*0<*b=224L-lHFztn}VgyK}NOHc-1w9wK?05joRvWN&zR-~QGV1H zI)(BRG|Js+=3;!elbS9*27kHqNIA4da9E3}O0C7*WG!Y1ZK6$Po2`v1iOv9CF`ZTP zPdhgAGKGs-Y%@1uZb`!xvY8v1HXf&D*v$0?kJ@Hlo*dfkCMWElZ8I-7>=(9~Zw*LX z%4X(v8QqCv%NTuIfy7cHvMQw+4TL44$H=PdMb+q5{G|_HL(jtw^hUd#Z*kX+Ra_c1 z*--VLhNp#bXa)#K6IYo~$BAYg&xE?}nq9kYxa#0QP2@qXtY2Tb$s{DPX#yw_fVu2% z&k4zS`<}saV?Vu~wI*2NfAz8P`~uiedm7IPRCR+0@iF6v*u$pu;Mi2O`#2SIXjO5~ zxHT1@q*bpEYp$z;NCGw%1yJx)SeBG!AP82O^xO%!(5pV2i>0;K$;_FPZw45 z(|cZXbz@?09p~}Kh;JT?I5m#{M(a(wsVwqTAlU?>Ybf?Z zYx#V2yx}V|s^+PM_KU%ukgksxn6Kiej|Hl_{1m+omARuu8T_DxEiysUiyd*FFaK{)D9MuQ6P3)Vb9aZAUU0^Yp{7giqa5sXO zQ{7akjuUfE)Nx4ySxuf$Ti0E||IwWaB%H-lUbv_rU-F_J@NCzh>`GR{*-WOU2qlQB zGN@qc$_-`pJhPJ!fWR@AE@bWG@oGA<;h*}|n{j68!fD}?jkF~2qGjgTR+-GNO%8UZH_eWMcq#O{+`~GAm3czeoY|=lK`0AS?@u}e=L(|; z7^UHWpI@)Ytc2ci9#j*5+Yy9l@9xm7lGu-SP{$#`Df}QxqeEaWF~}z^Y;h4M3WAU? z>F+nU+boJRuarHtL+~$4*$Zb5Od&H5>sZC54iWz)O+f~@G7b^H1T~Ti#}a{-7ctFU zE0c4A=QU{Bnb?-u`c$SjdHnM#2czN)LYL$yhYb3QQ&T^d?BKq=duH#mLVuoES4f zA@jHIeXssvTCKXIr>U!`&>5&2iV8VZSs~Dgxa=mG(9|q`x@}!AYlT0m~>KHU?EK+I#vx#ilk0) zAQ80`2j=Uh8)al!zrm$_hx|rw!%->B@bZ7tlBOQXx;_b5uZ&l9(T%vqpnvx++J^U2 zMR{}u{dyxN7F}t6ZO1Q4+Yz;BFp_5o>ixvf^2%s5i0^(Be7KkLnykg{(>nauhyOO< zzYBIx#q*(MChCZYQ>dJhWW?v;?|u7f6MGOiLjnsVrs&n7vh6#s9IlRy)kdJL2<$ae zaV1sO=eM64?z+A;RV8=_Byt3-LJh@F+rH)Y8xEnXvC0h-)d6gq*KWU}(Q4klU7h~J zv+cKEH8_6g_SzUm9;gkj*W=-v`g!|+1gdZR&=#Cm!y8zXbrKOJUA4M*pilXcl=CD7 z;AT)KnoJ?BH+q8eEk4!EKG6ZLTgsh=OXgU-M@v?LI8xlZsv-%n^-YDk`iPPOO}6YX zMD%>X5xoHaLs+~Rqk!W7XqwL^EKa!?TbkqqiH_uFUyFar%u8~!kCxu(m4u5|;eWjA zsy>Qdh++>#(I=@_LFXZdNbxa>cA4_w_ghP%-u7$NLi7(9t4e~_8@--@eM1V^H{(k@ zU$N&@^mkNiB_ud{D;1oa#c1Lj%pp`6-ZWcie(lk~^ZOLZAVqHnbiV58b?j)@T{zO) zxJ!x)B4~KN1JSdg$uUSiQ~-WgoyEd1Jy7+F1Un3$V!B@;#A}uL`%EQn3u%x^(EKxlW(TDkcS&tcs9P&F_F5#N6>qv>>7{Z&AlokRQ6((vNcFOKk<-*-%Kr>J zoDQtHUgNOAc)UQ5sJ*i;34!fRXu5L>;a!d-@U}8A1EVqGP)!E@!Z;_p%Hn+I+Fiml zx`;kNk38(d8TA8Iq-`2%VS{bs2Au~U_t+-X$EtDk!R;c!yOIVMtEzj0Rrz-Ut5+7p z>LWxwNZVBoR;K~3MSh1m1eys(m&XdzXr4!-+-8yT&9t_Ha2c!MH|&*r(>cCb4e(0e zY>0jd-%R|<_RW+eryN1o8zb|sp#1f_HAbQ( zFMcFc^|)vi<4d}?G)g-{gPvq5DJtx)NSF2c6Yy(Hk&QY43TsOSsO_C()QBO*zR&lof=}_9lh5plf{A zjkWQK8aV{y$!%B5-+iP)Dw@|c3l*ws=okHfVCadyr$EtK-d|X`5=OclzUPsZB!Rwf zTl8&sv0Yi*dLbCSuMe;1Gzaj4L~YBK%E8Lkt(8OF;=IU}!?l4sk8X9{*E8c6s zVg2ezUw3!1@fk%L)5#FNgW+m(xcA^1IlKxdi^Eikbmum4{Hi&e8W^#PRI_SDMKF-` zMRJ7j+w~C{)njrBc#$jB6YZ^90CsHGwqzyDWZjo~Yuj!^)&2{tT1uBqSLo6_pGX1d~20mjtDl^jg!E#_;0y znRFp2e2wZb#H45EFsapeno$eZHfW0W5g0vD%}lQ(vo1p8y=E$fm{rf*GAmHo2D9FU zVI{MQU$cT)=POggaO?93OOjhnEkg&vt}nv8R~>k`oT&sB#Zc0Db} zylN&rovHK9yI-P=u#KZcZ=ykaqBoeylw{6h(fG9n@IuU~=V_S}h--s6{}IDV<`lnX z1#@;ue}>`B|0Eiq92Jc>23NHxWUz4x7!_*y}#lc zAc{&8;8rwjBjl)-%QL0SK-F}m*~$cZTi;x&A@*@b_0l2%~k8@Rn!GO(aU`~xn}-a0Og!7Ht85ex6-tH1ko$K z0}{Pib&P)JQXQ*Dg+TnB=+M`JCC-GsiD~XG&U4O$-H)c_&x8qa`8p;jVzJR;{8ICR zY>3QGDt>S}SVUoqPsb<=eLd@fPW{mixzpb(0<$IYRENcgC6X2*(Yw4`><#cNv?4Pf z;yZPAOpAcl__>qOp%$$z?9`yQ{FZ8ia-n&yhdV#^W56ndE8O52-N5UXPp1VMXqy0$mC6D;-~$j0D0)I_s3GGxvk2WlBaMrYEv zJyFFVprq9}1C39&u+NCqxCs5b=G7%-nhRy0AoVwQza9WCq0gzwm%~l8J}2TO)ucQ1v_7W+9zd%S`dl-s))Kx} zP7bGz?`dhYtOb4Gw=CqupY=7Z&sWngq0hyy8P@0LG!Bg62x~a5bSf8l>JzOyq1ET9 zo>GeaQlLXAc2&oyD52Z8Qh8?_`b$h#TDNa-l}mIH%G=cK$9oRFoNHRWp9iMhtbhor z_p^;pFK!Z|Po(!rYJB6{7p!e?8{I;1^hCQ1PD-kOdg|rTb}lob{)f@OOQ9U~Un5Ym z)ql^UL%nM1#vJ+^mH`<`sboV&k!9Z{FmY1 z$aBo$RNzl#n!AcE$Aml&O*>;k1$RO^n`(-{`LoEO9H5(M8qCR zy`AViv0$J9_M%k@1Ea;El!4Luz%nnCl8=T$2IgacRW2AFpkKnkh+i{oVAcp_x2Mpu z;q+`9gAO`jW)^5@m?gy5h?;TGxjzKP%(C_4VTuGV63KKljqFr_EL<*JwA>##K;pMy}B=w3F_UX0vu*7GZLYs)+n1 zg>taajF|b2fw>c7tNZ?aG~H}7pS#N2Ms597p8n*o^7L1JmA8X|w!|v$YNokI=rf!qnsu;U?M$6Y-L^&7C^Y*^k=M0Oz4q2_vj^gI3|bDNPQi zR(V=UTGoQH_FEP*!p{J#(g;73ehDKie$B8EK6|WMXtU-N)&NuEP8i?0vZK@z?-fKr zX?SH7V-1ASeU&1xrr0!$?#oP9S{q*G8Qs4`d7DOenP+sxOw$IJUb%URf+1*d#gfg7 z-{E$FAY^@ra=Y%Y59+MI&_w5^qJ84PPP)E9ZuAcX34(M6DJ4zqrD*(4JDVBN{r`&o zT@vLi@g5*hvUUIR)DjQp6VvXj0IPCUlH&*D?DRjsCVWV!1q-DWIRwM5hDD7 z=q|zG#n*S=VVb)tEoXiAKWN$^<3ZCROYl8Q4SHNgp^9JL$wFVHx{xO<3-$M4V6r5B zYI#SjkyO};-V>IE2KXnmDq&f)C}=&EI~jclKx+ewDrh9XWg*M5_8Z!=oJYTeWf8w- z*s`39#15^-#346(jH?N40vYqNyIb6+ns>sy+{Sg>yLKJ2w~p3ZTQ_dlu&%PVHq@A? zZN0uRR$C`8>g(UQfHyX%{%DL)9)&$a^@(OneBu(n#LKG9Lt_IKbXe)bH8Y&n65J)6iupQD3-o$I^UE@Yi|DbXMd9cpPPND zvws#7(T&urfXU1Ja#cqdKv1?f8o|YGeV{8odaYFN6U;|20gC-;*8yPCltoWQWA7Ff zX{|f)5&EabG;p<+&l`8hMpe+ z_^8>c$2fXx0yWR&`p-j+?0?uU$>%`4b@$@8KY^EX1AHPmf%t^x8QW_`TQ3*pFEO$uN+B!!}Xs> z64`$llFa`mqom4`L=M{lk}RrPv&_+?OO|V*=s$g`RJbYSQDuc_5EWHkeO&)}RFVCc zp~}O#A<9xk4%-2$EKB)E9Bmf6wKRqNk3OAl<|dg(r$?8g(*W0h9-Up>D#_kYs*4dwb$U&LMZUA&#i?D$-7D#SG;NFObk~P+ys< zj-|6!Z=-bpo_@r=pvFYM+#0EkQ3lFp1vh1C_5F0*miFeI^lXUb=uE)MYjzU0Iip!m zDOM?Qk>G-s8a>gA!ENp;!ihqx(#M(1OC&y!LLU97_G_p&>9;TODq9G|+U2zjkC%vV zznW?8I#D?xinpR^`4Ghm&?-t?R4{K$`4c5a4?&9~&zD45ks$Bk1-VJY`cnL4^lQAO zU_UHZra8?j2__yVE^B-UGf?RaUqnB}T?%KL?bgTQt)J1!rh2Yw3*B(o(r>u+2K#0e z?ygk__o%t;QL@sXeAQ~QS;G|TO)Er8{Shn|$H@|i(!VPhb?n9wrH!RwV}$Dq)V~z2 z6S?_V=!A@Y5!I7RMI&SL#}BP1boqBdXx;c>T*AR*KF72!C}Q76Q%A(+igCEdwhmM$ z#-{F#zD5^-I0-Wc%0iShkwV2Wl#G$6A=v+vY%*Kk&Z)#uwlM1wAeMEbIe4eeEd3W; zb+9@*4*jnE8vDV(70vk;XxPgI0GXrsPNJSgqT}u@q(M1)qSU}dy=N3Bw)X9$}kV0@EX zKzT9#+pY!Tv6L z9=#vD?G>)cq6Yimt?5*p3@E_aws(1$phy!1pX=XvM2+zzAxVsVvW<%ae~>6&*hNxa zF3rzv1cu$a&dBPF38v9!hh;Pdzaa;m=*@C3B65s`)DOzvXU(qcd+FLw@<& zZi20b8NUMxZV>Odw(6s`KK*02)TxML2+gVWV^eLwilv%pMG4cj8%XN4YWgB?K%a71 zM@kZZBbw3}#RIcA_(B=)Y0+1$+`Q{b@;8w5Q;#kbwTQPUxP)g>t?vh@vZHFViHB-M zCwps^k;XuEq#`CDOjxh4c=i5^Qcn6$!wEt)em8*hLaO(hq7zp2nxbQk>5^n{#5Pp~ z_EGJu8cv6XX!q9;lRLBWM}Va!ztB{)pmVIdDA z$rb7fi&fajb%1HVs-|bk*_!#_UQI2i*q?I&+!&*sGdf)#+U1c;-{C^R8MK#xkhi%)} z0(zpPZTq2o!NV>GreWG-SHim|sr|oT*$V7w?+a*%LUwIHbi&#-Q()Y z>ex2y+T8#vWY?a`%)f+Pdot6!pn{Fj^l;j>ip6S%T}$D-oLzgZMK`1J4Y`Fo@p=Yt zCD8sF+5AO2k3xVN|CjmXM~+|d_KxA7nQg+r`MBo{oRO21fioqnfitCVPaC+|uCWYD z#Qz6@SJG6@y!A6|@2ZP(=Iz!eg8StWna-@8`EJylu>vO1>#jL z!~pS{Fp_UpMjP12l&#LIY}D&ny%(8SOcpt^^!)%E6f(Ns7M-w0*A%5Js};Fa5g1yv zo0ic%`a5BxI|p@=+bSir{~rVB%TfAEF!JFvy60G|W*FTR&dV9yb1b?UGi1mujBfAr z(7u{!?kcYwv|rFMv@?@T*jgXuoUJwDk+QX>gtfK0^ww?AyNtONhZ&^?nT;!i*`_@W zbN+vPlChe;HIfRvoJaDFfG#cPk;E@>PlY;8$=*g|M8=E}1a8(^6yDu6F^Pb!GP7nw z4qI%pkM)<0)ehjE4i?&jwTZsU_S#T&as)}TRa2OAd8C_=*BnO%?4f#X5KnZ%j!zt@ zBX)dsb);Ei_uBk(s%nkse>B`FRA)V)`wCg?n&^bJ*ruq!&YP-ht+dHHLs;e_j!(tF zYLauQP9n(obY^lT%<g~9Qjz%xHR;Sp{B64z z{P)8S&F5(6eTm`i40PcT@m_$ETs$Pn?rneOb{X9%cS`Rl5O`L%jp^h{@)BC<%N#esXlReK7LsoQz&ESJYWSWs>b7T(B6O_PN_R?Gqnw4hx%6_4%WP z_KT09OABB~or1YIP&HmSQ5za;j8^MoQ!@S9B7CSF93R0e4y~zst<{Qloo$6KxD2+;KGf zMAiIL3zuHAYu61|9UQ2MvvtIeyAax$z_Xs@GQve9{!>n+=DW&JwLYSAYV_u_-*Ur# z-awiKm-t@|VuiA76_~1G!#e|2T{etvKxOV+l6YYw&4y;X+lMvGilYLkELJq7YfE6< zASf==3T#88m1DFhfYKDBLP@&odYy*eOry_G>}Yk|iFp!Gg<(8Ui0xI{(_#a%RuQMjxY5q39ja zi%-cMN{E{0Do3AC9e_3GD~J+)$|o5dlvv9A8`Io1?KvT?FQTb63h^|K5gx0}hn`|$ zRnrHt_!j{v@X%NJ=G`w8x~~{X49mppOVUygnkz2u{Q`pXp8^OaVN_y6JXuI=%n5rM zfIKYH522RoB^P}fT3-apos3T6qOTDekLvp5XuVQ5cj3_YaAVNFxg*}q73DHD*zw=f z30%al8BXAG4vYh~OTzhEPSafH-RhLB^U}A(2M&9R5)G8d1`>SD%uko8(V-3kUNXmC z`-$#2c8(5{ERuI#gnCP;n026^Ymu@Sp#JTUi!l@!w%0U2(wK8!)rq?_QsoJ4{ijhE z!oqAZuunU)i$z0p3H6%J>~c)6Ov{tGx9_7@-FfEvwL%`9iLs`0=lKLqI!K8f!j=H8 zmL5T25I3IBRul?mpSubB7ueoJ*ctb)aMSA`yyfZ`F5^tdz0&FkZY;>>>)=d-Icg#k z60RoKaXfdZK32yOC@lHvjY09EJ)I8L&hd=&Z8$ONr#a#^J~dUX%CqH=>?gf2wwhXO z7I?bN;K}+YG2YxmC>j5cgU3UYBVxi>>^8)ceIpHA*TV7S@yV8aACfME9Kst*mA#FY znfi3PurnN!GaPAmhIF^lnc;)xV&k9c83N{Ekba`JZ*rtMkz#@B*dX0Pmr5|fAAQ}T zlhImLWTeObxah3EpOj^PKiUme5F`_K2Gyqnjfp$tn}@W$u8?JKJI*4gC@tXQW)4Z# zl+5TTApeuWJ5U1d6NPkHLlQ&_>RkHM!X$M3GeyH(VbW1mIfhs#647l(h+&8i8E`E1 z*+WC4?wK+$y|fLOj>8=+pX-c##pyBwskIeZSKpNuq1&@h2*Wk}1=Q2BXmk)9NJsB1 zQ`e0v;*zg>4|J(t;$S#gf>Hhf&=hk_5(=@~0TDdo-TG`L z?k|gv%;1JkggiVDpt0|Ts4KvVM;3dC&1EgU*3bqVtYZ8kzoE((nX}gT8bFq7jjz)$ zkt|aD%3fet8D5VlPS`0+LW0G`pbi#b{93}G= zuFWE+Lu-D8Ww@S!zC^6?TBf;f7N$0%$z}Y%uzY8Y(lq zKpPP*==bM0nA740xtV@zEm zHbLjEaHPMwAG^AgjnCNS4NNm(pEDa8lt=$Tupvd20x`^MN6=IY6sv&N$1P50#8iJ1 z{TDRVUn5X9MPH(S7*l<+x!|sC_BJAA`l*JWQ3s?kAQ=UYMgCksXl;AE)bC$7`M#b1 zgBpQC7y^idg+J;C=}DKc@V^%jWvi(i3*U{A%Uk#dFksTctBGmbuBbw`T_KErut65) z+DZ{qb^7~BV7jCX)LtL4NI}Ez4De;NDq;AwNN5?(os3?8Yuy9}W^`mx!@mvWlZO8a z`Xvm%_%*|Zf9(LW54LK9dk~ckuEAHaJASr@PB;NQ-b&Q%ds?o*ZNO@=P#5b8JjOJS z?>hYJaTg0|hoIXnCckf4?0zzqN;n6RnaH%A1B;WWPQ50agB$T}I?h2RBRDRC99Osq zyVS&jF2Z??t;c#@AQ49qMb;PEsX-PQ;~%VN+6e!EZ)H#({V74!6Fp4)ai)4MHBXT(K#G5Rm)BD{z|*%UpW{$X5%&=ojmP5%b!g2cqG>Gdby*6Xj3C*}^B zp|KFFw=pv*VfWv{H1}3)*>C*42TjY{{U@VU((W^p)INYhJNW=_3V^B@SW}9cye`~C zn|UI0K{M~b^a8XhVdgbkYiTTG=CytS6EfPasF{BVkV-TEBl;!Gy!bW4X8wHVto5Fu z#zgpZ&uZ4zC%Wl`!C&ne{KNpgjlI#j%K7@aCGP;rv5C4mCZGE5i|YIzN@mg2_jPfp z81)>}RebMZ@e0(6wl5E5Dsb<;dDJD*C@_?Gv}g{B1Jl&+((u!U>X#JG+UAQ(^Dsp zEc-+!VbG)l^#^E(={Qg;a=FCuqU7Mh;vYqDh{KVA_YW?(2K)8&o`DrYoDFF8_Y2f9&lue&q8cQ%AkxyiKPu=-S5;j}V zwEOXN^rZq_x6)6+)7A@&uMkIeh9<`b1i#`47b1qp7)gvvXSQ%+Yj1s|-Z~^tA&D!( zI-n@_^z@;mWgY3tFkAF|g0?4mt^!)KvTvna)=A8m94>aoS8W?;O(Lu1U>!*_%}tl4 zzLAA6z{tp<%5Zf*y_6=^D^fxC_SMMFCy7C zO>Y;SU!17XA(TOPg8FW5f4{t9Td9c~Lo%&CDX&d!b?0caHao!d{x*RdZ@EHewZgZ8 z--#}gYAnG_`m7d>CZutJ!GWPxY`-yZ6_!pq5oLKbn7cdPsbAi>!QLF~qjNxeTCJvj z5v19_McgzTz_u=K8d7m(*RGrNeG?ql#8yCM`%bmEH-`$NPZN46$mE!fbBc|~*pmlU zZ(x~aDG)6?h}Gkl7^)cK5`5j`^Gs`(ra89dJ80_Imbryq_ux#+>A4g!2~(9;riTtb zBcKL$&MitV%YB8Lm~jfTB!TwH07A)iQul@b9aUvmF_Lqm^H2xeTd9xcI7l9x&fwU= z+6Z0(kXb3rn^2Z*y9Kj3rtF4Jk01tcrC@cD5f~Xb{=cL|fy&1wrks#~6Hzm%mx@ck zaZKxi60j0YJ0bz6xe}0^tn#@Ok6cT~Cl?Etftht4{|AU~(N?mZ8L_Y=5ReN3hz&?W z_E^#KqmMo+>cRg|7ve_!CXF2uL2DHpM!#B^UZiMgz!R$t+#!6n${qEAJ0MB)PJ_1^ zsmt7LIGH~|C-lkaHx7&;FN~C*WpSsvGkPi70dxWQN76qYyM8?uQ5hdX5)7Z?#19 zuk{Ba5#xa=xR;lG%SD{0E>(|+P9Tiw7cNwh2^Pm~q?LU-;ZCkCGt;F%gPDiXfZ^vX zp2{>Yr~;pdrj80Mcn{UbWwe-15t;kre7bbS<;Q}{4Z>3i)l3PS)xeaVxeM|fU?wA& zago{zDpzo`^%p60%27}cpq+S3?O>At6$)+lL^q47;UpmQ)wYz@Xy$J-bKzcov;dGw z%0GmvC8YcuqJjwf>`yGCXdO)|mq=tZZqe!n{J3Zfkm9ohdI_!D6Meb>UKH^NFC8YH zdc0Ev6Ep$6Zw3p3i2qXnSVhF25GIPN>P3#{A_1|=&YY5U>hz0B-r_Ur{%@nbT`-+8G_^O^?(7oqtuD?Rc=^T*8EiHibeqcnL5tAxC=Cp$26xexXy^h@l6iC;6k4|etlt{K(B zyI-fWyI-PlC-%JjhmaLaLah87C()8sxFjq+hc0>j$*ur|S{P95rYV@sbp95Ex@WS- zG>@Nhe~nD&7di;QTTdKK_^`)KXmFz5QUk`_G1 z?a};hhpDkivb5!uBcBhKpZ1e_A7#vNyL`Ow5BGN`0CH?*9GRLLIuAFRCV*Ol}rN| z{T6+@@rvit-{z%y;&96Q_fr7@6eGJrHl?RzBhgGg&Z(qEa+g#gMbs1hD1aTzL9d62 zNeX(jUo6n8@@TarXoZmrvOdDCO_Sl-v_~5)c?c_r9FLaDrAK=y{SqFn_%*{G?fRiw zYhYM!C4@cOGg;5p>!cGN?irp_;&tC!N6u|?q|3cv9d>tj0kp6uBWZKr%tBlzpPQnS@i5bfXOyCS#8w-thslK&&na)Dv zLje{cdv6yS9|+V=FEk9SnF|e5qwqpw7LoZKhRn`d;|fH?#RJ2Xri@;F8mXC6i0Ra% zLlccr;q(t81#o>#Wa(0SP_*u3`mzd)FNV|fwIqw!Xlkj{r9Y&8r23z)^LqN~^S>FE zD6wVqeWtmqqH@lS{1Q#ehg08%R@R-BTSl3wOTUWBY8^)y6)WZC6`o=SEpb*2hAvh| zW~{0s2L#J(%mS;^yRxVJC~X#9!jRfkq5kEl3a?cf>+nkJ-1=apw?5V~+p#(Y?2he} z0ehs;xPwkWDjD$iVRJ2cUjSrxRpYY(O-3!P){0KZQ>gS>K@&cXDzc)qSf4G%Y`6`H zD+n=Cdgh=?qPy)3xFsa#a;CXUpd87$9!)zVIbvF5BWMFcv1%9i++Z=awQ5S(g`+7w zjW+eN7{iKMZZ!pm>#B$3ttUD+fL3A^wI4@(UvTkwf~eY|Ajne-fT%?CDX1C}&ESzo zFh4P|Jy)^e`bO*O#w5-(ss#4t9V0`s1Bg}8$;Tn8rp=j=9ND8U+RKb-)V&K&9+J4g zd@zI;^7yI(cu-RP@<7#T1We-N^kUY4nX70-_~a!59?XrE0#mx0q#%e~gO#{geaHok zP);uXB7i}X3w0jxg`%o=0x`uxkGwkXQ4WfMj@#q4*xkQ#5+}xy$V$GDP}O`^h_l*x zljFex(^b6nxjVeFrGO@<)LRPtl7E+P+81p zN>>K3Y#A(66HG+CmSdv%0o0|KDA#e&uWdZ90Bb7WfedqpeFt;!N-x-eV#<}Ba65Mu zn7Z;F9!+>H?$|GPeYR@z4(My+$AclViY=+LYJkMG1c|d_t{|N_6}Pv*JQXo$o*gEJ zcZf<6#QSDuEnJzW6#!NdCikJluNmHlT8&3Tn&IsyK8-K6?ZmE=|JZ_rNbOaW+h_Wj;x$da zY@O%FR~{ zsknZvcttTx8ImPzIe<|LYiE~t|6V#v1_Qv_>E4jJn+7)sZ z?DodGK<)JQhJiJ6d&ATyyuEScse6W^0OH*?=ySQV6M_57YFR{gnvk`P4l)f)PD~)D zD^4hW zXjTIoI3xAZx_moDzXeh=d9}CQu!Bx%+3g*@&)(mSt4Fxu-bCnvoN!=c?;+I0c`o_b zmcH?h8}2PU)+w(0(~Zk+b<0tA)Q2naB0E5{ze11H$$*DLme~y`T~_Zahf2F#DcusB zum^Mn+gd+&nU2wGjB==HciA#0Sic`l%lo%0(aPE8dM<7Q z|C!wEG7AFIeH6A=qCofH750|Jm$c2l4*90hiG{^d^3-h6kY_%;R4UH}0u)J??Uc_z zT3NC{iq+Ti8R{6~2Cu$9n`vE;wtt1D4sDBFea|K>GtoREcPWix)M>2081!40CToAv z;hx(9h#*+#T^X%#4e!x?^>l8(0y~<8&WwIE43^%>{1B=FD(NYPcQPO51;=PJBoWn8 zhS1o`!xTgOa)BAE7~+G0s%{LiVO3_<#!!dvZtiB97qrxO zps8c23*Jxn)mz}Ok+P&q9gNDWIlC>^qxZv+b1LWsPsmR9M2`;4-O*0OFr~OVcXWNt z(^~xk7mDN?o%k06`LxgFTO>peP_OAw z>IeRBvz7|ddlw28yHipXyt@VSRRvK7J8Ay*>F_mREE$N*y=Cwv(IE0O%x=}A9KF@r z1mO=n#P$DVT#cx@%uP!EPJDy~k^K+s+?L)ne0V0=edPRc-R7l;a+ArU$H&Ui<3XVFsum`9S|mm|qiuKzre$o|WaWCb@wS(3sz+k>o90 z|9K>l{g)xhd$}RXl0**M0g{}=#%Va}9G9%A36(DJY4#az!g)0NWI39Blj}c^X0rb> zH2VoRL|K~2VLL#xrG5~NBi2GwMN`T7;*)3L&r5m=^F)Kf)~JW;KaV`J|1#t`n;W7m zdE~GiAkPU*Op~M0Qoo)iRPwV=t;@Kn<_Xi5a@4wx>pzcLvi~yFdK@=IS!&5)J3y_4 zCfLl;XfBm%%E&)_dNjGoa(=1`5pHSSNi+$p;z^=roX?h8%Y-lN4is-#l-{e z)V9B$_CEUiE4>njL)FQV)*5lLSLS2v?-wyh)EKW$RIzo7=Nt&8Zoo7?(b!)fteH#h z%i_zY3%cF9=s;hf&O-_6cxkiaRE7GSqpzr9{N) z%nYoR%{m{db-s5`{D6(fa;=`t6BcbGR`%f)n*3 zv;Uw}bk**xOiNc&^NKu=-&e6?jY7!l^PD`QpA@jkc zv2e$2_I0mad((Jrpgwenl+<3lLP}O+NUBLlSG(>J$gd;?phc z44xb=3{(UuHi3y;v+ipI$dJUjW<)N+e_3%pq|t;1=(TgMuxQmpbS6{04Kpw2DB5y; z5x^&qn4&lR=q5srI#NMIw7>|}cQZ5b5{J+p%`|s4XUjMKURUL7~b%&mau zVwZmfDl@ZjcrfVZY{L|C+?*?!8J1wYM=;F`GTu%!?F{3wZjQ%qnQl&JqB z*c2@^GqVuH&PUK()wQ?qP0nK=gG;6GB_f6lp3FfN+p(D1SD2}l&^-?_%?s+D@1bdD z6ug*L!k;+Nq6&8pmBhE=LuTwNpeVtgNXbD?i3XqA7C%v=N@;a7C8r=aH2aV#TMxg_uSF>_Q@Rhv95CrhH%cWU!(^Zc4072`g5nbQKw&JkGI#6RfJ>DJL4k0YsM+ zjWcOiq0&oHU?UjfQ%mnevceF&_41(rn1w{){h||A6jYHFh2qig&!SgtR+#Ab=NZUL z2*Q6d%?k>`H_)^*f{+{iJ{5dtFq@JCQ^LxDDa9+Wa=VyLjmRzQK5L)pk=S&x8n+z3 zzbAmtlKj4dm>X`^b(GqJs4tf>+mPH22W#L>%5poY%1(3QX0&>+J~}x{wKi^G#iGF7 zqZ5AJ0XOSd(FrRUrYI*(iK^3%@T|kgIl|M&%&vs+tYw-P6rPLG^e_m|3NW!jF}J+2 zg=?%lh!vkHVI|9yUf2#VTC3Amb2X`QlDRlQtdf%XLUF;xe-BB1B4KPooirwJObx3d zakNe3k8C!p`)Yj^b(~Evkm$vg=H$Qta@`G0jvxyst&`Suw}xx-44bJ(M@@$5G2|*< zXhGTyeNYg6@2`$b)_55gRrSstdl6?WfSE$ZFA|-wGOmiO{F+ci#`8;0MPEv4ndg_D z&VXA&Xzym47Zlp(plN4>)_;CUp59mmwl-Ky89GzKilZrgI$5$K&WBdMX9qkAv*i@V zz5t_?R2cWUR~9S1LpU}kUs8iQ&__|_p6S>mHi#$4ZZ~UK;^DY3RLX%W-Vs-cdG}Ta z?x2^(#|CkZ6?%q_4eH^@SbzU;vGUw9ETMC#-f+MOM2k)%&Re#ayK3Gw4l0K2KCin7+?3 zAeYcEpJtjD)G%L1)6QrZH8C)$dqV6iNP@v-O2?QIR>zpqm(F62HM|$kW+)XE%ITwj z2(VQ-eRS&^andDu4Ybm`ZDgczpfK2%@8dE>3l|9XPEzbyTrdzm(%u@}r`o~sk@`Sgq&62IbVHNUEadp>Dmcws zn>bL1y9N~quT9R;>5wiOKKa?q%jvLS3(Bnio{p7ocfp)OC+O^^%-wLV>S? z>M*EJDR5K5DsWY5UIw`JeyD)MCfq6sxM6`SN9yF4B*g*OeP)Z$7l*iQWl(g8w2}}j zI?C@_KWr4VVs|(P1;bxQs({Z^+glWa%xSvEP`7f&JESrn%jgKBVuFe0Z)RE-)Gz~R z>S&l^iRQVB1FN)x$&kCLgrZrk@Gg!=K5O;}rNe}?396an(z}Xt>5~~gE6$})U|JXC z(m$IOTzaXvrr4fW=CIYYx|umXcy)0;cnw3z;(YK*rgcF+c+0HdgX0-%X*}SVD`lt_ zI!|LRLX)B-&x#BbF7p2#dA?0*))TT^dFLIV>^e5ZYj&MwFWSv=iFac*(u+vxlt#^URS}%$yU8Oq6+lxo$W!bM^(89^bONNk3)?~@ix~) zZG40-p3>SGt4z8(kK3~YcwDN56{9#zg*ELS(;?na#J+=Cj1J=I?EzZ+Vuzusf$OW# z^U>-OKCSD!4-D6687xOI>wA2v$V}c8iKM^GAcN-6q&m$d3bE8ij&Q7GC%Vl7nwlm( zd;$>bV63b~#L~~4lV1F8W*5Is3MA#iIbVG4Kjya`SnmEouo1i5HAP*L8yr)jzkpv= zExRZ#^}@nwn1h<9c?Qa#<>|~Ujm{6huy6{~+?CUu<7MZfspFy+d|`p}QM2E1l{+LC zT0G)->^k?xA^l}bEtbzrg&vYJ%EcZox9C1DS>KXZ=+-M3#FfDNWlZyec)zY=ct2UM z4N`MWEDEv-5N#!tF>Ic`Uhk_!4*i4Fmt2@F^=l`PKg3|K1oHPX%?l!b98EjJ^vgB! z6En?2J-3r@)KDraWJ=hmkSeuNp?hHBwpnFQHi@)+eq*K%~U*O<;e&Zv>I^#)NlHU`S!5AZCjp zhtDAq;zK5-49`obA1R6%hUc#sAu1t*f5|j2D1)y>)6U3X$ndOJ7!|>g&FwL~L$r2# z$fxVsg+z*pgMGl#c&RIXy~!g%A7p4{NKH{NlIf}BazbZtcpuZcAf-Rs<*f$GHA)VxnYgBUSi@H?Z* z7rXY#&QUnD-Kdsau^ZkAhPu0$)&*JTL^O5OdHbR6)mq5&taPrhFZE5h#Za6qVQA)O z!a0$%|AIPLOop}{&I@3Zf)^^40U3N@o{mj87Y^{Lq9F9gr(F{bdmy)M8<3|iy(XQQ z!ZA704dmAri^-`7LvBn?*U5{?={j6Y4rTs&{qYQfLNU3=F>O5I%81F`f_8oc?SiC) zyWQl*gjZm2)=Zdi5#>Bm0Ro6yPg7+R@PuwM!2=acQ z=~~#6H!_nm_9X0!yq0P1GHXs?>K$n67?f%FBJ91#hk@e_X1Nu)ElfJnri5LQt5UNf zkB4~fE#(mS?9CY^yXIWZk7v0y&Z+^Fe2UnCUwKa3h50h|EmhSRZopEX;12DQB@E3v=)(LlfKA7RA^?SzO4s6by#7w=3IOQW%#$x_D8_wyrV*2DTssZMjhQ8l{`BAw<@wW z`D7jc)GHk|RW6u5Ks1*+(}cNHb*mJFrLHm4FlsYwsjEzLk14wluNiC%OhsK-@5Z!W zH`o}h*2kuz2AVp0a~hU9HN`|2{St7e!E`E8Zc13YY)X3zbCYp};^J)-gsu$@>ARlj zngH@i&6bd)Ju(xTx_BxQ5$L^Zee+b+fEcO!w3$~=6Nex!=;Lpr>fC9HS@oX=g@Q+4 z9hhe!QG2=QgcUVYlye_d)v@AOBCo-FFtnN=o7dod%=}8o;QdVVf-?BeXxbSW%+G7E z75r_m%(>0BFzGg%5>`A_sdbw#vR6}!Gpi17wAa`$YxG?rbWikc`p5Bx3%{?hMWLyP z=VBx(Cxl_^WQQ=J~DVyt3Gf?ZDL(T{n*i}jqXk= zWYa}RC102fW*EBn`f1PXqnAo$*$+M^to`4#59?C3kXAlNbi!(7Q*>+sJJy4VQ$?Vr zYG*a|O6@qAePq0j3wM-k2Q!{Mls|_Bt&AhzhHuG}Beqoz=R$v|}o0;2XbSKU)WAwi-kk)WSR;7HS zfv`mM7+LkzG6UkR_)DMWhMvbVx;NVGe2cqotm5{lNsFrgG(0Vg!}khIT%|<)Hqor( zDN)y5vuoE4R~;OviG-+?_3JA)nam_MU%*fm2>|r1f14ay&fE74mK*!&^{h3)6921@ zjd_2_cNT~ZR4&wG0#)50LVV2lp(*Z62)#Tu741Gw#T;5yTsUq`#V2Xi>%*Gss^BU; zHWmdn;is@V)s&u=hhl?~IJcS_%~giEG9ga9|E>VHsZhYLMb-Q~pVwU7nAls#!Td4e z8#+5a*ud52mP|!MyJ)xrK91w#_;0k{q$|rJVFj{IAi9QPKeU$5SH~N^GNWpqT4=u* z>he=`Dk_)Yr)8R-ESzCpdYAwxiG zYU{cy_&>T_fy}db(+f8i_&Z0gpO?Z$A9%^oLRbXTKHrmEeX76nK?H3-SC2toc#r;qcm|dP<1+z zWA45up$*GVLx7bfKc;jpF^OG1#PV-&G}Ul9+TZvp_=?qw6P@J7c=UOl0Ku-Um7a=L(|;7^UHWpI@)Ytc2ciURD!- z+Yy9lf2u>XN@72HKXn`uoWd`oe5*rXE-}a_Eo^ZSCkld)FX`{6Q^i7uTNG#BE&FAM z;9r)q7tS1*LS`P;v5HHbCSLSM5LE6DW}GHof*Q$%V~Ie^LZ-R5e9hh$>_OAc#J0@7 zpfbJ5TnO@JOOX64Xpdp=S%MrlG0h8-quMcY6ug3#B1Y<* zPSU9fFIGpOK$E(~oquY9klUq>3H_qL5?IBADB#lJn9%$iYpuzNF%uLrfBW9|ivy&m zsjH~ai%>Nb6>|3eP9=9&ExWM6JlV6$56RR|_)tMgpruptdJ^U4c0( z!qA*MOqfNIFybwGjR^0XnYr+xK2`u&MWBxoCIVqQhd{>A3d3vGc;yWDS82>#!~Jz; z0wr|Qmzn0SZ02lA{SZwLkKw)seE0>z1o$wZNJMn(vw=yG)F}=mqL$*oeBE@Tj4bQN zxU}z(-{@^PDuo%o^QT(U)N5JSCjsk~@v1Jm8rK-~FX2Vo@Q|t~kFKC!rysT8sOU=b zYdd~X{*I_cgONPr+`^ZLp|2m_jDey-eD|Z^!@WK$H--KTZLG_n@iB^anS$c?TT7ze_G|S+v>szsN#c5=*AuXBNCEq1e2M2P4xNhrj%s}p zq8z=I3Qo)6HE|~95NZu?nk{6%_GqAbgQ6PL(Axo>uZDUZo7#03j`ue1k`jYx8s79k zByDJN4Dt^}fZtVT;V?|ER@D<6F?@>Yeua>*Rp#$AmBcNiK_-#7rj`)87WxX=pOsRh zV&ppmwTHJ3Uj~sJKH0P|us-72qxnPfriN16mT{6wntFZ!?#lTz|IGr;Lkbn>+8zhk zxJznoLfu-az1Jc$t$64S%P^G~0x5Wbk1AnVN3EB|i=3twQ~qb*;rVJDk_H#6s(XV~`F8@V?=FbdcZhnBwyPYh zP6J$v{0?;pG!u-jIV?=0c^-{&n?=e`)7lEcWekJguvhL==lE$40$%B-eUW|%KTZ6~ z_S2Lkr<_99Gb0PHpnMZKcfwVQ{*iu?`C_3|2l0J_D4faf86dxJfE2$tAn$gZNjpxw znBFiLS8mpnFl+>H>br6+Ns{jaNuG4}90mRG$A&lWeA7~h^*fBBmWMQk@7EvV<5jQ+ zn@japO&o30yw4RG4vc<-iD9^3(LVxNoZFDV@bJ6Q;^(G?0PsBkFgn3;4xqQleamv8 zqtj7W+>wY@(yzCW5nqL0>{OyNsN_`blrobg!XJ-HX~^DBkWJ6IKRZ2OrFUQi$<`@_ zxq=EleI9@*SKcB}EkJ@^^oeOOSm!zJlCWtG(0>}L3!8HG(M3t_dvVHvKEpJRpVX0+ zNL{dQ=0Zdjr%^B^9n-rVzbRgzIYpzue(;fSk(mX@_q|a}Z24^bkFOoP6~$9f47Rff zi7upGg}dxI^qeFrkBckvA-y61X$i-kgVbuQXazaU5%E>h>weg7>IThp$o;fb_TAm3hC$(DHN5|Anbg|c~{LQ;xrmBDQ?w2PT7)nOF z36h@ZHU*IO2>n%BQr*IfJ@PUp5P7RXq~k#Mi#5n-1CQ?Dg$p=w$lbZGz8^=akaJT$ z5JCAeX>mfQL^g z9jniUtCjD7U*N1nenge)irM6{Da^5NRe=ssc0C3gRtn|2q2`eHWTGMA6Gq) z#8Mzd2~am0f6PoO*K+Bln8tza1W5HI7A~8TI;@eLP`ilg!?_S4{cm7cxl|OtxK)_q zwl@9!_Slw$n_=5u5Rwerib{qGf^C15OM+5t`#+{DO{QbpXWPY~@K02SA-3%cvaP4j zH0zdaW)K%0dyHV;CG=0G$h#brVBe*fT(@eRL{XxdW?zj9%f3Kv8|=Fp!%FrQzh(vd z&Q}(N;opl1OOk(0Ekg&vz*};OP>O*!o31nipOBobhMK#Nw znN{(dcfUj#TSyjnr(kJDTpcIoHGF@pVUEV&Eo(Kx>R~?3!^bE;+A$JWS>a#Ly3O1Fl zok39aA_4%H5zWL(vMFsaJt64>2z0?q7R`w9EFO+Qd8^zi>0R6 z0q)5{T-s8c3}SyoLBa~5yZL$wojA*0EJ6BCOVwbd?prisPxK9gf|62qDjI*)LVc5S zR}*9+q6V*Y&c!|>I7yKj+hfVC-d~`9mmtitS|8l|8G&Nf2WS%xY>G{BDy_vPz+bsS7HtJbH!N=^=^ zHt@7uTGoPw@LQ^V#)al79_~okp8y$h{dg_?5?hVp7iThrD(%dXur>9;!aDzSyrcL(*I!{x=b$5tO`+#s&p=y3&;Je6+|@ogdj9Qb z+95qp(@N<1GePNB2Y^fHd1~_Va1*WPiFir%=}tYZ=V^d@(TY?+h(nZ~*UVZ<&uf{q ztOecBhMxa6V3m6QJM>HFdGTw8_53Bswv9{H17c0FXQZ|t`(WnqZ(2EdzP>qvt5%EtT!QC8X*Tg@mrVOd_Rh_9(R4a+iRy3&^Ad{;do3rE|Q z<+MB`rtQgEaP{*QG(mfEqfJ()Q7KLb$dfbJyy-)hE4*7sE8s2tBAD2xEB050aB6zA zfujlaG5j1&9A7`DSl?D1#zk9ThHo|amWv+i_{Yn6Xyx+sBhER2=snblWRa!*+$>On zQQn7&E;-5C7#$sa4B>vJwW}&}RP;ZisiUHcJ%+%Yk4erip`O<%l!|jQ%QFaTgeT6b z!4SsRbMCYg>YhM&GZ93r2WG}=_(6aYBu(lz>URm0Y_H+?>*~$cZQ6C9&?6R~#7gGo zNAw%&0iSx|1>|JH{+)oy;oo#X(|0cB%`;rfgevEwG?P`s3FzlA&0V79@ai%&b$GR4 z0(y>Fxlm;v*h8UeS;agHCyqyfG~EKq!XtJz=M zquj~p;{#gPTV{pj@mm)1F0KLjq<67{ehKeF{F-6!;sSXxM`l$ly0ASbC!p!{*9jkE zk=GyO+27LY2eOn6@oE}nDGbP7s+GBxDz%1vyy+^w=Wv{iXS|Pr2{?p!r@q?4>3F(I zXC0^Lu>h~lCG<*WC>Qx8WAfm)_OUiV#%@#i2>LoA%iXx#95p8yo&L?D`AmM%>{T`7 zjqalHd!i>8vXqR%(xYz&>>Orfwfr3P?@}pewfyGBYy;oGGi{rrgN74I$wxyW8~6|! zOB?tj`Xy|j_%*{eaD&yTxod2hCAM`4$2iW;v4FO>P8h(`8MW+=Kw=)b*%ji28qSJ7 z0^ocxno}6Y`CXDbG`W4Db-9bZCN{@3pB=^!mq0!DAns0J3JS~pGk5OHq4jX`>}ks#`c&dKwhKbx;bEB~O53A7Kwc_bqC=^v>;`!4DNdc}GKk^bbbh4ohowCmnXw}~Lm?aWL} z5GU*vJeFzhvPOzJWd0 zUuw`hnyM7<^q{G0G?ItD(I_9Sj<5iZ9SR_M)YVnNfsK4qw3 z+6iqHq&uL;#p^?r>V7<;A<}_q_woExD`DQV+ZnV+Um?hPqAw``!%U}?<^%*px8Gy5gle<}UkZ zc6Ao35g>!}M5TluuvB#EYn>8)KsVFewMRLAz{zM@-VgX3P@ePy)WnEa$@VL%knL9p zjB2Ge#DEHa`4)N8^?=*PF|I0-pC;J68LWMR+t zs;LFtgtWnjo1nxX&r#UOI|_L%4f3NG5_C8`p@7sH#E%>=UC*< zh_moI^k2|fcnyKFDS9RSGaYB)UDQEwXW@PUVJTWwI13+Sn!6m7 z<1BmvP0KqAFNqEoWgB za61iW;WX3yh&c-y4UDs(i+~|=7Sx}{UI}NR&&*)j&Vofow4QoRI19`1t<%nenv&xz z$dQFTJ6TOF=qzkb8GVW=$ee0&gxui5#i`~pxDf8ZkRsYau=YfcR3K}8!w7Xy+;tce5SDTs4yqBdT!$x!E`1g# z;X3SRn!6m7<2pPYP0PCuSD;nEbx>3x*FhnScO7J5uC*1egVSFWn6BeG5Q`La9h?Df zL8}t3gBA%b%DI!#u7g%tU|>dt7IhuoON0;^soqDwgzF%FgQyH&dLqK}UBuXloaRR!3 zntn3lbG>z{8j?+CoDXCwp|J&3dOG2hf6F;grjgQk{=%ZfXCqT{O!N3DhhyVPN>(3- zglQ!;UT)^WyPPGG8e5b^CsD6yCz$7QaW-IC%oiG=6%O+10JJ3%8*|WF%^Cdxl3vZvK6ON8>m20PyA-4 zxyxlap7;QomiNRjMl0!wlUm>t9AAqPERe_*C+vxfTZufzMsSz}$4QJ^Jw{%tJ3De@ zDF2T$pk-q}!SQizBsf-LKJ668UO!$^&}6#gP?BTS6JiK$r8&0EWi~vq2yHjR8<_-^ z==g3y<*?V2o#=RqSVqYSo9Os2s6wW9Tk8Dj3rtsub)(@%C>f^{>J9eCX*RrRbbtG1W)cn5}++E)CU z6|9<_^msQRNoiZ$uEVPi35R-5E(uC$+uKZ6no-+HdaM}rL{Ruv)nSNH*;K}sQ?2uc z`2N}M7Eyw$1*^*1mQ@cB5IxbPnOsR$rNqY*W+H`HRnOb9YI})~V+<=Yd&3Kmuz-So$& zxwoz}i`J)ubAGDCq$foG$(SI^3k#zc1GLp{_C}s(cR{qVZ zbjA?7Ad0?6ZHev78EW&%ze{B*vUjR~%s^WrhVtJ`b9b^iF_hn+X=h?6US1JpGAP~f z4+6j?LLk)SJK-k!q!SUZ;C7`0)2Gm?#CD}-R;^imlVRe zhz-m2^h<15ieH@Z5DK+3DUi?0Oo7a4e?IZOR$*KkZ0$srUW+Kn~KAv1^s1SDUbilrmOhw!*RBNJ5hplEO}oRdHv}@% zmWNU)Kd3Mfv^<<$!JZFwZMLa1*Bi2yA!qbk8nq|-wIM@E>q9A%e_N zv@_Pon;w}My1S{Y5+x&E82~b2m8i+7;U?ND5mC!oB^sa$tx8xW&BR)#6%N~^S&ehI52e$B8|I$vqNfMIgdH>}P(pl227^i9)>d`%7cY(IC?6BTP{ zTKo3Pl`i%?+yT>kR@kgm>ZbX|o=FpK{x)h~Sn+3>X>dBflohuaiSDId6E`p>@GWdc zlS!Lw>@J@d9CIoM7YD#vYIZ?$dI5#zuvt(a+lLLEYO7Km8EG77Rt_~L@yL2bO9*Yf zt7V?Cvh6fAG>BeH5cWi`QGkY-QEAax!E^%0ud+Cv5yO8!`Y*Wb{CfgrQ}lNFhq--` z8)$rh8u(l24& z#jhDQ?-$q{e#I^Pxw#hJ_L#n2S$_SwiZ$}?7}K)z=K|Z=5lUCMSUZ1~X&yiAh^qD|Cm!r-sOx9J%CAYV8(Uyd*AQAJHKX!E_S zi#B*GaGjN@(MtfO+K6y2-^!pqdNe`R6Fo`+r}a;^)2Z$JEMYo<+UqQ8XT;PGqW^-X zzDl5MigwdKjHxe?t+7R2_=aD9@(sWK3d7GNGBl(XQg#=6?_U5>A2m6> zKn^#J>x}c379|_&)*Wq{$9EnMx2`VoG4v@?%BzBRJFhv#3pBO$`BMAAu&gjGCmP6k z2d=~gMvH{#1nM>IT568W5+VW7nE{AOTvFs9vKlM;JtVKROQ|m@t_GMSL+X;^5h1&9 zqyC`uN6@z1|#XObk}^_Jw%!tG|L*%=DM)-hn>x^-6hsuwUg7k+CXz$>}7v zN4r^(RRLP>(gc<5i7cDdQi3En*!P{Trp7W5IZsrwLkbqUhG^qF#3JnH@Naa!<3sBQ zkQS)v=Q}1^ei$MI*tRpxUCo{2FWrcy<^842XeIq6;wpK^O-+of1bn0;qgDie5v9b9 zy1B$07Spl(JD--PWHJ*&))9=P$a-9o`RurY!eas`f4x(}BaWEn1u1+GO*=#3^c)qj zqd`K1%tm9dzraYJQQ)!t#!$g3x~yA_&M+6#h;Um#X!B@WymxzTyf!vSQEYl@0MY6L z)kFBV-mEnCMzw(!{#I`h)CSj8nhhL4ZVZWv=A<#ot7F~6)%~?fwX(lDGAXL`_g~)_ ztM&I=Rr1&w8_RM|JcEOP054KF)Q-QWv*HDM&e|f+B@|fT1Y7?<_TD_suAf4+#(mTg6}O)| z?)#wPHli|aGdjLMXVh^U=lwoa_0)FioI2+&N#4)rcZKBxXI8OQ0p2N#E_YH@$y|Nq#mX0(-G)z1qc+Wa zKr~G}Y|TEM`XzEDNpPG<_j=(dU!eqTI#po_olgC%$}kv^Snv{c z9PTOcgxWaCPpR!(mlxM;>H)Oqu57Y&?3olgnc|XEJ6WzPSJGAKwCPe^kwUJ@^){~B+-cJ@P^@%S@oS%OReg?>fYaT3 zcsW@~!l_QB+d<&zmAQ>j3QsT9S+TP=bJ|onE1fpINM#sv*2VV0Jev#IL9-KRV)~itwgJ5GFGKt9 zxALy3+wg($831%*fc=L3M?J}m)U$yel39f#f!jP64Eu-LmI%HAk z716QbV^pG9`z(Ark+_%KKq2IP6xn02y ziRp;nU*aN3uQbpfrGaww?YcyGA1lj$8cn;UribC5$avV-^x(LNtEt=h{1|_wtkmxd z)PI>wsvP9*RD1Q5Z`b)7s5@@hGF;uYxw@VAm7Bw>XOo%8*&nec{}X-+fSsu%tto;o zH0SvNBkAe0nPa=xP_dcwqvr;sZM)^nk6s2*YxZoqD5r7Ycx_v4*Vxct-(Y>}Uh#fs zb$n#%-sDH9R}z{Y)fGdB5{t-+otB_>XGQcQ5xT`oiO?Cn)8iuSHK&TC`TgflIay{-Lc(qT9nesP7Dr^sVXaK}HW2~u3Ru8# z393=1OVk6>1zqB9h}te8%4xb>r2jl;6r z%eDS%kh8M>e5Y|!CVy?fXvIzbs(^GslfMJM)t+r z+!KZ1>qM^QA$WlW!IKlU33awdJ4W(NWSqueehLqpMHoz?UXS~3pq@_i=YsIJ1JVVX z{|SiN&EGT#o0@q&>{#@me~u{Vp>PEvUyF-y%YRuU-Iq~#_Ck#V#ZmY`2>Ahz;}f|k zJTo9&&?gRqsO=M-M`7}jX+q&_6jtwbXDg1vy~w#33afo2c!#{d;>(=V)A?x zHg?X%NgIW!FYXtqn1#Z!FXranDheO0P}po;PT}x2D4fP&ehMGU-o<=VpstP!{$GuULD_^g5p0x-!v5SQ@Ge{E$hX^ ze+$&qae!PT{!2i*paaZ0*mZ!Wk=Ux52gJ+KlK&mi&;w$+#Nl^w5eDMlilqB85T6J$ zmj>dKAk=(Nye1%B&?!#$oTBqUOg^$wD4Y$%>U{wqeqh>um_NgR{tV$J6j2P3uL)Ss z>5#c3cx6DkpzXInbPpi1F?cR!+K5b@az&(K79z_|nVWm7h&)#za&Ug40aepr%unHF z(*tu8FAdbsY4%(kzAqqMu-RV&QM=ij#$j124}y&q6R?2e54kY#$$)f0fA|_iZGY%I1e1?^R4AMc!Rmbh2={ zee-Z_cx!EZbKmIXNIexAFF7QH#{3i>w>T>+FH&BHjBH3)H+gtZfcR7xacbs= z7dlk%Qzz5NnbjanO-H(t1{GFZpe({#K_?MSbS4eZse zqc}s19qJ=UP{9%8>W=E*ka)FqH(jvFJKB4>#m^Uc$xq_6keiO)laHfqP}`5vKbZ&H z>^|ke*NG73`eO@ulc)I9_nwxjoxSE3z6-^rAZ7zUKJv7PuK|(odU-c+>dqBbi;ok; z53lMCxFVdNviBeVkPM`bTXBiniefzVqg)e~I@|ICofYrreX>oN$zymQzvM&iF&5u< zT1Lk(#rK^K@~lQ4FR%OHqE14Kepe|FJPTug)T#Qk(Vdl{QJkjVTH7`{E}WUqEUOTJ zTz;a~H#*Wk(L3iH`@H zE#(5k{6V*jJhJ0#lWok{vITYGzPkTfQ?Brk|AnyKj{flsY72E;2bCjE!Y|9R5HP^l zNPA*qX;ymMqUm~MW24vKp9CZPm+_8{Tyl5JVR1XD4`&^Tq#AZFg2^&IoE7?vN-xP$ zm)29>2|se0RX>Fj20o**KA^1*VP@gnLH@-oPYQ_Jc$;(Z;B1ImG0Y5EP&3=iMYX7< z>FPRlgkU{ddTm5G&pAkBbzFq6uA{~)cy*nn(_%=;YdvyL`y^LR7Z=~KvoZ_hdO9C} zXZ$nP006s^>R!0nG>nj^lxlXfCFdM~Qyvr0RbF0Kr(fdoI`J!XZcgx3dp?}Cq;Is} z`ix3|MGx^8O%vinh4T-SDjJ%yaURD(760lh zf08edtc&yf$i;bnN;n_5w>+S237r3GK->n59Gw3?MB9Y(R4otZ&p=CmDWaT*^Ca@Q zxCrAsHJ%TjcGamTT}x=K8<+}sFQiJ~JUc5Rh>O;Kaq0t!+*?h_zzSEg5YEqA#5jKt z{gOAA)2|NWd}aIO;81_=aOqGF=!HZ(kbZ{BDFyY*QE>(JDvgFEf%V7J`^>RsDXc$E zXT?~*(FT;{7`$&1>*p%0m$giT{aJ9)iYh(|_E!+t%eJEP=!0@pivd62zPGZmI)dR- zg)h^p466BpZR4ZExM6Jj_~_(Vr5|&#xSedcHZg%yvu0SdtVq^oAkrw79+f*w+cq@R zDRlMMQ;~(;9wC5N10E_(40w*0)fZD7xdzZq)mUE8V(B`$UEKo-dm8I(802)*+8v?8 zZ3V2Q=&+Ae(P){X!%Hq3qgmbR(Dhf3;NR={!osH#T5Q2FT`^MFu;nswD^+8$bV@5N*&JJ%R&VdDVjL@)hi-sHfOtWJzOQWt<(he+PPRppH<4Ka4tgY8G|)8y*8MVNL)~Rz z&etoMc7&iabzZ3;^mrITbwr&?`<=kKm6W1AVd!$56=U~>cG#0t@V?0~l;`WYrsS;d ztOH$-x>P9;4MbO7sOQ@eWm>T)E+9n=iiIduke+!cA))P?oJ;z2CueKBl$?FI0K#XQ zI&~!6+JyY=Rtg2DD%`q)RLKsv<}pWX9UUD?O+WOLFj0c0>4YD-(+~U<+%cVUGB_#x zbts^33APvvh}$Tb6X@)KXnWW~*309Er=hX8MYJOk>v|g!*%}vN2B7xyfz_^ingOVQ zOCeQ)0oY$lF#va5<6S_GCK%xD&{a+}zk_}W1`xkG%mB;H;q_b+INT+OUL)2H90Y9S&(1+#L_Ok zuqea2C|$EfyRy@bll%+Sq&xY(Hfl*KxfsIVG1lk^mHY=BNZY6ss~=i$?Ib3M$V=*CLtcC#BPO?$>3*XgX7 zZLYE1C)tGeO|s1b#Wu!vX|lN-ZhMVVAxbvSGouf&+s7i4?c>#vIzD;8_b*_gn@*ff z3=EF-&cUX)En7B?PvYwutN8_Pd>ySMqk|(De(o5of|xL!t|r#S{jZo&ziF_KMyHcw z_|%8+hmjG?p-Zw7TZ)?3#{}n%4K3sX>(zAwX3Vq8ipyD83=QZ{Q@TLy+mMCb=pp`5 z^Xycbm}ft)Etb@7-DppK0eiUELYFh-vbVoG zN!;eph7G>*0);eZ&puprxA4so2h!{I(Dh8671Q+%HgYEi;C+*H&AXF?vC>R^ExdEO zDm}{7J+#?&xH^JQV`0?ie~L)X6w-brJ@6|opeZ9+M%rNVQk$gY(C#`2FEKUh2;i?r z{&oX}s8s>}lSq|pz@N*rgrU8t7m%!r_x#AkdwvSM59~#~G@xw>xW6bMZbM!U+&=@N z?ScEyUexQ+(oc&h=b=4`oEH~iw5P`NLDa5#8ttiowU8=-_Ux>s(4PCOaV;Q56KMZJ z=qk~^LB9mri(ef^`{Vek;9SJ-_Qq>0)Q;hrxzaa{{Qp2LC?^L^G7V88x_+~2WNx(< zrUu`rvtsn`v%w{K5bv8r|M_aLrVW>7fE(eluTvUC8Q{ij2Ef-3X}^-d{~{+kXl-e7 zWN2`B5ObC!HerTfCzmhA41OBTNW%yp)y)tZaz##Yd=|oXqlFkj4YsHpG1yuWIF%8y zigvt4QHelpTx{?_%pNdphVX}tKXimYe_Fs=ia&ossx--;zav?fKlzc%pZqk;pMMQ# zTY^9T6cD%VpTnPBM|6@ux1y#05K+$KPZIghxCrwnHJ(pPcGc7TNd-I(sS^Cj&dNxf z>*;)!gAvcT7BJV9EHqj=4J{=3a|8Vn{3(8Qm_L`wNv-i*`t%P)Dw%e$=S-a!`j@-1 zb_EQf$Wy1%5GJ_uDoW9wk<(>5E9TBY8-|mo<9(Cd$(t;=rfKTzhqGR+6o^u1g|_5^ z=ElVwrCRE=R?hUGDV|VUGZ~`NyOTs)q2yp`8-%x;8gvBgZ%6)in}n!Qf&H^dm29x@ z*856%)O0oMxdpo@2;|LP)cYtKJfhj$*;>Ym5UhtVz)OUJW+z5N&%%l90~`8YtqP#| zHA-W$7XJO9$k2-ji|;;tWkB3U%^bpb3q;#9;F9$s__t2~4H#=JZ0v9C*-JhqchyN# zx;Sd9?$HV5*ND`Xx}91-Blqx8+RNSBvquH&f>a4Q;qFk1P8bD@^8$ukGZdneA3|42 zCy&!FK_}u@hw0==_GMJ|wSKw$a=bS@%gUr3gp+-T9`$sWfqqXdPLNRilEMF0PQtD3 zb>1>NJ^o8)#gsH^!(Z|nyl;|{mRu;#i1cO}I?YiDdcglx8bvwkMB*qb^UBC1t+&y) z?$yd0hAe`!#IY4kS*7I+gDp4`ZPlF|ME_)l1YRe%hbu!6K2QmxejQ=3rO4lI!W;%$ zLaJml*donF%wRO{mm;u}DVO2|c8bu?BCzzVqC4I>OXVLP@0=~N^LjvW`Z^;ZZZ}{K zeLWqb?V+#GeBlUOMVTthUh<_2+qUK&dr^LCBbBw-i(JDe1uu7xy{LerAXS3BxGOM@ z%(PO>=imIX0aVM1ST)T`zBfJ*Z_-p=1%k282ZAL z(kaSgFOTzB-{kl>&esp&My0;`ATC^Th;7a$xpAa#XtEy*U4#8YwbhmWk^a?{QA}Bm z;E(D^KSXv6P7KmVhZQ^aRxaDNjo$Nv3hkk+?Go9TWwCu#J?%`%`^nNcZLOW4I4l1+Aa1iy z4lDl#qMc*qNw|tKRhX6KOP7vp%{^A8{Js^bti{UY8a~;1xqGZk1$+`xC0Loe0^@RS zWtf#2?Tq6BfnCW$ti1dvX5|(1OR%!|)nQg%uCDsRe)L=x_D=yAv39VoeJ^L4WzU2~ z6wBHPH4q9`eF`PY9GjH7n&5Pu6|?FcHiRYX@xDn`Eb`O+-96TW+@(jm&CZzdKM z*@^2w#W?^P3fA>y1-%t)!lXZUREH)(p%do1f}M1KAucDVfm{2L2GZ774VBi})Tj*)t)#A$%3;BY7$LD`sR@-Zga_X2EAP4!N|p zlOkO7n+e?gP&v7Gt(v^iv*tNzep4Wyg<*MZ1A(M(37ESl`3p2n9-6h^e$HKKMC<>7 zD*b&x#&9R~e|<-;WPkBpc}2 zG#E=9s3JWj4={M&s!ZOgiKj0{>P`T!mQFrL)y)oZm!&42_*7Rf|42_meUI`i9`OD^ zXln($v2#oAq}0z;X$XG`h_T}>0tO@1LBTPb&c1y^^f*VC0)4gwJ}@#HC!DW znM!^O(e?zxfl89^TFWiB!@ZPI!=bT!Sr{QGzwbna%pr_%c!W`|8488QJx6nBypn#2&{+KHaA>@=Z=i}(Cqub$vA=q+WZDrF z&(wLLce`sRXTuOGBG#$gzIQIAXiqqNmd=V1^&T6elhg3N$#9rg@42SrtnL*Fcfwgu zR|-U9;bSPcla`(!q>ejwqago$U*$=GCrt)u};`FH%liR3#MO9t0Fe?(~C$QNaqD~e` z9nLE;DWw7n|M#k5z)=hQ^rk!!>%34D)HFpsKOk;{Z_a$p0}yQwMWyTLG1PO7MKf-r zO4+->ZB*|zR^~gKbjK04eNVtRC3fV!Gaz2jwjXJmZMkNJEt>oznI+)CN3#bzcS~_s z33&0Nlo2`$y!gewZ9P%FKF$@A=(~K4%ai!_Mz=9(wW^r!>$VDXI)4_ zz2n)D+CzlnEy7SgjPY{!;w>s*JETg)Tg(}y;w`30gYe*K*9?W?t;3Gtcxw^;67iP! z)!}$+MZG${y;k2`-#wOp0rnBzil8Oej=1YUC%;tewFX8}{nAP4g5Qahsy*@72|6o| zzg}eXeX;`Yn~c8>R*QUgjmg*D80>j);2xz!GzMEsF_>sVnuHWBs&B^LF*?|10yJ8f ztE=l!0dnO9wZ)UCk#^n51=><2tjse4GB#Fa&B|=j zc4UuxpS7Gt3RNd^b_%LQ}*;zITpHAHs_F~F}=-S*B z#*f??6n+YqR~Hq_96dgNML_=&d_ENrx7#cyGJPXN+r#H>{fKw1d6Nbl;H42QNyMUR z5_wTvgsGa^)n`E42IKhU)GGMGK&?7lsgKf)D`P{|-HN#N z?JTS5wr-p(*E1 zP|$FF{4~llRRN&=&}oz#M1~&p6yG@XjDWb^$~knu4WjL#``~F5x+GdzE4(}+U%KRH ztM0`Bl;6dX+LC*yiZpIW`#y%>NBI2BSQVgN=TW{}*<@XjHIY2&=$3RkkwaQ(H= zRmK3XqhBHh5WhMc1FTVlMr`XHqVE9GigjKnaBO(gZi%-eA~-m$m7H61K56wZwXX~e zLIRqbM11f;-ST zTPOcaT6QO2*KJgC65*8){)(yTz8Hu64C>ilP$UldNkGO%(5yJ*huV%DhrGrw+Rmn_ zIONsJwPmvX!>tkQqp7pd40qKWBMtYHNp@(?4fy?81?4qv?Geiz&n65y=rk zRVyOt=4lJBpukeYGF22}lY`vU-lW6|QHTeC#iNv^0dd=$IZ?`5h_)w6@oPx&g*7el zAY4k>G90hSmo8D;m7x5rISa~fQKa7FMk-z*H}b;(FLy6qp#lzoREcfLAeb`_GGnfCS=4^|BsV^s|O|v%q&F1neqEn*#Sx+=Ei6G=I)xz9lZXdKgBzY;6 zO;nOJZOHK7T@!M2R^Cp>|SXcK=Fu-zUZf0(U)jVL-bo}AGfJ=@?y$$Jv1>6 zo9x1~cm&j#sT^Y}@xI4xwJlj%O~lBOF4`YPzeQCg8us*FS*uTukI1|Fq)$}DXJE%h z$3rURT6pT9+DoCKV=bc9w@-4=Y9oa(japa#Dn^5zr>4yJ9 zs;o;sNdK(Q`D!&{@zfH**GP!`-YgODBX@~_p8^m9Uo(9yplykjfo}%HZT!d~;U7b^ zJPE%EQpt}Al*G5}=i-;F7C99$uQKK|c;q)C$|*mzMZOXjVREI$vmqd~RZ1-gSUPS}j}3RoimRU%Ap95A+fsxgZxW6IfwEx%cP$gxbVhte-Wt>RaQ zsrBf|@$@c9RutTNu*a=P-j1>U97V1oyO!8>4a`++?m5V=E46rIWDgGOMZJmCTzZ|x z_8|D6-x~KtByomTwq=4f^-fNwTs?wahG(r1tlho@!HQvJQGys&sJcWMcI7!0_D394 z!dbWR8YW9{Ldm%w7vJ>OOB*F5w0)CnNuTcIYNZxKKz6XE@N6%*jj-R9#(o_k)&%(% zB-ZVu%DSYF{wYhWw~&xato+C&R(={L*1H4RmLS$U0^$XUwE@xc#CkcTa*0(LlZf@! zh;mG%y0*2J01%d%mYyoSQHk7=t|fZ7tr|wI_IXQ0`E3?0}i{6ytWW(N*2m zpPCm0@BTt7-!ktSJ0w4+T!lv4?3smw+}2W!HDo8*f0cNej0YY9AMx7N|9?=DkLAhj z5U$!FM?8Hq9s+Xy6cDhJx=nnO6#BgoN*qlOwERxh1|Z9<;7q?4Mm*lg^~X_cZvHEF<*mzpe+Z=j`Hi4Nzv-O>bzdlef* zSoJ8XCW$S12%}v-mw#Dp#KxPd4WWzB ze$Rjt*h7_p!*%vY3G7{>|6Z!Fcs3O>iH`yLA0O%qIF#K(DJVEbVl_(M5=lL9=D=Ab zu~CJeruOu@k6zKmT zJE7HEoHv!hyZi*J-a^@1xoTi^CqAk$hD*vsAFNLHBTyb1-7cpddXhWsN^>xyJe&V? zEBkn)vdN2)3}r-G2&HP50GV=&OB0)rpDB&iea+c)`v(?Kr2i&X5H)(_2Ngyk0rWm@2%? ztZlyk%Bo{_UxFZ#=4L5Z z&2jUANE%0*t}Cm9_}mF24gaZ)B2eaZ_=wLWwtHD9b1IU?P$n6-x;|sz&eSstj84B` zbbRX|c1w*A{ty%Qk5=&EXG!q}>k*iY!Wnjq-b8mO(zz?m;JT;E0$uo-t@CF?SWjGA zTvxyr3Tm#2B(?AIkjowcj-)eYQ^}1B)YTtySJ+f?J@U@QJ8)xna;4A!U>EE|`fYDX zi)xEB%1SDo%Jq=TB6cMA+ab~YVv#h-b*43!j@B<2oy47)ip!*@&@cqQszca70alYY zdZ~LddraUKa-Uh8BYTf|piLz@(n|}}L^;oWk)*csBqK;1g6s_ExgW{n&hvLdgDmIK zZ;vGa&NrbpLZd)pxCrH4&PARtbj_Y;E9oMupSEe!<>&9}tBr{PD*QwYeE2)_sgqRg zlfgeIzjFTZ@rZ>|{*h0zH%qj+ut2Vgx``JHEgdj*=PRJTug+r)9zEv^sYQ66w$U{0 z>=zPi1rkuY1p0vx$guxJ^6iIoEJE4ETlNW;I)yD_wa;#Ww)Z&7*c{ex#Vc16_<@A$I!2L(eQi;epzZK$I{;m zcu_`Ihx*aMc$L=T+oVN*YML-pi^fdch>f-Di7DDoI0nJSkz7orM~qUyI(!5GD@18! zQlH~BhLLTZOs4edNp7*8HRf=UJ)xDLMwirs@tptEZ76`es+%LUBH~y+w5Rb#E#BDK zmeruT^1a@y;}kjpS6(d!-Dz897PmcD-aK%tKc@8$Rlg@`AlKwY_@CR09aG$a*KjFg zie!{>O)pWIex%0Q=7Fo#?GdeBPg=bpU#t7GwK6D@JOd?_UH};AO8$v7xD&$Er{tcH zz3BjAQuvw5YSE1-$6Q&Hx9HbtZvQ-W)<-)Q`%EmEZnNZ7RC0In3Z(#}b#BBbCers} zpAjaTGA7GCDsxirDQZ)WnQr%QN;PTBa$0tp^ew1DUfWcF)4QRbKeUhCxABgEj16O1 zM`hlk8!ve?{ak<1biZgjo1CLEsEB_Hs>+d;1<2$rlg+VWXRHzlwSu-C?UXS&P?^M%f)x8!lMo18_IN!-@_v9@p+YfGTozv!&EvF6x~ zm3#;9Ni>cAJym`bY7VCHCnJm4Pp&t&gdnyjN_sTX&gTgK02YwkK*{M zz<1U)tkb8+x7INIkCM!{i^_;-11I;BM!1wo8z#h+Htu*`dme=EGqvgn?!OuN+szc} zpbGc@o>bAWkd6EFaX%S%>i{!(m}Fht=SME?^Ha?5iLcpdYYKP$SU}qnxc`xWxNZL& z-2Xg8+l2eDkKR+DKzu%0`hyYWJm(;h_r*mR_o?xGIJK)zeM%kGv2=Ppq)OmEJ1e7! zi{5^53ir9+8rK4DxRQl%|Ig4>;{IRgm%x4TtJAnYf=v{qai4_Rg8MR~6z(6qLUlM? zk0X+}9qCYdojKQ63ilW2tQhwf*?^K9i1#hyzNkVP_ZOlQ%v0q@asP0N-zg*hoDYM( z4&!rDX!9j&sJ!mv1YPZtsD229dyLKd463fN^a=+Y+e0DIjiRO%AG8A=)NXr)m*I(*aC{pogKQuZSq;p*o3N5*J}q zr^fTa(yn?M)v18fAXNg@*;z}WI`>Lr4WL33s6GW1E~`8<{0oqSf?q9hF*4&hIm8gzsP zzK8tnmdT-k$4C{8T#za;sq=3n>(T%}a%q5{hH2op0c}grz;6QLHWud4z+WKRIT|<; zE&Z#Aavlwk$S>j|Oas(-KDydfPtyPu@J&dSpaFJP1`rp_{o+(`&wbRm7NEkFEEL@L z9?vvzBK;CHAbxe22A1_<$7db8wDKunaf$+zTsz=@rp_w`{TIL(3i@>_4N(I2pGGO# z6X>6(vtrm^YJ*Gi6ufT|_7`Z_=enjL|7f`EIZA~nHm`H_qD{1jLp zx}Wuh0ewq={R;x(HU#B>{R0qf57@i+v#Ox~STy!M5$!y*Cy~42B8>Lbem;oWbx)%` z6)+5`5@^rH=95@;`ebr|iB7l={ocRt?C(Bw?y9~lOG zA=(bipJOx;Q>pIa?2oA}WyEhM)QBaJ{|VLL+=49x{EzFb82Ni_tVzCy_e~=IA#C1W ztHx>YKMo%J1Eob2{LedQq=Mt}<2CW|=K3IJe6WG*>P;K5V_$6+p`D@PQ^Iw7O?M|I z|CJhgPN+SZ>845kLbbqQZf(+%WU?H>e=wHl2${_5DNH7FkkoYd)VLw`F;r_Z>1fKy zWfp$qG7CQivjn~-sx2)#!SX;&O3=*GfVd5{IW%)3MB76%fl3mASQAah!zY$RRP{KA zM2?J$Fy~M+`%rEhBF#Bez)VP$;2d^qMl6>({NmIIgHgdaA+X7nEHuK{3SA}V^wBTD zIpSBRIcIW=zD3*==NQqpaE_f_YN&AwwWZ=5E1}!nZdDD=E!YC*?9y2==bY$p&II1K z%sEy?(wwsr9z3bEh;q(-t#A>-I@dRro>g9C2p>&Ir*l=J9dd+l`}UAf}}v)x>VP zx_l`S8d2Biwrx1(TpiLoANz&|v7K47*ULJt))RL=Xesu@ov)3mrd=j^fUMh{+^?Iu zBp03l;g^^e>IfIU75Uqamou<>6RDCtuqwfYAEcaIF62ip7xL30T=52a=fp$dHdwxkaf8<4-uRZ*wLvGm@V86 zKAh`jm}103SE^2m56?MCHNc4wbP*+M&kWqbIxFVHbv865^YFe&PCSf_-0M^&&5CQ` z%kz~UQC3_?({M7wifB|#Oo2DrY{`j~e|NG*SGOcDoDAVrM#qlu!a2y_HhvB-oJFc+ z^TI(q;U+!~o|Q79Wfp3d(e_R=%zE^kw<{||8D`bB1Gu>p zpIme%@@NHO)Iq6ggf7aA0_lVZXy=xUw z>K(KV|M-PXCRnn;inAzpA)(baW{F4Wor9k)WvHR}~Kt z3YxPv=BtV#d%3dk2#$a9f$ijIRRFrlbV}oe5K96zE)hZ;84$M(mJ>p(glKz02w5)* z2doI<47iH2R`~iT`O@W8TXo8hE)7(xfRx|-NNveI)TIsN9zJV(xqG{_ser$zK9tvS zs1S83htY>gDz`HHl_CaWRPAF_T(e&(+5%(9@S;k;M0g>7bvV4}k?T2<%X+MPpP7j& z`sU~Kh|-pAN0jj-F4SSz9@>*kmqBmGeUaiaXncyVucdpTZ-I@o$DFojx!2RGuN&>q z;`>Ytf~!NEHPFUfw{c{A=00@U?FG70A?7Z%<=xmPc|PTuzAyTyyfziM+vDEJEH~*B zwkOVA%;q^kve*XiR_k?8zz2XN?;hq?2L!S`LR};Mav|iZj61}%$Eqqhs^e}&dM{o< zdH&N?{{sPSa@BvY)Wp4I`%Eq*b&d3ALiy)iBQ5hUbB*+)p(4s&BQ1-~hGe&&rd#EK z{q_To<3FbI#%zrtp~jg`Z`o?{54T}{6{=O9U;Uz7!~7|fe_q4L{L3`V%o74#qin;- zVw-B1qC)C^?+~h(ERvgHu=udc|Gb(x3~y%m9OR?`L0$T>?~FGQ+)SXla_*%4cYgQ6 zF>HEl<<9TZ0#0VbDFue+&hPb+)ag6FwXT_We(Myei=_f{lH#h8eX5~PP>tc-|Gj1- z?YqT!>S~2&M|b=MCyT*ybfDHg}m8VTu|W6wO)gS>N<3?pt%0} z&|qt5B58!*2im~kT!zmkR`EfPIUgVUu2lQ_aNj1b0>bk6@F+Hb;oDRrm6O)W#Rqs3 z9?@;C)uEx$opNPef}u*FmnYhko3=#qBC=k0@xjKCpxOk#=b6d+v-WA``kohB# zs@b>l25m2`TqI@MFZZ~8OqI@5s zEh9?$vJ>UfbY-`;V(M0I{U&&$uztIURu}_*p?h86cJ+>KzNg9U9h3yu4h;`ajtury#eK2Zp}(Ux-aF^K z+P3QC5O5D$g{-W4Cnq-VtWBuxKwdZD@tATv{!<%HObO3joerUG=PA@xW{FIKT}8bz zUF9&%z*arvnyAae6=bSZKhR2QXkX~RG@yTpzH>}K+^&93-&qaOmivyy#!e-P9BB4Z z^(4CfL>oEPlk}TlPttEsr=HZL&l#&XTFOS%!|s#T?DbLVOD4Tmd$Ws&T;vktB8LP- zjMBnYE(^4^c9rN?OfCvY7xa|tTu&+X6%&`2R5uh*8?375Fm$IAH9Q$w1ahel3Gv%P zlf?*Ba7R?c0wtmG*)%~>>Djs)qW}$wxJXnySTi(;i}y#jCbd5L^r*F|pOBIydn;Gf zYL$&*HzXZo>aF3cAU!MR5Sog}u)kKvt=bdx)sUU^0aI+a#7*qTkFWjl;4(U4a(ATu zg`o0wkx39L)hh#)df$jJNvH$7oSImTRYW4sI38N3Yi=kC^s3G$dfk z76|p(fW4`?5Ht4UOV;@R8YLglK)7IIecf%W>7tO(R{+FkmR^vEb_rL= zYo@uDF$E4CmDih%IU4!ttXvttEE-w7ftGwWZ0YsTA=HC@X*ZkCCSH?Eq5>aQugMSA zsp4us!b&7<|B(H7=i?Lf)e|viC(qQ;2N*m1A&aLMsJ|M$KQ)rn{*Xo4FXmi~ymQGO zp?i0-QD^|B4|0%xyC}ngy5$>LDO4FYPvttg2;$C;*v0BQXNsixLf^8q%QA6N%34Ky=YprtmrB9{r<2?QHr^;!$$d^y% zdu8$BR_eJno#-@o7pSpvnmZy%ZKp{#BXJ0WGrpAbTqKV>&9j9DSx%$hp3;|{1nQ^rdeRgU>On=iLX@V}olW8zXPUD|BRebkMoHpyL z_6^j`TzGqO)0Jxws_=b^l0(h)|WkQ4^N(w|pp6yZ(65hzCOXLVPEyT71_Yh3!|a zV2>oYoG&*K0m>bJ7s3W|$DjDs;T?Y!+V-8l)9wdWWCXLat0Fr{POQ zyfG)4w*=pqkzJ?@*HqwRwcbE-tMV^yvTQGNcLk~4d(YD1ja&ED2?A-)^k;LX%NMft z@(&mC#DM^h7$tOsY?&M=ip*S2;o6??%kCMdti|7+Q!P-2F zK0`Z9!_0x|4%#GAtEi==+XEkh7d6~sf5ly1zA(o=*h(v}_*8HmQ8tfO7d8$~mt&wl z_!b&}*{iNKb9ro3%fN=E$0$DuxO0cABN%V1gI(ItBG&valKK5b2X4{juWtpU?cSEN zQ2GQ!t+=h&^4EP3vUV+r8Rx}WZKo$Nm0!?a8nUvOaXz6;!)lW?N{Izp)euJ3h9^r| zY}t9F)bkDILzGocy(j~pRTNK9jZ;;E4y}g^1o;|IpX79KHK+NJDZ$yW2lIKZcLe+ zHl~otL2-_`pSe+-BS8a__#Ax9WkaJ99e^} zaQ5Mp$Kc3By;j8&vEn!`CJK1P(ZbtK7u93!qh6dY>hZe1?^=z~wH@JsUR)(qB-8t(3BT4OvwYNB)d#WFiNWrHwg{0CX)5rqjK$NdR2ZpRh|tE+5Lrq zejs8aaw;`3ToXz2S0c{5V03)zASO6RXbpnmvi{ML<5d7ShE?;y3Bq%+gN{JkiFG-m z(=%nDJw#N=oi-WI)+I1*T2Hj81Yy3TK;4w9yfu>4c9rD$NL*sg;hjhxca?t-8f3YO zetWXADMI?fR@GK%tS#Rn-3gUl&Z*uY>XMDJC7o*JrK9x=u;IL)d`b*&HBa@A;_w1( zHLvX&)Eh8OC?9g5S)3dDk9nXCCEVvH1!|$(=kZ9=R@~=bk$2pEzArS$av%Nn=zQ~O z12iHDfi;w8Ik)&u#7Zf*$b~OngxXplS2guZwCK;U+F>jyAimDkom?uCCea-OdeKRZ z{q*13l){&eTbqvE{gTxZLj_4=+--%hM^M~0QrkJSo1s(~&eOGJVztAWfH%Y}<*a%(K)J=mMn0jto?s6i@B zPAiyGXf1#J(A+pd{2r!WaoYfhoyS6barNp52^bweK%d#+VveK1_F zk8DtIA!tjaHq^zH(@{H?a=LstQVT&miNMon`9f+Th-Z7XTLl(^MAVV95Jd0gLeSe# zF}V;Vesy{wh~l`i3qd5)j)kBTxbMh~$E#M0Ln>$X_V%u>Sf3)I2P*~N_mo^D`jqlL zZqDqW#$Civi$ovO;(KqANZLBENF-mVMI!Ns3oKvP%D22oWbBZ9jdD#d5*?M-cB<)y zto6Od{;R~(#J!?GK13XZ*KTcohI0KmtR(Lw{7(V`HZZykuI>u>p%8L!aF|60r^p3W zHJs}kqQ~g|C!j{|)eV1=D!6vZzPjPSlS_?ib z#r)nnRLQ3hyH8Vqs-`ASrrNJlL+rM#`>se|5yNxL*pY_0XEEu*qg!XSE;_osJW@G( z<-=tss4`y2dVv=_eD)4jQ;5W?MjAP3Q5s)~x|?yD4+{d<>!% zpBJ2KbxkJcT1B-erlYGZlta@&Zf(WXL2msfc!*BF6)Onr8Dh_&@eS?Ljm7px6W4#F z4)y>f#^>G1g%OjIo2Uis3q;cV1?;n|>48emW#Ys1)uHQgJ<^T(dIYYbQr?mX_5o++ zAU>P$_mK(}>JhIKnFM=;el=Uy&diiGtcP$3m9}{A`9CN(yZ3x7P_+`h=feT0mo zN!p70yc&7O-RGr3gDm&aZzJ2O4Aevt0&6JGa&B>7#7Zf*D8$@{7sypHH_>97nOpC( zQqiXVTbojhoxfi|Ni}x<4wA;W+nSKi-7Y1^k9kS7nz4OXzaq6t?YsJAfjX;(p*pv@ zVM^}1nte*);HnErOEi$#QY2i&jA07xyQ)xOvKdWAy3vGhEe)t%Vl;D1K)m2+W;I0H zGnz4V0|?j?0^LBGBgh5?_g!^IYC{;KoQ~SDl+)$Ik=l2~lli=yl`o|BUGZ9~cB{a? zD-m_%?7O1(a^KZvR7~!>62CgU?`mm(Z3r`n`8%(=Q%CTnR6F)wnXk;TCTcH5xnuad zl$UYCWrr{B9uKv{s;bb;h~x(eY5{@3G^Bgq@^znYB? zt~Kt*Yjjy-jpQE6HNDTOxx@IOd`%BaMp0HPTQ1Cf4$58x7i!bR-fva0?c!$DNS!#4 z{|?UqTG@8-F!GA57FgRZ-Wy4s-gcpN&D?gOQxx8Iv5z$ITXhp#ao(Zl378EWR6@`n zeyMwR@@>koJNc%{I1X{d!nD=mQIe2bErMF@(_1Zm;#IfRtrowg{3L+p9j*TjlKGym zMD+i;t+H1kJ@TH#o+trl;BQ2DJE$}ecE1zCAdZnf}R)xdw&Rtrm6pFTP+TQoE*?`FK^>k3uSWJYC$FkS*6#f+cYhHcBKA9;c94o zCRKTzib&eFEWJ-mi$AM?71U(a^^v6ZWL4Q|@h!;Po~&}wg;<4-BVQ{t$eOIuZ}X?S zHM=$P)2Z_8xr-QNbSIl4HX^4|tGQQ*r2ik97Jqqxx+zz=Ka$jTm1F{mOH7Nu63OGP z@?xPumaFKudtq9f$}ZbqA?H4gP( z_Cll`Q($xT@k5az#whOj!p3aYq9W$T&>^fR+P%ee@+mNy?ZDZ1<<9)5d9bxwyfMCK z=E2;$r{}(=u}x5G@!PHMMy+tmvtFj|$+?s(>0;bIIRVdFnVoW5nP5RqO{v1f^w1hr zo9Oh=LVI&g1t!wRHv(_8#gb=H{@uw9su=Fv*-ipAX(nMWIfJmtb;c%twXbmT_t)cI zC1nJ2-X%Lt_I+w5pY(ld;+;09=x`HIFEw8f8T5??WQq*>Zqn_RB=mFrMbrJF?QC-H zQwv-|rE;Wu7|G;K4*I6sw`EV?w0o>(wgn1%y*yHP>KJOkcR$r}9aoh!8nzuEy$9D! zxFv5PS(@$9D|Y&k`)N9z5b%QinVz=q4rr@qgW@}N|1ltLw@}V>(1##uO$Qa+se3J? z{P`efr><&cn)-QLL^;*>+5RN*rnm^N&r##q_!*eqk+-Di2BrdD0x6=eJhvtfQBewG z0|S|X>rinjN@0+NYXxwg1bgJbc^1>I`yHU zChY(nN9m`_MV5}rFWfa9q2Qmif`8TuieDiG*HR&=nfAsk-lRMwn2%i7dA1fE?BpB8 zm7VWJ>)p0|nhHJ!K0mPjl1C51%;Nj_DsA+Bifjfx#19(tt{v>(UaQlMh9fmZQgU+E zd#cekIq=EQu{)Vf{}kTJ@Igp)X$hg$_n}sDh;<2o)GYg6>7$W0>7wPcW9Zkr=+_eb z@+*)WOAqyZMrLp2l z{x~LGx4v|&I$j^F4lS)nN2}01qQFTV>92BgvQi?%8 zJ_Ok7c1(;N*S^x&@fizX)ZSioQP0-eh7FZnl{3$*?4C2Hg8w!S)cS4$7H+H5caBz+ ziP)C%BlC6KeMVo{>76sj&*#`O`Opo5nRyLVCkA?Ut&~dfS7cDIrx6ZXP|B1lfFDm9 zw_gUu>6o4Lk)CE*#iD~-VRSfdlmxn@%>~3IQKUD$Mqx{3V&$|f@*{AOLT+@7DPn3?T>c+?oy05%1rjal*_(bgJ*MFffiDmWD3 zGO+nvikd%xVr8r>euY9&<#A00M9sM_b@PDhev^!(T~{R1tsq?Y+qq3p%60!)XT=uA z32V1)in}g-GWu&O!JFc%jNL=EO_mjLL4iEIX+<5-I4{OamorNrmpDS68j1tImh;3A!4ET$O8WToq<) z!d1^lu@Y^?uYJN*yJRF2@YL(bND6ILBG*x`&uxNIj(V-miXHWk<{fn*T6mMnFy^So zN$-mXZ&>bFo|9Id-W8#qHc~P{N^~bT>&lgM)k7dWqAOC!Rk_~ARbj{`T=fMgR=TSA zmF=ot-g9Vqu1X)NnsCDoLjDsmOhA=*;J{;@X2W7N*|Kb~-z*e5qyI{^j#+}Oll2-V zTo&`N-$~Lt*q>f9Oeq)*w-2Cf&{y10`z_RVvIkKD?HB^)- z1OhMBYDJ4+u5Kj?VzmS3M+B4f(rimR0Nq@1>-NO%XX&ii zNh>zAB&Xqhlc0XE3+lpVX;?oJ-RN|sL=@I-@TSX2^rRP{=P)1G3EHVz9<(n(OWzSu&VzOmd3Iccp`9AfM@+lwX=tYcwnM4}w6n98 zf_CnU#+mV(YaSLFfd!>5@NCS>4I+w8=|y z&2bR^tSWL1m*YG2kYxrq+7*PpmTY_tj4v5=;o5MA$ zAlfFbq0y1YHOtY`M?{qKxQ0X)#YLEFsPTLVx2vA!8YqImofa})G&g3 zBwXv?$k_!nxRQm25jR3t$u-ZSUxI7IuMTrfj{>zUs^Ohvm=`)a%rqJm{S7(gCx;Gm z!BFRnuIFvbv9^&bNVA@33={OTQ+WY5t4lw2vj#WkOla}FOF7un?F_IQGi~z#aP;49 z^`EEp58-zy_BEzR?x9@Wy?x0Dp2b%2LJNlrdGUC=;GcREGdr zey6osuT+PIMt4qBcH`rm_?kMqf89)}>3OzhM78mgHX%p`;osLK;;Y(A0k!OCGVnt)~C+SHgdO8e};ry+U7?tZS&Lc5b-MkZA;Mh7X#up z>g3S&V-PJ*+pmU{+)6EGr{(OQJw#N-qz&_*izvsmZHat3F2b};jaQJitpeT+sS>o! z&dMFkC12apgd~c#89v}z0VpGXEV7k)_UTO8bLf{KZSkwaq7C)lgXW?@WNktR#( zgTuAT;7H}_O&c|ZuL;PA0dH7J+dR31wCYYSQpz#7WCxGT-nZ`gc?sK(F#dqrPct^{ z2!U@w{sjsAMp9*6avl8>An+sjE3o*KQ;k}%mw%*Ye8(sYm(KZ-OXvI)9cm%xrnB|t ze|H6HQi9wk1L8I)<&gW`5G_yc7eLA<_dq4d8|nK7%Irk-;}KPr1KT1aaS^6^YUYAe zZ|U?*NR^;^c5Cj9g{YqK1=a|_T~Vrk7@ErQ`3LBipnCBuM)ies@3N3?>U(F%%RAqB<3qV%b$d6L}}wpvH0QZMq)Ptif8yz^6YB~4yZ8{S$Q=k0Co zLxaTMMs?u6-=u#s7Yyw_M~+OVr@o;j#ObLg+ID)%)l?py(r4_QszDV#JLPHfv)0c} zEwPIV9-Rs+l{z_PRFknqeAE0vcF`>yoZA14qKz7i?*2!&aAW75pxvD^__HhD(z&Sx zxz#UqZpxS(QK)bU7^HY@Zw)>eq4Y21nRELKVtD#JnmC z-O9;n)WY4#lXDx|hgP~(VQ(Ax6s0kY?3}1tj6F~ONvNz7RnoGU03;G>`aD%27w61@ ze=;lUG?kMNn!D6lDqnaD?Hf6c=2^!FhX+Th_0jPy(skN#vg!ira4nszdL}iW9Px%v zR^5>6k)aW0 zZN{mp*HTrr+XhZmyV9#-USHuT&Yv+_pFBwhq3r>y{NW z?)yPftUGyFSGc76(uu0~>dLt$_q?9nmu+F(x49ElUqP|beZ{YR!hQ8wDe_cj#W49X zSxNe@PNmyHgnUorHbN-}eq3k84&2O%D&@d*qUr}K!Z7R%Mr6nw3xl zOa5u9KU4AD$scvKO1deXrux0ELLoQh8XGrl?ljf>GuchWuYJNzvrkhU2W=T;v1*0G zLczIKpW0 z5W#Wj6Jc^v&e>wBzoK%jnE#L|g6F|f>NR;D>^anOlBv??!R}Gb$~JHtw^aYXOJ~LX z-#rg@E8fQ^CX$nZ>vA^>O-9J`VCr%qV=OaA!DZ2Lu-laeLBOz&gDs$aEOM}l-fNu( zJJ`Gs0N@@5dmZK9ojj;3T9UTtFxab%jvZM|dJpoCA%!{&_AXLI4?1WV8opUCw2SkT zBuh?Z4ukO{cm0T;(sq#aVX!X*v@Nk>^x1&8jbk}0Mvp?Y{ECrqPH`AaIA{7Wm_kfC z4EE`Wax}G0hruk7kHvgqDqC1@jdy>(&Bk2Bgo|hwfpF837L26tX#(QbqPWNHu1l+1EMD!2qte62-*x-}A z2k)C?fFm3RaO<9?0y?hsUZqTw3XU`}Jc4^CYt0Av1_TcP1Rr>*v_+FgsZ?x#(3U7k z3UqMmt48yVkit)qzuhi5r0^3`rAbow9m%?+z>i!~;HP0y_-jDh5~T2_fOtVt=z2;g zNr4VY{UM^9M+zkJpK%c;1!_DWYwfC2zft!;D59bQ9*0y3QebCg_;8`!FHVL0+&7JD z0VrI_LZomST1b+@2KpsPLHz14DJ{r{Mk~|&nn*@7xosVU&G{hedSG`!N5QX@ot{te=2WsPD zT|$QSl|i~L7dF%wpPxwEF&Uy#aX*x6DWf`M*4%ZwZjUKOk;HPfq0j28gyN@|X1@$fnJ| z3QICx=NJ) z7X1<^FMf3x<&U4JSL>4#1%UoYiU&u>`+J=zRf@L*>#<-*nuzruH_HDNwWEykIgv&x zf%yNS8k$?Kh4B90bXM%$C)*g4{1oq-MEpZShD(F~8hGx{l@?LZKh(tRi0h>VHP~D8 zKO&&#*V=eV*V(XacQT#+$z)8gquKMbCqj6CB@A6V0`rTJzug2mFn<`SqG1VA?&SS^ zhWV?6r=@_ths0f==SMEk^HTtQm(0t9`n3U_OF;dafVkZXIZ(d=qV0itu9*k+C!xt# zMfCH)omG8T80c4vi;&zNYCBU_!z*!l`Is}4?|Z8 z_9OI5fW7$DVX$95GT3)h0jSTI#fNY^fPOk@5rFx7s0Ag=%Oo171js*MH88hW3n2d- zofU)psW!qSx8r@2An(oMQ%%zl|0MY9ol1u Js1h$q|S&f=Q{+I-0ysI2bfb-LOm zqxp3ZevQ$$BQXD7Cp*E8PJbUxMu$hY(t@RCncE_l=f z6rZg{43OIoQUA{f{mjyC;AQ}qB)+Ed56}2~LuBXq@W7w=^IE&th|dDK_d${)eHt6k zq0LtU;x=gIFvRyE+8%~*KA)z>0#7!kTG-hCMq|$8WB5Xye(8dyt+~e?l;0;Kl_k5V zPrj0C_>k=7?o9_#0q=xV3GU#oz(|x^8D0VA{%#x>nBz(o;*N#qFn1hGzXW%PUmfO- zdb=XD1PD`64EAe=~ppx}@bC_!eRTWV*|@j5H!kh5&~ zN|xe%lN{m>6jW`~EOHt=cbU>6$|8q50|nKVato@mn6*S8Mhi|FZN}t0DzQ5`S69Cz zmz)marx>j}!X?)rf4ebqxa2BQrDZPJM!6K{k^!M#2`(8|`G>irF0yNyOU44?HfH8< z$?XvB9G9F4S5c-4bBTQEf~c*z$0d|sf26V&mym1t5bfpeaS0W0IiyN(33r83T*AHH zI4-cqHA5jTc^JCNamWYgm*5idtHWHfvf5W4+%Z_+U4TuzOX1XfIcLxgKAB}QOEJn< zsWtHw9nU1wU?@1{>#D)I1-*V)<|AES)>$#9oM*#W@;SV3l2g>(XTJH;tnw82@E4RG zQC4xsCTvGN0p;&7G6}Q^lV4Iqn zG_D@O7)6gz&aF<=&QYCW%jyabT&@}$tq*S7z2(N#=w;5i(lKfDGT+P81l{RZu-06N zVl%wnq}n))i*vM)BlJfw-r(;tCW};|D08lz))Xju#9~o^*AI%1Z4M2H+qj#gDdyJr(df z4Lz>E`;zLj+>BIA7P*z-p(Dew!4=SgD_Mx{?|?BR-QP*S1l@~You>Q#T6J4(q?Y

&={CzGFTwk^(7mn- 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

v@(lP zm+>_oXj8ujtl~QWYFNcIm+=|^xh`XFfn@CHCE#1}Fm}x>hzn8G?=8CYwylS`7HLC` zVZGvU9M>F{w@6z^yiJQeR_HNy0;<@VeUa8XkljsxN_mZ9MRNeGSJWS`@%xMs!QCpo z#_!TP6c@q1GG5~^3E1`;MM&Aap zy+*<8d0_T~5$qg^Cy<}VL8RA6{BylAbM0i`M7xcF)3*SXlFt*L`jYZ0?Lct*O0QAc zP)HZItets{$DAU)#v!_5UL(8ev)6e1#zuYfI&_B73%O;=ct;dEkmiWJa3hb*c~9mH zg93NnYSCFk%())%tTuT7Om$<6 zfjG))xD=4+_VH0h>z(X0jM+^ z8or(IFx;qs>@0Fc*i#m`3#bW^nJXk+qreQo-3)o#&n_V;pY?zzO3K#(+8aqxOA`W; zeVmrf(;$jDx%9tFTCJH2G6UwYx6ll%5zG_*3}%-Z=W2k=*tCP$<;K1Cf@jHN+|=2# z<}G_S|29Hoa*)M)2M-ZmtA!zcI>ge7g*YlkhGLa)uquN>I+jx z<$>#7?lzjMU-u7*ixT8^@G*gh>8HoG<3RR*3EN_viw$jyq!1IaE_*b-gXfADWSQ0_ z_f-B{Et%=p=S28#?A=T8Xo zby2j0WH4GcAwMw~! zZ=}i7T*80$EUAPZd%XudQIEYFpuN#!dEz-1pE6H(5KWkAw!In?TLQZW&%QFUD%zbw zD2dOdgfghWWHD3v5i&Li1BteB89ynpD@scR+RFbM%i)#G`{|11q}Wv~CzXVuJl7Z) zs&l?=Kv8Zj{)WJ>6@m{b1lg4jL3YG`{u=^|xKd>87EC1?9~1EX7XGRL9o!%Ms=yhO zlQ@T&y+QsI>#G8}AC$Jq{tt_TAU;lilJzNlRp3zt!M-Z+$=-ccAcw8n9>aN6 zrRWS#?-=?JJLfD=>o`vt^&nCt6`pdIrwC)aImolCQ;pbBplj8K6sqH6$mHW?U)B!M zqQgzLPRKM=hfQ^~S;bMGZv>B#B#XYjP<+(q2T4k}F_8}`>1QV7!$Hw6)!BBZ8Y+7O zT^|4RxvpkUIHFE~Qu610VnA<`n2{%3Zl9&-l}IktGPo`Qp~#hejnEm$zM_`ta}7*g z4^FaIbR{(ae2-dEP{+s;zoY;n6*-6-jQ53uK1t~(-rd4PQ4gmcl5lIQH z=K#<@2U$=`X#b#wk`!LhxzJL8|A-hcCbY*S2(4D5QgBN`Y2jV;WG1|O(4XW;jt;32 za<>3W+f4ww1af3v3a_MuF-S+kdjzKC!pp993gJ};ev+J84aM0>L?tf0>M6wsrgKjY zGNF|Co}h-3jN0AhPP)#eFIhfG3>XvNo*WB$5luFbU7!|GQlst;;I#_jB#kQ9r-c#( z)4nzp*OD~qD5m8?$*y(|p_B)H=7sWwL?t1V@+n&=uMIMxlu%x+hLS>=JGVYvDE9!5 zw~7H{LizeG-NWu&!!)-L#h5P74c)HDD^f(}hmzVIo*Vjl4C-nQSFek6Lur22Q83ky zb3={Klofc_N^aXb2mwf>%L7}3ID|8uz(oMQO^I`o%97HrRTj3BJzmC@Bz3qZ;cYIm!STk*((Dn*^y8{bxzuh5xvL%ouB0SV$hi-epL9h7;s)euVZkTG- z%-8YVr-}}G&B;bIo-I7+b=T9C8S@_WI*WcUbZ<);u^DQp_6^g}TAL&0CcL|iuQ9Hh zL=n9_NmeK(%f|XXkDEsl$LubWbCg(mc8cJ z?1=2=VXVS?>E{$mTVw|j^9Qm6lnj(~OzBGy%LFi})|c~MS7Cfp9z1ITTle|5j{cAHmle#^-5TG4Y`f1brh}yo`_F>;?v<`k1%9y^XaApKKCm}>2r^P{J zji0#a8h&%>w0XswC*`Hncd=+L^dUNpWYFF9nlWANH?K z;6!gfq*RQ|0F;&Bt%IMo`D4bMvR|kF04`+&wZ5*Q)pC?Ad=l$wi@y}L$ z0Y17~8^ecIr9*)xT71cDGiwOpUyi2ngt&+r22}VwIkWD+H10uz{hQ*hFC3jG5tbRu zS%kkHi^W<56Dq5-`{>W{dA}rlw94-Y%63fTE!#1XcOlijqg5XB;9J5o`I86S-SfThxshK9c?faEN;*C(;%3OxRVQJ(E*i^Sy3-Y%>zLBZ(f$vB@5a9Jm*r z%JQfV(zE3}mVJwsEG&$a8#Gbv|II4xMFCNVH1a1ls<~BlQb@o#FQ`&=h zD?!;FjJ#!gF!FAJ2lE~ez9l@EcY44RJ(!OGw0v%5BcQ?_jG!lZF#i(4PI@o~$eZIJ z(t{!XC3-N%1h)XHga;$#wUh@VH7cZw>)Fmcm|p=^?!i1rSImQ9SAF(i)<|>C4h~w! z-+5>zx-Uaf_r)5u7rx7pg}#e3RnBqQ$GcMLwG{lSR5Wv0W}eCANeW08NteF~(Zr#% zH}6Q7#i5$xuRI1UyYW|2xn(#ji;2eES$SO0DC(?CB|0k!=@&*1buw{}axe!va${MI zc2W-JNDPtaxzKFPbHR()oo1oRkU{N{_B2fhYvWQh?$exH&Zlwr1#@Wj6MXDf&FCo! zOcoB!S%k{!?8)?}v_o?#LD>$Cyk&`IChrzFG|%_oTf(7vt_M8Pp&12ed530SK!qI| zK~HjME{k9%9U24V;y8$OXo!D_4vjIv>3}NX&`5ce_A0nbWJ*SAT}T(##hp1cuLY{y zp?Mu$F^7g-_1U30(`)8sXp-pI9AD0{k)!v*!5K<(aP*WpN9VvG1*F3hc}gjD=Jp$urHaMKPNC(I6nVNsI1N&p+BV^pLu5i%65F@E!**tcMBY!MHt5w#uARt?jG<& z$7er)mUn!<3~GfPA3;xYd=^Bola7x8GA9lq9UtOfqT^#s@H=96{9F!sGKQ2_X|IC2 zMLIrG%R;)i?(NL+IUls(j?Y@UVvY~H>a*i>4v%j65fbYrYZD_l*=HS(V^~T)(f2v2 z(D#W=&I;L0cQp;RLkj&GIZ!YBmt{HsMUS5IQ|4K}Q6Q~u zC>_iEj%A>1kNl2()KKjg?g+m_t&p9xq!UTmA|Td{e-WU(;YS=r%jbT?UV;))KjLYL zeuP{a`&=!)UqlVNXNz-jhR4Tnhbo)^Vb5jyqzBcRM^f7deX-{CnDHMJ8ytwaS&Q9c{xorxN&l2Wg{*os+()4uB}hhR#sN5tTZR$;c%3Qg>D(-Nkv)uNmr+JE<7hB!h>0f(>nF?v)yP^%28S8`?N!QiZNin z2sR~7<@91>oyvJwf-DJ98aG90*Nv0xwtbMMybJ41m$qQ7!n#~&d9%w3hHGXMh~I=5;b$BBYkb&;2(--u&=ID)TMCw8J!p&nT=9gY zzWTSlgjaYl3d+!J48S2#u?)S%H-3mje0)QOW-}Wimm&UTFXB$$BxR+DPu!6dr2>f~ za($Xm50U)=R;zSuFOSGQfJlKIDUQgUX0ylg!G9E1H<~KA@C+Qf)PUd6sx>P04H>={ zR+*xYiQ!$|${O4rU9-NrVHh9jYc{K!YSj&}uQ)$sWc>nqfUf9s9HcD;bW^7c4hW5{ zw{biC9F)uVKv2`A)JI0N4+!DNHHmqgRrUZ4MSlC!prk{H`l5YsIk>68|dRSY~PGcEZ9sR zshPy%A=!MM*eJ%iv(q^(bwQomqh%Ufxo1OyuZzGXNQpWgru1IlpV(YxuOG-}v;&;< zy}rx?ow(PJ0%-sDx|DnRqO~9{j?|d}LDYL~CX-9~d-7JIAs0s0PrL8?cusCPwGk;K z>h8d?{WnhPW)UXURpW%QJCQYI*W)|i+{ycdoGcWh(uP5doXg2`C#5I3TB)O50j>oq4I9QLs*P=x&GiwkP#d-C2>aIpcokKZ%z#qmFXgh2e)0PR zPKAomYGb4_(x4+qa2g2>%{>n&wjDCJ+C$k@M5BRhi(*nNapKq|Iybke=xo@f+s@;! z$K(h*i8Kxowkb)xWvp6Rzn+MKqg_BPMzRG&?q=nv#)hNlWcjJ_5wcrkwT2cfxVR2S z5Xm6HnUQL%y0S7{pJSGt5(>D}(fCcUz zQ)&uBx0M707j6Ox5cw>FZAi(!s9%k)f z%d2GB0xiUPGRC+MrZbMu2gc<-w#t7=CN`bB$%!2XA>%3af@M7WQVRTD0wqK#@H==^ zA(TIE=Y&fp#_AK#m0$3!H;0~8ZH+zyhGG3m^=WG2$kfJ-wMK2^yl0+?uVAc4kVej% z(kRFhK{4X2c-rUMf zoQIH*rPT{#!bd#drfvwtgnt95;U|jk$#oJGTFWE*gIG}7c{-z0kPvy>mBzPF*}wF! z+BM%#5;)IB51IEpmopM%UYrAPh`k@4HGLb3=}HiLsRulf*oOnOH^lZVGDPxSF4r{3 zKE=Q3%J~u24@PK9Ec{tS&d3Id&ppxxPOJrs*qJ8yCZKriZ0`k=zBGwA3R0^s?hgeQ zBg?GP-_+6xPuGS_Ituc+U?wjHKaZ|hF_>NXYOO3B=*>}(hmfyEb-6%%vX32~2!LKh zDY|Mwdee?onxKP-RrF)ZiDimziXQ1r#B!w?N@|&d&0U?1|(?gifKsgfH{-n)oqonSx%7;7%5R+=~z8_87ZuG4Q~ zQFvnO*!Z{{i-w{QNC2?;blUZK{ak_8Ozr;81D>^&%!sJm^22vCh$;QLxq`eJOD4y! zz(A(7dGdnN8>cy0YI3e%kRGb7ZbfmM!`Uj)%I5;!(E&zF{Ze8eSoA~`--V{ANvw;s z!Y4Yw{m=yYRl290^0a47wpnnjkeT@155PBL72J6B=Q!>EN}!T(pT9?_DDMm6mu-g8 zSJ~*L&zx+*f3A)z4;uSE?;Sr#qX_SKz5+3%!?=m{|C-@v_{i$8ZW`U=wEaK@QHVQYOmZhwk*dnJ4llXfu6@P<8(|GJsR(qk;NL0 z8HtAL@0fIz5}Qdj+xvFrJD4lLDhl_gKm={$uT<#?BkBv8oFYR8N2GU zVZH(sfLnH+2N*{%$|nd zJ9NqxGN(+^Ebo(5Ag0d{(?@->!=F8hA}i96nPt2xIaBLZ#T4gpWSHg@7sPq9XfD-m()V z@-B>l@95)Kdhjh_4PNd6H?>~C8oUXhy$RawqmPAlJsixwHG&;k5F->PkaiqIhT_CO zSCN`)&ue^|;3`0s(D+hbOKE($UA1&UTXdlDzYScu#{UjoF^$izVjAC`%O#5Vc7*JF z0hX%a(guw7W&c{%4L8NJx@-{JmiYJCp%U(Y$KK3<<{NDp29 zQ!BII17V26BlM@xMmUsXJ=hN`2-buB)t>cWOB{I@_8!utiiMCgi#}`zgKu=-hrNtX z;_bwC5y_Q=H98{rjP_#h&Ziq>pFZlm-}>P5Qh8_hREmD<{S|oo%AWLF4>OS~?6?*` z^R;)?bv>jo_gUalUDuij*)cR~zUx|wrSP@nKh;iRuGT3Lj7oG~doi*)ug#B?S*_LP z4_1@1@dNCz_XB1ZVg;__5Ns`7>j5zJg)MWU$NFidfJ6tTk0M%8XG<|=-1l_8p&~ml zPa}j>9&pEO1lC@*FA(8&IlB|x6*8uWbg@WX)wbH}E|i@P_>7n#^$m5WE= z@A5Y`aM8rM{o~cf0;B?~l|fX^R#rAOYPE@#l?~%lwdJa=)Ha_Xs-Z3`Au=zsRt+_?(C zTCwEXl~dJmH0-#*^j-TXu>JzPI{*%h86CW8xfp@JK+fWAKKD^LP6kip=0zsZg+ir+ z+Ouj`5l8SnD8U$|$lRI7CR+X>8r7{r`Bj)t#d$f{X|Es|gkew}O!+r(6j_I;OE-t} zge#Wqh62yNMl!(_i+o7Q4bv>&2ntQ9ZojXnp`>8#meX0;+ksv74*VzAiY|&_LMG>7 z`S*wcy@?lNlSQRa1|snX6>+j((B!C2t3~;|y}+hg0N@AI0)l%{7Lnz8_09wVZ5@>K z#pA~@Ess~(l`k9=lGR~5YiA-#JKrOsi=JkRD0@h8fr;o|^gv;hSV~0qP(w)(Mfhg( zCgBt9LPQsW!@G$AV>@jV!2%nCB@Qe>Sv8_$!4BDbS zd0bG~Z<8{b`nV!g_I^TSAbX!$U`cVMX0vyz#UzQVT)P(6T;Eud$^QbT<>Jb&b`Ejn z96Uyuc*#Pxe>C@HS{b*@FJMe93az?irmXo{;pMnJe9c}kHb z`#nvIl(||?N#Uesl7|)QNx~^ts)ZAz>p+*zd%6@(c2z8#&e-&}OoM%>w}}$P5Yi*M zERj6{Q7V=s<5n5;b{cgJW|Ig?+B|~O#dZqLr|_ze@tT$@xAWhISj?C2g3KWnjpB?v zsoes3BwsH6=y^YVLc?Yu7 z6`f0NW9pkZRpZ{5GXBLF-{gfS`IU(>{sn}JN+eOT!s-cA%~~KHZ`RV3%|-~8tbnfK z%UgC8U)}|sXJR1jU@}`V?!mT15r51BZt9vqZgdMkdy^Yw%c86tz1|?g%L+KXF@hX{ z7>PUr*$@YjHGE>8tI*A*)6NlHTLw;R0mbv2VIv~i>7}qr1#RnicREoWm%9_xSWVM0 z+C_CB;L2X* zw-lN_{aebx)GN-uNuyE`SBq-)aomgBF{eP7X=A4OY8Wy;5vyi=QmiCu$ObKc6orT3 z`sPWTxr7Eayf8~K6}N1<6p;*|Xq!Dm*bHRC_(V@TyK+mOn;enYyi2ip>cbRQ46son#I^iY77H>5uYt=uA` zWk>}v>5S67BFITYYJlt!2a$%9m}hQ!pTi^!sWHK0#A{YCEY`8K=Y=7a!YcQa)-k^6 zgdvsM0ixwmPApf`-gR=@_Vzq!A?)`-vom%@z2*{-f}7Dx>57?AcGYh)x~YsA-PB7n ziov=vqjeCfI3_dqh1ZN;p}?nAGh)^G9;973Eub`TrBpq07Oqujc5O!WinD8IRL6{N z#Jyga(M{%oA$%fc3P#0BqGoi3X%$&3OVp5-0a5hL?jVc?vR4Vj1OzHk0R2QanK!H!IX2hyJrj*lyOz8&4 zl&(-{c5O=ainHZ3s$)v`!o6OY(ha6531$eO5(z(ce&Mu%oWew>l0ojIB-m(p;yz4illOAkK z7}Cui@I*s;H9*T7($fGHG^B!9mO`0-*d2HRw`PY+|z=>@x$Dvo6V-}IdY-2?{W5(_@~muEM&Y#NSG8ETMd`W zyxy&b+TrxGUXj^VkY{v|zF)Bd#K2)trrNPXe(|D-UQPC&v@pkNe;W6?vD)IbuOYz{ zN-T-0D4&fPpU(-3dQG=3-L*$9rq?ypK@U{jGmc2h{p<2I6=~|x20z%qJ0N)fV|j(W z>R=z9>E@x?A!>X!?J%|Hh&#}tzg9xP{U%*aZ0D1vw(0p3fpS^()D<7audbmiVS4`8 z18&MdAcmW{wiDCy3rrX^J)foJawmg`#$JKg)pu-K7bHCZs27v;ApF_|N%!-BCz5n< z2az;eMg-wf3WBRjcT_e{C%8h{Jkvvo60&)k2RxCG&j4t7x2Pl8JibGA@XQ`!y%f(T?}7}z5%{)cc@8M%pGD^#qLnXG4B3Y z>%onU`sMQrah}S5g z9uT@1fJPYL`~b5(_nEfNG(4_79cV(h@x2?&}hM*CG$N zDUpGg;2?mO_q%ohlp7PsGbAXzMD2z*68m^qK-6Pl!QMW0DBaxl{_LT?-UDs~EOT4N zxh5DYj?XA^nOqz;F3=!!W_>?+_iag2NAG>ta5crr;TP7@$^ zN~ek8)q&GQlo-X=Kv!0_$mEjw5zthpX`PTFe|pK>Y_=vB?TgP<;5$sSY65zkCiWxO zP~2&v8){=R9kp34p=+l}QzILvQ9VwRV42rx8s#e1It*qPeiK?9S2p5*k11T`8Z_`P z@&FWbSU62DU_g%3)bwG>ZxW_W2h-PjCJtiyDi1(sm}1j|{f^VbZxW`iFnrK6aS+pg z^#CMdYHQzOAmKFmgi8;RT>?aU<}}eR*$JE`zO|XtbQzY{JE!TX7hT$g({!)EMe59Q zPSZ~bI^;C{91pnrx`fm8fCt;c9^^}fL;O!kw zH_K6)t7yuVlKQvWip))VvckV>H%XHsJB>!oyGfl@1byS`-I^VRxw^5Cd)UHc8ps{W zQDz@k2=>G(kx#+*`>MmOI(?;&)!!?vQJm$}sI{gV6TUpd*0I(o(huzQP5!00Rr&*Q zi`$jhc-j?Acoyn?*pahx#&v?AL&kLy4|HK%$35WY)(;rhs{vZxxLyvZm~mZ>XM}Mj z>M`TG7++?v8D}uU^P`9IR<5T#d;NMap6O3=oLA}Ln0mO4Oo~V#++U16UX;(_fo-c0NKY%HDKIDUR#Y{W93Yd0|ardVE$VPQyq`o6M4i_@)T*1eWQQKcAM1jc)WFu;|kyF>=CAn@=5?>XJ?9kBOqri7Wmy4t>vuT!{ zog;q|>Ph_5wzB`Fknh^cYC2^1(x`bWyU^sA@Qmy-&I%qqH)iS+4%@r%o1_F*I7;BR zn8#JF*|h-9oknpbZbIe!+5=#!Q`?gg8HryqAUh*5UrC-=hm}N`MZZeb#s6WGeclBg z#P9GS-sXtUVgQ*V~i>y6gB=H_anb>&nYpM2eZGo_aw0zde)wi-<2M=FrWX85F250QNyJnqIKd;v=<%w!B2^`A3iu9Z`ukrtm%R~enE>5@>--L$7e+{|dGoSSwj zL5JM5%RJItA_sD@2i%n7fSa}fpyl1Pa{v`_({`veVle{oOk`e!b7+c+QYXl~cz%X< zaCxrxYms}_!i>T*eJWit_ssb6b;gf@Ax8$M{cfr^;InS7Y^^u0z!$5xRfb3F^(K8g zuPWZP&m&gZFx6VX(A`|U3NPu`r&^U}6~PQU2MGnz5%Z8)V|Pva)Qj8GIi=!e_7WmI zzC_HJA9T=JTb5wiY=B&s074%xmaK&<&7sM=ecb%k+1_hwbRbY=ORdqwH_s}^4js>R zlfjVUXS5Y8er9po`oCP=C8?QWbnFTQI;wNC>U(LyJo<)P%$% znomqM?TcSs{ZN9COFZC-ggg|WJt8D63*yV#WI89L`uqdi_&!petVubWJ>(GcR1Y;u z5c4Dtcp@>+?HMt}!g@$fra*n-ycgNGg^$oYH^cp^E+dq+;buw-&(dlONV z3f9|vFBx^wfXop2NO}W7bFDdFJ?N12B_6tzAnWxW@I2c3$l4C^r{sVEA$B41; zL3m|`7nyhe?8|Pjtx&KLTQV(RGN*Glf=cR*8o*56KEI+#-b8RXbL1bzJ z#)~`y7s(>ezI4TkJnX8t$Ri3U9eyoD9Ibpf%*%MZytB8{xIs{%;!bjILd zK=x!BHD5sLtWCo=uHKZ{Am-{O^}m~_N-|23TH>#5??5iH>7z)gD@NG!Ynpyi$8=L0HI z0LWJ08IcVq>UG+u;Zojq7#E^XL-Aiajq~I!$D_HOp;4?E4aZSooa@?f@zHy^s4QR* zqDnML@7j>N2nJp0BzwNNLH{780%8F!yzGLgl zAE;GyZTB@nvioS%UfF%$xO(qqcVn(@?7r&tl|p4UXzpOnG7sS21&gM~1331?RmWHR z>H*BSn5%BN@5*@qyAgEA1K1r8bm0Na_kbsQ00RIm?*Tjp_QpJbFS7l_q=Bf{sR!Uv z-sb@b{+k{EyXANQLlH6=9)Q9)=K;9*=v`gp0T_h%tJ)S}KSUhDnM`vSeFm)Lt26-?(}! zW$Q6lHwIaHc_!VAczlO*n5p3nf=yndYoRKzOpcwNIJkr>yhL*O#q;}A&EGaLeb%W(+49O01R z5Gagu4uOl0)+$8~!QGfv}rYq)uv8!VLOL#Qhl~j&M^t#+nRx+@Vzt!G4{qBlDDlOw8-(3_0=px&4 zG&t6Ui+7X)-_bO)GA*+OHM!{%|FZY}Nec6>9Xd^f>_i&1R}P(TT)j85Loio24xRi? zD5sU-%I!euXQuP;|Bt;lfs?DM^2Z@$?Sv&^>97}z&`=0<31?vq7Lr3jHBa%Bfsyt`@QeJ_wIYI zD%F2Ke?K$i^{aR8J@=e*&-vbSH=!CYh%?p*bOghlRvR8(cWPHL+|wOX%ZK4ci8>9# zMfkuCBRS?)wt2|SV39Jn(gJCI40i>nGB8|p9KI3wfuvUyNV$^t04b?|14!{#4v=~= zVq=tV}@nUvGiKI z3<~_4P|_ZO0;g_UzxDL)F0=TPV|4kTz}(9-pul{5Py!0f@sI~XfdfFA9}4^r#E}IB zK1L$rdu>U2MWKKzc@Gqj`Zu5ef8{`d6EnnQ z2KllV0Sb_Rx^>Q8*r$a5F-K)roQ(<2N9#EzxPYD*CSXq~n1Hih9upi-*JNc+v$%^W zi7FKb^k5Ms=P3*U$VHUA^(998!_ZiX(f$@i-izgThQzF>KbQZ&<30bwj`Y_lwo6BP zErDo?O6^pn_m!(VX7p6lRVLEQMU+fZ#z?<+cF&^w(}ZI7NOWIw`iAu*Te~{Yztu6c ze9`@NM4dL!e*->nJ${aX{+%9jGhn0)^xp>3{L%eopvsEwSK}KI-AQ^yqq{44Pjr|1 zH=;X#gI zL{BWJv!|4x&N(h0)cGPx9^10U`QAm8-2czNsI|LF${7Z@!6ZoQ0xm^d3EivZVw|zC z7%!*S*$|csqeP&8M3_*)LH@&vd^X6=iuQaFC6_FBmc|=9?(chrw1CoaUkfB!LZx;p z?)%EseK-0&^iU@5TZ<@}%#7gQ<6glKz#oO7?GXfU+UhgT*l>DR5x}XA$>l=;k0I(b z1n^jVPyzvL^pFQ4fb&6`9|4>Msw@QX2QmRZz9;DwMF6hkJqSSR-#`HTm4g7bWQfT? z0E*)n0&w}!y*dd27=joC2RRUc>_tET$~)QhWg~zaNmcAJkmt}7Ljde41p#o5%Oijj zrluRXP&0dA?;d{1=~9RGJvbmvaupW%<@H8V1|_2YYlPVpjQX!qVY>M9fLWtK>Y$B6X3>;o*!?-t70BVm5S z*0me9p3&7X{{_d`@`d?t5OrFZ{}w(d5$5mrkOzkO2SJ)Y%zqkGSz-Pbd?Ug?tM8bB@c0`IFe#mb<6ySnuwYFo;tFeh(I+TdajeeYsV`AT703V;!_v zBD23nk@sTxv>^oVRt@WS?l>2l?`$M+u4+qZB%s9-okOK|3JLhi)jc^n8FiIG0#+_5 z4hMSPLl`DlE!4C}Fu}T0*POAwyZa~Wj@jkI1TCUY!vs6$f*V1a9}^6N zDhm^wf^P&SAn6sw1g_*gm_X{^zy$o2g9%>6*a*S|isKk2aQV?aI|&mQg4jkf3C9Go z7XcF}4`tVvjR`)8D*4d=U+9Tp0``=G2{^~)F~N!B)$O&3Ry7+BxK~;U!c;8KgNu9= zTVXgrW@wcdN(}$+6Q)ye`2QtE-is@(Y`IzE{{`wd?jY6QcHIAg;=gp<*P@8NPo;J$ z?)%Esy*2tQ>M9fW<+czhFCzue)1JWM{pW>x_DH<1Z8)`d#+t6?0OmcFJ8Ie6^2PfD zh&nCaFT)2V;{ARe^1yh11W5D8`$wSOta$%9)|Z$yko1bidsp(FcrW#D#C!hAiT7(V z#AKxU700o7@A9L2bW*%G1ThC3-wd88%>$=zoADf`xS3t;s0QB3AU0-2@EhP%t?BsWGL%h-G8kj zZ_f@1T0mflX*{xP+b?ZM@GRAw(vUz)CVD27+9^ojD_3{usD`@AKmu#?h%`ZirKSOTu*{kB z6b1t1#4T@qiQvEZDsCR zv7qkqqx*7FP&Wjzkz^7c)MYP1P**<5t}i>Nw^1bz>Mx-u7S!2ON>JwEF%i@M6heK~o=(jrV|M)2=(uV4t^bwWjZ1OW`6 zwr+Seu7eUcJmRvaj$f1fO~>T&A%F*oIt>B*7$1~C06+AQ2O@yqfHXe>xDQlW2;eS! zBM<;duP6d=CGSB1QvU`5;IAA6u;A*rlua=i!+OPW3<0?O=w6+K01QFgPcjKd0J0YW z0VwZe*O!d|2GD4Z09McwLjde41p#o5%OijjCUHjc_5#cMIbG_|z6VR2C0AjAUoP*L zGAI%C&xYp6YzjvG$0_n&Ebq6ZW`+Fu@+aXM#h-St|2xHe>0qzr5M4s0b}HEW%GKR8 z+JL&s1bdk!65=r;eJ}d}3-gZ=%Go1fzIMjC+G(eCHOx;t#+EP4-$>MHVg9-JphTFz z!9#AwuatfKZII><^OK;;3iFS~HzLfF^ooXgSMr`PFZFMPdH%`?^KWEq1P$~R$FVT) z@}v86QkXXc(IA-V?Pbp!Zb6h^m^X2{AJ!L2H zz03P$BuE+T_iFL7WGyV}Tg&^UNJ@nM2ZSjV4E^6$z$1R zeyQ408VP8zL=RD^ok9Y>a&=FRzJ|KWAOS0vB;;nmfu8peh6%nQ)U-!1L3RD;E~h%&E6l0H)vT57l5^+Jo%86=}j z?<%_;io6&3cO?SfUb{ucuiRf5Z|p$)Le+}WfmjP9dI6Q%sX**2S9hQ2I@DDr5X=0# zmYETTdys$Ee2Ae~Q>e%rggbs6(z)lHe%k44yBdYx=Ga`mDEtAUPK(0-f)7eW;eYm! z2S(wKgEW5>z8h2-QMlJ0hJ}ApThZ|Es@xO)rQsRjpTBa#|F<*rV}yUjaV-41{AhoY z6#l=4YDI^93q7)wz^uFs>0yt6vMxjVgNMd4`h?4n{zr%c&_)QTgO?%65^)Y7i9GN! zBsWeXXp221qb-49%3X$ZToA@u=Io~cQ5w2xPw)9{6pW>? zEQ`FshBduJcI7e9REdd|^@_Z=^0Klj`!G53V8@u*kV(Sgb$$)J=vv?LL*9x_G0b8f9KB}!deRxfG?>m@q%q$;Xn<45ny!H%y zPy(;*^pIPjYks4)ZDewIcQhYo%C;A=zs9TeiQUmZfHXf|8wFJcUW-o0Hv%n?^oqhJ zSMna%B=v8=CjQESO?NOhlE=6PY*HM@V3W&_?#W58$q>Y~B$M!&6xoXq$CXF2>&uSg zA3>EoYw}TgVsV^3CC720y7F0*lPBt}#^jc*latL>t&u&Ka)cArE%LPZ9-2KlMEFXp z;8GcsuM3S9%%I$-$lK4}^AN=ngD;D+uk!`>Va{7SApc0UsB}Qq!igTFQacrpedX$I z6@3wPl?ljl&dipb5t?U#rdg2wvQU*bNOwG|vhDPB+qQLgW5c3rxO+v1(LH;E(^6-c{tQBY^?WY)dZge2BNz# z+KgU@|J0JDaSOlYL`x&On@a5z*7KFCJ8bka)Kv!S$yL!xVg}6XZGT`<^%X)vUWC`_ zG|Yw#r;T)ZLF?xngUbi-?kDOrfcFi2Py*n6)kAI?e#(N@AA&SL!22YqG5}t5Grkef zf}~dzW4V&|U@WPB17q=54#xTuVf1+=fZ2jemuIrGFz#7ZCUq(R=)oC0Hg91d zK%P})(w52rt%XKQOuL+_$a`^Cl_>>Z3TTP_0e7GFOB)oNt(sFB6llprXHlu00tLQu zb%%~lLS1D*fjq0qlAHkydf!hNI2aU)+B4u_ZFOz6yO&vPcMLBdIA{=c8aQa-gA(9i z%0nIq4sHNxesE9)RTeln8Q%zSK+-D;4qVCmz=6=e2@cpR2OQkW*a!j#isKkKaQV@F zI|&>Zf*2v0go6XwivSLkkFx8_1_$p)l{_Qx0eWKKfIX#v1I}?r!9leYIH=D2ZGr=m z3bWdQXv02x?X}`LyPvgtV02z|*X47h!&ovrR&6%NYpv1Ak&0u`UlHacbJEGC?adN= zL6OgLa6syhfdjm>!NCKnIiK((gyCf7nTyGj6*6c=)vv+gR!uLf!uSW2ulHiabZHz6XgU1bw%Eb74b?0 zzEpuY;fkr8J4@q@jRT&cT2UGYXn{o6Q>mT80lso|-;IV*R~Z~2_uOcS8X%y@y@L7t zZ9+wR1Oc3}dfmwStzF%6bC+Xs`4GTci8>7dybT|eKmhl6$O93;`$3u?0o(?vECf)) zHzGYi(kqGpT*-S7fYiSnL*OWD{>m9Ye1Wl%>@p1mpg4{p0GA)#tCJ9bA&5IjCgJG; z*^7Vxly|c0%SHgdLX{i={Fx(63ri8Ubj5M2AqRok9Sq#cz2tf8CAOPi^?E111z>82NM*uITCx!sn zQwjp$9G6D`E7>$=;M##horQy%HZ=?I%ssz!(Bv#E4PZ^{3VD>67D9~AnY@R%U!1V%1#BmS2d(G5YRG--b1B!3JCbh)m=Dx4eBZb1mvnzLuy7Ypx4@E zP~c9Xq&)%!Hmut)yrH{0MZWGBT|OxAL!wTD0uSPY5>Vj#9`Zma@GFq!hXP*#RTdO@ zExr*@fTULx3b>N@KmngpsEu#*D4?i&mW zY!piRTY&;i$LR7wfg6ZA4GP?d4@y9RXL`uZ7?-lA;6)(K4+X|Sl?4Sh;2Qx2NP0z~ zfGhbDP~i29ji9W6;y4BcTz+)FPJ#l4Af`wr;ZQ*KB0vG?s8baE{AE0d`1s@RkDKA=!dBH80SkBY+iaVTl2`;h$y)lt@Zs2EHpysURHqrXugv zA=$S4tkeKI5L^Au9jEoqP7eG+wWTy7&|-;xPNjAV5%|j0Jvq7$b(KK`=He46HzPaH z^B%%5!Tmx_dju1#J^hT@x@uR~3hY13ow@9R`7ps@M4g5Sj=%>cFu`&Uc_1b@0i^jc z!6Hy)VS=x*KE47sd#AKug6vr`4;PRt;b`mBq1hE7h z) zcAB8)J%mMphEUVr3MTj`$L#W9g7*`38YcK4J}7|+-sd3?#02+(G(RSI6R5HQ1xcumzorDPtLEJ+!3C|PAUIa{_Jd|BuHYWHp zs^pm9VR~YifIX#P0?u)HOt5lt`aS|-u4RBETdfUjKLg`>r& zs|*;Bs|O6J8To-;_YDRG_7h6lBT!)7Y3nzPbT>Wl1jp#|L4iw&It>bJ#s?*!z$G5? zKqznxNb^I1O`ytx0{h|{0R>2UMWKKzc@Gqj`Zv-8{FRd)m}YDQK>@{a3<|jX=zg69 z1q?x)Lox}606nGUqF(|;EQlJ3mxI7d%F&GCN;;bSRgsC84 zX3sAnRBVMI0J-B!iJ`<4!Mla&6b%1wSLE%U%gve|SfFIe9i;l(j`|-{{FjdUS`^Vo zsnkwIeP6k{w?=P9U1g&Fe&Qr^DK8`B_f(@S-oI6-XOG1Dwd>DVdtP_%(f%*T-15cy zUlDa$y#Eb8C=u@;@{k9{`#*y;f4u)LsIubyTkwsD_awcd@!plZC*Di_8}XjMa^n5c zT3pJen2e#n;y4!XU4C?rPKx)2AihsB36J-(7a`s&&t%t^9q&&=qj|hvLr*N;v!|4J z&pGZuyr<3oLF0Zm-V4In7Vi~X`Qp72Ly36*WN42}r(nFlK#}(%-rI7sQ_;=Rj{?$Jr{-VnqyNhaa(UiKoyd*zwz`m*Ew7f~gT_g|tX z7Vp_pO1$SBmyh==+3xt(Xl=Yes$bKlMSbr5v-j)EWVf2LXicd?}LiG7s+-l z18=h3{FytgKI4@ghW}SJq;we8GKqdqrFJR|`^wdwD0%>Ol?lT#*=~r)h{Qcewi}EH z_xl5(ByTV_Z*}_nO_goc;nrkhrXr56Y>if1l}4>K-I!=rs+EoGSj&w=Jk>B%*;#Lm z;`NT|*mSKjxverZw0hT?GuCWaa~>As^=%%lH}T2XSfx5ORjW2CtwwdCIaO`cCR&xr ziOM0LeT~kC`CO2pAR}9# zINlK434VCvZFV|Cn z+RjRSqOzmbXx7o!^*6tg=jFDOzgg=4P055QB=RUE>*A?x9vZ8cC0snURfqyeObBSM z+tR?I5OIy9! z;PB4||u_LK|`1>h=orT2;3riVwH^=kIj6K*0%5Ox9*%GnpiONngETa|tI zaFAshH`5hJufTuEVXVjb(NO!{io6%u7$s8%x$JC=`b}hGh2P~9(9$0fpYdm%E!QfJ(zuwTnI=0MxmZe0QlrA%oPFv&pqq(wHwau z>TZnhIQEtg%Ke0>)1chX@PX^z2S)$Yo-;MGyS;E~=41wgcUyOu8R7p&9&*zKq@-j1 z2c-F--2I@+f^xmLLQ+~$9Oo+BgX5&x890u=a&X+@?Q!Lr+A$QVIF4n3Tz<4CNy1h0 zP_5{W--IASaMfvpt21$x{w5h$>2Kn=iv4Cg^OHOR%EDDAdT30cwi9sGaU>NsixCL{ zb?`z@St0@~i98TjNoNUMr2>$x-fUd;cW4&JRhQBe!&U65%ed-IK5rV{@b|;)s%=_A& z3sGq~M7yZeP9Z8^xw@l7TTxdTM76J2&mzQQ0IFVUlVv1EgmU%_o;vT`bJwjsyQ_HW zwT`vr!&CPVbsC;}D?TWJr|$NUo4r2;PrVPM`SH}NK$V53dTxZIv!Zay)wc&uNvkv9 z6o2Kwsn2I9$AD9c;~1QB`O$792~K?q)e1OuJ3R)ZsWc4wY+?#Zf73BI^^iwES#av7 z9vaKy6X4W?LKMI*LO>maQ?f+BDH3@goRYp0EUD;Yt2Y}?EgO|^>Ogv8aEd*38BVQY zb17Vt>Hn zll{_$TpLw$eA37TxwK@W4OD8UAeXOP-I=1}P*)kqWlfTM))DvMno?VdXE6BnD50oK z_%+jsbk^zTu03bN>1sX`Q<|8ltV}lQ+v^k6vC26#b$J%w&sf=t3C@xF#P%-EVqW7| zX+Ee{C+ak)b}c?A0oAs9$W1?z0@bELnjflN392lpHcQNwG*=X`xmx!CHfg5@VB@bG z!1j_16&Zj{aeT6vf($f%~tKmTLEw1O;D!1_>y5H9gK=DEJPK=(C{UTRk*Z zk4k`ocMDMfcL@O%ov{Qac4sVQiO?5`JP-;>zYUgDRJ7Hb4F$i7>Ud`DYxKmRAbZM! zf_6ow1j*pvh50x%X88r&e!$_$^hj~rCKMdb^UMH5o919`Uq3MVLHVM+shUrs`Ey_LjzF7Z|NVFqxIn;N0Or-0L8Br z1!L-~U@AJ$xG9(OH9A1o=B`A0R^k8A%2Cm_=tz7U&8KU}x$@eb)yDRw?>b`G4BbIok?}zOsr1VhQB>-o%JmKbj!@(sx_Jo8&zNlvPR(o_ znH+Am8h}%@v`lJQeP9Yg;Qt#TRb}c6C504#eqoE?6x9ZweGf!!GQXGLKh}JoEske% zeQI$;gH&of`J1N$G6kKP!QEZN-Rsi1yCsFYZRjLgX40UT%%ZX6-v*+F`Qx0GE2Ws} z(H8Ji&;%D#MmK=GYW8~S7T4h=dhErFAbN>e!+dV(vKINLT~pOp(`~+*+Gb7K^~PM0 zwOZp^PIRHC7PBR`Y1BB8&op$sQ9sJeJ#-tLAH9>*|2Sd@;+r8oukCeDWMi~L!ID5? z?*>=W!em6!8Ms?FV>GoDQK=$(HpW+2bXvu-(dlNbadNZPYE`$6so(3hCVcH^tx<1P zwlyZl2m3bpKb)xmu1-$WczMIsiOSX*eK|s|dLu1x#X{DxIu@f24v$tRw%4{yHEPY; z#Bgm$kKcCmhCSVb+P&fc{qXrhi4vk1W6h(|1<3u!#|_O#H&bDJ=(*f4cI2|`?tBZ` z^;UbshFXWQ0P8SFiHXZFUgn`TyJ^Z;^tB*0#-ejsJ?+Jf+P2!Rsj>QSy|w!$_B*2Q z#O|A-2dEc52Sj`*O8qfff_Lph{4Hhh?I*LOtCE)4xHOiQclEFRmFp+reMUb6)cj7A zCB|ZZPmgRYW-JR`OWkSPBu!FNTyM=xp*IgtH)u)t*i2=3avDp+t4+H@ZQEpNVK2Jrj2&cn%w^AGx(Gbctqv26Ux%-zEZDGsE*fSI(>xb zZJo+jwoc_+=yWcX-G6Ktxxv$370a?a=NTUIKxLi{(#|N;Xq=F=Y63HpqB;lQMxzy;{)6Lf8xO9?3eU8s<_a}VFztfI*JGdkL+sc-2q3r$a znjDRfc^a2P<8=>tpvHHAv@;raTj;2L5p-C~;L}k%kyNuu($t;|L!v|W-g~d8AOAtE z(RJj`tpK89x5gw_o`^Vc(PT@E6RKma(aGuUqcqEdK?z4F*s=y}GSRG$)EXE+*yEC| zGi*j^td7~A#>}d|bNIG4BCQW&7=v-h_K8UhEh@vcMyra!$MEF%R!knXurUTBlx=$C zGg6zXu?ZxMTl#j=FbG2!4UaGs8mzEgb;wFqchr$1tc+Iyo7nJ$hBaWivTYjM^=g&o zB>ja4FyA*ZS=l~a#q3n820pMKXXhxObFCrw;E8Q|!>wt?@K~)?nVFofph8m)Vm0d0 z|6gR-wiqfhjXv*y*~9v8r+Hwkb(%I^jnp3@k#cWDtsxdhQ*EEB~_0ckGYJOm~)y-i`i>PG~ zV%Z3`1JMQ~%;aFGy-4z=^4P{3+xGrT*@G{SYw5$v>WMvA4=D29n-dKmB}-Sb#AQ3t5-5E0Y^JD}B^AFT8V2d4 zClybFrOUofLG!ZBXUoXeEt(ZI%TXR0(-S1^OF2xbFglbT z&$zJY>^Xv@>)=I+`@q4I$RX~h7~ZvW>v>uJVjWwI(D@jIgKFnwd&)wLHRI*6c(jClto0BQJLh> zX;iEV&^($i!NL`cTb%}LAC_DftI8ggRYh&6Y^mf)F{dkKf*EF2*-5_~1G6n2a?7UX zBTtOE%iU}WyS<40H4farI~oUR{(;$iP`Qa^Pa|odMF}%uUh}k2m$vtQx|Tuo5w3JD z@#Mi2l}G5)DDNp5O(&BY(DXcv%{E_%a)5-+GV{dzzF36faPdI-MJR{MYP<_j z;>^SrpJkVij-~akTq6fBS9@Tw$#H0cixN{8n;gvu3M@7` z)mKy6ViR7I?Z%T0T`V>^+*3<3kyvcv6TYrD`U%V=_pnVaHrbyTQp2-e_C7Xf`I+cQ znPb9ZFRk(Q9W9LhCaeLV$k?huV92KmYe!c?Ac!-U(?7wH3Bao7qI-(q7|~h5_V$xl zei;+-VcQJirh4Z*xpxZ*rCW4ty_N8wFk@H1X-vUGiA3Kv&RHfzmQ$ghuE zYm#V=U~=0wHbH=-LUXJ>K3*H?8=2gxPQhxbl?+`gU(05i%cfaWHZ*CjWs|+uA$?B# z`NRed5cTw$d}R;h^X5^iZn0w!VK=@h|C~)UN(uGN_!4IYl$Amp!uHhFw2 ztz=ZD0kWqc_H&CQb2T&W(VTJNurST7M-Qg`#|T=Y7C{`% zZH1T;rAkDORCWdF98()3^N+IsYr};nvMEIZa*=Y~zAWiW!7I;_zKot&mXtmDl90@e zizH;p9a_gs!1-jv8FdDha*agPiRdzy7Zi&rca!Gumar}RL^(YcN$wGfm722En=6w1 zqbf>z^?uV`MR(!%f{|ojTU=ymVy0Hu=rY*o>qY&U@#9d6A52*yYEf*thQklh{H2H7^l&LL<6)3?C}vQz$j2Ko;}DpN5S2e>@E>hw zX>v~G(Y%`IE>zwRG8#*rOvDT_4c8SrrOSCWqk=DhDo4zaT|s)H)W*n|A^W^;8hnmT z85A>4n~*VM4Lz}#!JfJtGb+=Kv5b(R_8Kc62%1hrjD1)+v4HVJ2tWi3_JwkIEM7c` ze(lW2<9t<=G|MARR~4O&-wVczC6=t>;bJ-L|6EahX1EyKB(jf{%PxHqMj2QkOG6DA zG-v}6&s&brQXe(?$V;Z=9My=k{%BaqCud+e48%jabzKQ8J5j!=t(3shB36{^0hPVb zBR&}M29_64DdB^?5WEk;aDt5$BwfBcgdJF5u)zCk^N?nQFUUx zF;A2f8*#jll*glj_(pjx78YJ4lqoz_7t>ggB4mQP}@}<$F0_@D#uL1?t+ClBhqBjzk$fzl4#5y*Y4ILGwEQ(Is1kehxkCA54Oq@4*ZEMw|XiA2ggXxKd8}`)YaC7`f4I7Wgni&CSxf_lK1zjgX&H`0dEa`CfC@XZt?|IK5+-}1U?DT`u+arCOU|l0 zVW{d(m#m_Q6DP6ak0w%5j-Eg~Arq&hlQYb$0`Xb8U0n$?Peu8ru2RCx<-|(qFjJ>e z!o$q9jK3UVW?Gc*4>LPiafQQ7(?f2$)08mt9FTS|%nZU*gsA*shW}{$SCexm%uspT zGa74z88Qvmdpo5&VTLMr3aD~~8QB$bg&FA=wBf=v*F){@9P!fj+|2o~LF z4GnFqoIQzy>Y7uN6C-H*B%Ps>vdO&GC&Mi5F(1b@==Ej|q62NSjzcCZmrc}nRccd{ z!=qxjs2Abyxk?AD+**5)YOP#;L0N!?yB=)Lb=iUVUMxF=tp5sGv(p8y?xy^deYCq; zjcSkWl%42dW@=9d$)A}BZ2#eq$OXKAP-ZPWMQn}s_Mssh5tM0-J7I5?ZS{$Ib5tFB zkjElphh}ZtGxajFbBuC;f?NkRHMK-w9k&)Y@N+?b=-0A+8> z;LbtwM6xxTL?(?$e=bNi+fG=>o}-`&E&^2!G%xK{V!>p~r|QHUg~VIhx`6s@${;lV z7Vyf^{9EaXp?UVyWi)>rZV#wovt;@tMSm=3#K}5=;^)hvVhH}jXjmqfc4jhlvs_kkK%s2LW4)*26`Ms!GsXY1)NvJ>imQq#D zQNfuY{<@ZO=BVKOp`kHcyiwc2L`rCkEleXp$E1!OG21XpL<(RuTn*SrOUF5KOrwy0 z^h;s_hV4M0{hj(G6k2R>;lz~Rq9oH!eaSL`(SOZ8MQqwoyd6pxWeR~7I4`!Fbo{xA zuOAPRUj(#Nz?h$scv&7f3143+B~85|U9qg+ut6Z}N2Gk-pMo@fV8g5F{p|XsqWid_ zsY*xB%TZ3Co)2c9LeEc3({s*dX~lQ4RH&768*B-iK(aJI7QvQ)KHeP1ai}@_IHO7J z;~V^%M<2K9ld4~AymfT{*nswmKK^K_`_Mk_X@^#Ii9(Y+}+!S|6o>E~g zoZDanI~ycV50FKQfhE_KHWsGnWx$TEjD=qw&@eF;ehEI+qm`Uv;nxwdJr$HQ-qvGAKbzA+Y-BN%O67(>~VL1W<`fmc2j{xLnVu`qk;@>uxTDI~#XGKRwO z^?Hn|6C>eyqNLbB`2R?Gd>|~oQ9+uGgC7yfmD(yX4t`h_CC9-Ro47OjU;JKh9IV&t z@pi_C!B2pp{!uWHISjr$eHg6fWmskTr?k3NywY5>ya}!LM~BcqiK||mo^6hbE&%a? zf*8`u9L}CJG*oAE3dy5bCM%ro5F4?spnBpX*7>|h2}0)7-IV3I&7DeBH;@`a$-OW1Y|g#gp@k&yd2=IetnIPIO#Mk%E(Ml(L7^o z=Om^OTea=T)zrpnAD!(Vg-hu#>_Fo8p#g-Oveeot zy2;j>Ef{7OmsO;Wo1=7gBo+@DA3D6 zB+67sj08N6#Yop29Rq>Oizet+HZ07m4C9=^Yvp{WP+|-OKcPbf`(Q5?D>0^}A?!mZ zdnj!%GdMRuNCNb3l4kJuG&2Yhg65%JzAR{(a~5nImxJWYfOe-CM{-?h(3Y&ya2S8V z#S!XqDfeQV(*{?&JwA4^js7P2VjKNU{L(b`n{5vbk6f}YwwdtIn0+(pVw(tbRoRp#J$)?Yy!Sgh#da8D zQ4!?w;f&|8?~Se`UZBBmW=!dYU~SLJF?;;+Zc%W;_~X5-KnEX%Z!&zRhukud@p;ia529r82Z#+Fh&);3{*J=C(`3c zn48)dxnNA9No}wIv^HhX;N*AUl@CsSPfu)c!k)T3I5`&QrAPIQp-DVR&Zs&uFqtPx ziVaJaO!F>GJ(z!EJK+83_e37hf{Uz3SCfs^~^Xk}DNN*GE$qdAg&wD-Ys!AQp!}%o+TgUY2 zXXOjhf&06}eSh?A(THqQ6rQnXCdXv{4K4GoK!x9+{6MJiOJZeh^fUVBj0-_!?_?@; ziR)fFP*^x#n1j!;*;DO?%6WXpKgXexzWhx9g?8mCI9aWC$xjqlM>E}|A!*Y=3 zM-KNxE$&4?o<@>U)BY);MY^C$2-OcC_>XqnG}|FMiCNxX158T52QsNZ_+T*nbFx4T zr?Tu;Tu>mpknHiPjgezz>FXdWkHe+Jx4k!3}CReY`_Ix84F!oMQbwQ!dW(4VEdw*t;s31vAm8wW#Swn zny$QT^Vvy&p%X=^I1t@JE$EMK77dXO#10Ck8A`~|8*^h)f2o#wR{+D^C_l^birm5* ziIug{UGz_<0K@yKuyDZeLB?%iz;LgqEd(%pf>mYPMh?L6Zys{fv{C@W7eSgIFtkCH z1270J5?~NQ^#ca}V`_|L`39rB_hmGl+=~DVWKw~E!KmPMpvnOlWEYbCJ+(0sFi39) zgZDVxP{1&6rvwc1>4^ab_S9v-aFVgla|>pa)4>ClhBSvK8zX}%H|&si0!S=RF1!?| zI2wX20V)nxHv>J@U9H- zNVWGzO>ewZeZnGm0kTYh5J3&@@HBf?b~n5&r7tBi8qDO@p6^s zq6?^P{m~Od6Q#SdLy#FmBs}T8;WFKvqjl32sPZ(F9|%>RO02AnE~9@uP$lrx;4vZ( z2PYGZKLeboOB54M4c;ZnM~C)Yh;=Pt0C^rr^8=8xK;;4u>(pSO z4T2m(RDQ_8e@u{Eixbnub73kFN&6x zg&eFl^PqQ0Uoie>t(&euj%B-oA;Q99nLK_4* zgsA+Gga4Qsr5WTf%By5F)_@#j8iA0*s9*`GazGB*6=WYyZH$B*(zn5IJ+3wsa$E;a zIpk>26N4P=smqXKl{q?QdmG~0oQ&la$E2n?h`tk`<4|v&gO^?kb-Y;EgH*8HP0fDh zMIA3tCv%Odju<=6=x#Z15jb<1+&rMtS#VG}ZtcWEz2B!>Hh1P~`v{vMb0= zoZ1)(Hl#a);d+!BLU?bKf18ne`S#;Yd znwAf2u)?jRMoF+ysz9Zz=vrz`e^eKZl77mLHfFf!71)SrM`Sj(X?1i3Y}|nI1Hr~K zh!sqO(?7+*#!HDj9BjOt@s|T^+%C%ZgN-{_aklz%fQ?ss$W7}>0ULLNG(XrF0aYs4 z5ZWNHAw=Z|8~n%A_{_kDQC>Tvu?E;6(+C6`Mg_Y-l>=v6B4 zVB@=_1~!@UJ$hnbgFR(|jUXO>b}g3!c>F6p+9AN;ao+G4j{n|WGfghqL~}g9Pz*k# z7-UaA20uoXtmTnQGuU1z7vt?_0f#EF-mOMxJniYUd3*FdFt=yEVWEHqqn{o<^iSf3O0(6(#0Nm}M@7Myco0lP z2kxWy>T^Cu2cCs}*ek(57WkUQL`UM=Xg;nSijJbEx6{+ncoOVJ$I$Ze2-)b2+S?0oBwGW=x$LHc+owR-?x!knHXG@g)x0}Z88*Dp6wgAbblGtI!fyI{#k(I1woz*I68y*Rwl~x3SKvQnPtV4` zuqQ2sXdRUrN33bRh$-T{3~uhCYF~%{q;PXf3OCze`O>`G`&!l`jAzXJVlI8beu!S; ze~&oLKeDCzG_=FTCDCmtqH6YEl3g1wA-gL*1m>r<-CfIxHZ!8gVtIk+45B#=lkGVx zS4wlBN1NrAhlA(_AIsPA+NXH!mSEFo_jDeIzM_R8SVMhZ0MVBVC$8iU}L0X!3qa1(YwK#><`@C4~(j7IocQE zVAQet_&AOk8lgkEaBWHxmmSiK??&cUHx9{Zf+4=ST^;O2E7s28>oF_a(TVu(b~;Vu zu;fCuMW%j*?($~Q1c?I-guOJz8t=d#H<}u~hv@lWd7*5AuARA}_mRT37RK7|@{pSy zIt6Qg6r}mF_8UOOu{N1nv;@s<>$bu4Xopo#?T(bjE=8nunP zw6Xll;6;p4|B)Wq#x2wIH`Cb+_`lZ7RDBrtVayPinHsCkpfl{KSAjV$!5=ttYvsy{ zI6ZB0+qU{JP9ac+k7Kz2k+kVovI^BE*v|eI?f#BnU3P=${Xo;QKerbfJW7|mKya;V zV#fX>rW)JWO=~63_0K3<)G4%>)oxRZS>JkE6RbrVK58vSt6yyh;eo+HoEqF5Zq&Ed zHg2r!s+@UdWu~vMg8!X8S{uF=O2$>MIBS@^6uedghjm;xT^$?j>vJiO$)v>L#0k`+ z)#m8Ht`)pubDoQ;J+WD#-(yu`!DSi^ffHd|MR7anbr_xk0{km8fo$MCpNo(?)!n93 zUG@y+ROLs?0+^K@L?0v$kaBH3KR^{FyK-O5Sx0XMchNogkA)Vg&0-t5@B$0a{C!1% z-o&Bd7>-J}8rjdXK2w5;R#C#lW(vttg7I!vY2^NKlPaBWh5jX^I@LsBc%mq zo>!!*AeVVQMHMB@bHC!|xfmM0L=>21p2sGcr*=)!L_0<#Qtc~TIR=6RU=!4Ge|O~gqJUZVFJ~ zEFrQ2X8CDU%gvHK%?h)e&mo7$D!)xa65dmMWE_F273>3mo0U$?{Bt%!El_FDueK=PQxVME=g!B~VE2RYHC=W+#T+1=h z3^6CRg)hga5FSrl#?FyJX=M94HF6Z`yfT2Eu%dGE$r!BF*Z=}ZUfat+bfbChu1+Q< zBn?+*a2vf0#l0|kfKaVH+NX9r8$UwGt5_kZVNPX0`$;AZ@smEMCTnNcIV2O_=RG^S z&hxOFV>0qA54owElmy8oAnilc zv=5NKYJ1_DGe<{u4>Lsrbz=n3AFap`A(@5PqE6=RIs~Ukek2}lAPp#09AXpe(FJk7 zm_9m^cPcq`L310GY728rIMTd^Nu;IbFN5@PeDzU`rOcTm-7h0+ID0$fAgte);=hA_ z?#y8J)vBoWawFLpPBM5bjiEaTi*;#JxfY^a;EZs;s?)D;9EYk~_o;}Du z3W=r}F!w_bGYi47^8x_}!YvBJpW1mn!FW?q(9P9g{wT z@&jYiCy5o6s|1yOwprYL>i`vfgJ_8hi6f|s>9assm@qcT*inLa zNB8K_{857YHr2VERR)V>{S^sHjW>4xUk6zw#|^V{*mJ(?`5fgMMc#{85j$|yc6UrX zc5}~D{Q7)xu3@2WdUP(8YA-a32JtRCaJk2gy3va@!H8bGCN^)nS~MjydOgt{B?9JA zxr1s_XWL{0*B6aXVZ^kxK32yit2^th(fF*Yo;%v;mdSu+P^mfqwb#3)gmShU&TosO zN*!9-L6fc#(euElCnjxc8N(-TaLf^IMm^+ak4gzQJ3yL0+*}2!>`B+2fI6WtHdVLx zptgb0b3Cd{jT>yX;e}|am@s`BJ-QR7r(DpgRL6E!XXth>erC-^!tQ#Bz-H796pu)&mM6BXr2uzQQQRsIl1l+hRy8wh5dAuQo@k*9 zre;p2M%!x~$(x9qjqdPJ2O8*GL24N2Tvkteaig}awrdLaKh;~iZ(_gitTrZg-^9}d zKKt~ylE4lf!7B7jQ>r9nzxlZ04>lhvR+~?EF3S0QhKxxaBI)y4e5%`w#@YZ|o%?Uv z#SoA1DisuchYGQgwtQtHZTS|-8Ff-6S(;;E4|@2|;RAo*ArCaMUxCyxF|l5^h>h9p zb8KrKjNp42ToMVb(-7uJB;U#=k=UE`8i>7(3O)s@9N1ghvGhTyoj_u5i6PK54~8M6 zA98~4F*iu$eJnjORe(c@H@(P_e^8e8gR|)XFPLa2# z_F$q$v^>6^HsHAbCn}ap<8R&i=mIL$!QZFhT^amsYMFerNFVX47yv(Av?UXOKh{3G zm&p(7wgmXV>N70t+D_TU^mBX57Nf9jR3py&qhZki=`vEs_~ie3VrER%Lt55dNrUY| z`7Vw!!;}%Fr-_xd(RK8XXXjR-BmQ4Vg&}CuiqwEBfnLP8HBjbZa+T>wwN-1?kxi8k z93R+`f48U&m3dCTS7yQh<||oMwq@i9|F7_nn{rJV0=*8T`NRJ;pmK*mo<>RxAhbw8 zPzcq(OmR3JbwDrkTz2SAWrNcQ&B#z=r5eH;wl<77ht z!q-VDEH(EHdSU>9J#`r%9Bv))@4|xvEO_8O+CM)ySjfOZ`D6Y6TPRm*%kF_@7xL!i zeyPaY6MGOE6g$#?uV-^Z_O~@xQckx!dW1yafP$amT^UfIwQE2EUJ(mZKNn)pgapo| zJ^DERyr7_bLCW7phm#)qqeD~GVVWL!QGx|~-o%)+4-t$)+Fbz!gD5``6r4n?tc^~j ze>w#U9!rIVgM!C1ZVQ8gCyLraK*5t(RklmY0SeCdkeg}5U6s10-;3$ z1wyEPP{4mojiU?{809@Cqv-}HAd?CN1x5t}pvnOXWEYaIH?=Vm6i6=zgZDVuP*Cs^ zQVIhFFQq323fNN?CH-ZG3=%+MHbRIg*B=Ksy$E62uhFJIQi@q@ia#XQ4+y&HRPzTrBuwqc8x zi2Hc5o3Z4^H~>oBguT#1kZgrwbM#zBWOHh)g0psX>-XT-w+`-j4+p7R-76k~LM-ot zF3l(OERNM{FwCB95kJOLeJa1}Jp_gLExa{5t0!%1KCj1) z@`0iWB@$cneVtMl5q%lmKldB`2>B^vXR{$!_6@~dbx+(G~<-v z(VZa8KRkLasQB=RY%giAe$Ne&G{+VItV-FiAGaRmZ`=9kfP-CI(OulL2$Bu;-US}T zx|HY9qq{EU$ys~uSFTjZsFz#$KP;G+<3f8Y|GpNNX=4zEhCay@SG{%by|64B|4TeU zirk*q*G~*EWmhuKGtdgo{uWAgn-;88$_Hqr+WY!{;_l8*+SkwRv)ImllU8q_bx#IJ z+}qE|vBWOd?tVqZca5-wRM8c)q+hYW|9eco*<&ZUb)V|BH$?oFOq4rf`H`{&W_G`$ z4-&_{xzftNQAI_fhZou3FGy*B|1U*>-k_@2&9|LXAxsP4=R(NNm;Ip5|T1e&mRAEsVc~2qH9!9Qo=>{_zUIG9{<&%z$_Cz-rnPHny7YC(oDlX)~0$f zG0`7ASvAf#&QCE_+UNg7)et*l?U2drrfj!1)nfbnM^G&{RrWM1OjYgRkGs=dBqeUE z>MNxO=1;FrRYERf-Jyz-##&^bzc5zX=id|sW*MusV_Jna77(S09$_v@=bw1@`oDsz z#6hvDDLGA(_WHj>u^nWZvX$C2i|zG)GpgmL$)09~X(sRW|5p-{@S@NM&LDEqR3AxI zK`z7m7gdxr%p!aJg<;ZO|M!amiy5ZIT*w|J87BWo_0{NWRAqm3pK3}@!=(NGUsh}f z8K!KdHq2uC{eO;XxnZ)WWW#izL&$!A3EkC@rXWHP+rCb~OnnO*XU6r`ucxTYg}F`m zFuBY`{Y={q7-@XJaE!^!{lW`%Vdx_^L|*t@)pPV`%21e7@1su=L13=FGhY=Y`_54& zI*j(l@7YIWWEBQyq5wHExF-mSZ zJL;hzK1#RuFXr(M2VPX$N$W}FA(^KRt`V%Otpe@jZ+@jt?Mwb(owyRaMXsRcs^Ju* zZ0{BcypB1dQs6iOSDubB{*0VyeAlwm>ikXmWSL_aZ0B2 zxghOKrqnvLLwKSiVJ1RU{-q=QM>~p{oO7F2+NJVFGa5^#A=Z%p*y0iP zsCH(v_pt=FvLgN=@rX}korv~&{?m^1Um@LbjO?2gy-%oC>dNVHQI7fOFR7xWPdwf< znCL(7d%-BbpN{fOUSw=`gg+Yn;PZlk%m~j8=io72A8f;AbP%0*!+-Lfh!Z_Tb@WF+ zS8dH1nU4YSPc)xh2^D`u`KIJOQxY;%JWQ-8XHqm&?DzNF#sWjd0r(sle0AVQJ1bNi zCd&7RiX&KYj^U2}sXb?E1~+S9r>o~W4>BOJ)pfat+;q4pq2dIPb}v*M2U8KE@`nok zqwOP2&e2FSIZNd&$!ILeMT8164c7xZrSp@Rl=)Bve^j<@E5xM~p+a^A>3&ihBSVGk z=h|@LXl%-$Q1NsKgNKT1=!u02_SEH2@u-nnt6CpxW<`rbvTgKy8<8f5_1EBMQ;KYK zC4FM%?*CVLsLc+X;u7BkQo|*N?f&;IGvHu_To~>47hv>6AvCwUo6I?0k4Roj!eaQf zJ7cqtXUL0;PK?d|jaX6bDH?F^qf(&#z<~QT#-C+f;#v$K9p65{2SoY)fcpbhobBIp zjLp95AvYD6VqL!gsbO7#8~=Ug`(uuRW>>&FX`nfYfcD*V}y3*6k@DQ!R?*)Ub zF*ajuAd9xgW+%Z+*9rzQBkXc{FGq~NN0jf6(QjqN6^_w&d&o@{r^M*@fwX%u`c#;S5S2eh^B?Wt zWODArXe#gajK&%7FNPhU_xT6jhpCTIO)A2$DXe+)YiHu~ z-l{0+Vb_};Hu?*6Q7}I5tKiNcH6b3J*T6#msw_0)s=cK;KZ?}pWtTol#pMI_FD!G) zep3RAj-nR!M@OiJ<_yVeL42qn?pBOgjq**grzB2KCRUPTL_DLZmu^OnCt4c2s|=`m zWe@Vzhu$f&^F7?=7>1qeAvaxFii^J#q}_Az>!9hgGMIC`IFURyn?#PZNO`VvG@DL+ zy0yGBcaY zIY5^!gc}bd8_-2wEgGFU%DZS2uBpV1-^qz;V}_kD+^9EcxQ8oSoAvSf zShZ2PwuUoWTcgzp{AaSs&OmdHOdaIR7>Bf;QLJ1Y*xN-*Kew#5k-RP6gm%w5b0|0YAc)PY1!_?N_r3N=uvyGo{iW!@Ax^ z)fK%#;atd%!-@0giNOi>)MYqv3`H{Es8C*GfXj9~d0QU;%8v?-)Fv+yZn^k{3R@t$ zjmqj4(LIl%35yvs&6?yU-XA+f7#>a-$_ z&8uTu-metx$pkomqgN}uz|p53!iHU~@Cu^m;3jd8JU%HAh+gg?H~UsfAi5Kz1p*PM zviHdMZVZ4>Lt67gC|94UQH3uiLRoSjJ3X=prjr}(Q{&epIM{bH-LKG;E9wpK?z=-l zjn9&9Sol}Lgp7-ZMIM!2u?Ks9iVEZAd5FZ`HoFdL`V0sXjWrX3f5Jl@XsiDTQo~jQ zAvlO!Q%!28LQ$ZBzG;g)iP~>Qt`dUHh>Cq4)zC#G{yWBYI>-`8{J)76AaVM~b68{8 zJqvSR0BSNKjmYII89ecD2+)G}cDk@1wDLEMSF-@!Ub zWtChCv=2j`B|!TYMc#hK9?t@5-H4;~%xgp2i(MhX4O#DOFVs*iDUIZ{P@?OoR0qjl zg?D9;e1aVqfS%XN0R7WMvoZnwnhUm7FzVb<$8In>E(jY0nS9x)jg+>eS8Ttaf;MVu ztPrgdfAkXK5vv#ltJ1%uMl^Dky*4=};1?0k}aK|npDm7yW7rj0{GxYcfE zsyvl(9R`74{ z?=)2&GO*YXfUb!Ffj6Q+7YLY#=%u|pN%S5B{XuFp zN6_&}17*^zIUn*gCp>-qeh;-NjFfTSCqQbznlSAAd=R;)Cf-7cY;MEX0yQgD9F=aV zhH|pL^r*`=uEmDgOT$_qI)bi;Y2n)$a`YM134vWn>AM|D;b~bajAEG35VrO<-C0HU z=KyJmvBV$91lC4^IrK(5s~@-vx9^3#KLxJzUV_ij@72g7b8FQhqI@_!&o12MtT;Q+ zs4kj4^f<^v9@s~Z1*y?T1BV{IPHL_67TTB(I}@VvuOj0=2Adw0w=koz)RDx50hvbN zaKvEvcVtlE!x7mPBwR>sj2wK(o-{$WtK-J{-A}6fH%;4t4)s#}0LOdF3a&s|g#Y zfz(07@$L>se<**v`!RN9-ZS2l7>n%y(CqQCQ1)SktL*9rXuyn9-d9y>kbf%evsnHnrAXfx%~ZX2hUxW+y#1^_Ggz(4L*H%j zlsftSeX12cA>=ywT?-_7FO?cU`Q5c}0e#)qwwmtE;4sIYdoPF98SqD>nVPV)Faq-r*peD!sB ziRi)0AJqo~%_VOp%jbXCO*r0H#TVTw+6OkLr=}(wtu4)QjOVYLo@~{c{7fG@3y4>1 z$9T@tNJ_+CZh{Up4cY-O7!86v$ue`K2h2$18N;uKE!oyodhC6^8QHK@9*<41#oqaH3+aXD@#II! z<`~wzHPzs9t?ap36&2k;k7r!C(8Uo0(VKBXd~^@~V-4rDgOH>&araVDpf{;+q@jP)L;Uw+*Nl402Jtt{@BUJ^t4E3w3C@JA3 z#SN9tO8<%|Fw0O+Of^*Pv?PuQ{$3mGZ-^Dld8;PoG*~(q{1>V@K?W;ZuMHOBEMTzn zUL*~cJS6Hn2O6h_5*2C$G#9*GwWcyW7(qs=PZnAV{`az<=ER(g) zBz9w@w9})^6Sd_>-ZQn=P__Nhsj4|S&6AD-A5^RdnWt>2HcyDIfO(#eYPmmUPqV^2 zlh4$C8VO1GQ)D>fXKG)Qs)Ag`d6gNwc9#UikmktzPW9Vp z2UU$+s%lbB1EnLuuT$&?8K`WnHc*JKfPuak)p7%6Pss-AlpS)mw#4@`8y(HYvo!96 z0OE$1eirfV9vTzRC7q@5N}*$|v_ssg&0_MMr6F)1ozqT&M>i-4(Zo^aC)x|U>@2Ny zdd}f;d6)goAQcc_+!eEm%)`ue_R$`ve38V--IXsV`DG<-Uw6#qtUj-blFrIHL^}F3 ze$P&JMAt$u5j(`35*!gb#QZ>?(BeazeyH`cf(x&QGfy!;oVMc&*Cr#Yd)Vobo^QOT zp8kw##lfXY1U_k+X6uY*=sfZVHRoM9;N@YIpVpH|o?>eLkHm@^B~dpSH%~|poSI+! zVs3hYQ}g@c^ITK&{i1yT)cm2WI6F?{n3_M>LvAWCW%B(*zXVTw z#Q~WLZTS?wi_TFOqViA8^B?U{WODA99+kH!qp@TfVrrgD!wsTN>2fch!SL^uZQBZQ zDaBqs*%f3^Ol^!D-pih^MFsz3QwAOIautNZC+DxGCpJ0Ho_ukiIqJ?FkUhZWHuNfC z+vi!qh71f&3=js;(aXUWcZ(&REs3TCAmu(T7DvhKM}!{H>9&b**4vKE%$QWi_QJ#t5OS589ZVyXMG*%U@mPAq zPyj_MnA9E&+x^b-GKQrW+WI~%IFRAfu*t)HTi->k9?*3omBg*{K-mvBQ|IL*x+5_! z|6F{XXsDT+-f!?w2ij>Hq=ub_ZQSvhskf2BVk4nr+L}%h_M46?`(V?dVzudXXP3%5 zGDJ-7UZleQ37-N!AT=y3aNCK`#O(Gtwnd9n{w;$`BB34cLN!G4;cOC_$0EH3;&-Ehdq9-~ zze_uo4k)z~$UK%r6=<3V--K>4+26=YxPeb8ePT~CM zI5Y>gcntlMmDV?Ci&4JE5yd{>EO&;plP z?^JJOcx)_#w;cOPyu4ZaN%{@xnkL4)#(=#qV_)lA@rAYgeX;R{@;l}`yQR-XOI_rd zy2a!MMi9LD;pM*a)0Xt}@{P?8d#{$wz?04VoxZ~JZhPPr+Oa6P7m95U*K;XY+k6&E z-yqb|FjGErR<4xIphvqMAMmv!O-S$M)mw_6&mEJjMgD2m^hsY$X*(ZyO@*WrN+fnZ z_&SO%B03M8=g!i|oevY#Y&B~#D;y^q@tzO9I6BPO{BXh*jp|ghGCgG-u%WwkWk+>v zx~Ar9LO)l=5j{kl;0RU0ki?&chkg`$hOjk26^60rAqhF z@0_gctj@5D=PScF6`Rg5sZNYk8Z|_~+73D(d!&x@X{M`VeOv3;cQVaR)Na{j;_5<7 zm*FMSZ*ZXV`# z^QXLa6aA4W_$hc=bM{)c(X(+>`S#if)KC#u$5(J&{Km>tAx6^I#NQA<7bv82uFypq>}uAQIOVuXW4oeyar zB-7l6c6lDf&X62WZQ+@?6vTG|zH)I;js(fE9&!^zq@;>hgEW7F*$ zLXYT_U~k}t~{ zNJXQgCI@Z4_H{quOozF9-5qU&A879b*UIiPBG+J-Nn5ALNh6nOZYjL-XLI)2D|A<( z5$;&<<$J;UTyolO)Yn(R|LhGqF1g;J6D#5|o+7G7xTTr1YNa{7mBKxanX96#(OSd! zVlYk8-jBKmXSP!QFBf~g@Eg!@Aiq6CLXtg!zyph7G1b!0ZGZAeL{%X&*El zTH93}pBlp-!^pd}8q>oq;0GYID!Uz}f-kC-v3ip!o|h>Lxd^-A(TFM_AYDf-cE6IH zHAg3RPH>PgP;~h>xh%0m?|SC4veQs%rfdnryF%D$dzVYsthI4=sIG#Kblmc$Z6QiK|H3K9c0*2O4_g?_5z0ed{oN~ zn?216!=AURg29r=1fz9Uruxy<_2swipJhZi?%+P`?>9t&Sq6Sqkbwue?@kn@1RVW=8qgp8 zUI`|rksk%(-zp&l8M&01HgYJTfRQhGxioV2G%Ji;9nL}qZG-L#*cE23zEXN%hJGx4 z(HYczlqyOZ`Z2`~opz}mE(**t^dnPqWztQHGcufvn)eWwjZ|@ev|cqRr-9NIqqU0p zAOn?c)dmXT6)@0?Q7!kv>}hrwsK`%xfW|OMiTmLN@+;dwYpF`e<%z4RC~2T46gSXg zq2p^rfmsInTDhyEU_!QBCN?Yui>1!}32f@vnEVN(@eCzi-d(H-!}iix_E~n!eXXpt zu8jGo=b=znNp31oOj=R>Y!YrdA+OzKF)F)l_lNIWv!93xf2f$V>DR2gL*)`r zsM) zxA1v9ESI7(l=In2?1x447x# ze2UghHL5$sx-!1wked{nJ;iD$%;GkxGnH-i+Smx2My;$}b27cJPqb>=YmL5!Jg=7) z6VsZh;c47XHPOOlQPmyQ`WVe*8-J{hdm~5Lyf!9sf8Z&)>{BjL_Wk{dV4WYdM6UILZSiF$dZI9zbF=UzdasmxWd(NqA#UbDK~DVc zLoqJ5Y8^`U`3DO;a)Km|(n7Zk1t=tx$1?5)Id=qGq9xtxYKNnCSSp*V@%!{$TAl zFn+*@O#Ed_at6(JU25v)l4%ct*|qH*QDQH~b-9SdZUe2EXo{5NoC$Fy-erR^_e=B z#u}$>HLOH8u@xV)UN&rbZYRF0Ud9@v{qFBZQUJS`nC}$`P16=4Wi# zozES-z5bP7x%OF9$%E2=&=U(v>?t`YMVw=Du>}_giQ(l+=1u|6vDz^+G##B7ns@=J z!Kpnv#%z*PwzV)bJegZp`It|LDmg$cHY6&$l=V(oIO|yt3VV~C)5cJ_2FTx6MYU(6 zu)80o9)L>Bet|euc?IW6c7+0QY6XgLEx=T$5vQm&7N^z} zX_V^3?Ly>;Qf_Orqtthp;V=arDMXdkRuQG7z7eH7))y9~E<}|)NHt^DGJM5~#WE+P@gw1T1*>BP}3x?<935JQSRGq%vneq@2U3p{& z#P2hcV>&-Z2s29>A|Of=K|u7_ZCF6O7*+CscnLkRfXJRw0wU+Qd_Y_=fjhL5#(%?O zbPIx-OIz*>ghZbj`u?Hkp^vi|7VMUp!H&y@g)IB1^60M1=g5UROPG|nkSb21KN7|y zd!`-3%noLIQgKZAHbvf^RZ_I35a)97@>NUx57nnxAm620;aiN6D<`W3678f?nNF>^ zIcI>+bB+!?3s*?2#BmYMkrB3_MfCBNtGz}vgu2Q^p95T@GUCnb(JXU+!$MhElWtdU zs%*n?p_7dn;U8$ZQL8fCsNw7&I#)n0O);82#Lr>Jp-l3E{r%ZeP0#$Ml@en;R z5W${OKm_NwJct-Tmkz`b{XPr<@>B@%yq-e{#$gzOuvVQi!IS_H^LKMYDhMFvDDw7f zlA(nk_F=N+9+f@Yp7bEqgwp6iOCvgvO6?SS@Rh5(Z}b=R$1><)e0Ov3CmbZ`}9Lx-SsS=%yXX8;G)f*5dc`Ouyq2{;&n zSqlzw00-IQ034J@v+K(S4lf}6orNRoq8HK=0}kvd1vqey%L9kiaA#ZSyuFE9D1h*; znlg$>0}^6eTjn~YLmiK+Su7FCUoTW!FqFSmkDkKDBO&PNSx2*zMExu@OyzRAiH#R&AvduuIGR(#k*3 znb&F$)<)jLu@HF9CL^22{=)e5KF3rGpn&gD5t%69`}nE^3iytPJP-x^9HjYCz!yLj zf&ylp^J2)A)XMP4ph{%~8Kh1;wDVGWjHv)(nR9F0OiVo+h()#Wcy^e3M)xsV7WRE+ zdjgX;2N!73DRi8Co<6SPPdhiMr=2F5eVTE2BMwD zyY|82a=r2DM0I;@3%i`U8QbW$1`=ZqMQ`+zuPlp-Lt=%XE}G?rBB1 zaw89QpmKMDv?I!O+vjL^KIFeWgH1=fL^7OB60Ti&D<;zf11VeT6V3Ye(N?_sz6upP zDweNo70b6!@qwO#9X;RWX-~MG@9iI1o?TDVejdYYvN3h?P!KciJgU?X8nwGX3GN44^mty=jOs@>ly)Y0xfuZ+XG zaP98pp$^pUz98+0c4G~66ub!9`oC;#nK771{*+A;uHfZ%$CV0>yXcc46-UGJm91g< z78*W4bY4}eqvEw5C55Z_G!J#4iXYc06~|lX=(rCGJ0*irrxO#&N!cXfI+o7)TJ+v6 zc}{*DZ^$Fy7*+Mk1zJn_mIh9vHcnUN{^F1 z4bDjWwyNb@sCr+E-ck1FJ?#ot_GdlRfy%xgq#aSV(>zDrbmhn=Gq`lrO(g%GO_HYW zwjjM+y%vW+PzD)yB{T1rA@)#E`Wogp+T)MihwtNE{(L}sTox5o7C%iUS z3y;Hg|LiAzd3Jn0|4LWF8gwW=NKA}pCZ`UT)VJ=n7tTV${}Psorevv(Lm3_Ep|XKa z*Q6^}qzsv~=d3cc+NQsZFXVKhA!UhcU8DEO`!QPH2e{uml7Fm}oguPtm$=bG9q1Cz z@07sfEzA=AJmx60All+Zx&jUpW*&DiJ{4583YNtwbluGShdp8pSHcz#b)XW)JEa6) z8?)4~ukDzXi)%YSc+`>{a@q-(2maaT^pe+cW?UY)jxEYy%BD{?>ajhF$cfAEYcn8*B>-S<1D!=O^`>O52m2wl+ zF`NN_K@rA7t1xFeG4lV|dlNXhifVs6KnM^Z5CRN4ZP}E|RFHNLDhi7G_FQm5+)>^9%%hjR!a@!>p=H-GOjQg)+c8UgJ$)gRHKhAJi zG`vfk>W~if#|6FeM}A9vE}{1Yy?@9X#g5@OIGcL895R+VWOw^{%Mppgl;Mup;E)b< zM7vjx$hOeu0P77QB~I244u{0QI=mdaoWAbk+{||?b&D0gIsmE6d3C@~mWo%0d=0@Y z{Doa!qX~;q)S6gR(7#Chjo?7BNc>HBMT^AgDu0o<;GkU|sJV1wZ4$nJ9lAJtf7k9Z zSwt@uh8ySCD%I%Kpxg%WkApSy-x7>ic`1xnB`<^jpljs@@eeEU&P_AEM^4!}yC8fA z^_zI5Q2$olk%0S4syXh#%82iCr+4?`m@UTN%&oKpq-t%rV-Y&MMLoc>= zc5c=-)UKR@v8Z}`>&^5YzPZ|*+7`1}X2zg({eNiVdyl-r4^%N@KFcyL=zw z#q$NTp)#k2PM1Co!?N_K?J6am$oSroa)_4EwHNe`aT|JbDxMj?~0_aD)=Oaw4O8yfMhL*MvvFJaKvgJ2ZY#8o=*EpmDJ@EEkc_62mz4k=@QcZ)_B%e+l zU@lWMUnW1}uw1y^?{!EA+Wo7&vb)(jzq$2cMmY>$5cs((C{1hsBDJ=$e9$!ZuN>wI zH}-!yqyvrp$6guRXq?~H8jdHgMiZrQ<47`vTM0~i@BC^7;F&e_rp4oCus$E@= z(WfR#UWTRiYK-1hZrZ()YoM-f#_0EU2b+E@+br`qjnrQ&9p@dXzp=}a`t!stD@YKt zaLMk2wLD^{aqjxG*~|yqZ_?S z<2>i4W9u+ppT=UBL-uE;#V$?@jSp}fwYMYCcmW6-wg0&%IDp6TsJ*gGX4Kx+Bh8U{ zqxL_BYUQZ?2k5y)IIdJ@es}2*U=Do(z z`4Zaga@US?=G63_grxU(;FoP3GWv6Q9P=O26hP;sf#%x%UN1(h`q)JpsEYfPwkE5# zpEIYk9T>}A^T8#8erWPQhRMkuR8r7ty4TMzmx4J2!(4_}#4zcq&kXa(Hmpz&0wBuGwR1kmO=4 zwO8!XRc_jKl9QpXZrG#oEdVkX=4!dTW9Gl|AU#Wr@$u4GUdDKBmyB@@bl7+(<yjUynijaYTsR{$wBxM=GkmKj6f|b2tdU`cwjOEz%VUPG zhiWA=oW@HBGrYdsVh-0z3CvRZT8^RlVnZ@6o6p_RouQ$#Lm}VpGg|LbwEIjvpfVec z(tKX}fafC25zj$Egm(wd=_JDUDd|M|b%&UB45@hebqwD}6-3&!Ci=~W{t%waO`P8C z;Q!%}4$Pas1W_$-hMiUDN}E>m@MYu|K-;C^aUBEOlYDTDSjQ04E7A$+P8n%U0}dw* z2jliSZ*#kHt7{*y>D%q#;qt!yXL;Z53KjRnx2`t&9K4H`*oHLMnfDz|$xqUGFRq^i z6Ny(64marMW~$J8L*aG>$E&LhVVoR6Ot9AXb#8ayLGN}t=j}~WCw~BhnA@N=yUQhJ z>AJgr0cCwSQfe3TW3j)MUJrM?lIHlDPdTh`7jr6G+nGG#Ts6f{II@2HF6Qaf z6?waR&FsI~Va;$~v>eibzIb-8e394AC}$*1G+gQ~hcm)=G2ez|iT+^k@->bB8i)D9 zjsHrAbfEFy45B^h2zLAYMt3ZqD(C@a_RfAHHGlq&QqvLlI!qbvh>tm>10C_jUO6Ja zr9PJwtoA8z41|ygnsIIU)P!)Dxhd$rSrTQU+E%sq{#s9cb<&hmeM?3%&%KdM9_T7#ddMv&@dhVxjG&g$0X{|5B-dSoE2yAze@Mq&7)bW2wEGoDlS}AzJya7ZtULCk3s0LCY(>%%1@Sq(2M`O}E z`ezDJYr;{~&O^MF})*x-1T^O>x{6(?`@h_7#Jg6GdHET$1 zlKccq?G|J6FUy<%|vIhOjkI(OtHe8Gyzk+iG@R8VA zNgw9DR-|I?!6oR!LM*~d9~Qw=UC@W!9O8lW;Xn|Lrw?;LDuh1FqRd6HjSeLWbAC!V zfWjD&*d>)YCoOrgQEq&MBc-uJumq(U_C$w9X_S33l*ZO0&5n7LW;s+Vnd5eN=~y`8 zT<%M~B|UdI|CydGDSooUKyoET?vmmsIb@73mvaX7dD0X>*Q9}ZxTKg%gt$SI2QDe* zgbykyP&M7_XOLGzb%H@&gIB~L=_;Q=N>(-shr#f1A27&(sd7*|hu*O14zQzo!S9e zf}Q@^6Dt}!RW{17Q(KQTgXXc*-$S*Moqh%{XD>V5`*n`K=-KeLheO8bfH~}R0mzAo zu0$HBhwPL~gt$SI2eMNJ0AQyIcun{E+388pEWu7s#w%i{bk%2ex~w|7sX94Q8x5qT z2e@b{m(dG8YV2_5g1aK3Pf-!$qF8#&If>{+O1yLPj1y5dh>L;lnEoixGreJQ&QaAO zmqDU9XKI{e1WWA|=X8~ucB$k%sH+>!xu?!KmD#ib&spVZVwo36r+HcC4PCO#Q)NPk zhucSiUfyJdZV7t%axB72FK>mXx}cXYb%^Vkrhs0)4n*VWCdnm2+@Q$=nItE9P)Wh5>0UpR{5w=9nB+h3 zikKu_^_fW?Ha#^8-~Y?wkrTD{SY!0at)2Z`3{uGUfOB_I;1zHaI?oakNM5MdFi&`sYvF&IHJ#+D z={8qQ9la*Ax9LimF9(+kp~D@u$kus!RwP7E0@={Y=)1B%!hn6Jpq$Rt)a@Av07!a3ZF==OiZ`hmG!j> zd=(WwwmJ?!W0`IEeX7|2kF;UtY5q8Ty}mX&R5{~H_=x>vtufugLYKqy)9_ri-fRKS z8Xw1UT6HXAd`qRiak9|_A?{QEVp^xc)D*!q6&p-R10`0TyB$Pg>c`|_?R)QH>Mwa} z=GI_xnRc%;|H5h$yahWvTWn7KmeQ5hE8hs!+6mE$_2g109n^X@YB1)2QN)CG!WM#9S;mS%jyM>eT>dyb7}#`YM!RbJ8-R! z0?6TxoL^P&Q-Asm_(G51E|~5wR8gH5JZelgz-&l%(`F?Pf|}j%tpHDH^y{x^l$FF6 zekSeX9nw4DqFQ^pIoYc42wSDTflwdz88#~;)k*mcb~yVGRv`c>5Z?<@AFF``%_XFK zT)PK}Yx~!mZZ9#ou>gwD4eQ8wye=JUqamNc;FhQ;?S#uX+GQpw3u%c}t{iQQw1AfZ z7X!GA=<~v<+e$-%Q_GNtx$P}eHKq-7*Wf=?%c*}31z1@UhNDoG;p7PXv+`V&B-c)pvll&r#_vk+xR`s@HRw2AM zDi{PQ@lu!OI9FGc@XzrY1^=A6plKqX<-z|>>J?|JaoSUI>bCHSzUP3df&tu!SHuA5 zs?Q8yss0@`Kkz$~fL=r|@ZLB^-Yh%=^XA7{B)Xe7&7^UMj0twK85vQ-SGTF6I?tXF zP&aL3Vfj|jt{W`R_ksrD??e-bZ2t;r4KIX0mH{{y!m(X21^{o3>8C|EPS?lfOZgza zW^o~Dj@9l#KKhVyj(GhrGIiML&i6tQfhdl(5sDv`LGgmdsL1R@i8)&5$MR)fEVrVG zc-aS1r}hQHe;i<93E@9LRfd!A;h$&-|2;~X5YD%Zz)1LR4un7K&^H3Y|Kt$YVXOec zw|zqy2!9_`SPbFPo(SRpGToZZ7FTxOx{tJX~t%CmmsR#(?c;)O~*f01Eo--Fj zm&j-3Abc1+Bp`exUJ-=TRi7dJDDC5?egr?*MdP&+dI8`A`kSXwb_TzV?|n)5Htwk$ zNtFKruxyWB$q^?-)mm!Sa!cAq6};l*y}>vxr~nqI!4 zP2B=_UHPRna5tfdK;XvO(%0{xmZ*pnuirs3kX`L|6{aS7{a)&YY%_!iu{Wfy>E>14@~Q&9_X%=DRtF{SJq|5s3X(hj<`je*i?|U%E#@su;1Q zJrS|r+-d9I$tMm+R@0xu8I-qq|WlF;CZQdvXgFW5F zoA=*kjKR$J4Ksq>R_iVFei+p22E7YBq2c##XitIPf0Op`;`h_}wON1nmIwwb834VF zmf?gu+-^2thQ0w`%4ya|Vd}jKGv*DLX>aONq;hsNm3TiWuJWeX*P7ylpGP0eF5@M}F+M@nUH(Uf& z`C?8op9@f{;Y2D2QpWlO&ve6j6gHU;-!ghi!gq6+PvX!wg86K8i0d9G7^`T5Xgu@T z8>EVvkF+Nq#y{%O&WaBdS?3pF=7atVWImcsPXwt5=EL#I!Cu(ad8~pnJw%tt|K*s^ zTR~O9eBOpv#C+(g&&=mA%0+(0<2?A1WP8DMjB^2HsTqc|efk4*F!?W)v53)pN;;f9 z*af5cxGJi1)yy#(v6m`sMsg3R)eVzzSXyH+|Bj6oaP$$`elLSL@l@a_`4K$j3 z`ZKwT`SiM>`9nke;Y0ea->Ov=JbMge+kdo_@eT)_tg8JIiv&A_5XmVmafCTq4FINva_{C|1k%{ zEOF=XFowd+1Z_@)Z6ME)suy;0A947uFu&5=^xQY8c>FFXA#!arF=JsObj{nRl(^$GV>^hxZd0XGI0WkYS9^ZWTq=T z&9w{Cp7>dmL63G!CNz;l{US^z(0_qsLaShRkcuD^9Ip&Tg~85bf|D*pmq^9s$i(HK zsvr~NctvD_uKG+SmQPeC;ZVA@^6jMMrxnhVgsf6}K`@MiTr%ZnsK#!tN1!8S?yJN{ z^y9fQMA+vkZsQ`CsHF_gRz-DgoDuqwv4AzCat$ch4G}5yh(<|Xj)oAF=K99DW{d5DR~e!-T}6X7UUF7CUNX{XHfyb^#^fmM z3KAPp7N1A?DLphZcNj&DqCBy%K-daw7Ks~z3kp@HPCkR$4{J%P~>NR5vD}wzd%Z)>GU;_il9UsuN>@!$$=>m zCw+)60R`nK(NS+^O0*QOh!W9NpDEE&nY{=~{Cvo{oKr8N7i7p-NN5(GVM4oPeuvIy z-c(7AIM5kjUW^HLau*!vR8`arE$1}bZV{l9K)Y@TP`(#5_H!|sK(L?3No#o7&u{?y z5!6Q8nHe!#v{t#LG|L%-B7DdqSq|1lEaxx>%W*VAMPnyW01~C$qQb;Pti`{0(~2FU zESIJ(?8{P+n*z)#0sFbA%5d^*{1d$twSNKI3u+e{kfUQ+<14u;xHpeUH^1^<>fX#UdqDy42 za)A8BCI*9~kJctXSN?cYLqbsNY7znAv# z;`WIi+y<{!(!hjQS~zu~1;cGITPYW!UK%?y(skHMkNu#CKG6;U*HfA1o2BjG#ws~!J8pe6ojyE>?QGBs$ zL8neMP5TdKPB9z-OE@uBD-f#@FXHzp|CD|a|1uO22QfgYgBZ0mK4faHW*0k))nS00`%qHsf0{G5u)FldbKZz{@VZ}OGN(_ zsxqAX7ygMx^hZ$2M0CDoB0AsALG-zA%?3pTqHp664@C3@AR3S8pMZ83Bf7LFBKkkz zVNb+kFtH0zu+-iAW`3v()9qqJwE>kYa^UL#=`56 zHmP{+l#zy9Yqzy9w-M?e?L~b@s1fcrQ*ZYL_g@=ebcy?~K~;v6SK^;&+?AKxR3q|#C@%T zSAkRn?sL3G;XbD{h%S-n%HjSWK~;hK{|~PS_vxz7xPLh8$*ff;{Alkyx?2eM0^^N? zi@Degvd`0gflkK%R9TTweAl-Lud^GwK=GYaQJt%21jV_%7Ix1Cy}H3}m$fy--XEJS z5PP1qfETfSqwAt2a5^FENZiz@kJNY_R|HTWq1;g#s8>J{fk2J5IY-wEnxY~xGrC?N z1liMWnID#q@WQf+9RlM+Q%Cj%j4uo@tOVopP?h22Z2S`q#_LeZ1Y^Esf-&FC0pl@; zz7b$tbBG6maT7%2!FVx96@#&~CxY>Mk9G{kn#eQ#A`Hgpzd$h7DmVwEBEXpAm9uzZ zkKmVZ&Q=gzB8Qa&<2Qq<0*v2+R|Lj%)n_nX22eb@mZu&4nCzSzH_GS*G#fLrR_Pgp z-ZlFGbU^E_%94cFpOk^Yp6&v#KdOqFp}BFZ^%iX34eE6R+XbG`(EBTB1cBc7NPBqE z`$EtAHnvO6hl?``=}?4bMeUGp*RE_crpHW~e^2?WG^jraMFfI6)<&RyiuLv#-$E6| zo$kwmoNe2oFyRGGu-oBCOyE0dQ1pcfZ2NY{4f5AW&(RaJr)z-TP73W zyE#l?KZm{%Okltv9>@d^1<`mW@GY=bF%yvXL?*DOM>}Q$n#k^c5oQADzd$CSRqzP9 zn?5~brh46Kn9t-X#T>7U4}~3rnE+=#h%S*2%Q1mVz!riDJQc5q3D8xanZQz-Ns~KW z{6xUHtX(gn7d*gNP;C~Tp#i&OeuvIy-c;$6NWc|f-X0CTPpG11Xj!}2c8ddyfp*<+ zfP61#6yQ2EfuI11w1$@g9AX?2Aouzk0J1K9RkscfP`QGdNe(eoy>P6ZKo9GRGP2-0F)&|>L$DtpALHjz9Ylm2^tV-Q3)UC_@ML6h7k74if?{pU^}e_KPrI zL;nTxHLZf5fm8%vql{iK zHe+V;h_yLKZsJ?0qBt{h z6JHkOY}*cAGS%^Kjj+R!_}o+)6n$X=w+DDbGJ)GrmEq)8{1ZKL^KU3+G6BA2G6BAu z!vsFy&{xrYKNGmiA+85s0TcKHh{iL4NszJ$zsUroJ(2Rg+oK&b0Zrr`ei3E@=)XWF zpjGe+kcwae9IsJKfHR-Uhvk^SA3#;X1pWuFhzZbDpP9hX)N|YIR>VBcVXl>wnR0r; z2oBUYNH}W9u!4o|hoD0`eo=Xq-oti&rwA7IehR12r#0=Mit0RXX4YXKz0;kVIXH4# zP_Y|^;PH&c681%72$nEc+QrKf)_CT3(94xIYcB2+Q#efduQXE_f+7N$0@g-M;R)6p zPq|jAsP6QpJjm^~J^YN}82@q)M~D(@Seyn)Us%KW0iKbp;apT@I5`vlM6-rxqLj%R z_?F2U_-+ns*x=ANf;Egd!~f;DiwGHw)h4xaDfObF2>@?$yH@J3Kou!c9`6|n}o>N9KLlO4m?eiWVT$ffjx zF}ThVOv}&k1wO&icmz6P=Dy0R#1%d+Lxg?a1y}g6Dr#m=c1$f`%>aD>6zqm66naGC z3131(2%d1aw27A|oaNyO;!H<8(s2p~`nic>Rj0lHB%LYpez)=g<*(A*;KxuzAUD9; zh#Q<>af9%dsmSe=F9R~Q-R{CPN9#R;k8)(c@B!1`Qtlu7o|h~n0z|$G&#|!pNrW^YNgpO&Zk;m+2L0fFQ02hC z`QukIs6F9PrCIEEy^la)lR@zG6(TIvuFWKbu9Xgq`Z2DrYMLCHAT z0i1E9M>}Rvn#f^(5oS>6zd#11Rj?4GA{bN}!Xl*>rWR&Uj1drB0y)YtsButLFsKQ< zA_hfQeP&Qc)h5>0M%RwlCoc~;Rm%BMP_2YsFel@alt$SZ*0i(zGju%To=SkkmYyfW zp$BZ~236DyeH7Gaxy6*81+s#M>U6s? zQEk^pV7=^?3heQu29MT8;e%6^C)8VTjB?CZzVB52D$SPO4n+jAC9I9u(rGDMGN3u8 zjVgxqS(mc*8c1wQ6ec<1PyWw~n!!k;CwHVl(U;Ma`vbfovHx?Z%5d^&{1ZKT@;#I? zv7c|5*w1%!u>U6xeIu~{hYs;T?Eejj#$*3$K&lw~r9E-<IqW~^U5xz);}u~)UG*9Jm%@jMsv~1-H^Bb? z0PuINmeq^s1^OH7G|j>@@V`sucj$cPO_e-}0Gt5k#h73xcQIUYoGNODR?C`gw-~^3 z(5@Q>knaVJ0<1<82nuktw1$@goa7lOp{WKDkK$t&^``aCj34Im4vt);yi*$Pp8-V# z!adeTaBm+$RoogCo1Hj0NVsje3yNPIU}TBnSE4GzNgMw} zqxdZ-WuiFWGEtoG=Aih?9r{L~_)8q(fhc|lh{mJ%c_3Ac;?kao;xF`Q$0)9e-0T-& z6i5FBqPSMUG)P6DIL9j|_`-g{D9*_XqD!Q-awz^aP*uFae;uy~#p$ZgD1My24PY&N zhPmBnZt?GZah+2&~Ju2f%ZRFMRjhT zk%bg)TUe<76VS37)c1QyL;r`-Bm(_^Dy`#1|1&-4kFA7rF7z1@c+s6|);84})Arzb z5D}RBZjnDY28?VUcChrWP(&aRz}koioS44%SMbwUj)u{AfTL+DhC9dm3(2w0Kw`JM zFcA_#81}A|$caHB3fo9K_hrlC9+>RqHqJKDu}{!@QR26UGPsEPtPX<0BfhHAcaK}r_e+@%?rpjSJcm9n84r+5vwTfRz55} zQ1D48B9I?oZNv|rm_j@8fbLqWBD`}>T5k6?97t^I6lO_c5&lyz9YISB;{9pd^kt~w zM*(h<4C4E!%5d^s{1eR}{u`xC2En&X2Eli87{p&3`bIE_|K|`7WDwiDrwoI*3o0yT z5YnE=ApYRdjv0g|@;ko>GYIrwAcN2<_#Q|_FbIxU29m8bqWg$1AQge`9IsL6&iMBt1 zRiOJX@QTo#uKJAb$3ntbYxQ6M5Wx|yO_+|7dV%r>>(dC%Ix(5RN6fX-4J{oR+Xq|1Y3qH>mIRkcRvV(6$2k|0-?cMgGHFr)^m= zTkgEA{VY#w=WPwhQ@!kZ94BrahNU1rc)8>e@TAQQ6ask9+&aV|9S8tNgQx}oVP|gb z1wwZI&yZ!z>v-zcao(u}cPJ85KtB)-${fCBd&o;ylGC9q8DRr>IeQP^dJ47L&MtVU zRdUykbLP}^-=dj+2QYh)Lq>nDlXLji`O*{sQ_?^^JbX)*h%^9A-mm$fEuOYxnvr~O z6E;^h6*Y=DeCuWuHu)akGWj0g&Eb15b?B>lyZ^|I7dgZYSI=wKHbAf2n#_aUF`b?0 zUlY~(Xs&sj&7@8vy)e9!fp$@hLK!-nI)&d9HW?v>mL|1mOh@>0D0GWZYXotML3=oLRx zMa>Z3bG6n!pzBAVWY74Xt3ou0Jf`cr^_5}@*Qz{q(eq`Z63=y4CKUEadIeLt~|GgEK8P% zEDKHEFP3$or|lTll4YHTZ5-yNqDB!cYaI%kEQ@a$oiX9NIV@|;p>G7ssyW0BSLd^= zCWywftiOZr?6)eDWl2XP%UbWz4xB+OOA~pfUxZl}`Y(`WX%(CUQV}eR(*tMP!feDW zi?ITtOCU%&mi1;(Rj{nL;1#hfy6Q8_I%1?TIawQN`$y9Dca5Y;>0Yp@Mf&KODmTNR zcF=!Z-KRnaar0E3D}+oYp)$$#0+Sc& zm@G@pAoBL<575Enzf}GsG`<3CC*C$h!ZzJLm_&?QOsJwdSIr0-%hp<0JO*lYgT)R@ zYe;+@Hd-KYBHQmp;uG>0u+j@XwWGT)x89hU{#60ccCi7$-D4RGy;DHrOY>DzGWgX-_1eb zFFW*&K;Ziw;yRWT9Qpkn5RFIR=Ydo)0!w=$0)Nh<9V4(N@@c;aBQW|e5P`J{-VIU_ z2+Z*sg}|JtAi6~UDu=*3y`K?yK3)+5(^a1lcU=L~kbN|oKtT2Z z(i&dKUg3dkY?WLs3QH84F^fe{Rvsx0)vKY1K&Zyr2&yXa)He^o9UqN`xLkRfdzb_$L~nH=&e?(0t28Xug|+(APTjjX>zD9pZrq zeG`brBlHO%RgBQmo`}#_dbDGN)q-eMab^(OPvwZ899A7rS1T%|d#C();Oe&35q_oL=B~0y?36Tjfc@ z>Tk>FV0U-%Lj84BROdM}@9gxkMOeb*P<-sb~; zlS&Tp>G6kFLQ_o;`S;KjmPa@ga3+gTiO$G zdx=Lo#%)dHaK8xSHu^6Rx3voP0I3Mv=6K~qUf45uY?~7lM3+cg<#2lfR28^AiC2W% zbk%3vUOLg()b*RSRzxo_+kB@p3eO<+F1r4-%AVe=bs?1@39X+mV}hOB1zJBx6*W_D z)_ODT^?KKWcHLlgz85s4z7Kco;D68D z=b&@Ce^kkp=)j5Kh8_*H538bP=;TMYEv#4g6`*A|w7~BrjUJqdCK2@D7-=0ZJy`8| zk%v}R1QXCA8IE=;%?>VBek;umE`=fj*#Xu@>|mw!av$0*6~CRbB|sXt+gz9fi5vJ2 zeas0z;s_U}-tP-XxF)~>k|S(ERfdyk{1eR)Iw)mw1ioc*1iqWY5w<$?jo=6`b%+OY zgx7*-JV!Vmq>4F$v?p?e7kRW}j-ZLWz%Rla0sR-q5wr?6fm8%X;CPMV2%O>|xA;LcIVr1YKs;C({vMFN$iv>Ig3Uj>wNPAQxcJyt3x5x|ZbR&z0?dV$oMFfIB)<)oej0OH7ZBo(N zDI*Pe*>0;J^!fRfdxz@J}?}KMti#yysg+q$GSd z2k%!q^o_v#(;ec0cz+>?#^e1QkSfM|X-~xaQ#{%+-fJQ!`9&D-(SLz>uT?MzQW1F1 z@ycnSuxs#`0B1CaE|KTT;r(+!Re|?6;uYaNUG*97S4>nVs~X-1EUa@M@@y5;3&b~% z6V6nSf&AU=w(wLy_6L<0CVy`sVXJJA#Z z_Fo~b;)VUQ!(hLGpHimj0ocIaE&6{*xvcc7|GiK|Ao^o%g#M3pqkq~o+R~rXI2FGg z`_mDUM5M(OSZE-z+g_ORXb2$S#O7=S5*_$J8U%fz13wOMf}{gKKvjm5@8O?lI`Dgx zGU)){GU)){&7lJiJM@j91AlUe2hxFUKU9VeybmfYrUTNRNC*DMqaD)$P2?fJ2-5-d zUmzXOD)fw| zUPLcwfH?;(k_+i4&ePip$LAdR?5)q*IykmHET^}Bht6l-RH>7o{{k>?kB0uwRYlFz zN&utn7VNJE?Ye>ed@pE_e;JxUK>k_M8eYg>#%>CPZfoUjE@z zNn!*5?*hO1;z0f5CW@r*0*q|b0?0(gOpST9TNLQ(jw;C1rWOuXHnrcjrf~y;JYSZHLs2qLz zX)&(_Sq2;WM(P{tBNbSl&}`O6Ya$9D0bE#E=!4hao-Ovl>+dKkSeZR}5w>C=>Bz<~ zSeUO6IxaKv-GUM;&qc6IEzzHWk~^U)Uw}$xbO&lRoJi$BD&}0C_oA@LjQEzxjQDO2 zGrGs2Zv->?phH~uK*8?APlIUuK*=ab6*D7gPdu0BeID(s_&||&`$d=;q5lGzk*3qD zK`Me7alCS{7iI`%MhplLT>>V`F{3|$s)8B)8Lx;L(N&+B(J_))Ox2nb^;Qc&CSa)K zaM%8ZY(c$XNeAhB99&gohD-Lyc?vqE>nD}+h&SzakBAr!0W;r49U!o?DysAR8QJgP zvV+B*=7EmguqU5)G!AtjnnQ4?9i?Tw9BQ%am}}WAB24AZxIR*OMsOqTjO#t+8P`T7 zjsvcb!y*t8ifQ;tc+5s9mGQl&TOZ?)4ovu`fT))6!%nw86ol-2Z@y$;633&hkM-`F za0VaoBeXto#mvdpwqFYKFEX^`A}C7+)!}$Kdr!8mQLF8AQhc&?)gfc}Kj&oY%cLn% z1NHFCMQL*6cW83x!+ja`y2;aa%q)`IJr|p+VgWUZICJq;C~R^&zGZSdzMI4C?sVv@ zdbpL9chO6_>Tzm(JYF$0>WNTMnH_u#@jz*&PYL9lz?KF{B_(ho8q5lH8omRmO zAQi#wI6W}17v>h`b_`SyT>`$!al0RYs)F175U+^a(N&+h-Ex_PH`msWH5!)(5Ig6h z7ps(BusUOjMW*}=rQ6N*2z12EeUr@nMTQ9b+|Ircr$PNu6*WVPUNRQ2nA}64U^h&z z&?6d++y2AQ?F5bcy|js!#+?#06tUXWFLAN%s;o(aHE)-J z!Jh5{-`}i?>fA7sgEed(3*GMo^}0d#0#9hz{vkAi!1gytdw8+^aV4=`G&BO)?^7Ns zJ)!kwC?XKqu{J{Xp+IEk_NWN$#7aW;wcA*jx(L;WLI+}0U=gO@o4U6zZ|}biu(ZVV zU!f|)$$#OWXiR?urA$ocTPCLS-5gAx`;ly9L}28Ifp zVLDy)8Piu8fVj3gIl8vhhV3gsr$i2U0p2LE7ifQYF4|jFWuSk*{FX8gD0)PtTp|U} z04M2hfL)M+OH@&v7tcH?u&ih?go{AeZWuzS_cXdtNAn1}utr+SOBW6)n9&gsRc=aW zTDdASrL&hgr6X%`%;{W@WgwU=>=e?@8{j!RpDM8MPU>9ikPgI(4v1=45jLqa1wuAd zSk1$iI-J#cY#f=e1Cp2pI>J4>W4ov@hZ7*Z7Rr(V*2K$z*_~sCR>Drq`=flU* za1%9TPCOYPedZyxJ}3Vf_+Fk%-b^}oQLF7#Q#`x#E{BW}2syJmZnAe>pAN?F5$}7vDr$yS z?zrq=@x4``V>f)y=N-(z@`I&MLURb7capS>m*@FTEQJ!m3m`(KBb-F%qzc$-Ga z5|Kus$@@j4-sx$(Mx)+_ZB$J~jUs5&M^V_MQGCm!QG7RtM&0MoH-bjp>kv0wolm2_ z0;2IW>Zu@QzdM;UN;(>8)W<#AF^$qhKI|7^8ioD~q)}Q0Zw9Fd8pY`$ibgReKy(SD zC`Y5_e2i(-Hh4ueimv)hqgFI)S4`Jh?X~U3TJeD=FNt#Q6t|1%1%)#9Bxftg5UAaq z&p>C){$M8F{lMfsB2Rm(qGo8Pc-96Mby^4-c0-+ty`mAPK{SORPK%^fyu|5r&wQF} z9qt^`K1bGS!(j)!u_uB_9jBaCnn|4uMFcV_tc{q|vDTzoP@`1Dc1npuhPGSl=UV<< z;f`n{rge1c@Y%?;);hfAV_MH}$QbaOGhlUzGz9>}Q}D8ar|lZk zx(?f@nu;1lFs+xNu*tOemdUjEZVuCWwL{+sru9mPxZ&!2ru8Nejb~cRL8_Q(Nk=2o z+Un7cnU*H<62AyDE%aX?)6y!q2BadG7N>_Oro|uv(Iudz9MgILR237N-^D9pT6EQC zrnQWx`8L%i+W})$g^QG^j9zdo=h7HidWK-BiIemJ=z!K;1yuA-`v(~q>}h+FAYu{n z?^IDUyhus5-r`li1ogV%RRx~VNYy{l2!d4oTH3=)s*d%LDiN3!I$y6+qt-=`sGUD9 zx;}f@NYr6#j`xHj0!b9sMkMMGi$pmap<=NU^f)9}yET526ut(DV;nLDZ00beA!!Oo?91@7JVSC!>B$n2A)(3p#gLxnX}iXdo`P*u zO+}3&7*ZXDO@_p`jE34mbTl%g%RSmL zL()Vx`bC%_q5lFIl2*aRAQi!oI6ZJyEzCo_b%wjVOHw%^--`wqDDVT{WTk@(XOA!dcsGIc5=uVc$q_u zwg)*eGM&uD%brprSt3#+G+e&TxnuuFj`M7lCLzHTnVgu9zB0Ml&7&PtBTeLSei5cd=)XW}q*bs4q#~#h zrw7K$!bHT>h%o@7OCUozYV=%CRZyen;T2IMy6Q7E8XlpOSAn2|;AIo7a9)GI*E zZb(#sr!+40E;NeZQm>Ns@p7qQ50?_{tcZYyV*rWrM^LH{D@T>4RG)?-0x1>NMwIF> zi&Et@L&aw&PykZ1-J-(0Mg(i6cg1>MG!f6bJN4ykU^GcB#6fItPg{vG zG>f2H4QU}S-C7w)w?s=z@U539UzO%tw?Pqsd<$zMzIAvG-?H1GVzd(~0ZH0!Q(=Z9 z#&vu!!S`2`6$<+=qb zET&x2(MY*|@6nDamnQOCzX($<^j{$5(kl2aNJUUCP7jQ&g$ao%7h?oOmq3nkly9Cn?tc)AWZ?ta5G-^lw!#ekz%3A`$e%n z=xMt~vEGMmR82*VA}H2pQP`wde9NR*d^d+;eZ`?~1jYKIL)>t6KE-+fMB_)b)`L_r z#gdLjiuHMqc1*D}k^B52OtH{^ffP%t;5{G}L9sYJL{Th;4TvrQCgmvB{7*5(+8M8i zV$oHfDb_G2RS^jDNOuCnx#duVP5JZ;jz*AY zY+-H0fCjDE&it0BSnY(%K;pLB{5Bn#c`)5hh~jzd$0URWJ!s z5k!pB1LJIAO5!b7&{Bo8PBzpE6aE0=-?VI{)?u+n-uJ5Qw_H{MF%j`i5LSHM8V zF_+;$Y>YnS=imqNMBG-67E|+HTGq z)=sE9Hux-1c?mRgDf~ZJU`#eSIS`&r=0Q2hL3s5pygC@J+^tF;gFo$`<-=*iF$L}c zPe~;;-F86TMxla0-8wtKVIj?Wt+f^GolJpXM?0!s)mRxEfs=4s$aSP%aM*33ievN6 zZ*Q%lq9ahKp{Qg$(-|!XldH6Q9c=p1?&5f-i$@_!JiC_k9YiFL&k^_VP zsbYbKWB0l*G!T-Pf;!2|;6K=o6NJGRD)G)uj~dt3df1S&Ct%l4uGg)%BL@&$BfVkT z<51Ng;TW@H3?>~k!VBR)X8JH}a~=E)K2B|u9D=2iR$FzgoPAXeayoxAbv?$TYs5Q~ zQ`Zf8H0{W-MixxQ^M4ymn);91E?L4x$4j#bXF(He+MZks;#ECoV8C4gH^Hb+Ac5qC zdJXeLC*WH6pJq)@an*F2tEP@#Q<~W`iOlf%tV5lC43W52=@yfHRlhW(T0?<#;m*g(3YcS@er?5Q!)Jl8HR1MxPtL;j?Re?e7 zQ9PKiS(|Fs;H9Wtsq&eGcv#^`eM5bul4c6AMg&M}*X5|NN}h$f4Jb7}wet8W{+pKMz9%sWRmaC0o3V0=w6wHzmC?eCRnn~1ar_7|@&YSHv{|q{T_zPt z_CBpgB)4J__=dKyv$JOXv}(fhSHe?vLXCL;dbvYfkKlq2hQ1y|mF)IVZPu&E7j(mRDVee>u5KbJK!5IS=$o=O32P zc`l{^O-1oq zddd++DX+8nq$CG=qI1D=XUiJES^~0Gr8PY@)o8YX39a7(=m(KpZ6ZYi%&SfSY`2_v zJ%4k(Jw{JeM@K<+s?loI*Vo7E?JWq~^>$@_4dE1UQwQo40GCCnkcLJlQV{I792}<) zRFnYDRak@ddwrW-7%F4+nSGLTbUxELf zK2{sK9EOTERN9*xl?IR2iH-_{xH>*G-L$nvm&^BZmX+EyK}S6emFcGSK#*4R8L(@NQK zI&}O9xBxsfO^#2zLuvDbg9yJ8eLyC;8A_0;f*(?uo^b6Jd?0t+bTEk+a(TWgic>y} zR+?OJFnKGqEO{IJ#~5zHHp}lNNm{%Bnt!7#5XQc;uhQvzUFVR1m}G1ZdRCbzc_XSY zki1?s%{7Ror$r0&b_e0ts%DtRu*7(7f?J)wB7hmqj@{XjJ0}dt>qF5v=nn%Wr{UQD zJy5NflAtTsh`)@lk^{=+0u^(CBT&DLMiQ6?fl3c4FHoRM7+13fYDDL~nBIuBs>w*?r1~?4ID``LaM?$llQ<-gXDJ zVMq%DNCP=)YCJFZ5wOM)%Di&+N*}1|EXn%QWi&lS_pI}v%(;Zy$GrmDT}W1 zQoOciP0{OW0a-(N^+)xEDS3O>^Ef``y{+LbVvnbS`~ERlY)tifJD7 zZfS8J&D*eM8pc7M;hMQy>Kt;tY*mFR7mm&j(#Y~s8lOLsI8233HJ~9}HAs{WxXu&x zrHrY=cOc9CM1_f9VHuwwgiVu zeH>vp(W2#t7&x@+(Ms81)ltR8I&0h!LwN z;1w;Rr7IVkCUjCclyO#$Ef{)Z&2bf zvmrM?l{PLUMXMOEbqM6gf?UOT6$zPZJm=zC0*BJ+eb8C_!&Ldz4h;%beuYCIQ04sO zZN|K0pDtgfMI>uLk#5+hYst2jJrEe=vdr1po ztA#rh%gZr@1lxrPLKk^X8SjeN;xuj?FAF^2UfE6_KPthZzl242S@c)nDZ2|tu;}|8 z;(G5WV9^hNXgsz12uKC7=%>Jgl0~C2-Ba+knbYo;w;o0-_TyMXINjpV1-hkDwOOB^ zZaspnrwPKp;}y{@x+cVBt=wCu(6x8ymKUFP#f!BsZH|2$jFo$u+dNi*0qgHH=D3s$|RmdeLp{4`LDygtL>huf?xJ|40XJtf@@sC%=*9`qMIOK_Jmuq8KpbRq&u)Sgo z*7QsotCe6W;Cy}AJS_E5%ZO9ZKD`H3XgJ=J;=r|MTdvJ4Kl86=y$Fi1LEDN6o}9$m z2>a&Zf+(#y;@@6<0@r8PN@$c>5NBJ)L`SQEG>Lc?+EOgTPovB+*EZ;%Y}-MOi1OQ; z`nT$v^zQbYfQHIxw(C*3VVMK{(`<*HJqhd9;KLJQeI8^VHS|i`RS<$oW_u-|VKSM`{_aS)Jm+@qfq2Ho{tT4?aawe413j=bo zkQ`xU+M&WI?+}235!M~Qz?6R{ydug^SNW7*(&p|)SC>ssjY2XCCi{->F{gv7qO4v} zeeIATyZFrhb7OpN9_t`_8~@Wx4~xOX`Pnau>>s3x>b!W?kbSm6mg=YLFfbjNgKg$- zF&nB+1S8npws1rBFbS9gk-URi=1Kmi>A5pqH5Cm-ikkAfu{lI1ha!)5)S@R;Q%H{M zrIC=V0D1d;XkWP3&HIpZ$$)fpI;bbBCPKbHYC(zDF^HzW4Go<(J$`vbl+^+<4sSlr zH=@S+q&Cu4_H3RqSZk(wN5m z47jmr0=6pGVG_SmZNrft>!*>9>@wMEYI~ z)!IqZih2I9PzN;}=DrP5#Vh$%=_~n8Rhwh%P{8%7X~&1iXpe~~7);77=6jQ;MfzgC zjqq$rAu)l;#e8>CA$g1W)UQL4?NYYy#7aVBAk?Ds)OF?Rg}ydok?S3V*eq#>W&0UD~~ZA?M$d0W3$ z3jRhZNLMZe@c^o<2|J5Yd{l4m+PPafKNp|Bg=bn7oxioy#bedx=-HDS8l0-NJ1V@B zN1#yKNyqvT!1c#=!ta6?h zDt=Y%-YS+UlsgjZc%`~~@kGRtSg93~l~^jh6&Wv$T7*j2*6ygTMW}s-N3V#zm@d82 zT$UURHATNL@Ci(3f-v?eIn_Ti-Y07O7-=x?oXn}GR>T4>nhn@k--IKiknNfiv4GuR3x`L>}kG9+ae6B1B0%;r`mv2XCdojs`VUU`mGnf8d>>Y2|I9ziF z)-7DKPgYkEZmAmNmDiDuX74n-f^XirUU`i}I?yX`2T|QCR8JYNinCI%x8)nQo;%n(n%y9FFe`>1Y#dx7ss9zK80g*&%z50LDB20T*0fXg<+}@d4A1|5Ubhle`Er^}nhpcGIr9o031n?|wFwP?~%7-z}v!n3UP z$+nneP1#Md3S}|Q)U2$!WvskVcVUESJ1EG~_B4mK3O@Xw^m)8PT+a>#sQyF{)$k+m zlRhq3r)F7Lu?u+mB#&|^q6G(voZuJXVJviB&@h&AFjjCVNMY#uB1DdAaj~%4Z^%?HVVhPL1^?{%I$JMPG4^mb`a`Epa|VzE@YB#Ygik-`792wh6?pg$kUFt zn7K*E4=Y9E$yM)8z26u7{$7BUZ=M;I6=^QrH+~2b?`2aNmN}Q5H8PgV@0d;6A|)PQ)u>2XxhEc5t{tAbky&!jJTv z4fU-M^_vb}_P0XP_rDp3Rov6!-5a7Ire+YzErZ4zX=f+(JHNJQcU11CcbAL7lld=J zQR~DmP({rOdm4L3%kBS2Ta;9>an}Biv*Dhf{d9Jagmr6Ty>%~gg{ek>M4dFn@I+}_ zCjm;4rE?0uK+-bZRh3J|V1%}Y6o_BRVSZr}mN?Q5`-h--a&?4;HQt54&qCD% z9Tp2@%>cU&ezqw{#OvnO4skuJ7NE_|AR7O=*#s$j6xm$(doDbIITW(@X3`E|_SiC} zR)#7kF6-BOubI?!J29=&ly74@0$xnz5?~HNKoLi0KxXOR_4gh$F75hzFJ2LX&{aNy zBtqlvcl{kf-H?Lc10x4y-!N0zq8H50vu5D+OjnKOeZ4@kcba!nVdoTnvg^SxkSjX( zyz1sE9ATc)D#DL1${=DwV$w=I0-e+MpHt$q!*=?>ZfAaK9mY}pmg>G_i0`VFbUo0U z8YOuEOUa?^~F+zWMe17~}>!b%%Vo_P;b&c07N$_b_Vn&ElZj5L~!YXrf9 z9KUD{4jXKko>b^r)q4Y;|M-X%1Y`U1e9+hd)Qt{S|6VM+)lOK+G<=oE9#!7q%UR&m z`x9pLgG9H3n&*0+9y@vLaVW8ml2E!n9tU-xeVO?+^+e`tjE->x8dv=^g)5o)ugc6C zJ$cF#>Mcn?@O1MQt+hdtf}<~DOlAa*G^mY=@6XWhcqlqE7Fyan*_c1xnA`}g1{V3k z!eDvQIkcc(#jBp491dm%Yafb#qNXFHW$-gQPRkrm!%|Grz!cSSIQL<6i#R%v41nL| zLL-efVA%+q(mVz$s?~f-Y5BBm$BDKbQ?_k5#h11%O)QRJ;Wtz6i@+&VrZWZooZ@WI zS8$4R@QOGET@`Q&;f?M&#o^7Gj7|@waJ-o+(LzQs69c}QW?_UvdoxwCCHcf?aP&F( z#5yHDBk!Q9^>SgLK__<7eif8TyQ8`xk%^{iM%QE_wMcRWmf9;a;VL)ny2;a_u5QSL z_HLY-EqynhaqkkwT_)Ys4=V8rD+Ics60e7{?04{dD)Cy+(^)E^bj_s_>WN?~aVfT6 zyk);!ngUpg8bj|48B_v3bx3nKid>`v9@UN2dP)&u#Z?J5QE$ngd6sQRuc=!eH|gT4YDzk^oJeNy(f!k5Wj6{q@e z@%hPUE0G=F=0G_I!n}UAutb)D*JlEqDfhS!RfTz&72jDpl zhgM9EY;moJk{hD8z+zVicuK({@RTb`yhFuW)={NGqBc*`?d-(*z+v9<%_hC0f`AhF z)xijbHSr$M2$=$mjebytD~j zsAm`#>dK`}S_SU|sgU_)x$v1omU~#5&|KBYNomeNU=2qmL_rDiJ2D`-mObzKRfhQm zcttQzSNSk60kpea+qgPub89Vpf~z)OpMY=tje3TW56QkMXNu?r>>ro{U#5IDuxo(e z!pw6_1suPq>`Ij22(YSIJ___e08xRhOx(j#FC^Z zp=yGRxt1hd3_si86#)eoIK%^?;4%=6hl150WkZ3nBx%+JI|atMWFNrcW6VWSLB3Y0 zp_DWrA=a*ElR_AwN$Unmh>_;Aq_FXFJx25XxUC%Ko2Of~4b$Uz*wy8ejm?$KICVW* z8>x@t@mBCJT5X5NVZk@Jr^iPtS4`KMTVRFi#Cq5(I$xZEb=I0S7vdSVxFH?KsW(Ej zZ?2|CqCR>RDr+at!j=ytS6kLIbFm)f%qXPwkc6bx^KGeJDcO5EoS)q;%g+>TspV%} zTWaAq)jYzPmqObz-9Evss>xkDX1@eJ_B&|O3mr1L6*@UvYHwC{Or(M4*;VVs6mF?q zX>Y0J5~ay~%uG@x&euSd90;OOrGg_oKLpJZ<01Fp6%i%6@)4!NUdXEf_#6$;P@Q68 z3Q963cMdwf;`CXi;OCTrbmdZzPQ1yC!F6^bSjTfYwDXRPo5iOb;juzRryT8Z@fO&L zG;#V^6_$03uO6>%R3Alk{iK38c>tOOKL0lU(FQ|{`zW4!^bI9J=N|3ZvvZGJ`icXP z_EStX+gRii@+2fnvw`kULOLvKUFVTVMG9ulMoQHT9XQ)FtA--Z`qWQno;VSP*)soA zd7V<%cK;sga_6YoKb8MGSNDV#Z@{3D?8)z}7pm{3 zv|Oj&UyMbFH_e^3N7G6veLoqVvgu#M3+Iy@;(D|dj6JRe(fAk6<3LKhaAJ}WCn*`t z!}!J#$TQ(*cy%K350?;P3p*d2^Dh}Ys<(GO_%9m#*?>-=!ZCzO@4lJ?oq6J!YZ|!z zy47w@k6;hyv(&IV;v4Z)wM7RoUnUK&d?AvzBK|T zU)NTxs$5w)`Q*x$`SUCAKka)=kUd4>!dzOr0+Qs=d|U7_UO_OiTNn;77#qCuNKq}+ z%pVqkw29Ro(ZVAR#_TF#__>*tqVEpkPt`W~4L&cpZr$Kyb)vRZVC#|V*3pLtt!!Oy zQ43zvY zDgc{TRKp^}bRh`;Sv4XkOu5Zzn1T^Ygz4^I<1nSGSrMi?NC0xg>7k&mj8pZL@&g6x z;rK)@GDijKVpS9e>Yn8T6%Xq;SQh9D)PWqt<>=hk`u)M{Zj9I4w?o-AGFqg8pZ^Fn_Bv%fIS^}{iM238PPxbJ zYLM2nGD>W_8$R~7_pHHl^=i_IC=xFtp$@I{p%i+}xn#3=2yzHp#+s0rr z1!TOlRD6jjJ;N|F{b3wtD7N?F)|bq4LsU|BHBUxi?;_sqWl50Y%$J%kpgTq4lh3FC zq>k}L>29`->GY_y_c>Km=cY$t3c_K|q*0$-i^CEd@Y|$t{te8!(MecotCCNFmi__t zgvQ6{FdrHpqa$?paa1Ynj=?5AQotF1KZv{gq(Pi%TR(>2BWvKjy;NQw#0PpD4%J8wv@IIVASA&i6^P9CPSbPiT-1C@By40q+sR{$Z zI4(m&5^}ejj{WFyBgED!P;U7^IHLe9x5l0cv`?^dV>8f15WvRiz zUeQt$x^kgEVWM2g(ItSNn8gWg2Tlg14K!btzvy8oTWl|&-LcxiS(6R@ojqLo2rA(E zNo7Ie1vT(UkKWO%s;F7T3t&S{+C`E}K}kO?un+o6xj~?pG@{T#vxqf`&y*JO5{2{l z1#jKDHO=W7jLeJ4Rh}#5nQ?$WAb8QVg-W%kCaKdksN!6yuBkAo4z$^_aJRu zr(EcIC)<&=VKOiml}pPKZ(vY_ZgE#q;x{mQ6!bc|yXL8g?zSL@1lg33~sKna>d?KmDn^BeFz*qh6JG?;crtMnNZFI@#;R_%C(f>a#G@Uv3F!h9x!W(oYy$lk z$R@N3-T+dF0=|wb_xEtTMzIM_eh^(EB^o;&wMDDNWa96jsvr~pz$+pXbk%1vaT2_C zP1L6+*0!eCMlE7RsqC!z%X5e-L_Y&aWyH6BG=5Lqrva zNeaW{?U?T-EK)^vZkd@eha7X@g2S|3$pX-`8+sA$F^ypyhQ<*{vb(gCmtkDQRDdx( z0D>2vUx)7*;*zcwjy^0dO*4*G-YiWsRzVTEmr1Bq=9Kj}Ex`AO68?k=KbD2<5Xgu#&3R12l_9NcW4!? z0jUVy!STv~QrJ&;6$z(Ah%S*R%khr)fU1Ibyce&CchFUzdB^D+r|aXRYmt0Rj@Fvy zuy-*1IKF^>6jjg*7P8!tmWu1lkdXtt&qI$cen=&4q9*stz~e|tAv~Izd{!0JdD+ZR zlVamo4CP)>w;P5M?M;oSJbq6mteQTPzgabXCc9acep8mFT(jVtS;zan|2p3x zV^E2l&8qW2P7LQJ+vDZRbLSStT)}2lXo$U8RhEck0!8>lQr@!lQr_)9M*WYL*EG2xY{9ZxOyIZD;v7Y)?^;8N`Qlg;a?MQ z5bD$e5&aj)8np_J0;ver$mxNxzA!s6 zYh-+a=n|+^jx|0HR28i8`FKUFk*<8KF-S??WCu#B-H)cAcbD~6rQoefLAr7&NPB0q zyR7$U(OjCGl%O>R+IDOAuf_YWaa(iIzUy7itF>CyjkVSKj%)L#%E8H7pkWZnZ^A#h zt5NkHhcS(NtzWMsXs`7FJ=<$-YASYFt1n#}O~YI#_g7om9Nhi>>Vx&FoI9)CN@ey` zr>aSIT*PT{@bHn#NKI_c4?kV?uVM9Uuk&n^dCSNdzo0)HFIG= zO!iCCX5P1=!yWsdWn8(oONTzLJebV?7A4Ic@lSBl#Ocr(>qlh3?WMi|A1TMLTwJTE zt=uZo=v|`hM_`eOFu#7}(#uN)r;ph!&%~$_UCh0~a~(dA zo7JKgLtm(_#G^JY~S*j^wAw0-X?`B{kp9O=$q%V`;{}5-T1^HmL@=NQIs~ zuoL5UYN`BAAly>Q=MymmTe-lH+o}~}zYPX$DtIAOE8eZ>%Ju3ZqpJH2o)O`hv%&NA zXe1S$jt!n~EObFsc)m^*#ctZAe0a_W58o~e^o3{0u1#r#kVn%n{U|ChkbGD*EHX@S z6ZPGy5kXJuS(&dpyc+YK?w#c5tNI* z%|S_5vm+>Z>t;46j{tQ!DETQfD38P^dIRoPyMsO#SbPuqfK_qLj?b1~fEev*o{pnSri zndTFSb+f`CkV~Li0djPepHHl^LpFHw%N&p7`_864);ryI^bkLjKi!u;lb!CP-&7xBPTRYva}-SXK|}26KFRBGV>%iha#l(9EceqME_OPq z{j~ZxsIm7(o#&}Pk++976BFLC=iEKC??P(|!sFaS`yOR&7raN&op-9D9+iUy4MUDJ z8?Dw9tl_MUX1C401r+m-r6x4cL)&I)pog~2?qSrD*)S`^3HP4AO}5?%ga5Z-cGm3q zRf#RRA3ZjZd|rjEs|V;A%NiWm7lc2Pdc7~}2L2PuFUo#6@F3R>d>2(wBNv$3jCBLM z@Q^NSx)w)8rUNg@Z%`JqM7qg^Zy5|HebBjK_Kyy2BZhW=?-1ARUof=$cM$E((5|sz zR`%}$!PCFaomH9%J`Hbnr~n+>x|HE2kemg;HUz-e{j zh5p2lRz`O9Xgpf)lV7+!V$s>zs9PYpaZe>QVru7raeMTpxLOr8(|B&~M>!Sr^252k z-8IGZeCuN`lSg4Z6&o*>b)GKm;6?T)=ok-Pk&+{Ns8T4cgc`0Y&(dhuqkTwb7gBalC#rs#PjVJLTjdo!ad!OkcDjbD48R zW`5@r{;sC}?hB^BFu>>%(_et93@6XSKhZl#?m#IM)cKYP>U=k6E#R9S`bMDo8yw;~ z))b)ndq6ZE)z^ZQJz;C^T$T33DcaY0v}0J;L|)?;VOU51*=VV^U4wP4g6D%&1gvws zM!`BKHHa>e>dLJJd=OL>sQy#DB2=fVKBM|__@0}dJ^e4>>f3Zi_cx2_1-9>BSbhfH z7uXsIgtu?2^hqH9hzt<+xH%XW_0s;ZDynnsqp(`6&^Xqvjz5BG-QawoCp4&^{{Usz zZ6F)`Nm|1T^=J5?elwgLtq16aW@7>lC~we_RB}~m1lI43I%*RDMgs2yVg12SL?G5< zZG`p1Hr9tVOGRs^WC7p`yTyLAU*Si4yR!+vUnGqSUhfOwKR&?n67Ww#Rfdxj@J}@0 zUw~33;PWjbUJ|~W1NfIX^o;=gH4bqd^a=pK3Zn6VzYwH~0bkk^0sl!J?HKSik@Nf_ z4EX53K)}~3I1!{G0H5QP(|=*t;B_gS+90|_!Yc*%w{ANJHf+HElC7Y#K>l0tijbeK z`i%T5TGLZ-Zb7TH7C%}D-`(~@|Dn85)IcAroL*r60mT($z<;-l4g&o%_fxZmcxAZ5Zm-!kEz@8-b$ zPEd{=9uaUq&mkTN_lrO@9`5f0YZb%2v?s#-b{_2*?lqBr2Ka9r_T)n8=)XX?*DCl8 zx;uQ>p5v9%ePQ2VxaUL$(IwJbDY#EogZTu?pNUt5@^sZ_ls~@Jm~M{L)=r2~(Y2$s z@fytS27vuhZm@S2*9*))#KioZdNR6dR;(G8E zj2L_tMB^#MG)NUw2x(8G5Fhkt#}q;nxyvuYBL?WdKnkH%a0f_5Pza9KCIp$u*jeYTyBOE%+r2>e#ZY) ziIO0HkM9Y`vnRWN`~|A0&Zb8j^0}!N#P0+ubp!EEOKXr`!6pkx-&wZa3+X2XLOOss zerQ4jo#d?%7`{|_qcnyOLlJ=(jLvh-|{>)U2Kvlj7lDuObYBiilwN{}?d%hhBDugUq*ng?^{sQrV2S$Tws#uy?!QB41TSb*_4}xrp9mi;vt7YIVa$ zaxJfMk{@H!1t#|e3mOcFwP4FbaDAxuIT!ec;!QNlxsKtMpGV$9sk++^l3 zGk3W6PLe@DtS`{3R2?6buZmRUtF~G|#aeBB7Hh56YEjgx#j2npTD3m#@%^l|-{i5x`Ged!=dAr$d#&|Zd+oi~&T&mzc1lZVvn_Ji&~$HeZ5D?U)`T4uN5PSn{|P{ zlfp~S=?v=Qfa)r>$T_Hy?>Rl2h+WS~J#sxK^|XcObeX5U1w5xqJmk($w@&c*0+1H> zoPL0@%lDk*K$9DEQJ{6obFxS-2$Lw!iN-I|bFwNp4O9g@CuJTKw&q$P!TwCy8(9z{g@NK_m9NXNGJk*r>532erF4-=a1PpJkRCTsL$Br*s4Pm#=}G%{ZIodYN3ONawdsKhMu> zO-ZElGFz{>bZYC^=+JXSs2Mv6LwA%sx=3L^|138Ie5d`#-&*tKNoHzD0LBf!2HAq6JmIa{#h^g&BcqR^4q zCAz5OzezMtzi^-Qw7oB!9$Au-r@lxQ=rt48R))Sx5EC5`fXsj}YW-MSM6g_80J@>*ms?12$E5mPRK^xX8CYTAe7J+^@dL%hasC@nvepJ1r`VyQ{%~ zw2X(Atd8^0*u&c@Q}fZF6LTsx@&~1>wu{Nl)O=bxQ?r~-90*w=#=|VO>9osC&8t$G zno}V>Ckf<}TLg7m9DOLowR^(GB1wmuE8 z4UUXpD&uqrh_5xHJ}cV*Z$|lfHjp9+as~Y5)D(@GWZ;|?@Z5aOZy{Q;5++}>dgORY ziFyi;j1wDcZZcTh;c0Dw_3yWO$Zh`T9G`d(NQG^>6;=^QjmByOXbZ72|^00GP7raX2lpWznX_Oqqs4 z#+i%bbOusn$Q^Ma?O6V|meZBKZj#6-MrK zUgjM57A&RllS!EueoF{6boHl_13~ycRn3Vh8z%n0Z5C3@G?+|O=t#$-Sogh><%pTVEz zN~uC&tAf)&RRD#RyehMuU!6o@Wu72i!f3VH-?gONXkhhvs!^G#*u$1=*c)!nt!S#; ziBG@8PJH?`%OHHhWVzOufPK`-6;mqhz_32UnEI$+mXh6zUmS>gTb7-H;(c_rq@639 z`fpe7-YvyIjjKU2vcQGl_%2=4ZaKZ!k`?Kl_-IxqfZUSj79`(KU6)(&B^QE_d`dhd zUn=CV03v@%kA*LC9F-~g^C%(`k*PLD zS1r^glRIS{kS<}f+C$_G7$Jek=g==kWd1eFhL5VkI- z8>sxGR1^BG(lfZc#C-|nvz}<%$UgDa;H^Ea>HwRcr;BP{zZ>=k=P)FN&X=KKouG3L z?=5^DrS1!SzCv;$h|lZ7_$)xU`MaH=>AuDN{3N zs*Q1abrz>v_C?ENvj`PzY`Sl`28waJKWZLrDUcY_niK0J-n;klW~$gWMknX>sJ91XVtAOMVh^|8<~sYA$V& z{AHL#AvcX*Byw97yaiMRkXy-XA>>we3(_U5S$oL+b2L>T_b=!dBRBt=W#sPPI<OHE);$ z__lkU!tVuWStt0N$A1gJ4DGHVyA>kSIv1X)Z1(z?4V57w4i>WCC z$wvC8FfI=gm5a;jk&DafX$xE)@wB%9E>}F{k+@s~X>nXW8dUkXEcr>eyfx4|h07Mn z3&SJ|mudVWaoMWi*`O+b%Sv9A!OqnTHKSJM2+}2tRC~C57n&+?`CasjahZS3GA<8j zZ+gqt8t!PRO~=9Ws#frvDX$wSeN-ByJ+)-OdZqs(D5vL*HlPgMe=h|`NkRwE{kOWP z=F8>)x;;EdA^3;Tz)lc6Vr(oR|7T){0P+t@&IEz{tT2#Ypl9OeNGUEn6@N$%RNJ`z zFp7x8b*hbV{ex9*IV(qGzUNQ;C2SHP`&@R$4~@INrn zItBg~$$nuH1^zUCk>GDt@H-mr`1^&FyegBQs~`&el?j7%3B%SN_&*Q45a53m{bKOv zU$YGUPqnpobPUIvCx$9<_`fCw|5cIQZ~>0Za{)|6886^KUmw*OOaDu4W!V?F7DLjd zDEzoCs`<(}_5}>bQtrSA+SrLZ5I0ViNAO}|itq>$$)BJ{(DL3vvz^TbQPtVv@%dNl z5o_Bim_ZSdP65@%PJzBVFtR^dV$H3Ck(4mr=|1LKK6VYxEbJPn5l|`bZZ;!5E8f8e zBA70{gL|kc1Ib^}KZU)6PZO0J8c>g1??63m;T?S5)7}E!!9RM)BfWzML0a59cm=5P zy#vWl@(%tX&^qNESR|helPK?i#xK%4uqt>Ts0w%oN?r?j2g;m5x`dHy&pTN1u<{Oi z=ofnj{A-rI13NTO9*cJkVnPF=yl(gfdDBl-OU5a%0|3@XsnCFYqm3)O1IJ(ty5tTV zsf(KH(17AW$`?2k4eZ1hh!`8o5jdIHAsm6jC1-+;K(Ww(=w@**V7(rww!MI7qKHT@ zfNF~f4Wv4wr8E#4NRh!jr+XL1|H7dGEngfOSZ79eR=|H-1g|Cd4^dMFk}dR4VesEU zR4(|dM=toQr!Bz$Mo)VSfd7j;tWQe4#dcd#1pC0$hWPv;;4km-L4 z@IQ~{bprUoF|pwOyTl3s_g|1)3BrB&7~4eYd=lK!S2gKhZ-T3F_-WS{&4Wi1Et@b;(Zx_0@saDNwgajti40 zP^a;W1a+%|{Xta#)Rnv{qn@iCD&DUQ6{Jg;ul7KF98DFVK0&`2)cMyegZhb$N_l(> zM+T#gw6)wmugmEMkY~1VTcu|pe2M!K%4a>%Mv`Isl~N$o2zLP6FV#iO$@Y1x&ndvZ z5e@4Euyc5CLG>G{`vR(OlAH)ab;RzwDG6cLHhR2yToXIGuo zdM$Up-FMb^u$<}k=bD`Yo8oN|VLX1D8K_yo8%TU`tD-Y7yhv3_nu%=V@=t9D8Gz3OGrJTjAJ9eZmP_7R@gar2YtgDs(6<%8 zE$Dp~bzDI2DUt_4=)F9=Urq|1a0N&EEB&QfWwKVG%i!z!=7s9EZKJp}cWi8WRRM&) zTn|;-2>k*S5sA=L8zc0&*?n}yJE`Tj*_Gm8nbX|JHEWFb{u|_4N+g5*rA9Pn1?;bn z7!V2e)6|rKWQzVN4E9Z;a=~6ba=~6bZ2|T(p7s_1``3BMBfjQIU49FfrcmEjfshoE5z9k6^FF`xB@s1Ih99Phq@&I#IcJuO2xFw;$UI>FuJr zf$@i@rxR`k&`1~Emu22V5#5K{ZZe|3Rmz7N@D33DHeFQn#dCn@ZqHL#K7+P(g5~++ zV4?VXi3tM5-z51FMDdftVSp>8h?dT&HVRDf@7F`p_7wl)C?XQTsWt}iBePR{w*y)R zo54?ESJS=7HA*}+KRF7vQxd~~{Q)y*vjW)PiD0J$?0=`G3?vWHKZODNr$prfwtD0O zwtCtEuz&4oZvnvmrH4Ecu=oCcJAi#JD$ECL$xj08{|dBD0k%c*lQ4+_Y#P5vz_u#* zI;aW&wvtz6zjJj%0k*PCkS<}b+5_wXjF15A)9DujHvgJsz+Pu7?v`Pi)l?^A)7A9H zK({Hh8z6pM9*EmjW#If^e^1q^xK^*Vd1Z*d1cTG1=>CPesOBwm4DmMKQegi~w6YVh zj~y=y_BRt_1ngfRc@%{GvxBg&_KVrzSvpV2djUUSRF7NRen1UHMEU_#8~XukGk!p* zM_O{5#c5&C)BVh~hU_VvRoGK-1dn}&ZDz!0#bY8~($ZwEvJ_VaAI%Jor5nIsYSVm)WD3_X8nsN`N{D8vI_0?#Mv%);aJf@;Q_8 zD}If(cH&nQ8%N8#SV8<2-oQlH5Yt>6;ZkXvCS(qG0g%R|uY{ogYeIQ7?BN}7& znVde6I_%z2K@9yQDn;9m^-xDb%qbwXAZ7vA(_C7sY^&^=9K$w@#>_4JerLHhF>_1u zZMy&KU=XDdrd2-)KyW!&b3>G85)feaPiUmrADd@izj>Z#41@ksavsW(qId}XgD5 zS)*2-sE?H!<*j3tnOlhNv!J^~vI5{J8MGiRoOUs}SBnm$uNIXhlJh|jHfz z^^soYPU^1iDz(VD3vl_mp|NtkzHV@9wK_H^CaZerlUEV3>t(7(u9vBvw(v4v?`f~L z0E=M(xDhQ)z^xu~dyI0DC;uOiS|(tjsHhzq;9f)|2YMj}x*2Gl5Ij8uL~?VOM0uGs zevw|L)uslh3V4~yJSZn2*S4t0l!7-%mjJ!?yv#46slvAcbUP_;H(I#=mJ>0+e|#^DTRai0H(usTW<9E^zDgR%@oW(emp{?37Ch8BO;w*Hm)Y>g*`zFkkrCH{46I7X$t~xJJq$Z>H~l zKc#h?`M?n+yw1pEl>S=EQCvKaE z+!^Xcn3q9SW|BofgXR+cYrH%V_n zgh`YWN8=ai#93{+5L5-6IAtD`_06?R%864Tg02Z@Y0rs!7n&-ZxVz~WJ8}GLmYulc zaFC*JRcm)`ywVt{4zHTg4o!dBcR~SqKG|+Ln!0VQyuI#k8Mz(F6cj>Pdzf12a$jOPbjtHjlcSj^=ZJ$r|9=cKYqw@J~pQQ!>dZZSxHen|t@I5>wqi z3TdqdH*hbfZH!#^v;tZvyy;Q$Md}=ljZw1Xemv{MB|N|SRygBa*j}je9IP z5VB!~ZqB}FwBEQ{P4S=Vb>sUjHzo)=^PU=M)aU_Zy;9 zXywQ0r>ommD`f=9oy_u$%4>BaPu7j(U%p1Zgen=33iD27+?xmV_m{S)sle3emTN{E z>jIW)#dqN??JH?coEkk5H005a{Kd%W7oWTzMw{#6o8(6xuq{?|g;0FjiqE<~!{&?h z!uM(|Oynt>x#)XQ>h*UnW-%BU7xP+R6LI>5D7&7#K|G;~#1kmfeTuOX zHAg*eLD?!R;V0wWX2D7&b=LON}c3EDhBv-NU<5Y8}nYb{Bb>S{jA7hE}7*{PT<{xFT$DH<_Vs1d~Gnx^3P zoC-E42UuV)L9r#$KN;Whlp{F;znVQ#6#J(}XObi7iD+qZ6#ZUd-u82EFxbidc$00& z>C}+nEIPMpNOK z!}V0b(K|GG^V+V&1E)q`ume5ppPXLj4a!W7_VasU1F~w9?|qXsg3YC71Z0F|rTfh7 z{(ZXrzV7!WO_ZIy2LE%>#0ibQSd67%MRG5d%59sm+m@$YJQ$w{w5C9y*4rA#!`?3~ zL@X$M$(Sue^H%fIq~>`D^M=bPJ}yJBRtUaD?QDnpIZ_*A`7 z+FAk3j^O-G1D+NfG3kRbk9LkWMu5TRiIoy<{yQtgF!db4)U%5+HF*Y6oPHrit4%NW z$OVEc(bBZ}4lNK|=Ap4Ic(cU7{U z^4Qhe#;WDU=2fK=Pb^&_96|Cv>y@GE#4z@#)vDtqY#M3cAsSyEBB~Op2giA_!z-gnIQQH`(i4 z8dBwaP5a_t@CAXr`o5g0YHTYJ9X_OUzFT*0lJIU%_XLAjS}Wpe@jX5{8ACfTj^ERVBdlpOdYZIARg7_U}Cwy zE=s}nN*lJ5<#-?V)f2WkgT(vO`-7gv}JyDOS3_{s^$>Xfm=_taM0-p}cJwa3(eEcq1rgYmw zmT5rA(sFcswUMQEyu$?z+`g;)!Ub2*AFkFtH-anDBfN~7q8pd?2%Cp!KgM-V5bq~H zM7xSfh02j)X!$w1T`A{hJGanU4h%a#*UB0&f?nsR&PBSh_X5sO)k7ZX{M-Q2*>rv= zj4m1GcYegnXc46Hh63HSaFRqM3MaJ~Q3aQPiY$LfJ0)x?l~Aym+ZnYor);tjU_gRP z*(VkdmuR%~ts#B@Z53NoK1jcK4UvEOmgg8jvI;C}4T$mrN`4f7nmsTg7A47wkZ zMt4Ql4R~K{3d`X8=V=T{&sR3hXIiBh;J+Y;S&dst|B3+o=X6oc8+Ut1zn{>0%Xp<; zFK>r!#Wq@7aFfrVZEZRi%h|cmT+VtI`$JnEkbMt&7bl3dLCmnL+e)fX@&(I7BO)+` zP*mNG+7+VF!<#%pZR$KjxY+as4U z3fcYy%n-=-eEP-6#=mA6*-o_0sl5wR;hR_@)_X7yPeYtd-wl{MiLJ0*YM(UrYf2}r zDW#Vree2rE+ppYP!QnD)zi56sq*Mo|ThDoIDRI}aw0wBpm~v}V%gp;|#3$#+UA47e!7%Gj-Tu89 zElDF#?yBt@JOr(ULM}Yt%0%wM^SqM;lDO-?;vw3L*KSMS@2NO`QN|t3Jo7oeZgv&cX%VlAcPjKlowt%qtjdxHM+R5}T-(^k7cu;>I2xh>N<9`%_ZE$&et4l1)4DOSov zzobXK2lxuS(S*i~qpX=E73tA5n(3Le@jUWElqGk-A4xwsnq*>*&2P|LSmr3{zgP%x zzupvEAEYU=mh4g)3(43wJA7hwVr;snJTZ(_>q#uLVP zEgc*zO<+mBK3N{BV3B&Fgfp>NzJ`L}X!z*1=@OM#86L%U5z!J`kxfH1rmQlJFb*0QS%B*I}XcXibq$_TB432sSIzYgUlte}nmEg~6wQ@CnKh-bxHXHFc(`ckk&fH6LYdpZvK*AT-NVrW zDD!3yd8D%31yV~{B6FLhw1xG=L7Bv-8T%-crNybKA9?s2ZTCt2jNSL_qv}hp!kW9< zKLhIo8`hU>ww^WZT~l(P>_@uAY}!5>;5R9N3?_aCpCUFRrlBo1QYAI3C8~8hGtVqQ zyHr7kUJj7vSnRg~5U3A$OO=5--jFC@MS;o=TGD2vPj8iyWhjHtVqW{*05j~ZQm)(( zo8(rhZ*w7-jApk=$yX*wdWdo}73RvmyBne2xYu4-yT^ZYI&)$2D;fs@UHZ_2q%#JD z2lqFg{uI!~UwX(Rb#eYrx}}SmE~WsBc1dZLXEs9VH{Oj<`t7OYa1@m@tw_zb$Ys0j zs9DHN;1bTjkdPeifV!dZhxpSZSNWcyciQMRZ+o*Nn4&&_TS?xb@#9+Snk3P>rvBFa zV%Z#kgrt2cTezZh?PM;*t84mI#LB$<*63w;WquQCmP+VdnZMN2y#lItk%!#oPR?ZO z`5^5M45qdvN*tt(L7KU~ZHeY(dRwA?=(O9X7 zkK@wV%A|{s3-CF)DK0?I#p?S;`o*j7{A-q1 z-;XH|4{yOiwQ=9dyIyn8Y%5b#-B@owfDo%+mDop(QETeXdh%lRi827@fvf#nrNk-Y z=I*^Hw2u5jT~zbB-M`VybU3?yy@2?{oN$+Vt>?}fwRsM|U;N>6Z5mxo8=>4~$SDtj zZFbx(3vzY(+CoHfwa$z}GD!nM+%TG%{0W|QxLPN6-f4c5osp?BMTNXzaW&P=mMpMZ z_M{ENIN?^FfZtUar+^F10nN-01CaBD9+l({s;@VBo2=F^&Nj!#Zz6$lp4VZ~I**A$p(&eUajN{L))wetiF5s(t z-9v58rwLU{0nw`6 z%>PcdB-#;S-{}(p&XT-H2c49_wxFI>Rdt;0ulUn&^nB4}<>U2n zXgz%rJ`L$<@u>N+bOPr5S`E3maVi-%UyvY_b|P;Qrc0$sq_D3H%SgDHrK0Ij2lo*1 z5?zq$vGv65^ty;nOFcd#@Tr~7RP5;W+(JPs)HBKE{cu2*vY$4}we6M0O!738ooh^> z3%$vy+yYnVJO!-${wgw1Zr-hG1r-5ks;|5LYx!BAR!kqjPKDej$!bxS&m^G zSF4OycT~b*40Rs`vhwlKxqgeV8<7l7d}kNhI+y|A)@@d1$$6#~iS5!Kz))MbU7;-$ z()g_|s(Hii4{12v-VITWgMOBEIdh{LD?J3ZQSe4JmKP$DQ4KQ?$uiKVqZ+@&ICU7+ z*pDM?Hp|JR$-suFlPBxHk|Gg2Qh3B=EVU-KK}S5Y(T&h&TDFs?QOA3eb@Y$5MC6LM z&3<%%LmYE1y3DvUWV^w*Y?LEBX|nehN#ECgq}jwK;1bjo8RWQ#nl&J$Djeik%g&ZR z$RUJBWNUJxSVbcp!-4kO{>}it^+q}dxe#xpL%u2y>DWbVY8~mg&ePxmQ;r=Ta$Ayf zA{{RSY4ItC%QRo4;{xiih;(R1W+EN>jdu#D-yUU0I{Z?i<+mB}F{}WUZCim{Z-*x` zn*%&1b0>W*(uqi4Yhy&I($`W3ppdVn%&k_@tgjW!W&UZjQTSS)pS%w4R*O*H1<~i8fm~{Rq1`qu!;Kf&LB8y5ca|<6}8YqE5#BuSw>59VTn} z0QX~%mk)ml_hS&s>Z2p6^`P*FT2PXO|AoF|U7h|Z;xi>*Wu|cl_L9UQheED!tNy}b zc{tCr!=S}F6jcg~br}6(i^acMTP)dPn8yyYr>wDZOm0E;i=k_BZP!t1U$L4eX2|m_ zn9NWWG$F^Z3CR@QXFXBt;C9aRWciWUs4Co+Mdh7k93wKJShgakMN5V|nUSZ;*J|?S zOLzYS(dxYzDVagt*$S}I^OfL;=Z)4JX3jafcO4%xH;hU)P^sDJ>{6?pZ2sM~`s{0G z$v*QMey{V)?b%gmLt3A6r@B{o2y744l@7Upe`z5iIo0)X%6NCl2`IBe%Pm4L7Q3bJ z82i1a2s7K?6VYQb-d+H)Qv@!$9ye-MuV>+*Trvmnrq69t6Cz(O0^wy_{VA)-jk0Xz zla4$|pL;o+?Z%P%@1vz1SwfXeA+>HgJ=`sU(WdG65uzg0{EEQWBkM<=P85e|3fE$tZnS1 zOvbcv#L9_0Ql6ZwU~8{T9j<2KJxt1AhIb>lqK?j(%8e$a`bc$ZY`8R8s}A9esaTR$ zmBI;;t1VVFVl4$Du!puz+q&f4#M9p7Zpm6D=B}@7+c6S3x^?kgL?LpVd&lJ()-4PM zt}?>%5-mExd8^e%hq0!=Z4Gm+va38kIaXOynyyY^p>CoTzJ zh|i;lG}xwOPMv_I+WfXH-HxDbQzA^Kw=DKQqzrm<94XOZK4^KB)3BGSLqk)z4$86} zTdTvu49~y20wi7N|nCHfXGs6k?s( zb1rHpOuVf7oi?LAE2U%j9uZPu!j=1_87&+}CsoDINpOXui=!Q4KoEG)dd;HwOOI&k zxFsFCrvY_yTauR~&ujn8Lv0IoPT2B~Ahp7l3%DNNs`t)vZDQsYkvo4Eh)k$gL@gJq zzVS72v`0&tZaNkr83$L`mPE}0_p$yyTD7Q({|xYe0Of1=PN|@7Ak9>>3jy8U?%4P9 zuaO=;leo_=Tz z3@2f{#6upbf}25VsbJ(`ewUX*2M_RYB(07sp#z%TnS})X#=DT9-yT7jZ_6FKQAVt^ zh%`fA%GTIHv5?yLCZ`9OO_C*-5J;IKmk^HTPs1yKkp~N37tu(m@vp_F1vLJQ=cQ*3 zDpM@wT9UIA93B+Y3GBfV6BX^hp4pOKBzVdx!3=Esjp$A8r2ZBNgZ3tGk6@-8abjkd zN8CBJrc8-_x=pi%P2$HR8Y@TsW5kJgTQ4rL=N1@)sJCfutyaf;2Jov?i7>e4<~3@s{U78H&F|ednM}Xs+3td?C;i%dF726%w*sqoz)> z8Q(<2IrE8RoL_~dv>3IqGI{VXRGhz;esP?if3=SD%ZPbr*PK2DPNO{io*UdhQ~{d` z?i;$isD78OpD%KEXusXExMfL^brBbF-&Cu;INf@{vw0nM9K zY7J?~>_@ISdxq{v$BPAqC&|;P)a+tGdyAsJa*eJh$D^(eL+dMeoyuYx*)EyK^7`Gs zKx8#UX8c<%M`<>K=|d?A=p>jvfwBTIBP*DGP2lTnFkQE`WiVZT5gSZTR#E?vQXKF% zNIx0=tXTG+gksrz?h(GEN=#B2D^KE}5J#l2OW=d0?+KovPAn2WcWv*U^?4{fDK5L`n)UfCwm4*vfdUhTmD zO{k*1b@Y!$%YqjLKdi~;;y|w9G9!(HfhN8t5zsu)3c<6F&*?67jDLn3$v;x5S^PVs z)#!=EPj~5jA%84Fq|Tzb^#aC2{^j=SJE%WxhjSOozv&^crzP(2%Z2iZo5VX}~CtOG3;&3-P(!O+nn{ z74C!lBA_v#+2RAw2pQAs@t}D-ht&YDbg#?VOfXr)=wVWVrH2OY9kBCcR?*e0Zoxwg1 zTyp$7E(D%WcF9q`GUjG~wdANf=L@qxNPHD`W{LjLSVA7AuX&oTtxI^7@hcwkNb~YA zNG*=E#hed$G2d^QCN!t-m1))tmfn zfW;(2GS9+?`P2M73n#Zcr$?Iz34AF#0`0#V#oZH)p%L$zd~mLD;D2X*bXzc@RAN6a z#H$kWl~D=3=(Mp#Zje3{CbhwL=izEkg9|9aaUOEJzd1O28c4gN2=1MSFN8DzTPbI- zW@JVO^c$}Z=(n8cmnDZyrdLdi9>jbtTUAUKmIt_8P#4a(ysuK+P8HS;k&8|4Z}aMh zGkcX%=RDKQVk^8Y(61N zfnaj41i6Bd%h>OTC{-S?Ri3?y$LF_NE@P`$hW1R`SjPTW@KXfVzf8Y4u+G0)2iCi? zjC~}nf8++#4@@s$6GdJyy}4ueuhNM&#VuMd9yNuHo?(P$X`Nxq9`9Y!>l=#jH7Ht);a} z(^?}Eo=A&Yt5gFClj@NrA`Gupo{shklX?dIVw1|hTAS2F@VE1|%Hu}sTegi(jMhgg z!@1TqlefSk%r&xekdek|TAZyFc?&E;y+g<`xl64t*d#+joo8AY*#JK$R}u>u;EQ!p zbCI{e>2`LBvb`-jrc22d>RrkXKMT(~w8J9Nlihf7_hh0cQ74IWKu7 zNQ=))CP9^sqPsgvH{uJq=r+ZzgKn)U#AB^|1?gb+sYV;&a*aQS*{$Z*ByoB?Y=)BH zNjF?c8!*Eo_i>oI=}To8jLoD^83_ocJxme!Rfr)rb9Xj$J{Wg=lZZrlo5 z{)?K}8d`pV*J)E$09tPoXob%XK*!XST#%rJw4n?P@;I61w&I?b%O z*=`A7;pYY%=ebf;zEpFW8dp%9o`bZn{XcSwf#(1BH+U{_UI(`(S zmO3urdP1o&eA=ix2JZ4UJSpQ8($!pEti;b^vw7y>v%|+G65t4_RU)u}{xoGVE596I zhHvyU$-UC!9j(%Q+6FBkdtfhW(BGPH>TZ zRVPNiK)jIX&wseq=5XEYj!(}R4kU+Bsoa___;e#0XwN~Yx|Ifq)-o185hsJ1<{Rv5wo zy7O_4Il5kR)LKS(_6ET(H@%qV9Fi7JsM7?rs&Azh>p>6*iERnR>m?i$Rj&EU<}ndv z8mNl<91OoC#c<2>SSAk$a1%Xl$McC)Sb;_KP39QD3-Ce9SwQd@z*QdVNUviXNNukp zDk0Z85M|~7)GwX=XA{1_9Dp#G*v5|CVI~<@cI>oxH*-Jp41=*n9%Sd`39B(i2HQ)* z6`73Z7VdMdMyl=cuOLnhNR!=Sd%UGD7b1}ztf%VTv) zHd&eI!T*GYX`Py=*2Xb^nKlYDA0(DS@SouHpHtJUtqvI%Fq{MNFH%M1vqVk>()Gex z9+BT)tMQ>PgZ)}EILPc96r1i*`9l8N)WOc}hq~0Wqr$^vbR*(pPya$1(wn>)ok^P? z+kg-(%RPJ~uOWB(c?*z!yf=9%e;Ph{QZV1qw;~!V^BsKypB7NA_VOM5k}7E(;Q5uO zxq3nwK7;Xd54k-wIWx+6zjbVT*jCNEv_SG367<6>8-NYB9nz%_R))YB~)AA?Abw^o!?&{HyhxP)rBh zitJ%0X2}-5^-*P}lY8l>8-TTDtx^Cgb~(w0z4t=fbOX=T4dh?G2G*#O%)!>?0>Ysg zo(fO}`tP-yXGTuh%$~u$kb=u~Yeya!IsM{O_k(Y6pGr;(%L+y68~Lz$&=iLrlzP$W z4`YXuE6`XJc^Um<;Z(jT-VcgPGzB-}EHolHVE$fvscJ<#M*8Tw>(yvK_O3ZhdosRF z7R|%|j=-;Gk6B@vNsgo^qS?t&^m~PQ+s_@KvD+VSvJH7UHKel~SBFv+rM{st+*FKh zH?&TQ%C z6E~qrN_3h_tq)btoo8j7HG}esWo@xx8@D4TVw25vI{k}6E_%Hl)RrC0eTVx87-KTvFAX+b&_SlK*8CU zRVHhdIxiKFSH86jAN{!-MdE!vctxuUcwj9lj7}hBKW4eKsag2z@JBl@NDq4QH`Myx z{U#~65iD0WVP0ygypr$I;D+K-x?Nu zR$g1QwiVBDSbqdkD;N>!u-*$Q5skQmel3G_@O2W#g1uKc zDhna?-v~67Na$7wi{z_e5_MkpEBI8nC9(ht@bARbNJGV8o{_%1GFBOC4E6|N)kE!- z3i+-0)QG@}CxleEBA}k8L_n005`hCzLI)zS(nB680!M(f`ywDanGyj?ny@_3)RYJi z$&xTho(LEW%(#^Y&zrYb(u@D0R&l(}kv+?Z{LU7m12!Q51Xm9ik<{q`$tnG7B~}>m zY5mPlv^ci@2A2x?>d-cl?Z&e`eCbP`KueQ*7N`6dV(Vkz*`f$I_U_G{9a3w0f1E3n+P0PC*jPwYS77jV5x= z8ensYYC=gNvGv52r5p74`n+O?*N!JFCk4}*d~U>pEWNuBDC9;u-u#E#;ihh}ufv6o z$C%D1uclJnctFy?vvwTsgwd6J@1`}(WU1sK5>XlZ#5-hff<7_l62LLHN^NYK=24Gu=LQ;IwyAe-bMaid>(e|aD?s@R=o?cs_xNjEpgZOTJlU^! z$ZgY;BDMnq9% z_wf`*a1I~#s}eiEX!cYvQ204MT(gD7yRGLWP2Rl>iHs^S(LK!u-~FG$<+Gtz}MMKt-7r(Gqvh3G7DPi**Ud^0-t-p@Ls2f*En0v)f@qpmnq@Y zLcKaPTBgt^Z%c2Cz@L`EX6;fJA6axS@xC`3He+k<2I za#f_ipxhVgT2=gkg#S}pc_~R9@q=B8``EPlL!#9mXt&iAFEp+8>>dhx=!G(DeijW) z8`l(5mAC#G>eGOPgp9WiPuTIwn;Y$9=dhK-sd#YhJBH zOKWbk7@cgX?Q=)X z*qXBb_iC#1bo#|p9sU)X>O{3rt&O6EdPUkLl$&Q-Z%w&SH}E3eK>p=xAn)tQAi2CQ z!P=Tao)xyLM4y z4Jw`$K@xbmMJ3gkXLi0t<#55cR-05j&B<(2F^v+Fs&Hs}r>L}V^%`XGo*t{Lf0}r3 zIsMUJui$d);c{(yUFnpkuPKd{w^qj1(~+h%wC{t~9){QRF3>etWX4WsI@l-QPu0|y zmGNpaDxcP>JNcLITA8?gF|X1>;F~wvAmN=kze1BYcXn%E%vN57&f6IyzYwhL!tR*c zbT52ND6~7qFeG^km73ihqqIVzzWP%uGz0$Kffg0mA>(b4b7JS(xf0hgY)@0`g2`Jp zA*Luip?RxQ{?Ffl9eHl5E1Pmk|3M~lLlZ%*RCYG}p*vvz(5)8s7^|S#Vn1?g{YtlL z-Pg50s^;`#xAup-R=aEMbnU6fZtXwqR_%+GZB_M}2X2jj=vIwA#)hjp?MH5{%l^hgXlnP~yJ^5o$ZQS~isNN3MRTI! zWxduOzB0vAB;cumYx!P}V{#V85MJS#^iQ-`NP(xhX42`h#aPtc6StpS>d}qR_LGY| zG`4CqTWmkMKo4H>Ec$u+g$r^)u+V-GSt70R5zE2uc9w$+1)J&tK9H))rQu2H?|^in zS_GSddmJ+{sWaFoFX>Gy!hvMpTwm-WKEY0G-aIQ@QP#Uu1Zp9Fs5DakrS*@UxYq{y zYe$_Pq~I=zYu@kX8GD-(4(Tt%JKt{kg_zTnfH#AV@f>5TOjNy-U(r>8pw zf>3vO$Q>6HNnlX}TZUS7tZI@?4u%JL@deU<+ zm$u^o>n^*9ZcQx>S8?2$@>7qLcU16Pw57E1Jh7^f(nTvXj1*_BRGO_mBVb;pjevgRH3ItW zQDg-2B~43FGvZ^};9^R3T7drrmFi3t)+zPT*=j~^JB7M|U;QCq7`W@zs>SLfrCR2J z<_zoCn*zOv0@>GdAzuBGuZ+&)T~tRn;Mxj$#7oD`g@d{c zsRC7I6L(|6LMBiOBLC8iVeNP%(Ecdx_)jjxs~!4P1p3HtjV6U$(0P0HC`IzPp!4xI z4Xg$9=#K%;nMNP|#;arcEpFYZhy_7+PGy8m3lZJW z6Zlp(x0qi2M}YeU_3CO4a$9=!+zA{TyBe4MHb%>1=hG_Ynv(p7rj=%1DF{6}w*xne z(kiJJofa~g);#f-W*TeWxgPPf?R1ppJ%bDJYMy?zLQj}Qr_HpanR$h=l5|E34^|Vw zew$ssDd7vy8VPL6>~Bqt-18TDdR{;=pYI{J8JDA&BOvWqF@-e zY|~m}r<*q;W*s z7B7zIx5p7Su-c#FcD`Y zQDHy37{tYisqw9qT4@~Hk!Zj4)=Fb%1r1wExw1>AmHI~eEB&SGDzz#YfCg5ES9!sC zKFU(i%)hn#370q^CQ-orpInF+nDwg|msk{I5JKBB46zR$=FKy<44W8wEHPf0x^0=pH^}{#aw&&@! z5xuL{?8(gA15F}!k1)>*zU1jm zfk40)JmfYra-8RHfV8;t{B}^8U0e}cjwJJG7v4Vw8cY5+rHQjh9te}D17$SWQNZR@ za3841oe4>l#5pD0N*nXhStb@%b^~4WSg+V*8vE`I&T}%274(ZwnDH;)0WLe|{y|{d=Chy)+_GnzT7@NgrYipQ{ zKw3{+^K*voM8_Cy_>r7WrKT|YNIdHhqq72F;k2le5$Gt{sUS{2ohIMy?}}34o=%I= zLy}xZE$>Y(l^sx4CXD%AOQz741Txnz)?7EJ*<9D*Hb{VICq)>}mIY_G6ytlV;6>_3E5j`=R}oa9+rPF?q#aN~Mqu z1)C${hA-##83(ATu51@@eO}`sk92)*2WfHF=R#1WT_0x+ zM2ZS!xR9*!ClwPfb6p4agRJsi66h=$LN&qXPjgFGNyV%R#z9rU4^pb2EL47V(hpL0 z8G`FUh*&@9UuhWF5Bf6wVn2v~&9Wa<;_aKc9?(IVxBa|Lv-5aFkMw=iuFv+P5kHm# ztwzq(KU;ykUe6<%yxG`&$D!@sXZ@YPUf3selRNftOz)H5QmH8)=eu~;p^sw^wB_B1 z+8AfQC%Y5$ZjK`FCV#u9bPprGG)Q{ze001wIgtK|jRSMSr@4|B=GscxTySkxq7ti6 zek67uM@<<>j;4P+QHeQ^pJ@ z9&+2f`WQi;C3_ZzVVY$NSq`4(AQ+DP+`#ZIYDq8h8pMj2g5j=RQy;x1phSr| zST`J;6%2kg%8$h0o2e-S$;;>;4+clhxNj$NG7}iah-mp+xqSw?gVFN4W%(%H6D@x? z7w5Y81t9z`4|ybn-v`p-Gwy3am4z{8)k0g1yzsu4CZ7X%m;Lv^yWtEhjyzkaVTb3}2k3@(Jij(PNcN{v zQ>gv~gtJSiF1lr*x~Pva>GxW11NS*Z9~q*_nM8H2IPy$V(oan2P1fXc*p{rhLvqpw=v9*1+APrWiOHJhK}994aUt-!JEuTKFD+ zq;<2b36kR;_H@;63)kQpn*xx3wTIl6sGM2*C`gM#{_&u)AU}AdRgN5a0Fs%04?w&O zdjM8>mjwE5c>p9vksg3m!C9ax-~lMLQ3#UT85MI^)(S%Iv6-;b%kez6C@ zzh>D3c#68%DRl{#h=H4HxI8g;McEBMKqg7=S7mm771u}P(5ta@71Y)+uQ%`^P2RkI z_l4d04y28A52Rv5N0)JZR(GOf&%p2_d4Nh~PsPdJ?OdHj7TV2toqgTOWnAAv8`1!j zdl}c)Jp`?VKxXcKun>{VCG6vrF(k=7D6>N!O07|788L3uoC_=O0%Anukec1Vj~$+cdz`mAOZn z5*RW*J|?M-3%_Sw$u%74rhVl953p;-btbDTb1)8aAuwRsE4kz=y)+nqCD$(EDse9N zO0MfX?JqF>*x@0!%}&nr<7FT%KK*ccD7oAEN-n9gbS0N&a^@hve&apJuiqBCT1(IJ zieJe^HQEbJ2LAn4y*Jq$7zUCx84D$4i<$}bCL1G4l}DzOWl_d7x5;Yiqi|m9zOx8q zO??)L>wJB;4}ThM6ceA%&@Z0&@UK~(_#DNTujfZT56*5hBC2joc$UgdMxs25XC!A@ zx6m|~s2iJ0>imlJM2jZJ|Govj+0xb;2fZ_$uWRz=)b5+`!nd^JrR{oI;M9+SoLuYM62JWqW5U)Oi@nk930$p{5KZ2hu;D zP-kx@)OjV0N%p+Y2}Dm80iqwVf_Wl0(28*C%}QK63xm52=?qx`sTO@>(zUQXIg<-? ztw;fnV!%Tl=~0{u(&8S)JWv_0OdNI={UX1g?)8)-LLp4aEq@48yv&6@Uc|J@TNUW7 z1>7VaQNZmq_#jY;xwJbXHcP1ziQ`Hg3gNgiK46u{0$Mn}SfP>+$*-ev;1K4E=oce7 z{|X^_F2j|tp)M^#8})^DE@AL;&6{-tZ_y3pU%m$Nor~Q$n|-9%nn4lP(TUP{b$Dv5 zLKiK{v?!})n)W4-;^VB3QT!6faak`ef#f|O^0G#KDp~%mHuEgE>7wS~CMh+9S-)nHdL`y{>Q9#q z_vp5F?AsVNB!5k%X2Z7I>C(mBCmzvPEq)5k&BI;Smz4qAzh@#h@NC~&D5ul*BbW96 z(ydzeb+t^nWa-Cl?ceHJ?XFJi+Eb6++JD@w+QWBN%5eyP=(g~;-D;tI%b}79W7Jaq z(Bj2il02G4PDu~WIxC=ZR`UZ%3VkC0M{;%cVq_$00{o{)D&0BPDG z)dP{7jzNIKcpCjvXg;+2Z!T1zayqm2WZ7aTIRDQyZPW`ZTPrkmlzc@BS)^*68XFc_ zXB#86N(C8TYh?s&Dz*BW(%@jdGPZ4S5E(EhYZY92(*Si(0|lzQ1s0_9q+<{ zEy~y^7^v*<0{YWb&%Vz^C?XHC%1UWZM&8ep&kcm@%iLhQ1N_nlbB0px`(0QY2`WiP%bBt z0Pv735~6Qd&{R+IS%0X9^-@_p%zp*dESPUk9Rz`?o7sOeH_e?q7GVF&Jmit=e?3S$ zXTPU|c>~bf!nPQ$G+Ta>KSY^Cbhdf&4AOheAn6oy7Kv#P57S?H_*`I^-t8fe9H#rb zGECks<_*+x*P?6SZKhs$2E}+N{`HiB#8OQQ4j4;EfJdKlm1!cI zneTb*L;*ANA0F~ZGxIn|J4XZ6tCVG-yE!GlRyN;I+5;8P*tb2hd76LGwv|}^m4GX85pD9ipwz#%f zy!0GLZ2wBPQv*G=H?tTw7o(&$vYf;Pz)og2vglV4Yf|!Cv*{(2gYF{Yzi?dkvJ=;SbX|%2aY3D}EIZ-EFll`C;nx(#bE6mIE6+HTlce{&z8@`^+*rf2cvblCB zBxEXZa3;Wcl0118_$vN1|0?je>Y%E1^A6qF)|IQk8?@gP5r*pcIPUd@`$yg&LQC}u z{-J%TIwnF-5xdxdNC@4fvu$j2s8RRcH)ExAmEvtZ(d=hrerME-tNom} zJsUd~W-Xk}xo?YPcQM=Z%7Ek)v^^Kg%PxdheR*SgtfH-sc;z6ud(o9e)W5w}X>nyM z7sF0HlvrNfpof8N#G`>e1#QIlxB#z>kgts1AEZK3^4<>av+v@m-=k1z0OU?5{xmi7 z_@k%o1q{Ix9`Z;-u%xF$Ltveeb2>=wE$uInkbV&4R5LiUNmak`YQBE^6w>^lKpEaP zBMD^NY#p+umQPxTRh8PhL3^lKQhnpS8vK;wEt7roc=PwBVJxs~@M$`#tp|Od$>|fR zT6Z%E>7@*G_j#xz$NY46%olJy&84-1PM z=%BD#grfYnshEw@+i1{ZmvogaqMqACC_JO)>2Jalq^klFQc%rbEwUS!fP=X98B-*E z#kGAobN*e|bonM`J#;52V&d4jhGHn*jm^g6B`n65OLkefvlCCYP2u9t^XX1)?{p~Q zZtPD5I1;oEf6oPY?Sp=mx%^t&DDS=4lFrzbP&nh8BrGk%8Q=1Bv4B0X5G^B>#i3tNkI z1}pU&FIMWeXOc@VEOTm(7&5R1xSAalB1OePuXcpyd2vGXC!SF+VBVhVA&(TAq1`1k zhgd9SkAJBJf7YNmk1ZNC53pun5!Uc}!+)nuC7uO+-qWoD*5b1s@KGx^w->*d2wr9(E4zEKN;fhKOllh2Naw#=ec%{qJS)MOi1s*@iVY z;(@Kjo3QEK1UwedpN8eE>AxX6P&D2_5^od1eEpBO3_jhju$%CnfThd03Ash8%ixcT z2=K~`541TY>fmT^vVTOW@}#KQlOs-<<+oa14yTT7=)E$nGCnL;J0{)WXtH5%#M#eW zrcR2kqhEYdlz)W|VwyHK=Z_AbF~et56zU}3|JHn*Ryk!eqr$z=oy#9xB4v2wfsxZM zK6k&7doG*@fBinS4;1QwC{5qUht-4TqRT5|m7#`Og;Rg(_)zj}v=~KSK>x(*)X4py zIA2q6V>a!FO-2XIH-{xfTbzvSs%O-vDLL!r?OpE%G>#S$ZaZwZg!KlgB^mqtiP(0ly9sqNYzq_IuA=|M^<$e3q>kV$0E^PEidvH8t=wA4k zQ0Q>4VMy|FD%Eq&RyA7$VU=pQ!!i?S(c5V(?!f;lt%v9hcny8>w#Z43SlKNyDn-;j zW!s#$nx7^$NRzg6@*%BatWLQL?*UuVLDl3&5SMK>kbGV%0q=~e4Psy2$^~4?BPkLIFnM2lQDtyh{oZ+(hQ|Kck@k4>Wdk)P-> zm=8;(is#>M2fpR2;0x(-XdY0Xnw+fG8e8h)jQjM z6dfc{Z5IY0^SFp=qr_>wM+sX^<%28lHJ4t6t!j z+xQE7g%=$dQDIjG#_~7(1EW7sUFtDDN~&*VU*GZuW^=KDsrtyHc3+`!!6E4=8y zhzh$fFiS1h&o?gn$oFbc^xv+uy~)?9yb*bQu@QNvul&3b5#?JW5&)ZfeH9cP6;Wvy zMrB{u2low(*iVlyc zxC_H$@>Wor`x3`Rn~(XD(iZ;h4#!^mdN4U}IDS`bIQI3GpEn$$d}}y@n18shilT!d zs%>j9Vu@sq58vFx6p>88r|Klf$D7C}gNr6|8qVbmm9t+=qB#_pK|tdk%*~Xuts*_< z2<+jPscaUMN#wa3an6GxKe+N>VoJN^`5$S?PR@f!z}r5D{)vtXQ9AFgB@2<$^#T)m zX4f-hixCwwtXZp$D^JzMIcA;sgOYU+yM}Ak$?%%ZSa`W$;d6?zFu9Z{ zL{@KaZ=Sbt0^8N-$Tp7cZ0Ex~*kR3sjqXs!%sS5ZAhApX+ca=EyM{a{*!DJ3MW&NA z^q?d+M~j$3zX&1?$_;LqL2u}|0^{Fxqc8~KmJ}DQjRpsKd&3snSzAaFDnrCimOEWH zt>x&}7`{u#3-m%_aF6$hhuRJva6ddJu_hkz}|;hL2SDXzong`lVn| z;&tMue`|M|)5fxo7$iG7uA)L~`R+=QEq^-X( z5r)>^;I0K<9a&_ z;r;cX6Q)x!XmMJo>|&CqE=16InPgCT80Yn7aLE*&%?Gn+1%TV>mbeem)vBF zwiU0F#>IN#ir?1)EVMUXxN1$zm8to^!i9J@U&vRU4He**Z$rh8X`qBf0klPZUV+el@Qp*r76sHnGr(Il@2}|f~?UnX#DYQm&F|!9!zwz#y&~K}> z2Xc3co*tX#Zm(MM%XS1qsL-2yDKPvb((fsqtaz765HyqwEan=vWpxbctOx) z+SCE9XGI^OE&udPI!tTmIkL=1_s3OkC)O)9#d)Sjh4E$eimc~gi+q%VAIF7w6hsG@;GVKbH#D5%`RMr6cxhs4d@H6dSi`kuG~-is zkY*PNrOpB}KNi(%4x6z>BA+40v_kUO$lfU_a7B z!5aVa09T?k{v}+9SL5X?j~0VxK1ja}WhpJD4TWxVZ}&8}fEK^mLmsKccY(A^T1?%7 zwAoV{N=t|X5hwv2oyF0dYLF?2FknU+6?HH zspxO(1+1?IxDsUszRZPq&47FrZw7vZvRa#g$2`p~U?{RxWu~%nbZXKm-b!ffvYC$x`1%qxHtsYS)&C(p|!v*+fpH z4W%)BKwg2OU>{$e=~X^Gg__teFu~l^tX(gAN+r>M>!DzHU$tKs9QvnlAzr=KuNHE@ z4O%zl0}PJ*#_0Z&RUQ)`n|waOIcR|F=Yc*NQ!RJ;JWra_ct%ozQ2CswI%xPX>G}?mceFw^s-yUH2UbkuocwkGu4WBiv%6gW5+~X ze~2I(GL(6JaL%W24tpXo8J&fsI;q44Q7rC%;wj4q1F{ljiT;%f@meDNDk2srzcp4Xbkg#1)GLh^A4}Bw#YXmLo~{+J zS&w0bAnlILa!y-Hll5d61>PYtPi%t4@W+QS=jRC_*D4v-Gd-5qBw^Q+0~)M)?Z zVl$h%uM;Qm4$Hjl*QD9oCNr%Jp2gcwRB0E=n?ujU(G9f=ugJC5NwoI3XISK+xow)f zd0n@zwHE$l-l4fH53*;|to;tsXRw~Qp2M{6g#XN3ffH(mAIUB%mD*(#CMn}tJG(#= z-bM9(piDC>0HmSvs%udvZ#f*2oeJ*IJeQ!q!#x8k7TuMy^xz~j)CX)@l3h`{?B23u zJ857AZT^~LS!Dj-YWUyIE~o{K>B)*>>w+uj56u^Lckf2|d0V$gD&)?mcT!UZk~`=h z&yCsI?biEo%qG?3ej=jHIND9uj~uMlPl2SKT|0m8X>9@L{G%Rnd)#vt>i-d>#hvrl zfGWLz(b=^lnMs#j|4pEAQYaPwiR6P}l0?EI4W4a7Jo_D!=V9xY8DOg59iSrrCL|#e zEtRk;4KpUoSDnmKpezh(_SiZily^nv-e>(gv{c+@{d@YwSqk`84Mt8%N-h3?DotV4A734(?1qE^P26|!4FeDBKM9I+j< z8%62CNzSGo^d?W29SKXSLif3rNap`phX1pI@0X+ekoA`MeknC&Ai0SC@!mXER`F;oCS}xADQUx4@aSwT< zgYY7d7IzTN1XZqsAV-71Sh5O9AT}E(F8LUNwtAThxO|?$Dz6;qEEx>xJ&e|566rlC`vt-E*wR?<;a(bsb12)H(#{dT?d;9S|XBuw5!mk5Ka8 z)Q{fe7qUBHSyj%%9LppR!q3bg%!==@)>bS5FE0X`iefMpm?=JgqGN{YQAnZ6lQv8#n=^#i9Rkj9v!%saqssbfQr* zlc4{wK;xuT+9bVU5{2$Gc#-ICwP`-63ZT0ZR;6N5=&sBRxZ$yQvFQFnv{az`7W&2L z&c9|I-SsZpQhsQ_hwhrTtLSc(+7Y_%lB2JNvmm-RH2GYhyTt?_x?8WwEUj#|-W&Z& z-H(pZ-LNEi1(ljY_bQ%s3*AizEp!)^GO%1LdliZ9o$ly$(Y@o+G%O@{Qa^f=J7jml zvO0(8ZpH)vIuEUWs~Ln@LH7@${K&|_z0{O}~Ye#*in=E(L+S&As@-J!+3wGe6lxt?W%Ml8p^ZpMvSRlrrY;M#JA(!RRu|kHqK~ zQd0(!=hHtPj6R0X;Hb#GvPr^vT*7CNvZ4HIsVp)mfaIJrJaulQnY}j)pW(SdR)l)| zXIr$au%f=0D|C%h0bk%n9`ZsyP@2m$_ie zQGctvYM}RINMzKXL@LsAuqwD3R0TW-r9w*Ub33D={>rX_RUZ2q>p6U!#)YH)pP*mt zIqz&YdRH z>{seTwNbVcGDAOKktcu4Qx_r!zskHngKcJdD`AhRK+X2-N3MQ zsEca;>F#q$>b##*ZtLu~yUxyulWP9#PWjFJ>~nLo7tJF7Gq5R*Gr3vhAM+5{Hq>3x zky+#)Wg@qw3t85<4{l~s>jlA&_{^1)B?oz0otK?-p@*QYRxi=2A-V4)Rb9w$m7L4J z+@>GpX-RIr`zJF&bhhr3eC6jQRu$!2iB$tBh}ZinD4JGPRNC6&M@!Lu!zugZ8FZ&hbX`_#h=zUT=M9l4-x{J|?%SHLilT!gs_nuc^%%(T4Nt^%)35gR zCvQkzS!_sd^Oc`BB%=HxLvpvTilRdzs_nv%EO(IGH!AzcFO zBl87c`FSHF%C|-)B5(IMeU%g)8&PpvV-rgxQ$-u!CV7P1oK%qEOL*2{kU?z+usj$m z&LAq~dGMF1e%>b>$m4wUhT&lxiA5Sp_9f|%Egh~E4wIXnIObC=gvo+~(SqJ&Z~7-H zf~8^zdxl%cT>K;CPjJz!jyH#|sFuo;lNDt8Dq}-X<;2P^BnhEI#<`PuPK6BC_N=4H z#JWLIgq(E@g3~m^z#-^*qf#E0X$jzGJ*j1FX0<)agjov! z2L_J7=V>>#Kw#id54r6g=4=7z18MQV!0$2O#R3ES5ko}!Y~nL#IbNd2+8QJ4Vg8sL zt{q3{qi;VH*T6qYWlIz}_ED^KMR|mLb z=Rj~}jQA!K9>0$fi^ zeV$7ZG>SjxO_BU8W+5I7h(|#Sajg}4vob>A0FlgmIDs@t!<<&BJO;(riw!Enk^p+0 z&b&QPcY=LVvz%vo)EIzI>dnq3Y!!(z2q$nMUW1@tMI4io-^Lq{3s7%sem8=4_NMSyD{@`vN0e zQ2+mtL%){hKX(Ed)UJm9uPL2BUQI^VlrF`6xTEDU{%fnz!D2J1Xl7nPG9+ER zUHJ>Np|xGP%hSyQcI6!&@<_Y#evrZg{j(_lEqc}%e*y=T%p2q{VX`X)U}^A zyj;j1nPORJKIdUa0dD?-hdh#-U+D%nZ$;qYW-)P--GkNO?JaWZ)|#uyXNWZ(@jO^_ z)mBd*bAL=Fh}rNm``Z+cf8t?M0UrO*LmtWFUxTz`iM4p__A-~%o2>)H&AsuLVKw#{ zrIAtF7B4dDw>Of{&6d#Tw9UG?Hsjiy>y}7v+K6if!Q(~vh(n@8xP;F-hw_C zD=>IbZd`*4@w##HmGL5i8MvD$Ot#sVf%~ds>E58%W6D(BvLCr!`)NeiYmy?IH!xQOX8nUOmve z7|lY6CULXzenqYKA1;h0lPTb%L~|hJEq4y*06VxFPoSf-DWw0SI08; zj&d2hSSTac*6XcWxgOm$!Eabl*IBdb3e_|oMQpE_uJsM6tV%!5j4FEJep{7pFRBW$ zcuaFFOs}UGpS}{L(7rFQ4vYkq0exCyIWbY&ZNrKRiJVY0~@8d3fpe1O z_b)EMz1A8x+G4}Wxkp5z>;@T^tZq=sZxlYu!qi9ql36&oRgs|-x=Bwfg4>0iU_R_M z1hw3?Xp)O#oQ0~7v8waQrpPx6m$5*GjjMxpY!-Y>x5>Ps^!m)Jne_USs$gcdi6$S$ zNTJ=-CUmHvY0|Yd9ulzmfNX9_`heGnTdS#SQ?Gr}8lg6BO+h2<_pVLnB(i3-`VJnq zR;6o`fw&W@9?`W)7b%F>wK19LVU}NWaCb!iuiVU?ewD*M`^iu8p5ZqH80L_Hx&zJ9;aeR?btsmuuV1yM1i0 zMux184ox$|O|;^KG0W5rvAf|7WpXe9shc|68MAH*gMAjt&|dT6yKYWj+W0)jY%_SY zeBbp~Vv0b#JnML^xPha5(59^u&H`9$=Ag=Zdsu~`En=*$KEf=Vt70D^M)+*zM)yE} zr0{3MMxH!3_elD)fqE@U_I9&`wOg5zbnRv%K~h=7uVwT~*g@E@wMi7>jaDJXb_%>L zzvuTgHX!~a`vDIyDMPh;`6sp?5LHYCSiJ&m3qw(UrqgVma=yl4-q^wzSU1HeG{wt` z^rqkmZ&L(M(i46cK~wjHS0a?vz0f^j=Y)Y#p4?00IgivC)l!OpL7wprA_o^Kzoaa% zDPun1K7`Uc`3akgFvwTetbqv;{6jcdab;sm$}&rpfoi7EUCHj7(YS-O%}sbDY_mAp z%eJ|jSkW8yu*?U>;&K&C7P&4gSw#Qa6XhRsQ%N}>axhmRYm(Xq2Sbv}}BwdUgd0OM4)@QTzlFATYc`xwe zW4O};_=s#+>>dIS6m!-Q^tAaNlRjw;2d9#u&C=ISU^>$^pOIXtJ`yS)VXOCJ9TNpS z&MM%&VySZxf0C9uhe;W#oz6cBOWo43*Ou}t8DR#c@?bwy+-|M0kS8FeGLa_BrhC2v zw!nxN(JI~nJ5NOC6m<&5eZC@ilE!@rf~IcV$0C&5xH~?dWk`T_)F>+TK3V$3geH=8 zTuPMj&GN`BwSY0J$m)=!;kPCD41`M7@FP94`pX8JFf($WEUA=`HHB_W*4{rwF^GM# zHuFf>dvUav?R|HCse8IVcc#Y-qoOY^Lso~)my?S!&P;659^lKPSi&wR7wsK$tw|Sn zXomIk&+!K%wpD7v$^O6)y_BW1McSK`vOE5c8GK)URf}I#&l*d}f-q(cojr2vqFw?G z%oC;!5@qnMnTaZU09JWu+Zn6yNgQ*Tjcg)QOlZblcFbzVT!waaoO9-^M#oq~l5l?W zFC;pV<#AR5V>7MaQVL|uZ>mblQY6~zh_i~mk{r7*rEYmk`@OOXH{wm!kYpxR>&?pz zm4@bt>OwQ!O1xyAUsfy{eg+nd`R(nxEp&7bNZ#(y7qpWb;1zTf3ZaYnyQ`rf8uB4! z*w4fLVa|byT4dJ@?5lRx6$qZ3<#Bhx$b!Qe;s7&*nbsr5)fCHVW0rZEcNkwvv?>Y> zhdV7C&e?}wR8wjrA>eL?5RfVJt7OsMoU)R2GQ%GZhjN4d2z=~0!AJqTY)Es;*bEV= z9866mh^YXyNql;`Hql6gw}z)w=z91VLf_d#nS+Bw_2X+!c)uw$J5X90%tL1ZeS~n? z^xQ&ZDPU}6fV!I8%~qmaSAPwx;kNNlR&Gidjf#B8^Fo)@CU(GRN91y<9bDzd`ie@TS>}8G%x6IuTQkT(j#At6^vW$2n6Z!bV=? zkxlz#R|f92d}S7ZG2?c=hy;})c8dw)k~w4;ZDYP(W6Qbf?V9UYs=9%1WV_Ys#EA4? zuSkCi{f%oC!R=}%!L<5n1Wmoa;VeU=bj2EEM<&^1Ij3$kS?)k#7IMs-x_L!8r*2;D zO9hp5)iSF|G_`O>O6@kvORJ}A3p~WYx@Po**w~Wl38iZ@lZe%rgp`^^D$|5XmR%od z=gqbsI|->TolUU5@++iK@A!PpBhm2@M|-*BbKvY?V2;NyXIsTECqh+6ho_Mo%XiIo-S1xgFc`S!J_#`#!q zFASr@yGrI(vsAU-%zL_)nXq8(rhzJ&9_fCoHKO3U8|g*C?Uf@(6HmOIizIArSd`LRcOFuhcK_F9K;aj zN*)PIE{?n`dBOshzD7x7y&RCn3wh|&(zY}j%R2-1I;X$NahI9EHD&_Ekt%`5@F7O8 zT+6dHADACH<(c!*KzrlB)lZMs4-})ff|syp(@XerT^D_}i6gAR;*6qDURhy)dvjq} zA}^~fh;I_<;2_-jM_QW)zuUO5-nm8EV-0N`bLmjX`VUcu8>0&Hvx@E6VI2{WpFIdQ8OxGBO|zowp)uHLVc zKb^(!x|#MW58GPBpuNUeMT#85wt;<8JB0A7_yL9O$bef5Cj5ZHmx=%mt>CCQ#+dJ? zB9QX~3eDZk$H)-W776MwNP@>B(*Kd@Q^W3%*X!I(G5EXDs)?-d2o2pDDlE|y6N#t`?{D~x@ z$8VE}haTIZdO)gD(H~k3QfUf*R=l~Od%r5dSgYd=$yg_xqDkwLq61J*1W4M%9H5Fn zk!bYzZK6rya~?fZ4@p%#`h%-MJPl-LL?xKoxF}VaIChHT2vtrJwUk3s6UPKq{E5V& z$8Qsdr$07L^@vo3p+B}#!bmodu~0(QH?gA79)rJInQ_;GdfGa62;Zc?Y>l<*-5)Vz z_&BcULn|?q07b5ZAb_no@CAXs896z4PJT{K?0%ziLe)0dAcj8s zilx1ZtCPj*-yF>HGXePE3nupQ>6hZXv9$JNL zS?*!gqCq9O%vDJoFQr5q$O4o~unx=9db}8cxfW5l``E79CBGrUr-?-^En_8O#Tr#z zRixE6etm#j0NB(d-ca`4%(6a~(#$1(D-9xN>l8UlVN`pKBDlR^5{zm;f}p97YR^L` zF{(I$A-=s@};=ZSkz*Qq@G^&ts;oZGl`47y`t!i#v*Esqef}3@yUAO+Xpc9 z0M@fb@xOt4-4!c^;(tXEJjvq!2tlh}{E7@F5W`fMJ8} zO;c$OwXyhYPASIZ=|EuTFk!Etl>_)_4n7=)b-?&AM*-XpnkBxX0^1nIXLUkhtV-jm zI!q_(G2?GzPQ?oU)N$8J9i6%%%x@Qr3js5D;SQTHf2>uJjd(nT5eO} z%9^YC*Eh;i*zTAGsqRuvx{@66MvD%ZyVdU?YeJ%Z-YLe{gy~zE*mmhGxtm_2+b+Z2<^p>i4$?7siwo))tOBBJAY@o{#)Yd?g+)KzRTHTp*ykKQGaQrBb zS){7(YFHP0S^8F}EAxtS{iAvHsA{N^X7!3zM{Gux?P}di;iPLt9@1m&HNLE+iCYu5 z<7>@XA?Me%#*UVItm_up=;^Zo!&HZ5FEB47uS|Rf1FObuYfH1z#)^iHzGA4T2wxV3 zLFXsAVCcib&_fBBy<46|FLXA>4ls&PoR2L=BkFJF*(R)v)?qti%0^U*mpzKfv+2Je zB2YGc<5Kd?`E$e-zd3)YNNNhr`BO#kB%AY32)cKgGe47KmSD_^W%G)%#hO$-jIvElZ*29bCaLL-Q&wY;5kty0(~stFeN?9uAJ&Xul!yytVD@SAg?-o6 z2tK(PDxSg5?qy|+${4M$1+qpE;n5o()D(kZL(>pRI4k2QbAxsG2%>l3FU5y=N=yC4 zGdO@%7QueSks!MRzo?`zpsx!Wh)zmj zp>THiS#^^x4zpN076zT9`+_Z1ToPuC(frwFNBu(^=@IZcnNH5Cb zvZCqe2o;ruBYaC|dLS}~FZ2)K@Lk3btgy<$=Zek>l!j0MNMInZm(lleZY%9E8*t!( zu^j-rO7T>lokRpmCetx{@-iVR^2;g z;D5dZ|AR`AUkqX$v|BmH04#^}sX23WMF3@^PZ65tTKIuMR}=}Sj^q%A`?-kww7saH z%@ps|rzpzPySLHaL+7RDHAFA8Rzh(#aKzk980UjUWkt3RCfLURq_s1K{>;}sY%WDs zn%$rd6y{I{lSWcMYkqjaX%X$~tqcodKV^zYRI1B7O2yMYE)fwZ?W1uid7F0&Yq&91 z5Nq>pQzSJ7n|G5Uc#<}69fIy1o0pENY?fe5=fb?AG;8M7S+r^Uw%VDMD7qgWZj_l_ zoq9L_MIPc$x%r#R>0HgREpVS!J9qQnrw=#EEVbtUo`?8T zZ2qSkt2#3>#eQURK31Qrn<&06V0^4QqcDgLF1p_`gqS%nwx-a{KBovd|A(Ok3^0}{ zySe7FP@{pEzfDmHb3PbV)ji*3ujQWYxxa`&*`Ccy3HD$!?y=f@${!;bj|3QbRBzJn z%&_E}7! zo|>YFRxZ4et<+j_Uk{O`*pkPi?HYTSPY;C(g&S{u=`J7#`_MMc8!Rf^zAw!3=}wCe57x$UtrbJrOa(k#Rnb8KEwHYM}w;7ZgUYlJ0Qso+Ms?G4E} zz|b%!N7PVjguz%7?yQ0@Qs~L9PL)Fp%(*=fDqzfN1ou7O{`$opH6*5)CyY{l)p14= zQwPTOEL?1m)LY)^+Twfn1X7T+*VyHQl(I ze670)kMy0WdF1uhw3WuFe9u*^=VpVoof&|4s0W=PMs?StLQdY^(5My#TMC9v@HMv= zW@a>PdMMJbEZA=*zQL#+fqMgT@s)lpqb!)gYf-+c!56Hv%YxZF5h!pzsNey;@`*4XEycJV1fvfJq4J< z5nGu>a9d$;da1v(Tz47K@G2G7%F%E=M?=l@soq<*>uEYFSfnnpae8xG*046GYVX=N zAFYes6h=kV+^jt2Qb9dmq{2^?kc$CoTQabI{_JYm3kO@sg-XL&CFLXXLb+J#V$7)- zbu-Jj9Gfulp0?Ku{+f>kj)5=N-a%=m>@&=+yzP`JH{m{vj}FGc~I5cl(rqPibKn1tT8(Pm@-4Fi><59bd`Ce>qb;sZ55DU zJA|wBimghQrJuElcv2GY+SE5nv_iXw(Hbw>uokin>6;qu?`j}kJ~`1SIjEESkW#6m zQQ_HIY)Z4+QGU#iTa80(@(3+jYVOZbQZB1cQumq?)GlKh(zQ#Cq)5x1aQa2;E;ETC zhKYP!V&=n^=2OS!1;h-0xFq1835~+V{^)4rinnJlC!Xssn^7Q^8Wmtt9D9xUi_5J% zV&xJ)5}lWkUm7aXL%PkuUVMU8J}dR|Sy9>Y;pRA2`B;@%`U5t5FZYm<)dCKY**cv8 zGxh!I8k#jinf`R*Whdw{1yRE~RmM&I}&i{{>b#+xEVhg(}-Nt2DIt7;CI; zlOls{i>aq(!xvu1c8_GGVA@p4vKqCv8BeOTX=8?LrfvUL0$~xJH44ttvK?!x2lbHEfC-+~eLU3`eCYg4??} z35J0WK+x2OqyB>Q^{wt$GxfFPGH2{l@qNH&SVMI8fu$#2^QbR{X|}?sc}h{rR`XF9 zQ{ki79`cV_BW*s)D0D{QSh43>7A_Os3Z1HeG+V}dO$Fk^$?!$;%EWp^@s3llxTMT_ zhq@YKGBd3WM}Z)}L;1&6tGsfb)Td0_|S}C@ffIsveH0B)SP>8oKECzRL{HU$@Qh3iAv7ZIGy#Oimpa} z(sfGdYUG;1tLe@CN|#pU{ERX){Z;letfJ5&j5XHJkn)06a@I|=r3>wTfk&EBa57YB zvRbir2A))DCxf}MIT`!0u?P<%$0#+WhhbCkixV1jjxvtG)(r(Ca&*g^RY)ZQufq7a zN1AXixcD0v#7nrC%obhJV3GdO-Hcr9_m93#5OZXBO*SJOD#BM85HVJNV`L{w!~l(C zz1!N&nWPvOg^98}farnF+g&b+xEcC>g{v0XT#(kP94h>f)r>;-Lz>!4Bhx+YdIzh* zbf-Bo{Sm%*$`W;UNm+BA(g%5NRfJB`9a)c{Hg}|sc#hY5r^^sX_eNNSb#J7xJ%8p> z?QC2(d=eI?@JUYED^cn90ygBtOl%YhwLitI50Cd$6@~oU-%8*8`aRuZjGwL6IKbA_7+{_?^qss zKl~sgaFR-2mL!zES&gkaLnD)v(mxze)s_AcJQ7M@93@ctdZMeY^qU-a(n%+ng06_R zk%QFE^9dBc-i`3yV0&-vSL+tw|r#3^HwCI)U`6M%V zbnZU1WsYJoz9LyU1wF&eK$W|8R#|BIj5St4`*>P+m0fknY?4Anmw6;A1r@DKlw*(d z7BRI-IQg#q%p1tN^d5j?b8zQ1SRdj33C@Yf>d+D++BQ5>jb1%qnX$!~3(5 z3qw2!>Cw9w9+TfAO$8liihw!<`&`T_3veyEIbUF#7(it>!Wm0UryElZiQ_RVk@g%@ zo~~^%GNASd?XpI()7I`+#VX4DX{*euwtlI%R3g@=$sC%TJCK$Jr`b^i?W>ngnJRCMI&8{f5 z&v4Sa4Qo%~HnDs~W4jew#YWpYir6YYt5wTKasuEBK3#O-J=)ieCtN!!=R_w`;8g(}L{~)HV*6 z1b>fRS0ts z5^D$(ZkaGmR-LwzCgeCoAqaCg)mx4O6v2~}a%pW6HW4{8FTDWk$#6%UA>}BI>9RR3hW>iRgGj4B zO7jqp#3+q8QjO9G|E+pHO4mc|N13VgARSI-d*v-z3|<`$W*t4E80Ydu%1}4j`Yp~@ z_Oc;jDKpocSt{RueZh=MR#LoJVa2CCi|dtiEL%DqOOaLTG~@fPhNk7tk6VpIC`V82 zE0zb)R}-=`_T~~3{aG1D%hkW=Zv~1oC^OkKM6m041%ks!O4 za<%#<2>iK~!@Xil{y_Y8xv5lzVM~5xQcRT;V@qQ9Cbb!kw4O%2vLEaE|bze$j4goVN zX&Tzv8?Bau>y=h$Wf%xqbQZ;eI2wcIWBw+-wqm;3~+H>+fBJEa& zb@m?QDW?&TXK4gtx29UFNNoy6;7&zwyJ|{c1Rg@rYBB=M7B#wUP@xSZz1kyjE+fDo zH+u(>Mu5Ug%?R)TOA#uCeu1p4DH#FTR;{W9mEklWNg09dNULrHzU7fH0^(>d8-X4| zZ&bctz~I$k0P5%w#i;+9nMTvYZinI)Q$Y#kUz?Y!NBRG2)D}yU9qg(_`vcc2sr+62 z0+Ekc)z4kt{xTBbsrrR`KU#m|H3M%3<_7bFxf!B!fHwnS3iM3_@mF8R?d%t%6woYj zts_f2U2C7P(CsS8)#}?JaJmr~IovBIAq(-_<(9xC^kGseX%Y@+Sf@#lr<^81o>iNK zF^bftU=og21hfZT6@;nzMTC6J|GjJ zQZNa!vZiDbWE-}s78FS(Ou_|7t8Nk&@<^BjapYwZoX>I>iqU(K)5b`pxi-TYP};44 ze2Yglo^^$p$Sci6iX&Ab^_OFfr9M@gIBhs4R60GFhXvymQS)P6*0}^LjiQl#xGcw( zqNEm>Mmw4zGUZfaHLh)13mL^Xm-d?CTt{N;{&0sGe7_cA<<>PlW+q(?`gc+X5$C7xbPYK>WIBtZ8~n z1gh>eO?wncNtpIu6akVODPJT`h-nzcp^Lw&pgZ zMK{qN>n#p;u0*ol=gG(0Lt=5UeQ0FJfWaA|+}tv3&m%`fMmQs|FJAc11hx6KwfPvYH=EibjQ(a58-o63lPhx+8iza#p>bgl3)Ah`*%RrKGlN)iwpy;L zgJSq-vMJ!Xrk!yHOv*>|GkfB7py@mkj-)t>@1q&{toq9E2EI^aOsK3luOix94kDYU z5_xIiedwiG2};gM>mUQ{4IgbDWR#pDQTk|e&EV1fScH{x(UzELud<6~6@zvOV~usu zX7RMH$gE0gs&(O^E%!)I3Lcs=J^RZ;y9fDl>*j=B&RvQCc2(!BiH3)^S_G9DMf%J)9%!@@dFtino7o26j~_~QfUv3wUq|a*mZ3`HErRbl_4p6#X%cVbqCFg z!feUf4@_^m_MMSzIhK=fVpyzUiZF!kpnYTJ*;*SA-3t!d@2*5v!a=Lk+th0=AI2;a zq1@`>KDQD`+Ci(O2yAa32^_TM2%4&c_7#dnchJ}l5;|yx(CBTkFq3i6Y(XqJTMajX zgC?5-95mC)I0Gi-pbbQk=nmQ-9tj6c93^nj^h8(PL2GHu1xyZ<&JL6w!wpO;qUItn z#l-|pn=!KIwUKGGdu+6O!;>0^!mNTPb*vdYI)5KJqp@XErPujRGjma8pUNr_?Nr7Z z>r;*5Y2Bw%)hnk0D)2~I3f`46W&6v!nvZCBdrCbrfu1uBQRhbA>-QLyJilih= z`xS}+Nv7SYDB}k*yepNAtthmkkdR7ySFE=-?`pp{cj0G^Mxv7PvyOC*V<`s0{24?mhM$^kL2sLVF5ZDjh>wMUI?B<*+Ye{Cy@e}h^4Hka=}`$(H= z#7rMtOleT=IadKy!smN~Q6w=a_ZIGRtEQxVzSk6i?X5O}&-V#}rt0%Oh%ma($JUw9 z=i7=K;HcB*V_}Myn_}LKaTl|tI}{F{@c(VmT9rZj3-2Gum0{6VzQ7!As0r68%)K=S zW(_rlm(A5<3GVqZiFjJ5!<)@a`0{o7DCDaBiIi&hHE?Yh&SA+PP*OD%VI1OY9D%|J zHeK-?KR9M(zpj$HvsII$8*`v`8u3Mu-wq$#PvQf&mvlDerXUo9BTIFg!Nar#Qey!9wE_%vQMVOq&iFP#dQE1A=eKsfKRHqwe`Ez1YlMB3!9sDx_#rO(9F?LQ0XOtDsEXF5a(lGZK)YVBw z9`uR6$D+}vG-p1iIiFy6^s4?0v!-ZgGsEdxxsmUrJwR-3-1@_xx8ESmn&aBW4z=Y#yxA&>m*2vF1UF z4CW!Go|+9`_@rArl9hsqP$kQ1)Y?sWQl(7b$ysl{D( z0xyR84GqF=cVP+SR=nJN#4r(JlifM~@{G(t){Lx-Ii(?dOAO8^_GjlJ8u2qyUJ~eK znvP=ULt{)wbwAduRNAL3mvrr8qj|2a23ysh2 z=pzOCelBMDiQsrdSvXCY6yjAQRWn6pa<7NL$0csi!U7_@04V zxK`BBxVI?MZyV-mtF9j+7Y-q4osn*1pvU8rD;bI$COy>CQ4!eQsZTJ}(;Gok9qM@x z;@5|IsEzfZo|x>hHFE`)(VFWRMJlRI8mo=olx)(lpG_=)^f(PrA%UYU33z?b?HENV zCM|+dioi*VU}80iAU1!AWDqmp=2j<`#f~@NW)rQYs1pX0Zojmds2`@|;tZIS+aE#6 z>27}+kA&MVjuN>2dZMer?LXEZ3BVM~wPiN9-+kr3;`Ya+D=D`>+QJnM`{Gx%7jPNG zRfPefC1&t_+6!=%LzU)vZ!oh^6TkEiN(;R7BCyC9Ad*abb&RksVxj}8?V2Xgu8wxbI}_>!mX6UQ-^ z5?BUfs={+|&H#6$nc-0G%s`}XM(@5E;Q~Ltu^r6oD_$}l=?fKC!;ag#4VijZ2;~sY z4m0>Z{TQvgn5v|`>-0knk2}GU(#vU9acH#}YpnMEjs>P`@7T&^Hdmp(TY97`1@)~= zmt&1i=foAwa1sjbJGe#-H5Nj5 z5rLdbb!zt3(_CuLjd2pm#gQ|mM<^bworA!B`{QZCX5l2X?4gPP_FI!qX#?5j6@~1) zhICseoXI~~k(z`BJy{W;Qps<~-4KMLGU|_`mRQ?PAn~dVCPIpIBuw~B5kPawb)ooK6YSxHH#G?E=I@|Q+tm4zaK zus-Y0)dKosou)HMc_bUiSm&kE6IK-3_fTGycJrwDY;NA!`*2yO!d!^a-X9I?rS$Xc zqrD+>Tu^v&=lw}}5Qi1r>M)evpf7Kro`JGz*g z^th{%WB<-hdHSX>S?;^C#I`dr4x&t?biTazh_`g6bAR~PnO)tjP-)UP6Us29ecE0% zqtgDz!(rnZ+O4>@4JW;Igtiv9>3hRdFX(&2w^0|Hr8MLdIsW*Pkq*zciyhws8KNQT zoAVfZdCmz;*Zmi>v3cKUwT&P7^mOfeBN0-73HwE2U7Jy6^$>Wwm4m&q8&8d_SO?41 zT;-0>e={jVW%0r-bME+T?$W8+pshI`BdVUYOQ$^L96y(5VTu(Sv>l*GtvO)py@7Ze zMR0p&6O5X7MNr$Qd6FB!iwgV+H-Z-xSZo9@vPCV(v2sJw4It^39*Hv)r#(nh?;vtF z9tzKEv7WITk1b7qn6)oqrPYjGI%Q>*HQn+G6a&g~WLUOQt2Cf1oFV1VaKeq7r=T$O zA%Lko5<>vuNHqi?lxp>C+}uYu+SV?eZUyDg{$1i~e?6Mmt=dFVZKl;*|JRdILDxGi zKoLsDumJKVQ(cMfWQaG|9_AE#N;Y7o8I`QE%^Wr$AJ;2s1Jd0^j8BBnaT1GFjlG)o42zu$&C47%(K&lqIEF8ZVUC4+|6e3YKxePbnPOuSX9Hn zc5UQp@Qo4p0xKtb#Ts0P`0YYcHCto5&TE(yQ-Q^|2H5pFX1mV27?zHRWewyhr!|mg zX$=sOt82Dik=hij!8%27d-*4@1{)Eynydk{<+27%A?dXqiE~vB2D!sKh_nV2o?FS< zvyRy1-fTuY;sYuWips&Oh8WgBR@RiPfo!W*)q>Wjgf;jHY1OU4&pZ;=KpgF5YtT;) z#w2ME4vcFLWJJ|r5v)-kHan+HsNdgcjPVDD8uFIvu?ls~sH9bBZLdyR4P39JRcIGu z70e=JeRkS~=BUrLjI?;#g+A;Zh{!U=j@CQpGcYS-blija8UB)z!eB06!!SDvDTT4D zL|3LMUCS_wDMc&M5`jBe`PwU1VhG~53oU__7|5i=w-Rk9mT=m{UpP&EMT(sV7zP># z^93DkG-JUjzO~iR3}RUW`$^<~j7XnlT%xgE6Q`Lu!H8eo={QkD=kkP-|N4|q5!|k8 z6PTIP5wx1jjD1&VL#4O2iVEYNXIRClJZ<&jx7#6mrGRt>jm zcg60qL3}_KLZx7XWK&4V21&hORb1#OXE7wzBe@D`)ooA(kAw{pM_x9_`7C##7<*62 zaY>}ooJMj6l!-KFpPk!z>EFA#$xP(UW+KIrDv{N=KWMuXN`tfU>Ae|&ys;S5ERKXv z#Mi@uSkze&HH~8Ydt!#kMAB?F%DbD?EpF_Y(r{FL-OFPr)cB^;E?Vb&kMUyE1~Yhc z;XWJ-k6SWTnnQiw%#6yYr8I|Xm5cTqV~w3dy^p79Mp{G@R5jD^ir()#9tligGF6#C z$7HI@Cv(i2x~@59#GKcVJ?n%sH$NaZZZn;5W^B76K>QkN%$JYUBlG2MYNq;fxY|oIRsF5HUU21uEpDY| z7rgMM%SwY4T3_CYVfF)z9Ef%3$5&(7nF)(lXRM0ywlt%nrzIwgGAN;8<2dDIRWhyA zwh;mfj~ys&j_q7DeFR6;N8}g|SXNP>XgXe1jTx^S%jjuKt?@c}%Gr^UXHlc@@|mcW zGE%E*2{}$u$k80TtB>7hnKGxpN~LbRj^a~@B&rATb%xfq zX3ZK}I)JBYvsjfJb=Iaps;CA>#re60PC2eZN4-Kzan$cWD=k&-; zo$kFfqp>2mU4RKjN!uf+O_wLRG(%<59ZNHeCcud=qo~xQr2579`qowT7+(#K%(5XG zqok}F?!iZUx$stF-G(i}-vSBF=idsdYUCdZx2Sr0Xtq+Q-YnIuk6`izY9%)NqJXD!B z$9QNXTkR5E4(IzAv6mgAqA{0Yr5xv+Ia`CAxs7wevC-QV0pizDV{G)6lmZ!JqpFg! zG?rF^IK6$qIAf!fKP`sw7Uh4S;fP_;QY4G2z|+NC;vAB64U3{{o5w*=KZZH6yNAA3 zUe}!%5~K3O2v}Jdx1`DG=9uOj4&>;cCc--#83h>=yA?iE1%U0I2^AS1uPA`&Fkx!s3`PyxY^z#dY@70Dx{U7 z^sF2R4e}u?+;pcCl7d(Gt|GX-)g|x>zedp1y}}m|N+0N9Q_%-{l-ZkTpYCbiZ*v75_^Yi9ODBkO>?#WXUH&1KUSVeF+4jkCFIE3+JB0o8Xu z+8#}U&1I1h_vW%jk@LL=7CFp8)kdI(*z1+~c211e;woRWi_)tin()pnTb!|@PqL;+ zMe9BKcd34QA)`< zZpvYz9cJ)oNwo|Ui6Sd0AA#9ryt={eCf*f|SDs=7#<6K^6UVLk)M|^U>#S*5gnL(K zaH0}OX@tls4Xrj~jU6HSj^(BM8@3wbOi)XY1f}3@C==uu7P7s}>{udaJMS0>vd+Vx zs9tmKiPXF8V8WrFZi)bQ_2;a2a!Zkv0?C~f%*tws$5Juc_qgosdPN)Ct5}72f4ZQa zczIf*bgAc!Sw6iE=(`*kkM{JjhAX$TiWHP$Z*%dk9JW4Z8$tICU#5VU72p@ktZzD3 zI=op2wF#_$SX{wBsdVY~iv|#-dz_KfD)(r5IyV{+%E;8Xj!sMmdo8eZe4I@NWCEq# z_U^Y>?acW)Q4zDMD-c!d3ndgG!#wG)31NtTd zP0cdZ%gfegj7RZPHU&lkJlo6x>|Ka`0Mc@mp6z`Qj#&w9_ty}G?lI1AhA7xVTIT-#KHZG=*5&O!HHDsjS#X!!! zg*@f#TgbC81&S%_^@`M{(5G0Z2yV}8f}~?G89>r&JrV~= z*eeGYtKH!pMD``F5w}{VN!6D$`VzJ@RUlLfeF<4vWlc}~IAgw7wn?jMK`A&xCe@et z328OnALWt${wR-BZu)V|SSo#q9}R1ZRO&VuEBDliOxTzB+f3v?W+KIrDv{OLmuN!u z=nF;0hx}qX+WZ=+X^*Un3HlV#$UgMQZ7C97uh%wA7IuSHeW4onX-8>(TklsYh0iD=y!YitKbiVZ5?RZUG(Dtc8zJQ9^cCq|Vht2Jv) z@g#3QB$3X=>4I1mGkU0(*Dk&)BwcsB&4DS@j6%`8O(&&FahQd# zO<==<@T>CQ>Zz(09< zw7$cc>#F?@_m?(AaNfXwG8*F>JpAgO9>0D$<_7s4CiP9@LoW1sG zs%FSr;?)azJyETY_as#(kUO z3*-ljgM2M5yD%7zR9JdK*K)Y0wd*sNK>3K}99L}$-ko`oCN&=kIFPH;IwxzpT|6J@+Y zwoDN?$=>@d2x{xS*XCoq-XOahm0T<=^6C9{Tc+3*$5J9;hOgkhG*@~gjk&lS_t?Wk zMHmPm&1!D8My9t$PrZGW*%VbOTFO68tCN=%ZO(Pc-QwhBReO`y;Ve*2zeaZ9jT9yVMI=hG~62S6$FaafbuLfVC;9E%nkr5Lb~=QBB-u=##^xJz@S2YoNEnx$ZHz}Kk zs9;|DBKlyQd|FYPA3e`WbDgyEC@(m3D9^^`PhLroJ9$g|ytx`$qR;c$)*qz}RkbsD z7VRwNlXlK#)(qh*-OL&*0w>wb+97CFn^{cO?5%7Gy^aPR33RnG5vGm^Q>j+gQm=jX zrljjdbLp&h2x50l^T<<9XHlMo2orn~eUu`DNxO@OD*`7ezHtazRq;8pWf$GW6y2d7 ziDLjPX%-%)2r%3`fPA@ph`80!y^k90&5)g`3*7RXiJ&g|$x}}G$+K*Nu1H-je^`<5 zq-9v52%Mx0=ObuUWf+q+yBrr$jzt~`w98Qh2zm!dB*#{I8+52{w-8t25iTLhQ%)hu zvk+oqdyFm#-lj-$(h|H`5jaT+u0znOO3;}vyZ9DUd^dWe&MrO?V1;*pMB+32%NQH$ z7U9cyj7x;_lv9NAEJWz_-Kn<~Nl#jgZzuvMDaKC`w5no^&6{16mr#_idZf@UN)g~i z?*NHJX^f}GcZ%FHtvM`4rt*|irt&Ogn)E(+4H0>z9i4iLz)1?X6@pe(xCt_8m$GnQ zYI`KrE@ctm->ONugY8t z(5lK-ojyQOI*6`zsgeNV-M-_pSl;IWxt*Q)TvSyd#Qp$0IM*{6~ z6ant{4v%E}Syay^j8Ks{+ zl7|2>GfLl!FqInHG3NZN3gFf)2O`fd-6Bspg(uHKcn!_yT!QO`$lRtZX~FeS1Wr(O;aQ_X_=j(2%MzM0ti}FOJL>6E;7;1rg)^xE;12dl6QbaB5S9MES?gz7657& z;z2Iq$x}|@$+Hk%%h-5bV!Tw5{G`Qri6U^4V!Q@Ht13oS?(71+l5Ox}k2Kl^Dgs>K z9l$Bj_#S@Tu7qgp?UHzq(Us6OdHe?<6ZWozsF>T6uoy;H;>#p%b#x`-rzCEcFQPDh zO`^|YWLcm7i~k^1mbWAky^-b3N!)5=`3a9(<7W9nX8CcC(9DOCWqk!mYFWNGiRg_i zpO?g~MwZXV}ZA)4ESxZ^PDr~A4+vN=VooAg97CfN83?O1V4J&SKu{H6R1p8s1 z>Hzj@&kfijerbqXdt)2IdQ<&{W%vlWx$19&FWPWM zpcqS-BcW1+Zs#Xy?C4vz&z2oG$6jMUdZnuRE(0@#WTwA!3Y$29)8yf6r)X*2698C zdD(e^64VYnCn$=#UT&y3ANfR)1oN`7C3t>tE;i1IHuaZ9LfO`-XssZsRFk~2qLOU0 z+M#5{i6D2L#CO6dyJq4HinlmS`CF$-!hy29Q1;v+R;cEIxh0`+Aln{NRFm9D_UvFd zs8`Tt*?GY*Kcs++7^$o;n?u2tXk%n1j0WK63Rgth#JDXxA73sCS3r?8EeVulo2`>+ zY0NXz{dhEMcGUc`!<;#DvP#M$1)<`sQ0WYQ+@U}24EL{ywqXdy$Pn3B9g9+qpi~>+ ze827khM-uQmgeWW9>X)%V>-$YF+@Tkw9#N7k}n=p5Gg9eBN|5h)6oXhFHZLhl~8Bk?dJzXun~EY$bl{KeG!%xqhPrJLMMmxx;CoRBu<17`0C} zLeDHKL1LOh^F)FX6p!BC7o(Dda)ZVB5VceQEvXX1Wz(JaHRtyX^3W#B@vMSCAcEN1 z;H!Q9nb`q+4WKaFpO=U2fT$7{MQaC&XIJ1wjc5a16$Gfjng_9^AnJ7_JK`^$5rAsp zM-U2x0J3}97PVBtYP#~#2-J%KL0fO!W4!;b`fqkw^9 zfM<>aP8|pA@d0fo1C6Evxu*f&o(>Gp2A<9VqPf7Y`9R+wFn%WRQz3BmT%g}sK;8p)I)#IO$%X&V#^|$ADpv1CRa>X!sOx z#52I2t-xO|08hRMOnMbK{wLu19l%W^>(tO@i~&BJ0Bpqj+S*4`fq|z2lTHJE%m&WF z)=b*HA>an=<*%)X0O!LI(`J_g1@nMK3xKN@0+TKRCN2UlT>`vuDe(4XK(8x-0TsZ6 zWxzelfi^b)%T@tPZwA)i2K2rQxM(f#&pP172Z3820dC(2Z2ccF=qaG+X<*H>K>l+; z-)+EguL6_b1FqNsM0WvNjk>6HwSn6k0-G8G7d8djv;d~G1!{EyzUm6xHw;*PJaFqc z;O6nbhd!Y7RN&B4fIX)HN1qAYmjk5b0zVf3w?u%Ct^sCT2VB1rsJ#k!YYi~+9^lBQ zfX!Qg*IxnJy$h`Q5IA!?@MGP2ka<(!4FlSZ1g0DTY#s%a zj|Lv|0TU(z|H}pn13=A-fR2{{XI=^Pyarf%EpYpCpyTzxmn(r=Zv_6i87RDsM|T4E zJqYZ46nJ7Q&~h8_%NxLk_kqnH0_C3oXMYF0`8&|_Z{W|m_0d)v0hujA>dh zz~V!I4@Uw8qkwHk13Sh6r%nPop91tg4On&t@W@Oal>=+%0lo`?Rf~YorNEoZfWm8m z+SdWQZU7#+4S42uVA^`%_^rUh&-3VI;P3Z|KFjeSqt; zfcXP~^+SOECj$rO0Y}UNPCpx{u>knr$H11)fIGeb`hE?Zy&bskd!XQFpm--DID9v7;a@=GdU*9Ot796}euF|kS4hH}#h7#Zdu!D2 zmx+m_V4hIzTJz6q)WDUx_~X|WOs>fvW%%RQ{tb&CyYa`bO>R<)SH|LxUpwOs@nbUn z__bj7+PspDKYp#?<_7$6CjR)fBepl>kD>VE*Up1E!jBX2$FF@31&SXJ;*Vdu5#|X$ zX5kOgR-eYhNL;}^1#7ec@C&tm1k_>;Z97q80r2-Zz&EpiFNxpyb2qVdCGZTfBnm7d zZoUw>k?3(1(2aQL8sL873EuoT(HZ5Sbs+kz12Tzk9tOT7N>P4Vh?q<3T1LEwOlWTt z4?G6kN1V9{m`0rS1TcrVU<+_A@zQ(13&dw110NG@`N&qpQWUd9@QcOwO}+TK`oC*e&SRJPn$|SKMtTswdZ*BEOBr;FqF8x zBXBG6Brj|tWuxw9h}pnNNuM^>M>l#2ej!SBVe<6%un$qeNBHX7eaa{5TR9z9YUr7uZfb83r~H zJ+1`05nJB`o*`a-8`wtt`!4Vo5Uq!A&qe4sYuA5{bIS?sD_{n3-cH~g;)ge23ce-o z-3{DLypRT^yOsF49qZg@#bvcHRAb&z!u`zC@`A1;bve3@y@-#o5ZQl0aJ-C zF9IEjqrV4^B)+Fg-cAgB2*@J-c^vqY`0i)m8)8*o=%kgzvQpqG;*fKIVZ;j?fUU&* z_kpvB9aLaH60bJ^ULjs>0=z`@I|%4a)E*AhAYMEac%GPl0&o`b?jLMiDPv1H3?_uK-#T z&#nYE6D6yFBBGd8WhUW+A`%)(o4}*viSTM%C?Ve83cN%7b{DXlSO%S>T}6EGGVm_( z>$|`%;?r7);3J}G1E3KxY#1<@*fSE?Njx_ic$WC?IN%%N`vPD)v2iBw2(h~y_=UJ_ z0dO-hYY|XPbhs2afcW$&;3Hz!R$vG5@=L%r;)d6O6~sC317{P*FsnxqUAjS$QZZ|t zdDMXz{|A1KC8qohoJh3gg;qo+Rd079gXjd5MH^B}N6Jg|{z1V#i-el?2^H-V>e(k$ zvrnjHpHRs@p^kk*6)zHM*e6u5PpDs?P`y5(b`ciZ)+f~MBB5#*2{pS&s92v+uRft# zeL}7Jgi7@Zb?OtU)F;&FBB4SNCp4!|s7{|yn~Q|XTqM+`PpHa8LQVRFiu4KfxJal* zpHPcFp%Q&U9r}bS^a(ZS6DrUr)SpkNKA%u~i-gMa33cbwR-?ppMduSr&LCzOy+C?Mn=ddDXek54Eaqy)OgCzOp(C>ozoGCrYTd_uYS zgkr(7pihuH=n|h$CO)A^d_sx%gaYvi<>3>G19w7SATQ7rKA|j78qg6wp(K1lLHLAn z@Cn7>6H37+6as3|WxSJ$0CGqB_X!06DWKi^M8o%qM(-01evxSGKGD#9qLHIcqHQk{ zjeC)3*hmA~vrjZ=pJ>cJ(U5(j5&J{~M&6HWhxoA? z0h@?RIs=yzHM;=yiE$ag3B)m7f#Zo?-GJYTce(=~5qTUP(1;!!BIrYWkO_QBtl)^j zDq=@(;8&uc4^TvO?hAAyHW8bN<^6yg2rUZ;5gGk~?!>PHfWL^5gMp)npN0Uth>^9bN~V!@HXLZa{(U>2cqfFneFbv*DL zQRD+kiCazt?jW+J0E3AJrvXifIUN3&N9;Ni_??)P1572_dpnyi0$RTPej>Sz*$7=bAWb)aPw;~z>#qCTl45JVid8ASV0Up7Z^%BPrOXzod*Po ze&+*&h%Ll6!hZpfPy9*LSO}~lZX>cU1o8;csaVdVQ5OMYh_s7=X2k2nJH+*ifSZWG zVn8GMUjhsvz9haS?py-gLx@hw(kPA|A|4~AUJ6VjekOJkmn;P?BM!O@=tVq7yhP+) z4ipf#5G#p{D}e6A)5LQ`@JgVV5M82PSK(+9F_lzw!y%E-Qh92+>h{ zfk&dF_5qLT+yFErb`if5OK$|OA~IJ2{fMWCEyU?J0e<3F;xFRvn}PMjskZ=U5(nQ3 zj3gS~1~el+BfchnTMhg}_-+R#6Ql0}jwh}oRuMlFdx$Y>fbqoj#LdJn#IM9dYk|iI z(e=z)hoh;)G(vPjgZJX-2~eMS;#1%m zg2O1eg;+$-|ql+5P3U+Ao1fKU?(9453+v4(KzA+;>F*A*ND-70%M7% z{{o&PhW`T`M%?u;u#T8t3quR%6JiKr6UQMo)B!dUOX~wy5wA4>-X;!d1RPGx$EJ|l z`NYhoKnby~8SnrxvITGyvAQL&hN#&Zs7I`51FRxCrUM5NU5G;B;RArji4)rcClfhKWCy9T10Cjo-M`Z%X5*PLY zE+KB|4Xhzn6FZ5ieSv92I189dY#sn?B|aGhd`T1!0m8&B!+<-8=MDy5CAJam4guDU z03IMhhXE1d<->tDhykO3gNeb!xx~h!fG3G_jsY$r&LdtTx*iMkB-)JyIuj?11Evr| zCIE*J$4>+%5?4(ERuIdGKM64abu~w!!~m2yTF;*wi1|~1^NBl82JRtho(j|>-a7;M zm?+Ny&LOVL1#Tp!1c1|sW;1}+#E%8QPU1Zc_?S4L5a>kAoCTB+VhF5J1V>^BOdJLI zvzXXKY$ocJ0gVVBF_~CKtROxjJ|}w22Ko@iM3{Jpc#P;a2goEYC$1*`CTh(E<`VOX zh2_9vVjJ-)(fTZ)9dSD0CvGL~B)%th5JTYaYljf?i1Uc2iRXyM^MDq_NyMqd^~6oY z7sPgA(tKblv5DAB^f?C@KwL|#BRcB2pCMvCe9|d5w8-*UJQ&UE+Z<4w}}skE{lMJh#5p7v5t6v_?7sJ zC|wN9AzEAlv?Wd@&LnOkRujJxe-X2m0JDj2h#!dTD3C|IMZ8Z;xD+^%c#U|Q7{3&l zL{t#Vi4TZRi9weE!-=)TeZ(%}cjBmKaZ5MpO`g z5jC#?MiXO+C~*bx2JtS@@mk9PxR>a08_ZwgFR!B`*P& z6X~x29f_x21-1~r*MZ5z`ELLh6A!%!JVre87VtcA<~u+xare8xdZO@sU>4EmLtp^0 zgV;lC_z2iY%>NiTpJ@0g(3H6PGvGR+*5^QdV(OQ`G~%wWfpx?`+kx8O0zZBS>?A(= z0r;Hw;3wcy;*y_%%ZS&Aw~6*UfG$J{QARZT1!zs2Oq@>KO{^z+?gaW0AtFL-AT|<% zb^*hQoy2d1e>ad%Y#=rg{q_KZh-JhI;$Nc9uRtL&i+GcGk2w4{;ArAO;!&di@4ygZ z4l$2-k$8 zN&H0YA|4(CJWiZk(kbIJswAg z5u=DE6M>e*?ZjFl{{&zr(RmWkjd+UKLgb$a%p^KZ2D%bY63-HEoCLf}d@}|3fvA`Y zEGGt>1`H+cJp*`wMrZ;>U}CorIXuZ@U;rhZ9E=$6o?WBxYO*6cS>>|EdZcJw`l1EM5jI zCAwV$WD=hdUlZ3|3*1N?z8pB3_>B0PSbiOF12J+1a1?RE^}rM&ZzT{Un%@AlAr{;O zEF@mP6?lhObvtkyas6GuO~kr&zyrkFj{+YMD;@_{5od1#&LvL#A8<194^jIGVC%EM zi^PpvfLn<}w*p5JZxbI7V$s8M&*NwZv4{Bk1)$b8An+QX5nMc@6%%4fggD}o2yN<{ zzye|+aRkqeCK`PJe9oiBZv!oeG4BB5h);+wiL>4X77(r91KJVmhzE#i?*lo6SZ>jR zk&YmaAddPFIF=AgFuvkZvyXt*#MvJM=Mrr`0ooJmhzE${KLsWdJw5~a5U&w$6X$#m zTtL+Q5=bNN`wDo7SoAe;DRI^}zye~$cfcxQ*AKw&M9wZCKs@;?@GMd1AD|&|WnC=L zxP}nRM$Y9bk~@ieh`9}c`9yXzAV6d_2L=;&aw+9HBA@FiXA*U|sInm;7N5M$wJ0?X z0_qZ6@ubZs#4;3dB$lDP&;#do62B37nLv>Ehp62PxRzK+4C)OGC$M*y!8GmZobiJGH;dc+E1 z6*2TEU%=@od`@IE}0BmMvOiQ7)$(2>?U5G0=z*i<{H|iM9))!zQpUqJL2aw91SFPpAP&% z+;j%8n&`-K=}L&@NT2a2tq5pFGzkGMiQ9>_#HbQr4DluLEwOkOu$1Ul3S<(G6HgKI z!@&83Sm^XHkMbkHOkzM8FpRjJSWC<=2hJyMod?`Wh^0|KVXc9dejd<~c;S5D6=Kc> zz&xVcLZBCM9dRSE>|$UAF=a7u8qst3VcO;z7+U|5X-N6U5TSf#8jeg1&~HO zLp)C`yc$?cJiZKgia7Zi;B?}^Yk?lbGsN@6<<|jM6AM-V3yI6G=Q-k&mB5$8T{i&h zh{%mVIni_#(27`3Y#^rI1WY4-CUz6+ZU!D8Cf@>_LQK0A$RXam4S0{ZVKs0IG2?ci zkZ61d(1Li2c%QiPPT(5CcNZ|3ShfaOK^(OfIF|U0_?x)(Zs1PBcMmX`xNIFzLA1Lc z=uEVH3`i$dZv@s5z5fUFC+>L?xS!beH1I01Vk@wUc;p3O6VdKPpfhp*E5O4<#p}Rw zLM)(r;Y}RvBz_~Z-UbE}TvVsM#-l%oe~Cxm0scpv#H*(gpM3<>dJpJL^e5WC4|E|O zARZx3`2aYB_=~9dA+U^CL5yH5M-XD+-ZwmI{xQ&oc%S%$Snvt3km&X)kV!mFJVl)R z8E`uBCsE^bKrH{ekw;sIZN!u>fYXSYUjp@ryNUILSSDEX6^^bZt|NMW1N0?YZwJ~D z_Yn6J$9)S-AU-3$Cg%PKoJ0IX>>@7S0YnM00CC|?9IYkpBZ_weVWPnvpb2p|v7VUo zD=?23{u^)@@hb5avG{jjDbei@Ad~o<_=f2E7toVk;@h*tjs2M~7? z>xpA)V1eX#;#1-);_RBhxx|fifm?|~>H&unuM_VObLs>0h+z$Y!-&krKtCeb5-29R zv;qzy{viG(wzdXdB%*DAD~PhTz*$6LIxvek?f_r{(YPJZf_Q~^ljz$47)aFV1T-Wz zb_Sj#iZg&Pam<0h@x%^d5Aj1+;1^Vtsmi2UxrOrm8EAf4DmY$hT-fpTJE zCU6qbyBE-(*w7o;NEGz}N{N&E0;dyS^aHjNmuCT26Eph*CB&Ekz&PUAfxvj;_d&ov z#Ja)214Lj5pb;I00vW`s#9PG0!+9y_W98Pfr57h~7^F{fV!h0lp*N+6uf+Y<(Vhk(l`k zP(n0#9cV(FPh3p&cmwD|h(*so^Qg(2KuaP@TtW1B3+O{UK|Dj8_BN1B>>_?Amc9dA zMP$AU^dmMCTZuLw0PTqiVmXoZAut#y%hcZD@%zM-kATyNpNL(=;*Wu)M7K|XOyY6k zDdOZ$fzyc{#2#YFXTase;Lm}BiS@(=V*D4tB;qULJK~Zrfy;=4z5;p?n~2Rs$=5&` z@e{F&So{sJl<2k{$Rr*oo+3{E7C4>QLF^%xdJoVkfgm9k+rPxM_j`yxi8~ts>xitzz+mDizNvLAF|QeL9=dJ zeuwrz1~I+^Fo~Gj6_`edW&G!JRsUVYI-*ujpg!>kv58op32Y$7_W~vnKNGu&b-jTH zi2OdlOk%=7U^3BR5O5%|jJW>)mECnzmFd^UaS^c{1-k_W6vS>ZF|o#O1rZcbR1ieR z0s{jR8w0y*bW}tI6$86-jA0y62fJhRy}plw`cC`~^Ur7Pb-16y+V^?R;VhT;wZXEY z$P3{x6Eaj1*&q}qz#m{sKcn)vDk3(qzu%)Wl0glx~c~}J-z`DAyhlQ{V^41WA z;2u1L-8DrlcsUDSu&O2U!aj(H%C$uegF33}7}QnO06gl6zL34X$OQ>-3f8!Yjj*SI z*bfekL|GWqSWJLgO+>@7qtINM%af{2b{9u)5)O2V1$ z;v)FDi2$hDOE|+FPjMf54i=tJC{S2~aoFPuXFt*m5f(5vSS*Cdp&|-`hKU~_=m#nY z8cqc^BZNJig7YwTq?ib`M+p~r0FPnLXb}nZLquc987lHYEX0HF7%>p?junN#IF@pf z>Lt8`R^voFxDStD%y=;Y3Wo_B*a>?eXoC0wa!eGt;RYna(MjSY^qMUCfN==MHC&ZH z41vW{#d4@NP1J&Oa2fhd7lR=E43Pz*U?tR;DeAxlxC-$RA^`@@5`j=?wy=iub3_*S z5q3h$xuPxfpD+BO^CHm$x-JoJU>w|8x=d99oPq-@#1R;_QjCIJt3-Z?hJBD@t;hpm zFa`8shGZbHO*F%M>M6bryOCUl)sL*`pWMsVCN%E2Kx20ecgz2PluO*7scQ*+<>_c#6mERXf;Y!|dgD}!ZjDdW;&QS0Qwu2m`x8!V%)&5OnbuJ)vH(Xbjnhid+x_aWH6@2m<>bL}@q=S0Hh?NPvMkys7xoJjYA{ZZmDOkO6YL#dUb3_M#UUPFJ*s|SE_oU#%xXg6?&%DY4jI1LxT zJ6iZbI*z$#f-Ue9+}I-$!8nv@wog?lC<8ZQMIsD|6T`uBzsLjYVGA@oAY9=V+<~13 z#UAj87ky#u5itqgLz<(a+i~Fz&SynE$azlWgU9d!ez+z^gZ*_;8b;p`xmuIL1xl0>?DV*GtE8G;{(5nvobee^_Co~NQ9ggq1CVEtU!K@7w}`xl}MyoHYt z@lwnKr&po^9Dx(C;hCv@h5S%jCLD%!JGM!ilAr@jhxMdQakeow2 zg?W}@5j@Q)UctrO;u=iOBc?;uyuulV6&9nwuBdQ?jm5-|aH_aC4{;^LAt>!A%7bxC zcR8nakHZ;oFC)C*J)|isX2Sv~TTWDhBuIwI<;8TctsopA7UH3EMbQH+D~UXC7A`?p zWf2a&s)#;NtE#9E`KpP+5Dy7p>nt1~4VerUU`sHA1LScL1tGqvNPtLJ5d}kzh#0UL zB<#UB7(L%#)qXe(9S4hU@DyIb47}C~ zU$9yy^1{CL;vh8KC|tp7i|~a`TSa#;4yvEpsp=KHhjr0nGql_-+QL0}2%#||47~S? z0Z{dTaE4#u9!xtZWY!U`@Q5kEuVF)<8kpAaq(eNDuIacF+@byaI%BXqkV+#$_P zVF3$Z2~@fzs>2ny0dsGQg;4VsQ5S5IL`ir8FJa+5u@u_e7aidvm_HC*l0{Ew_E3Be z_aBQ#@Z(dl6P(iM@Onis4*I{KDr6?CVSie27`mDZH+Tu}U|Kpc3p!hf9`F&&(~EVm z8Qd}mPso!|6a*to;1bnGFwZ2GXBKOqRu)koF2m2@pH&QjA_Nf>2P25!0@VjF`%YZS zC9cER++rdW$s>wGvAn_-c0(+*%O^TR+WaB|EQF=tT0pddNAMhG78G-#N+D4bsuvcu z!LEpKgx}x+Y$__YL2xlK0!mnmQg8+?f)S`tu7s*i&>b$r&oIbV1VI)%kpou3I;dkW z8o*V!2>~TVFk~wwtY9^4fI$u-2s)Ef(*t&u6MJC*i8X`4v5F`MM$AL{s;bIBMOacz ztbpp(MQu0_SHQ1^2!H}LMNu#!BF<2~fj?k)EfE5FYKwxf1%3k8I-(Waf%`DBt{4M0 z^@KefhT|~3zL*V_Tts!a0ykiI0}%q&4TT+?gmaL$u_y%YO@tQ&Hx(mbxT^?((app- zsL@>1fxGZK9BLts!Jw8R2#&Q9r@;uv7)@5j8rTRQS_`u_Vh%(?xwfJ*T!5=Eqn(%o zwc3mNa33DQk`7`87_l2^JF9YlvS8j-WQ0Yq461e$&TtkkL11?=46^qSxnM19f(AWB zQ!oNO-ci}O33~{17sDWXFOdt@!X|L>5KZ7F{0c@Gh`*<*1+WAjdWmNc)<=Ycbzflz zF%Spsy+s#z3@>1kkC+BVxJX@JRehm9#Pkz!(7wOu0*~PZO!N~|q4)q%686FYa33hV z-~*VE<7C8^tS80fJX`_0!NL*Z;1F~P6g}YuyoISjA_7Vd5l(Obj=+b96|KQ( zn5X~)M~Xl&;!g%P!~!KmOWv>PWn!y|YO zGsla$P&!PM2P2&28dcf}A_Ig%7&MhEQf0IMJ+f7mmz3@_yLUgngWrk z>O*5lf@BC;D8_^BBH;i=%uNE-Q+Nd<7mG2FZ;2=j+h7+MaX0}{sv;o@N-h;nZ~%?~ zab7;d!3fJSDkChX>T*5S6MBQ~O5p%;a0rYjouE~!7Q=EVuuc?(?GOz{(9UBjzx5&j zGHwvrU>U3i=Z&Hs^6@g)o=`-M5Nfkbj#f0?S|x z{JdTK0_Aszs^Gg*41~B{;xHsfi)V0Pw>S#(V#FfYw^tm5#`{Eb_%T-OgqZyz4%)_x z&af6X!RA9^JB&Ok#)1($bdxH5g2)1!kBRNj?YM9U{}W;eOgJf~K-W{k4f359g~13f zx4NAEQ!k1L@V+Aapy*Xm0*qLscT_glggqSo zSsaILH^eSzc~i87ckl_uCW?uW?~W)83-5}hQ0%_2h1$u&1+qO6R^a$tl!M7H#B}KQ zS`32uZ^dG0_)fUOLwE*{K8WXFL^<6d*(s~Ju!Pm=#0IEmAsWGTxDBJyi?Pr@gYX9< z2Ffy{s_IZ1A~TC9sFFoELmV6i*Q}xyjLj}4!rq+X0Q{CqJb-h##bt=jC-yTw) z78G^CqmbweIf{tf@U*CS1#OFqPO!&L><3#1;Q;4Liz^UXR)j(M3Ze>(t0*SHwMya^ z7-3h{$-Z(2FF0FGT!Mbpg+IK44=}oh7zaITir!G$S-5}^ne~{_g^sw7B;_x(hg{$dHN02e>e z1d<>bLI#NOU^`GaKmweC-Gf9dyz&?C;ckHV9V`MxW>^QC!7WI5LY^U_Ae?}+5E?AP zpxRJT3yi3^H&n%j30sI5F6Kd*5uzeg7%8g4J$ML4xZIjis?NYgFbfsw;TW6-zcC^J zDvlM^-~*VA6LTOEI*b=xp-Y(P2}W$);0dZ0!csUgNt^)R$zmYn2p74*h_@>;MO7nc z279NA1JG%P=mFQ@HguaQdcjS&18xz*3qC;FSz;b6g6;D}Gz?!LLZDWps1IcqiOO&s z&OrELF#}pG5pCeRD3KEqAqi$J74xCdGSLj)z#p({x!4QCSBMaBUMcFqBX|x`tHerZ zvs!e7bZbN=*a0!ncdh6T->(zxA?=nn<9iK1`<&cev;Vhoh~NmPbJNP<~A#C&M9Q#6D0yF?av1kWKV zTC9XNyG2K+5hLn=8*Tq2PW|49pLRj9^45-l58R zP*}pYLn0d59Tr_6+Yw;}`HzYsV1zHerYf2sO28|457Uo{+0gX3Xa#X_7`mJgZg3Zp z!T+Qf0!2=V;$Xx&o}+pPpM?HL-2OAF4@0-J!X3UlCvrj@90DT>a_Mq~ z-X+lpp2Hhhd0DK3j#orC$aGbF2MKTrqOOURV1!JDTvxRgHbL7Pq7yuV=MZ&Mtb{hV zL`O(>TV#SA5CeUG5&fY+q9_U{;4F;%Rg8ghcSL1Kgd~{to0t!c?uusc2L6ECN#Zxy zc~9&GBN(&oeN{#od$Utfv)(D=1z0s9~xD!&mm!Q!pR3`SgMt9Pn`VFV0*FNT7{2T>O4W>tD; zr$1DMz<3BS(__Iu;R?J~=(W!Wh$$@M zzz8obQCw9kXb%S=0lJqE9&jHXLn~X+4iX^=4%><2;ASs8;T?Q}WhKQL@Gm8Tp}vD? z3^g4^Jy;5>VO(i38Is{CoNy9n!K;k$g*0V_1^fs*VP83M5C)bPfzY6WXbQ>j6uc@5 zU-+()$OQzr8bgT!!?S%mU4uCA@N6F5njXV|2#s<0{0I|JQq~#ML@d93Hj@rrj*}mTx9kCo?p{!{0B3{BllmQ>(8I03D2zgEFJ>_ znZ7bBJd4MGe*H8HLp^99PzIMjACFLXJ|1elS%!ddv)V8d#ob@yPc-2oKqF#|kr{n6 zX-3b`0L?Z@dHCzlAd9}~jmdNgr9zCc85ZHC8w3vQ=k1{(D8)3zMV0s9VxQ-46eAqB zMllXdf}JL5=Sp8^Osq6$JN1K$4GuVj*gj0M>Q1c zsEKt(7NC2$#h;^t%)-+V=Bu$NOPbJe%XI*-CM(B{$am}1pm5Kj;7XYtGMDHb}7k3 z_bIz{$HY40l;hub$>$ec_hpYXf#>rEwfH{UH#@}H$ge}M_?e0QaroNrzuix|*M_(c z{klbEOkKj=^!cKH*rl}9Q+F?YGPO(mYpkhV@;N#=^UC-b`=4*aKi`&?;Z9BThWBSMM9Qa@jm8Lh20N9rDdrteOasln&U5Si z*N>qZCR$B-gH<)L?r$GJ|MJ#qRwQLFOxzn^+N<{W_B2F`(O*u?u+soFjbKYfr|nF1 zkkV;u6YEml>E{31Y1RMTsWA>O6^;6tXdtCgUlZ$6+h_~7FMm%``vNm-)Zm!c|PP z+sh+0jqWkgKuV+0Cf238(Z^Z;YojJUmHKN=VZYS0ddWl!DXpG2u`boEmjCkACbe%? z6R)XeZn~%9Q|XC`22vV*XkuNe8y%SazrLoG{{7|+^mg*~9-N9cGuKGnSFsEx)}^}5 g@?XAO@I@lamoE~=Ji*Mpneg}LI7z;B1okTPf3x3g@Bjb+ literal 0 HcmV?d00001 diff --git a/docs/Python/doctrees/discord.doctree b/docs/Python/doctrees/discord.doctree new file mode 100644 index 0000000000000000000000000000000000000000..9361755b4a690923eb197dfb747884478e142ec2 GIT binary patch literal 26317 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

m3JcWQtu5cxwA*ySTGYnk=&;vY0r}R39F|SrN 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

|AT?nF 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

@Ip z;%1w`P+DW_OVbH)+UbTYHn`ipoep53r&B$?eoQwK2pzju4~+#9$C&CY-k?+7-GwY3 z$S9P3RZZzOSDKz)jQ8n3LZ@tt$)DLh0X`I1D2_Rg4tGnsLfhN;n@vxXObr~^s3maN zPWB#uA*Z3U1(l@ISl}UV__~@rU00WpLt3&V&-JI)coGXF6fDJq({=sgmP?A;nKU5i z$aaG6adjyiB3n%DWDEx?M>FnWJi7mH2m9xOEZYnu$s9n?QMH0*l=(+S5VF-O&DP+7 z%rPS+c43)yH)8__DjHXVUi8c_uk5&5QYixl8tS5OPhIzi_)f?1-fC5OqmtS22|f*R zJgt|P^DD>kqqu3}qveK%l7*)XLTqqBOlkht>j^2j9+NEuUDm3zYBOEWSK^jz7YrN} ze);;0Q!*rFCASa1@^ncb3M_Ql-FR<%;9o(MzwFLEd>#k@CG(8$@8*lySHW?!*&{?I zYp3{K6oAw5B;)%px7FsDZbKBN&-Spwi|ZXE;D4L&_a7d3-I46cDirFcycCkk%DS%s z0yNb}wU&0ii0yI7_6;K9bJ}mwz(W;M@*KPfPdUm?HRtF63RY^#C2Po;9W%&rYDh5B zFok4{gzoInNRHAQ|K$qv;9&pp!Qt(EFYX@(2?|l#AXexJitLGy;$9Ak;}Yok3B6FS z4}rh|0Y@!54L}VmMUHdNCXHUy@}R)Nu6D4bDZ|IrbhqBjpH)G8%({2%pq3aYIRBP8 z{W$q~ZvCJv6ZJg+*?aj1UQx8$95i>{xn1~dM7MqxqA!TFG;WftKTciG@9wQ*1Y zPRY&qa7F`sTsX9$bDT11g&TTahx0tgI75!2ksf#_^p3<(+>;2RBi>%@9~buBZ< z4jNb>FmT&XsvW$jrl-^v%wGs2WmA_>2L}lpbjdJt1Xl@VZ}JM!#YIBK`lpM@mdBBV z3_kzAtyo0|%SU0>1VDTlkoA}~);O>mOB2prhB`LmCMQ_QpB zFQ$$XTtR`w_|oai?RCBUvi45q-8K*j zATV&}z&_xKOj>|Noo-R9yLFo5xFBY)<;(!4lgAup3ujIrI+ai&frD%N!)o%Z8agqI zfP#|~!=NvkO++Hy4g~^KjwCd;FjOM#L4k$Kgu<>Z6yXKgK{hUvV9dq?1QjiSmQUFA zC@YcM9bD3pXUBu1T@{PvGbmpj zh(Tk4fg|hV-7@g@qINBG6hHxF`H@z^Q-|} zit6-Bd2CltDux3UO~*K5(3sWH@!mtBSGJ{S(+hy0lSX`S^u>{k1-&%WaG>Hb7+YQs zk4_Hm)AEsj7rJE!E!%Xnkf4;>J$&@_fn4~~OFIn*Dp_viiwBR7_JwY}$_;>^lg2!K zd~|ZYcmJWx!Fw6gLV{8n^XznQU()q5riP1CogbZhn)Ra6aB-?9r>8@@h=v1|>muiL zhTNc4+X8~lEiZaHWYq>-oNCZ|cK#?`&(0sATDZ+;k9uYSUik&j#3JwWk)Xj(=z-IbRa>ZeaOr@q zBUM)r^Ew^TE){jd9NIj3t1Of*-k~f3I%Ij3?4qX^Z@-Ly7FW?$R9-9Pn85)9$M*%t zSKdiq*@Z0`8pZH}DP#1pMz+G*dK=pl6LD z(OnpWz5B0kPydy!sl1>a9sm3P{Nlf8L|9!Keq7Of!fZ2|+>9r4e?M+^9R*KH))#+* zRw+#A7b9Kzx1%GP_1|Cc@GZwNX&DpVqYLKVDfVdHqWsm817YP_1PX{Dkl|87Iydh%xE1B04| zRLvWd$UYN%*<}Wi#!{kzg!cX#k_+;!u?jh~_{X2*&YmUEMi?N2TotM^Zu81+JGt;; zaxdfhz@Vniv#WPR8RR zO!-`B_iPAl(|;O3gPw-w4gIWo7V4ed=GDg9AcBlWXh62RS&gX{%L%$JDRu-BbhZkm zqDHSOb6(4386u6Jy`{fP32vd*~^nHBDAIIG?3WpGQZ(Lukm*7t^Vm%U0hI5(v+QXr1^3~*A2^LIXke~<~#rd6&-J7 zsc41jV!WAO(JD`h`l`yvNR+*xCqo@2fGCck6H8h98QK8_r494*O-)PfJa_FC<{Lzi z*>-hNT}`Gh$It1&miqZ7(yH}pSEJ|=P3e+Lg&kvDp#*4mdyX6h7`w(>RBbXd!Cf6 ztWITD5o`!xTVvHF8VB8!Uahf%2}0|1x(_yF|YsSGN;5&_U(HT3tSM>DsWStf8Nc#7?qv;ZYxd=2O8V* zu6IicC^t9M_=|yyUM;T+3QFrh{FF1wVI4@Ig4EVWeyroPP_tKkbTC0^J$7?lKj)qu zS(kP!3esMVw0-ZCsqmCUc-MrFsSX27{6hAgzg%EUPEFM7PK~(pyzAqB2k^9wp<<6 zA&-CPmB7ZpA%g7_(pdOKy^-~)SDz4opt3H-BaWO%)=QZ&^>Qf}6qL5kK3}tOd5r^~ z7%M!gSDp26L2P?~FJg-J>H#*0Afpq4j_C*k8pFlB9}V|SHq-;8laSO21w!9!FEE%M z%ArFL8YT)~r6%}lE00IYR;2<73@oUr7aUT@_0LXT6tG)l2tZ?0$7%wZZrvH(jCrC# zSUo#(r1J(l=^CJciP8=C*_5UMW%{2@;o7J)9Jt7jU9MRz7x!e>^0zTD7D89Oy(Ijp?k?D4}tJbEN!2_G8 zSFql!mtG1DOrF1Q7PU9B)XU#B9JnYEaBWCw3bkThP0j}IHY+xWV08U)d`7yBSfYXa z(E$XXtD$~OOZRrNwsqIgMFb-aOr7j_i3(b$<;8e%K?9?^t)$I1#6e(A}0LUCX;zy4GLQ7iN2nNty zgMyZp9|gM4m+Dm1@x-f6*-5~>>MnGV2wwFXQUs@({k+8r_g*w+KQL#y4~w<$Se}ecL|{XCR*jqJ7#XT1=+w zKvH?3H9A8W>Z&A7TFXrS_Fa`WWC%c$R>{|Bov^o{Av^R?ZVC+!F@Dk_#+pW)I08v? zWarPyMX>}Br>!2X@3bBnbO_Sstkm!1p)*;f2Xxj3AHw{srI6^14IZxw+P){lRcMz2 zBDJ+eFT4sgU_-#r5FwUT(kV_N0~jF1V@OcOvaPwgZb`5XkZl>%HsVOTG61nb1u?BR z4#Jcl;N6Dy_x;_@hleP!E=&{GT^R=G!Zf&T@pUbaGO) ze&#J)8o`EzYPfYuEzw2rl5Zd>Q_5736W&=4WkhWX9s z0BxAtY|?15-q$!9*B9epk5G2VFmP@k4Z2ApTFxQYRP-WJXdt3dP$L5=#G8PBnQ7wzL|UGWtE zbj;ggz0DulVU-NEj|~B+OOzBqt?m-W&h|rYCxs?}DAX9ZqVRqg-lY&RMz&{`6~hCE z2sD#mMQHXFxG^c)1ZJok&?sfI#&t-_1{9RkwXs@yt6MKO@%0_qv5Jh|Ei@2|;<6RX zS@r1JB0GVa5yOE6t*C;$Tp_gpqi+@Tu_1s6JiG1X@522teFKk01u2cioK=6`(Qb+g zvlE*?tGRPpE+97=-+nBn4H*KE*(0yfvQjz`K*XHeXCY}^kjJ$r@+}R%$fX&BXx|`1 z02=CuNQu$kh!t)>)RD(86J}klXs@d%l0k(r_z;HD;+W*VQ)X*K(CnvBK^%9;$RdtG z9MW6G5hstBeh_lcD{Sj{i5!EHDRp6^JL=aL}-Fv*Dxc$;Q zeI}cyJ&ZY)=jR6bln9fTzqc4~T(Al7Z zn8HDz^TssSg8KI1AdL%hN`mD}!IG|QNXVF40fH{5K>Sp;!F?-`Mg(C{s`Pk14c77W zEmeyO;y_ci=|YreUrjY42!oR3tKS4)-;z{-pbPa2R_OKCPa%SkR)0uOomFA6m5V^Egn1$lx>-?D5#K}+K^GVswGel@xM zxOo&3ltF3o4iypk`j(~wOww^LU{E>*2)dwh%s1n!VY?0*5rl!`@K{ff`1Ez01{AbG zDbgFVhV(5(1qiyBmg`{7WdJQTC}@LFppU1MnQY%s0L&IrbpW1l+Ww>(6Qn`Ib+eYC zr*Ff>cpwX$C)h~P*LlQVf8^c4K?4ffz=`PI4N)WeIuYZ6EXZJK&V9O|U2t9} zx^D*Sz=Aq3Z?nn6owMm{-Ubx3fyU3&#?hd2+gD=;7Syy>QYI|+opGesaQijKIdljT z)MehTL;Fg{+ld^$?OT^!T#yIl&ev=&=+Y=Z?m&5*}m3wBNw^~-bQ3KiVO^T%g&e%1(b@Zaq?ms{zJ z?C%SZhK3Z4{ry+Neq|^7$6>)vizT%E{nwh5*EK=W%wf(14KieCe886>$csApKok|+ zN$azx$V7J#>uXrBQ>#j6wcDjYLC59xt!jt|GV1JpO-lQyfD-af0&WznF4iSJ=Cw%S}z zyp@RA%S=+vrJ=wHefyt?{RNgKT7Amttac3pEYRa@)jQsioUi-eW5iUx)Rc~ zxJHsjqFELi_MKnQ*6v|gBpO&=y-$;)2QQ|TIz*<_F;c2XFmSwnpB6AYrDpHwQK(9X za`E9T&$@nEEl=mGh{?L}cyQqP-hCCMLS0%aY|>&56!2eBR}Xz1IZV8zSxXY|5#qoC z!yEh8^TmwsUZ^&kP>+@YuoO)Q2(EYb>*bRA(^OsdF6emPY8DcqKlgNATv>UTZU-!7IiSec<%v?Bv$%zC3utD zH))x4OYubz!S?NgM~9(KE%%b8I2s%vfB(Rqh88lkG*C$f9}i65iAU9z6e~&5glAyC zen{sr9=xDlM5Ok1@NORtJa6!WlX`ndXCg)%yF;7^0l{_ekPn`qR^qg#i(> zcF-aO1lRW-*7eifDpaIHJ#nEL{Nw7TUPlbo0pEoJ{+s%cu5^rVS%8sp;TRsy zP>0s)&?;IWVBaGx+T6E83lc#D+ne-^;?APtgH>Z`UkA&@Ai?*ykIq87b%^wU0q(1h zXhw$4!+9Q}cW9*~7&zWPt!OA{c@;_d+$6GPPj<@J(!k(;{j^%&%r`uj6>8WaSMuS& zbI)|A+*<4^*TMTDh+uo|F5XXMI(S+H z5p1vWvp7+Q_#nZ+@x8N`l&3`!s1B{13kCdF^^Y*5TP?fjpo9e&I7kP+Pbze-PC8g9 z;D6WP`(23+Ii`aI^lzU}E<({eWMd5ukY72cDp&6!J-QCHPGEuIJ3NOP3g028ut30m zV60au2;v~Yn~nC9kbq0Zb32NV>M%re`q8SyrZ^s&g;?sgwnaiBGzMRSzU(uVNibQ z&y^+6!TuqhA5pa7PSdt}OxlKJ*K*=rsR%I&$nn0FgAQw+&v-j;#PeH@B`KG}CkSMC zNOy~Exx+*k(}b27K!%V2GTeh5e!r`z>ffxk@+8rMNNEs$NoPLnDm`Hz0R`b3;@RQO z+csD*U6JEcn4tR+=+3C)d8r4n_nuAW3%&$7wDtc?A9z<<-f1Gp^cG|iNsQZMob(q% zV1xP9$&T*XsaM^C3qDrC1^*zYr7#78?_JC;M)zkIzu$S|+`r9h#Gfi?7X!erUC^$w z&2&B=g@slS=9{lIfy4sGo6TD`a)|y^L7;CSB#{FMwpZxY>*_^BpMqrDdAaKOn!4=U(WRQ<*o^M0Y3u`audmm%6!?7vP|-(z_lVkLYH5UqmB}N5Oh1W;f3)-? zwp%yf8p!hx5rCCmIAA=>j8dKYr{rG_ zYOypYB>nq{q$a7-o_Ve^tU%7$pmL@dAtl#PI*3f)h&g(&TP@}^t6n`)>usC>rjF}6nTrq3?)dhKqig=_IvSmC{96^DBv>UNb7LjPe^jiBkIeml-vI2 zuvUt&!CF5}%jk{--acwt#WOZ@X&}|lgj7a+ZBGyz%8Se6B!EwjRy`1-WL*_PG}Bgc@-8$%XX7OegO^k?@sI0 z%Si55kSD7zjh!0|;C^Sic@}~FO@T|%hZ?m(0O(uOEe))0Mtke49ZzzGRw`I~U@$aA z3=eFt@O&1rRlxvAL1Jva)hsR!(0?$SY$s+Hp3klU~IgSp6@4_io z_lFoh1bJGq zA~^VvJrpmsrzQh-LpNzp*6H!io-=`rzdyrR_^qB0gt$Ql5} z9fE=9o_w^fw{n+$!30g3NTJ1<=!k^!{X%f`B$Gx1le8U8H?Ib>odN^TJvxequG<}b zq5cS?M}h4Of-0m48kk-&&%!pVpxKXb$d>CJdSgXL7qB9y^d}~f+$dZS{ec2yVvtbi z&8zifbwWxeI0b{+YJvISiR7c1Zo zz#+oN?q~L`$9#UKcSJ$K44MnpA_LGNgeZhB&(BZeDMjBxkjNna)D@Z*J+5mC+tiGh zeLZRxO_W8!IFSn(*dfIMfj)4*wxjGkrzqqoXy9F>P!2I&+01vm<9=kua-TeYD5zUD za~D+y2Nqht>(X-lJFn}9^|JVUjv`(c7sT(m#I#7&6n!O)U9f!9#R-fpfIv_OCeJj4)Th!z;G>g9%a#<0i9snfn;C;*2DKXPTKr6P9i zF~@ycbS-25IlsR7*Uvtq-pFROdPzraEl2hG>a$;eR^$h91_<+^6z1u&e!irMfNeeX z?#eCbXSh&7nLJraYzQDil6grj{h=kMY5@`r>xlZ;HzcJvAdsmev>jkx{b{luJ)}Fs z!^XeZ91V_Rk>)px9b?~&_SKsqdvWWazBk*Tb@7;ATx4*+Ij3{3$)`p~$9t#08BKVX zr!alNFcBb>w)lsOmmt&Wo}13~Bhz>wdq+yb3v`0R01DDaphT2wAVGPLmgx8!oL%(_ zQaVD=Od%3j-lcb*EH}H=O6|yfM9q1)j<{gywL=w!1K)@96o5|+s9ngo!pnvO68;ZUEcJ}BbwY0OKKcz5~#!)nIy`rx-iVOx9 z^ry_Xibdc6{k6qkZYHCL-yH9S!KDPBzt-py2l%h@;MGMPTOLv1`1n{c;2&C05PZ=5 z{6Zh+vQH=5MW*=*vNs?}wh$K7Z{mYPbzV(qz=FsH2*K&%fvnM!ra^Yo>tk)!kh80v z5m->a4IwE#QY*_s)`GRg01=u>L=b+eFZ$Gr5~$f9?d`VL)K}$+_2{mjZ}O>;52?ja zLtE`U5b6^jK_41H8T;9_-#!*h^808}c{~b;@{#|sS+Nn8OTlcij};X}5G2JA>rLE7 zU??#J0mOKFS#8(T5k>3u)EP5%`3owd22sk#@j&;T9BF%fUIn=GR)pQ>Qazex~yE9N~F2`jnv7|=O+J$IfdVlqD%o`qPfQHU7+}D2# zi>_eg%mLD*Nnmh)Pp`}m7xx#;**lB+T@*lnSN|9+yy8UmjtH>gQg5W^k zDYG=+L)6!()2TKWM{o;PkT+i&bb$qqS2opxMk6B(1$`p(t-=>L7X5m+r78W;ZA#Gf zw;J8W0s31T{p%T>%fRD^AxlABHyAF9!~@&C&HRea&>S6YX;WyoXlW2MSBM6tA8c-P zigb2-ewynLoaFr$aGE!R4I$pcS1g1XG!G42u-OJU0lNSN?b~>rX*;Kf00}rPVw5mG zF;x)3lY|yAO88~9h&1loDe|IfY_38+s}Ri_{b38eOQf)faid#bxiw${2V}m`6VidKf(K&cuk9E zl2cFx6OKTOum{i(;gt=YpjmZoVf43}&&2`y>jwR5GOvQwmj#=Q&F3yb0|ky(@lwd} z{}e>uP=#v^1pLDWeWa-@i8%&D z8!L(k!dF2U#+VX~VniAV1n+==HyK>f;kl6>U_r+dC_*I<5|r=bO7#-U!F{MkH1O@f$hPpXQ)b-Pn z4BTUDa6s@12!haC(47+IBVA+#f73wIfiHZSO;|uBuHeZpu%Lr-1)~3YvQ$eVLZ;ig zLI4J;w~bCr^))G^9#?c?=rYu-V4Bot^Wi}E0qscG(y6X= zd+>-CRq4NmlqCsP^SP;B_TN4-*k7Srpmv?RvHDwGm0cX5e@yp1t<1*JeR9Sseg1U8 z5*i0gQ?`Obh7X+2&YCZ}*|+)J*w_BsM+W=*4m+kMUaaW2&08;{a)5m8Jz#KuZ?juY zc9AiJg25pDsUfl`fPRCrp(QQMd^tMd|DJgFMHN(!20(E%|7zgC^xk%|=EEFleG9EY zq{ReXTL9n~z62;}-@@w$FX-y9X=EQ%!IEBJ2ucA6x;OD^YNKGmfD9l6n~MiBDm<+{ zFJucVLO~=2fS|HyAZoOt8*r*g2`#yv^pF{?k3YsE(FO+J)K=Yy6SY%ew zj2@eT#s}4M?p5i6q(nh!I^M0600r~Af*JdoJk}DgWUi3a0R-bmdSg4KuV&l-{mFVw z-Nn#n3cA1+OLMD@`3YzU@aC2;cbNaB8lCfBLf#T}0ikK}F9#58Z|vx%US;I7r}Gut zL-Z&Mf?5NhxSD@8aA5k;ZoS~ea}}q56xpaNw%lTwK&WNGS^)v5*|QXo<{j~|S`8kg zr3Ks81WG7^#Rc!%;tN_!9co@M7b!qO+6ES^-`>TV#DeJt`cA{+dmw)I`Q%v@X=V#H z_^K}zs)GUC??10DF4lD18BH~YrYVS>&i9(b#{<(lFJ^1@NAkqvF0q1f4uhh&5{O`Y z#XJx7D(GHCcr*^s-+FPg7|rUN(St|F@!`sXzyS=cP7Dxq@8Q)4^$q3I6x7ZrW|2rD zeiSqaz>$t9k#o~)XM1t93&hk!>* zx^QLBx!6e9xL^zkKtj_H6~s;1n!Oo&Q*(cg;O$zr0VrsjvNdn)Ur#sRJIPXnzQsoYb!M6Z8fBa^MLYC&3}c zoA`{zZ*kX*P`sdl1BAzH@j%wNlQ&o_2)nwIj|tK@AYOA?jG!y%X8}OyXVE~^IMUZ^ z+8IWN9^mK>!PnK10#ML?#Nz42OSHV}#cHx09q@m{Hoa)Ai$-WvO#*{nm8pEI3i8&1 zGF`oFW!9J=RUu+Cc`-WM`$MnHf-xFh13=LIh)ryslAF;?ZGFZ4p~T@51zS-8=yNB~ zA&3eZRuDTC9zEouFlfYVASzP>4lz_3V8l38CrmW2xI^@XX+VtMLk00Y+9<7tp=ihQ zH<4Y}1)W16D9hs?4qSqYSw%hWN2TCE^%lfPyXHF@XE=U+QHwUtZQDlct=1b2`~x zW75oZ$$~to0n>D?(2(Gh=A&=u{UZ{EDiE4e@8r*u{G5A(CPj#28yWPqtP`Z<>RQ%& z;#SZRd6&EuwxBavp=O&Uz!5|k;m6+QxzQBa@@D*;ri*BFMHG9%HrarkwnjPEnZ_6( z&8z0N9Uk3T%Hu~0Mj?G-2?mbu<7ckUOUhP-eg&CRil)H>(;Gh1=YpyrKIEuAZ?@Ps zT2UuDY|49R)!;#^hUq!&s1K5c9!w1$nBHpAH5%z_tm{UGf)vF!VH6XL_uQuo($90k z4s|br7-iEJKnn-y$z~A2_I+29ZS_Kq&~_-d01r&B+Y3`hd|8H2s-OuDi%ebbLN~c+ zIPl;K3)K#e=-MUfYkRxc3levqjW+T(H+)!7aDLx=EaxISSTVo@)0^T6-M3ClriCR7 zmKwF{W+3ByH0eZ}a0lfxkl@4hExPnJG=(J9>)`#uVj2-_-yM&qlj(Ie8;^xjEkma3 z%3QzonaPk;!|vb!``hC&M<)-tWu`cVY*2tpGSeNevuf=jcaXWk0XE6ZZJ&qSL1u#j z-0zLYH2CwBj*s)8TUITm%wd6mPEu1R`Pzf-Ahkhpa5r@FV1HbL0^GM~(r@yTayb4k zt-ZO~PzO}_UqLw3Un}Q}!bQpW=+G{)H$m3Gf$a4O&4liqosY=%tHn&Fs4Wgk9Rc1t z_Zfe#Rq}8^Kv!;P0y-gO9BCX2*4YLe4isqUo)=9+3#4i5QIx8rjC^%GIM6j(@$*Q6 z(M2l<3N)`ls|ZEGA)$fc3=H7kRq(W)S}OZ5k-u&L;~Y z*#Ej4!9WGMehj&SyNM_jrUPkiyfrNUUw^S$m>?B7>dWPn4zu~ay3FWi@*-&03g*@f zNb*Lc5pY4<+{txT@y?Ht-gqFJo`T_1@K(<#WG(ofAJY(Nojh=me*&HL0xGqXmf{iL zp2uTx!Z`{CNgxDwuP5e=>I?%U`5E5BpU(0|bCSepHJ2Te|19?l2Tj-|!v^VoiTCiQ zg9qu>YH4tgo?P9jkPazi{X58rKO?ekwv>R&)dLgPSz=2d7jUvAfOI@|0`S)X zPX4f^zl*{s7=a4x1RM~&34$9sKsient;Q=0KO@O z^={$0QLYoTr`43(h zFrq*GnXH2O7Xzc~d;&7fsb;j~aB*Kw0}0Mg13l-<>AK>vyvahVEaOkXk>Ra6N8pQO z(Q@CJEP#hBZwGb>777&1-nUvp0fO)2fKQJL(AWU=K1Dz%SP$6BD}ZzSyaMD-_zf`l z>6SU#;i`sQsnT6f=F8*BipGCdvRNwF$Lj)_YL`L=`A6zM zvK_Er&`7+!{gn2B(LYZ0DVO&jJ$iVscQQUZ-#b4z69rc=QZI0gRE111mApP#$aZ$H zf4=|tKnPW2DMy5iP@sS`e4Qz;JbFgf(OWlPY`>xbqM>s_YgDVkEI4!2fUsaR08h zwCbI*qvNBqv!jzQgkcKipk$y3I!zwP3_LPUql(@Ew=1q62Vf0SOHZ z2)=@q5K%q{4s;*5biBTR5=}boX+mwSpe*U}#4PGTf>xBFGH9S=*D|zdAbZo*kstfZ z6H7)AV#)yvL?5|C8`^4?Y89>qJiu^*2z9rE1bBEl4(Ur575;t3J6M7`|KO+z2oIhUiEp~ z+82QX9n7iwVMCeIL$hRh_;yb%gBw!{dqr#bMA?8FrO?3ikzu0l7@cuN zH$acZlV!bpc~kE;(wGHvhmlLoCcQTL07iyYBQWmU*j@Z~o1mlMRqnbdzTvuK_DcDZdO6$Oa+t*evLYINH zpSC~*<9pEdkk;RwZr8k{N)?X?Km|KVVyXt1Nmg1!Ld(ymPlse}Fu@A{9YZcU^^0{C zq}}{CfCOh#qNg=Y(9p81NWkq_q8=g`n-axy)d%qh>pGTbfC*N_r12ST2Ut|PwuarX zZZRnW3f>=2cXVUMX2hLay1Q+3PJi;1Uz{MVRDvgKPsvQPM%2BKJUS$K$4EjmFSGi& z-5cZX$SNu6kljZF;~O*#Sn(0XJRZpZk;8BW?RW#Alx_aiz$KVyq)pVBo=gmvV)9mQ z^<{DvX1yuZ4Hw)LWL*tJ#C{qOdcD`Ys*KAwK`iJZ25%El!S?b7Cqn6x>A&gScsmDQR;uzu9M-u%UhA8xBvFtOG^ zB&Z!^@JFm2ajpTZZBScyw}0WI7DNpmfY+dcHxf63Xgoly5)s)(f8}>UZ0sKWEgtmq zxPqA2lS{-yoB8PaG*~{;z(K3`8_(8{5;3r#FW3OdDiXkg+1JsFecdx5!)TYNztxC_ zM}EvJ$XgqXsCp`jLNi6ZXzJT z_$DnWP}3H4_jh!2dO>eRuHuaWg6&=L@Xx!+f`>o7b;AW2NeiO`3f3RbXlV`KPPgGT z#54tdLl?Hr==ACfwS|`cF8lJ2)9Xwcq|YXNCjOY{^)0egZ1?}6A@_{k) z)uO(Ts+PpaHWO<^5WeFRn$6p8%TrQy+ZYWbDBtoagNccPx(keGX^OdtPw?skZPG)! zt(|8mOp%KqRT3UsH1(mO@dpVJu4=h_yCiEWpl4W6f0&@=x-3*Ln3w@n%;r#C;ez~K zd~u-bEZKZIzS&#};*!=drnHX<(#E6l0*yb?+DyUO)uTPgB;|mW2$WtW3QSwCc=Sw$ zioT`=W>QamVe6o#HISfef(7jGoNgu(gk6J$00iBq@Yp9yI;)gc?l=d4Mk7W`n~R+( zfE3lH4Ije%1YgEqp3>gXOW8{=*jfk70%;5Z#Q7mUjfoS)lY-UHz{`pvg371W4MlKu zF5rePZKNgGG~uxwUDUIeW3@8h&q)e4_en@4kNhdl0?Yg~{xa_lrQ?{QLKQ42=!wL;0qNP>FWWF1d$X81p1j4NW0m(x}sjm`sHYEHlt4F zW;CHc$9$5ND7lMLp*&Q_T;7wA5Ayw8t9;bSSuJQkYmjADcP65sgp{T>CbXhEG-w}- zFyZ*_$?&%V1=x$o@lJ)*D*$TQ5zCn>8_Gj$G!6h(-T< zaKUdS3M~GQZCai4=}L46=Ycuebwt^_P-1acN<^6<^RHWFrsY;%5dN^uVK@Q13 zE0mmDu0ZOie+8)D$QEzO^xGl{bB8mBZ^dHm?1}m_d`(aDLf&{QKpQ`49*LI0@=Y@gV!VNNd{1s< z{xy6nkRgZU@izC2Mp+h>>600$xhF_jxUlu`ZEhPgWHw!B+Jm#9v!zD|JYsZg{t-)V zi@VT3bh@edDM|u?Oy@89Znc^(>ML)5X7NxAAafEmEF~h*{m+vd+CwOca&VCv7Krq* zZVsW+aZ8E)&(b!KPw<;;fBpF{ff_NCPXu{BiObWN(rr}=c4%v~+X&P!Wh81WdFK)} zOpwS_wN<^CPhavJwX!y?v*7qJzN9mXe@N!lgSEm-tanBgSyNLnRYPv&%lS-s>VS!j&!ZfxX}K%#efz034wHF|JxxcB7Y z`S|FIlShxeqfQDYtpTG73IFghLHagcn9bMBP3wRt*d45AlJd=3ix6Ua;B&P%YdVH%Go(F6E||fyfmu$lr&!MsvDH`BL4p zBlRv=p9Y|q-VQ2={nEZ}$N?^|WlTLF=o73XR`EshEY-q5=(KV9hPNRbP9g5s^Bw$U8 zxM@_6kJ$+?X)Os~4T>gi{wY9PNLdV#^bA3&KtcLJsOi({<@0*&EmJQzlhh(5v~7Sv z{`OTx_lwTy0P^{S&->RgDz$ z2(qtjft6dC1u)p(yrK)CM_lnP@yJ{_u)Sv4f`thGnjb!m(TF7mKVgi~bTOwD1$1l2`6*55FR4#SZH+c%V9A0m zuZyX5EFpo)KX5;1ksepHo?*GENKD$QE%#{`EZueCqSE;I5ad($OCiXty4cak=(9@R z5LPfO>O!^)<8VNrAG%))f%J%=On?g35xaQp(trS>eB^#AMDe!<6yzf=R=XGs4iVCR zLK7eUO}2yjiNVhcLKo6*cd}Fl6~y2}kaVH!*3wf4EffZa2x%9MWom=ECdQL~lNplrU zKzXQn*(?(zOOzjNb)ik6GT01SejtDxA9%VL3k7LP!E}m;)M6Epyd)&xo1R5NJE#N- zJ!6C5ddOiV;L9f=fl1(+U|>ptB~T0cLoY3u@+&V7j|WmEd~|&|{rp$|_%EVx2K7-8 zKn~L)`qrT{4QThM5Tm$VZm?Rs)Zjyk4?TODG73+UE13TDpjw2`@Q@)c{snIF+!PtUh>zQfBoz;+CE5Q zYA@;Z_T{KvUw!uL&#))V!;d+7o)gmklZTf6^6}w5oAY==ccclM7OaK#NNy*xAcowZ zd5~$j>4;nZ9PWah6dwHTBsP?gwcN(~!;|_!?d?ywYa0t<$o)Id2ss;{)JyHy!abIZ za)%xb(ZLPre_J5EX%)wl%{Usv3f6aeETxVTV}|4<5oDvhnmPf&#=5(UAd(Z({@SxZ z%uCFd%S}w+`JFjPKnt1GKrVH7(F1OmnKlwTy{^T=y9i?USCBs<0(2>fF4hnX6m$db zF1kdBA-B5CvA7I&OUjohWuN%#cI&@_^#wWPSNBzv$!{`|vA}T?%k5n&5tRU%_&s`_ z{m|*kztQLroh&waxu_?1(W6f>L9(B+T^t+B_b*A#pi^D2pwt76h3o_oH6 z$2FZbKxa14w({6zM7QfTY|KoHRXj=nN#1poXc2JJEeQV&ARd4<#5gQ_1#DsVTI8DTwqiEx!H6w*6VhJ zfeUt_xiqC!EXoVPOPm4Ib#Ci>N6r8$i1%|>;Y1_|QnS)glv`FPF;-hr>**ftZA~{r zM%NYHQLPU+Vad-6EV<^(JZTLAhS}T#FYW)|(x^Tq#HALUvY7TLV7}#D38Eeq97W=y zm)0Yf4r2a;3zYCrnnzJ94rF^e<}ZhDq%0Xk)MKO>OLAH$Y*?BS-nO_E5k&jD0_$l4 zAzSIp*ezu&qP_As!=yEvYV>mz$`hcT`Hnker5 zFOKvw6p8oR*GWQ%*xC>fQh2 z`N9692M6P`Cx?eefAIFj6|4}npq@3_IAE3kVZXMoKRCGmv_9j2xz3h8z$n zS}&c~X=(eI7Oqct-L+^ihN+h+CWx1_7>|p4hb;_lF~b3oau(CCk9h^G>;?^PF~J1! zqAu^4IcNumae1Es;^YcYZ$S~BHFyCUj#80mZ;HPRcW{vm2SoZ88&qtZa!g8l{%%y5 z7;mZx-QC($NjVNsFz9EAlF_S-7ovY=5v}NtPS1~ykG?s0kZIiivquhA#s)E?)#B{Y zlgImsglL#*;WI#-zl&Mzj4n2uQqz>qSqnxZEpW1c<2<($EoeFKNHo!$|I#XFOJ8e4 zTYEQcmMd7NXTdX;i*dnvL-kJ=d` z!$KdSnc-s|F5x(`rnRz7vu@rEZW= zwO|)BP!eWVkf8iAUbd#-=d`9}Go>5DgHkS7W)8#_dI1knBH9P3aDVL;Bq*CwK0~dd zb47nEeYu@1 zrxk74pYkdcZ~uJ3pr_o$9>D|G+w*#Ke|JeIgjchpM?8HuT2G#f%B5C4wolU$h}JR+ z2CmoWHBNSp9*wA5AbXi=(Qq+|ixNQ(YDgz^Q7OJpvK#wEc1{0lLCmuzk~on6En+yQ z`3m#&LKTWA2(@&u*hV21nBI|0(W`h0_V*JC3f;e2J*osEu8pZ&(1c}$BLZ|E>ox^zUg&m|3HgQuOU`DX$if_xGegf>?$ zcwwa|{E~#Q;cXG40f!Jjhzl{_jQL_oZ?8_l-bD-7B85eV7@ykjT&vNG_=!@Jo zR5DsnVi3syaekB*r><8Qlj&1YIwehNsW8BYC_he$a4Y5b$hLyTw-&Lzj4T0! zNz@%O;%YsA=8wM)Rd*bC2$C)!s>8fSR#u+@3#h?|C_l00^jvqRx{2Yo+b0EWZlSxl z6c8v;m-vnyig1_n7qp06xbIMPNism3kK*=OQ6=(9sbng?#4ZLJ0{k>Cz?u$ip=Ipj zRZZ8ObePg8k;LbKNFT>ViY?tMnX)bs1=tYb11Z80+knoiu10gY*rcS>(#9`i}MDn7EClZ+_kf?7o zNl-wbpQZdn$sZ3WB@^|xFp?#KP(PPKooKHaU94$#l3T>+&Vqsq4=ik?WlXa`EU$UQ z2X~ZOM&Kccms;Y@Ci`<2XZ1}j1MrLx(P}l65Dhql@ESu1E7LyL9DN(ZI0MA-@)q}H zBz~?iee;$WK1A^nOXpRa_qnq4O)R4X5GGM`oXpP^rEg;Ch=RNof}{(mN&H+%1}vZk zAEJ0ofg`k=^|{jYZ3+?;5GYZXWZLJ-GgMuY3=qdlq9FV-(nj`8qI_(K;3W{wYn;VI zTcN%QM2Z6?uOKOQg&4|LfDI86 z1tZfySCF9!MlwL0MEF-PFC$fGsPHccAWS0EsdwY9GE}JZC?Jq*kA8c%gM=}72qH7N z=FPjv2wp1dusy z^Oirf=~|>`j+^9wNQp*qGp$$EcrJ(jdyXtLvNYfjBGD3U<}bGOB`qu!L+m{>TPsC_ z4lxq`L8H0VtQIo#9A0l^FwhV{rq<0{NPk_w=$Tpv*bqUEW&hTWXbwA;ErCJq`GF;; zEPCj%Y)1m1LkzE)S}|0H+l-63#nHE#rZ^yy7uvnoW1WniS-oSPXg5QSW&3Z(I~qO5 zveP86k{rwa?a5zbEW3pTVtJ_(#JZcY>_#339)ftm9)jFS4=4c72obGTeOnv|(SSn; zFEhb=cQ%&Yl!|14I9{j26$hOHH`?^gX=C^h#p`r9uij0kBT4{a5;f0paykgV zjEoER&FOq>h~VWj&TDrywBCd}Qd4k1q(mXff$zI0B*_4Ayu=e0il;GsJ0KxC#7Owc zUF81|0@x5CQ84Mucc|zh86ZxgH4-VQ>n1&i)*HVS1phyAZ`vivaa@T~=Y1K8B7sKl zD^?QVmJmsej@Fq6HUJV58tg$gNQqi_M!f1r;~U*B(i=F9bPGk1@$ zjEKbW9HOf#J@374Zoa#lLrkHmvuX3L(svM!QW6vpbmx!sBGc#}pZxZVk1G>F^b->f zkdEIjR(!guxQ%0x>`9FVOz_^yrlF|wY?AzO``Nq}R)Yx6yID?i+FE2*@vvYEtp^2j zKDY8kuKu}=pW(`LZr1$Fe1A@Z81lJTU(h>^7o*SVUlU+ryWUJL(;TE55?0KpdLYjyT&FAnqc$(M%%(`!+_RPj$Ve2o>xv`>3mkC?QExr7FW1K{dY=*sfM9z)%F*s}vf;Ny6}R|`d2(pr zc_Zeb$5H5tH?!W+cWpCx;EG!f3XQWqKc{CkI9;DsBZ36u+e>8bq* zH#F0bn2N>48qjuD^{*v-NO_P;x}!_3^Os3zPQ}`9jaJkVfkVXo`fIgbYoA1eVnwC~ zD{82*At75NAsKbw&zb)XQzRT8QeI!uv7?dwPv%bZ-?tAJ?N?piB@#H^b^)NyUEn$w zqsd3HbDwbkSIn9jpd+_2rkW_A=1sehO|zRR-BC63oyYFS(d4kdl+Rx%HufZ(lVffa zHgG`91Nm);nN4U+!!MU<>>_9zwRj3hd8;I)dO6>lG5D}Wv1oP_eu$Pp_=Vn~izbjj&QGLG>K8pm zpU-y`ZJCx2axao7=ExE{TT)GY5czY7l>3sINRB7dX|>sllb4r@mQPch?W_>|Qz>{k zSxsmmW@q21dE|b{nsqvm)<#0e{DqWBV<|cyGj?O1(G&BViI;2~VU(FKyf|JgXUKX4 zPm&dZ419P@26mTxw7&n=)f)wnK2k`ZJ+hPG5yhZj4fgKaQXUI{aE;CJy`+8r)@;rc zbdjD+Sig1YRsp16SylV(bmabP&Oq>SmSR%qzq(&8-c7MU^G5s;1vlJ^WopF?x4`4U zK=jsXwYS0Ozxd+m{XsRb3Hi21p6BfCcq6+Bl^bhj*igw6?maUXCcb{RJac%>04j zNOOQiI_gvSAg3>#1q9taDErd7(PTkk*jDS@{)6HUKd@LXv%sLggRg{C^apz0ncml6 zCf1azw`!ieh6VL&w7OGKK+7?`=rP@k7-Ncx%U4(=7+7wuH+zcYMsdY{YXj$vK6?0+ zV$(lixl=6A1{j;Y@S6Yy>w8Ip&wu~XzdRW~{g=lS-8Uyev6&q(^Ad6l&~rb0*9(5~ z^tWGrk`plpiX3OF`281eL%@FdrWZN3aLHkbh20^v6d7aRKUry22}7S z9*z{_BsOes|KiY4@Mcgfaz4()r&Wv)0$ig301g#NdpEsY&uO`7*!B*fU`^^4%{@g( ztKN0XL4q;KXD$S7?{*!aV7(R!#g{Ry*Yn*@#leVxku6w@Sme8`7Cf>~Z$66%zQn4u zd_Q?EUJmbVRe*vu@t##uXM1~(g9Kwzj%J0LRgvCywTR$*eZ3ofJl}q@+S8Ll$t+V5 zzLUQ1yhY+<8ImCB9T`{v^!ub?XI@&Nm)N(HC4Sz{>7fV_gIVJtb%q*1k-M9QnGdVDbV7;5Np3S#3k(W8u)P^E$ z4f$Wc`Ocqw$NUchZf686o+V2QiV0BJ&}SYHoVRkE>*+IYXvIEg6Q#uiVuX!-_!a(yv2c{aB(4ofj$ zJ+5!a!1nHXx0@Vhb80!CkLc&I{bfwQ(elP9bAU*3ekO+W z)2nt42%-T;EvnID`_FbXo9}2QN$>CN z&F(yFq7}n34`vP042+VwDw3Vc@al@@tAW+Rf$JxmS9BbDxuK!w=<%!RXRGIv#hgx` z(@RW`$W=#fwfE!kZ$5hR8 zxS9vbeik9*lzsI@(RSnZ0|gPdMxG#p#_O9`)5Y0#^w2zmLpM6+iy6Ig$xNk~CVCLB zBL@h+D~!)fI~bQ@NLu8wVBopRcrsVnG&RJTCe4+&#CDBw(c0hTdd52mMWp zqc)OW31&9zlQRzoE?!zmBipC6SbNG#i^hR;=wPrsc{t?h4OUva13fIms1zM~v8)^# zm~Q!WpB`4UkU+Odv(-znKb7H2F~JIN3@MUI*3BC^9@uWkJZ7qzVhyn=hoZJ6jF~FX zlTp-y#G*+>=xI?_7n1yCszcBGi5l_U?PPUPndN73h4Am%dm(;CAqIkn{2BgO@qHb| zihUlOa1!kGK-h!>?ANx{=#d%JjjGj5-VXkocFWM$ZO9u(ID z5{eor&tfhKykxCiR~Cl^mOl@9k%s!K4u*;^PJcHbi?>Jrdk0{Gfa1DzceI+i;>WGJ zl&*&X{_CXsF|E{A+tnytF;)0}RJI%k4A&zD>pf}VD*ERPO#}w6E0T*3ZxroBiKpHh zGW7vDrOA}BTn|r`NXW_eiN(HZmkH&dc*HQuMvMY<<5lkOnQrhnuVOI3H}%YYAVVY^ zSI=q;ARB*mf6dwcIDh3hV5qhCYa={*6kLI7!e+aepN+nxe@7H5XtLc-_?x+k4ig~0 z(as?vD+%GO`ue~J;e81mA_%WR9CBz56tdc(n4|$Cn?VZ*y4y$!y7TS&n`%XuDH*5Y zj1z#eoHZ(l6T>d(^(%fhwXb0vA_x=1F6d?j%Vb}}TEH^hT68_V=?oy~5_7KimtwZl z*PIR!gjZ4Ca2)9}ih(j9vMyurKz0Ku16kUWE6x!BCC}#|L75nIf1m@~%wPH%)FB2! zdvwH|M4@^9c0}!rXlWECbs#o_c|6d)wyPHA#PZ|M9)B|a)mNXgoc%-lh|7Q7F$pMe zT=$7+U3;@$EOHCmib{}S5`f^l>XTL_HpO~LhK<32>kXgq88ut0{V0jip;%kUP{n9q zy2hE#(=n#TFI*AD#pSs?UWskKpy3&Fj(%(o4{RtgXz6m`pln8d;6QLuc!J|sp2}Pf zu8^-o;vU^R(VNM^fh+ijZ7_0`tYe8WJh0tyCRo!QmM7My*4uxoUZwu8*bJ$WBDc%} zgZy6om6+UCK|W7WoQtlp8t6SV1l+2>6bm@#5#ALSOlq74a)Jf%{rU@xm{!$gkdiO7 zjkhs%6T8QTgd4j{b7RT$`~w)*?Wn_fgvxqQ=-||hqXLFrdWt>p6ww+r3&+<)McR_j`J-o7W9R=n#+TdjthO)ZExD_nX=1$)l%_ zA5w%#iWOo*NU)|yQ`8p4(dPjh2u%!(K?yBj1L67CvtbD>APDcICS6YE3tB4TExO`V zphGH{HGqORQ1Mwd7yLE7a+Ci66SQw;Xsc;8f1Zme`MIKF zX(VUJknmQ61k(xf3alBlt28)hh{)JsS5>R=1+^;__J@xu``UpcL&E*k4(2c8UA3j? z1guhPdiW+I#JHfpSE8pQw7d(}^c(H$78c|WYVs#GyL33hwxHvwIf=wFubDOG=(E5O zaBW9dW-7X9<^DOJEawZpXQ1h~+?QP&lfwhsRnA7i%l15sxMqY}By(`!dV_OyIsNMq zGWlYse}CfAIe)d0l)TBmH2WdDy$|SY&z7+g9V^-un_CYZ3DJ?k7C$U0^bxeinQ~Vg z4P>Z|;sg(L6)i`1$=5IF5+KF+#Y4!avs{i03V+Pp{tG?(fW2nz5<68hCu@c(+-{IB6CXk?j~{quaZbjs%L{ zWM7Xw%3R)Ai|w5 z(TWZs@8El}kllLWCi>~-=l@bvE>B)mBH$tAK}O1!nxbqx8 zgnjjLpVgpQ&}`Abup#2DoCpf`zcA}AbWDy9O%zcsfLAJzJp+e~Tlm_;!{cXFG>uQe zC=#|rPp8-B%foVv@Pu*D!yfb!wn#r;orGS%g8q&$KE==*@99omm#F;(!^e=Iy&-5R zUJ+f-;61x$LSCQ*9O&K=baei4Kc>ONi~{REqiG(6MrX}{W_VSg&Ot-QO)0}HLeLdj z#;sZOC~*T1gg+F7ba>0JZJC-iMvyVauNmPM_)GARb63h)&GQ;Goo-1(j0s}d#E=db z%rUdp)uWC}*amt(JxiC``q493&`Y!XE;&80)Whry6U4G{@rmei5ASsqX9SJsuwK`9 zFfk-(uX#6f0}wivyq$>YlV(R#5OOe3U1e0X>rGDNQRM%+Qm$&9Re#6b)n; z;CeE@M2BG@BkeH2EuextR1%j{PrjowfQ-0HB}oxMD$Kic6_gQnH!sjYb`O;WdTeXp zR;&48H_dEW){-nJsNXWwPd|V1J33ruTA)WC{qtv!zIrr%^3~(Vzy0#*Cm*vcYj%uc z`bOZQgwMV>k%R;o5^UcRiKUwG{Ff}}$M!7=Sc!@fKL7bpR1OSOwnd7B*iXlt?AR75 z1J_LV3zoOubiW9PH1oORrPiD7mx1n%3HwNwSmx8+=!^AsIaz#c9t&Ak6FxN1Y-!g> zZtzq8E|Fo|dnNYST<~l9(VDN3-(o{SDgScRH(dS=GT86t^G_F{*1^sz~@xn;Pjo!>fsX=X#Wr z$7|XbN*zWs4JkWJ1d8&wmT=0a3N^i28)f`F;oXEWa+BB@H6w~P;s_c!zM1f6+)lG> z*v2hjQAtc(LBPiGN9cnfJkXs(DQoQe@5aI%~M z6tvfn9JI-Pqv943FtU^u5Oj%I(@^+*&B~+UC;3ZE+Bbi!6ypkF-R1-pB*BGole{LY zJbm-Z7J3r8&>{n@XG`##%=+#Y$C}3J#U5Y#(Juk8#*gxLaTG*DCR){udF3ThmIeG@5MUK z=P&8_5^Z18Li*U9Y2||crTuh%04@v4(m>g}0U%aJr|b4}I-zbNK#JoEiup)@ENc=3 zQ1c*sHC97s4e9)ZyvC{6?+IvSAvHEM2}_#kJb!Tt>0x8&J!lQVwXk7rq^9GS!>j^kAi> z*rN+rWhFoc|DEuin4ix3i({CYAvZdJGP}bC_pSXU^+4u0JYAREZs)d3NJg>%LE~z+@QzMml0gU{YitD)&i-5DI_TuJHMpcz*Wmv;r+(t#3>HlX<>+^b|jR@^V_ar{u?UK-%0y9<$1# z>9v66_U`FsrG^BeK4?qt4iO4jn&DT_;R-YSn$LTnfv}&q2&4BOHuQk2xy)jZISPfE zf(?>13Nw6=`h!NP)yrvm16b4XA0aPr=p^rbsJOkvsQ|IF;tXsEIbmnQw-$m5SdVr&7 zp&S9kyxl0q^gyh&R4irJfbFGZ@ge0+`%OCIw^&a{AFnB>(TY})O@}zMzjPAf;c6)j z_z>a>D3@@)nl27I8W1oonuQHhKq@UY1?1e1?cyy$MjG3}0H3sLW`s>jQgn#8oe_~K z7R@9_A;2Sp+*M$2KCkiI-)W@h&C}-c2HG}jR=kLYT zPgax7?sB~!**}_bC#@AN=e)_(4lql;SR{cp?v^F-)@kLTy-nZg)MNQ4g| zyp}+5op3xOP0TF4Ye|U&k{+;H!cr%Gq8*F2mXXad+ZJP8S@4yRE;UTwuB^lXyEF)@ z9W3tAh80wEKoD!(pPKe4H~#C}xHDi-->_FjXa zsG+o;fbKKM3E5 zxG50Z-u(K=J@Ne2PHvtl4%-IYqLM5NbUg^)k98d=nqeAcRnhkaw6dBS8yemV--}o#s)J&6FklvyBn+*3zMvk#KLp7=W-vXB0eZOKep&4fi~Z>AaDFZhBlPoI zj@!sh_sr;77gi#JaC=;EbHDKV=zI+Y5UggOx;}%e=vNLU2I#pLe9HK#Pi^|HbBgfC ztf5%)30SFrO5|34>N~j|2IIHL;OA|HS4oR6hsEs4Uc8vxudPV2q2X?@TT}+SXLCA@ z$FHp_W+wrvSOfqDJ0CB2mHRU~07${7coFm)FC@@Vko7^+lI^}c@FNI=_&`7g|NFsc zk^K)V)XFD^skv7y+)=Tz5MYaCkt2bsdQ7>bs2`(`cCS{`N9L!AIg&C?E`A;($Rcu8 zWfBOg%~VWF>y)C^__y|b`e3GGR5>O{dzWKKTct~e#|%QWvK$K})lO}{|Hzaa9ThNv z`^7X!u`I;1mnk>_-z36>luNy5FcCF8M7+(_Td5&c>M@FiAP!hEhv0ymy1lCl#wJa@ zKc>%Vl|b0A!kgTNkBoaR?U3EZ`{V8YF+-3>5sU#+as^^g zGC~F`kO&_#au#uSeaFuy3-O@rU>0EvkWvpytTi8*!Z9(j#ubf^#iQ1WZG2wTB_E9m zAmr|0yD*Q2+d=H;H&35FwpUzf*sVyWrEb+Ggo_}}3K560~F`=7zTY0!% zGc0k|0AMTye={#32omV|snBD5dT-O#!>r$t00ZUN{4pIaEKWJV^w3qmaX# z^~{I%Wv#IZ%tG;4nEn2JNc*K!M@U@KfsMHjxqM=Yj0zHe)^0`nJ$GT6DO9YT1n^cT zv__1XAh5Ynv0vLBR^zn{IX-Bk!f7Dw#>?fxoPHjekccC@(QgjvFe51jEI_f{IDQe3 zpuEC9H%CSpn_?OSfRxRmf#@pISs`@OSe~;|L~H^?O6BoD_6AZ~vUHnBF_i>D%H`ld zbqxtA#PO0A+0&I{Mc^x7Ffs-Ry0?(@OW%Q6H$#N5U=nV6(9 zDbBY7s4Rh1ss~8ViRo3|^ie>?At9hOum@=5J?{yd!`Wg!{fr-z8pIOat&*%!2e`-sBD(Yv1)$43GJ6eG^z zf;{Bd@Qx;k-^-V_y5?A7=1HfQ^M%d!fTR&-p7eaarCS7snYFULavEWRGzLC}^)Exud0IiG>wWBmt7)1Y()cbfwI=y$LNM2)W;`NYC$* z13JB&sD=b3Z;9M72V-BB%U<;}!USm;%G#0~a3~w&f$Sbi93MWPuMfMN$0|-C11t3& z$^`=kJu|Qg(4OmK`WQII1nE1_=}(GK-TZ9j-Yhcj=glVj2`ga5&N2{L&Kuw%(kQxhL7F+|ttT8#!Go9}ABt*Vh9f;^3W_I*Apgh~4n zh{?CZtlVV9;s-0V(m~wYHBe3*jlY<(|2UyC!v$H^ZOfV1)9nqWYkX2&M5Yxc!~UF9 zm?49(ALI-2@npNJ3MU#BamZ>=rJG4U$oo-^6#H3}oZc*_8LwF8JwHLY<~SkKR)>wT z8STNCn85qdC+5Ee3o4EvZeBT=ybqm6a|^@dMlQ`TTIkIgo67}A@AXOaagXtI4sY^+P9*4 zJys#(g2pWXTS4Mj+zzc zijGrd86c>!FukCHzYSTKDH8<#q_r?34~S2zDV}FM&TbJ8#J%4n&fV4>C!tIfTkmRN zF~>2Y=->ihmOX(e%W;e-iW18gbWR}3azNCmsrV>5K}9b17YA(zy`fp{Em`* zIx)B9&&_|6=2S7d;9waE5+5?&3U(? zS#w<}IcuyqMZzI7a`G&YWTs_Jl4NLF#pzy-s8PfM)bg)$^*A*YcPYc$2rRIX@E|U! z!-->_!&U>uCysyNzw1tsjGoNt`R(eTAASDi?p_*`@mwXH0LN)s`4&fPM zb;ppxc2~ZcZ%jDM5rylx9GQh|Hp^G6$pFAA!7nu$h;HJeKg>52D72!3`*zEj(J9vA z0K@1cCP=R%H4@CKvjbmWQLG{ZBunWKL3j&kL6{9Ss#u-}PL?x(g7zws6Rmwz>*1FV znPC;@696F@10KlYlC&QVT#^hEr1v2YIV4hA_N9C8$xuaY57K*?n%iRc4?AHS=Uj`f+5^m#5kU)#b)!4l4$nvk) zb^}nBy+#Fb;(jz0sJ3)i!;W+rd0*pmWC(~`GFw3?*_Ll4^k~T0LX#U0ZF;oh92B%^e(4eF@!5ROM+v?2 z8&E-<__rHljWa8aef^sw7X{$7((o0GBSSz^;?%iR+vj3(-M7R8C}?k>UZ9#iH!GFA zIa6#q10`F#JR~ShS<|?bLh6mePjscW+luU;ey-~BHGBz(OicK}eE_j($ z0z<*wRDoI087CXC8s|1S&F1;AszJeg{hRfwnwtlX|3E+3Chu9ruheLK8z7DszcEP9 zc=*ph-Mso+f7Sl~`F}t7&wD1uLkO2TdNJQ$j>8dp)@>_Xo!-@P&ok|u2^z6sgKJ}V zSlpb5rZ8L6uMc$Xh%qaU*aE{^0KYIm&|PJpnk1qHQ_KVak+OL_kny~2X~UANJzU-Z z2)cWdv+3xgUp;(O?I(0qj2=3)k*_W(4u^<-rSN2fWi!|a3hHZds%>>aXGz3HlA^)L zQU)+keV+pAt|)sGa}G=7tHD+1OggQ+(z*W+Y4_7ijA&!m`>6l~(Rc0NC)34R6k5Zi zzm3JCf#S~`1wG!%*Qgte)yiPOK;ZL0Rc!r&IbNSUI5bdve=3N!%ip&5684ME z(Kt>XpZ7xD@z29Ch1Y^~T4LS%YXwy4zAY>be_m`smVH$;?6>jCx$DtB@^&| zY;4wjgXPVJm*3KylX-!nNiAfq#zXF|Fuvtv%cJTmE*BT5EEHI-B`kFMg5{~9{?HI$ zOB)p*HV_#!aB&N+rgY(URf!m&-7Q$-fsg0Sy$CQ=-hc+KtIUqHMLk(^s)mNH#f%;d zOx%jQ$#Rpvo7>%rH6HjPE7DTT%sML1T1O9w(7^S2ZN+W%g5J_*o~Q`Tkn=>31dgbU zqRTa=jT)-eh~dB%l@@(m*YbGrpkrwmyDRH7u=D>O%6>&Q=)7OjNyjnPJdA;2sW5;wn#@5%!M*S$VW}iE zj$&mzU^NRcL3hCaZupMiKVNT`ll}OzTJS2UxWf@38)d`_IZYQs3 zqs{)8!tjWhu4b{oe%HHo0tTX+F_Ay*Y_?%oL#P?Q=GkIIP+nt{CRF5$3GbFP1M~tP z;6QdICQDyfP=t(h0Er#>YYMEqXfb}c^73HF&-FMz=iBu%jkT$nt>vv(h6mU3pC6Z=M)2Z z%daAIZ#z5~h+d0*aU&k9(yUJ8z0e?mg5_mfE!X1ILHE3PFc4jh^FnvTX<3^4xn}(+ zpC6!QsrKu%0(YkZ8mO50_Uokbb~m2~D-b0Ww+|7kwygcz(^KqerS0DS)p*F)eF{o4 zG7$-WH>V4*^pXQ@xK`Wwbo|`>&Kg3+Nh<^9I+8|IkYAVNDXGR)N~8`AWbaPQ17DYP zr`G;3wm;g$*PPVhL8}9Id;vjaC1W@x{$WByh6zzURCx)sm8EHaJ%iL5mZfz~L zgaLZq$>}lE-+~&=45L+z!2hp@-}#g8nEyf4t(>UMVRy+4qpH8&gNwdnQNjDe67Sd^ zF4}DACGe>@8=_gvYc+^bAvmBZTR>(Ca>@b{_|W27n)!P4(HR9jnM_^yr{7QZ(@S&6 zkXEy8q^hxxyUa>Uvn*@uG++O0v!)Pjuh8(?ziAnv^aERxMWy@wWO_*tR*E5z;=;Jc zJwju|1$C}WOX|{-9GYd3V{ONec{tB6DWXX4RM_$Wsp7ix(blS&V5^@umZTdLHn`n| zV!7s6(`8AEdOvwi7eGHJS9|Q-+BANyn!IoohgFk-^tO{iZ&IgoU!~zSEjK0gWuQ9U z!l+ids$Pu0U8RB%N)w-zIW+C-x9$TeDfG7bfcfgTYgxevrEd5{?UXs6i_4&N-H?tQ zQ3JJJk&lY!z>aC9{GDLl^E5K4buA|%_S?yHStjTTJq^pnW|@4I zieigcpr>FX(~^A~Hex)`^nS3>fnI{8=pCWW^b7rmjkyrXPvwn|7&GNf)j|e!KPalB zD?9Xz;k2SLC)cLgzHDxwq&7wcWpx`RlbfpOY{wkFe;d_61XZ_TuZQc^%!YT%UOLen zmhd(*|M2cEg$BEul~cQ2C&}DF(HxXekc-k(<037 zUkt}>vBCdi@PAB!T`%YWcxXM%{W|l9d?R(H*MpvcS3(6JG=>&F`Hns6lo!~$g>NH+ zx;Lc->pp#QM&m11jEeX+9kMvC>XDCMjFM?uz?kVc2$*zw`o0glpYnFS2(96RNN9psh0>1B-q~IY)Lz% z2t(6G$J(giQ=ih|)UAEK)^5Fo*Y22gwX4Ns-E)UmuUu2lTjW6QX$Q)!m->{`3Edjx zos{ApG7Qil!2^Rg^v{fUAqH_59(nd;>+3UpgWN!DVZkYL94-*E@*XC~ zH8$99igGri(qwt=h|xept^+i*SqYyUEw=^jR8cl74R{`3v5#4deG7 z7`$O@=xt#pVRdQ6Lo@BhS+fy1K2(I!VWc8s0mY+BikfdE2rC5Zy8vjTOsjK5MX(Ev z#+mt;h+`w`p&GJ}Wy7P0!;hS6*yFY*^r)YgVgU5&Q5h;S9ojqlsh=vv&em((5QBn| z=MwXSn6iH^feOwCXye$ZJ3pX3qF>FAxC?JYon} zqFhp{nRhH8QBfROCy#)m_hlX*y;u zW)Hp~USxruFi_+v-L6nhQtw67CL*W`TP!@W8Pd@HQ%+XzEtW9E~n6757o3zk{MSV;kQlX9vR%3oMSA|v5jaV2Q=8j(B_E=3AfGc_#I*L z!swAfgE+Jl{?jngiZgx0l5#V5KnHzfb(?RyYO{SVn~5XlEzJTVd`JkhCvSnBDFL$r zOGtc$_lQANvkFd86hg0C?P+N&HOFv57zKoc6>o15GYYZWnPMg7h)w8bd&C3~5w^l9 zgnBhun%2u4@1vQm2&8w!w2ICP5)_}&<=~;A_Rd%XVesw1Bc`;i3M@GILtn~7nk3ar zIt#bpW9}oSA1WE(fSNGQ?f+IfnHeV>x|lS%Vr_D%{h$S z9Rrkv&332c_a<@#wcV4IJwZ|>u6o2`epyYH1&ZpbYjcCNNm#BUTJ&}$7QI=)Y&#KC ziXjy^bSMZTK2|EG>nWUGIbvzB)fj>Xn!*+o(?q>d?v%(8&3mh!hyq$ftKxkmZiC~# ze~?xs!vQsUk9}dP5^GY1^cRN?1)@EHR-+)P!Gp9X2?Lbmy~L_DEg-)kGNhM86wvY^ z7Mtj`cv>QwQozTs?6jG0XqCO;yyJy_t0TYsq$P#gpS7u-(O!9e)vh{~R!#|}?v4^| zqvf*b>`d(x`5qr*OirPa(?Q|esV(bye0mh|h}N^MtR)Q;)h&AP#X6~JaW`{rt=@C^ zx^Pk=s0s&`%ZaI)>~V^dwPxqT6{i%)IH5HhA}MLzRqTu)u49*F6e~@R-o+)|)qhYoly^Bc|mb6Mk}Ji`XB&82Dfr|T_0Ep@~Zi$YEVY?(EQ zJv!!??q8XHQzh6O$vx zzXcIl3aH_&N9G_y|JI{)fWhY9oNzdSrv+H#vo3LZJRs`7G9?=6`|Cg=*oOp)4D-WPU~>Tgjj=1cjG zPw!!-k`r2gim5}}_mVx(V{UO~uY0H%p|fODQ#-zGo0d4CwNyW>PF6{Wt{;v8I>PW= zSlZc3uFCfwo)=l5Cv+FNl<9Iw?`dk828x1Lp%(1IL}v8Z&9&*4=+efFk|F*t^%KGf zm7SVVvO;Z`-ZXqKnROkp4ADU*n|^7mS(=5N)|xRZtQlIq25aVLWkEq6-?ePKu1p1w5kJnV)S--#Ee zQnJl?#BuvZ4Qz)qOcWfc+XkW7H0JF#3U<6RPonWUa>T-0ql^L-tPvL8m@w0N(gOL0 zm(CH_+%%GE5{TjLsNXE|gX=`iK<#LT1#*OKNH6W~)mvDsNgK*G2?@l6wOdzEE}hvf zvbQ;DWqCsfaJdT|5f!Sjyh>b<7Pez!Y3^bUv(XVJJQR97L8AzJXo@$q!;0_(5D^we zVoR8nBxZ;H3nK|U1c)xsl^lhxd|C3_p}N346J&{s9VO0`&`=dSWr3U!G|bx32js7> zKV`=XM{LqGId7Q^;&^{;R%~X~+2MkD&_Mll4G!{fI>}nbe4dVL;swSH(oMDQx=(}*3wTzf}^2$lBkv)+;Q00u_VTG{lY8xt(V!omVw3;4dY}_L@qMF(% zNdY0ezcs1sAygU!EH{fvoRS-;zs;~fPS}ODb}>s~Nqq4B*K9d9sCjc`*3D1Wo7UhU z=d)k;xqbX6?-T>gezQD~#9I%O^jqoR^F$EEJ9v|pb-rI8b{V!$Uy0 zYvJm?5#XoiOu-Qch8le)#)kyazL+Ew{_Q#AA80saEnvYx9`3u;`8S_aue0X^(j#{H zS}jmBKt`q*OdBtQj15@~z=s4r{;-zHb~6KwKR5wI2w$-Gr1s)b>7jfffP*}o=W@QV z7ZJjbIQY}(0R|V8e7I9@G}+#b)qsJ9JCXuIME?~u#28#tQwA_i?Ak~}1d0cS2E>7z3ESO!JE1BIYJ2SU-AEBAs1B2a-C?&gF=`xLy*hJ9wz0DdJe4~=f$!fN! z`iue^m2h|{aciE!CM>B~p3rszdM!i%HSWkuUQOzt+O-Oe6z->PpkL6DaaV2ctWqMp zw#g>xlet6Mguj~W2KRZJR4+Gt_e9%MYYbw+;UP^b%wiI2MTS&i!J(q5OzgS}lQCqO zICSX9_Fm>8E^(Sv+jBM+hsOoC8^8#EFjktJiMI!}r1fp+NH*Xz0}OnqH}6h4{A}IDi9!TYWMQ$9F)A(_l^JVD(587zf=%?wBa19?Gs&a77RfTG zcqp=*L63*ry&eeH6bV2EUjDldwQvR?P=s>xuiM+(JY#xEN$j?EDYpzHXhZXCwu1|; zOqb?az-8&8IvFoFccqKqKz9Y@X5^$5{O>yyT#W>h(B*`Wcq84V%ZZ>s6P(_B7B``> z?YcOqDxj{BK_ALO2?r9{JR1Cz|UU(RTpT&0C4F3X#>t2 z|6~nMm+l`pAozZye7b+h@c*Wpcmo6YSbz0gT#fFi-{OEE_>S518K&aZNFcceBbkqA z6M`P7I`Dzz|LkBY1_r9o0hmu$6rYBbNS6*E0A(q@K8P1Hx>8smP=uDskY~EgE-h6A z1sY~7npAEEF_r}a1@kWo-7w|l-lc6a8F5Hik~C&jR}vnZs?G^5^N*AHN+*(lgq(z4 z-ez!&ks~XYF5Rwx16{}yy&Shq2fJPJR3m{T8@IdHFD^6gqmNUMiODlx~oy^~? zGDmP8@m8Wo{sJBdW&Ws&B?~M)@&`E3x#?D&|7w-69X;Jj&_H(W?A4y;Jln}DikY{e zm7~S{8*a&u+xywwezt$Lsdj!9Cx-~W*CRff0EsmKMZSt$4h=l7MLhJVI`7jJLx&=b z1p`Zzn^~0v?&*;mj|QGM>fF$(;?6um&T5y!+e;Y=c;JdWf|l871BzA?`J|_ZM?{F= z`+l9bbGgx}Xc9~LvRL4_5^-$T%gc(7x)qhTNaNwa^u3x%vM5GiB^Cn(hRCzYTp}ku zJllbRC9)W`b_-gsV-DBDVt^|!Z7wH6G8wo$({4JS56EQUvP`r2g&6SnvYvy>GA-6G zM1$Ik$-!lr=v;&tmiJ=3he4g2(XZ2{{xmvf^%LyI#Fp&aTtDxAH zD7D%(V1{i&fyM31twXWZfMB~(=gr+V*lerwIq&*D?LN9=m_^PVJ!d;Kr^f_m)K_h* z&0@fo32B^pm|Yafkg@;%0r z5hD0v>+LoR(e?JRo4B0|$U3&+fsFc#|^zb>Jo2ZoR2WIJlH-tS(DMCc9Vm@>B zHl5S-;j0nB7h5qYtUgw>U|@;nX}cGb&2+NkbLk%Qw15Y$C`aiSsYj0Z2r23xZQp1j zZ4A|8)qt5irK7PPdE#TS$a3G%W*gt(>A~W_kQdty?MkaEo!TLW2A)4Ry*z!AuBIr~ zEz_Y(Kmz`EJ$|x^qS&^`!m||=uRgPS(owxwIkDsJ-6*Vb#QjdEad(6T3;B|c);406 zjwKzTf#=U$NhAXg#im}aAlM3tUANec&NHhcoz^XCD5(Ear(Uj#D0Vz^;^P$&@1f~X zsiTMTl@MgZPnKD&=-88ql?pp**^TN&g}5c^G-`>#&=z@?{6wuIOAQ7VJ5Jt>*a||N zolfIqftTgVtVZr|&QizP2Povm`*6DY(9wta%7gde%&J329~LVPP@k+e zbXCt*8vHmcS`&y1pyN0!LPHtAO6hdGtCjd%Jm4o2)z0{Amg-9(mEW-xxO!g-_K)c* zLdQ~w&`=8Cspt9wlr|k;#99P+V6CJux>}2sg`b~<*?pXcj`Nd%C329CIXdQmk2rjf zQBUUMEOhKKYA}(9bX3zZ4}47H%Q#&P=!ni&0`8oB^NZ21{_u;36fK4hvF_INKB51S zEv0CVe-o0sDpQ7p$!?~!=ZnMc=#v8mroid&K={BDeoRLpLQc(m-2KAxs<=rkc}uXM zf8Eo6N*7y3o2ueL0u?1G32PuwyhR6sX(?f{9X-Sk=DEowolm`_*pXtzRB_2K;8_EQ z-%9Av@n&PnSA5}Capf_a$Q1|1JV zaWX%8K~-Wl5zg^N`~F`*YjBQ$jWT&Jd@E?EYY9GM_E5xB!S`Hq6n<-BXxBrY1f&z` zi5Z~hU2xVdiMP+I9X?`m6qoGry%zIC1Py9l(WyY&qycqkH7P->n%I!>C}RNII5jZ= z)Vu=&)Fp+)_=K58aq%DDD-~3N4=rzpZ~o@#qt73r4|3;wt^Y77if|PHkXP;^Je1UJ ze~Z5&NMMVPhCP!=_bhuOQ;ABC3Oj9k`7oxC3NVx zA6$&3+_+H_a}&io1_6xwYZe*`?u9RjWQi3NVF?0OqX3Hx{@c@w`RLPmwU|AjxRvCO zBf6G%KBs+tmV3p9w*hjzMMRL^%8{CQ4UAK9x~Y-V0)q0&^zyKJHhO6Po5p5QOlKW{ z%VB~AnyWDlSu%N{O|iyMAOc#6DtR)i7nMZ=)f;iHXoqOO=aHBdGwDL6JQ#>xkBR7B z01r~3Sf(t{Sg0(?PR_-;lUS%c$un_Aum_2O%98A5__OXL778Rcr;EvMHyTrgU`a0sFMK;uz)grL6r9yCG_k}5@ipWa396mQ zuA({Q8^c*d@cpU#bh+h$9FN|8u3>=u+H^S^J*5BBza~~7D>KEWnEASE@dOSCZUzEc zNHJHPe6&(Vq}atsi3A=9LymGpU2+5*5L`iys^w^-5Bri1*NWKq}^{S#DnY9$f zo-lYAzy~93*1NsL?_wn2fZ%oLHyvVzboNVe;Uz>7+(Ymirx zH;hae20|T9Ne&!Jejsfk67SZBt++s=nXDJBl81+ypERl2U9Mm3Uaj_%mucug#Vbq} zI_t8rCP@NiKWbA(J3-UxOg_7E%Vf&ArT zpW!k#RJ>D8NwYv2g^P2}nk6iij(`p&ZF$au#m z)*ZKWh}T$(HQ>FyLtsNi#vVu+$}e7l?(H23I+SF*18Gm-9UK}O8mtk@?iS^-SppCp~uRj2< z0|oB`W@j(WCP@ogIhPULfHQWA94S~VDw;{rG>VpSC-c>#$!4^wUW})g^97$mtA?vJ zny+Z}A2RTeLDelvXReD-!BdbIGgdhMXhVdRijd%q63pd@XO-AMS50Q>>=Y#ga7dtr zzy8`oFLX(30Td2xNqc>)@@Y05Beqgis}{}Rp+QeG-1Zvf@pwH7uBr#`cRD~6xTtN zkE)-nagy?3z@TRJBu=rY&WEih2{h~RJ zlsF)WhG47dVN1L2`_cJff1ru!=o9}mEnU*%EyKTP=Eez}w@~tTMgu+XHR-|IldQb{ z<20fI7nG4xm$N`a{iO)e@^2^7<(Qy~_Cyj@pW1R9(HrFB8EyC4=(fq;Lp7+pA|-TE z9W3djcSWWZk6!VIQ;73CP()R+SvyoaXRSBwf5c%%@;ByIc#g6azWW&HCxUbdc59_SL^-!{1r8_Nh`KFl_87l zP*3~ztMmB<-B_nt1?{|=Umm+(Os}wWi=(X6b$xpcibkaVOOXbuOb=Q}?$<;3vZ!k8 z6Ct)p3LMZwI}*{inS9zEW7bhE6GvbzQVcv)m^x6f3MD&R(?OsKUnSMG`ZZ>|7_dN7 zLrIaQ^Tm3?%`_;hGjMrD zEYQ?Y-%aXop}xm7P-W&8g;F!CyS%cird<(SOQAUeC^3C=L5V9bu0=H;jR0G;fC6e7 zO3NjEX>LL>7aF*Aj%lFEj5`Z9N_M7IYw;0Ui-9aYbeIumgARHbM64dDPIpC+3NemE ztH```#Y*cGiYy5fHF%J*<#~;lk#0<0!?t=-Oax^gv?|Lr*Sgh&W2J!!+8X+OpOiP01NZxZ19}=pXy%ATyihjq z2+hDlMMFR4jy}XX2JXik0hDmx`Ev5&q4n~Xp?!bfX<~vlUi;-YWO4Pc{W%6`d4uZM zp3Z&Hc0}c&zj3s<6O14;c+1Cn4 z4FW7O*i9dmTEO|7|A-ZfuB8EDSp{c+8rsIrsG&Vb^HMF-p*rImu*y1s4F$Bx7`|1P zhVdUpuiEGfKn?T;7~HhSXuq6U9_>E7+hH~24Qj40Rf|qvgB`?)R(a0-K zHn!0^P_QDm&uJyiEUFow8QFsz@c=+?Xp0kDIt2zbGR#t#Riv0%byUHsZe}*PAcl7_ z;&k?|+QL>)^J#n5;K|X&p$u+;k?*X*Y2EcC1~<4MM&rs1PVe6yL{u)-89{}`J#-WO z?ELN$S)!>kjD*%&93K-A=@nqw*>3X|9&^y7^ zC>=dEj9bfh=LH_}`Td$`Cr^AeT**@KSUAu``PpA?*DqKF>X#pf2ckRE-Sd$-&Ke&K zzqD5?7^fmUp+RyEQ-%cX4U_oEYJN_k3r1!YG(*{7&TyR~rp&;B?n+FzGqfyoipZ)g zb6|2vAhCI(bY@M(_Uh(2Y0$)SSzc7{1~pIR|qYa#Za;C)c!r8%%T)vFo6q*jk}?Z_Q66x_-vpiS8c zU)O+-0u)&{eXbi#p``g~?X0>B8nT?*(zh~>0quHAJx+SgA@H=Cgd6_GKxTR|VhmN}i9o0;% z!)h+*v@5W%;J#nrzL@MU#bdkrwx=oo9vJ*rJ-;g&bFz2JSNAl-<226<4qVq0E(+$x zn-@*E#U?fj2)=6xpQO`_R+{Jx9@u2=_WSKx%%S?_&I5u^=FWV~yXbzob9i9O0-NI(*T{BQW5ykmwMb0NW}m8zrOP)-!cDdqOR6_tEoS=K?EZPe2_+-M%%~-ews(K zs#bJSV+RKbPT{B&2z1B}&%uF96efL0fz}qhk?v*DfCxs>xKPVNwq?%Kt8wvoU=#VH zpsefZrKpR&@)r=nD5_(%N>{RbRYw4VPk0N(OcXoOy_y;a2QHB}+7}tW5Wd+fZvX_J zC_Vc4th#u``-fho7ZAai<}m5k`{s~!?V|KZkFaO2(sOXgo2Ys8A?^ANSMxj`*wV6F zPF@aNb`G)3NK1nQGde^trWPG^_)Zp$hwrJch|Kl%6@o*~1lMH}C94;ggDY^&XHzkJ z>BZ&Xid>6fxeOe*L|Zan(mim&)~hW6Ao#?DWWEwjNv{csMFW%Y4hpj%sQQ(dg#(vp zM~I7t6hn?s0%DnwqEiga=n%muJ!Q2UcG-cl*tG0G9}n7Yc|7DU^%k+D($`y}C60T1 zGCALkP0O`kA1Ek3pPuU%OEXgxfs34Cna8ybBk#6MmxTql=!>Xprv=O5dUuZp zHsP@}A$?vA*|q@?e4=ejc0GEvZEUMUv^UG=nHfs2F=s$T-bDRaK9>`sUiHJlflHLz zih{8&CVUXst4{(T_{99#+!tO}bi{`_X0Q2k4GB(c8Tjh5B04&_Lwo&v*;upXUYxbZ zpx_m@rH#4mptc1d_=IiE$M#sqaJH=>!6{l93QsScwb$(3!f$fE+N(|i5PYHxsbb8(;d{uv%FyE#*mlz`1rTB`+KbKOflYXf z`&4vHy;|>p2u9&Cv@lOewiUmC*vn&TNN~zr(tAU6_<{HK{c;J!CPvwe_h&SSU=&_T zL52n$&v?8to2>Nxy!3Ep@W3X^kJf)_Lz}OH_Om7s!6>aspNm@2FMkfNflVx#_hutJ zu!;6FH^S)EegY7DqQ=|teX>5%tH#%m;1nKX6G#v3qE;f~A?bbrUa!79%BDvpE(96M7Cze!Z^UY99o z@-0Xe-V;Ewqz)2{S3_c}iK2rqd55p49|0o6=K#TWKP0tmCMx!Px5lHJtm{`C+X-M9 zUI`5acf*%r1+I7*zv943fGYEQV6fi~UkU8AgFatP_^?N@1`vP>+<*mhCf}y0>Ftjt z-?1DZ-!(AUMZQaA-ZS4ZESPTwLs^Scl1y1E=6eAqWA7RitfKv(1pWzi=3+hDj|dgK zqW!>G$@n&0&-Me5V7w6wW9>_g%X!j-D0+f`k}+?<1g9ud!)Jr2GUN6v(;5`4qNUug zXUDIOG-cBPf=%XejS3x?W#2poP_PRB$vJIL{{bWz?*)^D9}2y#;<$Q%NWI9EXWWm2 zpSMgtRod(JYnd1`cmUWH`$KavmXrKa+DhxOzrw;;bGGkaNI-nftaiPCD-B z=i3n|Sb0lj6BvJCneEq7)tKPq^~rrM-stXEp8_Np-wt&k{2+%yaSNgd4-;?-l}f@x z$(!Me;Rl~I(*rAxM+cN<9b&}AN1WDNMn$eQ?Kk2~pj+%<(x;=Zf$UI&Lq*08G=4b2 z$lKZ>hK2$@0!6ZnFZ3IM3Sh8jTH9#+6jzA>TH6R2{F#7R+}-RSiFcFo1i6w91NgXF z4Pom5j6COT{f&9QVsKkKRPeqNT7dAwVLvrpc9s`to4Gi`N!Cv79N@OdVdAWp@zv8N204ZC)#)gJWUxtZfT=)a@ zWq<{9UFNnWD9lZ}m$^g*Z#`b{DbhJ<_wfRQ1ml%ZGWO${n5QUK*8>1A+5iWp+Mn%5 z@f6f4dy>7j2A{wh@#-QC>ZvhHcQJxqw#opVqJOK&DdNg7sg^^NB*?ly^F~NB) zxPbk9pY{-nov473aU+iiK2er+;}vJJXIa*uV0|knG`XZ>QWQ62PftB9OhobZYQ_VH zC?1avcxjGv=+MD^$}Ag=WUcMzQvni;bvtZwZa+4)mrTUEf$r^a0t;r|4qN7oclB$B zV^r|+w#ufc9U}I!er=Ti27A5cy#HptI$tN{+kJN~0t8!Bn;cuNY z<=Ug2Vwm8J{Mdb-FVh}=EMdWXV|KP2%?`^m`yca5dI?O^)zTMTW08jg-Svdd+$dy~ zRdGJnfaKXM8pz%-=`L1>(M3LA|Ii*ymoW(_(AYeM&(7!DU2N4PEI^zQoR6yy#U4T!JtjyW6iCOr`Gq_JquGp6 za040=?w2Ik@jG)j%|3uefkTFXw;KhFmlJ+ESTlK0i?HYrlC)k)?7zOP7kkV5R+{h4 ztFdgtG=t0L?0Qh-@?MtK|B)59X8hht4Pelx4GaZX9Iq;hFT$%@?*=Bq1$o-6nnb3q zv5fa_Rs$-C(|S%3Q}@*v)`_Q0z3VxLhJ+s_<<8QL&CG_{dHGj8kp;qT z;QQ$7X7lGVLZD{S-sFlN5|nrHlwU_SU(DW?FeVdaS6~sv+ zN=axjB&F`#h{m`ePdu0st;EBVeLdJif--056}@~n@Nn3$I#duRgF;I3wajeaK_M_f zn#--}qr{!;0o=-?f;gAk-3fAQF+rNE!*t&$Q@jJz;Tjn9xjcVUZP%;@4^YAu6Qpm* z{zqKX)GT*3^*aOys$>mdvA+2EU$ETuT?254AWTNl^zj+v>pP0JfS^m7Li*IqlgBdL zXy2wV#szsYtV5#titZQld)s}7bpjd^lA#RJt$7T+zC)P^7Su)4zZBdtb zcq8Uzea9IF4`fLrK_4a))4q)aFhQE;@c7VgXlJrR^JR3&GR+|cZFL`xIYba9Q|{$qv7c`id`-0PlskZeHmRfbm5emAed}lh3+iMnVbg3D!pwcg z5;ZD_lg7a&*{@$rwtTYFw{eJZL7wK?4(sI3LGN4#R1hbFnHBA8(W8>n#Y8-w(RVPz zfI*-1y-7j$?RzaC=#u)op-Wx7+v!_>9U=&m`up`^vf9gH?OT5XC}@*>ZYQ%j?``_# z(;|9iCN0zMYcW3V z+cH@|&?OB8P5fxPN4y8$x1k82piTBt_G^0Q@*?-jdf&Yijtl|GUJ50nMa}ABOEaSC zr8Gd_y_6IkLUNYaP3I@FM1%|h!2>?_6XnV5kB8k}tf6%EfCLn@Z(+n8Qka!FDgYV; zY$y9UUsurFZOYB_i{Oxv=6*L$uORf!JwQPl`Yi~|FUEH5w^CFPhv`d5GT`Q|!~|*R zEJXtBu*U1pT|3JHG$e#-CesbKd7DRufY9J%lO;3At_@BZ9YRvqTd)3jNOl!_yIw#A zaZ=UHChuU|xOK+GHg1?-u@nRDqvmjt=Zvw3+(%{9c6S!UVNC={hT6)C@rqabvz67i=GLenPO1;dmSKK`HZ5V+G(qzPFcD-W4uKR=`hq+y}=)+_V)H{b_ z7cKE!yCX8(?h^76!NR!7h{C2xHXZtoC~8y?CzZw~8E|)rW!mF{Jk5332Z|l5cdi2} zh?7p9Z34yIeLHyu4EkiI8#YQ}>b{Fg0Ti@J-#gsy3rd;qz9jvT*r|wf+jm_@KqJq| z>|nr6kdSG&uL8=%x!7JsoaesI#ehMd;|z-M+< zK$k2I@;!sNNW1PvfR`gfK+;M_`vt5I?s^6wqQ@>r$bGUh8IcdT6_SzQ(P4!~A`eX(BH{GBO z43NKPkmK<~#f>3`ixxSwDd4QRr63}>Ylg}>))W=QcM{^|u?f$(TbDql|hmv;9B zGAnll4W#`90P;K3W{xkm>%*p+jn|tgy|Trf{|^Ic%kikhS#!Y{Nj`{ei4QqZPws5dSGkR z5hPxp&3B_;z1mYmtQp0nnsZu37jM4rTVDYLgHzuVePXZlnqzO(*<|{R*;=y*nPn50 zAilzgO<*QQrx@bpGiQ-N@-s@aKkVm=-DqkCFVvZDM-Lz3r^#$agNy0nFr$mrbAAr_ z-^(>FfPOgH%<1{JVB#aFpzucltf-I%U|V`=o0+Gf_YHtYssjy_DQxGz@@?2IraDUD z>e+aG_Qy&bDp3GY*`KOhdD|p{$Y#a6+O*K zgGAWCIX$64lMZ^#l9{eyU>^{VX!aNnw6(N*vx>Uo{dh51 zT^uGCydn(Tsz@p*{CUW0wpFQKR?~x>RPKWcY>4ED9qVRtY>wFnD z=rrTyh5;GAX$m>1BL8t3m4OQyf2z}%vE#p;MxkedzIWR6t@tFNVdfr?j%c6FkSff{ zTH0kh{Hog`)@=;jE=wv{OQUdiNfF{`T}_M$PN6WOg2L9iOG8-ywalP-@Vc9@LFaqH zTe3ae^4Vsx=g-YQ9kxDr2IzUeMGw8?o~{%(tl0#(BPzo(kU&*S3+GBOi~;!K!N4tC z!Uc`A+||?yZz$sWc0H}cUFU`vVgc_6(?u-M_16I>>tUHGQm!|<9Mkz+RbfK_l%fGUN4qM=y2Vl`zx>+$d{M0`+GMQ8m(_yD>FhCLSF%CpFGB`L z4d2{*uNu?ap(5_fw0patCxqH)WwhzbWN22tJyu5BXrL@=A@=l8f*rk&p3+aB(mF-v zor@kVL=hia-mc3ulXktSxc4`_gBySf-d}=;l4u<YWAX}%Ny273(WDh#A zYTnR{`?2tcKysVwW!TyXJk8_Dc1K&$=75ohVhS`zdOcuHK?WT{-hpy&gD5FQds)(B zgxqHvibG?I96Y4l%}d!B(=cmjj=i;8!{LJbJwg8EVMU$jh?XPPTWWPD^Tk2DdO59* z+HW|%)Us?4db=Q0j1e^_R~wueB}b?relt(JJJ5iBD?{CVQ66R;VUHRcB7y_|_ORa^ z_75+s=`*TNbdr>g_^s{VSe@?bzzy(_@;>ar(>f7!zQP=3HV0jqo`#uCqg~oKAnKlp z$G0GRnAUASdg%WhkE^f6(Po8ZIF{`J_@4xPs|ea`A2V|dE5gD<#Ql=g^mW#T!7U1f zgEgAM;X}sT{F|`Y*?RVhBCweQcg!FP|KNZPQeqCsd7pn9a?AjsPEIF^nW%E*2{$lPjAYd&;}g$_l!Umy8j&B;jP5tpzhvQ zs%0mRnVL1l>QAdFW`d^ooSpol;d*NinD2h=))47edR2SEwboA!96uttY)bDm|BBI7^onv&0;UM@&TU{SW(WaH(nV1#tu&CVq-G)SIo{BQe=}X zHjGi=Plo*i^0P7jU8XwZKOONauF^251_SWne%1n$4Xt7G#{~wnfX8kufz0r9Fn*5> ze&2>UFWFWXw4b$oHTq~a+tS$^a>cYL8upHOt1mE(m+FU-(T1`EQS6hv9LDx^Sx}3efMDdO(D(7M$ruGeImO7Sei4|J?=vU-8 z`4$bJ%uRnGS3UX_@MSk_AU;a*asxXY9a{pEg|wIEJlaug?}|{EOzxTM*>03MMzVhZ>I=rA_!}? zRNB*?z*2nh^W(}cK4**0tn^G4`)a$Q%WBVgOV)7TrCSk7GFZ$nnUw|Z_mk=6lGdwO zORMf|0o+z0t-hKI@_x`_KiBmzX$?1Vx|`1PKvq))Fge*)G-np?R}9`%#6%G07iD2} z)>P2dCEFV@YpJJ$fNU*Dus~8%|45RkzR1P(!TZOW2BQ3u6*9%_lt$fZxEa^Yr5pvs z_+|dGnCw!YdI<)&Z6#+#1uBSZDn9B%$F#XW;W45HFTR=vq8>Cf3)Fuy4_EAwbF?-) z83G7t>ToC>weJfiX7CONBoNfp0GPC9ON%KQya5O-kkm95b&2WBt_-s<_*j%NX{Gt? zHGVMXB+>#Cq&0OhCNH_w|G~SMmm{hv=TFTAtr3FR#PF`FD>UU#hSw4g&6TbR#P)!ljjyY25%-96QngQ zUeS5-1x3@Nn_1>O8f*IpU%V1rkk@26b3WvZ0(zZ(;=`CAt!Z{)zVNNgE@C1GYpSOv zJsY0Hqm9AqX~G7HO)DbiOW(qZNKFG#ZN3(UCb7*1ucby;V1hJ%KqcD?Wa4M5PlN!l zZQw0JYd3XDFD45fR%h@|$uht)Ldv7YT|@P#(1gsJ?0@--pEVdLrGh50qE#o1w(?>h zQrElVWJPRHCj6*YR&V9S!qi(R#|f*+T6NKUp9V#8Tm3}3YBK2Z$Nk|2wY}0EL-oSZ zakk>ShQ;!uR^!{VQ%%-tr*yyYM0VnPhGO!Aax>dKeFihf6kWsxD~TodpbFbPan)1z zD@SPp6BHF%&w8^bmUNQVv!;S3f7wXZIXBT~gHZL*{U{sR1%V1m{?^kr`~Wl(&rOW==@o+E{3nf`xLP;)kp2R zYK@7ZSDdEF*){A`#A4M4FT08jtWc`(0PIx6LQn1iAcan`4v@2GvNNLIY3gcC%cxLT zTnjjvLdFP%4ee0at%wWxWbII3gR(;ZZyM8dk>VsHq?!tv3ZvVQkgrm!m+Fr7HJktX zy^n@IZZmncSWoyV_>=Wb%Y6{vkGsWc2 zr9P;1jB_~}Xz`a{q?Tm!LwyS87%6N6M66oEDq`t6F0nK1`G;dP2|n1V;OAyN@!K2y zGBzkHvJ8X$)KyybDN~Bmx@dDB>iH-2!(~-$E5$3dY_sKni@(IO>b{&rUb}xbN-n>uuLygjxW?qL z!H=4fNi#m9sKDY0I(6nzV-7dl;Wr^d7D0z(s4K?v>hYlVO53zphfy zwp$;zbmSuyr=HuY#W5Vv2Q^pZvY3k9TN?L{t3c1(E#`RxXPF~WAExl*R8qEG) z-$(^@{z81&eypy<22_t3k1-%)gT~e}j;l;8@g!v&lR+VRVOJ*~yMNM%K>A*|)b=xI zu-~d^341Z}cJ@hfaA%DWJyB@VQ+wtwd}d^^B*@JQ*J7;%zvx;KKgp8>0Sgc!>p?{PDM}tyqH) z8%w>ft27oPg0iMkjN5@&*wCdI^FSBoA*{V|VOHo!d&b-K^N^O7N0LC%b+dmlU2f(>oV){wA#AVe;L6X4bF#Tj&K$ zaDLByZtm(_Rxeq>|3iDh=coV$hCg)-68&$wp&J+=zwVG}L&DpO$^XB*5kzR^H!zW&JwSxnC8o_b;z#Ym#YX_OKXw2Lv%E1%JO5IAT2U$1@VPrhUR z_s4(!|Gx8`{~S-3N=P@yNw$#ofMjFm}7)7(79j#xQXW+cNVyl;BV@=VJ*T)<%p{80QjJwCp8yR359%+~Kbce%_Wxqe zBc&?hD%Kc{5%t5~>8w8C`N?vjJ$iAgsE!`V=sN3@2-vUdDhB!dFOYc)ffjsIEB27;l8_0GV-V@rNNVp(r^=)VSA zwUQVt7GM%`wy%TfBl zJooUX2oZd5L^=VaIw7Y4jWUZoUK>h0wVaLR*Y7LShjk!Vg?Ef zuh-VwR?D>rV}1O-NANz62A&5s&+gT7Sy9yBY3W5tMK4%#%q%uE{GeGwu8t_W!DFO= z0*azOgpNsz_?12S5C;a9sEjj>Y>zVbXf@A%LmkiP)2EL|lQX&ZtLUxH-S=ImF0pbf z>7nTEEDj4SZ+I;xFBHpUCC`p1tX9Yk(7^QlnCS)YjQ+m8?JBVl5*V&T3^Zt}L@%rG zvjT|+15cb2+6QONRrj12Brsf$azZx_UsMaayTr!~4?CMI0tDad5#M4hw+6cVn!^H1 zY`5jJp*+AKf#J0%AIrs#Qz&|pLit;$9LH+0S>#j0obHo${{C$6De>g6-X-@Dh) z2oQYNB9Aa1r?0~*#(xF(uJOPY`@&YZUH2BwAb}z7cg$L-bnfo`4$#1KJF=YFd6`vb zhl@q^yyEL3n$4Abw=F=ydsXmmCcEd%7Zo$GLV+1Z3kR;aX6@vI?%mrY3k8nYW59o z<5l%?FV?mj8mxK+v3j{N&o|n=0z2KvfFgsh)t{yFjRxOWvGG~Q_iHNCTx$zW#bg09 zdD>rY*Dn}T-#j@)P`ydx>OB?H=+|F-_0$a6=xHTucmH=rt(f`)&KFxVHblIIZ%Gl0 zoC?K0Ch!_n1aQcB8(&Lgta3UOdlCR_))CMlq-c+jGTuBK${qn6GK%(CZBA*A8XZE4 z_Q>iO${qn6GD2PXg3hqB%96Ph*|n~eup#0H@TnxBJw!}TBArd9IR5HRy(;$c0LmP- znE`@A;Uvj(5j?sUP7%CaM$T6UlL2tZxDQJvg6FGqe!yR`&keBVVzI~&P%aL7l5{U$ z%o@xN0Edjwb|iKP&2HR=b!|(_=n(P_Y?vku4PLB7aXbZx&84yk@Q_lrNk|$i8O$aD z9YV@BsoUOI$zV3A;UVRH7&9rJ^6GCUCXz@8p5TMAFtbcc@?VChxvC$zCZw`b(8zNR-c=l>0w z6NKOL*wFB1gNE69#h1}EjU8y)L|AaBc&|YPnVB9eorre}vX5r-i%RS{C>DMLL_+29Kz1XfG&<~WB<#I9|{pQg}4^y}N z+x9&p`)xUd$mZSnYmtN`yqRKr5koa8U~$bph`$vHFnumH2Bi$?T*!S`y+Z6cGWW{5bqHmSQ7h zqU`=f(Vhp*gF;it1aTiL#7VDGTv{EXYLyup$jUXVwBjXptB%;LI&et%Ak0HhY=_OW zP5EMDPGIobub6NNA=}KtI3S2zdcURf21|;|)YW+U(SL{W!@ zoNY_Ty!e=2RkIq@E>$57WKkp100>z$mFR56f}^StX)wD)H6)PKR(zDYD!xC+f$_-2 z7qCE7n~SFujqKu}fSh+*iY;1aS4<6sa9t(Fmffi}Ysy;qkC_L}?7>pCW({z+B*p|Q zwRw^ew?EJ}Xdbmk_N0IXqN1YvuCDqMb2-+AuXl}6bP^vzBA50FDNrOT{unNupnx1| zV4DIro)o9$F_SvGG?5&5LXe;rw)a=&_KijK(n|Z<-AX z)Ah9eCT+km>uE#;U3Ir!)QLK|@l;V6)FVQVn6IXs1&V$lJnqZlVs=>VU1hC5p-qV8 zi()Z#4#-;v#bdI9A*E2mdW_=pRXKn5+7(MyDE@O{fmCj(3s!&5V$OV&YTZEyoj=#< z+|UV_+9jCQ%TsC%Nul>I6?#pjYV+UK$wa4^k5w)`D%_iJTIG@%%IjgLk2hxfQ`53X zPs6GwY&~EqJS0e^$0o&hp{L%6`R+gsb+zuaBgHbd0f&Kr`6=QcEkA@ z-F>s+TMdpIOQ&pUpvF$AVvJ zHoPX++2a&YQ_q9e-diV4#}vhh1f4k=c&NC`KCD$F>al9eSrD1BB_itZtrR~s{;b+6 z?p|XsS#kr6obxDF=bREOTpykZ7#_u9eCSA)Kw_KYXeA&vKDvIZtpfDYD>ZL!VZbic z{)VQWSMGpAMUz~#2`~y5+6k_jpedT87-6hm+H!9H)Lh*+-7nWgO74XLP|TShDL3MT zU^jQzE|~Tl)Kjf|bT~VW){qV|f2Odjd(9!W2SYo~I?|||5K`UDSi42tR!LTcwd>YL zYOI+c?pF#s*84bVU4kz1n*RJ}KVv$z$IwR@zI8!|}Lge>#bnp%X} zCGTLLC}f3n$I47O>>JReOP(eL0B|*UtDJS>gd3L~4rMewNr=aw1!XbdafO zrR;aqS&8@Lov4-KgpjIGFR24`c^0E3JOMuW&MDM zzy3PWZC#YpC%-*=%G%eV{eX5Ri2G^SKAkPs+f}MtP5OTQh|ANi#pddK7Z(JwcBt*6 z-#q&KOJ=~K?NBEfBwnX`@$DV1UqAl*$*(4}?UuqMlk%{;0SAU1ci=A!5OjCNuVxGF zh7QQei@?7gMjFC``WmO6Ulrm`lP?BwI=mcNwBdXpnZ*OyTOw!j2=3>@GRAI>7gV&( zN?a~G%w6UV5IGaxnYhb#7@fG!_7=~b`*kJ`E+|f^0wz%(8q7={>8j3i@fzH)Jl24q zy8&^oe$rUwK$m&28vo@We*q#0MZLQy_H%ye-mt3R@IWRUhIaSK;u~hn8W42%xG~MI z8(Idm_nk45{=*=Xa$Jz#jL5$~5I5s}G?dptf>MNU(q(_I%976|4h!E57Stlht(M~O z|F9ru;Xoxkmc~WmiO69d>+nE!pO>QjaXP2RQl{(0U$C-NOwa-=5qJbJ=tYI0R5W+Y zXoppp8W41{6zTZ}MmDe%4IHRM^;o~EmNf0dC;x_34-W}S(SDdqm*ZDohqWIKCP;-z zH>G$tVwg!ST!yNozT$|bXW>94nkl+6z`U!@*oHMzKm?&EJGw;m<*Vp^*kNVYV1iVX zo!PX`vN){lEF7prbuhn~i-Z~7umK^L+LCa=tN~OQz*uO%4i98BD%?)Y4V_=Fx9WO-8r0_C$B~Rfr+3ScxFHmeLY5)_OQuvVaQS)U&O43A%6Oj#Qw;ay_ zNgp;}3rS{cY07&P+wU68c10lt1U+azc7is>g>tT}*n!vJCB;PW5b{a$p%L=+W@ol& z)UH#Ii>HjE*vQ(zCiLW4AWIY&|A3~!=vag(9gPDaqKJXCYuSSmJ$ zH>jOv3P@C<=v2y7Ej7Q^oRLBBZB6{=Uc7-?Hm$6?Bjoz(9 z5chuL2gbYV>gU#cQWa2fD^r7*@T?>O#E95br_IHJp|L3e-!5d8iP$3v3E|s?xIPDM zN!#+RQX>fo;UVPHrc{leJf`vT6FRf`6?K7Hnh(XXnFcrEEiE(CYJ9Tb zPNum0umMi!YvVaaTB7595@|ILq=`l*nVZPrhBh*J7RdUnv3aU6V=oBXK*ff;23}F5 zF&kux9y%RCv7MJX6q}AlG+-FoL(g$^NcxVZ11Pf5OTl}ZBIi|fEJ>0Bl0>jY4(jC8 z^Pzoyai?!+ux+7%FwvC}UzpXRw6vjJnN}j5IGBvOrs9Rck;QQ$h!f4!S?Kn;4$jbK zDoX-UX7(W%?z8mCp^oB=TmzX16ln&?5y2r!yo-H)XidyVb&L@K;TTRx{-suOE~YB>YBv-| z2@V+{_h$`Odv24_c6Ku3dO8UG)iFZ-Bxe|6ij#`OD)`Ulk4Z?kB z+tY~+2q8A;<262Ofd=x z&@KzwX6uSh=d;FobPF~#5SH}2C*5;Q^M2;!1fli!@k?~*hSmh`*ei`U_It#l9? zOi(mc%5|8G-_|n#K|BiU$B+pM9UEjO?HS1oyTGB&aq4j^9fa!axix+7xTAX_dj@Qf z`RA#2I?AB$nuf+y90_Z{vt6}37bO0?L6N?)qNBcnclvHqDD!-jo`jQ`_c#0L zE*>wB)BWvYJYH_5-k(rzzzDg?PH-}>x%xj&C%BUmf`hFWv>#+O`DXUVS9Ku0pi6Jd ziXW^Uvh^Z|4=Eol-TM9Hi}J8pd|q81%Snw)3J@@Tk4ICRHe3>_P8net}R1jaMoAW1h zDLnnBxGbt^WsaM%5?7pz*zFhlSKFe#SuBYNz8{)j&zJitZTh+t)7gL5ZQPhCz+xQM z&gZZ8VvVvFM}P&6|7h|-dmmzkzwMI?j|BYN%X0F?;o_p8i}1hxt-0iBvM~F=k3a2L z*4y=RcwoF4Ge#RrHJd%Nd=?FCx6*7sXRfE&_}ohObHBOtZkmru@n~-+Bp1~qi<%r- zMC9^bo|WfR6IMHEo7^U>`=VNk!_|YV>)?>j(0A&!zUYbQe!df;wXj*=3j4N$*en{@ zLR;2q%V%2QU;ozZ|2?-s zj#Ya_j1KEygaxK+oXOt)$%y_-cc@MiIVkYF5%9#W@i)Cl91a*lo0(rskl_y4&t?r4 znBJtk)a}ibI=`#wlv(UQAC(ya1dbmy9P#6c|EUjyg8{xNkDB_zY%b>!{4;BUJ zK_2$iVH4fN)2qBaQi8=aE#p|qBZ0-l+}agv0~Wj0aWOZ>0+Wfk-_2eGem5ZI3LtQp z-0+`hc*|&x%T0_0rW+Ac)XDy@M^zS1#roIA-x4R><^}9%HIqAu-}Rjw!|hld)XztBKsq8;-M_L;{N$7l_}YHsH9PdI}9}B2Q6_ z?wzM7P6sNYDB7EaMN-qI1uU^^AJ?WuP_Ws3&-44r+}CF28foX~#qyG-|CmQ;jht=~)9FQ7t!I1D@zfj;@OZ9U;{Td~hmeoBkZ+6q zi?VuVUez<==mOsP>L3nIX?B2l`h=Ps2PA!*mNYNdG%;FCH%=n&Z;s{&1j0Z02-(k>o{c4ztenU3KS+R>9WbyY|Cw-c$vOIYf<3AA>!TUvrq&b8>TXu zmKUtXDBkmE;968P=#cSt^Ia^1o8ntVTdQ#kC!#slpDB*rfno^Rf*E40;_%?G!+SY9 zI1#cyG|NajTQvBP!o%5Lo;IAN;30&Ev%f?=Ibk@(&JyU5!NZwIIBGbHupuE+96sWN zh8U|jJUB$~a29B7!cC}SU^q+SL&}?G;+bxxs3y~?`J?ELDdwNWQe6a>V%pHyXGEqN z4oq*GjO@#DwVTYZ=xNc3UDvZ2mA9m7T1^k;nr{Es6gDK>`ooT1{Qift-+ue0ee0^C zRlVp~zT)~83uAe6fMC2AC8%aEQZH>O?*3?D4M4$s+cQ71Z)lmk+RYTKZ=hISPS8q3 za5nZuiuz@(u-^2uuK)yNV_zgN4wYc-XWs-UnE#!*XLPcoBMQu*is@%wH5(Wp-=T{( z>6+3@dnF296pE+n6=O00xffKbdWQi1)of7X@KA6&m84iNc~%uI5^%Z&Sak5;z;`5( zij!^`G5=w9RyZy|Y(>RiI3fs}4BOGK<+OidoC+TT4d;}gpnVU?zY-}Py_^@@JsqZD z{KpvF+!54`4k2&nlAh6~2R_xV7+wOb)d&t50`B7*X^E%u_?P19Twt~GTVT-p@<)B3 zW_Lr|Wcc!1-|~+@L3;~IkzzLg{;)iL<_9n=!x9suKD_t@i-oHd%-Iwh+}de9Du{ip z25}tI`qpZW2*SG%=zpe();(<*7cQ;1;u=Uv3%g@(78cak@d2o#=&5K1fsrI-0rMu3 zf-Vs;6`Nduk|eAlk;AAo3)9{J#VGBh8|GK;tX*?9>t@I?f|6CZ!E)#ndnwxV1m?#e&o0+)-(=JgrvTqKM9r1O3#2nAGJJ`>Kl4Tny(HHZFxK>XuZ+DDKEdHF;KNIyMZ1jUMTCE>m)Gf zeXc1L?Rzz|{fYAKo9hS^w7%(UQq;b|3c7F87o&pMSFAb-T~lga%Hf6Fw_-_5koq>L zPOvD>5B%xkzHJZ#%+bX!@(rYOfS{8uL<>cUF7rSaYCu8jo4wiwiH5dsv&RuZD1Fx4 zxcHEE4~X&5K%WgzK`eci;={wM<%%y<5A<1&3DO6vdhA;pgAzQVZP@eu@_7-5Ma5Jg z@K_s|1&0h-%C50wL1JJj*N7nWUDaCJ)ofQsCO!e%x2u|f1@$$Us7|xoT<|S>ipy{T zk+QPI1DWsMfNb~3K9aPcCYPDFZ}%pJ3-Y%hvra^RWt@s>RUo7?YT!U6YwddWtZ?lt zV;op(15^-817|x^0}ae@K_2!hOtbD1rJC3Qy^0tZ^fF@kUQamvI51*)Opy99LhV#9 zX4Qr!?^rSS9U}-xQ2N;#_xtCI+1AWh(VHZ5>cBDPzOyxHWC(a?RYz%at#w_zlVB7a z+FP+%186QL%4y0B2ekNpK$tEXZ67mr=H74@lcfFrSCM;d5v zTQOUsL?SB;){wx51|N8Mns`<~aT9F2AyNcT@h(2)iKy1Pe_%zTSmXv=+BI_|Q1jF1 zb90pJJNv5K<`TtJnZNTf_Pl%BNCeHAB(JxH5GwyNg35km99>KT+kAdZOSLI=~_$oU7 zRGiL$AtmhiQKa?J|_UWVNbWg`OrEg|qzZ=hnIX2iZZfWB$qHe%=Ep3Jj>V6rOL;Qi6 z=Q0L;NIk(zdH>3@(VS614Aq|IFYL=?x&9s({(-Ofu^{Zz|(HNHxilM#_J^{sg%mLbX5x-%Xl5iKm}#-=)-2@ z8`>FG(51Mv<1RMZc%zRr7qrFom!~gWfljGIwx=Vzd?{+Y`rAPYwHfd8mUJD&QTvZVJS zw|-7Ot`V4tp|xipd>7?+LS-CN z_(xGq7%!$Ih@dJSz462@0LHtw#v8rm`Jge5B>WpQNA+Yme5ft8Kv+yZ zrNWvH3cI{7nn632_p$l2L_~SD`=)J7K3@BOmSAeJ7E67~x*8KfRXpR(^WaX6JgJr? z?atzN{){){-AW0iiKxP|Me~qJnIlG(EFU!fD(aA#9rcS;uOZW=T8%bIpkapYiC%Z) zrWdDIY&oGdo_G8GY)=pWnaz^E!y2g^Z{97(27SMXY?=6?D$M&{UtfG%6pMoI9{a;+ z_Uz_`WF^f;3Ci2??{t@PvEt68*cuC*3~3Dt+P9G0$y&){HlKIbb|54OEgYz>BcY=@ zY$7tnUSnV+$Z9~)y@RBduAa{|o7Sh+1gtC-_hbVtCXS&Y;az;hB+!u7N#I4RI6n=z zyoLZ9A|BwYNW}ByZYfW3w*<`9^1PZ=uRa4_y9$6q#(VgT$#9zu6D6Y9`vt(f4u%dP z=|Z73zLOP7fDIApLNN(pH)SiPFO(1*GCqI}S)m-Z3tG`iDp71k17yBf1U|(0p!@hY z)T+}(s&p!RElzXx4Y~pnls6!jem9ZfqFl)rkQH0T0m5?35kdF{($dfI;;Z74KYTB_ z92jVPR41CnayOqksZ{r_p&iECFP4IvGl>%)d=WFD0@1G)DeCFzB1A6j%viUY0=bs+7Toh-4v{T4#J<{6c7u zAs|@@HrXi(!2`$i^>os7N*4w1=^nM67}xanffO+4@4;;!`&8*smEu?-pm+^P;I@#H zlO~3A!^s<5kT)GBuh3jECXC*@!z4jL+w`Y>3OaTpSbO)U1tv%nrA&@^5<@q*Aa9zK zS{;p|S#ay!qy%^%Yg*>|$2nbe!gu`iZkZWk3t=fPRvAuc5J4C@P-^f#)PaBr(#Wjw zFn(w*b7T41>QsS8bsB?*+}%OsLJ*`M6Hm}7R%rl~41oq@@z${%fCL2m; z0YMkFpj=Z1Zj{4uJDrA*cRE?CX@2%Sr_gDK zw3-YQhK-!a(#GpaL!Bsq1$8s|K_SwJW6LpNu7}J%M8KeDjkZlC7kh@Zq8<=*&0JHR zTTFJvw(dRQmqdmD7XFRAkz1SqGEZq&?ni5JETw}4WizknjL|x?+k0LygWV;N{1y(=ha^kE61FBr^P7G5)nvgTBUd0sMszFOh_+xi#5F5Ou`TFj6tWI0 zlHMywS#((A{WT>q8~23W5DetZx8gp2AVvexpv*&fNXZq9nI%4zlX`53$T_J=7*E2F zc(p+IS&%v-IuVaYPXM6-N7WG@9+Z!q}jJ z$oJ3fPl*Pw?@%_x1DWsNm>&^+?Jh1^%lr0klE9$%9gZ+nI{5ePaHNqTAenzFV64Th zh~EH%-q-0cRTv1v9%kQ$Cx;CY$wFx2PbguGLTHd7AXx}D*(nOa1B3p}wY^8^`LcLH z1M%W}vDT#6=f@wmiQ&NXqu{6cY{w_;72Eu>JQfTrKMYu|ikGa{pxCyRB{5jwcq`z* zz4oD_C}LEW2Y4y2eR=+BFShgz;Q}7GLSNXIX0XT1H^dieI56D^EJ*L2(L>1PX2lQR zDQ2CrMhqaq`01L?sqN{;n%(3v{mEP-vzuHVXjx-Q*J{&)vvhaIjxHPIQ_+gM#~NJM zzthq{*ar=O6y`;-VtA@JP~k;%XlfWB=bgM9V?Cxs)7#T3vEUGKJ0-$+38UA{cy!ZS zSP=g>M?8H&7qFKvcGIf3qg|i&vIZj>{??b>+hyTW0_F&1X6Zt zz>t%-IMa%*J7PqN-awAXVu9z4kY~62BWL;Be!feGKn)T&0`IM&>e17C9S|4-zuFZA zfBdayxm%nRzO+$a{Ln&y{(Z6H_geMDw>Z!rl)wwKNY7lUX9+kUFkEl^$o^pWm@pd6 zFgp=w12k|wSeJ{#sxYoZ7nVJ?fBDM&h3-|8uUl$*93h?yVd1}|7@+0D7A=R(bVsk| zY6g1~X*M=S3RO%f0KtbGHb2KM(=Ue-5sV+n9RAwe zrbU6Odi6Cu7*nlhkrOE{`cD+87my}^9{90O{#&Y>|3q^aEKc_G;}{dH@Z&F+GrHJe za=zS?Cosl-e$4T}=1bYJ(ZwJ0XEZ;__T(ibf>l^`Ph)#l zgoCVV(ZF=amtRHK>e0Q$?&z~zg3xS*NEKrQ3f{&~k>qk!p0iB$^-~52zI#zV>)Gk; zt2txU%tW;1G=K&7gNWN+>q*By*4uI;+fmKzc$)x;4Hb856<^T{x`(QmnCavBp`xeO zxo>IqsK)#$R4~K#-z24S&4P zdythINN|dro}D140VY^QPALWDlwNEa&z~B|R!-R+9%Nm|X&}Lg-eTNCoKR6bspv+q zN?ftmueaDi06jmcD`0!_xQc1UmvJ=Hut3>+d1X(EYA07-G!yMAK>&x2mJ*}lJ#C4F z1ki(Vx9QR+MpOO9!vPq0uGRLpKRtR`%nxElN3qtGi0%vyTr5vt6?BsytM>!)DTWJ(ZKZn`mowB>jw`h@J#-p zT-tX;?LFg@KhWP;RyC`40@1bA;vW+FUwiMI(W6Q7vka15M6Jo0a z4=$RE%#QI9gAWl|SB;-`7~54H1BASnvj&~qTT|>6t)`~qbc{_J76|%O3UZ-;KBK#? zR#W4#)BTlQa17(hbfkcrC4;=kd+INudEv3VC&cd%QLMM3^F6KzhYt~V(*<=wPY1K` zrrAHOaT#X_3l9l*(h@GkS#ix?a=ikB4gpc1cOogtbW^^VE%_YESb;twft;u^yOg;~ zGgf7eSs*A=K-&X1%(w+)&>$HlIvE>wE!U*$InH5@j-_W87Exk`3Hh+x0=zOFuOB)|7_Gdbg=IW6RpG=sa zRAo&FnLp9V+|ol{tcx)_sYpwAq{OP2KYxu9EgdBOOlL*&P2!fD%ahtNAcfq&I94tl z+1hg_UA-pFjv2z0-Wok2bXsp^4+$w~tI!K(fR-XEs zIUUiW(_2?1--cV9qV~j;klG$Q>+dKg+53)8A3G%>Wd2RoqGwn1V)o*(J@EOs4)ylm zX7q@QX)u`R|L=I~?koXa7PvN>!jhvl@3!4ykfHx{e1_^wvi$tN|CjOuEyzy3Ql7oq z%uz0%SJjNKqmEuFV>(F8dwTfI7qhBbiUw`;UP6ixGNZ9U<6MCyzo0Et^aR~mL7R53 z=&UJoim}E9I%WvZ2fZ-6G(V8oq(6GlOH)Fs&RZWvJNr-St&R>7qfU3SFw86_EBdiI z-FY?$)D`!)GrDAzo(JI$deY)+;-}d8S|vY?dXn^Xy=q)pF~FoiMj$$N2HS$ zctZ)Px&r^F+3LXk@}vds=pa#7zZXj}U_EL5wrs}ej?ptdC)0{eVN zt>kybjutn~9YUD7-nH>T0C+bK_geQb01fc)#5VqeWC?thaD37>b{*L`iBI0*-`yWy|1!~TlScP{5MI@-&xLsOg` z$xsSV5MSSH_FHq&#<$--eKMI<#429pRUGIAhRbIP5Oi-MsiiwF#n|HS6&9`GV=jx9 zCR)gS(u0UB8i;PQ94!iWTZ+8cLsM?qjD?_}y_2Km{-QV*44~Mc0q@T5*u0PQwghR^ zI-hN4=X6)gekm?SRNR9Gte9H@Bj3013Fu!GD>{+Qr$!V9WdW091|~?~LTX1ET_m6h z1liJc_Y#1LSCA`tkDv$;v@Q77axAU}76; zceKA~QJfzxS9H@9pXO7%O$4a8v;;25d2QRRMh#UC4pcWF&gGLv!~6Y;`@Z6eA%G-u z2t*Ka=cnQKh$U#z(nK$>79%>pMFSBpt(Q?X8x$KI9H{PW4(oHXNADqB{<11wn*Diy zI9$qJrKY!41Gy5*qJsE`<@q0IA0TaHnw`rBhg@VblF{8 z5*XBPHPkN93(}VUuY%M=g6>*CmwZ#cWgx5J^OzuPq6f7IB5#ADhl2x6V@CS-**@Cc zI>?L-Ba2gUX1gEFh?wC}@9KET0SS8x#ctOb|BC?k><3bc5oBM+8~pftNBc4e~&X29hR9 zP-7{wGbl0hMI#wF7Wgeir8Vg(yvwV&nTT`c(tKHS|Li)v^ep>^Xprb3=X%mGgwqbN05_F9( zF5}+Yu#$6lDWWJ-1Bomih?>5R-4Y?p*AfpE?qT+M5Fn@m<87h|h+%nhcpz#5@6!B0 zFP6H2D6i3jMz#_d)J+e8PUj0_wgg^{F~gYHbgh;fTK14kgSu88F_EXJhdL}ztbZD~ z$F_VSY&Xn393Ju$gs5u#5al637vzgPanyV{yaZ7^J37pO4i7|47h}1v4#mhLi2xIX zfeBwmE;uY_4i7|4hh`-i%qsEWa$jbi-Swi$kuQmje!GAW3ni) z4yr+{X>W?3b~^}%9+VdchrEO|qneEOADY&P9;X>~oLJ)_KOxb$=!cE&Fpu<*2|C{*k4NVr zK^M46T-k=X3U7BqqNw2=NW@y+CiGTOJ2EK3J2)7wnXRDB!BI#YG+O~cPz9zNc{p0} z<|J@+KXx3?_dF!>6$IbZ;CE1OHX;j*IP%!H;$z<+CZ1qOS~Zw3W013vholuBk~THV z?55;XSc7VogF}8A1Db!|&=nnmYfz&SV1lr5d-`$gMXm-iNjLUd6VZvaCT317n}oHx zrRZ9F9z+E=WG(QJXbVUSO?Owo-Itc2iKelJ(O5XpG=9-ky3lZgTK)zSbWMvwzisBi z=?Aqa00dQ2PI1H-WI!G;9+cbtc1GR8$#1vj`sF9)&y{_-l75jVrWAM1dpx_D*8eSs zj_iJxPPtg_%q?u@4q58E(nD#c|7wAI7mO4Z#PAq%$ z7Li#lXv~x-t?y0=|3oDkphL&UJ~zx(P0DHf_^aYN2anofqlg2V-t}Kcnhra<@RfO$ z;(0j_*CED%L&bakvq*&*P01osyanO`J9GdZN;1AeOWh~*l>i+&G8WlZW)eCsnUO3K z!b8ai-ju9tTvC`XY+)47E_uk7(%}RhYU+n^30L~cNNP9%)V%LA!fZpG3_1^VF{2BU zcvx1v$KerMOvCV@B~z14+Sp%4s>uyFRJ>X4CSNYAN1Hue?77^~kq#C?{&V-qJOXf8 zkAT4O7US4W7fXJ2=WlzGI3%!K6D;PD0hX8l(woLYf#;^+*}YmvmkhK_C8M{SG}~?p zG_bu9vYDPR%hKQU%aX+bgUQd6+5YOA<+Fkg1YOWog|v9a2VTeJCxr$!lb;>E>P0?~ zxLV@4{BRsFd|2*wvjaUYy(pef=+9I87pmXSm-AwBez=HU-BCQy6k^uit{{P=kHXI* zN%N~2-O4Ub=_xL)2|>Fxc@~IzKm0xx6}@bxxbi4OR4B3(kn=(KaU>`4M2V)S6?j6o z9`PzkyB|>p?P4uji_!fEB(PDtA8pFb`AS}fI=UZu7Kr+|wctvsaPj>;iU(Xn)b6rt zXdtWIRwn&LRqzI4bX$2AhoN=4v-uunsT$VMcJ zE`5ldNpVkeh}*3!B!aZ|;-ff!+Tt?=kkVd!loDnQXRbyszJLe9ej1uNDn5FgtSZW6 z32J7`kMefG1%Yqc#gA%o_LQyqo zWzQjk@TMf((S)7oXSMA3P%+k!pya`giWf@^VNYsMa0@U&D%^&8NzzG&m17MEI$kAK zaRWH0O4N8D<9Rb{Khyn)RRVyZAUenCvX5w|_K{YMF1SyXwHo;zAK{_a+G?1X=QPcb$Er1S+ znjR5^yn53Ogf!2|n%P0syT$_i#^D9=}204j?0~N2@iT4@?RqYxNWVc!G%T7TjB6Q0gA>IA25EQh$3|)#SMh_~( z028Eld|nS#@x%0kF9omw_vG#F@_}xW!2k6!eJw7z7pv1aBe-X8mMe$^Nope`l13 z1_>m$>O;^^?1gk+P^r@?k81XU^ zEDme_mWrkqmgB79z;$16nPVz6<4)I}PM3UwUo)YZC*`8 z$tgAm2QsR=EN}C2%U?Uz3=p$9vuL1_`LgetFpnLSF9!!QnXg{+cG-NfdApm!gj>N+VZUG_~ne}>Y5y)_{C)^p!rX0@`EEe+e zW@x>wdH#SEl4jXHlNkpF9+sQvJ*NR4$6j+{EET<{$ucv5#bPD%LYG*KR!1#XnuWT( zqvge5f#q&k{-$r8dHzZ>I?p(QKm{`^t7xKhKv}VAQo$m2W)5N@Eac@!p%wSSAr!~U z>d&K~ZJ@xxa&lNM_-JiFPApcMMQ(K&!eX$}Ec=VU9?Q261`90rw)W`hWG*BCD z4GGG7lG3_oBD)&bZsQGcL4Hk=%lSvmD7lT);DIc1CUZ%QoRb{tOuz(bRH7!qp0864 zEzuehly7Wp?VOyMI%@8UVeX^p4l|2NFwop$G-d`b;WS5^Gh_=eLHZ6OrGbs(oYsEC za;j;PvN?^RA>l5Q;Jn(nQ6b*)J~}*vS?92w)O0NF|NO}h{^SSd|H47zSQ-c)8g3`D zZ50cM7DUoE$0FD!3! zhmkgzAbs=uLvbi3|IPj{&0X&K#Gaz->;P;7A7g>$jqs<7gIE<(j5RVW778Rk3Q4Fo zGxt=i+GIEk5-4s8is_~_uV*qQ#WY@?34kDEhBIr$jHiIG!HEQ zw@jr~>dC?rnflyVmUuL*hd+#3>FD_ zXl!JE<2{%@HmYHO|EE3|J1PQJ0)N%RL>2_tjs2;|S8?m~vA;tBy0QNgx-Pew?1pJOaAy%8|QEQ(!4iR?HW zFuWNs?21_>cHAj$j!RI~K;Q^-v7-f3?p^(I;c&oUycbraE4EqHIL>=R6rh`W9sE15 zdB@dj1_OL5gKb4y`6l1de<$WIECY&N1^}pA2#E$Fs)pjHpED-K(l`*(Oh5PS#XHr? zoMSgHZda3s{!jQfMyt3+GemRL?eNI)&E5Q}SkPT{^uLD{Nuf*Y<^^AkQS`qZiY3kf zg7Aj?Jsw;tx>7BC4lhq#%h#4cK!Ws|B&AtE#;2$t zEqn$IRM&U3@nOE7(0w)Aam#oU8pq6A(?f#uj^I3Oe3EbwqnIIV z$z=cv-nZ)HMaD-p^&!q?hz2HFV&w-nUzTdCLMUdcxKR$Ca9Pxc({mPBO zfeZG;kM4da7Qg!0QviYwZBPAkqO$dCdpKT>Ev|0E*m!+I#IgY^QQi7QtPlC6&A6$-##_6qf-ZiToY8+S5~D{=JLeEw8N_H{dXq6lH{oh}l{q4I>Fw>^)v9cjcj) z^Ie~su3nli00iMJMtIm=r5H6WdWJDT1SQX-Nf6s~Kpq>wB%#?zJ1SuSm?U&1cvY6q zSi8_ahXEi6|8%!9Z&A2P$sD;%de38XIIniw2?(Sf0#Jw0CSuvA&!xFQyy1 zz+GG;q3NV#Gnv7Mm>W!td2ov^wc?YvnlP88_lO|mW;VHI-ZRL|77aw)bynr2*rKGF zh{$Hk!GVhBDLRfdC{OG_)*V(_J6irv1{uZaA^^ozkf9=n+)Yf9^=!$fiU+xgM+D(L z2()oVoOud+@QSVAfJ)_+ozMcg$gNp!-;1M8!*UBm5MF~sn_Fr_V7kVc`b|A%sT>@*ZV0ZP z?O>j*1_a;jBp=0UW=q8$+#1JK1xH{1Q{D6$Ot1=1SB@>{+iHE^CxTl=X;U z6zwBDAM%`ejHdIL&7DO9(=DDi^P72yn)kmo^F*z54icQgo`&;+7M@rRHC?GzN{a}_ zdvPw!?{Q8QJD2mth>Y;uie7<9wBGSJtC`Yfbl^ zmFXa_wP?tru&Mb??oAzJQviZbc&z!^wCF5%gFMzFf-#Z9QN6|xhF&9TNd5D4b}?IV zUma9KI4triqPa;V0??qoSB(cY(f2Z=$dmNFBry0z-;0v@Zc;de9n=R3LBT8fB9z1g zic$L_0cM^R{f02JgZd)G3QVwyzQ~Rq2;r4=P+!EsflJ1QtHXXlSJRIe8-NJLk6nbf zcgt3GrT@EvR?l|(-_QvUvs;#K&s*;J&992rx)^HEOX=iM>!P=oNguP!Np#gb(Df0^ znOOlA_971w<4VOFxeQcgE=L1Z?=S$jE^Su|5@S!zWUp#|DAsaGPzSTyz~pU!v@ zJ^f~V>jb5i=7D`a$l1pXYEz;VFF-TMRwIQZQ1l`DJSZ{eZ&SO@%Iu_gxszeGN@6U~ zlr6nFb;?lV)VaF!1dmo1B6ipcoI)3Ppz9N6@1P8^K9@3>;yp+P+ggm02+HCpRac8iBd@#sLI;Qs;Z{5Io+~O7w#}!quNUnL0L9F)E`8X%A>}IkOYdd z@u5x}Pd<+t9~cWXwU!?(fZGBrH+&s@^zsXdpzHywGC@t;p}!Nx2E`lE46n5cdIo68 zMp3s)l5B29jaGsOy6)`0r*n73FX%U;P_#WB3Yp@R6+gbmy+Wm9uwx7i(0 zYqvY5+PS2R;LT|#PDP`{I>Ue7jsqqk;vlaAg(L&Af+gx#EO zBjRf;nk}q45j8ku+)v1`mta;0Awjc}*CC++2K~JhJsqHn9xTvoiRfYnF38_YkhfF_ z%?92M2?8BLQdX!aRGPMu^-M>wg2x4U$_g~ppPCJKWwrdH=(LYu1%VDBpCpRIB&87t zHDR>((2do2wEU;;D<}Y)>pLVlAnGH09du#L2ll0sskxUfDkM!`uftCg3=nkP3$j5z zvE5slX;c5d5w`*g9*|%VBqh{7ZWeJ>guCTgChQOHQ(prDq1VERF`)ple0fcuh0_uK>n{2+l0 z5wZ%Jr1NpBUG_iHEjzZ=OW}b~I-VtT)55H!9T59N zNYGxdO?~FJOF36(gqn_#FfRuK)g3`aH*}eiot%2o>_y7(1&APpS!+p)(hekP7sNBZ z?9;=nDM-*Fmepx&YfmHCO|c>;qSJd~vvQAE)`AQX!r&yrY%Vq}Dl6dr1`iQIdV`m; zd3sIeR1|Fj)`Ip0mb zEvxlx^(FmnGGFkqrl!4bfZRB``MUrH_xovXyVH6%Gq+0ezL#d6uOV#_!5EO!Mv@z64h-q4FHFRj7MxwS2mg0hkUKaOAz_(sg*lXYEbRw^^y}TyC z0>}SjEN|ZYWfNkyK{%tC+73*b}01F(}Bgrh{NN+EX zbTB~v560rl-E6fv@Pk*1tHWcX11Lh@Uh!v-d!rj5iN2dJm&{@MqFW%K|EaUgqL?qK z_r&lu%MMYHS?&M@hT8Uv<>it`nx6U{5YXRn`j-m|Zp(|Mh?ANwZ6XT+8hGkltjZUH zqGv7~5YX#VAn&A8(ep7%0Z?H0k+YM1%PTr{tr`3z%+!E^rM411+8}PG>S-khB+%(? z5^=1eC%OX?=!flgoDz0GK({eJdLyb=%xBL-*_gTd!(qqkRmS4Hvy)8beF)><$+r^3-VHu~C8EWLS+76#xWu>!(%Jo$BSM4hG29Pw9GQFNjiMvx3ei4pGfCcrA!(5yckAC`bG+5wp7K)7D&q5Xk$adtmdokP2=}02$ z;`AE1c_iRl<#FGjmvY`Sux*NMPiQwfm)KYQ9G|ML}R1c}+OsnRf@(BYv}H z8Ix-k``fbJptdtVpREqOa*o05P{DjN$}_dIBARIyN89r25W#pmVtk%(EzP#FHcnuI zm1eT7J3OU_oJ`D{>}D6Vm+o**OD%hO;6iiaAtuj4Lj(M)NtmYZSIQ|=Fw+`Bb)W~9 z&fI^@vw9TOXiUp@*K1ZO9Rg}q1{Az+ao&hf)$_N?6NDBGOeS6hV$5&xl{vb2WneON z{Jxy)oHJoi&E}Y_L2EqZP?Vwjb!x9k3S;u1G7Le%`)5>1>NC&&MY+WjcN=ouKvs1B zLKV-B|Epq7zrl7UZ~l(g>+)Psct241q@?{36LUK7uvyZsK^{LfD>ID(sVK&Vf*X;7 zXR?2yDVHv43!3LN&j7G)=op+96r8c8&E-7P-SToHrdr3abchWFcOy$vEL$%(vZOV= zqAqhc$Y77lIeL$M44Yd}a9-OTHnYRz^WV`a=Gh`~+(i>aEky0lF&e1ua4PDjP(|8C z*DPw<<{V*&*-mTLDw#KrKx;8UORf}}f|Om*K4*GYQ3MTDi5jGYeHkc-$%_Q>dRFn4 zSkrK{nAqZh?sk%{&wlz2Mgs}b*ti?oNN+a(@iEju<2Ilmj&r-Q#mZ?lJ%N_o0urRR zA`?@eSMHhDbfa51YeZ1S1~wZOUMv@45qY428&D7n1Dl{UvVj9gkY48ou8J3Ou~~B? zSkAgNT!xG`Xwxn?7K(tti|1@#h&Eial9kJs1p`rILc4n{(UA1aRR{;N#yj1w zlxfqHL@~XmcgCO~zUR&9)1;%iW{{PzYXY@}x(QEV7kwyog9_@V;r99vqC(=HEog)Z z+9nkEB#F4!GuBE-kS0pF2~uHhhnl%T1$EOEbK;`P+OsPbpn*zOAe$r+X9rcF5ER63 ziwYE^sb()&6x5tM%vK?R3;MgeS8IET`sCqiw%bjp14XZ4&_VnKkH8vkAh~`S{ubkc z`=00is=gV;(qB}CSpLw=K7x*uCxF5JcAEWiRi4j8r%5wErQioN6x>fMFsJW?0L|!1 zA)rPE|GR1aO}R-((CqV6NNB*J;z3%44QvGs3ArC?)&LYT0(9uO?RA{JTA!CI>x@gA7|ewc)Yf_HXMoJz*+ubF268n23JY-nieLY;28o6_*5qM zA*cRzA%zV7CKd&$=%Co;M$q?S!BS*2l2A2L^j8_r6JB^kd|{K?Z*m^QnCNi-~+w z_u!b%p`qYCQQw}LEuFT>n_n$gi%L8XqB(2QR__w{jAOL(W=C#bg&?a)cHWq&JWnisJip6*K$*NmBC5bfa9-MNk#p*F9=3 zfr(t+g+S!8P9QH~Q*?ZRl+0=X3+j9LKu|{|tC;%%R2w%d-8=XKjsjJP{o@x+V z2bZ75@W3Hr_c59&0 zIS!CPf2aB8sViZ7LA>naYnrkSb9-D+UyrEe^OTy1)WI4)P@RpC1>>V=bA2b#V%}>YIUQJ{FQ_P4pcr7Imz(dHp&4-bY z$P*P)whdgD4vU_bVXk~#6z7M_6+H>Zi(~{D0v$4b*2u4|VG^2YO1j#3Q(Tt&rM+Z1 z{iegL`z%L;pEgey9fZdH9=lhFwZ|j$dmJc8$!Y1Dy&WAjrG-}WChKzkl>X(r18rHZ zCe?wDqg54$@M=SJAVb54Ov9ti^JP_T)^rWbKh3INA7<5JLMCKpPsT>us}wn|Ek!-pPTK96VgE(Dbe9n+m(P2+Qt{mUnX3=PzU2}+Ws6dS};J=J8n zNK|nD9pgTKwJ*$NWYeo+MVGrwzNr8HlmtGc!{`&*I!C94zuw>n<~4uN)a9hQ<9VU~ z^FI2&Epu5|pE?Vi8oBuOak(&E{srBwMTN0GU%i^r8W|lKlve@oPM4Rw0OW|es4w^C z?pPXQzTE$w{$TuxhDp3x(#*vIsIJ~Q*mmaV8ryN0Ei9OC?XOIS&>Z#uVpdgj#nxnY zPGO%_5=|BMFfPmfuN<|7mhS!*5q%6=hYH%8ac=t@T5C`;nPrF8?lsBj36q7rSZFev ze}7ntyD~MA+S^qy$H>U@-4s1--dkQAKm6!suYp1SPM$m(`YCoyG-%oEI{_9PB9aAA z6{|vCRWeQi02%bR8`VuIMQ*35+ui18j(0ytY#v}{6O+ozWnI?z*IloJliZ)y~Hp zDKP3cG#{7@UPFw^K#|M9dF=1B^YWS4K{CX7LQGJ~e4-|YCus)f6QCdsTHx=PAwt$6 zO(93k(n8m`v_J)I5R1mWRONPYe01|{j_pbhxnu9B5HJq@Z}-2(sIa}rV2zi;Y=}0r!+=G04eWf3WZXlI~8`+6h}Tnz_x-3 z7$D})@U5w_wU2#8f2=*#H2_oNXyiJqtp2&%Mk$|F@j%^Y?doW&7ab)m4|IBHN{ee7 z9#j9G&##a@d>Mg@&OYqz5*lNLiNu6EOxbb{+Bl`MZ@Jvo6&#s!rfHHPv> z+gwgxV+0S>ecE2qW{tpo$?EbyjagL!4ygKRw<>3A8HoSK*uokbX!9+D@ys{^Uh;kF zJzMH5HdK7vZlUs7B6uiT27SHs3{dobyCRz1=iye-cI(wxbSUZYX&O46+@}K$sOs=( z^F`xqVW1k-r#TI@rDD`K{aHhq^ou)ZO-eU($sBSLT0c z)8au~d8wH`t9ytS27-0V?7xJ_;Jz7i&ncX;Sgn~yQZQRw@Fwy+FE0 zd-kuh*ii8iN;aADu-}&(3WBVmRZIeUq8dya}Jmk^eDZWj-Py&ED3VNqY?i0NFz-zA9kNj_{7Vml|Yss6n_6sy#D64=H& zQNozb2#*!n5%o)>DPV!9Hak(@(RmWnG_su<5=ipP0tq`&YI>?utnVBVnKf4O91zr2 zaP_8m`i2>4gu>bTJb*l4eI+ z-8nW`y#A-aA;Awwm;_lynk8Qqy#a2grg1iNkI|?NaFUufB~!n=q|Hd;a+RUf3>ef+ z4WVN3DT@go0O+bwe0W1>w0@%;a8T)84!2p9g?fsO3H%X&; zzeNT)^L~1P=#rYM-TADV?4o@zL%lynhX~dZ@?-^n{C8+e7=bG!l&6$H;E-@Di~(oc zr5P!ieSORWkC>uM27nN^l~}gKV-bf9F{|}w`&V?unVYqgLyn=fUScEXe$Z@eNeOg+bc$@VG%~%up|MbGy}p&N_>CRF$2O>L(G-%tEBwoQ*4t|Pg$`#c7##D z0IRUD>{PF2ugU|j6hp%@18$@4b@87f`{Lri8{sET98FU&U({^mZtIgbsK~FM&T7hi ze?@g6RTDG^%)8kcJY=v2$*FYd;#x4YL5k5KA`usy2#Q{Nn%mcgSnLiHgDM#Rtzyh>So5SlGxNvoVxB;vN9SvwUcLos17^P zLjgJI_S5g}q(d7~WEidej94J5%SLjR>;yInC(OERv@b8|{xeo;C$Le?0vqLO(ztUp zf%h~kdFj3cS?t7pbH)HWq{G^Nb~!zl59^K=);u~yq#f2IOV6y1=CGUsa?;}!la^i| zVSYN=cm?2)knZBWG_x2?z-Yrq2i;EpO49$IAN=4?eqjFZe~+faaX<&_a@6NY(IsYf z7~18K*buNGL=(Dt4IgZjRCVx*ug9<;hoTXMcDc8Aq| zH#uzS>Qo-AH8(a`EZ4ZU!GipQG`YR0k=j%%g_XZ1Hg##>=#X;FNqK6&PEjkK`gIUN z_Bk4;e#EH6O_P7C*uW-pSkn*^DBcnj^F80!sCZ=DA;g(6FXc9aL~gdj=7N4^B{slp zH5&5tj#YF%qq}*|s4xEP>_7)nt5*}chK>xv8+1*;HdeG~O&;^$5b<_K1Z^6jyD3@D zHL*&ip~i-U2RRA!8pkwx-$c_#*QxOE5aMdDwb@fZJbF1V><|s=>D&H z2FUqEW0!1VbH{_zH>F30`39P~vgW0HMokE@KW!IlZ0)5oulkpfRdOcCd)LZa)5YcG zd~&v#ZE06G-E3B_%}{;1=LZfn3%;ftYq+Mmwcta@ourV(Va-<@HFE(f2^JaT?V*W@@LS0%Eb;JsKTYV?mlf43R{EOvtSpM-Oap@Oo+Errm&DS-GVM=#`N|T{<>5Tdioaw{qk{Tw zhFb19(ipju*?@xheumi04)f}+=@55PJ6MqC4F0Tm#kof@xJ3o^+nIdZ%eFbWX1i5q z#%o;A|Lm|??(J>MU+>BljXf5h?_O=@%d)xRdg1=*A>FUJ5l>wHTX(DI@vY6hgTzDq%Id4@+nLZIh@#t%J8 zPNTd{PSJ1lm^x*K0ear^--fRCa7DLxr(8|Zq4t1WOcowW?)wjU(%9b>ZM?^76XB4- z|B?SD&_9{Gngj3Nk^>D3L060`Mku|L%E|C6_wT%IK z?)q$q)L-+KN70|~NUa7T+-~lp`!Y)Io#)QRiLZBGn@MH5P?H6%(c(ma4?Dc$)yp#2 zeM>_Yrb97f<G+swwEF3wp&%PAZL-J^qeaUG9!gSeybY}1(AgGN z8e_Ea4Knz%mN5KrfEdjZ4Scr}no&5V5)Th0`7$ZRZtC&M#2|zJV_&O89eqq|G0Sh3 z8`uA0-k~@y?NM9ns^I9^(%bj?&Yqa*R z#)gLMsKup=%`w`jB_x2FthdHGM)Ou)CRuMiE9mMa>J7z}cQkM16tGFwTWQ`V7BgBT z@#xTzZF!zn2i`Xut>v-E;Lr9{pC0I*p4bwj^;83VXvzBN@9EAW-ZdJ{PaQNAWUXP7 z#nojrYXtbvlJL;EnPouB#|<)qhYED)xaH$8m?!onQx?t@lkgrU)6_apuqGntqPUn* zcgU!4n^c&B5h7?z05yp|^P&tV2zg=>y(u(IzJV=HxoPkc%G1|l_ z)(=LgV-6JgO!$&bU>%!Pt`U4GKn8yz+R`qAYX4=in^#M_iG-;bA=*ax(2|&`+C5ut zjRP94u>+UPsEcCcs9K-z`D}&G*HHCnd`loE6pB7*Ru|*WfB?uytIN;FSm56saSkP zT^M<*%dpbQb3hZHr)birv<#c4h_RvJo-bHaWKFs=YWkRuD0ZHEsMtpYFxYbzI7>8s zV_5*$-5Ta|IUhfs28Rs|pL)~rQurO6%5?sDc8Jv|j!t>pwjzmHpo@>k>q4Z}tID=c z%s+;W$0KMc;A3E!>^re@e%Kf|g$^CJy(NPZ+U>>NTZ%1N9w%EO78Sh7xM@-t8LR+C ziJKl7{Jf9mE#&y6`G@t<65vq5N8feA7qeYmD=rTFO3GoQ?<72w@OXK4puKyO>6HGr znoe1942zcn80@^a?h;WW8u`Mo-a5wxcPi&KH}B+(k#i3WcJ2XAp_r};7Z-+kKoTBG zcqDL1? zP3VCvu{6UF4~&4p-n7wc^ESBMn)=wj5^k5ornAkf=`4DoT=DvxZxJjmZx*_!Ag<}& zX1*}O#H-@R>_*i~tBD}2*(=*BjE>@n4Kc@T=RH=PV}rzI+i|zV>5Ju_Uu#tyvF*5* zPDcr`T6;!1Pijxg28qoeG;L2hS?wwcZ#ItEd#pBOzy*0f;q@)5$D4BR zWDwX)iVFKx1x=ySJEikyEao0F_tI^+fCPe?UWfhsu?c$9DZNS|x;)2p|8hbYI0Oib zxHSHTv(s24Nzx{W_KMSO)V3Lz)1kT1i^vL+BoNdLlh&qm!n8(=aOGoW#w=c%GoB^9Wj__kt{8lo(-J+;|BD=A8-gE+^;xysa_!p1l z$IMGu$d1BnSYWAU&ODN2B5K0rkD21sXbNZ`s+r6RMA<8&;s|w2Ke=5_KmZ}lSg8@> zZ&!)695cPAWDT9CLxwbVt)$EL4sbn>Yo;G&5R_ZGt8*977(n*w|{903R}% zX&w8eaoCCZpI(ReJ0qijhloErRIAnUd_o7hcg2MLWHu zZ>Q+MIf)<(W#iwD6o7pET_zu2E-xut$7N(cYDTmQkdu!@PN*ab6oRSIiCY3SBh7Bh zXNaKdL5r^WsuYKSG(qn;Nsa?*K50=??=qT}+kzj0(M%Q`CyG%)+n={+3#w85Evxv7 z3o-=^>x^gQ9;{JL^dDNb=SpLPoJPB&`9m^jGpt`h;57d z$cccHGGH4U6#lqd;nU^1kZ%=edb`~|m=Fju==)IU`*OCQ!FqJ@)GRJqO=q`TTABx{ z-WRHZBE6snCaSWUzHYas6blsnOe&(YW3PVq-8V)G&BShLL&kPLrQ7x^3cb7C3%)Pz zVwASxt4>a+m8JR>JvEL}HLn)N796Kk(>zf13t_|GJbn74tq1X|pZ%PLy{l2Is9}ZT zUnUf{w$xJcax}@Ew9x!nLbKi9LAQpOrS!6z*l17vVY(_sG{~BH)b5I8Ox#Kdt+G~S zKHQlr=wh+s)T(YysFk(Ke2H3RO&Z0eacWhX2daLWDDNjG1eMj|@nvPU_qdQme`nQc zHkxl{>7eoF9U3p_>eC>2N~M=4QJNry-oI|w`+Hh`cv3CP%8VHD2Hu=Pb_+Mu%TbQ; zpP-01Lc$8+@Ozw5&an!RlfONt9G0}8LFGZ0KP~6x+8XBU)#=M3;zut2{+L|2`#xK8 z^8EBUNoqiDQg!*eg4Q95`JP2XHx2Mh(TI;%mpe#%>-`0DoY$oH7yi`4(f0l2{|&vr z?63E){%`30E3Y@zr<1N!)&6YeugruOQ#@Xuu9Fr%{Ba_JoQ0Kb7x(BD_frbg)EL)9 z?i3T0$?@%P?Re-*8x5$ZX*wTQv&~{9Ht~-$zHK3cz7Iqm#V0mKvC`EnQFQl!lQhsI zN4FwzDJP`H8QrE>ph(sUd%KS!gQRsm#QBO3x3c9^9K>|HkaKJoQnDnqg94x37$Kn>F*sqHbN@Y#PcV-6yZ9QF0 z$+9P?$w?Y$%9W>Jn1F^VS zbez@zKE!CCNzN)Dv3toTWu|dv71BIVCD(C~+U$MWn(Jp-RU2m=C+2{fw?))!CSIe) zQnRMt9Wey~bjVdVo@`pLQ83etv+9;1f-V_{n&efnua<>)D{Y*5pCExAxi0fNw@!o} zD_hG6XB);@muX{z!lu@_iAB>>U2ZN)ax}BlZmzo)4~Gt|b!|LQ)s$m0wQS*rmSdI# zdfxT*E>3E!#XMcJXQZv>WhkHp`y{IJyxiN(64m58^JlZ@@WgDMsA%)XW_nTV#hbTB z%o7LLY%~=7d!7?YeV?lBt7`UQHKkX4XFQS~vBnXgtF;EKQ0wQ913a0>b-7qxEX9=C z5o-kjv{tI8gw9Xlivd`qb5Coj%qh?HebfL~Ez(8o=vy2DH%Y+qnQx>NPzk8Mu!aIR(gC zsbGXkP2}8B-4xzsd9`?J;Hx2?5MYA$zT~x()9ou7ICC#h zoGZ*{o1udH?KF4F=3fuVwj&2D*rR%I*j`pN8ATlwnv7h~&4AMT2GxTkI<#DWF?(K2 zeoy~Hv+uLTB;Gan_uU4t7&ZbV(ZF?A{7OB4^McGqUSgu~v@BzY*}-cb{$R0g1YU~? z-g|L=FDlAx)RrplxN6IA0}AGwF*Cgx$B$4cB6}OD#RK1+G+$Bi_@%f%tc%h>f;C~^ z&79UhHibBxG0?sZD3}xZ-PlqXHNSua>+RUe)Zv_oNi@Z+aBW7e5y6?T@ou)>zF02A znb3hYZa~2-ZEV8R$Tkij!Fog3xGG-Ahk`#J5D;s)92>P4)KapbG=!~&1KTx`w|yaw z?ETjPIkRA33an_K9ZfVVJ@Xa9fi3V+_cP_&G%Qho@9Cp4D46dz7WIjmXdKS9Df%#} zTA4s?<8C6=nA{C2xPzA5D@3#knR~XV5hi$pnBdbSLSWB!MnZx$Rmx4g3iCU(lp9oV z2mLcAFRHXX`)2_fxT1Pw(LjGyCIuwBv`*d6+MsYJD zKqE1E1_-)?Z)xWuJ%#m0bMucqw8wA$(Kvo>1STRz1@Wzjcu~;v$NVA+O?+vktuaA* zBO=`v1@AU%x>v1~77>JZUlix(Rr$hBr@C_Yg z4cVugf>%40&wIuW1r{AD-fvei-OtWh08lynF-j~0)Lf(fUR7L9p1k_aKR)^&lZVkM zI!(vLK{z8M;J|gAbA1^*xMq-+C9Cnkc8jx3r?huBy24A-bY=+~NO0baIA1RJ;tCB- zjcTKGh+zES#qN^k@Gd6xM!4N1Jb5?0SRHmehA56ad&vEIrNUQ=v8@sF?Qz98e2Dq6 z&xYF~$Sq^GM9nXk)919d$0RBC!+GFN`!E)rFt@Rpj_hp@d}rvW!WavLed05gvY6Qs zw4)P{Vhv2OJHx|v+AH8VLe!on^Z7N-^2nXCI1Qvd@Bk@k@@6;16+<4cQ;-3NjF0?hDH%JOiZ-VgS($0t zUc}!{EuH~_+KbFhrqhzuvJwjfqZS#bfwcF%t?bUs-Q+j*e=}Q26_+u3L}sWwJfytq zKNM+Au%M+QR$z*CD-YME1K1GpD}1$EuIb4fS}&^T>iEg;&wl-Ny|E12kIa{;LQ@>8 z2Z!rO)qZspA>{rNP^zzYaR629YyidaYHL1-{R~K*VqG7H6}aL`Ilvz$wB~}yPk|DP zJafKaU1rN~)K=`F0&a&oL86yM^?N!ywJeZ8*6o*z%3M41WHx_B)x?V!|Ga;hjY<@DWGVGSj_C%gyE3 z%rz>QZzb})qQ_Jjtzz8Vkzor7&XhMN%skwyYS1>`gpr5y3L9VJHnz8iG5acJUGnyI zaLD8JI^pj&rqWO}UdRWb6|*i0GL8o})ENJ3CieHMF)36q-UeL*bmmZ60Pk(TQl4)_PEs@hn=^)Z_ARd zH6~hL#Rj&v66e6keU3lT3Xj7tTH;*U$F1==*5@tqI~nVv{S22U6{`pe^8*?7&nieX z93v?Zt;fBL4Wd?Bv6)X{0M=6Hyf4vOkK=u!#m@03j6V*)u>Gem*DGp4*OM=Q`}k`! z6|kmd1-p~C-cI~wIX{?xW6il@90*)D)X|c_DgO+gcgcDxcL6GnkOBKBX_g4`J_JN8 zj}B6PRnU2;iub4$C+&dQAuAw&oCo+6g;kf`=X>g4pC9&Iief?%cw9>D2@yDCypPXv zGQK@yUZj|01ENX@!9&VB_)tiBSgs>yRy+d*v^E)l?vn7x)iGv?kt6^b5^{b~rxV37 zl3z67kkM3T?m=`JfVpFhhJatwuKDUD_ zxHf0;*bwm%zVafdTV9)T_rBQYuh$&YGftq^Q^2z^6*4jUrgLm6fg3R5U{YymLo6e5d+4j~`lyPOaiMikpx z0I8B<@F6C0PMV-em&?$Q&VWH5IcJzkl*mx$6wr_mg>;rqmc`JJ9)Uwf6w+l%VU3|7 zJpm6Xci>H?&$BRnu*b9Q#9TPTdWV`h*HjxHqk{OhCnnAbEi=+4iicNpx|Z>3rq7eS z5)`yI87-aR+Z0j9Q?o*mC2b%2J5{YD?$bFEoScJ?u;BeDq_uQU)I(ECP=wkZOUqGw}3NW9^_UHBq(_W za!t_46(|G+Eic!q*sf;tBIX@bt_&5#H^OrLhE^5hD5cmR3lP?L8uw@rLFgNc^>VW` z^L8fLgdSI>yNmX(2#A&L5%YAwV;b;}5eek@Fd|Y)AxAV8Kxz|W;3452tcMS+*u!SE z-0-dcNAzLxt`GD z?6h0Zn20%w;w~u(%xu%m27!KFA@hlulrVakJjJf4KJq*l#QCvgMqIoIdc+JBFg1qb zi=$Q+-Az^$le)|PH28DfPhkd|Db{AGDRG#En~}8mUR);~Y-UFj`PB1OG2@$=mA=+X zn`48t4!hC(9`)~Do84+Uh_n6eyxq)I^GurJ7GP5cdYR3VL71J2Y!@cCsVcTt4$@}$ zAkR*)w9DI*shRB*n^gztvxE?6$N71I6m*z2Wo+wJu7(S;Ix2(f3^Qe?3?elh#B~Ib z_^#1Y1`)>wX&v>H67%qO%6e+aAgrSzn6yz4Ib}ugghvQ`tu@sM3~TD))BoL3xO94$ zk4aBixRwmIv;DYy5LwTj6?L=Cs_exH+x?IeGCP8b8>=yerwl4J9mI76Vw!+r%1#-G z4Hsnnq-kmry*b;nGxv8@Wy$qjo~~>;DTKBM82ioZ3@{BL1h!WapI-J>PFP78CuAxL z+}JUSg{LlXPYR*`KW}f^-`H`bdAdqcE>iBBcDr3mSIzVkWTh;X%e{gmm_!K#U;xa; z(>-@U5=_Dg0x$q(CN;nQ27cM~wm<8fSf03XA_CyK7ohyYN&<-gbK=Cl3;anviYQ}V zwLhT=GX?olHSUUh;yQ5dQR<4ao^9Wiq!s&D1-71u*X zv4Dy3Iqa)8k)O<7;zi{?cQt2p55ZNK7%ReyOG-8ikk}e^6(u{R2{V_JY(I#4XO%VE zS5dMfK^Q3TN5=pNb`??7I4m17iP;*v(tkB|-!Ci7J^f=N*rx}>nY z+;6n)Mfp+XeHDcz)Ps3T@?rk-lRjAA-4Ze_#RoX~C{+6B~C8%o$Qb>Ieby=wvtk;PBn9_og zdKqb%k-8+aJSW(+ zQV3C)y|NnVUU4-7K8#t}o1q_57U-YltwwlX&L(>^X*C$SvaO){WVX1hkGRRUVyPg^ zUD>zMp%Xnfzel^tzRfZ{7`w6_)PaK@oNwqR>%o*3jQoC8Y1aXh{WsrK!3?Chs4rI( z8GJxDywEe4$EIj4YhyNP@Nz{MtY_1fRqzM%!7d$C7``6w^mbS!FStop>{YG;!&c5t zygVB%bKfSX00J49rd#KE|9z!feOY^dG?=OpsyY|!{$Rcmw9YDl)#DNp9; z)2p#Lp$dcb1<>E5guA3zG`QYdpU|>dM;Dd1dTP z_pl5q7~hC|x=ahkMak|3P*)f7(E>AZQ^~$s5r#%pk{QEv2J^{C-QrG%$J9T}r_9bx zRY@xaVW!?&?I zv+EKiSf=MgS6Qa#BUoA%@K_PUj1cT{3ArpD(WQlgC4n;jVs{o^>Mi}6+|S`HBLr`` zYB%MrW>@7f<=(A}KdApO`wCQN($tIv3)rbG+`9Pr?DPd;r{3$dtW=oj>0o>Ypg<*8 z%#~IP*6FPftF6=7BbD3*TG?VYGDTSGrUCMNSsx$K5u*WJkh*+pn_%rsR+N{C!M;Q~ z$3db!Z5vDHC0ejfxY`mnzP@pjP`s3j%DKQC6 zSbIr{p^!gciSfnc_PI>#yYWg&G}-6GBe3TPN7IE$iQ;rC?iPwBiMDS;0@&jg9S6LNdEt7PxA= zoDl3vjG}1!e#ea0b#9}LXl@;l^=LLWidrQII}>#t3zpA-F&j5lrz{hLeV6%>&wMc( zuf~soAnZ)E#w=?7ln%3UWBu3Va|MuB0{^}R%e}8)U zzkl(Izg$5T<4MBALVf1^|$p|*69#JL;>t|0beN#-67}q)qltsw@NAIs zgW!Avhb8yQeScAz>-mt1I%K*(Se#Cd`INS-KJwTJ z=UgHOU#U9N10_P8X#@8LBmSVWY}1&Bmf7g3!9+DR;&GOm*riQJ@$*%Jb4i?E#Liq2 z#;VOt%GkMiihBE5T~%rA?ci;4v+XdO4e0&a;6Yc}jx0~ZH@KKAjQ(et(X+v8%CLi3 zc5*(BUp$hX<1S}+tX$S~y1kJO5FPOv@nn_y)SP5>X~1ia|4+2b zY|TViW(Xp-RWM>_bPRh)eTvbNNWJ?xB9$@%5vuYC(Pp$|<(m2ibOYXu_OfKhb~CU( z3C6mcZ#NL1GBzMO>hP171!SmkxP*Q7v&BM7!}xzGV?3Q)4SKBOpUrxs4fEAeTkd<) zKA2XGnhinzk!^qVR1z%&CAv%)hO0rKhg=ap$|HP(G@PE$Vc$x-zc{6vcc@3nyD(dq8wZ5W z()h#YrNxHx?0Cp`<*y}Xc@TTVETJz|G+D#Hy-w5sTp~yP@-TAi$yp%e?z7m@B=eX> z?Z2%PHBE!ir%XugOvvKr?^sn&#%jZt=;*Z0rI-Oq8mvc_} z+`ZuCAAopqh^UC`WBeYn^u|_j`@~MksB$6%U5essx>rJ-I|Vh<@>tt!IKC zgjXsHo(Thq`8R=ubQE7&#T<@LCL4_}m=OI8R>Cl)s3w@0>a#Ty)1QI{dCZ`XCMgF-fnrK-7DdafHw4TRj6VHTp%$h1G7znjds z>c6g;i+nD`qe4Tc6&GX>i|)FW1eg$ws>1j}=5?z=e&KSIk@VN}ggA@lx*5qq5l`3F zQ0}f%y-+!sP0r%}N!hk0rb5`YtN2Nx4_3Ba4Umxh^-seo4W=fuMaBJ#PJXB>4RCQ<3s*K=u)SQNvC=pKw7Z{;##$y?8lSXJb zjQE?}cK0uGnle`PlA|dD!9&-Mvno}X0F3!}c~JK+Ys_44qGmo3JOJn@mziSmml#52 zgs!f86W+YADMLIw3|UfUMic6MUtyW?`7q_lPov=>UH))J??TS!l_UEPmL!rzyFJ%ty`)^Ea*JsIwzy^`6-Lke=RR$U{HFbmFQxV+=oG&B!e{`r;rA% zFG4M~cmMQUBBaALTk=2u*FXN{Mr|}2PUk~DW%MtXC-u=pFZ?a$rc!ViMDe5D{wNp(|4^7}7(jl! zU+e8<+l^|s%gVyO$qo;h#)NO3@(oRq$n2 zd%2x;54Pe0ykg4ea!rnf_~*X(t6r^}R$kGJUZTvIkbU6E?$max2Mu1CtVqYzdVoRb zGhe8_-AhMr#YpfHIfhJ$?p2@HvfX;K+Nl4L=b+M}90^h1rTQ1ocx6%ArGP=`3(uwc zyXUp-UaJ$;*DEFyRy#F>Lf9{pd$nqNb7j)eAmwM92DNk>&NdvG6m2!1ZCaEeA?nvY zs_km+WIMI)cBkH^G-Wkj>Dnj8Lj0bWl{&TR&MPK(X@kG4iZv*R_}NB(Q*S} zM}w4KoAwUcjaoVhOV_3W6S978RfQt0TDrdBNQi#vrQJcZzTMhcqPt>pZ*@HoQ6c?d zZ+5Kn+P(fJy2WHgr3?jx*W(ua z;b4$?h;MrJ{aWjwm+eLoC4$KWMd5MdILQ5de||Bh+e{Y~{g2H2^C%mRv%~X~ z6WTdAAO6IP)xqUGbqBR3NF-pA|8RY0t~ z2#)ELu*eF*ru*u25IxZ_s~q<)vi{*AU)vItBnQyRqlpLCl<>ozrDOTnP4U|mVgM{G~dyTDTA(mYV9-b?*xfvLK<^(3dpx}a<;|C^eblMTuw{E6)44T zY>H1H@b7u{AM|#={ek&Mu$Xm&AORP5x<77fC7>s{_P!I;uOjK7jR$UR_k+nrZ!-h~v5l$U84 z7=-RIq5YljS%OHippHizC53{>LnhMQt3Lgn*Rm_-oLp94qGM@GrM~}`S4rzhDH^11 zAI;xZ{&3Lh)zqk*`Aw4FD6sJwqX2$Chws;$_5CUr5Dd8$AP@ivB6o6;W~<5DR>@*+ zte`Q#KVtai!G5h1EZIr2aZ&^@NPT>CPPc2%E42=vrIjRv329uFQ$W6H$*mt*3QIb> zF_<9Wer~z_`O$Dl`)kyx(vcbw@cARbMg|7*qme*E{fP}UHvi4&q~x5QyQ~`l0 zc{oTt#t+SR+qHTlT>BDKd4MF;K!jirx1H7to?7e0P2(W-5N4UU?KWD$a;2bi3Pd7i zh6gcMYZ$S;YGXHxB3HK72$`!yX$6FPbOWNA3DF?S=$Hl>biFJCA_QG!W!w;Gm94BC z3^I?7hcp#L_fxC!Cv`rK)!rOd?j%ygFnJ{fgVd)?>SQ>ZFR~Hc49e6bxihKe@gVq6 z3D#*ar*`kDr~LXeeqpp=N=G4F)It`7bj*S;XM^c%t(c{F5PXt|+1vhz=}GF86_Hao z$o(>uqaEviIzO9c^gIu3=x4HmMaQK+4X}`pVmmoGp%Y6?cAeN-+;X|8Di@oRGq@FU z(fYz#v755hg)hUj)bCc!>d3j4RC0e zdw<4LNicF{=+hhn{4Iy4dW2;G!MHDmD+th^SoFzkz|9uS@P}m02*H2qAMzn&39x2F z;MsuJHD$nx0WiEgQa2f{>tzE08eWddR0*3|LAt5ZU@|@H^Xx2GsAGv|2(VTcl8Gs? z{sj?53yDPl`zw-MoG*r>xw`4jOxadyFKgRsNU>Yz1ECdX&K%|&+7?ewZn~y%B^*|K z;evZsBn((_YQYgMHNbMA{n_#4NF6q<&~B1;wNvlXe7D}k%yQd`t(k6cW;v!)unY>> zuOYibBkHWWy-ic>*;b?4{EKOu zXiF{d&@ka10@WIgdb?ZaBYa8sGUajygUo%%>{jcIOdW4vk&_HmQ#v^fLcfAg{aLfs zsj2V!>1}bl z^$u;aR(bHC!;@8TZ!Lfl?9>U1pTtUsnxy!5VR|6Qieux0iGmW%qAm)Rs#`#JedBnRv6o1ahVVvwVY%3iO> zJ+NYHGTI{s@GS6=X|?YD#?>?uYLA&|>MOk(?RRSggGC03indD zU~$a^H4+{L=vx-8x=6f(AQ;5OY=Z&(9^gAWoqF@2%WG1>(sn|?p&;_m6KS@3)#qVX zK+pq8>o^*uK6X;iSsoJ%NmB~X-8k$4z`M;>_n@tsb|xU`tR)0I7-Ha(`&l(uxG0z0 z8Uy$p#G+viy!bVapiN1{z=9xvar%(60ymAoi<%wNxIly}!=Sz}h-O_Px@htEBfv?q-wOnyvxrgrthdImQ6$f~i zsJk@4+(4pg4B*b|2VK7ESI+B-0yOO2-m5n@kQogohIfJ^ZKZPh_MXB34yUMNDa_%e zoT4c}qxz-g_hxmAD&HD+O{wbFhoyvQ0*G3~4G94TA+)^8h)#`;i!+avYI$=ML{P+b zX!}5eZ_X)I#4HE+yS8f6AGfx-fMCN)T)8t|?Wb4JL%gcXyP68%zj~&+?ao8w}v6 zi*`5CA=eb3k?Z$b>NrubU!hd4cO*z4*Q+lMsCuYw^KG=Ha=j0O5ZqMX>1?3N))b(T zG3$+PP-aUdufYI*-_|_!X1mjRM)fBj83~rJ_=JR0R zYB~344D7xM_lU2RaU*R#0`&)@_54~HRAu$9YHCrSn99ZpK(%q?Zcb9XC#>DVu zm1p&maD@rsji-A-Pqq}?U;xLUt?{(kebwas@KS>|fFJo%eqH#68P@+ z2C4({zTyDyvSo84W0i)+0FIiSHUaX9sMFo-fsPawJHg>qOOat=DQb=n5NFuu65Ed>DjK zxSH{NW~stuIlv<=nzgu-St>06f&kKjK99$rrP9KYAc0;QeUa+Lmg=Q>EXbh1H8)e> z3?_oNs!iUTDpla<@;|}=?($G;>tL66Vaw$q!vWqornTLzvr1T!ur9iuRS=e9@fOG(>V z1C!gnU)w+@yxCG1*zUoDdG?ZyQPcG?oGPGAZo@UNqV-*8#C02zd5~H;Lj>}DbNjP*UP4W2EqP3@Am@#l+2zA1Gr~BUCYO3?aNxPK@f12!b_T> z@>jCURSJp%G!|!CZ7LLMxu5Y%Ezaa9h#-Tup4U2bc~ya)t{y}jR=l(#naRQ z4|2$|`fGKaAB#_^ESsYs0*7^~&1YPol*0@LaMY%q+Wz()?*^5sO)V#Zr+S=urz~D^ zfJbR2Rr)xnkxG?jM}h=uR2r`Ls=@xFQZ*_-5I|Auw1UBCsiLMSK*K%Vy@Pl@qm+9b z2@)u9s)_4uu)qa8$e}EBquUfql?8(V94XQ51S@}~QbJRJc6N96H!=3@YD@(0RW~vB zN%`En2@3hY+v`L=FO~lRg7xsay1|xJ5T(4XDL^Cts}G~gE=%QqM}h=eWE$h`SDUYB z!wDa9lxmTE7=%z!_g?n4g6&VGYEsJy@dw+DT6F`<3YHV$o7G-WxJp@nU^u{|c+t+G z4)=elYQbOt$5{SF>!7hi7iQ>MY2r?-#v`mr(rQ7aXswVhSm|)LVB%vW--*fCPJ;o8+nDI?aA+3d8HkY`8c*n`iyEbQY?A7`(VCI3Wm@&an8SKT3ch|8?S5uh084 zsvriz<3xg!uYfJn_sB5dR|s=B>c1I0J=7Oo?$n>rup*1reFeuffnz2tW5WoS2>uU$ zti6gYD4PgLFyz04(fAcjZm5&bQT$gNxyGI;ppxby!Rdq^L4O+EbRl@Bma|MbTZM-apYed&nhQFp$Qww(#R8m@Fu+4Y{9zo3 zUs@~4U@VpiUG-6Ze{JA&ey4p)vu#dBb<1hT+pk|QOHqC$&mjl50lGxtRXD32`c@Z zwN&4sVZax|@tmI5QWyEq^Ha1_JbPAa);iS!ukxWs3z89Ej)n9i1R&|{7G0%C#h1^Z z3ho~PBNWYnDYJ1%4N&!c+TF~n&Nbqd z10nYS?xqZb$Bq5&z2MS95W)ll4pL9>LnB4Qs28nHa8cNDfV0PC6wEZy*I(O|? z+k4ec^j@SOH4-Wg1&uq+{FH}0$9 ze7~rmtC@&{;eZYw?PPQXR=_XkBaoo*v9*C(JLVoiUQJl9C?Ma<$yw|j!RkPoZ&^@z zz*J%{2`Z?iI)(-%KR&Te`S@^^+t!-KcJz>nVCg#%6$?TvP=nCNYQdly?2su}gLp9L zpzNuy%Is1~$HbtZfwU)$eL5LjrHO5phs&kCPfID$<1n-@DR_|Z%MatDIAVC2+x!J0{Z1cLeTu!zi@KGK+)t&lF)w-~>FIOIO7F6IT zdj6c2==uK8a()5{3TQ#%I;C6-!s`>{C;e$w-EZ^b80GSl2SY62r&rXLhsj;ePar|z z?pc2}Kc)9s@Yao=Wd+HN;JWLBKfr>>wZy}tPcL7d$=|TF;laD1{|;Xr6)bB8ME}iE z!wg>rEzb1c1--8Ig4a90D;#m}?M`E5_;hD+EB%K%pPbQ)M(S;GHQ9eg&(vo64_5F6 zs|-2C(i6N}k|Tl$ z=0wOnIHTM_E3P}wv+6;QP6RdiIVnk9r3gkSWP8ak`u)2szkTx;lP z7UJXOuV~7yWd70|@V#`|J9t)WQ~#aSsU_p#SSg(s?UuUuej_?yLFZv!Ug&klXSHZY zoS?In%Fa0qN?yrqwxY6MveZ}-G#=%#X||kC{XUmq(36UeM}roNkGjmArBCVjXi`!m zs*_7=Xc9E;=RQ+sYG`qgMMN;=lyVqQQ1QG)2W!H6>`KPOl2RIU(B(NVnPoK$2^wAw zqnpDH=xBXCNcoaE%%ef;NuDy@)^0Cr?e5Znbsj6hDXmoUFdpP(;!yC*#rF(k!TWzKS$T`-&-ezB*`z(J1XJgF-Cs(OZFP zDL%{Qqsd~PWh~3CSZt)Hg9bB|$G=gJFr3lWwUO!YN5EWaUfFK!(6lX8l+A;n(LCYs!A|=CZy_O@t_BU4wTrVYBxL_cb>G@{TL{>9tWUbVRy%Zx zV2vbj3Me7H*QsuR4hraZNxk+m+pacy+jO@m?~DklJI{EA0sofex9BD%evVgg9w2}l z2FNNWlBBvQD161dSZ?tkV1HuR^;Sq09Pr^r8w9x48`Qm}%UoGCP}m!m0kZW*vqd+T z9&mJFZvXN#WPkzyssr-1J4RtM)8yM*1E0rCxF zcksr&U=o;T4)1w;o8ww!DL1unjxz{YYJJe^M)#o=_JL)9Y|~C(3_#0-%)f=x&QSuo z>Nvls1`}6>>5dZ6)nzd1)u{DscNEa?o7_Q%LDlOf(GXwI4d&Uz2SLN;mjkt;$;>aD zUkn1=nXHi< zBbb?nz^MmoQw;&sd!+cRL$AL#ThuEL5B?VG<#7%aRN2tJK?9_{}3n?tH}dU zG7e8S<0FMh^Me?a^wCq#M=YOyr@rxfh$Zu><{$5p8ZWGWcYGL0Y_WAM3(J1LD%|R?!dHY=uhmvWnFyOPa-miA~Qe4RxXbu!uT6g#AyS$ArnGOa74b^v| zV-Yl(4u%}X`c4i3uIfYB;})z86zfBP0IIQetKJMZlohqsBEVH613ICRXc>!*3~~m@ z#t-pyLQy{$0;t9h<~$X1Z&5#31h}e?&{}d%t5_@UQ$RPq*ohXCiu%G3Kvg~9mU>c| z4_%7&fGq$_(X;G(rmp0V~S3DM*qwyeMn_R4BZuV-OI#@_(lBy& z(KKY61x%?{6HKj6*!&kQ)j5S*+@sUWtUWDiu?B!?YULiytA!7q6s?uP0NLc{UWe`- zV&)cYNeuy1liyx+)-KT&0qzsZZ|zpM{*s=hr%irpBUrTLF4($26ul0+ga)<8{QD+t z^`rS}<|e_$qO=%b&{DHEUd-t0a5GM^*_)WPL@807msSeu_0M>mmQ-(o%^ztOdOXA} z$RBPSg+F#Koj)86YI&M<+tn9M)$0$kM;TB0EGRv6o;2U?9JHUZd?;8{kDTbCmg%%; zFt;Hcje?G<&)S`OD{DXN@Xf8o>a&~yvT8}qr=1qP=FX2L6>CWu27G7vnyX(L9<6@0 zqoZfVR=-Sm*s5ybcD6%@rh;2Ii}lwWf^(a#7uBFkT$F1O;A-DePhN5Pee(r#g=28C zy1YFcE)^w%0kZ0!&}B5w>U^2CSZi+qV5)Uc`Y1pa%?T#NhGuVy!#~pqjWx zxu9s=H2_T2qwMr(v&~Me)~2}??$%;GO3s0T>iy|&o;6xq!M4X@y+5AQ`0d*@?M=<0%me?vSEO%^9kuC>gR&_B!_^l z{Y)Q6Z6B;s3 zJqXy!;unc6z{M;Efl+DCBt2HcYLkLgO9-e@$FeY$^(GeB0Y;*0fKMI9VGH8y@(?e#jDUIXMaS;fZ23dS2JT!BeB8{%A2D@N?_MMoAU`rt&mh zSamXA%rbRRYvGGRDLiICIR^^L>Z9}7@o>fxv6$5s0H&&g=ziX5e{ss7#mY4ZoceZr zJ{qk>H3XkJ7{49PCgU}zAb_gsAp6-N!xpQ990FXGT6C&vy*y?CV5-y_4ab8JS}e6d z09BQ)=#uDSyH<5@@KnsF{WbHc1%UZCnz=Zw%+IIlzSDVjJ|3!@mNRujLtNej*DZsH zLZ`~WDm+Y46`uO7Dx`^$UaZ0kK+sSLt-e|>p+Nxk8c{>yZwl>BR-r-rT+xskhZl4? za)z?yH{~miec|F&0wEEW0HOK7*QAOtJ2_@$R&Z7>C1y!bVKEz=oY0xJ;oCtrJmz(J z$(V5IUs6 zEfcZ)30Oj^o!ss`L)y2AR!s2=WH_J&Rsh_HF3G%d@(p< zskyeGCPFaIK<2h1Cb@P7vP_76j)Zp^$owGa?h9_f0w|q>92LT!PKQTtMgw;Tu{%fR zx3!WyWH3f`2{P2&t3TUQ&m?V7GeSc1AwAeO*Voz86|Y%hGq9l5bqEv71Q2TX+)tI- z%YD9vBbXX>;bSR9gU;>gWIlY4aR$qwf=18;HVTXb{D*%&U;BMNjc~vjU8~H@q#oL0 zI{*DQ-yBblsBe0)IGv0uliBNUzWWBF_>LKeos0 zD@HWoLA*&?J1u&3l_$SoVC@-c0bqVeU-38>^I$#CJBsv7ZBE**276fqQ;?p89>lkj zN4l7mc@9@Tq^*qM1GvR}XaT-;{D#hA*6lkV-XiPv59ocB=$;$FgrMiboZ;KZceE6< zvFmL7m~?12#8$XrNiewgECj)~?wu84M*7vF+LNAJ8?9{bmXpm5h zYMoB74Rh^UM**Q0<(f`U?X6_>&f2-gGFNCu$E7x)shLYPyIWCpx3;EbLh}n(mTZaa z)}N{4o#Dj-f_FR}DOoB#F0`Y3+of%+{ABFf`PLwz7?sTKiz?roymrad#HD)Aspe<- zc5OXPgdQ&`S)J~VYSw#vlj3?gC}%>`^QpcOCEKD+Lz{}DM}(f&R+?|O_v($EPOyu8 zjkYqNLN|(Mx7OI*Y&&luk#E-Es0k>Zf`S>Egp^NPqC~Fb zvrbtjgFOAx6wV6D+E~#AK$)}~14ia~Clve@`O4LhR z3@Wvze)jl)E-R(yUV}4OqJAzxY_B?ngBrC>^mV&a+pWJ0-t80h(wK_FfKGXgexM_< z6)qtOmLGNKJQ6u4!H=9&lCL@7-=0s7-V7F%>Motd<$YL5%VYwZ2ry8BPuD}U0#cf< zK;YlW?WboJiuY}j5zr(k+~o>CusBHS!=(~Gq+&s{rwJJp??PF8L5$**#$;lZHu&?cJwO0P7tQX;9%k z9guBp7w^NxG9W<#B}IKsPdN4XaHCvF$yq6tfBp7fzWW#Eu<|N~1(nZi$|(I#^+iTE z!R~gd^oA`{6U>|?ie=1%>X(7)ztV+b8Le$mSD6dfFW>mGLYQHpjl8(GUDvnzt2_Bv zWXt76hJzN$m-^B~k13TaUmgrPkF68bS8B2@qlx_Bkvz$)R-E+%AoTv;>ecDyxkmPU zKT{P{t=G-yhGKQAceRmi2e&nJOQqx`03BJBFv|6;au(v@N~m^hbUvnJ3C&^9L76%2&$Hq5?IuQ_4h4-T^FNPh7UR20 zyV~j2=-sbIGwLHs7CJ4(jNQ^mNPfyCcWT>>-m7+re(7?}oC#4EPa~e;P4?r|ig|6X3{4PSIA}T2eDd&O(kw<|@95qQ@xI&4?=^y6v zQH6Fw(+#XUweEJO-tN`u>J_?@VW+!S{jo+pk9y-Ec^zWD0Kf0xE$#APSzS_hM*@x% zi*)F6;Cd&xVWO0XBSGYI9TUni%^Gd&pgY%Se^(aQK7!py++|53L~p6z?p3?gthRZJ zBsgfmbQ~l?*S2@~W}`A_4FURBu)0ZGU+5la24if0Tq#DTo~|) zGa&Gq;A}zUwI(qlaJR{il9T}}2Ee)ys;G6ljkkP#u4p05DM|Qu%==~G-^G^q8r`>i z?XnEqP+<98B&7a0<9NwJMwoNJSt7taUtYjp7qunWD0Aiw42J{FfCjNob1_QS+Orlt9Iv{Y%)gQul30%OAgF6e%2;Gi+mMf%Ph}Tp+K+?&U7))uVMr$#iY(D+@}*!L%{{_^q6i3qeo+6(2R zr6Rn=T1O;rv!a;r1YbuaPx41L$-C5#Zq%}!y^OXoup%Ov4GEH+!{D?hTuSv-BQeP| zY+B6WAooDYwL7g|i{?ZUB~mh<=t~7C$moWjf5+3QXu}_}AQZ=k>#P-@JVWR@z}Y}W zh-HSNbpQh)Cc0+!zo8lVdbl~iXw97BEf+McK8xB~f|dtCo>p;1S30eDU8f7LAMv-} z2A%Vwg*SpBMky&?>8&Z1*Lx;=oX_ZXhe5^UjI4SP9K|V|S_vNF#sqDDaASf#4}!Ww zO})(e?*xxh3l4B8 zm>aGvr$YS8`J%t5sPo2|x*@f`bPesP(V#UrsJOPzEfczbm-4xqJb%`qlc1`6hfAq#!QA{x*GF{NlJr61-K({I zV42YUhm;SRtsV`Z$q~&S&C~4Av*tVxNVfB=bVEu27X3PHQAVpd2U~j67R!(O>n4dB zOy_7=k*on*ySvdXHfz^_fI|7JRQxF?#t%YD>iw0;;Hc0}`kt<@)(gLF+NZ~xyS07K z(XirIDG$*5Tx#_>x&uS9X=tSrd@w9Xmd5TYYJd6GinU9lWkNUE3gnL}`qK<+*TXp$ z>d8EhGp)Y%+Ib#OD4P^lJG5+G>s6oW$FpD3%73`yy?BbR0I#%QzeP9MXK}t?+X5d9 z3yk*zQ@gMBqxcv1{t_sZ@96SI?=K{tE0;`|@#2+pz`y7CrU%Iz6Ui)7tN;=;?n9%# zzkkqEM~7G|AsGWiA~^~wE+$RN8BxNNiismd8r^2KO^?a)Dz}t|BSGV~@fO|l72VV# zIrJ2G3Ydt#y&1Z}fc^<=ryev*W65%MWVwPw)MJq*C5Rh-d8~gND z8FPnZQ8sdirhx5o$^K^2(O@EaT#!oTL4yI^`6ap*sFYtc1#FiC4}xv(rBYKtK(bj|EDIvQ~-FbeeR|$_~h7z%Nw;KF-S}C@s#O&?8&e}ey?ToJGWeIjb<6KoaGt=dT#lPJ?@rrmMcocR^vTpcqz7~#O(0x;&N<7iP_;b zS>@P@60_<4gbnyaQDXLsmmA219Ysm8c~_#GPhPxClzUR-H=~wi=hvaS{M`*ZSEbmR z68WSXHpu1JsTR53ecs~-eao>GC9?a)M#_$+#O#ffofm%DaW&x!nkVI*&Qdj@!Nitt zq-4HGmduwM@wlc$cE8++$2BEpZ^S1reV>@o|G|bv|2YS?KhPr-`rKP>@h6icyBGL4 zg|ndJ;*nT6C_alp8o_FTnPH&M^JxJ;8pUTA7%GYdz14XToZ>AN3(EoD%wUkTn|JUd zQG9m6CqcudM5|q;tC?BrS}G2f1O6j==x;cFUFpw{hQn+$SS$v!Ia86W-5Z8om`w1X z_JpfV-VJ6){rQ0DNfxx1>N#Rsk>2^*uwqVxBGu^H1INSH!{Bio$$p$TY8C`OCQ^{GO%9Jcx^bbcoCzOjz&VmZnnmWeQ^YPK*yuTO* zFE2`VvBt^b)1XB4npS#uN{9UB)BX{UkYv+MEabtU^Y7>9htt{QXfU5ws#`5Od~TK^ zX=8M~r59Yc8`a=$?3aSYy_{;wa{l)!m6TOmwMOg3m0Pt+1y=o?=PUC%t+`^h`l9-Z zuIOm(XaCyTVl~k7wLG<4V}(U_uZ=mvmPPZA8?h*%0gJwleblVIQ0vxosF*i8k|T9_ zwh6P5b&d~*4S$=qf%dp<)6VnkS*I0TM|rS`WKx!J3E1;x!k$(}m+S4c_;Gs4%I)PI zap;u(PK~Z8-=hsn)>M{V*VB*C(0|~?pJw)(2f=L*l6HD|v_XX0FFiH&s@AHSOtN!i zxpIo0vZ7AsJg&})6dhLlJI@!F*XxoKx68ee=EIV^o+Z&;q>>GK%Z1s6q<`b-(3BXx za70({tZ2)6YZd)v3W)WuJZtFwpH6RA?R=-@!xxFtFL5`T#uy&ZJ~yAhn= z-Bs^s+A@_b-{(DG|t`pPzlCc+!6^&<2#{d%)~(9>t$gLZJe zT36{aH1xmXzRt+mOAKhPRR)v+oDB>7dcXTZjof($V7+=DM5s~kY}`MuR1bD&V};%% zOM4ny`kZ)mr@g(OJ^SaU`~<5gqbsH@YXW=`WB4}ujT@71tfxNyrKW$E@lz#|&4ijN z^^FpMcVq^A&r0bP81%g}h}y}e9%|4Pe7|F+hzhJE-xxH!vcd?eDZ{-pn=-n zUZHH*6r#fv>SJA!K)k$&272=J`JFT5*UJr|hbg0SD{AKic7P3kJc-QMuRg2u-5jE> z&2nu6gy3Czs{U{?qL<{)vglQE$&|MVZmRA81&t^4ynH3g4rhb@o9Tom)lMgqH(ADV zyQJSv6swcOLGGcEJ08xbqy9xgOEQJWwKxkx4~)>@{n22Wij&BFEKUpsnNN)j`E4-k zA1&yy`b3;06XHBhF%N=wjNp86JebXbbds$9aUF*N{^krc(Va)g7Nan<|DR80@_6_CQNaumRCsdVTc4o^n?*PJcc z=H@4Zg8)sn3ZbXNpZr!e^OXmr{i9|wy)MJ>-Mfa}WpcrspO z?`E|8lBu{IO^*2zOwr0a#e<;ETg!5A(Y)nzAfRhl^~HI-I99ZV^)SHSR9QE!k_0bx ztAMV5UiQ{vy7fu&B)*26$a{n9tQ)+}V6_5oDyIRYwGalrCm;gXd`+k)oM3 zrvR?qL`%51+el}S2vuS^E%2Ktc&vOdk#wofT z=1p*6r&tESx*rr7T(lpg0YGX$t4}i3x8>#*^|OZoUN?yPb1J@*8I5VOqyEt;&nrb6 z#1s#Lx;mhd;NoO5J7eiuv^sDQppB~tJsKV!4|%7ju&Z(m@E@z9l;|N!Zm;u8l0^V} zU1R5b0{dyfuJe?_2S7e&R2-Pk3h8QgdZF`0sv};snhj8}Tl?1xPg%Yw>R*chR`+1& zv*DOgi}qj)0Z`aV!%;>pVXHy_t9y%!Q<|AMj+@J(y+xk`0iBetu^bK0hTQ(5Ng1FZ zqbt}{x20$W3kJaVRAI3n#vYRFo%2f~13^Nk!Mpx!oEqjAO#`0;0iAc=4acOuR^G7) zV4qO`f7~CBFDfU)(LhZeW|Q&gf=LL@&pV3lySu+Q6Powj_Y|2!y4{JX3HHpn@LUZv z=uq5d%7O~^C+)U6`@xch;A$mMtXL8WNs5~J9&3#(YJvd-!ZR@kgUkc`>{;_5OT
a z;t>|=kC=L++IdzBF8&hbBuddZZ9#+9=Ul6$uDnmgQc|a>ESV7Wkx=FSb&oiul*{`! z!b1H^7H4`5CTm}0b2Tu{cqc?~;l`4*4WLl|HCL|FCB@|M?PVETumHbIKZS-BkC_$b zs{Nqykkt0+^maI?QJv`3E$wIg@S@=0$&x545;VTx8uSo(rcxlf0zlI3NJmTU0L+=t z<(}+P9ksLlf}gZ4?@5P)8jmGy@uL?#QbneGEIAXpK`i&_DYdXdS|gUgK`n@-dNFLn zX{leha!lwxWO=AZG2G=>W=gtR>C9tcP~t6{`I7EzFgwXM)Ut)tmDN@5s-CnPq9d!6Zkn8G#30>Z|(LU)OwAF1DQIyN~ zZ6YkxKV@ZXIL~PDayA(rv%Do4^Q3Ds4+up*7NH;f>4G-B@HwvXW09N(Jsv}vvCqy1 zXXn9)zkCcmAQX9hO><(S%=?wU7*@W{45`rm2bP}Z!N=@$FruTOm3sU657cg`ii`I- z1RGhG)SW8?U=jB}t-8F==48-lLpjU?LXnS$FeT&rz5I9xG-y3Gla=a}vF%!^-Uo}D zq{7fMrwU>QMD9{XN`SSm_64O*Y2wA7>KEM}6aiIsYq2+glOO`ONurjrlq zAW(2Kn52qN2`8{nzsuG64eNrLXB|9DLekrH!zn*U;`|YFXW1O-V2H~dFD|_*pH31? zaVMjqIN*Qf^C`bqcd{i3C8@eo3Dt|J(7x|!AJE%~L8%t3a3rH=QBZjtsYIDyGB`^` z%_y;)e@mtL` zFMf))N(nmC)6d$lS(p3aiK0PAo7Ojq=VM6bd#pKOkT&eE2gSP-BHH{8x63wFkea}PF zd$PfkwUUZC$u}s7!2a&5CO@Z9%6?4&`i8Z?$EpIslD`S(`z60D@HU{aMamHeA%l^Mg<4>TPC4*YV-;T zarLYTf51Ncn~Z*j6H|QVR;D1OS4-T^obu&VIG?W6(NF7WAShI1(gm8L#~zPKz>S930?n?G(ey)K1AP zTkCXa#<%rj@RCuPEbF0QzjeRtB&|CezOIKV$J32Z-(y(Ae7glWuR5VCcxdTM9` zb*;q&@WxiB8a%yRrXsf(z-<|5)OLH_z4|V%&dZd6oCJwSCKcQlaXLr__F*~%IEZ}= zvEU*$$@n#vAPB(DQQdAFfpU%l2@(uw%x9HxiiQAeD>b_0Ox=>eQnE~?1`hCc(A4Cs ze`N+ugaFhgBu#N|CLtXN0=D?jYee*1Shu!*J(H6lVJqS0!TwgzmXxU{Ee3EnDAR2r z&x>VpdJ`ZB*kodMJq4aZCP9oDyZmEg=tbHZOHH(aLH_2;M|1+wogjYjL->&li@;onNL} zuo%E?!uINoU^iBogf$ePZJpnHMf*rG<>b%Tm#Om^3_^A;NPkyMbUvGIyPjW+kDd+2bU)8x zGV6tBwk3;Dnqy}DmLVbfxe?tmw{h&M`@`vWm`GK!P7|u8n2`OH$?gwm^Ve}CD%pRr zMARcf@{W<*rd>yok|g~?B?p4QudD!_W1k!Sox%KQHk_uCQE)|_!FkEJy_5_S9$FJ7 zGdh+ZOh%y?a?i#7x86DM&WF)nAD3g;Q@xV$f%aoGZFH-Sg5VCGtUg*lW zjng3Yg^AO%!J<1@tjHgdmDn(DNhpNx8R16%?C`iBC77g-5XyNdh}hWe56%t;vkk{C z35|qRMY3_>1Qf#7tzLcOx6ftV>Y*TFYfJOZi&9nQz7p^~hJ12J+{E)P) zoyoU=!Vwn=1j|*;tA4WGAC00HMPxZHRB)(BLp3?i`#csUHGqP~EgO&B;keH?0!yY# z;xsTE&{cDH}vStBa);xty0tpI8hvuX+Se(!J=Jj$ua;Q+Fr7!IZqESx6p`h`| zdddt8_G;Td()mI*NRrG5#Oc9#P(!Ns>qVrcy4|4JV`@jKe2z%Fzu6^vAT%TwND* z++Xx7=SRocciGeIH!Ko@>d=SiI?Debr$Y2g_VswE#FJMcHZQ+*#Ye@`0UHKI$o_nr3HlEf|(?0M~U)$f*Q2 zCh4#2eGN>qNGvrZAqg&IKjX4=NjxpkMhAZc2YWduq3od{{)7jb(`{-ra^MxR;9MQ2 zB%~b}!Vk{RhsPDQn$vC5Vr#b3r<|^U*GPux~*W1 zT(D1QnOqKp;(e~z+~(O&(7GAsn`jk~Ag1N^~0T|Ffe@E9~)8(?R zGuWO@-e2^n!_AZgtr9@GG~o~Q3v()j@8c)=SN_09kS_pWf;kOB5AZwp)tp65u$=*f zw9?!q)nojyGdLN{2IHf6VnZ;<0)(k?BI5QLU4k?lysqs1SbLS}_v~ujtV5@{SPTV? zoaGqFWlX4k!Bh`A9a^na525YWd9P2BX^d8^%c)T2@wLC9#X!CTW1aZ=OsGEcDib4 zXrIZCOi)rM#N|X6dA$`c(?lpD|9Ibb54JM;lZlqgKM5#wzxHBUqx~4Q4($@mtTgwq zpf|Y0!wE3-ANcw&Yug9GTj7!xCGF*!r9laKRXKyU&eV6gXUpYP4+b4S@6f}>ombiO zY9n~yxP0F6iBP=j`B0sqVmU_8pIMS>8U+p1rYgd;wI~s%aU+uhTb$BK$7n_^~l`n0a-8U4cXLPN>PCYnaCOAr+a9vjpO)wn2z=$``Q&_jT-o2s=msjf(vv1D z>s{U_mW>?^2cyR{6}qa%XTPAM?Tsp3qgxNoI?8&dE2Moe)K!hk)YW^ftj3k~LRQFX zBJ?6JQ+KZ$MRjd2J1TVV`0;G;m>Y?{YQz4RI#cMxpeau8lDRMZ?2u~U7zTv1(J%Ce-aom%Edjf0YE6LY2g z+I}nOKgvek%d{*IYO2?tt2ODCyWJ`^#4K{MdVHB+&V(k9VYAik1>RgQh8DO?Ejr-7 zt{OY*&P!bTfbIrnzFe;q7#?Ew>HD)$<#=*dsqMFWG{DC44igk49x%EX;E#|QiN4(H z?Kd_o8Zu+i{YH~+x87(>Uj|HwK87pk2TLRcEfFBhxts{WU*WgY^U+A9t6c=n4$n`b zXL+7qz62cNmn(M4*dDzh5L$f&zGhl5^0xwC zo7tdc{yo~fe`7(IyDczxyQ-F}sJHyAmhI9}c3P6oT56$#&KRki(OE+?+r0Ic>LW5g z2qLp{(573T)J%I7nU2{%*u4EINtpaQfyuTU(gn=)ECB5as5i4V?@qklywPbcyQ?lP~)Tjgoxj5UrgA$2LG#C~x~sR_wWwFr&~tXo-qX$dc8Mws|4v}|e!bgn z(5|^1T@|$XS=GbMn;hxE*lz{K(kg34hccTxRdst9^X~tSO)EJ; zeRT!7mW#p6ipZbHseI<_e_Vw#b19hkf5}Wt%o6?IS7Kl=dn747)K{$TFYEGNLGg+7 z;7iFUf&%yIGy+m1308QnU=+c$V5Fp#Z__Pu_3dD5?G?20P6x*QvmiH8%XvV919}Z? z$tdz<^BFU#38N)NsGF>auAm6zLNM>21U|K)!fw-l-@GS1B^daBNDO?{>;<>*zq|tD zj0y~sl;>WRR)XtYTD#ijS1w*bd1hKLQj+_6H1R?U{M-EIqbtaLxe&~gbSVy+TP=F5 zCu`HpN}b=`dIepIKn;dUdYA`IdZeLC{j_bh5tFt|ZAZ&^SJ1;;q6))h9=3+Z7ZP5H zhnX4-m5hz_n@uzqp$g41A?@`P!PSet$YosUSbn6b3Oh%zl% zOI`S2Q|6Tz8|W1?_Qz)HMKe7}z7k^tJs2zLG3hy+u!6mU9+T67alc&Jc&fvVbCw+i zht6b+76uIye!bL$v%!4ce;ruS-c-Bo=rH6fWyrk$zH&-$UXAE|Bsx@`oecVPpqFg; zw_p6?uYRHa=kLfAY~Kl?ZhdK~6711w6aH#Co6w2>#W3*7!R1~N8{$d8l)noDTeoC` z_jIJ1&TMC4G6{MIAv5Wjq>$V!x+OHjdNOvqhn zSR{6-$KLiw>L7M_$b8ct^JHL>?z{W>%$D4X?09fA>eHoBWK?ErGv+nHN}kATD+OVu zuHe&VPR_D1wKL2%!N9DbZBT(hQBHHw7!BSJkEk|F`D{};ZK)W{``a*jE(Cp%nGDK2 zCg>=H$YdEv>Ap^na|kvn~2RetuPOBnJR3jX!c4gdX`{QRlcp9ZkNtCD;!I zMx^C{kh_PUDoYxF3?7^Kub0=z2p>sl7-SycXG(_llhJA^OG3f^JP;xwi-XkXKaGZm zl|MG>TUqCTwsz2)a?j}yUbr__u>VkljNDQrRPX1iDK)|V^^_V=P`Rt#-WrZiCY9bF z+tnVQGLa+}f}2?3FAK9O=YP35z4-mvmUE}ah9E&t6pH1u|yMO#5|;V zUC~hgDgW4Y8g69tDClq;NC@JDaDjk@!E@I$^DrfgfFMjhyCFR2MR70Rbe<$L4dr`pS{-mw3wX&?;;#W0|xv@{n@O4!PtTm{W?$pRv1t} z=+767De)`a&7w26&1nh&-i^MxPx7?Sp%N$9Z~@uEfWNNs!wEB4ki~4U7)~g#jp>sa z?}!Yp`QV4& zGPJ;G6N-^72;dJ6j}IADknbo6M-l?O8;5kQ*ZgQWWKcokAsiCN zLxpGs^1$=KQQ=&1I8>nmum%Bqm!L{8p&~4S7&xfTh2Y6F0uu<}PmU&|5mg&B zV&`TH`srTKKq5y%=dS)2sOXxf>LS_QYTCh)GJg4Hv2y7^3v?(d2AO z)eKG7vRowSp64M02?vD8gQLm#=zK<30WB(KFu-FYmOoR+&0E7r-cKy@0bXtR{h%&ninv&5-=upiv<-KxI z%`&|R$OHlMxeUa7l|b2juJ2+Zvt~zmwPo<36^ioIN}_37aE9jeBf@akfQ) z{lW2&*EfMefTALnovUkET=GcjEn#^`#ja(hqafj*_}7F0yk$S4TPLLiDx^SqVox zE6&xrK$pnT7z#r7U6=|*?u>RHu;g5EwSxkBVjFE(t6 z6M;EPeKMQ!He=I1QG6Kjt7Sf+n;_^e2%bq-oHBQqB3T3)FeX(}Xu6FT&<&Op&4zfY zq^KWcM`3fg!IF{-z>HL`(7&RNC#x|wm@6C~MttFtGcT_CN5KGZ#f4*zAj}ZJ!-Q1E z)W0z=JMkuegBg=)z?ekFJUSg5@hQa3WlY0fB~J4%{Mm~QifcB+KXd8ma)O!SV0p2% zvAWX2A^&+SuWF@m@@d63MF)`OL(pNsFI{*SfBTb6jjEUz4mRcmCIM4^z1)=3fqE2z zmx&cSdmN~cPco>$psyV#@=aJ}_BQSsr2s=#cqUa_Y~C|afkBD-lct`i&lmJDHdlW- zJWNPbS#yayYEMIzy$$kxS@tS%R`Ow1OJG_A!BA_F# zcb(OAL(kzkpQ~JP-;xWqI`iB03d=!#ocUC7JyEH))MoLz||u#oh!kFuI& z+4ZxJMndYIb4$fs^25YdOe4B*tKDg#kn@JtYBTqE9&Th^e`uX^A?nRyob<;>7qoqR zF$t!=*PlvYXh?hURcq66?pZ&+ITxZ{AyHqB!Ys6YA#qqpdb1a!39kaypS@5-2zhCF zHh-J0>()<8hK96P(b2a0cf9|(enn@P5c4t)EoCOUoa<+toSP6;)AE^0W>z1pFPd{9 z>NV8#l+*iklCIxSb2h}inl_r)T)(E(NJx3}Zf~it8diMk&%1#N!RyD9BlUV3OF_w0 zwh2~YleHEF_D2KS@yX|b1xp4x5aSvQsJG1zXwx9ApmDob)LGOMp7m!J->|^3N(ES` zJ+cAR>hO3$6QM<>zyeXmNNKYlxZ3QFF@awEp&cZ__(gD?Fb|!ObzsE#mJOn>4P+T( zMN`k?YVQK{a|eS$>aO|pH69daYAdQ}uI7R#V&}ed{@Px4Y&Ux4tQG1+`xma98ZQz6+ zu!!NuCJ&v3%d~qXBN4X4x5rPP)L1Z z91t%Lu4vYHw$worLIw$)JGzdcgL3oA@OaE8gapZy*aQ~<6GCT)!EU>Cg)|UC4|4;~ z7bn^8viXqrXje4V@Zid5&Jv_?Qm))@{K`t_#Q$%Hg2!;b45uS5*X?lT?_1 zOAsJGqLyIH_uotU04flNY7D5i^h>X)BXNQv;)i7#{ug-!PL9Tl!kri$h{H7o5xA~; z%|~ZEB?a9s8;p}J3hbNeN5k>-oOg}{`NRc`_yz}s>nCH{etX2X@k*>W!8qNbz`l7h znGrmk1e92hfSiv{U5eg3ne`L9S|thy$QAIZQ@D1rm{K8U&4ggvmCh;1t;7Qqh7%P8CSE`7&m#v2GJ_4qz(9fh5p}z#e`fXy znlBxQb2SFk4^PkfyqF1`pu%vbg5=1>8E>T|ND9M|3IgP9HF~S42e+fUJp{dY7B~{g zu~7R&2T1g<1zk}uXsi_Uu0K>28cR@-qZT{^YKUh#eN8(c$XARkGTj9YOn0BV1i7PB zX%%tuW;pm$a5zaY5x_$y)EpQQyX6Jpb*-SA<%eA+mTyy}-SIhjh;2n4HC{M@dOS zKyEBP^%Q6*RI1Cb=H+xiu7FRS!iRsFPxv~OphZ++7*|7_TlCjToYm$3NmcUm-+%KB zEjr9A(~HF^K_;`;-+cECvPqI#(ImjHzZqP-o6PuzM?vPW!I;%RIX2nxbTRpknJqYu zpu#XPH~`-qQO$Hj6%=196J!(@FyI3Rg=?dUI)2P77qmVm6lWU{z}IPM^>uj3mB8ON zSb#Ptu4-i`WX~v1jws;sh>sTv3a$&t;SL9d59xdb_q4=l3d6Yy0^}{zWjYy- zX~mG$2!f8gAC^n#`-dzPQrGD40F@0UBB*vuD2_KE5B&CM#s^d)unHA`H3;ClXXm5E zkS>CtZqq!h*90qKL2xb=prQFi7>KGRs=%Ww`c~|^Ljz9*4i7GcIR* znMu%j4I!(HFaps3EDUPb)Okg`Vy}7`KR69o@hG%n8unFIoE#`)f#yT~>rkC4w%On~ zI~$x$g3-(H@-EX#*s9!F;j*yqt28ii##(U8U&vaOQH(iO2iANv9xP^jvP>`orvtIL z8w{u)jEkSLq#&F~2=K0t$MKZEpux1kIMA-z*`us|LX~_H3UPs2~R@;0Ct_eq9;2GFKXFf+)|4I z`;!S>8?EljIv((g4+N7TUeG`zM?&XXV*XUnW|~lp9?Y6vSDp!*c|jhu!2+~F!RQaB z#qai_Ae`yl?R9NBJbF`nAY?*ussX{!Ps~r^!MGq5y`TvRgM`jUw8S6G=m@Gj9VlS? zS3qB%zIh!@+(?qp1mk3jg2gwcqy9oI+!ih82*>Gwd3f5M9A-a3Ek!fEI$VIaFyOCE zC()F!q}1q89Bn`Ve>9!UhkSr0Nk|naz$y%=*QQgteY$YR*o5L-0|NNEy&R1tq9lhT z?o}yjxkhb8}wO~3ZbzPe!f&9UA!Mm@5$#Dw89YKhk_l{33NqF!0U1C#0fcNqA zBC{6+FvkkEBjq8vwK)(X*QOUoqeI?`OR}&I6~HwJ;E$#kG+D)_azpaT=! z8|oeMx-p{zj%v1$IY3ZLA{@6AFxYyXww}$xI#^IU*kA$Npui^6%{oSL(@nU5ZehTG zG8?H9I2weziUbX}7nF;5Na%btJ0Ay!zXjP^2jXmvanw1@8uKbiK-Ga5)nGuqPS=0V z20@K1NKPA!lPwDDYx9A+IFKc#puCt+0a=3pzG;3EZetcq#<_qAyuv}@+Wd4dddrKD z#B?2svkeH~k7$oda3icF6;+@Bt1zIFxlx}^WUdMoaM=pnHQLWgkEj$*LLG{O4G0#0 zIHz?fh84_qsxSeRAV7XJKU++T7Z4SQLp27}>xx>UzO%t1vOM*?kzk9)hjZ0^DmaO+!f>?T2fIH1^N6z0 zcZ@2j>`X8YwkUY!gZZ2n6G4BGf^a4w!23{jl$oKD0zzRpQ9*$GSRrZ9Gc3L%J`Wk; zEf6Bt63>80vYviQCxENhb$sj9-}F8aUnLQApp8i?WI{j#ee2IlG+B!og$m&c1n|f6 z^FzDVz!Ftry$i_&+{aGjqxt!`U-)u99VkF63{1Z^zc@P#mhdGhszY(E0Reo2z>EH2 zFh?WksUlnmH!$Eo2=Dckl*kJ{F{lvW-OLZc`n8gz*MU>Hfx$Sd3kCA@oEDZ@1`&B$ zg$mgU1n>>=%(y=u^AWPZ(+J1l_|W06FZwfeXn+|ms8?;U0B%q){pMmYqDlL(1r~VS z1>}5(gTjr);7q?D#LSmC$A$~|76$xv8f}~ngDGl>b4;)RZct!<7@gS_G!iOIK&6Af zK;F_{&(Ei7YhZDYB+wPWAn}ziQ8~O=4Ac=Qx-w@(s}M|5un{8}8%RcQnD7NN!CXm` zGC;5nyxIVcULvpiR97R<(2%Db|9lh zxd1+One@ZxGG0l(r!5zp>!0krrjSFP;{|oE2^C=p1aDklywMK?GG9x|zX`_C76tYr z%ckv3bdUYf>10BkXeRXH@`d9RBc;kk5+|P!?jaLw z|A1glNXq74J8_qBseV+?OB_c>tqNpZpOG}c|3Sh8+R>a$-Ssl=+{eP{F5@nO1)%~N zmx3l^sgSYGf?vE?L}$TYa6xJ>2nn5!7LzvvzH3-8ouvcuIA{#0H}nsNKk*Kwq0bX1eGB}S`29IP>*-qh4Xx*nI6TS=>@I4WRF*ElGAq7~>ebK0!SG$e_t zG)&M~#Ui2e!J_z58U^88Zz=5>y->IaMhB9nRfpnK1A?I+8}Kphmty{qPkoFPy`vo3(6$C&z;T<`jC!h z2iFA&ypC|8f`K6#x82XqsQb!NR!}9gz)7Ks#zO7d`D_%9E(NJ!LUFzU0es8;L|=l# zVj*bD{jdoUa{-@A5J<(FtmINUY)Z;N5vx1ave|%EU4tAT*s9M%r{n;J;9VDFKBXt9 zc)i`YynE|{YkSj*mJG=U2s1gHn7wAaQ!VHk#e}4?CjjxkKIb!dg2mwTa}Lkv?mj#} z9~PcOS78DmL15p9ZwF((drdI*QehZULx8;Tu0K=nr}KRwg8BsE7#bhu7QgEUOL+o| zRhR%v5LkTu-Jt)5Ua4TkS}>@y!8q8W!2bB%;P7xZc^3}l1XIO%$UwmXA##mwf2B*J znEirU&xGP|0|NL4{e;%tgK?Q8Ep50EZeYM)e>Z=vo(ExuOB`>4akxc+eb2Hh?%a+) z&nr0G=)!x)Ro!Q_cVwit??Uaa`zCQAwV=Uv!Bb)u39ZNYu^E(PiS;`{-3^Gpc^jW` zFm!L>>u7a)>+*^lVN-H!k=mu(+x}>%o?K#?W6gAPOvLHh`{QW;i=gC~P%Qsh5WpY2 z53X(ytXEJFj`S{WxURko_bUmCiVYTWH43)g#gESD>5EW9FlibDPia+vjx?v|qtP0g zHh5AKXlOoGhSJG{!Jtwb4bJFhhaUZ#<*!$l=j0qh8)6hh1O0rR|H7An75CNGW-Io* zGI&qBshI_WKHl^~2aDp&q0sv*(o0?V+`K&EB3ZDZ{%NdEXVC_HbzP9hWa0)5ZCz&O zeZE;&SY{|#e4YL-vvO;Lg=mce`zHO!To%D{x?n=g1q}HX2ZaxR3J30j zj=c)Qxe5a0jh`lCx;5{l@Prb=aWr5SfBu(GrWe20m$0cjo&V?m`p3U~oMk3fS;pKX zNM3O4T$2YvY#wK3DXyaD45??7(bOTIQCV^2I{8IkmJEn)ubLhu&89=tEUmWHrQ zM}vUBkDt&DZrSiSylCmaUEU%Az%+6igq-8lS7X{WMXwnK1L?Ak<3tEPfnj>BaCSaj zWON#z&#Vgu1)#9#1xQFfz>jHj*U=lgxipw>7Zg+wn4E`$)Mxl1eK#YA4&K=hSe6&` zW55XoITW&=(hWiM-ZyRkqMIJ|JF#?z|8&A9LPtRM%yNW8GFHaJ1OK~kowG*(z^hU67dpDO(f+Q5RwnoPgN<=_oQU;3e$hNyqGh! zkOiR+C~L3`_}k0DL7l4zz}@T*PyT<}-n2`y<2cil1|+f6zM`;kRZHqEB^D`)edZGf z1SGUb00V%c*rPcykr9!Z!HNyB)Pmp8AG`nWn7RAw?q=>c(yreqog<<$?!C`z=KJoG zGl~qEYYn|P_n}W<5drEO`u?s4BkB72gj0*a8gN7a?)&A<)xYW=h`Y%=-8^}3Olyev zQgW`VsN_|L5*c=jF~EmrL4w_H@jG-PfoxJ4hFS&N0f2muA6?8}j+S$Gopxh1qBLH7+TNrK2@Hi#ej{WLUsbjh7qp=78mgj*FHibT`%3 zb(KfFm1)(xIVQvkn3SRgdLueAj;^me9vsXNXqetI#VEv8b% zaI}ka(M4@zX*1$f%(R5o|f3bc3JKPN(90 z07F3{uwcMim&ad>7qY$EH;+32kd)nCttNC192Lr={do6GMx&vD76AX1KSrw2NT^Xp z2#

nLwrlWiBn>GDSeb1F2Whm-YoO`U$Vjc|~M2?@0y!b8gJ+&f8&K^&Xg-3M{(6GZ#er6J$RSq4+ywmeU(0BhVCde4?j@aRp~k2zeFC31 zD;YWPphN8fpNqN5^VQ4?J~dxS8kRc4$4z#vM>ib$RC_1=8O^)ysb#X34WAz3j=%sJ z#_U`MhxkWz@sW2yq%6av`gH-241fUac#_*eJ8gNkxeSIQSBzpT1ST8_27!kGF)z<) z(?_jj9h8@IC=@?{%h^NpUPQq6i2Sk?slj0ZwMcx*o9`-_+AuGNz^-NL$b?!<=RCTQ zQbMb%9TBYH5Pui0a`%ra>*}d)hB1D4Ol|quINYbwg@*Qr;ssj%^s>tU!(nFE8ld^G zf|_wYvMKqCFgLZJ-KUkZlwnZ#ai%~XhD;Pjgm&W#S!aB6eK!=omZ_R#>k6>U9Cw5o_?>6?dsbsvA^;2Oe~8A>r*7 zGqw5D)a~s`+#Uy&*!J>cq?L)KBR6X5>Zw+K2rg7pLUtpwE_YX?d(;u#(m5RZvA?lj z*M@`#^*0g{YBv#+FUD$m!Z3BvU0gUCG-9pCzmDiMERilv!#`aKCK90)TNS*StJZQh z%tgYjS|yufq3LtOnhu~Tnvs^_ZLTHw<1k_p{&FZN+@Y=@O&^`bd)o67#iHRq_X-LH zje9}kz^mZq#bxuBN~=`KV9>eY&ikX*GMx`E5`tyOhmQ)34ejs;a{#}W;G46T&AssoM$ftwIG zpO59ZkY(_##&;m#V;t~?+1-o&n>S&e&lf>2!XOiai8f}b>kL|h$&(;(A9nBw(ib!_ zr%Fgmm0Am|34J76O9s_B=rp@4T)~+>>0tyl_v+dX1Y@11u)`BC# z3K`CVMaj`B6Jb&2e7u|e>X&EZU;o3@9fQ%gfC}HcO1)rJRQxsXr%?$kt#bbJU!BaC z#Hy&A%okGW^5qv#Pv=Wy6~6r9>FIoltU~2izdW5UkyTMSoiD%oWmmkMFu$BfR^iL9 z|KW7LL>5$Th5TBH6hn`plJNrw{QH9MTKXd28~TTxBAx~%cv1wqIPM+~R*lN6#ohU>1mI1z|El6AATy>8O>v}Mu7?z+j0k{YBhg%(ZHhy|O^2tLKKZZr45#a;9 z0)*P#_$sSisUvnRB^}_U6w^9%zLh(L2I>$EI(LLW-^%HFL+dksUb;iDx{BI(K1_vR zP)RA_{OS0#DIo(wEu{p0c)FATT8GZbQi9W|rUZU+vXl^D@Ft}SmJUI82PG<> z40B46Aww=FLho^Wm!A3-Wf6*&nz>${N+vY#N6o_u{^!jt!)$IONDmVaTDRy;(m3<~ z5lPU}R`nl4Bm-$aJtBz{@B=90)8YGjvY-FcpYJ{n_U9n*DK4^~M~m5o6fvdj4iQg- z64eX2(sq7%C8Z2g0Rd6^Gx9iSQLH;HK4e0jYif%1!l3{HAED-dK2@mYG$J(hF;x0+}&?Be8aeWd3Qpl|bIF1spl z!vS6bo?(E0i(e=<`WRN03$OzKd5~B{t;VakMIj^R@v_M zFJ`l6)3L0)46808#6?2~TO1Gmy zG{&uN3N*B0;@8q0&w|F|_?G(}e~Cn4sD<&JN)(a_%?I&q_na;%x|BU+Lys*YD$aQz z)KVyJw)BN zv-lk1OF36-=)ZNy1sGIPDAo##_D}>3Iw}3}ldJORi1zfC0ipI5Ilm}wA28Gos%DEA zfZv{6&f9iL@rOR*BLUF65lUU!;!F)g6Q*PX1c?Vp!e7@*TeW-V%EE(DVo4#syl^z7 zv%Gi(h^&7s*`!m@Ne-8#o?ZY#*F|w0FXE7(Vj*{S1sAie~WC9Fo53*FH{cIG0bQe^l;h4xft(u z>MVnICQI6XbvB-;8!{}x;J)-JBSDhg@i%#yvtgv%+oZ@>F-TzZPWA7bY-WhInSMKg z&5i;zY^Hgw-s!jqXNCZLBSawmb^@Cn1?aauS|<&|#^53XnE`AF3i?SJ+!B2b0&uXG zj#?8z++r^?fW76tp{-U6y5B*dEhU_eJ#c`(4Lq%&r0wH^Z)sSR`~ZSLNFj4dkMi8k zmYnD*1)6R*5{9>-nF4f(OnsY0OJwF(F@?aOpML)LgDv(HSRBxsD_T-C80{$`ywE2@LK!@DO?Lc94OKx-!fI|dw`I`5_S|X4czy^C=;hJ+>>~#=7WRPxMp?!GECAIBD99sIE%gh*;XvQY2zPzt8l^?(7rV^Fqh+f2!|DGx|Y<=!v31>4!myFO1kxGmEZF+AQeG zhmkvdUJivBj(rTYT(ye~3tUK&b$-f7grubw@d1?!29V}g7K*g-_3Dt|Gp&jD%Cexd zjHZ-6WH9(~FX?y-PNV}EbUsWv@%)?dqUM@mUtuLZkZTq0adp_3mz$?h2N&vhlkYU| zpidyR3@=opGO#KtFSdN}j!5*)DuD$RR~k~jqWhC+-&`#}TLu?Oe_!TL~d~Q2S8`O*%1oay6!7f-a7vMZ=L7l^Eldt7aKZoMGO&ljp?I-4oWpP~R|V5$hd8Z+`pqkzJ)r|sC>-cCitslL zInW%QOnqOPf&(as}C${<3G+L7_yBkmeb-OE6QsMkO^ zLYs1V)Lzj&F5%Dqxja&|a88Bl`zM6{T1VlP(PSyp=`gbwbAgx-^&_nZ!NrGlK!ajwO&J#jfsu3Ca2{Wi-vO%bk! z6S&=nK?Dd;sS8OzP3h<-{)Zr&IzaSsB1a796g`_))R7>wSJdD>6z5@>+U_0^Wi$_B zw;{HfPoAkWBut&HicUa5;tmd3y`put6P3b`_%fwKc-$p3e|LVEFZTRr2sRpZ;iF-} zgV2r1_SJ??3g`b7kz#0y_)mRsWfY)q`sd4MyYWJ@EfMa389QJAe>mAar=^#4V41se zfzG#Hs*_19gCE535;Yj4?ywY%)6p^;T3xD!w=GkLxk}D~z&#dNP*g!dHsB2_1Q-w< zktB$`!|zmv@hsUor>oIB7Z0%qUkjnW@le3v!DIFy9S()S5~+wFmESHFACFgmSS{A$>E~;C zI*g?`RBCA=6rUu;f12$-<~1r`oc~#87t3PXs-|K>^?p$ObiJhs^iO!qMuewjYN*u9 zX;69)l*o|Z(ShlulqKnvQUV99+d=EgFFyPHn@_$H9$89*QU)X_+=IfOs>#rjXDcEJ z1|7uDA3yuND%2J~ISop8f=7RxugbWw)XJql5d{t8T{=CE+kb1h4x=saCRU-cpvi^e ziik#)$b!nv5MJlhY?6LhsM!9A1NH}ChbE1?uw!(7pxxp! z^IJOp6|EW;+8;`7I*XG>KWpNa3As*j#f3W3-z6VcyWOtjp*?LWBe9_JDEP=vs2C4J z;UX3-qkN@v3J5)vcFWmvxmKI~+e$l-pl~aAM8DG>0O5&c`l|FKfWU_bZi|;ngl!&x z1O<3N#g4vUtj&V}0v{=h&oekx%1SJ#AZ78Blcp>MgdReT!%P*{ZJ`!G;Kxw&MbKC# zt+xEg(?xWuKCz&JmKFEwsLQjOQfJ3qDJT+hTg$3sLiOE{XVM$X-SdfBRAm|TD05GN zgeF=gFH#`n1F3DTk_-l&yEJyYoAHn>U71C<(1>{Z-{1d>zx)gSzyE1zAm zT5c&a#c4E|+NoK@<4H6{OzN;bUyN7s3Y$}CdTN)Sla)?Dr_l6NXg*MBs7SMxH5u0> zp`)pGI;Sl*Cr?413NLkRUeclCa>D8qA?vAKnv3-d)l4~srl&$v$0qGqk(u)pvFV^t z)FHd!on|MGO;7FAq%*NzgQlZ)Y3??(MD^r;dTN&@O@X|I6y&MUe5A^Qmu2>}bn&h$ z5ds#fGTm~(tD19ox(!e$-U)u5)7id!maT|N%g}}QFmDh<6f|x?L*Kn&>5y0Wi~;-I zz@Cihz8Bj0cgf4mX|;^-!`|M={V0&oyai2nwuVr$H0?`|CLRPn$`a>@pL|=c!5jBWEDhg^M+pWUq%@YJ3rJ-_)t1sC3K|Hx>Fi=e7a?Dc zmNY^lBB(9oBoAsRBlxMi_pg+*3|5q(r-0By=`fuw#;-;+L%dOwbCzM?np%c~7Gi6< zKF~=VCn*;q3K}REW|J#9n$%VEs6A#l(_FPb0j>E3WX8fKYLD8nqLK?xy8&z9?h+6&kgauEd$q%C@| zdnFISY)e}KRNc+1(1EBw^WSGr7jbG7Mej3y|OeVuH6gSK4@OF_FQbgLLH{70scx zbd^|8xgElbpX?^G_Gk+)kf87w3bg8cwq1_=sJq;SX&+_G+mUlcgd$2UI;XF!b=yj< zh=K;fjnWt|wiiWxTeyJ)1$gmnPHP)=#op#cL}`u1dUaX2(WVhm&_L^|82e~zT~$Xr zT;=5U%<9|f+uGTZ2TzbA-P5JMLc1+TCKgoC7Fvxr{jXI)>F4%m__EA%Ku7sbx6f|I zG849yzX4R?pQg4YeqP(Y9Xwpgy2G+lye!%Y0=tphR_o9S&Zi~XazaEwBZmFD=xH>D zy$6AhoVHr4&}qwQ4g)sQ{%Za0+%(DVl!UN7H8+{J>7CNa({>@vh1JpImCnV zinfA=I%;?S3g2m6N?VqJ9G6bqy6%3xc`dq$3*GlcX!|h225huxYB{{EO#>1X-U*?nbGK!oby1(aL#I}Izi7P}}$+RCk*1|{^P{4?$v2%)xqR0e|% z!fZEwKHHxp%s_$y>J?6Tv(t_J2pqH!Km71?V?Q|!N@%Unv(t>r1Q7UWQP9taO%eTV zEsDf~N(?V|DS0_1)0Uq71?ZjzCHTXxjQ4xBZ@$f+#DWUisr=+bJ+_E~#* zB+!nD37x8Rsdo9;*Xra=iING`7=CjaV50$Cd2e%L_(c{}V)*eBy*#I_oxcaFszJ-R zM7cIVgHg~xOPL}_6`XA?WzPXU#>K16Y|N(w3l|#WBC?=@5~ec0+}0mbbIS1IK(n#? z(Tj`v8nD>r+%QlPKdgx>G~`9v4d)CA-Jxk0ObFhZo-fa)H1bp4 z?_%ig^2a{u2nygg`T6DQP_hjpp@JPDKs&ov{7!L7S6{mm1@O13T*Hy@!e(*q*A0I3 z;%Yv*n#u!>45yL`Dj2Z!KAl=OUyc{N@40sHfMK){1Rs+n4pI;C;$lsgK-9zx3wXc~ zVgd-c=o$5wYGSRPWjIK^$y4Ig8xmQ~kdD+5KcE2n-gJI(!6&VJ_VwuFfBwx^zxkN< zh>rgIA3pyVA!Ml>0?3D2Cl$gEGvVKT_W38JrX{92G!w9p3(-UyzAxlX#a1~1gxr02 z$NwFbwoW+|o+@m*1z^p8ijjRLU#26p)4q>1N#pljVIir|IGd!gkI+7 zbhhzjEJco5qB6iwMTPDUlb`a9(dCx*cZd}Cd3!up*|6a!oi^~|nisUtQ#KV#gBY+x^TOSL2s@`b7ok=5(9OoDrT}G5-=;yH!-|`2)6c!ALjT##^P%jWE zKZe2bS)b!;BjCCK2v{iByx-3F@Rc(BPvL#eh7DPJ=VH8?yc$u zSGomYO=p~Ox6Y+N{-4(uXQd1*>x{F_tNqn_MV)N91L|aPmhr8&P{-=^q@Q35^I^+h z)p8j%N=M;cK37+c*nM+~3|1(>o)3~et}@_(X_P-AP>xJoMnp$_P=cZUe*E;zS4Dn% z|8~8WlkG>AIY+`V@o;Q_<3c-YBL?jmkH1u|pdQdhtdOCvL!N4Z=d&#(1bxB4(2y5k zs6US3=0kq=az^Js%eL{6Y1{bqu}}vSn%ZM7!s)J@eQ`ndP>%%|>N>u+7n5Hb(F%J?odcG)d#7`}O&HEr;0#^h*^Lx>+y8 zzi~LHBOm#6cu~3>IcUX{)OHCABKf2h`&ZVjWM@pNc22{b2|8bP3BA#YF_nc>Fd-8^^ z8{jCAVemzF3+K2AU2vFj7iO?Lw}eGuV3`}LCFux*%$;0D7de($=`Iy!LF9fevRfav z>P#-n`hhN;fP>V#v*no10_C02)NVYZBcw;;#e6Iy?MNkwNRt?sedJGx4C(jE7lIig z>W=iwdx?V$`HJT}-6u<_Q+e*mkp9Sf?r+AVOIiFsM*q0p{`y=U8hE5jDZP)dEbQZN zN&t3zShwSx&cONAFGVCA>9X}VBk*Cx`*kZ;>$M!pJ~C9+-v&pA1s&l)?KL`~@AZX4 z;KPa#4!lobwhgy7kNjW426Ki8q%1*H+0cLD;~~7`CW|ZT<{Z(fo|B;+eCK;<$F$gI zcSe^%@zpyAweIK0Jc3LEiIlmYe$4PN;iumH^v?Nu`idrESG3?Im?fg&$Y5A6Qz|kr z>94g(d;l`tQgb+`?JBf*p=Q?qdwm6~snrnbkb-GH^pGXZ3DdP~zRhtyUr`&X99cCN z9^}=Il741SCm(i%L@VE;agD|b>^ch^8QP%+5!yw|!_emPL3xd|14B7fokH2SJVg>U zG&oJ#0S)z#Q@D@EYq=JS@rJf+P*3>j(_j3Y`g@CmY<&H}nj}3ji~ge$Fee0tf0rt7 zUZO^UIabGhmq2LnYAtc(O;cn z#yRO-=++EJ)FwfA~&9IOazAm4! zqoe(IB65fNny6J#R~Hlsd8lZjc8eCt_#~nt75^kpO3o&J%(o=-e~V;wWKP7Ctm+B~ z0g3exNxUpf8#Ez_0GWqR^5POh|9ag2>kqH2k9GDP%?5YeJ3)`K| zr>pVVH|yVg{qbj?^>xv8oWs)b4k8qv6wm+Q?^F_+20xE#f(g}kl`2ob@_I=jYS?~w zL^L9y`Czu%QO{^I-_Sut>peBk#!}Ccb|S*Jx8k3P2)TPnj%KZPwD4LuXE+-!0hAbc zkh(FW!vyGN#`(9Z4QUw7cb^7+f`I%sKjz-0tfdWG0n{u(;sE`<6q2mYV)YIK^MQ!5w${rYyh;JUCE zzZ_G7Z4bp4Gy^o&+cgYTkYJQ{fC|kI#QQQJM7SG7o zQb0=Gh=r>3H{BI0bcg$!fuVfkg09A)+rIdJg_>b6i~rQSmr*pDTJG`^p(eDWDD<4B zF@{_1DGJSUa^GT$)t&twk(n=EEyI)8CYdp$+8 z8meO;e8g6G5W9glNl=Jbs?ETaBE$jwZU*On$|1WW0fzP{zSjyK2AMnjCmmORpsUFj zYqc)jFbkbNk2*OGG7r;x{4X9iUdgS2hDKmwD6I?$!TafD{#UW^&#*Wl5h`*H2r(B| z-fbr)Ju}Ql9+yfxAm7VgT(6(Gqd$nH2QV+)D zrULbfbpeHFmO5SVid;4%b$S|P9wp!AyNmgDx90>Z#0(vy1W~T#Oi12KZ_jtT{Zw7s zVJxP6nk(cy4^mm`tmL~PsWadpl;ybkA9MHmjra}fx!9}r$Q$qn5g)v*W=KyP2H z-1z{!CqTmuJ9Y83j}VE1#2vg8{wqSrutWl%OAW6TD~|_wEBu$Pb(T?KNngSKnvmnc zqk9me-qLEv9VOwDC7afy5)DE>@Z;Qq-Vo((AU+1w9hV|#`5#Tz6s-k|?R*}b``iaq z{L|B5`+G`e%E!mjd0pzPP)o@j6>5SR7t#+iY3|dmi#sbUb#JF?LPGFC5?pK#l}4Ch z045=nmx&0ud+A*oN!-tAs34!*u_W~_=fH#1-6XZ0O%MGS9;NSGFM zX)yDG_MCnvYlnW!0Dzr0iODP6C+mZ{Gth7>S7vHrXmYvyw?A1f{CyB?_O4V+H?%X9 z=>i20ZU>$9`JXAt$y9CV$}0&_K))O4bmqluJ6kEfq5rG+iBnbB(!jdNHH`|60|lfW zIweHe-#?B$17w8G{)#$hS8KJ6slV-s1BE*jel&VV2hPxX)bCU`%y4W?7W@JO{w>ev z@$YAfZfJ2yIv`+kxbsy*5R?;4tG69Z(9QT{c>L|)qVi&4pe!VOY5 ztSTj>VR9o2?}z~RT`t^q8#)${D)S3Ui?eOHvFb>(vvd5diwog5>4g&<$_EOtx9A7n zzV81c3I)UQK;dIwoeB{6_rPBr!cKXiVHkL;X(SkQ?$B!+IyZ|Q;r|L1Lq8Co!xh1* ziO?yxqn709H(v%|8z~u=IM%JT5Cp$U3g|#>I57-JIaO;kMR{7 z!C!bAgtnoZ14^NtAt8AeFHgfigqSU%INyX=gh7TAqvCy@nb72%J^|0;5ie!S8Cy9%U`7eScM25 z$EJ@1YZUA5wPWjILPMeHmPq`6D288pHmlY%a0sa&Tu zF)tzwLeZc2B-d&6C&C~T{izoNt^On$grYw&+n&Oo2!l*aah%mE)k15E%W#l-fE0(p z%ZAlJK!`Fl=Rxeo}X`%C{ULk{k{I(f(h`+ihXC~*N1Yc~ORHaE zJpuiJ!XNQtHy zN)dZaXodiN>yi#=q%o`|E#On_RZEYPKlVW)FreRYblyf#;ae(e$kA9F>$r$WZDcT_byu*Ld+JLk31)YfVROW0$D*~UpD8wIN zb%^xt)PP$NNg4A7-lEe4MG7}`!||yQU=BQZfHyYh&!!hoM_0?STx)2UP5?rP@yh1>7D)^1sklKo84)C{= z>gJ&GgP}|aUrX~H2m<${fcC+XFKR)=8o3{t3@uDv(4tb2a9d@-f;Tt3H?)xVQVJMq z!y>Fa1?UhHtHqeuJDF5lVj_YdaK{_4+R`x>}eD7+ukPEdM%2Y-G z_{P=jrHDwww2LmIi2&RKE^J%{JKoa8HFV>f3I;!TvNhbls;uJTeHZz2zPs=w$Zd=p#duMzJFX^!IqajF#2SX@ca; zZE^`4)@8kD*m{|Rf-_xYi2omICzxTPO(o5&Re77PsG&oe=q8la{^@VN6lva2QQ>Q6 zI{pYK*!zC=`)o_o8ob@+Z7N@cpI*1?$$qWan_weF3 zv~BJw1wph)gsEXoKR`mUq(b<{e0g~_-O?RKV_CEs(s}qaC?yQocjvU=c0Bp^Ku6$@ ziq+1B+JV0hbOnOMBYwrLsPUWWE62VV#wCPKNrTuOevilbMs)1VK`ml4G;4%R&Vj%! zeuKJ}bQ#U%TsAKaHMPJe3g9j__~+f>;$r?%EgbF}8v+CgN=)AVy}Cfv(3LN&X9mD7 zkDHl}Qr<$??Yyo=cFj25=jc>;s8 znE*lJ9rl2pPz;Fj$k0v_@fr}oy4>rttk1qpEA50rNrTu!dXEm*;@WC7^8X%YeUYSTtqlGUC5qwjt%U0|Ag3QSg9ji-{yd@AU`9@d z86PF{5db@Pb!T~I|L51Q5=^kpuy9833`=YqJV{?A6N)2(P2B^esZMo=h40mrKv!5y zUtbjDbeK_%0{5Z|rhMw`G*OV)Fd-{|`E-MDoZ+3y zGdiqeEel)2;5febsa(Tg`9r)mIc#}t`vo1AC$p4cBO@46DhERD5nlDX+h~5JC_WAQ zr2r9nk_f?f@os$V4keULYDQG}8B<^Gq#psA(ejT6d?BG}s z$+Lp16^gsQ2V{i=gj}8#E)G7M>n_HCtdJuinWs*=Y1f}OecIHiv5?MFXME?RsZ&uQ zoCouKMLxTjkOk_1V9t?{%xl9X-N3H5w+*NbfrHdNq--j0D$`k(S+kDp7ibWQ?U*Q3 z^ub!&F_H+uyi{3k<(Vr3N)<*yB2OArQlC0$rWwL>4=-4JdTlV<+(-_5msuHX^iRtI5zZ_*JW7YFvmvN#ZmI zN#maW5~j7>;b=II3LMeyo9`49vROhYM+Mpwif2J2E3~TN*nJjR<%xmzFt4Ka3 zZ5x*9*U0jM@y~d7PC{1k` z<#~pL;A0^;=Y_);dK-zQxpPD^K_M!=T+Q|`)?0a$@jx$ugy2t-m%GDqIo{IQHVEAj zoi3=RHVs#2C7=r9Eb|v}AzD@JTTKnIR!~CkfJxoDCh`2v=I32ARj1%zDWy$#|Yx4#ikXlTNi93emr* zi;iB*_g8!)E^mwDxfcVx2gJc{HG7nPFP3bh#7gu^&s$~GN%cDeu+@mB%LzVR11x=bs-z?MCU4l6i zlJ}D2B{kJI=W+|Jr7_+m2OgyECaL*uF;|7JrPJS~6mSsAGCv(ayFBo8^(iyIfI>72 zNILkIj!u=?d`Lio2dOL|sZ^P%{Z2yyGT_)8@29 zgxsx^7WXrm!z`m*T?vs{kjOGKovuJ@rKoYIw!03=%sCU1Z~u9>UY+r6GNL>*v=Q8g zu0~A=P~V9^$@Lil3X%&gj!OaSg7PkOm6Gjy%|Z1Sw! z3T0?gCWdn${h1+af_y2;i3Jl9g7=a+)Pv?fMDQ7k#RO39fd{Dv>CMIXyH}-ahNO@X zN-Pl}cf+lOn4Qrj-12T5!|uNDsn_7;J^@o<%S+Xp+4Gp@9tH6uXCoR~xfKr-5Wd_A zulfa)6WL}mjFwfDA_^LJ!%I_|X?17ti9}|or79wc1(kbH@k_L5I6}x6#+Pd{2?ia6 zSoQF|wh)UbXxs{>_+_8M4@2*};zt01|4{Jx4tafSyd~@VtdVCEF9ROb-VJIL`_q}b zZ_NK7{IV3KrC@=CCej=iL+&#n)|TcH3o0KZcA=WEm50Jug|2pZ<90xAzq5-hRM zzMZs-T}6h0^tznb#)TZ^U!@&?&xKEIIVyv}ll#Gz)q-yGTU{0_^$abNiZ?k8N=Owe zzF34$;}#CJrHaIY3jCoBF4ff6=1)$868x#_wE2@*PtW!C%vMrZnFzEcig{ABY7|sCF?OQGkQ_qDe zf=kM9muECD^1Ipd+2Zqt4HRI6qN@Ug4-fF_`FJ;;L57-#{zFUr) z&xdv&`xGKDpx<#XWXC$^D@H9jiK&U7fuQiNQ=mgw+#o6)DzxGK_3DZu%Q%@-ssN$* zwo`P+N$1`eCL~m7IRvQp=<<~XH6`5mg$!5_c|%XD^&fs`0&q8JQPJ*dyeOxE3~31827@yY@VD>^&oapXF*HB$aluc0 zt7v~QG1O|mm>!Dumor4I_RD#qw-D60|bKook*3ZJ{acUD%h)- zT7tE-9!g}P25T9itfij@Tk9C$25V{M)=+C10cr?a`st~_HiWHXl-$9gKwKSXli6I3 z{Pd4Ahk&&{Z0T|Wd2oIMl@Xv)cB7;`S#MtPnrRWdhG`#_bR!1zw*p;eHADGXfK&N{ za8Spqw1fj8U@4Vq6b{qbC0!6Itu+h>Dr-Rj+gr@n*opA%Z?Qvw>cf_nAPH#yuw??6 z-ctHS9v;!(QilLFSo%^fdT6ke2w?g$VfJ#f{JHSIf0^JJ;QA1_puL&`+dl*x0@T|s zh0tdWfep$)wxmA(=Od>E3YoLe$-G>M-1DEAw{}AyE&0VRcP79YAn)~f` zXbjGG%mCM?w#7tdjsB^P31IrLrTbh5=VQ+R_l7I)7G;(*%nPZaGC)8Mp`ga88bTo( zp$eg}zWn*$i^SVMCD6DRF<@)r4lN~_n`%y9O44t#G2OqEbO>1MsZ`3#Y}TLZ5TN>c zb462-;|p5SDZ;mZy_q=Rd#ic5ut4{>+95#oscf^BcSH40WlR7wSV{|*hg!-AP<^?+ z9Z%`M)5!bBUE+Z6Lz#QE`N&oOP-X&{K9pUTHi!044-TQI zx=3%JmL)p(lXFx1`_BYvsq4(<(EgT+{;)5}_S?fsb}Raqke&f+eF`|J8pvDlq}L`%AiIg|~&$q3KhkPFZloRqHnk=uDw*d`PZ-u(&=T6e>XpMLzAmlHykc@huLg%S%Y@aPM=8{oHeBn~ZJ zlDV(VBY}g~z2MOw4)bZnB}?WjUCLn4xf67_@a7YFM8FwVMOR`dqM!j^_yMi+o2grK z+kDAjH63?smMlQpbpi}J2s1hgXLO+WIYF336f_=&faQ|XMNE;{3`_1Rkt2DT+VjbF z?=H+*?=G(B=x4Q~)uiSaArDn}P`kO@;ps${iPsd*^NKkkb;(#apNA(P0Y1o!gp@7gsc+pYpDoM44m*;?v6idIJCdCF2_=pc$fI|(S zQ>0jsw8DXQu<8(Mi*b;kKxMislicq*luY$tQTRm^G#=667W+BvrJhjVg%@xCX1g8B zm4AjSG&IDQgjF(xAL?(uoU49=VQsHwRCOH~vW36@I$j)P@;H^ho($n1X;&mr3wuC&qoZR zQL-1aEd>g&vIjFGq}=&K4A#T~e>+Z^arF+Q~<@9`NfB+;O1f}cb>3@Agx-^MWtWu7qOWTBxnV9XD-6Bo4dfzG-L ziw=b?e>hQ^Q4%oaKWI~^7IR})d(^+l%17-KaoXsB^dTW%`i${#l}R#<_nFg zrWrN|d>HY*{*qs!xfi`e-EhT`CUx2n@G#-W`a?D$j~tO&4EGCZUZ){K1m=9CKPPkf zY_uKi!`;eBqHj)=PNV`1De@3qu};TFRrB+y@{p3~G=M0FsUf;#JgXOUzApzs=%u& znGGwOsISW~*rQ)d?uB8eh@0Ujtx_2c>d%SKy#HC?AR85081b}a@<~zE% zR5G7l?+<_GYD#<$;A8%Q>*R0_#i+7j+c5Yp_!S)F-r^T&OM`5Z{i3G>4gloa9;pW} z40E}{Xj=V~4HZ6Gt@az9V+ohD(lDG}h+x<|28a*&DiL11u~vu58SGaHg$clYkB7qs zCOn4#@GkwerK5wkbT2)va8;Mm8@A=d?_FTTzd)<%(5%KtI59}a(W*MDlj=AcbRJ}$ zQuCa$u5!sR+8Gf#=pqnmkK(H%*BPMoGdija^Vktm(c1?k6d%TyM^uC?Xc^{GIcUfy zk)Z_>5qfvxyQ9(UTP0tUlEXpievDyCC$t#nrEvalNDm7_sNq&`{?tb_)o36F!4$j7v=_{8}*5}_wN zqjU66>6yntDQ^eNX$9%*wC#Wl2}R-C%OZIUiZzdeQeHRHeeW_E4yl_R3@UlviUo3B zsSL?m5ePNmlg`D1e9GG!xlggsKb21r2%qxuqO3%QlozrN5jsT`GDt_%AbA|EPMPi; ztQKmk*`-R}L%i{{s?J&`xj{OP2Aw?Aic(=n$`*A-o(48+-E|z|jip_}RIC1YP5uuldVp$Ci2}M~8=6=;H!6EJDM6CH$R)ItOk~QGX z*b>!ywhb$v;AVavbFm`Akb56 zgb^{}Mtf|42A#|cIUzK_i!_ChN*5jk6E3uuE)E6zbA{FE6bJ={6cb^@OSsV<6QDsS zjf%vvGojQzDw256%6#(uAE7kBr$DRd_&&+0bOH@JSt_6oi4Yl(&KOlwILL#QhA0pU z3b$k7=ElT?6NWuf@oQN$dKNUYc;|7llhq|og=o-8tri-(5}vfTT9^cWs^$IAn2>0% zfQPS(p0`}KZ|eQ(+~kQAfE>sJjp_8CmWFiLW)S>XYsuo zt<>o<1LE7mppwN0bzVeJ4Tuj$K_Rt;xnp-6Nqg zAmkVYh15<_Ti@E-DFgyN^-g(RJ>AB6MfcqbH`;rrIT3m(Jy)vV_Vlc3-z?0eGXugb zwe6A*m8!kn2UWAD(R05Jn@)dUsAXgAv*-eexJhN1Zc4P5WqC^?pIhW31|S`4XW62>G&NVT_2Kr2H_SLyAcmDlLWk1z&#B0oTbAE|dhPttGo_>gDzAM!PBrlkqF7$-Ps>M{^F}oe*1^te<`?zlYQ1pMCT7H^2Gj4_^zm;bf|uol!u)!}QNS{rHQ|zxnL*KYa3Afj68vnB#K{ z_%}VDl@+{axP10$V1Vqx<+D$}{_LMV|IP0dyJxs$6wq&ZyTAVCi!Z-aaKp)aGE@Ko z`v$Z5N3vanw_z=HP6k47zxm{=-w)&h0q$EQO8aNj7DdA%?aWyJeNG&o(|P{F{eDFM zJ&13U)_B6Zr3KQk5IZw60Kk06Oj><6rK6*!^DS+})wi!$3cHlIOBR$kgeO;|A&l=A z9{zg}-*Lo?#aLa2Whmvc0GV8Q0;t|j-4yL>XWjtyM19ppUm|}G8#yKLHVM@+@0St+ z08D3Pao%fBE8X`Xa{1y;kloUCh;pNQzw#x6fbHU*?&jia`0}~oo^c-tpx$STX(!K! zuLK*FW?QP|lovD!DqLTr-NL!`{pyRv0NI5KP4_L;DLg$xB@jU6P?^r2&nL4{^;Xb+ zp`uAp`2njOYL{3vqMxBw-FHL~}OA(%Ou)2SErXgyC=kuZANdQa}0Y2Y_Pgs<1aRuM0UuNk&(Oy_tD!$mQt;pVr3P`9y~ASDq$@ z2!Sch^vG>lJ+1WsFu7!+3#Ok5L;ICX?sM=sfASBTz1)D>FMomnsteN%9n?q*B;*2! zo?#jpAal>)V&}K$i7@EbGl&SubrqB>0s3+S0$i73ckG6+wr3jf05G}qqozy$Eur)s zYCHcuh(1(_`20fl4*Gf@5a4=Cb-wCXPG7iu38G6`G!DYs>SRRqOj(fuva|KYcpr;4w-9jXW-YGaRG7hT_ zGfJ{9fm+CwGH5q6RWJb7hLomF?VZwcJ3|hB$t%T0r1j3h9sygq)ZxRLD+OA=QYV9e z&EY_oy6;sI?iUUL04DeHp3N6>xTs$*&wUOa+sHp`WQp6)#sC15<7$E7@4RK(FRmg2 zT(*^d95!wc0E#(m+<=(*xBnSf>Pdg_r$A4C<=K9&_zXy@yoiCTC zk!?}r^^129K;_)&ew%M)1Fm20j0kYK<++?KFQ%i3yNW`X+^^*+FyM2lqGQyDg|GWw z5TEH>)icK2_aJf!wS0ClzgP?J`<12v0H*W%*-EX3?`tK047IWWHu4ApsGL4|DCCTGOdvB*e+kHO|ZRivKAh)3PGCCY0eI#ls=F)RykukvCh}#&{edCPOE?E*}KK+KeU_paI-(3&X&sv=Re&)X$LTRlehe77u)gl{ds zz=9v#ba(Of=d~KovMdd+m0k`6eDq;aDIZ&X01G0qD4`bJa-y&JYAs44tSZA{c9If{ zWgM)Kp{DQRWHJ#3nHV$MS*g+*Ghjg^#>|e|FGW^tjhP68Ol(;26K<>(QmqXO0fe0J zs+b}j;+5zH#&UQ^!|!s5W@|C&N$?{!EZoo2EnU$el5}frpWz^tf{cC9hZi>o8DNm% z4k>4uVnsl|4rxSy>!M;lr4Fg*V?G1(8QlMC#~Cbl(eN5tKcN?t2hj0$cCqFGm;S>GQd|=CR*2^+s@@;BrfNvLJ8t z(g0hYjNKMRf{JUpxM$R}q~)}EQtLNi;l1z_&|RUQ=yFb|-@r ztNR`n^DxMUf05%>{f0pTKrjz<2k{`L2MFd1nq!hhXiqym08Add*tnmhq5TH!Kme7? zn<9$(l{X@WxXk4rie_-XGB+Y%C#NO;QTpC5E&1<3eBg+e)K90YsOZ4#Vu_or;f^f4 zr4QS3 zzMWU86%&z?A&O$V6d_h-#>xBWf z-cR9TWWl?8xe{HHq;65Rb+8K=4}!*{T*J9V*O|*{ZCmTQ&`B_8J&9V|txF_yAi`|> zd@N^>EoTy?b$UJ~G!Kd?u4oT$4Bxy>)Dl-Y3rZ=j=;>+VDuSSq;)))n;LY7>i7Nqv z7MJNhY+uc13)vp)SElC_(7Dd1Nr`FE&+b>}M+CUsJ|%Zfv6xk0z;|UF@hdAs^H}Iv z-qeB623OArzRSSSeWO28?-PF1la0w{YjR)F&T^IK=-+R&+T4Wp!Ci4 z0Re7^yY0}$Ze(*{lw_TPd#4H_=V>^Gg$6f-Ma~U*W7r}(3JAT3j(*aX_Rep)ox%UI z!_eD*xromB&m$kQQPI;@4?rq#IoSOqJLf%1u|O!Pau}tBnnqAuxH=`Z_pWES0s(7d zxXSKyL%7NX@@{-db#xm-AluLwV~aK<4yegE0J1HOFKR*V^OXx%Dt5P9wVJADxB>z1owcu)#h_A8YXbpP z7p8irSkEx!&%yIn?uzM#zE*kys4lO*qM;?Zro3lf^#CwAo$e>pv)^2*7DvByni!JI z?S-LaFhJ&!6JARp+jIR!PW<;Ea%zox^76u^UuumAa5){&+U#PGt6w?*0aW(?upIA( z%)9vS1+lQQUx*&WNF1lt!>Y)p{nBaxz)Fs#!-`Ua9-;3SOA!Gs$I_v)S)*SpfdHzD zrDDlX&oFi0gUF@Si?N#W?N>^<&%t90`G;SK`m~>g{(DXQQUn61Jchu(apij0@g?tkCevg+m5s}OV+b8UX!;bPb`AGU5%f8DE=3fR zRXtOL`yNCWfBegk_GOss0+Z%+cjLo!PC@(Jt>P7_%@n}t`!K$leh|~gG&ColEaxxP zFzP>BPG(7vs-CAt|7e_%7IV^ZKFbX)Q&T%E4I`W3dnZ+}pmHNTq2-=(T-Y$*TM=*= zuy2JIXue(34Wru?dH{icJMyXXt)^BD^X*juPlCez@Xl`b?SW2Jm_1doU^sQMqLR~~ z1YdUhr@YTaq~$hWK!U;@__BYxr!Bj(JTlB})*Jx}8aJU)#D`&xMNPnQK!*p;d>s{S z9z+y0ez2LIpKWB*+EA48S3aZp&w;z+aO>TEw4{UdRFmBjCW4!BAn+y&&{-5B!5E5a zVK9FW;Ee#}W0M8c&=b&5$I#%Jo)T&RI|jhFSeDv@qy1LT%^K!1gw2Tp_>Ikc@@z4q zgT0n=z`;^J`cHkj$S`2v%-FIQV@VlxcslhLmh(P$5s__{JB+rRe>{cdo&)+FA1?d# zdO>HR&82{00x|zQ3;e``(Ea?)%h_tJCI<}Xgy)1pDgaAZDpCl&1#duH4)Rt%C?c|DrV6s1KWxLK2fq-~L{3Vc3yhn?dyyBn7 z&&MOWv|8jkOX>tbszqF>w3weyPN)=dP`Vp^T8>L0OAEj55@=N&x-CRT)F2&4gU+q! z4{gPjB9=CC-5H01LP`aYI#DW!I4Ir6FSN>c&F4m|X#`7!QgWcY3J8W@4Ra-@j!#lo#^SVoENjS1nc1%U{FbU)jt@G7xS@f zy|m|5frR4i=$D^W$)}_&<9~IxtN8_m^$^X)MvkWftZm48g3Agadp`YQ3DMfE%l6jF1h9GfuJ^Wo!AeCH@A zQ2NV$mPy@|{yHVnC`IyuyC)*B+P!e7(hL6iR9<)%G~Up+F&ZWfFX#YS&H`bzbAF-H zy$!9dTkYvgFW#b3oONm`(mcRNZUKYY_cNWzf$Ai+RL7G2>q4MG>2^@saCb$W8f+Qf zE>%E+!rM@g!*qu2FX6*HtTt)M)vd_oC=m(NGKoHI%R^u+LDIoz6eQlF zGk?lc%ncLD{GB%(03dJhBc336b z^joqFed_}uhrr&1rU4g`W17$mDbaepY7;tNvwELyO$pr=%()8NEn_!{;6o?<9mvs< zJDJ*Ytadb6#!(VlOF0|@?B3?pWO2Tw{cz){A8->+S*j8b2r3!|ori@EEqoACmbT9^ zDds`#*0+Z>m1%UTOR=)TP$-9woktP`{sZwdUC}dN$zv-GG1RFNaL|G;m4pA=d{M{$ z!x#Va$$Sww_;TN`pE^6I{aAFK(_HU@H#8^$!9`Am2Bll!86AkJ512EAT16y)z`rf{ zvejs4uyhKfmM_AJ)<&#P7gjk9zB~xlT#lE^YP1+qbHyQngVxQcbx^mw85#yv5$1r7 zFr(QKe)pW#S&1^HEq&!QDBXb{v{{0NsCtj1)?5J!8jr$Di}fX+^HWO%h6##_k^(~S zVR)6r#*3Pqp^UD`NuE}tWgWA9HHEjSNgmYh2D|t_=dbo^-o?;ct@xE#P(i7{Pjqjf ztyBOB3MkjSIU;elm1_Y6ejZNrNZo4J9!{PG6?j1hB z8^Wh~1>-PaBj?jvkW=OSh=K;v(eCPSaiNxCwWTAFpl~m^Nlh1u<-=ku2cit^zDhV{ zFzCRO!-~$L-OAQ}n z=)JR@ReKzU4jz5!6LKPe`ZhhA(J>Bcrs(vr?Wi_X8##ne4E!io%8l_IdEVpYwJOr0il*WvZ->8eJC{?DS(?ybX?4p*Xc zHhg{>EoQ4rbzbV%&B^-`Iw{XnHOkKXiH1zO6_5JL13YrLfvhCjp1Gt^X-0Dz)=5Qu^z$DAy=yg90EYf z+M6w}SlZ6Q0+CT6VOWs`N+`vvNJ!Ec0G_M06_$a>@U0Re5b)I4*sTxS$;?fq^Ll^1 zrN`9R2#lapAwrKT!Ss}Zaygex8&f6Nr51Q~t;3GI6NT_FEzg72-RKv`miEdrt%Gop zVF(&@QutARuPC+qlz7mh!4h5t*?)w($U*@F@b~E$JJr543}|VpV*q)Vwt#M4@nRm@ zsLI=NL`)mj-1zT(;A<2_ZYPoA<_b%0bX+CjKv7^fqbuR|yR*uyu)zm>?IiGrniqZ? zf2W}Xn%ScInKHf1goYvv6e%T<@ai63<{|9!*<$@dM2;bI03g&74MKPEo_nO{Rt-}I z_`cL(7-Sycwf*|pjJ8=6vvr0{2!v3|c@T?%=O13FMJcU;muL`r1e5%u!*;>T@I*`* zsscbNet`(V+dEoRKiSh7nCF|dTEb>mbpx`Kv}2Z+g3xMUc=uDH}ih6NvK3q%|X0}LZq#|)5Q=--0=vM6mV?WZ!yY&{74 zM}Z&ILop!yGR#_6{8B*Z{W$7%g?v6lZP-6umF{B0iXW9$$l%Y7FpQHQH$tLe16mI+ zuI6fCOIz!~a}u4(hVkNTOzY+3^sI&MzxAbg&H?@I&i_hfJZ*kms+my3+RN~Lu8>$2 z75~0Smdz@G1(ln@md%)MoE8dgA>}!sKLOoch{zX#P(8;nBa|#PT^T3-lEs_})dx`B zU%5HRXLHr9wv_)B!5jyz$4ZO-EY9+^)Nb8!AVLw|ZO62VvKE|e-U%GE9tQ8IgE)FY zwJA-PT*wJ=%NS4To8&T#@Ao|=HpLcD+=M8cQiw24Mh!e>daru4sx;Bm_&@UzhMKsN4@KRK8J>O#7P~>atQN zr$Gs6f}Txh7vsZX&vp0uAR7XfwtQ7jF`;@p`FHW{RBi~clnPZXM}h)U9r<-d2Q#0) z;&2pkWvM-@IvKB1tvJhapqk@B?cEf5-WGnUH}qSkxsSL9Bs8-W$(n_Kmb$xBPI#9o z@$aWg`;i8p9;I-kBTe?}^YRiH%Q#WhtsDrwEKPE$Rgr5>B^j?%jZeotO%CvCjt8~( zLRemnccbZHyr2mN8j7B8p8rZnTE?Nv@T@?giyHH4zgE}ISw=c4QjSxj%eHqrJuS6B z`kP0Ag<7+3IS_iN zmuVvdP5e+u3aPewIkBoLtNmIYYdt{4vAR^`nOVbB($QHW#5N}kF~@>0$e-lkl^h>z z%R!z~qn{#wGCk!_^ekvS>~k6+lLBo$i->{;&~PK3r_qQgXrPTpqh_i-mQM+^wed^8}_sr&3v1-biN*=5phrdtoVVY)~jyHPmt)=-^bG(2;HpXy#gTkA}2efc&3|Fv_ezMyw&VKvJ zSEGsBhPWPm`N{9yzeQAA8Y#r_!QBNEl91us=O8~wvI>OcP4@Du-+cbt5p{rtjG<)V zZ=+`s0`%>OE*A+~GJgU07~qrTv&$1$&Jds|>vaA%%-AWX| zKV&!!Qqg8cH~PkRY0NKPxvPMrmZj{?wK}1Yc5%mV`61LiD20=KC* z^eQ7smWFlir$Rx-WxE&K@n%$M7WU0;IR^qaIQN}>J^Jj^-+v>*%TloNr@my(ARyla z`S)M^R!%fn(p!Ocl!E>B|Mk0n5oR~B9i?P{{Lf#VfX$SW{oBt@!Db5Bw-DZ6|MrV7 zB-~Pu6#?!sCH>RSKK()jOB>x`K#ytV>)(BTiuhy-*eP7T{NgK_#@j4+7|@gDUw!gV zB3Rl|B2&OlmVf=l$1+&jEO!{tljVQ>XBjMQmNNxxZ#l1xFIJTIw>)A%cb3m5G#+=g zmTf9SsjK^$l z(uO>yzwses6HxH^}bO{ zYwuc7hC)-M9KBg(V9H?}bROou(RA{>D90=VjYnLIOep4Qb+e-(PI-;_u(TS0(8|5r zxU(+l-f59FhIyBmHN|fa;}vZyQ$3wwiiruuybLdcb66Sfc~E+grIl)6TDl(HNhKno zM|ptHia(=cH(#u`s$XoV0mJ8^Vv;CmP>I41=&+K_*_@7Wa|3(hpNlkNDp4XOlPjo4 zRnK3GDp8^OZq3)p&!wzo=q?3Wr?ZTO?gt&Zqsh;oih#CkbFgVUH1s?Cmf9!t`)TyM zuKV=$gg0T~Z#}%9{(LlfDt$gxcn37}JN%Z~rwVU!3A)w1Jo$x4VkgSWL_Mzh%h#g% z%WG8s;kBs#!!@dM&B&=j_*d7c{^M)$^&hWM{q<{6{q;4f|LwJ?{xx@R7&Kf(~`y;eU*PMWrvkc0t;_DbY<~$GTl@@aVzRTN1M=W<)ql(Y->gF z=cwrg3clSB8Z`U69r?Y6BE?!p_q~<5OiqIm4dXg*ct?VeFb%i3Pjd-}0h?OVkxfgy z_HsjtWfr;g!ENz&EU3_skyEJzlV$lsDG@;6BQCJzlU7!XfNG12oCc*kbXqtqoaC#d zId#ePLY6*i`rOA!`rF~4^C;K3n$d)Np=RlSCwiflpwN7`(46M|A}m>bEm>I?=3mO6^u;8dToc9b_gj z+_9j?Pl*8BJ3G4f_fVe9W0^{FUxox2Apn1WN8@N)5eWScqw@?P@9kbKT@`nRe+axK zn*!ji#$OQ!rAKt{^4Z9rOV3B4Q!b@LR)w0S>>)@Hs?i|!z>9^$&o8#LXjRU?T8e8a zC0P*iUQK7`2ijA-Sga?UjHOg>uL>H(e(JpP>wgxr%kktDT~$0?zt~;SDnYuPPwy?Y zbl`-O$I&q3mNSEj3Ky;-1}#%2LNQVRzsqo1-7-GV1tZ0ovz96_=L--d-gXkq7q%NR zJ%1QepR+J#`uqIsoc2vU+tBLh(sD~vDyJ(HY@CXnj?yx7}DC8mn zEOYI-8#xC8H(6lzazc%$3)zUWl#n?+LV&&<(6db$1C}PBf&&BmTOO|xj^UaY{w^k* z*-HWd`IsM3E*On>uU3;wI;4@qT$UiFQaBT+;2`%mkejS&R%XvP1+2Hc%ig7@XOy65 z?Ft2+$QfT5Rx0KWvi@~^7zF=a;YsU$rsq_M4)#|$Mz}0nmUd-u`es?+u zoq-@k`Zl;&MA9JUYASl{R&WcAzBN^Z01ZDv3yzPS)_b=b{7^KAy~9bvg_Z0=S&kaW z6IDO}OPvS8?&v}iIxcAboz8-my}yDkNDy%q1Z@;KWd&KmLC#f>{QSBKEMM>2w}Q0r zVUR1+>4Q_1=?VoISHjV=QGuIF~G9wCK4*Hi<<*fJo7WRgIR|5(0IbR)Eynxe z+Fr}RbfnZ20fmnrD$!Te4_@&$grap}8yq^~tVF|r_oV?l8snqgD_o4ou(m7!Jm$Fo zLp;mL)GXO}3(pVpg|Fyiimq5e_)Q~XQAo(9%|LvR_=Ea4} z?fzH5P=6dvjxQAfZE@%;z% zc@U8-h}@>NJwfC`Z+|efLh!ZHa41MnXeEimPPVMt{kT{#3nKTD2&L@e;vQ2Ps|FWn z5TY^(-tZYOZoW?>XT#cjAXKO&9>g-Qs8Mu6uRw#)k7(!i{*2Zb@Offqyuo2Ir>+?F zXvg!#K^?GYs$U2f+&d121%E3o*k018A}w;_6NLslJ>o3tdwUSd9zP1rUl)gd)u{Pw1wd zVs)XZ7OYCesLB_&CUnFLaYiCB3@Bf6Bve(%yH_sg zRp(;XPwl@5>rd83mLdt{5pjnq&bu-cDbj@)_(5g_d?o(dQi{G<{i!Gc;~ zm_`-qC8Y}tg@zTXq;{_c`TiqQTP%|yukasu^ zC=GHXR8`*dr?gY|bpOiD7>T4dAnz4i=>J%xG|KQaXf&cVRHNm5=T7bs78sU@D(yxznmwT_MW}m7 zy=J;sgYNDV%3n0MVlL`%SRzx<<%HsM!B;~I_4X8$0ipQ5@STE~j#j4q(&q9VDc`8MpX%0hd#O<)!vxi5PP3bqiK|>-m7BSmhjp!JS zgUU|re%HvbLB@G_v!dP}=aLCs<@+wR&-@+(*-#(gdxZ=eWSsMD)}a$6vRHeZ=R|1A z*5G12p3>oelV@Y?^xB{QeZ0gO^oe zdtX^op)Jc%e|{hbwTR^Qax?=%QI0TD(`U!M^2vJ1i^;dt8=g%LG`Fhqcl!wAF$LJ9 zV!#zIRI@GU(5{1=y%-P!iVAI6#`wZzN9R!Pm2!I-Bbm^ZF;9I!UV^8)e(f=z0ih_z zad}dCbl5J?^%NwdW!dX*Pj8Y5U0J7v{u#9&T?o-y_fyqrH8O0FzEekSGon@Si|JM^ zlxX)|GNCK`yY3x7ASr9K_WrIwLRGfbX^8@z^K`WF*xp+2fWs0U?tbfptJ6ic9}@04 z6S}h3x1D`^pp_aj%-j265eGFnzJSN0&p!F&lhHr^!!L!W?c)n27y3Gtd2dJO-^t@Q zhNQ9#300Y|qjgi>%**F?$>45ptJcV{;XjD7Grq|~z301Wbpfa0{s0Fp$I&|Rutul$ z5NMa*&1G9+NNUfS(AD`pyhHP8hnLkb7?R(sa9Gk20*mjK@|K_zgn(m0SB`GQh+2*( zRsY*Zx2kAZ(NPXm8#*T_2O<~x9iji-VlEdLognlb6S}emvt8iK-TUM**8yYA(QEWK6~mdn{!85_^$G#lN%hVHwx|+H|9YZC zt~FrS-yN}w%iPc(r`fjoVnj;A}PUmU`LHp=n z#6eB=%ITmxYUI}jf!llKk_lb8-g)r?@ZBJDZcSKDOy9`ug9Mt5Tp)=-C z>^5$nGt7WclyzoW#a)}5ZLc#+F7#zfExkuA4K+X8-cr+4Xv=XfYOd&w5$)q#0oJKR zD=$Qb8KlH8D9P66i}9RBI{YceLa)8`DUeW=smQ(J1ARy94OGLoJr$K)=*zO-jRtLA z`4dlt+wEn)WI~tr{Jq@sg^g#^*;J2ynBp{i9vXNO29;Y;g;qJrCG4iXi&YJWfgbpg|{v7e|dq0PW%BP*8Xri<4mlrS8N7`m zN;455_b`)ldx?sZr7Wdar(QxrF!PTWY0irrFvPz^gxtHyKYqBP9Ws=F=CVSt)OKAi zN-AU@CD|oyv#u>Rv=onBqB#?iSxi!WUOT&ONK9r(2;NUV($n(HGfUH{%fSeQSnl1P zR#A?MEu@3IOGpUbq$O1|n!lhDM;&`+IJnY%>+@bt0sEeNPN(#cAC!LdDh^Az$=DE3g=eSoD#JnT z9Uq2;H-=J>MiN(rJIo69;@>j>O+}`s`nh z2$WQz+1v}?@KU>~`l|>OR35r`${%TWENxbqR5cA+KHTErRyy7rJo3H1kxN2Q2_9vS zPT-NELF;`VdcH>HI%TpsxE!xqI+jL<3d1TBy1v}nEoL*>^zUD8c?P(*oIkYY?!pCW zUY;1v*mfVM@+4vkI(N_itT+0=7?+`|qfl6(w%}H0c@Oy8Jxf)98cSVd^rwJoCab z5=<@=BPPy*2Q`-i=qX({I~z+!EGOTUG6AId9C~WdsEr>$;NRHO4H9%D!Pz$xIf`Pb z_`;_?lrj$B9|2AqCD+>t^;v0|5jEDIxxYoMTc%!uf`AEa@g&N?nn$o^x|*KR|I=1R znhz0HSbCVj3Wf-ANrmW-Aj+F@>27sCjFK#)0q)A_eTKE60U?yT(6Hf$bsKos3V$j> zz%UDay$O*F3x0asf|etz?N&HCEcw~>mdM2rhBe#$Oi6vDjGgq;v0=quU1vp+LJYHMeJl}aBo-7G>(&13V!WI$=4uCrWkfL) z6b>TutH2@*?#D3T$83;H0G2l4aY@gF-n)g~e$BRu;=r=s^?K0&hH|VHcC-^YFBR$R zKvjnt^lQ;v2SY#RJN+8hgqNz{)R^zO(6Awv$@)dVfki|@W0~ARh6Oj=5yWSoef`N7 zp9(ok(~eIs4%MIgr>6k@0O-%Z`23qszWV)Vpa14}Lc-EVEG2Rpr0znhs$=OQmO2py zkta@s_6t&@(jA~uy%oyRcwjN+`0@aMX=*qA`O{crh#&m9F zd6A`M5{$M*&m6^j7ylGch`yUdX)=-C-E-4c9c6AwB~eDHN-AU@ma==f*~c>0f1M^F zD}sD2!+6if*on9tBA6i|_KvOcZP@lk<>FB%ly|Q2415vt`2b8ZWc7oXPpE>pCe9kxN8) z_g?ZYKCC2U%Q}=UA2k=!Sux>XS&UWs8Io%=Bm}b*>z|gXXGn_8nUK7%gIA>;OC57O zT(hK;1?Y?Mf~HuDvVKT_W=MEpH_|VoSG$nxPFi#Cw2#jlz=(^KW}f|-PVzv zdv`o*BsEKx2iorLI5#1jmfcQP-gR@AL`gO~8rULbyF1BcK;V!>3&epjNTS!e-++I1 zzVEwtRXtU;tLhxqIe?Ot)fNHN@7XoayL9hlqQNh#P&S7yY;u+d>Pm-)P0G?y1S%D@ z;w*1LE-LF`A*<`Yi7mA>!GdXSFJ%BxT5BT2R{eaL&PusimD`9`YY`Aqx<(8is~=pr)yKP$v?+_tUNhcrfV57_p8V zi7pZ&O@orlnQ|mEzHQDhC!+I4>@xCQaX?>1zVoN#`A^!PbJQ=9>y`x-v_}2nfJ&Ck zhjy(INKil?^owCvj&9rKf#!gY9*8_e&$^?YOr&-_kVQcQJ!n5HMD2P|g#jC_UOyNk zwQKd50oo}iE?Nm57sca=cCCbCK?SV@e-lp2+O-lOMGEC48c4QOFeE6T%<_zT zN#)6+pmEi-+5CkX&__Z!>pF3}EqPEw-qW}A`q9g-Y`xp%y<5~7-b&P^`}H4wHsx6Fz6ta4$BtDT;nRJFkquKKa>j_?OJn!fQz~|nD)z{ z*KSwW3js+E@{IJ-U>C>)!Dh$|2A>P{xCPM8}$bi5{&JLyJ z?Q)hN;G*~8+iSxzScGdgnz1NoAl;+MLc4TV7_ebKUCSJd#=*;P?d-QGXrS#$jl|lu zJs?2=rKcRx3$W55TD#I?K;UDpQ;uE~%b4qE4(Mn()u;4?=TvrL?OIL`2AwNr6r;YH z6twOzmGi2clO%BqDsa$3i&TzMLhV{4$ASvRW#vc@3*wP}yK$N1LCuw8J{K-m2HKWm zO@abisj*yfZP!W>1YFEU!+~DA*(g&$M*BgZ#nY5_?T1A{1L;m*MBQh*bO$M+5Z%FT zt)NIyKnp_3fm@Pxt0kHPy3OBGHXSYVmnb0H{4M$Ms8X&tw9H?ipkYh>TntNFmioE1 z9pz?1E)vLGYH6Ty2%SbQ90UhNw*ye3lZV3V|Qb%V& z)F8D>9S;T_j4Nq#RX#S~Zd|D_VB0tlJ2B;K83zZ04n}??J`Nhcb|XIn0v~lke;hY~ z?dpV2gAzt(^c^{3rA6<9U{9;v=uF_Cg>e&oIj25#Z@#}DjAz=7nt#pyyTJ(5aHqln<&3sdhbY0EC`x2dFih z?9-|7U}vypJK)ivWLwU|^3~GT(deuWV9>FpU|a-GJGCqYiUT_O#^Cg7yS|Yi;99Gr zZS0m-D-P%=yX+ti72$o z1Jdfvr}7< zTJ1`e0l{+Ax>tjKFko+2>of;+j0sgH>DH&8^YUENfekbS%yw!(mY zdv;74wVnINbjNzo+n_5h)4SwrFMg>zC&?5_AC#@3LV86@Q>5r!?m=*NEN4w9lyjs& zVpO~$|6~+3kuz;190?LvbS!AAVBDRM>(EFhXEYkdMA8B&T3acHwhUy9+DJ(n zq%Kmd*p=y%;?)ir*CO4VBUDL(!a1YR3oljWR2Yp!NnP=jcI62F(v4BNEJZ8DxVG$e$%jwu+Imv_CCn>evKELhS4JVB`7bZ^8^~kUQWu<&sO!y&n zk&ErhibX-=rimpz>%%)(I!&WD!E=Ugar|N?RIeLVmyPk|-keJ|v1Ukw;w^fmqeo|S zX+YQQ>Cuq#AiPJGak1BDM7kCV$!q@4>B)C` zsf3yxQGzl$Wgil2S}H`Z_`j!`GN7AALNcQq`G`moObCix<*Io^Ysc~0?xMLW$q>Kf zo7x{74CER>M)~ytaaDJ*Ko5Mz1%9Q;3X*<9t@68^K|MNNl>RH)3xD zLs}P<4b!5DEy)nS?AuJ|b6y0qzKqMiJ|T*=K|)T{*rUN@Qci+sE?Q$P6q2jHeabVF z?^rUUBlW{a@l!xZiN?WZqo}EiHV%#oQPDUk=kdYar$rkFFd@k0RlTRmxAz{G{rRxi zprbP3wtdF+Q42z{R$yc0ekp|I;HbTFgoW}=YijX&O!v5p{=@EIIG@NtcwXk}NXjUO zROsHYx`Pqj^B4}l?~eMzU@I!G%A{liC{!<4RX%Db%5TQ-$Oe{CR46ELv!e|mf!H)w$dKQ8fBf9fhIi>s*QOvjkFJUR|fDbcVek!Z^e|96UNO>*2 zmwX8W92wHwPIzI)-C0j=YBwppRcWrNkaV?1{a$_9iPn8Ge4? zKAa86OPt8?45y5eRcV05!-x-MKy9XW1tCnx8(etNsWidBVZiN_0el%gtZ^A07bL3E z0?=VXP}iqLFnC=?T~|;Dx=MyqLeGjRWxPo7CaN;30Tim&ZSqX$z|PAe)l%nm#X6fq zQJ)D-9&qSiYt2MF^9FF$k_HJy*ER6-i6TYYcMS>!g%uko{&;g=Xk@Ih*x)h&4Gb!- zHRLaztA|vDQr^HYm2MsoYS-oyx<9tpq1DJ~q5pUH=jMYJAEIODf1==wh3fUBs+>7y z_-GQ8YT2RHy(~ifJTHSyg`8U8M=aLVOvLl!SdTpAl}EdK$Ke^5oTffQ+Q-9+8wo4M z!@11m3|~V6QxWxD1%~of5oA7!Q#_|@ua7pU(7ct>)Mok9tDL?)OIXHO=D4wqyji}H z9FOowgDXKAL~o(x^f9N!UcQPZ73nZnK`tTX^3&oqnnVm2F_kR|eXm@W%2Cu(bPX4} zLCKyB|566?ktLLDLxrYnt0}IkT@`&p&II$6d^fs9Pb0uK&-w4cy7>j0@#$Z$;;BxuTpKmc}xc|r4|Ltat4Lr78MmXj9( zUu6SH-@y;xfDHl<8^ZEHKVtVW;gZ^N%7X`oKH7Jb2l`2?Rf*FJBgjzxkUsEhBmFs{ z$MFWmOWC{ROiv{#RSbPPEI2ctlOt~4!xFju_33{9D4-Ux0H2xYBAYRTzVQ5fKIrrQ z_9!$p;}Vk!YmD_Mu=lL`p8w}}A`voP&k4wy5p%y@0{3e>!*KR~vjpxp3GVNg!2P}D zzVnhMeu9|cKW~3NqIW3irll@r3W0<@_p%th?2u2a@El#nDLoZbl?5LH@(nst%3GS# z4tXk}8(a8OSf4SlML2D|{VRY%^}73k^2Kfb6rvf^MoUrAvwvw9&0xlwblisSMwoan zNmDYRc@-)hK5!0;{25cm_NHaXSo%chU9-Q{?>Fe=7g5YuAhM7^P(8R|kWjo}f6V_7 zN*N18Hn3DuC@8qH!XJ~@b{Z-7g0XV@vLcz#JoAd4u<1m7Vn!`i0ZnXx0QJTz^0_)G z_PJFz|Lm1?U__)^PE-s=%TzESdLO;g5UA0R3O-4fIV{E~;a@}5q{Nk0S@GMa?g zTzpmR?M=#8{1h0aqDZ-nlXqTdBO+)}S@C`s6@rX|xL)v3M&Y1Cd1LkYi(NX}D58{8 zSsfy!rI6600vPG-&bsp5g^YQphpEz3Sm^rk#B%x)<7tu5TcKmm^kHXXNN>jdTi~H0 zr&-d$b=(3JG_FIV9F1s)_?f!#9Jsa4Y1|W10TGI;P*lT!Fj^T`Sxk5lEz5$+~Y65&`-xni>L zkMm-3ygAx0!^q@}IpX3iaL~HtYgM-#Ia9t0MG1xOC0{qLTp2sPiE^%DDBDJnmg=h@ z(-ufe;1DO2@NJqcgjv?Ego6YH)YI)^7N=RedTLS7K+fQcAidhzjLV122N>fqubx51tRW8glxviG7Fm>4ZpB|B*`$~ z6Z}lCG3?S@jBZxYqUuq(+a1e8B01d`qT^dofrbg6rA;_ePjM)7L^@=wCIhHb-!ibVPr~j%H_Mwoql|v=UlwG&% z(s2{IGB*vJI$a@b zV=um5EcQTE%LlRl4C#jTruy=i(dhsvOsJ+KH9qEWv};-vod>$~@9@7j$|J4`qBQ*Z z^leQCqjeYtD6loDS_kI*y(9SMY)#4@^+(h`Zqi+b$y_Z^2;&alfN^P6n7WoWb$h;N zEEo3u=NquklY&vV(nkIC_>r*Yhc{piYrqUu$Ku?kpKRV2hWzwq3?UVm@_9N%$oYRs z*H6`DIbqT68?Z=-!LSe0hV|#c6GA_}0fUqX45=u{d<>TA8r3&IH6` zoHt^URf0(sEmCaGn`n{b0OZSbhM}+C6o?Xvrb;MnLdZy+Ia?Lc(C zjRL3vVe~1YGtkizWp(;L84nnM2&fUQs&SKPhfa8OXPpOpS=@}k{R1-@)2s2ZM%XcI zH5mq|sw024#g}&`8*1ZHq*TV5)+rVUG)%a{*){FH?x=MpZHv&&SVRQE#ysRf>;itN zbc9UC!ZiX58BKzKjg9&^k&kU-+slFuFhpFiAn@YLqx5R21`h%9R%{f!@tJOOk1n06du1Ok*O0P5!de_a@wBkk!mpuHVv*1DZ znz3P%5DbY>yiC8P1B^w7mX^&wMRmy78w3II3vrM-{|ldU@3QxXukQ$vjPu(ntXA+T zU|&$*vzs0|b}9>5hUc~bZZV**3OZdd7uIKV4;2DTg2q{`G3fuvE9zVA zXedgX45y<3+yg=3a-a~VPsW*mN)bPWKKg}TVddrgPWL7G9^u0_yX;zwKbBdZ(Xm;U zE>m@6#PgaBqmDN3&VJzy22m6;PA6K36c$LMI6wJdeEcukcjN#2>z60*clUaoyZ1JP zHA_heyGmThplJEnxUlz;4psro3_-bStM`9R-DD8jWAHCUa~)b zNNxE}=o>Sm5w`%TXK_&a%>IxwoUUZBSaot|TwAk1sa%PNC6{f$C&{ITjN!B;NNLA| z*01d^pLJi|r%~HvFy=k&>WJ@TR7(_Vsa~f5dp`E<*&$c-)rMru%`7Z3Bu2x6bKS|L zd)!g~E6R38U#^21F-HOVeR4wAxx2k1usO{f1=COyUIP2_07_#Zg_pqKL`!2Jg$MA0 zit=c5mv)B^^b`@d6u{3a_>`vZawja~?goc+NvaVcHZ-^emJz_7*VZ17denf6 zB9L*jE3nr?CjL@K3!DXe4Nt(=AMG(+?gV9rY(55L=6983}=H6g-H>l-JOSeG)s}g`d zdn$`|b6c4JC~W;Hs4y*TWrW0*>Jw* zNQkE6UBNAm7HACtT6Oqzt3xD3)9#eR1E?y5z9u4=O-rsp0ILew{XtKrY|}!f06?k? z<4-szg{@6f)k1*QsXBNmsEt#V!UOmom)ZwE3*PTChPi%$rQpC_Qn=T>VmwQEipyA4 z5q0;0AVEZB*@M?(+1xhGG6euqW!Xb=>pQt0ByQ6zvk;(FmW9Kfrdh_}0ldsfgo$v! z)p>c5$N>s6D@w*22Kn1l8IK!C4UYqXRsO|y#i&po@+mt+A3HfgJK*Yak3E}VnD*FN-gH7$D;J~TQeRDs|p{AX? zCIG6khR(H?3r=7R0@#aODD-C!>6DO2(u_r8QKUQ!@H%DXWUg__x_OaKgc02+Ll6rAT3Z`FFw)ps1^}sQ z)gzfzP0K3<2Trx8j}~lCIXr-BX#co7dmOskZ923E17Kw-`Ft0Jv}w!F;Q>^c6PejG za}+=zdG%Bn*%YY&K&raWpY)?qT+_PmD1cw#Hv9>BliI=au)$ty#@3bS20|8u)BuUU z{9!<^hy>I0rUN9O0|8ZupOm9vNr!<&>Ng#fS_sgp;Drr((}Kt00aSeieGp6~n)VTz z5JER)huZ>51VB||^HlaYO&c2u4xFlSTj7ImO{<3j0I4!(tCT)cnr04%2T*l~&lc|v z4FXt|=g+!yoL3airrDzjfNERm-dW&gsc9ekOe26*X-cR_Ap z319%MQgxdyST2^TngFP_c1D{t!NW9-tu+jQwYAjxEoiMG0ID-~lhSDFB*YNwvx4K~c0wo?iqk(3}J zK^r3(0Hi9X&qv+Kaj-t!w48zguu9V(4{0M^7~3>WH33kSrqNzd(*#feAeEhe8Wcl0 zCTwb_CIG66zxpVe6E`jXjsm!{m@X@I<$SZL#hL)9s#COuEi$WVo#OBSswAKf)QJ*l zY11Td6u{N0XHT6|J1j<1Izu4rZo29zNf1$0<3(}&s+`EO(X?uS0k9fozM>sXddOHV zm^2+`S_sfI7N_0PLptZK{z30Wc4ZHoanRBt%${`&gxW{yr-QO{caN@ubZPya>U;l3 zeiA5{0zAuE;U=L$xjrtbD?Y}Cx%w>4hZVO%D;|(T(%GXja2e3R1o9d@n$gE_CgWhAVXTvvL=|2pgdjur zny;&-g3(fA&M6vge2uU}L;0pvW(O&>yj2`^$A{qvsX?sSh9JfvIo6)=JFN$k?$MixZA6E@t?KxND-8Z- z$sZfkuw(&`@vz_%q_;UF8P-DIjGYE%BpSU61z18Itj>95f@ooKPAcla>v67Y98_$M zKcpp^%I5vaVlj=_P^ZlW9mj`rnxD#%WX1`86zzQ#TGnVojFj{)sz}b9gQg}qi*(On zpb)c__R(O!Bwu558M6#my@=V*99TxoF(F6e4V{XQ=$$|jvkcdfP>KtRqCw+hXz)_z zfIHvH!m_9KCIfnpeRdpYZ^jEZ&`xBp zLePFt}>_lOHXFk@=aO3>Vk7_t`-+zQnnseO7As)h^I z5798tx)arHcHUzvvp-yF&^V==hy))t+>UKX*X1UiQ?i|MMmPajVLRfT?zDABJfpBO zuN4g%c22%?NTq^iLzOK@lk`puPm_FDq1Pd3WnhP{mQ504ss^*MiZPW>hOBKdT-y63 zEW>YHeJA9wQ2Z?l){o?hh29UKk}dnk!~(#7EH(f-MXAcNsGWUdmQ^XivgStAxZY^04RU_os(Ec3S`0vyKo4y=5MOiNt%!8)m@yU)snFGf zIjhT$Vvd6zFn3f@AqpfE-{0%+b?)`$j?JCZ8vqWbG7{kdyr@2)rv1g3&T`4c-Hh{g zlIt+Qzq3d83`7mc*ar^o{woB4XZZEp_<~!8snc11M%Nns<1(R)U_t1d5#rmYB1bd! zFG2yu0QeG}j-iI4JK?(`>K_81vHD~IDy{5a76+wk_N(uA9zU{Q`yE9_eYFs&CXi6P zZGTM58x%Y7BVRYe0j@7;t6La8Pn5hRUZoFRsMNzO0Hk&Km2fn$efG@%7nMk6fCIRGQT4C zVH53adB_b}I1|o{9ZC3d322S(gV7t%1r)khOnk-M+^=0ZEvL>HKc)f)Eu^jgWn#YH zE^QM~=w1!t7$R9Em#*94) zL$Ps75D~kJPLZWV9n2Vuq?Hs23Y1$z^TZQX_QURA^tdZ;1!WZw$1u@yA6O_PDa*WX zXNYv*-SS0RqavTt;E}FO&S}7S_ za#)6>xcETT!X+;oM2$n}Cpcr>#ivB6>tPYoPy7JN0S__|R#SsF?>ECy?CCAJIQ5q$ zZ{di&72`ci0C0|++6Y3?k$AoGK$@MY|Rg{Wi;?DJtnG)Q?oSG^#N z^$X#$1}T9AO!+j7g!$ceK_?(a!PS=^mX#?wx>f_mM4gj0My_Wst8?=3l_or+ZN|xT z5RTZEWrBx?2~qX5>ExG-WmQiLhrF1GarF!@Yc-q`F(O$r{7YQd!eY2R_$9a?m9aA% zLejE|jMzp+PPy@jTf=4Lw}*!bqCMystii0A%%XEuuh*9 zsWdL*eU1dQ%D99WY@=Rqv_H^JbtfIV#xS7OZJMal8PE8kzq~wjIN0MpNeI9aE=TT% z8|sgQkK2s>cL9oR5NN1>E&@GxJ)>Q`qFSdY89wR75rVN0;@htSXE(-VL3OgngX?&)BP2Qn-BToHW#57+}A$&!_gdnZtMuIy*|YeFZ^jvzfNe1mKC$=J1|RHssbtw64ftxCD0@wl1q|4Ih9g#xvq5>*DB}*Z zND)l{^n!)%(llGxn=t^5!HNR-Dt|v84PMh}wYZpMIL{M&0fNN&o<8q%mz{zO^D~^= zn6SDa`W(=2nP1!+96X?_g543VhtuP!;kBxq4I=MYRy7p5=gdzw?mv1YB9&7UE(Z)K=TQL#q9oQF%mZ8Z!E8tAKfyZiLonq25^*H?iA1++~) ze)UXbbi1}mb3k|Y6a9DJ3VvJrH7ThOJm9r}0+Esm-+r^KI1mX6t~OKL{#gjLtqlqk z^M_^d8h2a10)dZ~uSajvjt&yFpQ7~k}E>3N$-q}}+&v7qA8YOY#&e}$uMT4@p#Tn(91 z$zDngQ6TVLUhv03L)A7f3@WV=G*ydecx{!8N6=U;qT#hxUT#OtRqNaq?UknxRq)md zqQ$ywTah_`9;sybxJWi5j+V&vxFKnsBULTQ%W}|P(rCw^5D%9puc9Ga+dR=ED7dyt zeI7)kZCeFas4_m@r57&4mAiH-js=zLwCy;hTWGwjIPUg4JM`bZQtof&Y@uq3?yAy6 zC|>H*x>+2QR;*34 zU-)TQp_4HTv%!NXX&6+l(p{p#QFo~KT{jXt8X32zz|cx5Ammo?Q+hb+XdE0e$!Hu9 zTquDRizK4cTEws-k^4HnB7543fCZ78h_CrVzXTL6a%HRzgCo){fer~*-rHVzy zr9)5x(fuxYqXIIP9K0k)^5y8>@t=!{EcC4 z(*ct>)!GU<8id}7PSR!UB}!iaiU8ilK5csPQIPxb=4Z}W!i3hzBTqan+P ztj;M=DG>{U%niuk1Sq|U68Y!NX?s#?ArqqK$)!h!Z^iH>L=mqH7snjdB%B8UdWFB< z98J~kW!OJuEOZLG&w;?l^oto?6B$lBJwArWw>&!=$@`u)hfOTxtL}I(DfVrQYS6IY znho4hx7hWKQ<01{4Yv(krOX%G4HAmKv4J`iWxn6q+2fCPkER3nFJVE=K}!p(vYpTeEv-R(>r^syQBJc}-2yDzNLi z<&a(EP6zp#Ij*pwE3NRD(7bI!Y0djoP9}prsxg5Z_L_rW7EvcGz)-(wgKBj(`iVTi z*SHR{;p?Ow6}q3>aGm|`sCT@3P|V6Py$i{Ie5d{`^1kL?i6vE7P|1faA6bH0mDpu> zM`~Rna`jSknBFoftl;&IfDHXB{jxVJ=+&qD#oqkj*?bh<>C2f08-#A?6Fi8mSh2FV zL!u&;b7ntDA;W^mwLs({d2|IIBAO)WB7u24GELu-mq?V{gv-{+bvZUu0X>gaYZ?JUx zDrI5qKh#;P9DdSaW#xJ)ylZ^;ri_hLVe4;eZ6)W1i6q^7V^%sn*q1Jg_i4W-Vc7D^ zq9+84K1`pSap z1{eY8o3`MHx9`ch20fgnws<;h=w0`>$c5~Ym!kTqaGDCNLU~ZXpZCcHwz7x+B`m2~ zoRCSAwj>}!{iewiR^Ovhl@jMskI>GZq$RZ_7s`ITX``E}0>^uk|0T2+i+4zdx|xV6 zdr^c~|8b&FX3sg2u}{%qg&B2gEBGm(F;zsB4(i<={!64qh9fdBKf}^^RG|QCO#7~^ z8I>dXb9$pYZPTA~8_#6w)a$@9zm)Pyn@S=+S|n0uu~I6zP&RWk$_aATr)TRA3wpOs z{Vmk9ONn85xl=)h4W_L6ztWvp!it)ORM|?@TOs(c!{mZ*N5X>a`dV*+Aw&CyF4rbZ zMHXcDT9wis7|Ld0!UPcsUm}B=4cj~n{iE8g>~kF60swrTd{@R zI*q&J@@By_RtQ*pk#~=JM`L<=WJ3QD=!}yN2(6L?e;5=buJGrB5iQWuan@n6$^Q~M z89NUSVUxIaJIONiDSL_ja$7=fsVL`-kEA3vE7hYyiBB9Uu$cTd%n zRLFYqz?Uba z90ugG`!kw#?sXpSYzgx-8aoqG+wLeJUv%W%ok!b(o^eSbO;;o++)y>19A-^BG?JK+ zR|i_4IxOXj5jjPT?mEvDM#sheDXEbC#K}(8LKAJot0$il>KQ90juxmV;V|L`onBDW zgYTX^SF6|B|CQXM$v6}SjMBy*ArqoE@dK_8m8uy-6L5rT1cmH}^icKqkW1-KNn^nB zfL2L{+jJ2y*eK4JY*~_4uI57f!oe?tapybwAMW@>AFsQh^QYNd7MhG(s4BP-k{~F2sD9EL4%pov3(>C7 zh%WeqCyX+tC_c$)rqPhU=?7x@X9aD7QTr(}Fk^1!bCTi~4C&i`5S7FgQGdceoc_yK zU(v}GYQT=ELoU$PkeZEcKEAv4ji?|QGbRL9 zlK4ZDAaF^1yt}m;+D9`DXA=(PGR8O#2GtriOt|Snu?gJSCe$

uz;thlzyF=qMd45#az01A@}c;txi2^fO_>qNO`z!-OCWXkt~) zC%se&Uo;H@^eF};{Jt*B0E31BAG)05Qm|bW|BQL7BPGg!07Lwi3&P^Gy2H;mezr3UU$GZsXLFlzodL8FVY=^Tu5IZ=;2=H9y?IDJ2{vi(JHd+0&>P* zhN2T7jfCVSNYeVdKIJUxYtFnVrRHdn(DvY9L`&}zxgy*^gV@fn1wur(r-z4Z0*>%1LQU4Gl_a z#CNt@YG_bOBeB=rP9r!vaF+9&JU~o0pEfN?6jE0^M}XyL=sRw41L)VM7f%mr06sHO zDw{D40L+g_&U=FXN%3k(V?ljaP!`OLT~^QZY9^G=)351`n?!^%4#9XzjsfyH`gU8r z?i{54?;EAQMSy#OxP0_AVRDAI5YJ=}0`{t9|46&FNilm>PF{!v zT{Na(rX|091Bq*ykd%r0txE628u zl(A&2!mFYakzx&XB{Qgh?KD7w#ydm0XDo_g#%M*JY*Ga9uFx5g16smY9ZhPVCu0Q# zh(qe!$$ya9a>A$F0Rarvi{6*v(UgpHm$8ZV=SdYtWvnVhzzU<(bj*{1MQag&u4#Aa zk1Xzr)7)Gs{Ur8PX2aq<> z6-`*iLGpx(!dN=rPNYW-=#bmqu{_e3F-1dQ6%G8MNf5XyK2BXp&p6NnMyvxMLBG+LG$ArE>O#PJ0*j)l8 zijaqdq)WVnCx_OFXIK!irR^wu+oWx2Qy}1NY2!~*Y1X#1`87mx#m*_iH+inski`XwMsP9FOW}ZJ_mVkFd~nSB3?OVO$XLm0tEh9!{4}j zPr&~~21ro2VdC+uOHPIE&1bW66#IzFX@_H}2=nc@KGMEA$%_P6X!M z3WL*4vc7T>DXLtC2bmC*w8PP1z_l=(TK*8?8HamANK#yrA^dR|<`47?F`si(^M7GL z#(Go;OBx^*V93=l>?4{u3;m2G+>nvfS76BA2!m|tk}Q;$RSUp|c$DjLqAx4gHMvsw zS(Mt#64qo0M-|Q0MSsY-tcvF7FyMBW-}*jGobVYpTS8Q_wE27(@tZJY&)x@SC)la0 z!5PbFAv9@DS_y`I5i-1=C)XP@R$@csX=YiS|Nj4e^*6ub|ATeE4pGK&xV|;`SbGr{ z75CpW#z;X=l{7CY1hYP`HH+%}YdI>+*z^dAryHeZPB-ZZ9q1$f48h@wrJLkrVA4N? zak6Q;O-|>@iK?39q%!g6=9xHE$Xz|*(Q99gej43~?BIZdA-By^i`{VNu4U zSO-;E>QjI|KN@N8Jx`tlPJl9ItO%>=J_z_#{Dkq*mD7yXe1wlA#EsJx@;$f5=X7}6 zU|7iKeKY382(DEEmWzw|f)AC^j=HSwIdL)Jg^Gni<|2%FqJA#&JL9|xLJJXtg2XC* z^h`M%UQ$df3^M1fOc6-rl&w@^(Ve-WUC((h@oaR)iPPYqyMe&wtMn?Aa>>(qI%bD8 z@w!CD5}{?NOt63XMCe@$zD@W5%2)`okd&Z7Lh)QVrDqZ8jRm^lDGFD{vLpr73Le7e z@`a#BgBNl+qZ!vCz`aPKQ+o1{-j3t@8N%d@_RllfrwBS7Big0S#&9IjknT}HUnO-q z33fzl48z?iInNi?XRK&@)=Lf)&W|a{c|DfXP0%yy7{aPN#UBa;{3ZJ-y(02jedSMF zGxo~>kQ$Z-p;i2Di>}2)IvI^C!b=^%Aae~rQ!>^HKTa9-8<1Gb5+Qg4zhyyl>uM{^ zs*Iz-z(kTh6QWn}YyV3>jv4zkKnOvf2eJ3ZeJXwZJyH1XoIX_IU>a`119)XT=)IsP z@wU`|^np47&)AqZ2+dF6pmkAb$xX+MweCt8x8=BMe)D{!{~SL_={^YfPsYc)d?rez&vDPZsjj99RIp{^lCjF+(R6av(_zKR&wK#2^JuVN#>>?i zbw&qQiXjOSSM(QD*viRZb{xxOv^0^7q(SPO{#`7QG02Q0GzI8O`g?!n-S6u&N^>OO zvmkR}LMP(OBf6c~=H{#ktg=Ibz`tTX-ae*-zDEg_jK(;jB5=@pmwp&L>yj}`k;h9k z0>tx^Vm#q-_%r%%(<+IuI(2*y@GENWqUS+$+(Rm4R0bVf@k0_Mu1<>{wY}7;RAoTM zAwMv*QVIyU>*Re<9b(Yi8QbPBk#rdj2_3~qCZQ0$<$i8FXC`$s92+=Lpc`_N(l5!A z@$d~uOD?2uIAb4F3TNDjbeJH{k_y?I?)U$uT9{;nGdz|#PM{lLA?y_`a=e;O=S7N^ zfI`%Zt&Zo?V;f*0e9a{fB>%0DLynC3rGo@%>@y+xcIb;fzy7}4tJs$auXlF1M%b5Hp#6ltz&zs-IIvGnp2_4M= z{oM4BmbyFYe?^LA3@LO_lVFYl^t)4fCr1wSzCC?L9}HVH1ITOBquIEx-<;>`x!bYB z(ToAUhG@H!Jjh+vzvOeiwDYRBi~UhiPN`A?o|b??XhjRD^`vO;JEvz3RU8Qtm$U?5 zz@eAL>AZy8dB_;xMakx~AhYUZ5}A`R%}c5n6hzMRk9eH)h+-p3ZN}6EVQrpRP=x0Q zE(NbZz^f!;QT{ZV31^lm4liP0VUYQBs%}vkFS65x%(x(W(k{co@ zTaqXm87I{QCT&4bP`(gBaJ}?dbvk71`wL`jMTH2`;+6-#wIu}bZ<-DL%NgSPnO6GXMX~f5SMURAloVH+}fGyC&A+F zR6^hsOI*=;LzXxJSRzY<``$NT@zUV9(3N@dd^C8C<}A@dES?t$0azkiD*mCaJ_$P( zZ>b_YthhY=c{rFAUss(l%~(wWLDz>E2dRtr;l_LtURcc;HW{*%(I`lqgT%A4`K_oF zpE-bEolfaE9jz+O?ibVEWS|Z{h(0Z6WJ3%cgA@!>7g$Q4eY_XAA;@FpVBH0>P)a3s+-->xa;h^R#p0Rud2-&UREqP80f;L3J-rS1nh zLAI#v9tQXo&R${<_K*2NP+2r{76Sad^*Inw_UkXA{h6j|?_q$y#(PAxcR8S!s-Cd3 zsNwzaEN9MYnuF+i=Kl7e(0qG3lWW|~SC|L@+A7ib%2)b5%AEPL4sQ$(SWsCpD#=aw zoH`tfSQIoakjA_>V@HnkA5jl-=Fd7XqTzwSzdfDr(RL%>kuzs0XY{yu;*L*YPSn|eo$f^W+3@?~j7&msm3a6AtdvM}>|_BE z#e&G{tQgXvZ(eZPQU4MRMn*w!;dNv}9E3h1N5QksbUx;TLHyR%ptnPxJe$*ErEJGD zs+3|Gy&5XCZwl>=VbL{DHHgS&6p;#Dp9swlg(jV*ojx7WwrQJ#eHE&b3EefJ`(X5P zFeyjuApM8#)OD*vx%ugLke^05u?)qanZ zRUQq)RJa5YdY5Kc>PtFE$QXe+fL4omkowU5veq3!#`c0Eg_>0^5U#i&G^2_FJpT;hB5i^N6Vo%eFc-D_`J z@T-!|5s^cyF7i7nl&I-BJzABP!9mDNKK9bryfdrRQM822u%su`MRXR)B~63O>Wox7 zdRDs2{}wtK``;?OE^Z+S8t3^pgIQ;X{v(qsWA(&@wF;I4`q>%nMr=+u?|0@#er;MJ&@C8dKi*KL;TW&jBj*hs+V;4nq5iIgl zl+neSz=3#-h4yu5_eXRBWYkYN-OZ5oDMCBILe?ff&*p4|Q?8RTMm4E8C%I7n80LDv z;^|}}$uoMmQ{+7`^gm1J^YsVsr+#aiu}OG}4FMc>+(_8*G+f!qxZ`+=x zcS^6ad9Bd0n%xu@+Ew}DB_y_DLQur`!E5fJ(&@cuj6*gI5RC=P#~uk5t+$Q}Q9Cf;%&CrZ&N^FN zD<#PgU-io+??s9ZDdTpHA3iGA3J57X0N{9jAJyEP#f`f7X(Gf#PHv9I^V!qUP~JdT zG$$PuqIOQfF?`hBD~56TX)vcqR#p#NE&Grk4HY@L6j_ahtY{iJJD-%Z;$B(GDeIz5 zqX0u%6eW5=KA3_pT9h;qVxnJ7#&OYp)j}aD3X(qg^SBtzmztv<7P59)#3gU5J1Y9x zxq{Hmn3vYJ2|gFXqPEhW_?sesw zYLhl66;YoHVK=&^5ZmLyC`{cZquZ1ym=JWekOgPQ!J{ipI<2IfB0@|Q9xlz%+Xai} zq=iD#wWnm>kAwa}Ay+q=w5O>E8YJYd%_ihSl`6)|VnPc%v@=Y;vgBG?&d#8M=$et_ zLGGNEqaEYm5@NRG~y3~`a8I~-obcF`QwM2Lyx zRbO#k6@rT$d=bzv}oq z>IcI3oHLUe8%P)yR1gbV%`cV`3j+fGnu!H=3pTo=mtEPF<_xIgs02Xhorm6GcPz6z zXY)KEqd1@=wGtW9F3*G9xMHl=A1Cr8XO%Wj>A@{gfAflD6io?)-c?_3lLpDr zC5ODil9aQ&YPB$Oi>fgXYFyn^TE6NI)a4hEj5!^5BJV5P zTzx4v!S+GB+;=RfpuW~L67A}10EC{4)ubf9xFgxMw~ZB8P~kqFi^~QbV-6?IIcF>5 zdIJ&^(3Tswb@vCst-^L~xle=Ac@vlW?7~G9=$zqI923m}{T%3F1agjXCg6+#8#RS? zSYOc{n`ecbfwrqD9t=7tQx7NQFU2VARoj&*#|l-_omx8;$ASt z$nWW@Ow?JnYa=ZR8fQ$Y3VM@_S0+qAf4D&qaFNs0F&|BT2w%Ewmj{jo6{L{u{{7)# zyA-mhq((T1SU|%cKOi3D)-X=2b{ZCic%c1=HtgE99|{9D>Vlb%ETJxd1O>F>=JTjT zwQI$F8kEqAtGja|Chb~r%>f;~_~W@6CnB1Dxoy{r2SDiY%#-_9^Yu1&O`{fTeQ^g8 z5}}B`#C|WAZrk-G9xT-1iD!Q&TIy@3J|MZjURj(lu(Q4k}VB|q+@_~ zJqk!rKs!S#5VMjlQ;6c-uAQ+cXdwTe6||K$9grsgq0%m2JQ#Ekmt>J{7Z;0y##vK) z!jVeOE?rz>m;y3dnQeM9NACT%Yh^SCbd*`X6H7O2r?ieCGND~->C>QuSv|hHM^ini z)oz|Gc~C=ZhHvQ{L-ZJ0&dx<5Z%j&o2*ogd4~Jz}HfW2*PxGqOHb?#7skg<{G!JTF zDWQkjmRL%d2Bk0+pYf$tp|x1NG!JSR=|ndo+KqG+2J8!_Mc@yEF>~IMbhtKRK;T>3 zX`xaiP)pkx12+1X9r}>mDF}SK{skl`VARi_$311cQNLqB1wG6U-66S*jfR5ldKeD| zom=zKfO=wb;{d-f$vg5HhqWw7&6ez65f;j8_9vUulAk;3tG8eWWzv9*7fLKo8c;=t z9hYplq;SU8lm$p(i-Xb?`$PW9JYv*vRBREkmI0>K^kE-S9Wut?HEIS3wafOW9JlTH zAb7qiqwTYVIBJ>)tsC~2+_11-B6bT< z8K);~Topz}I3QO@Kkgn3dT&J9ks<9$ld>&RZIaB2kchB?Lhy5$K2OTg2Az1~1u18o zUsE&OR7+yQfTRcv`d9|{e;elhv(qm#N!Tg2Fdt@oC_~ajNIiuWWk|-oV@XQbAmA|I z)_gK#&sX|2S6Y##lZ%Pko^kk1fV6xi8tR{jK)!lB2gu0=U$EW;&4(Q~g&pcC*hC`a zGz0Y(_+)5*T%{c+L53q>0gIEsGoUU7w(0SKRHMIm3i#x73V6SG6DbhkVa4B?q?>5x z`F7u4`Dwd5pB<+BG5lvn+n|dCuzsH4GaM0!q+r{Z6}H_U98m9EW!(Q=s&TOvtotyq zjvqisC05QD^Yp~>>97Fp2oiLoOHUy`+}TQ5k#WC1h)*iZLIqe7rUknfPg${?wD9S$ z04+Mwq9Pe`dX&>M!-GQ~?U~i@j(W$>$!igLvk11eGaRgEWW_@%06W5*;M=BeE+>3C zEchZY{`;Mst*DCoqnOf5&7h#+0Xwt}j_+i++zE)O+QKGGhm5B@lr< zVLjuYrt)k#EuK$@1!3#Yzu6+c!LP_O;^PCkMzx&QKU9DvokZSvmi#!F9hw67tmqEq z&G!D%%1)gkEdBe_Emcpn^4LPmg}ZOcOeY5$Q*G5Va#6*;sZu3ud2Lmw0*h`ZQf)hB zO8!V4-DFj>Y4NZj>|fcXQ!ycD7?dhOi4?;zLXMOAq2a^lB0h9=1Pvh!-nfY+C0-U9Z|jWXLxl57i1`7evL5c;b4Xj zl^_PGO5@m24{OZx(Th>}YLrU-<Zayl+Y)1uSu(^FLYdMPv^s+-9!0*im!_fb7#x9-;uB;A0P`E*-D3y!nPLKV0 z@8VBUT{9MH5l&wtuzv+msNQ;2bYD!0{mzf{UpoKAM^)%;gz)n3_oug+0I5jgkC+PK z%l=Qu-N|7oH+M7ki9m=H4GvN(_#s;p9?QtsU_|gp$3L8L8^2-^wJ}(clo_4`fQke| zE@HTf5c`8scSy%WM4`#p+(dYxXkm~!ho4b_5egaSPY_fnFbD8YUri5aP_y4TB+nM~ z?3R83edD{$RJ)zgby(c&X!wQwqk;`1K1%*DWkJRbZOf{(0AR@9wn1QLMf`IL5t1{h z?r|ahNhH3xx$XVVA46sA4_I1KU!to`&=xVqMv5^<^s%vwY6I7H&v!i*J0 z@J=zuz+uKs1fwe@L*<_?pDbjvz?2(d z;4LzV9AJowmC>$;n4}G0SBh`n{pk*+#TyX^8{)rZlM71lqVr%_@WV9hxu&!6yKkQS zIH7|b6M6ODZ2W)1N(t=rQj^dl8rcr9GR9Kab8UUM*Wcwr3-s97Rwwe(;lq? zQ!28J(=at@dK1~^Yr(8fU9|iZ`swkbb`xNS%S@a+qZJqoN0|}V&A*Yi6yZbx$Q^TN)wbzi8G{eKg zgeW!0o9bY8OlL*PAq~((1zT2X1QIaiqc9GYn`IemS|KZ$9zpK*FQ05j_GESnP3$o$ut+s^GJQ5jN<1dT0iVScvKhNT z5|fa1WJq)Q@}y~xN?jm~$I2NSAQF|3mvorGRm?L%FD$6dG7q}|Y{j!&1S>BAM-m)4g7#E}&h4>#yvnm~! z#hr#1H~Vv)?V>d0jW;}4A`3%4%m}hhuVJ2=K+DLw8YvjZgCQ?keuzXeHmIk2}{4OPv zv3rH!LI$jqNSlYZt3<@Z+t=tni*QD1esXa->;KERzt=Oq+5g{PzdZSy&qSff@Q^|P9WO^(|I9|` zUE16W{0(Ll<`h$dkWBB;0;Ifwow1{r#4-oeclT&CC~sD^v{r*Gw@1&J%gJ|3t_Feo zfyp|V5*bx2l@gW(`k7wxMcs_e*)$%{^MX&-)8fP^@FLaPdcy+!-F~q*mww$^rnv@z z`+k2gZR4jXl_o&>?D4QG-`vUASgBwu6xi?d=|qvJ+%0R2;(+>IF^Uo+H zsF#sHiUaEV6S|Vsok(!YRt6}r-RGlkE$f#d`Q(?u``7KsOal4s$y^$oai%X- zU>O7Ed((JnuBEkx1oAu6Ss}|=%etUApuRVYhdwRsH6)PVpYs8)U<}x@v;hV78FH{P zm_|Kj%Mpr$f&VVK>m101rX1Bw z32@6a&>+K|pIqSSNAIX#>X%G-_Hkox= z`HGlB^5m*#C03w` zXIsa$1?jEzdxH0mjd+9p?>y22L8>X_b(XC=*FJBpZwg{l+wOR_{Xvl0+V&TZC_PoT zC6<=>_WDzatm&3&6R>p5x7MF6CEjkm;;r>nXL~68G>e_TU52ZfsL<@Sx2)H6119Hab`7|^M zbwsbz2!V_Ne1(8QVf1oc$6!>h&&ZkHIxj(zx-8on+vycj5f-xVDcP=w(K0ebb7d3P zp6iN~=E{byJ=ZmLnk$>T_FUKC-KLBj(*_gm+H)-M$AjIUYu4Re2J6=LeR={P6x#}py{vs;Mvc%kk zMTp5Yj%A6tB{m^ezLA)@NsbVc3oXlvnOk@fVseb0fXSw|T>9h~8W#bZ>r$Fxhm?iA1wtaxGhz=x<08HXpm;Pui9 z4%Kr9bl!lv!98027m68!MHMvA;?Fb;3YUyRzhDb#Ye1HojP=M$9oN?&8v8VcTUs;} z4AFo>v>v!f1l(ZmeVt0OPhJG=(#D|W0CW+wv-*s(Ix4LhE`%%dlq-iQp_c}u>6o0v zP$BIX^vKvymYBL>w5ieX^xqUNSq~RqOEqZP+lFT^5U!Q9%2{1ITj|aUM!-AWm zDK&H5(Wso0JQ>hy6~Yk_C?Lec+E(K58566%p;<~6I%S6 zG=1k?LNcmEqw7;e)7|j{$|;CH#DSoleB@qunBI86#u>D)c~w;6?m? zod$HlgzLfSE2aotp(c(EdQx-~RYq)aDTPF=ykw;F6nkZG4LIYel2an)_Mp$=m+NwO zc5w~2PwO;fQD0oct-3l5+4wH5;ks?7A#;Cm4fjZw(~!H9i)*+%zc8b_nS9R1>`B*MFm_LwgSt| zZ&!G&fLxPbGzPBNS^+uBUsS-ASSuh;fh;QEN~;x+&F-QCu9&XQ$`{3mJW0|}tau%c zj50=;HhkFf8m@N`amD^NafW0WQm%5Gb5gQ%Uxtk9-aQ#v&6gqLVsnAVtZJ}KZ)3`a zvF1Q5_TP2jFngFtgDZ^fR-FX3i?sP7n%|s(q%twBQW_-0&Oo}3PU!@dh*eH6QQbg*2&oTDS=$gAOK!R$@=S;cJcdaexvfWsW?wVQ9Wv{dt z-L-zV@s=nJRi-^2mC>kwOh>JY;O=RL+i#%4Q{DL7O02sH-xtxBq^~a3ddGeI{r08W z;Zpf;Q+CYC@w(b)`=7AolsuuFiI!KFnig&Xcr}q0a>BnvR2d9FhmeVDOl6dc>wpFj2jsN4-8p>G368!mBVsPkJQ+C_ zT850vE>A`dik2bcvdNQ?UWt|=)Y**FinTFOK$K_~nWOGNPKOqaj2i;7FEyPti325z%DCeIPG)>e4;w8v zHm;{UgV@NrxoA9Gy|eYr@#*NCbY~`bY!-6?)N;2>ia?kqCsYP*X=D{`)_F^*6ub|3h1I5uw)C+nkL+ z=n747HsUOP-2A`-LRQGQYU(uPo<_zd{3#l4N5g5zssG{{Zu;*u@PN%evs>iyFSa%ac1U^TPqAMMKN+1=g!IeCyOc6SBu>qfR|goU2j-JK50 z*)(9@X~a|ni@eg^oAN5mCtto4TUnzJytraet$3ux+S+`6VAZO@t$yWyH^jlZ&# zf1)P-r^z}X1V2p+uJId5k#ddWqHN`LONI&8gbC{F z@Bna4b99=p<<-cAk2)_Z$2`cLvF;N@A+7Opl!_5tFnHKk-2vTU2=*KsVl4yKzO&cg zm%UB1HdO@&?A#tbjX619i?)_)++QRjuPO4P)dzdWGrFS}_;hGi^DP4QUgA%tbWHR` zu~zQ=h3;{QEUQ`iO<8SO>xKoH4|uO@kM_I-y_xM60qDDN1KzB6kWKbQ_2=5l?qm>^ zu^OjhiF8n)bqj*MG!A`f*l0ln|=Ek4XgNi^&wq$470LklRS}?4rx~YfQ0CZ`^DPJLGely zn`SlEk=7Ln5@&ecLN1bmV=@gh*fM}U*PoLgN%ATbf}8c8J_YD^itfH#JZaX;tKfj0 zEncge@?l0cD=!`d;8hxT>jJWtI9=7OCA27Zo5KgSAo9UJ?RrLe*Q_712td#Ah$l6K zXqI(qu_zcktf~*IhA7Pv#iGIy%6s$-IX$Z;>Po};s|FxJF76M@aI(W(nQ{Lb=!IuofqXb@}evfr&+V%K|^{y&7U}pwLNApGJ`HlhXIsGWm8l5XG>U>DH**1TbMa`Ny}m4t>}JJG zVb%=>@b{1CtVGz#HCulG0mxO7=&FXE7Gk4eeY29wDAn52YOF#*vQLLNwESj>eD6sYIqlrAV(QLTLp@DioHEd~ElFh&e$aACaQPE$cThGDxs#(Mp zWnEK%KEoeQ$$Od{1~e;Z-V2)Gi41GDqhMK712qdW=gCpoj8cXUk}ouc z(3o|N0eodtyrMOdV_MOOD|oXNG)oFLh~G=>wlu3E!79o7NFl$IZdUj}Kr);ecPCUv zXe1-DuvrOl3}7$u*ja7C_fyStvl7BA^XN>_KA%-Gv{N3q32nAWr}!Eo?N^^I$$rHO z`RcU_R_ll09ov2}O$f)eok{&vTB1 zNT6nEZxOKj68UYZnfNqo@rhM2?^)q{+tg?C^K#MEk7miENqmb;lMs`4r^7*zHqFi) z=Mh6rT5LL@8`$wL&Wfuvcl8_D;06-E8SV z1qbXb|FsrB$=GZx!;p0i0r-ppAJTHzA}P&W#Q^p)T^!;I;#9I}033T2Zno56Ve1wK zp({A&v7G%X&{F$VS6&V#GwMUuiV^**97UC?*+{|AsPH=)VzmOPqi&DVRn~%L4H;xW zg2aVi3R(x)r#*(~>PWL1Oq}&{pSBnj$KdBD)bRBGW!T*#$FY0@`n@|}(*#bQyr~%n z@^h9`%IvT1biURHp;hRU)w{hHqw>|T=pU#?ZTi>QUr$!S z^vBv`wY*~z^4pdP`R%C*d5+J!)4b|6HASLS)bu3qTf{-NfX6s_j|%|7D6uXoxE-nq zeod)M^Bv~oE9S1Puic%`$|LH$`)gaOZmr!}o0V%{(>SVMtkE&{(R8R@MPggdDqGZp zlERLfaa-CBjW{{`oCiQ_OlAB>U;ooOJ=iEw`qM4$F}}SHJyceQz*Z@Ai81Ud8%kaBw)28C=uBAmXnEqe*d~ zEs0?#D_Uc1n@4E-G#4S=4{+pPByvq*>hbLCD}*xT)m%dO>&f-IxR3Bu9lf2dJ?b7) z`$bB(5r)?`XotHyr)3UmhiIEswr_u|KB$L?&L>0qXJ^6#d%S~Jhd)_^UH4d<%HiSn zT6xXbsmg>!^as>BQf5?{_-sKFQ~Z<9VB>wIUSZ^_HS&N~vdBG=$hevjHqy>MQWt@! zFGB8pXV{c)7pjY7hMHd_CFtbBT~*fCp6RkqQtxrIdFP)*jB4g0w))*c^)unqo$BRo z|7Dk^fqi;^V{d+N5DxQeMj^V;56Fq8Dey7r9jaqaOb^m zvzjDpcgKDlc}P_EZ#Z-l!1weO4WnC*C%!%69y6t-oC13BI4 zUr#>!jt|_>4%*W(UoqjPb^Dl>uaDNYi^)rxP^wn#JgdFh?e5X5?$R+sO=4To$pNjj zPR#?_inMM>81lVMl~|OPnw1*cAARKxBOy*iIk|j~UM48IG=$VKDn}{`XXw-zU8*8S zZbGQ0HFiQ%I;$`&cBiwWnN4XOp-azGUoYHDN-}!Oo~{@$%Re*oGOi)hq{QL(JGYIqI}dW;Z{g6;p99GV<$9{ z)Mp1N66YAN_eEqJPVJ&;sO;xI7$;wt9`7I4c4(5T=K#;_I^PDb&Zz=%g_Wr+tM$6n zJ4iKaT*)YgtdkpoEH#|^wIzzTD)|T@W8SnlI?Bmvpy*0I{YbBLid?MOSEqHf8Erie zr(aPzQD|4w9E!TQtxX!{0Zs8z#f4WWWSp877fm>MS7jmBDNe8Mo?4*@Po36G;&ncW zpf(;JjfQm;51uUEy|=mcgLb^f-6sj(q9d;Z8oN)9O);hQI=byk<0p}lH4g0#%U84V zt6`~nWFue6Jo!S8}tu`wi|uXu3p0a4ra!2%!3F+LWgQU9 zD!RNwL#+6%V*IBU@R#`NBZT#u|706Cq+078>auCkKGO0A3fL$hiw<5tsRBiXEb zBt6JfYL9P`_%1vGSWPN|w4GLXNXMogmb1QR_%|o4BAqo zG%e~$jfzV{zIYXvKe}^H>n0nxyQfm^j8a(Z7t%je&8|R(3Jpp3|9bMVRkG(bS%+sy z+yznej5w{ah$t>7&bX5sy8Kg=*XVCoR9KdZCx6cMQ0UgQyg89pypx+wIIigW;y>-> zsr#ky3m_|DjlThB1-%a5rDewgod8ED#-4n9*LO6qVXn14)?N-&{;#OCu$LmFDOm}U zG({aJrdFQXyz9b-O+F;7zMzb_pvCEG77b{nbWJm>2PHhhp)srJl2rV`Ik}-E%@lWS zTj9x9hl=p3(xk<9_P)>4FHr<)#zL+RQ(9AaPuZuPSb?<%Mu1{UO)-bk?k3jNT@X$M zdjeTT{(1HCkt+i6EcG-ATIKS7vSzKY)l((VCl#jZ{aR`0_A(8Hz{%gH&9sHoY#l3W zsZpkc9hB=`csY<3){HAfh7w`coxbogRWeV`-gN?$q1vMc{l?x|UZ?j8=}_Ha!8Z@( zs>8GDWD1Sw7cZp^Rs54rX*NWAK(yOP+m1T=v~X^JE>lOXXz{H`S=?*Zu1_`0L!O*f zD+avBp?XT~>w^-98Yo)c?UP%|(C_z?{3N0Hjb?PSa4Zu>vQIwR)=AHUPV?0o{3oci zIERu#Ni6Do#;C^&8XEDE`kMRvT4c#5y7l1B{M-y0boo@Vpo>qXypo&olqSS0(!m3t zTz0hs!>?$D_ijy)VgxXiy<^a48Gq$@>qLcPJIz8%TYR)9EOp5w+c1r3hQhBA^JO1d0-h|~ zFiAG%L^qN0;TE81i!%1MLJn4rO~yv}lhtrzkuyh+QYdrAB^~b?ZCOM;<55VW764UtcnT+1okeRR-#2Q-QF6o|l=y@ByQmYcij;d$9@p{oaq~Y~&KqDGHX&BX} z21%2uO;r*nAMb2zt+6=WgkkYDbwY%e5Nw@`&7|c!9);sKeiO4SGXn|FO#Mx4<|X8$ z&3KWW4f@`6(Q??6v$71?M#27M>Qz}kbrxOA5g-yMcXGb1l8Dq-NFYTHxe=-KTT=G}%^%IrJ!awnj^HX1l@J^5x&L zv7ecy!5K@9+pO57mB~@UG0mSAtpg@aj8kl0sf5hQZ5p<#KWM)4;5F@<^2BAErbq>K zg=FgAooZ^b+1<@IIn_H<8f?W*zI|34kh!#8uMdTc)~3p8KC{ScMQY)hS4ZQP`L`8u za^nlinBd;;e>I4Z9iz!UIEa)}qqR^{!&C(mH(NOLv{uxz2E)qKL>ZPCa;5SC-E|D= zPlK6qyrKtP!-eh_VSdo5B=t1WEr!*kF87olzQ# ze2Pk@uDT-14N7KR#W!Rqqg!_IwRLP)^~}PCg~tp?d9R9Ul@qmk*Kwb#hT_Y=Q=^=1 zYZG;#dM->2Xr1X(E_K56Kj)ViXGFT0ao>}}8P-8!My2=v=j~0~<2a6V(K)un6)Op@ z+Dcw!TMde&_BqR?NKoP(ZYDs>Gjq!(PIr<&tk($s z^quh<(`UK}(=S-78QeJdq{hMKaGmxX>$2w%nX0--USkPhX~Fl+BU9b`*xT@5(B`LN zl1^te!CC|L2_be-;0*y5pbYU^=(wN>w=h^{3bND#2O_&(MzWTJ5Bt9&qT;shLwdUmLd z3pCPQcIF`8?TLVpC=8Dme#JTq5A9%^3R)n-`-io)$LcB}d9L$v<1O=Y=XW4d&DCdwDkp1TfmY2UZ=kWpAluA~ud7f)m4cZ!w;9 z;$(!g_|XoM-f^Vv53DmThLT7_R2*(raG0igFl0z+-Z+>bOPI4woQPyj2TE$y_?IeR zc>ngn7_IC7L>t>kuTXku@=|o!-Q{uj6>_hrAe+q{?PLcWu2QH}E=u$TEP4q9mtj3 ztTrm6Z>>==j&=_|BWqrY7iN&)H;C{&NH1{XD#GrelMh{kGf6QoT~6j-#DP-;66qebrH*@cwslFAy%5nLI;mA1uWr;{hb+ z;E;u%t;u%ukwA-^~6$}QFN48Gc0r}9yLfywB~ zRLFXpT*otsc_utAM+KW^0aQ8N1m!)11X_8X-hgHpqqNCZ)7q9HZG$~QpcXv*v8^>c zOem$o`}!4GK|y^6)SvZUu?g#2oKd1iR=$l?OPug7t81FEm_AgzarL!Bm-Tmjd9t>qN9o1I*H(X2AhpT=a5%#->qLuY)E!7?$F|dsdP$aD%G06RJ24BBDA3A=Wg&)-I_fQ& zT?Uxy6yh!~pF;gm?(_r+#xOi$Dl^>W@Wb>R@-biIo19*~I4Y$%LbeX@*d%&&T2;`lU+WAip<-ep*3{|Yf%N#nzY_yefty@u0Jg>_B5KO zl&n`^8J(R|n?e$c?34lsXNj2Yq*LYb#dJ5Qr0~#(I(rfbWMK-)bjZ$a3-Bx!w36Llt{&%^3q#-)LF+vOr zLdFmZfjoTN;M3k+Xj1aBhq@VzqU~yc3|GICr|=jXp|oS)*%)v6Vy1tZK5SG7a^DJW z@Q2~Me_MI-sB`=Nt*5Ii#doWBiu?C&uRO%R?>>4`+k6c>J$xKRkL^ z++6-<`K#j2quWm(tUO%1wRZ2(L+XyDje~9YqTpx2Su=7Y>vJ=+8&qjx1nr3?G}xy6 z7;Y~nQV0=HpHu2Ec4~=enc;6pM5_RW%Suu-Z8a6my^RDlC(;=!XKI6`0fYpTSQ=YC zLPHmXA~JGx)95H>oU1MeA2K_5j>)TjiyCJ5uRV4zu~Ptw!z)10bKMXOw2WRzD_C^we1>RbsC zF3}V*A*nTYir+)8I7*rAKy+?gvoB4&CA%IuwoHyX`nJ&g)1P2&=!JT` z1f91}JA?g>Mz%Tn8SAp7uOE8yDPs5}%Ly6xNvzzZ$dnXOBqTaSb&O?<4vxsZMqgAo zs=(2RYas%uC`ZC|hKaMC?dWCJ$Fd{hzY@X%g?)w5x@F}liqh0(suKyKNmt1X)v|;L zaXg_vOR5Tm(*>+pJe7$2q_~5(_(TIa)+_+?{4wlMT584* zvw-N5or@I)Wev1E40NhI<{Vc~wS||(uF;bEfOtygdMmn7$!a3%5jGrSvZcV>aG^zQ`r}QjzbF{4B=py z(B+zR_XP1VF7B4pcroCQEIl~w<;>(U@ol1SP~k(NN7|bH#iN6XwtH!`q^vK+xf>Lxsf^i5Z5MWgFqBTG8Sx z^NFdu)$^*iMe!(nBIHtx@PWwFHCg+f*!g0Ck^`tC%q`u-;TEnxqHKx5_T*)^V)kSv z&UW|jReyg2SXllM9%oq+`(s4ljJEz6)oD;b6p^H;iL#I6z+L$C_MtVAcJe=nsb6k> z^NrIMXxd~r{`T56y7hNiR+Z(!Xy@9^Yf-T5Sc<;2{lhOeyBiKDQ`W|S_Qp8T+0f3! z=i%(_Ti>Nq{_-YjBKNi@!|aL0!=qVlIPhv@g4wf-rGc9AOSYMVQhb5^BVpw{#i<9Z%8Olm_ILMdmG@?I8 zEYb~j4cm{5F;eaVE1>`tIHW}*WmVQ{`^lh1Q@%Oj8u=tat0zcV&!+ zat=3@j1s7@czYL75J~MOp3>*}*UqK}H$kseZYj#R6H2mGl}VH;nBi&~K*dyxP2TiK z6{!oth?r=SVN_)$6Do8BD^=8RCGNLiPsm+qb_YC0_Uz^!jv5;Z3uUI54JiTIpwkFxgU z_wcL3k*-4iR;88O5Mjb^q@DJF>FPBAzFgK>0x_1;wjaG_zBY03YhlC>`2As1b@T7oR-P7 z*2I0--+Ug;%qG0B1Rj)(r2a7(UR&Z1zS$XtQ+9IQMo-YN1|)xh)&jS6a`VQz*35P7 zd^labSUY=rh*exR6s!3gdmUGd-MnE>e-8g5uPd$P2U4f^Ta-qoAP$PBCsS>|;MeRd zLDOn^87A(5XjU{PC6&^w+awtYnZA)qu&^mE|6-+ZzrW8nzM|7k3surgsUpZ6Yq=@Qe%L-iKhtp@(hCkqBf+`e9E*#zEKK>LNuZa|l z-s*End#G12bOv;%04xc1CYBOyp$u{23ga`jR}a?UNQi*w z-%EhUVejNk9mAFWsp1Lj6r_u)4(7k2h#=K5cv7Q%1aVQ4J0+e140sJ)uYi+6K~{h(w4E#h@-}UvxM) z7{zD@32>kpK(a?)SgmK*6`7FIHmspWISz7A?7H)m?=I^adxicYrLVDr68W^453mLM z&avgyUMq!P_1she!$&_-p?luL(Z)cA>(!*dSrDakpj*r5+=Vj?%E*CM~xxvJd=J%`8df!e0-4 zi&){JjRQfK1`bV(i}aQRD!`M0%%_H9kBmmlN+$hr=6DYSmk*A5ND8 zQ=YXWFmBQm?C|C7_%m&=;ITX4$!gT8qq-P5c9#1f9x|NJS&UqbD`{b&@?9XBSy4fP zcRoTFt83}pf!IjwS%=f6P(q#ZJ^cLvnF=s@wc3ar{<~>crO4Yprb?Y-{_h?s|3Y%P z&`)rhQ7KN^!C`>WRfFgKc((7Rc4mFDA*DfI7KkYH4lkV4^L-))6~{mRt$S>fDi@?5>=Z*mmtK`m#ED{?8UEN5WU6uBr2U3RhBgsMB?YDk)09$kjkaHl z2>VP=RDj9;CW2h?)`jfAHW>{X8ECPeu{*jP2ASJh{~>KMtj(sXAuV<>T8<{EfnP#Z zuMELPwxA-dv>33ua@rz8SajQ_ zeyeTtNVu*^kjo%ZyO=mx5pNO`vvR}+CPu?bl4NEvq!>lH^^7C&=uc%tqZ9=V3f`g? zpFDn043VV^lTZzLd$YQxWUK*Glx|H)ao}b#f_^<&h|R=?tB<{!>+Os+cyvn*5ETxM zwuZoRlpW6f)d;?@IU3NZCmcRdpp8MgnQd~0ktS4}rY6)NWR=j|6Pu&M;lyvD+8p2W zS2os+fPErA#67gbXUP6dvq5Jz$1midu6lIUVrz_Vl~4*YWm||>^gPzj;Mb)SLBc6r zYjtG74jc(7Gq@_*XoBnB;B zLMkH$&UPrS2XX!=!+{%Zt8qR5dbA-a(Av|lK_>i0F774Sirh$)k#JKmH_$PEtZ~nw z)MJbo=`HZhZKyHd=CF$yp2GZeD&f~9@A4MaD_~xv1;+ZUu}<;1e%LcU=s4^R+zC)P z!4bbaxECD_+rD{Xnbr14VkKfYFI3rz(`_QN@H=Gzxw5!azK6SD;b76TH#$b6sC_u3 zoYGu7mS`PCfm4Q2r;B)?wX!_QW2Ti42-Ov3nZm%R97H)I9G96R@=V7yfa0)TDV5Sr z3+Uy94>vI#8<`-PBiQhmu$MHDEKWIM;#bp{VC74@a_@9$QMybJ-OQq1aqJ}MNKmLU z_9<`0g*bS;Ih9AcK&>-)iOdBKGD1Ykq}vdi**%uP)tSza3)gF{ki%Ja`+-H>2U5x9 zZkbqi$(knWGuppS1TtR0oCs7Q;nU+sWmP8<0MjALNaNL;$I~HIM7TPIexw2Ni~81- zk!#@#762!12^emkavlDW(!(u-6d{7Tqlo-Qwp)J#H_%pZIcZT_rGffX=y3V2P%VTi zQv8i7dcxEJoW?yAqnx6Zj;9Xlm|+nn1JUt1>8f>)Ce27uejYX_k{NR|Ba)_hQq*w% zuF@ix$Ydb2&>tU^tZc!c*`IWGr_Jvc+w`V!!ii@CaJUGD?1##9jnY%Tk?_>pep)ygnAPyISA z>fASs+7Sf8hxdhpLOGy18dOZfIDll?C>qp1KnF~P4wsF;CLLhoNH;`LFGfo%?YHBN zV+}HV`BBhDyH2s?Yc`fz6gF#^meJaFxVS|q(yORaTkhhA zja!A|Eq8Uygb~>=m)il`W5$p8r%rcQuaxdkeqRUIz*PBxRKrKW3}{ZPFNs)%8J4Ky|euhJa93rZfoVccQV zcz%-cImd}#r(OXJbK+`Fo36B_i))Bi}3f?_O}9r8G@Uu)=-?~jZ^Y{5{348Jo*XhPUy znHd!Lh|_KauF1_Vv&s)=rh0BN2Oy3cn-NrXS~6TwF=19%DDI=kujFJx-N+l5tH`Jr zc~4MgX?Db##{vVTm^kXuL7=wZAM894TIhPHATEqefiM16XvIKOQP0vMwT%*S&Q(@%;-T%6s}5QD@j{~l z&^Y^Bm}gB{+>N;5{2g%l1EuQtD7^)GoeRX;0s3oN9%;&Y4J#}VS%Ocs57VSY!D1C% zpSRHYI`@}t`pBRYb%z?}i8?*fhEueP`gk<|AjuttRKbVnpJYfY93 zlRqrmBsfZf%qd>9XYnRt>-TzOvG`c67TYrWI8sTV!VLYI4%ni-&a{ZAYgUVmnE^D= zW4J&v!91jNm+T=Tdk|GiH``YtNL#GWhEXA%B8E$-N6iHxwu*;DDP=~DMIo@>8+t>Q_|%a*ZTbUV=VnWL;p!>or^rtFVJR_t{dbQu{nlN>FE+LEXIGQ zq)YLlpMM(czb)~KaACpznbMs%hC35n$gu4Xx?A|8?el7T1uV=7Y9qxaWt$mN30rBV zXHd-|bZ)DM_((($P7a2hhFsgs*;g4&z+cP9+SWQ~xO#^k?$FXsd06~Sp%kGKPcb9a zi{>*06Kwhnw=|<70)+SQjH_KzOsTHwLLEDI&|0upX>X6k$Jb z{n*nHq_A`s4q*z|D%iJ4Wp-t~j$H|3xL?iUI_}^ZRyYY$no-fXi`F;<(#g>m*(H7s zv{<$pTUmjuJI5Dg zmD}Rri2QOI5FO)_^8~_scZ7jyLAqD$d$}qBx_@`DiCeDPm*ti9T0Xa4mp0cS!xd$x zc)&L^6t_xpGMnW~Sg43fL{t~b8dezx$^M|R?vbD`sBoahyrb~DcZs=CbaU1}k7>a9b zMz~}0SuCKkMO6wEr}H_QaVI{YRzYs!?@gv@i%nMSSQVZcUN~3MM0rE8e?j|#+-ZsX zM0VhF#oVZ;Hf20c+06i1`BmKT{vEzUlb*xls`NDdju+Fb2}52H`6176Ws|9@-6BI( zT-v4BkA+uq%#(H!qMk>HZhS#%A3=>y9x}pTN+7mssZUT^T15>@_dtRT4dIGjU^XBp zvU36(w!cd)jf|Y=Rxy5WN~VTKa$*nt9yLB@yrGmyA~l3m7dik?IeFmurLK z`vcsQNwWjCzy0JTAY&f4=yG_xFUPAcNE%BHxU(;9kt-MnRLD?391CKTu*Bj$*YFlg ztbC|-e5PTB;>Ty*NpWusE)uGAOeR#h2q}63uKB@`f}tE6nVzt@kbG)GP-4-}GX7Pp z;dTY?f|K}&HVKYaCL<}KMW01Fj1exyEqO`m0ik1zu|;@+Y^mnsz81?S(lZeX9|=0B zaOE1%uhBE?zND7oqq3OUJ9NI{TG(potfg`?3>GdcQ*l^8IdVA*S-9}LL)UA08O|&t z)|t$yQ)bz`1{AHaHMZ_L8Wk(e% zlqlDOMNeEMFix-QbWx9j=PL>(W3as1c{E*aBEq%0e|I`K)j5HGLMzoq(wy+iYsq^N zx5NES#wJ{D(Q&I^-q{U@w;M;jR;(Tw8IydKwsJj)ukjOuJN;~h)9bBD|~uqx_lI$-0$sl zHxCPq?BcM%k0UMy!v@ecuXL{Gk9#szCL&NyZl=))mlE;OZEbOfs6(jVkI*TPViWoy z{PP=%b;6#(hjR&MtJu+y*nlZFj@4?$89!=lOIDOv%+T^%eB)u1I9d_znEVhImm?hF z#VGI_)2d7VbyMnLn{LTTb_E+3^%kp4uCg$jWRnT&I5ERHg#HnoaZD$l`YM~x27G9^a;PU>}yUgv%DleT2pBMHea@!Pu2snOelgDMsX=4v3qz z72nE5E*fDT+Zxq2R-kb1sg`KrG>>YHo}4FEx1GnOSE7Z}a+XNQ5TtX~K3HwoNYS+y zZg|_oax^tCfrHbl#AXGmW2vMaz05*r;?y{dhJ{1K!R8tyCEcoA&|f?HU&_;}xXd%! zp$%O{3>TF8U8az3%c?ve$pRC?wfzlwP{has{OF*N<6(5LzyEf5P{hc?6Q+>zFmGeg zv|b%|^bIS_ugEHxj(!yJ80YzRL_C2D7ukz*i*F2Au>e-NK;}x>U@g4ZcwV0|LbC$c zvvQ6R71h_V}uu zJGeDRN=E5WjZw;XbFi~d(e}(*)b;QXc92~D5{Ivzt>fx?2N-6ErF)Zt4tLeEQ^hnG zl9lgi9#=FCE6hA%)Z*@LcZbPEjUXifaiPxU^S3k`Jz}`-4Lw>C zX>;ZDQVU;aqZCvz!?N0rPwAGaZ*l)2S`68Xh7=|5cd>6m(8*n50*l4P1_t3(bo^y( ztnAcD_#?>BX~A9;UoSD^L3fCFe#h2vCC0E2;Gn4Jhd3$hyr*W09CuPUz%cVv59-Vy zS+D`HGZojyjQ>B|^${$b(o+}i�ANqAJWYTCPP`_^EhYtyBXIAO1*migHkKsU9u` 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

^@!Yy`J`gf_4|0T7ni7V)HvK$tk9# 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

J%C`CGg>mIiKZr??%4vn4Nu$}&&6C?**+ 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 literal 0 HcmV?d00001 diff --git a/docs/Python/doctrees/faq.doctree b/docs/Python/doctrees/faq.doctree new file mode 100644 index 0000000000000000000000000000000000000000..32560c6ae4520300939462408d68d4a86e564eb8 GIT binary patch literal 97713 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 literal 0 HcmV?d00001 diff --git a/docs/Python/doctrees/intents.doctree b/docs/Python/doctrees/intents.doctree new file mode 100644 index 0000000000000000000000000000000000000000..f86e908aebef914d25c7ac933a8fef8465499187 GIT binary patch literal 60760 zcmeHw3y@rAb*A;!jGiOe8b7deu`wD8&FEpvI1|gU!6+6&V`Iyf07K86?mKh)s$cHg zt-fKXrTly69)8rkn@M&35xar|q?BZrPijc24-!(3$Tx%2e9H z->xWwh8kX}R&AVqur$^4H=tL4BwBmIJ4<7Xc4pM;J>27=qpQr<(fXE)33Ph?=I$IC z8)a=+SR#k2Y@F)uc=l-05#fBuDM}|hxmJ4!>xJN4Q%W`dtwoF-2>sxt^=WMoo_Thoa3lx5G}U)o#|B3%B(A z8;`9<3v2vU{u(sDNzf@Uc7*7v?k>%F)J%Wk0;amPiZkaq?wD%k^I>6p6oL%z67cioR}_2B%gX%zu2eaW+) zKb%7|{*6Ri)j>u5!~QLbEROp>pFs`&?PB~Hv@oJEnIZ`PRiJ@2sF|jL>lAOX7Our* zQj2s5s60AostQT($SM?V)ysrAS@wk1S`!+H)_2_Yf@kUN zXS_wH+HhnM=fKnB0rC5Bl4rEfT^rEe@+N7w)oe@!OwutIUbT$%g2t8I3ELs4Dq++lRx(5Ji;r)u+ z074px(`h=t;C8%4cgZ;_fTK9`z%qso{tw3TLjeF{e}f=Ou=)Xtf7gQ7MhyQm3Rb6X zSas1wM`QHvl$#LtPRIAK5IXHGd;9QW*$(3eZw6`*p5|4khyfW5l z*_rE>PkU$%1M$uR%f9LiV^m6|SE12~`BkcCs+BH= zt+gO(p57(rs;j%C8Y&%dEV`~R^el-vL?wSbSPdN6`1UV~Hn+S+rP^31odx0AbhbS? zZb4k2*IKpXwcVOkIM_xF3n{!o(W0RcTM6{NBjaIjopozDZCYdZ!{3jTr z=Es9A8EwS45b1tE4s=dI8Q1}kGF)la-D;y3T!s4420RelVV&qL+JqWjXR+GxS%A#WN^Ukgi}5Y6J;R8NeM3&bTBAc( z1?)W_)fORfvfrlWE+@<~BTn@#YCur^dQr-Zh&0onjRGqp`bI_z1&RJaR9!jItBECO z9=adHj|IWSS)^k?5oN#6#lYnX0~UStN5-!kWQ?UMn87e!-kkx}iJ_R$yE0lRh?jqJ zUhtAJ$3ZAsz1KEQ(63zZU#7sHTHqN=;j;$%TP^5g`6odC`x$^64)mYSXrUnJ|Kkcl z&-zs;b?@FeAr_MJEsTcXQv@`%j^f;Bs{uZ-&8max;UMfTH-5f)PgXcNvm*_bNu#L;=V$rE}&1A9oJ3+yF1EOvU*bnL(t z;C5?}{IorUU13S>59d7WrW~(9hLDQmoh^GUY(=3+zz}ezTJsio*T}Yvy-vA{ZDyl` zo$EC18}){Gs_xb2U|fR0#||{{u7#Z`S@*+PqXj(pY>wTcpl5d+Ac!kKY5nz+@dPLp zm@`<#i>V>ODz-@-R$;}=mx+5KgSc(Bu>l)f!fxMv?Ta!RuvZ8BG-zL&R?-ims>L^7Wc1DqDdKo}T1u$;o|yu<}UuQosByn?KJ#(XDDdrGH}R5po2o69mrfEjh9 z_y`SuuRIe|HR~#RX8Hq3yiFrmkVIUgD`G}@lv)ssT3g^W@VT4?Q8A{P-?=M%W#2VYQ(Blx(%%X+a0%s?0| zpUeQNV z=#3%c(DD|%rrcCQm^`4-D|Q=Wvkx8tAN9_<^;XT>>s057Wjc#)qoe#R!~j*O z3-}@IRtOw%!j@aFFDb7|t$LbNV5zy1?E^-5(v(@VUL-pk1u;~btSiqq$&rKC(%m)| zJ-dU@SP8yKR6QPigT4w&GG&6iBo5+{Xp8ivl; @@dPXa*C|UPPN`@wmT44>?9r4 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 literal 0 HcmV?d00001 diff --git a/docs/Python/doctrees/intro.doctree b/docs/Python/doctrees/intro.doctree new file mode 100644 index 0000000000000000000000000000000000000000..88dab010bf12398b6e04bc7b540367e53dc71e2f GIT binary patch literal 17563 zcmeHPdu$xXd6z7a6i*~2%61srQM{IAi&A(e+lp<4u^c}X+k!0GjUTaFxyQZRIqoj^ zcGvqLd9e++D1ykz04djfQDieqgaU z~&vuE&fhQ=q37dLVMb8*^= z6DPsLz;9Zt_EwpUwp8SZd&FJ|3DNAj#~hv;|<35$iBK0ELQb zOq~@d>dTAOF@7KGhPD|yu|9nN38F|0KOqOs^2y>+iIP2T&)G)WGI`BRlE`VL2^dd| z-s4y?n93*Go*Bn@h`+~tvn&7FXQg5JrDe8Pfi;au`9xx_(5uY;ARo^~wZ!*=XDnO7 zYS&^ldmc;JC!Wdd1^hJda|?cM!xH0wlSWR)&)7*4#)~IULZ)#e>?L;KH-c#8^sh10SJ5S-S!@U-!JtP5_^F3s%!RI zjKFNIT#!`iSw@Q)=83J9Y?jYdbxWh6{|(T&0939oP?^%#Q0h=C*DYZQeRy&^2@w}Q zn6Cg{8s%L2lE1j7Sb8hHEs(R1kQG5JTdHSwI6Aj4*>{j`Iol1j&)9b>wYXq^Y=Ab{ zXC?jvbYZfP!OYD%a9sHo&2Tj@v&l$zz?EOxj#MS2&kY*HX9_bBo@_8d zdo_Y4`FLVRE3EXx(C?oCZOtmAMdQaaTA>NbHE3wo$>9Rc+*xRE`Up@W{w+vkLJ?r! zZa>Uxg;&k}z;72SS|dUnKZ$}xX&VXywVrYSd<;Mw3w}_H&WOvj(p0$;KYw=d;-kV@ z8IMLLwvRTucwdmj7tcB|m<2lzl8Ya=!rn#Z+a{d6Rk!3D__&MY>n;l54fvQ$><1Gu z6T6V+-eINr&NGJ1&8ut_Q|E{hE0uF{+p0b+HYEGo!2Da}xolxUgS15vPsDx`!(W%f z?N>qgK7rsQ_AhfKGDBNKkv}io6?V?VW`^3wO|hMJg2*U|Ucla(dvt@|87H57yIee|5%nc-9ZZ;>eZ{9Q2atH(jAG(y1eZ0f`g?cTY}`<|A_{4=0_Z**ix=QP12Y}>ez7BA@n<0(c zM*VB&N{n*d*B=#(bFbUIYnMIeUPB){@p`XV5TA(#7^>Q53VIL zy=Kb`+N-*sKPp4>Q%1dOgidJW>S5HM(0shIy3qy~5~FC;Jq-%B!<$cTbiKtmMB;{g z5c(FgXpNC>x_1!q(v?C*b&5&{_TagW(Srn$gBfW|+sr2&-wM{_1rnw&B-#l)I30Qy z+bUR3V`d3rnQ7^AJ^Nn3(**wBzytLUU6v*suJFyh6F>^ze;&?UM_dEpA$o$SzcCxrcFv8 zu)Mrru*OP5+4VePj+;hWMw9S}6F?RNwYukmVNT?Rshi~0I*J7i$_8gQ(O2Rk3@#kP zdE&QEm`H@+A7=TK&Y==s-}3<^xB(y)8a1P1zPzkZu9Ya4um!Hacp12kOPQ6BxOy@G zzs;$j9uO;kc?2^{e_6GX4~^m=b15l;cQmJJH(waSkuB}!XoUvNZXSQcHy(EUbi-i& zniB;+Rpj6v%Rs=8CM9A}_+PRz5wKI}U;0jqh0M25*m780Y=i$hzzdeRzb_T__vmBf zJzt6S<|<1j`Tkbwc`QNJiR`Sb&Z&?b#XEY_#9rCeUh{=z!~~s=W89_k;}rzSX{*r= zx>U`=tNi2c<)+kuVuNyDC)7o{S5#GsXRy3+IbYZ2{0Wf%)(~ajdqt(r{VQ7I3@_66 ztO#K-Mb5-5!tAkiPv0(}xy z&md8_bTLyCY4Hf?{Rd`m8xQ3&{cl?33_m(RC1&A0L|N_wciBpDv!aBW5mzx%Ivw0Gzjt;eoX1e5HbrjxlzE^)a1nI ztm@O03hJe{^gZ6BF?SFKnm>>jjixatz@h7haA-S?*?JW|E;opb@2-ms5b?h!jNIL9tzQP2WO^#q(6UiI8>R#`+#ZEqBzP zC7qdbpQ4W)@2CqECR78ZTaKc_m#DCUYJ%7og&F1!QT(kNKyDN}pIA^Mg2>JgT_{5) zK86Y<^30d`KF{=5Qn&TY zm9a1{IU^L6<(UvEJ{{5^#TTZh)DU&a2z3D*&Y_&q5eKu0s#zi%tU)z#7D-@Gke1bg zz{j^dIEE?X{Fvfk3ASNS*{4fNVwheWh(f1rt}$KKgrh2>l<*~h`Z`LYjT*U(gwCkL zGzx>5Nl$^m!?#QvGRRpy!_>;E#;L|B10Dp(i4v`eFF1dI#kEoU1ENO;$nXg03Tn{r z(CC^tn7|KF1AfGe%Kiyc%!pOd{i$bv%J`iz{_PjPFo5-MzxbOwVSZ^&zb?(`R}16V zN#*ZO&8&2D;%DwPx&dlrjt@5+qQsA;iXd`e^3cLgkYZbcrZ3{8XAyzVqI!FB4N2p& z)D2M`83~LQ+T1kS1fc!9eFWRP_!MQFFzV(8PVV%KY;FrgrOU#3r{jx;g)+x;|A4^D zqw0hG1eW-U4dst9v_Jfs=X(Vbd{3O<2yp_x>tI&K^!5kZF#eF%nRCB30ERwPq(%fl zokohr5i1}w&D=l7Y(4>^lU|4|YL6JWpUyxx=nTzCu!Yg;+zZnBZWaI zuqVBuk}$%^(nj8vO#UbO*l`eZcNN)5et`LCQzCC@ZBZJirjVa{Fd!c<_xLDqaZGRw zUKz({v;oO;gCOcH)@lZhXWD3ns*Aci8k0nw^sL{3rkU9>P>$25Gy~)EQs>+iE z(y?%w)5I-!POOr2`|3 zEX3|ENWPyKE~3K8JqS77EXKRz_~?tKt7?4ssId(f6~;qG71#FGESsfuhp_ ztmaXM3Rq!3d|*L!{ zL2n4Rbv1YlY)r-Y0ajPljO(yX3_HT!c1(e&(236u!SXV6;t3G*nIT}cT|v@)c{;K6 zEVLXW-jR{zIFi7YgD7+yC+{6+BeTcR^_!w{gFnv_D*r~?O&Q(gLF7G^DDPwU2R=H; zlGKykT{2DfgLOmX#^#`H2>G*zEEG*(p-MgZj}4~~p!+ho479&WA3Kf^pVkPj^ut`0 z@23=tsr@w8Ivdsd%28XjK@;6EMIA9`CJG;=wC3GuB;eG)eJhd+)iSBK?TF)*N+XX+ zz1L(k{jE21HjZ2PHOLweqc$mj5S{5(v(;;gqoWrx_b#(suZp|tcduB zP7JBf1pST@w2$@TFrY6%!=OqJ+c3MKha%59b)=XEYB(`Uk2M<|k<7Oq-vxQp#6k3UXNg7A3O4i`IP;!-5z?q3sB zy27C{@&Ce9Jrk#8cqJ3Rq-Emn8#MpWW*ri>WGxB*`J9>1*;)P@Kgs%480t?pngf)x z^r^~?4(k0NNhnWJ@gNKL=Cz94e96SoXtdtO36FtKX`wQ6E~*$in^f@Dy>_qIuHH`{ zJKnBZ6%r~j(Nl-vwwI)WkGBl zrq!E|nb*nRQu!i`P*9%l9D6ueS&?;el&hbkK@Ak#qZe*Cc3c)ZDxh-TCx9&|PdEVT z1?eMYb^keqc3{~y-%DPV-934;Ob)0N))x@f3a%sSP2Is0y zyPogbddMZ;sQsMYY}1O27@-6@&!@y)jpDM!D@DB3|4J2USwC=bXDAQj_PKw9%>tp) zS+e4nWA{7atNjZ8*4OR#M#VKdG+!fz+l~7%X+&2Fo5l6JDfL8DwU_ul1kQBYg-e#R zs14ISinxJ3Wika+r^lZ(y%bjoit_h2m-yrg^Qp!eL>azVsO8|esT<7M|Kqpw@Shy0YGQb(Q*`QfI;#bhMsc9?ihRs6rz*+GCHpC(yr=b9IKs*6^{g~um zJ_=)&T0s-7-WYWdX$B5G>C#p)Q>Y1Ylr_2qBXsmY6C0D+@)!uov7AsAVZX|!Kn(5% z`y%56(CK_wv*UPBecVNz30YX?JcJ9*lS1e#mL}yc`{mZx*Yzu^XdOCPQNu=~It%MJ-ST0uWhUyh`<9_6gY7GG%MZ4*8e(`vf*PUuKcG70rC&kp)fOkGs{-WBC=9cM$h$ z6LX_k^fhF-#*0Kf<5O|hgh7dVe2ke_itqAk6E_6RoP&qkHtGXyNJ-iiBt{OXiP@`Z zh%+d2R3UHm1me2bn5EXNBh@1(y3 zmUM0?uoPi<%BOYZCv^EV4m^dKlbOjU=AudpXE^s2sx#puZj z#7VWPm~^NDADc~-(C&71Kdk)CF4Si%c%+nE91_Mh`cq&AbW;w8$M@&YKTm~~PeDNE zcgLU3K0z+ajNqN}Aek1%>Di2I9Z^rqU40CJ7$wd{voWuqP30X+9Q4Cg(Mho(t-~M% zSTv55UEfEFvfHi0W}(BOoQK8+?FPPx1>Ync+ooTU!kRY_+Wp;-aYAuSK9=wFyZK&O zrQCaN>48URyOsZQ1iZie{|L^{QHAnv0TsYW-^z0_yu$yAaH!ad6!(ay^X_*rMU^f3 znV5ga6|aY2FSzCCuPPpbd$^o?L|tAioU_%>kavd=su=QvA>%f&!u=P_7{G`r#R#-J yk3`%pgNTFjife=;P&hp{n#gNI#*IwjbtQ$2?=R#kwt|{P;Y}V1kPe_X|9=4SGLA0* literal 0 HcmV?d00001 diff --git a/docs/Python/doctrees/logging.doctree b/docs/Python/doctrees/logging.doctree new file mode 100644 index 0000000000000000000000000000000000000000..4d88fc365523699d36c596c15437be0422965e8c GIT binary patch literal 12130 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%0DMaq>&uCN$Y&hBNd}?5|kk9%3QuB*D@W<+pQ# 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

dGGC{Btf3OPkfdGCHasS3RSR!V6){~P@f z45G&gRtk*UPcxV|Tq(RFNh#1yd9pN$%hRRC!NPQ0J46}?H6ecFiyF=8QmIatuLXRe zl|%8}R(YmmhqAYvZ$AJwycKnw7Yn|$b1K^}|9=ikM$%hjbU*WVFKTVnBO#$`?P(s^ z5b5f#T9Y*Js5Sj1MXg0C*uKbCYZ1N+U`&sqy9H!ohZNV;SkXm#jcB~*d#D<&@t)&> z4q20z0j?h!@AQbqi_XYK92 z+K){jMkVsl0ivdg_enGPH9Cu}x?re`B5jP!;+}_N7QiAl3*S~&Od{A8F|%BqF@ZE& zlsr;mel%ApQKfZe$4n3H1?A$VO_8crOXxb(gevw^nA&&)5u!4P-5OR@l?|c-Sty#d zP8PPRY`|x|QI#)QZMJ@ETkmN}En@wmxwP^iNP}U1LjQDHUFwG#h;iEyR6S^fU#BFK zTZPFM)l~Vi@T_=R%g#Tm!yK37Ye!9Q^4XDZ7D|%L-0A5(8>Y@|34$Drj-71MQ>B6z zF)0@_kM=%ZA_lxp@_@u*bW3@>ZZk@c^FW8F?^S@yP~REPoXBKZhaS$Jb|-0TNlj0l zn)qTwWNIBkFp)QOto�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 C6La$b literal 0 HcmV?d00001 diff --git a/docs/Python/html/_images/snake.svg b/docs/Python/html/_images/snake.svg new file mode 100644 index 00000000..aa741440 --- /dev/null +++ b/docs/Python/html/_images/snake.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + diff --git a/docs/Python/html/_images/snake_dark.svg b/docs/Python/html/_images/snake_dark.svg new file mode 100644 index 00000000..12022af4 --- /dev/null +++ b/docs/Python/html/_images/snake_dark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + diff --git a/docs/Python/html/_sources/api.rst.txt b/docs/Python/html/_sources/api.rst.txt new file mode 100644 index 00000000..76468601 --- /dev/null +++ b/docs/Python/html/_sources/api.rst.txt @@ -0,0 +1,4242 @@ +.. currentmodule:: discord + +API Reference +=============== + +The following section outlines the API of discord.py. + +.. note:: + + This module uses the Python logging module to log diagnostic and errors + in an output independent way. If the logging module is not configured, + these logs will not be output anywhere. See :ref:`logging_setup` for + more information on how to set up and use the logging module with + discord.py. + +Version Related Info +--------------------- + +There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`. + +.. data:: version_info + + A named tuple that is similar to :obj:`py:sys.version_info`. + + Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are + 'alpha', 'beta', 'candidate' and 'final'. + +.. data:: __version__ + + A string representation of the version. e.g. ``'1.0.0rc1'``. This is based + off of :pep:`440`. + +Clients +-------- + +Client +~~~~~~~ + +.. attributetable:: Client + +.. autoclass:: Client + :members: + :exclude-members: fetch_guilds, event + + .. automethod:: Client.event() + :decorator: + + .. automethod:: Client.fetch_guilds + :async-for: + +AutoShardedClient +~~~~~~~~~~~~~~~~~~ + +.. attributetable:: AutoShardedClient + +.. autoclass:: AutoShardedClient + :members: + +Application Info +------------------ + +AppInfo +~~~~~~~~ + +.. attributetable:: AppInfo + +.. autoclass:: AppInfo() + :members: + +PartialAppInfo +~~~~~~~~~~~~~~~ + +.. attributetable:: PartialAppInfo + +.. autoclass:: PartialAppInfo() + :members: + +Team +~~~~~ + +.. attributetable:: Team + +.. autoclass:: Team() + :members: + +TeamMember +~~~~~~~~~~~ + +.. attributetable:: TeamMember + +.. autoclass:: TeamMember() + :members: + +Voice Related +--------------- + +VoiceClient +~~~~~~~~~~~~ + +.. attributetable:: VoiceClient + +.. autoclass:: VoiceClient() + :members: + :exclude-members: connect, on_voice_state_update, on_voice_server_update + +VoiceProtocol +~~~~~~~~~~~~~~~ + +.. attributetable:: VoiceProtocol + +.. autoclass:: VoiceProtocol + :members: + +AudioSource +~~~~~~~~~~~~ + +.. attributetable:: AudioSource + +.. autoclass:: AudioSource + :members: + +PCMAudio +~~~~~~~~~ + +.. attributetable:: PCMAudio + +.. autoclass:: PCMAudio + :members: + +FFmpegAudio +~~~~~~~~~~~~ + +.. attributetable:: FFmpegAudio + +.. autoclass:: FFmpegAudio + :members: + +FFmpegPCMAudio +~~~~~~~~~~~~~~~ + +.. attributetable:: FFmpegPCMAudio + +.. autoclass:: FFmpegPCMAudio + :members: + +FFmpegOpusAudio +~~~~~~~~~~~~~~~~ + +.. attributetable:: FFmpegOpusAudio + +.. autoclass:: FFmpegOpusAudio + :members: + +PCMVolumeTransformer +~~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: PCMVolumeTransformer + +.. autoclass:: PCMVolumeTransformer + :members: + +Opus Library +~~~~~~~~~~~~~ + +.. autofunction:: discord.opus.load_opus + +.. autofunction:: discord.opus.is_loaded + +.. _discord-api-events: + +Event Reference +--------------- + +This section outlines the different types of events listened by :class:`Client`. + +There are two ways to register an event, the first way is through the use of +:meth:`Client.event`. The second way is through subclassing :class:`Client` and +overriding the specific events. For example: :: + + import discord + + class MyClient(discord.Client): + async def on_message(self, message): + if message.author == self.user: + return + + if message.content.startswith('$hello'): + await message.channel.send('Hello World!') + + +If an event handler raises an exception, :func:`on_error` will be called +to handle it, which defaults to print a traceback and ignoring the exception. + +.. warning:: + + All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected + errors. In order to turn a function into a coroutine they must be ``async def`` + functions. + +Networking +~~~~~~~~~~~ + +.. function:: on_connect() + + Called when the client has successfully connected to Discord. This is not + the same as the client being fully prepared, see :func:`on_ready` for that. + + The warnings on :func:`on_ready` also apply. + +.. function:: on_shard_connect(shard_id) + + Similar to :func:`on_connect` except used by :class:`AutoShardedClient` + to denote when a particular shard ID has connected to Discord. + + .. versionadded:: 1.4 + + :param shard_id: The shard ID that has connected. + :type shard_id: :class:`int` + +.. function:: on_disconnect() + + Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. + This could happen either through the internet being disconnected, explicit calls to close, + or Discord terminating the connection one way or the other. + + This function can be called many times without a corresponding :func:`on_connect` call. + +.. function:: on_shard_disconnect(shard_id) + + Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` + to denote when a particular shard ID has disconnected from Discord. + + .. versionadded:: 1.4 + + :param shard_id: The shard ID that has disconnected. + :type shard_id: :class:`int` + +.. function:: on_ready() + + Called when the client is done preparing the data received from Discord. Usually after login is successful + and the :attr:`Client.guilds` and co. are filled up. + + .. warning:: + + This function is not guaranteed to be the first event called. + Likewise, this function is **not** guaranteed to only be called + once. This library implements reconnection logic and thus will + end up calling this event whenever a RESUME request fails. + +.. function:: on_shard_ready(shard_id) + + Similar to :func:`on_ready` except used by :class:`AutoShardedClient` + to denote when a particular shard ID has become ready. + + :param shard_id: The shard ID that is ready. + :type shard_id: :class:`int` + +.. function:: on_resumed() + + Called when the client has resumed a session. + +.. function:: on_shard_resumed(shard_id) + + Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` + to denote when a particular shard ID has resumed a session. + + .. versionadded:: 1.4 + + :param shard_id: The shard ID that has resumed. + :type shard_id: :class:`int` + +.. function:: on_error(event, *args, **kwargs) + + Usually when an event raises an uncaught exception, a traceback is + printed to stderr and the exception is ignored. If you want to + change this behaviour and handle the exception for whatever reason + yourself, this event can be overridden. Which, when done, will + suppress the default action of printing the traceback. + + The information of the exception raised and the exception itself can + be retrieved with a standard call to :func:`sys.exc_info`. + + If you want exception to propagate out of the :class:`Client` class + you can define an ``on_error`` handler consisting of a single empty + :ref:`raise statement `. Exceptions raised by ``on_error`` will not be + handled in any way by :class:`Client`. + + .. note:: + + ``on_error`` will only be dispatched to :meth:`Client.event`. + + It will not be received by :meth:`Client.wait_for`, or, if used, + :ref:`ext_commands_api_bot` listeners such as + :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`. + + :param event: The name of the event that raised the exception. + :type event: :class:`str` + + :param args: The positional arguments for the event that raised the + exception. + :param kwargs: The keyword arguments for the event that raised the + exception. + +.. function:: on_socket_event_type(event_type) + + Called whenever a websocket event is received from the WebSocket. + + This is mainly useful for logging how many events you are receiving + from the Discord gateway. + + .. versionadded:: 2.0 + + :param event_type: The event type from Discord that is received, e.g. ``'READY'``. + :type event_type: :class:`str` + +.. function:: on_socket_raw_receive(msg) + + Called whenever a message is completely received from the WebSocket, before + it's processed and parsed. This event is always dispatched when a + complete message is received and the passed data is not parsed in any way. + + This is only really useful for grabbing the WebSocket stream and + debugging purposes. + + This requires setting the ``enable_debug_events`` setting in the :class:`Client`. + + .. note:: + + This is only for the messages received from the client + WebSocket. The voice WebSocket will not trigger this event. + + :param msg: The message passed in from the WebSocket library. + :type msg: :class:`str` + +.. function:: on_socket_raw_send(payload) + + Called whenever a send operation is done on the WebSocket before the + message is sent. The passed parameter is the message that is being + sent to the WebSocket. + + This is only really useful for grabbing the WebSocket stream and + debugging purposes. + + This requires setting the ``enable_debug_events`` setting in the :class:`Client`. + + .. note:: + + This is only for the messages sent from the client + WebSocket. The voice WebSocket will not trigger this event. + + :param payload: The message that is about to be passed on to the + WebSocket library. It can be :class:`bytes` to denote a binary + message or :class:`str` to denote a regular text message. + +.. function:: on_typing(channel, user, when) + + Called when someone begins typing a message. + + The ``channel`` parameter can be a :class:`abc.Messageable` instance. + Which could either be :class:`TextChannel`, :class:`GroupChannel`, or + :class:`DMChannel`. + + If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter + is a :class:`Member`, otherwise it is a :class:`User`. + + This requires :attr:`Intents.typing` to be enabled. + + :param channel: The location where the typing originated from. + :type channel: :class:`abc.Messageable` + :param user: The user that started typing. + :type user: Union[:class:`User`, :class:`Member`] + :param when: When the typing started as an aware datetime in UTC. + :type when: :class:`datetime.datetime` + +.. function:: on_raw_typing(payload) + + Called when someone begins typing a message. Unlike :func:`on_typing`, this is + called regardless if the user can be found or not. This most often happens + when a user types in DMs. + + This requires :attr:`Intents.typing` to be enabled. + + :param payload: The raw typing payload. + :type payload: :class:`RawTypingEvent` + +Messages +~~~~~~~~~ + +.. function:: on_message(message) + + Called when a :class:`Message` is created and sent. + + This requires :attr:`Intents.messages` to be enabled. + + .. warning:: + + Your bot's own messages and private messages are sent through this + event. This can lead cases of 'recursion' depending on how your bot was + programmed. If you want the bot to not reply to itself, consider + checking the user IDs. Note that :class:`~ext.commands.Bot` does not + have this problem. + + :param message: The current message. + :type message: :class:`Message` + +.. function:: on_message_delete(message) + + Called when a message is deleted. If the message is not found in the + internal message cache, then this event will not be called. + Messages might not be in cache if the message is too old + or the client is participating in high traffic guilds. + + If this occurs increase the :class:`max_messages ` parameter + or use the :func:`on_raw_message_delete` event instead. + + This requires :attr:`Intents.messages` to be enabled. + + :param message: The deleted message. + :type message: :class:`Message` + +.. function:: on_bulk_message_delete(messages) + + Called when messages are bulk deleted. If none of the messages deleted + are found in the internal message cache, then this event will not be called. + If individual messages were not found in the internal message cache, + this event will still be called, but the messages not found will not be included in + the messages list. Messages might not be in cache if the message is too old + or the client is participating in high traffic guilds. + + If this occurs increase the :class:`max_messages ` parameter + or use the :func:`on_raw_bulk_message_delete` event instead. + + This requires :attr:`Intents.messages` to be enabled. + + :param messages: The messages that have been deleted. + :type messages: List[:class:`Message`] + +.. function:: on_raw_message_delete(payload) + + Called when a message is deleted. Unlike :func:`on_message_delete`, this is + called regardless of the message being in the internal message cache or not. + + If the message is found in the message cache, + it can be accessed via :attr:`RawMessageDeleteEvent.cached_message` + + This requires :attr:`Intents.messages` to be enabled. + + :param payload: The raw event payload data. + :type payload: :class:`RawMessageDeleteEvent` + +.. function:: on_raw_bulk_message_delete(payload) + + Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is + called regardless of the messages being in the internal message cache or not. + + If the messages are found in the message cache, + they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages` + + This requires :attr:`Intents.messages` to be enabled. + + :param payload: The raw event payload data. + :type payload: :class:`RawBulkMessageDeleteEvent` + +.. function:: on_message_edit(before, after) + + Called when a :class:`Message` receives an update event. If the message is not found + in the internal message cache, then these events will not be called. + Messages might not be in cache if the message is too old + or the client is participating in high traffic guilds. + + If this occurs increase the :class:`max_messages ` parameter + or use the :func:`on_raw_message_edit` event instead. + + The following non-exhaustive cases trigger this event: + + - A message has been pinned or unpinned. + - The message content has been changed. + - The message has received an embed. + + - For performance reasons, the embed server does not do this in a "consistent" manner. + + - The message's embeds were suppressed or unsuppressed. + - A call message has received an update to its participants or ending time. + + This requires :attr:`Intents.messages` to be enabled. + + :param before: The previous version of the message. + :type before: :class:`Message` + :param after: The current version of the message. + :type after: :class:`Message` + +.. function:: on_raw_message_edit(payload) + + Called when a message is edited. Unlike :func:`on_message_edit`, this is called + regardless of the state of the internal message cache. + + If the message is found in the message cache, + it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents + the message before it has been edited. For example, if the content of a message is modified and + triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` + will return a :class:`Message` object that represents the message before the content was modified. + + Due to the inherently raw nature of this event, the data parameter coincides with + the raw data given by the `gateway `_. + + Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. + One example of a common case of partial data is when the ``'content'`` key is inaccessible. This + denotes an "embed" only edit, which is an edit in which only the embeds are updated by the Discord + embed server. + + This requires :attr:`Intents.messages` to be enabled. + + :param payload: The raw event payload data. + :type payload: :class:`RawMessageUpdateEvent` + +.. function:: on_reaction_add(reaction, user) + + Called when a message has a reaction added to it. Similar to :func:`on_message_edit`, + if the message is not found in the internal message cache, then this + event will not be called. Consider using :func:`on_raw_reaction_add` instead. + + .. note:: + + To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`. + + This requires :attr:`Intents.reactions` to be enabled. + + .. note:: + + This doesn't require :attr:`Intents.members` within a guild context, + but due to Discord not providing updated user information in a direct message + it's required for direct messages to receive this event. + Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want + to enable the members intent. + + :param reaction: The current state of the reaction. + :type reaction: :class:`Reaction` + :param user: The user who added the reaction. + :type user: Union[:class:`Member`, :class:`User`] + +.. function:: on_raw_reaction_add(payload) + + Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is + called regardless of the state of the internal message cache. + + This requires :attr:`Intents.reactions` to be enabled. + + :param payload: The raw event payload data. + :type payload: :class:`RawReactionActionEvent` + +.. function:: on_reaction_remove(reaction, user) + + Called when a message has a reaction removed from it. Similar to on_message_edit, + if the message is not found in the internal message cache, then this event + will not be called. + + .. note:: + + To get the message being reacted, access it via :attr:`Reaction.message`. + + This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled. + + .. note:: + + Consider using :func:`on_raw_reaction_remove` if you need this and do not want + to enable the members intent. + + :param reaction: The current state of the reaction. + :type reaction: :class:`Reaction` + :param user: The user who added the reaction. + :type user: Union[:class:`Member`, :class:`User`] + +.. function:: on_raw_reaction_remove(payload) + + Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is + called regardless of the state of the internal message cache. + + This requires :attr:`Intents.reactions` to be enabled. + + :param payload: The raw event payload data. + :type payload: :class:`RawReactionActionEvent` + +.. function:: on_reaction_clear(message, reactions) + + Called when a message has all its reactions removed from it. Similar to :func:`on_message_edit`, + if the message is not found in the internal message cache, then this event + will not be called. Consider using :func:`on_raw_reaction_clear` instead. + + This requires :attr:`Intents.reactions` to be enabled. + + :param message: The message that had its reactions cleared. + :type message: :class:`Message` + :param reactions: The reactions that were removed. + :type reactions: List[:class:`Reaction`] + +.. function:: on_raw_reaction_clear(payload) + + Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, + this is called regardless of the state of the internal message cache. + + This requires :attr:`Intents.reactions` to be enabled. + + :param payload: The raw event payload data. + :type payload: :class:`RawReactionClearEvent` + +.. function:: on_reaction_clear_emoji(reaction) + + Called when a message has a specific reaction removed from it. Similar to :func:`on_message_edit`, + if the message is not found in the internal message cache, then this event + will not be called. Consider using :func:`on_raw_reaction_clear_emoji` instead. + + This requires :attr:`Intents.reactions` to be enabled. + + .. versionadded:: 1.3 + + :param reaction: The reaction that got cleared. + :type reaction: :class:`Reaction` + +.. function:: on_raw_reaction_clear_emoji(payload) + + Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called + regardless of the state of the internal message cache. + + This requires :attr:`Intents.reactions` to be enabled. + + .. versionadded:: 1.3 + + :param payload: The raw event payload data. + :type payload: :class:`RawReactionClearEmojiEvent` + +.. function:: on_interaction(interaction) + + Called when an interaction happened. + + This currently happens due to slash command invocations or components being used. + + .. warning:: + + This is a low level function that is not generally meant to be used. + If you are working with components, consider using the callbacks associated + with the :class:`~discord.ui.View` instead as it provides a nicer user experience. + + .. versionadded:: 2.0 + + :param interaction: The interaction data. + :type interaction: :class:`Interaction` + +.. function:: on_private_channel_update(before, after) + + Called whenever a private group DM is updated. e.g. changed name or topic. + + This requires :attr:`Intents.messages` to be enabled. + + :param before: The updated group channel's old info. + :type before: :class:`GroupChannel` + :param after: The updated group channel's new info. + :type after: :class:`GroupChannel` + +.. function:: on_private_channel_pins_update(channel, last_pin) + + Called whenever a message is pinned or unpinned from a private channel. + + :param channel: The private channel that had its pins updated. + :type channel: :class:`abc.PrivateChannel` + :param last_pin: The latest message that was pinned as an aware datetime in UTC. Could be ``None``. + :type last_pin: Optional[:class:`datetime.datetime`] + +.. function:: on_guild_channel_delete(channel) + on_guild_channel_create(channel) + + Called whenever a guild channel is deleted or created. + + Note that you can get the guild from :attr:`~abc.GuildChannel.guild`. + + This requires :attr:`Intents.guilds` to be enabled. + + :param channel: The guild channel that got created or deleted. + :type channel: :class:`abc.GuildChannel` + +.. function:: on_guild_channel_update(before, after) + + Called whenever a guild channel is updated. e.g. changed name, topic, permissions. + + This requires :attr:`Intents.guilds` to be enabled. + + :param before: The updated guild channel's old info. + :type before: :class:`abc.GuildChannel` + :param after: The updated guild channel's new info. + :type after: :class:`abc.GuildChannel` + +.. function:: on_guild_channel_pins_update(channel, last_pin) + + Called whenever a message is pinned or unpinned from a guild channel. + + This requires :attr:`Intents.guilds` to be enabled. + + :param channel: The guild channel that had its pins updated. + :type channel: Union[:class:`abc.GuildChannel`, :class:`Thread`] + :param last_pin: The latest message that was pinned as an aware datetime in UTC. Could be ``None``. + :type last_pin: Optional[:class:`datetime.datetime`] + +.. function:: on_thread_join(thread) + + Called whenever a thread is joined or created. Note that from the API's perspective there is no way to + differentiate between a thread being created or the bot joining a thread. + + Note that you can get the guild from :attr:`Thread.guild`. + + This requires :attr:`Intents.guilds` to be enabled. + + .. versionadded:: 2.0 + + :param thread: The thread that got joined. + :type thread: :class:`Thread` + +.. function:: on_thread_remove(thread) + + Called whenever a thread is removed. This is different from a thread being deleted. + + Note that you can get the guild from :attr:`Thread.guild`. + + This requires :attr:`Intents.guilds` to be enabled. + + .. warning:: + + Due to technical limitations, this event might not be called + as soon as one expects. Since the library tracks thread membership + locally, the API only sends updated thread membership status upon being + synced by joining a thread. + + .. versionadded:: 2.0 + + :param thread: The thread that got removed. + :type thread: :class:`Thread` + +.. function:: on_thread_delete(thread) + + Called whenever a thread is deleted. + + Note that you can get the guild from :attr:`Thread.guild`. + + This requires :attr:`Intents.guilds` to be enabled. + + .. versionadded:: 2.0 + + :param thread: The thread that got deleted. + :type thread: :class:`Thread` + +.. function:: on_thread_member_join(member) + on_thread_member_remove(member) + + Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`. + + You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`. + + This requires :attr:`Intents.members` to be enabled. + + .. versionadded:: 2.0 + + :param member: The member who joined or left. + :type member: :class:`ThreadMember` + +.. function:: on_thread_update(before, after) + + Called whenever a thread is updated. + + This requires :attr:`Intents.guilds` to be enabled. + + .. versionadded:: 2.0 + + :param before: The updated thread's old info. + :type before: :class:`Thread` + :param after: The updated thread's new info. + :type after: :class:`Thread` + +.. function:: on_guild_integrations_update(guild) + + Called whenever an integration is created, modified, or removed from a guild. + + This requires :attr:`Intents.integrations` to be enabled. + + .. versionadded:: 1.4 + + :param guild: The guild that had its integrations updated. + :type guild: :class:`Guild` + +.. function:: on_integration_create(integration) + + Called when an integration is created. + + This requires :attr:`Intents.integrations` to be enabled. + + .. versionadded:: 2.0 + + :param integration: The integration that was created. + :type integration: :class:`Integration` + +.. function:: on_integration_update(integration) + + Called when an integration is updated. + + This requires :attr:`Intents.integrations` to be enabled. + + .. versionadded:: 2.0 + + :param integration: The integration that was created. + :type integration: :class:`Integration` + +.. function:: on_raw_integration_delete(payload) + + Called when an integration is deleted. + + This requires :attr:`Intents.integrations` to be enabled. + + .. versionadded:: 2.0 + + :param payload: The raw event payload data. + :type payload: :class:`RawIntegrationDeleteEvent` + +.. function:: on_webhooks_update(channel) + + Called whenever a webhook is created, modified, or removed from a guild channel. + + This requires :attr:`Intents.webhooks` to be enabled. + + :param channel: The channel that had its webhooks updated. + :type channel: :class:`abc.GuildChannel` + +.. function:: on_member_join(member) + on_member_remove(member) + + Called when a :class:`Member` leaves or joins a :class:`Guild`. + + This requires :attr:`Intents.members` to be enabled. + + :param member: The member who joined or left. + :type member: :class:`Member` + +.. function:: on_member_update(before, after) + + Called when a :class:`Member` updates their profile. + + This is called when one or more of the following things change: + + - nickname + - roles + - pending + + This requires :attr:`Intents.members` to be enabled. + + :param before: The updated member's old info. + :type before: :class:`Member` + :param after: The updated member's updated info. + :type after: :class:`Member` + +.. function:: on_presence_update(before, after) + + Called when a :class:`Member` updates their presence. + + This is called when one or more of the following things change: + + - status + - activity + + This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled. + + .. versionadded:: 2.0 + + :param before: The updated member's old info. + :type before: :class:`Member` + :param after: The updated member's updated info. + :type after: :class:`Member` + +.. function:: on_user_update(before, after) + + Called when a :class:`User` updates their profile. + + This is called when one or more of the following things change: + + - avatar + - username + - discriminator + + This requires :attr:`Intents.members` to be enabled. + + :param before: The updated user's old info. + :type before: :class:`User` + :param after: The updated user's updated info. + :type after: :class:`User` + +.. function:: on_guild_join(guild) + + Called when a :class:`Guild` is either created by the :class:`Client` or when the + :class:`Client` joins a guild. + + This requires :attr:`Intents.guilds` to be enabled. + + :param guild: The guild that was joined. + :type guild: :class:`Guild` + +.. function:: on_guild_remove(guild) + + Called when a :class:`Guild` is removed from the :class:`Client`. + + This happens through, but not limited to, these circumstances: + + - The client got banned. + - The client got kicked. + - The client left the guild. + - The client or the guild owner deleted the guild. + + In order for this event to be invoked then the :class:`Client` must have + been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`) + + This requires :attr:`Intents.guilds` to be enabled. + + :param guild: The guild that got removed. + :type guild: :class:`Guild` + +.. function:: on_guild_update(before, after) + + Called when a :class:`Guild` updates, for example: + + - Changed name + - Changed AFK channel + - Changed AFK timeout + - etc + + This requires :attr:`Intents.guilds` to be enabled. + + :param before: The guild prior to being updated. + :type before: :class:`Guild` + :param after: The guild after being updated. + :type after: :class:`Guild` + +.. function:: on_guild_role_create(role) + on_guild_role_delete(role) + + Called when a :class:`Guild` creates or deletes a new :class:`Role`. + + To get the guild it belongs to, use :attr:`Role.guild`. + + This requires :attr:`Intents.guilds` to be enabled. + + :param role: The role that was created or deleted. + :type role: :class:`Role` + +.. function:: on_guild_role_update(before, after) + + Called when a :class:`Role` is changed guild-wide. + + This requires :attr:`Intents.guilds` to be enabled. + + :param before: The updated role's old info. + :type before: :class:`Role` + :param after: The updated role's updated info. + :type after: :class:`Role` + +.. function:: on_guild_emojis_update(guild, before, after) + + Called when a :class:`Guild` adds or removes :class:`Emoji`. + + This requires :attr:`Intents.emojis_and_stickers` to be enabled. + + :param guild: The guild who got their emojis updated. + :type guild: :class:`Guild` + :param before: A list of emojis before the update. + :type before: Sequence[:class:`Emoji`] + :param after: A list of emojis after the update. + :type after: Sequence[:class:`Emoji`] + +.. function:: on_guild_stickers_update(guild, before, after) + + Called when a :class:`Guild` updates its stickers. + + This requires :attr:`Intents.emojis_and_stickers` to be enabled. + + .. versionadded:: 2.0 + + :param guild: The guild who got their stickers updated. + :type guild: :class:`Guild` + :param before: A list of stickers before the update. + :type before: Sequence[:class:`GuildSticker`] + :param after: A list of stickers after the update. + :type after: Sequence[:class:`GuildSticker`] + +.. function:: on_guild_available(guild) + on_guild_unavailable(guild) + + Called when a guild becomes available or unavailable. The guild must have + existed in the :attr:`Client.guilds` cache. + + This requires :attr:`Intents.guilds` to be enabled. + + :param guild: The :class:`Guild` that has changed availability. + +.. function:: on_voice_state_update(member, before, after) + + Called when a :class:`Member` changes their :class:`VoiceState`. + + The following, but not limited to, examples illustrate when this event is called: + + - A member joins a voice or stage channel. + - A member leaves a voice or stage channel. + - A member is muted or deafened by their own accord. + - A member is muted or deafened by a guild administrator. + + This requires :attr:`Intents.voice_states` to be enabled. + + :param member: The member whose voice states changed. + :type member: :class:`Member` + :param before: The voice state prior to the changes. + :type before: :class:`VoiceState` + :param after: The voice state after the changes. + :type after: :class:`VoiceState` + +.. function:: on_stage_instance_create(stage_instance) + on_stage_instance_delete(stage_instance) + + Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`. + + .. versionadded:: 2.0 + + :param stage_instance: The stage instance that was created or deleted. + :type stage_instance: :class:`StageInstance` + +.. function:: on_stage_instance_update(before, after) + + Called when a :class:`StageInstance` is updated. + + The following, but not limited to, examples illustrate when this event is called: + + - The topic is changed. + - The privacy level is changed. + + .. versionadded:: 2.0 + + :param before: The stage instance before the update. + :type before: :class:`StageInstance` + :param after: The stage instance after the update. + :type after: :class:`StageInstance` + +.. function:: on_member_ban(guild, user) + + Called when user gets banned from a :class:`Guild`. + + This requires :attr:`Intents.bans` to be enabled. + + :param guild: The guild the user got banned from. + :type guild: :class:`Guild` + :param user: The user that got banned. + Can be either :class:`User` or :class:`Member` depending if + the user was in the guild or not at the time of removal. + :type user: Union[:class:`User`, :class:`Member`] + +.. function:: on_member_unban(guild, user) + + Called when a :class:`User` gets unbanned from a :class:`Guild`. + + This requires :attr:`Intents.bans` to be enabled. + + :param guild: The guild the user got unbanned from. + :type guild: :class:`Guild` + :param user: The user that got unbanned. + :type user: :class:`User` + +.. function:: on_invite_create(invite) + + Called when an :class:`Invite` is created. + You must have the :attr:`~Permissions.manage_channels` permission to receive this. + + .. versionadded:: 1.3 + + .. note:: + + There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` + attributes will be of :class:`Object` rather than the respective models. + + This requires :attr:`Intents.invites` to be enabled. + + :param invite: The invite that was created. + :type invite: :class:`Invite` + +.. function:: on_invite_delete(invite) + + Called when an :class:`Invite` is deleted. + You must have the :attr:`~Permissions.manage_channels` permission to receive this. + + .. versionadded:: 1.3 + + .. note:: + + There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` + attributes will be of :class:`Object` rather than the respective models. + + Outside of those two attributes, the only other attribute guaranteed to be + filled by the Discord gateway for this event is :attr:`Invite.code`. + + This requires :attr:`Intents.invites` to be enabled. + + :param invite: The invite that was deleted. + :type invite: :class:`Invite` + +.. function:: on_group_join(channel, user) + on_group_remove(channel, user) + + Called when someone joins or leaves a :class:`GroupChannel`. + + :param channel: The group that the user joined or left. + :type channel: :class:`GroupChannel` + :param user: The user that joined or left. + :type user: :class:`User` + +.. _discord-api-utils: + +Utility Functions +----------------- + +.. autofunction:: discord.utils.find + +.. autofunction:: discord.utils.get + +.. autofunction:: discord.utils.snowflake_time + +.. autofunction:: discord.utils.oauth_url + +.. autofunction:: discord.utils.remove_markdown + +.. autofunction:: discord.utils.escape_markdown + +.. autofunction:: discord.utils.escape_mentions + +.. autofunction:: discord.utils.resolve_invite + +.. autofunction:: discord.utils.resolve_template + +.. autofunction:: discord.utils.sleep_until + +.. autofunction:: discord.utils.utcnow + +.. autofunction:: discord.utils.format_dt + +.. autofunction:: discord.utils.as_chunks + +.. _discord-api-enums: + +Enumerations +------------- + +The API provides some enumerations for certain types of strings to avoid the API +from being stringly typed in case the strings change in the future. + +All enumerations are subclasses of an internal class which mimics the behaviour +of :class:`enum.Enum`. + +.. class:: ChannelType + + Specifies the type of channel. + + .. attribute:: text + + A text channel. + .. attribute:: voice + + A voice channel. + .. attribute:: private + + A private text channel. Also called a direct message. + .. attribute:: group + + A private group text channel. + .. attribute:: category + + A category channel. + .. attribute:: news + + A guild news channel. + + .. attribute:: store + + A guild store channel. + + .. attribute:: stage_voice + + A guild stage voice channel. + + .. versionadded:: 1.7 + + .. attribute:: news_thread + + A news thread + + .. versionadded:: 2.0 + + .. attribute:: public_thread + + A public thread + + .. versionadded:: 2.0 + + .. attribute:: private_thread + + A private thread + + .. versionadded:: 2.0 + +.. class:: MessageType + + Specifies the type of :class:`Message`. This is used to denote if a message + is to be interpreted as a system message or a regular message. + + .. container:: operations + + .. describe:: x == y + + Checks if two messages are equal. + .. describe:: x != y + + Checks if two messages are not equal. + + .. attribute:: default + + The default message type. This is the same as regular messages. + .. attribute:: recipient_add + + The system message when a user is added to a group private + message or a thread. + .. attribute:: recipient_remove + + The system message when a user is removed from a group private + message or a thread. + .. attribute:: call + + The system message denoting call state, e.g. missed call, started call, + etc. + .. attribute:: channel_name_change + + The system message denoting that a channel's name has been changed. + .. attribute:: channel_icon_change + + The system message denoting that a channel's icon has been changed. + .. attribute:: pins_add + + The system message denoting that a pinned message has been added to a channel. + .. attribute:: new_member + + The system message denoting that a new member has joined a Guild. + + .. attribute:: premium_guild_subscription + + The system message denoting that a member has "nitro boosted" a guild. + .. attribute:: premium_guild_tier_1 + + The system message denoting that a member has "nitro boosted" a guild + and it achieved level 1. + .. attribute:: premium_guild_tier_2 + + The system message denoting that a member has "nitro boosted" a guild + and it achieved level 2. + .. attribute:: premium_guild_tier_3 + + The system message denoting that a member has "nitro boosted" a guild + and it achieved level 3. + .. attribute:: channel_follow_add + + The system message denoting that an announcement channel has been followed. + + .. versionadded:: 1.3 + .. attribute:: guild_stream + + The system message denoting that a member is streaming in the guild. + + .. versionadded:: 1.7 + .. attribute:: guild_discovery_disqualified + + The system message denoting that the guild is no longer eligible for Server + Discovery. + + .. versionadded:: 1.7 + .. attribute:: guild_discovery_requalified + + The system message denoting that the guild has become eligible again for Server + Discovery. + + .. versionadded:: 1.7 + .. attribute:: guild_discovery_grace_period_initial_warning + + The system message denoting that the guild has failed to meet the Server + Discovery requirements for one week. + + .. versionadded:: 1.7 + .. attribute:: guild_discovery_grace_period_final_warning + + The system message denoting that the guild has failed to meet the Server + Discovery requirements for 3 weeks in a row. + + .. versionadded:: 1.7 + .. attribute:: thread_created + + The system message denoting that a thread has been created. This is only + sent if the thread has been created from an older message. The period of time + required for a message to be considered old cannot be relied upon and is up to + Discord. + + .. versionadded:: 2.0 + .. attribute:: reply + + The system message denoting that the author is replying to a message. + + .. versionadded:: 2.0 + .. attribute:: application_command + + The system message denoting that an application (or "slash") command was executed. + + .. versionadded:: 2.0 + .. attribute:: guild_invite_reminder + + The system message sent as a reminder to invite people to the guild. + + .. versionadded:: 2.0 + .. attribute:: thread_starter_message + + The system message denoting the message in the thread that is the one that started the + thread's conversation topic. + + .. versionadded:: 2.0 + +.. class:: UserFlags + + Represents Discord User flags. + + .. attribute:: staff + + The user is a Discord Employee. + .. attribute:: partner + + The user is a Discord Partner. + .. attribute:: hypesquad + + The user is a HypeSquad Events member. + .. attribute:: bug_hunter + + The user is a Bug Hunter. + .. attribute:: mfa_sms + + The user has SMS recovery for Multi Factor Authentication enabled. + .. attribute:: premium_promo_dismissed + + The user has dismissed the Discord Nitro promotion. + .. attribute:: hypesquad_bravery + + The user is a HypeSquad Bravery member. + .. attribute:: hypesquad_brilliance + + The user is a HypeSquad Brilliance member. + .. attribute:: hypesquad_balance + + The user is a HypeSquad Balance member. + .. attribute:: early_supporter + + The user is an Early Supporter. + .. attribute:: team_user + + The user is a Team User. + .. attribute:: system + + The user is a system user (i.e. represents Discord officially). + .. attribute:: has_unread_urgent_messages + + The user has an unread system message. + .. attribute:: bug_hunter_level_2 + + The user is a Bug Hunter Level 2. + .. attribute:: verified_bot + + The user is a Verified Bot. + .. attribute:: verified_bot_developer + + The user is an Early Verified Bot Developer. + .. attribute:: discord_certified_moderator + + The user is a Discord Certified Moderator. + +.. class:: ActivityType + + Specifies the type of :class:`Activity`. This is used to check how to + interpret the activity itself. + + .. attribute:: unknown + + An unknown activity type. This should generally not happen. + .. attribute:: playing + + A "Playing" activity type. + .. attribute:: streaming + + A "Streaming" activity type. + .. attribute:: listening + + A "Listening" activity type. + .. attribute:: watching + + A "Watching" activity type. + .. attribute:: custom + + A custom activity type. + .. attribute:: competing + + A competing activity type. + + .. versionadded:: 1.5 + +.. class:: InteractionType + + Specifies the type of :class:`Interaction`. + + .. versionadded:: 2.0 + + .. attribute:: ping + + Represents Discord pinging to see if the interaction response server is alive. + .. attribute:: application_command + + Represents a slash command interaction. + .. attribute:: component + + Represents a component based interaction, i.e. using the Discord Bot UI Kit. + +.. class:: InteractionResponseType + + Specifies the response type for the interaction. + + .. versionadded:: 2.0 + + .. attribute:: pong + + Pongs the interaction when given a ping. + + See also :meth:`InteractionResponse.pong` + .. attribute:: channel_message + + Respond to the interaction with a message. + + See also :meth:`InteractionResponse.send_message` + .. attribute:: deferred_channel_message + + Responds to the interaction with a message at a later time. + + See also :meth:`InteractionResponse.defer` + .. attribute:: deferred_message_update + + Acknowledges the component interaction with a promise that + the message will update later (though there is no need to actually update the message). + + See also :meth:`InteractionResponse.defer` + .. attribute:: message_update + + Responds to the interaction by editing the message. + + See also :meth:`InteractionResponse.edit_message` + +.. class:: ComponentType + + Represents the component type of a component. + + .. versionadded:: 2.0 + + .. attribute:: action_row + + Represents the group component which holds different components in a row. + .. attribute:: button + + Represents a button component. + .. attribute:: select + + Represents a select component. + + +.. class:: ButtonStyle + + Represents the style of the button component. + + .. versionadded:: 2.0 + + .. attribute:: primary + + Represents a blurple button for the primary action. + .. attribute:: secondary + + Represents a grey button for the secondary action. + .. attribute:: success + + Represents a green button for a successful action. + .. attribute:: danger + + Represents a red button for a dangerous action. + .. attribute:: link + + Represents a link button. + + .. attribute:: blurple + + An alias for :attr:`primary`. + .. attribute:: grey + + An alias for :attr:`secondary`. + .. attribute:: gray + + An alias for :attr:`secondary`. + .. attribute:: green + + An alias for :attr:`success`. + .. attribute:: red + + An alias for :attr:`danger`. + .. attribute:: url + + An alias for :attr:`link`. + +.. class:: VoiceRegion + + Specifies the region a voice server belongs to. + + .. attribute:: amsterdam + + The Amsterdam region. + .. attribute:: brazil + + The Brazil region. + .. attribute:: dubai + + The Dubai region. + + .. versionadded:: 1.3 + + .. attribute:: eu_central + + The EU Central region. + .. attribute:: eu_west + + The EU West region. + .. attribute:: europe + + The Europe region. + + .. versionadded:: 1.3 + + .. attribute:: frankfurt + + The Frankfurt region. + .. attribute:: hongkong + + The Hong Kong region. + .. attribute:: india + + The India region. + + .. versionadded:: 1.2 + + .. attribute:: japan + + The Japan region. + .. attribute:: london + + The London region. + .. attribute:: russia + + The Russia region. + .. attribute:: singapore + + The Singapore region. + .. attribute:: southafrica + + The South Africa region. + .. attribute:: south_korea + + The South Korea region. + .. attribute:: sydney + + The Sydney region. + .. attribute:: us_central + + The US Central region. + .. attribute:: us_east + + The US East region. + .. attribute:: us_south + + The US South region. + .. attribute:: us_west + + The US West region. + .. attribute:: vip_amsterdam + + The Amsterdam region for VIP guilds. + .. attribute:: vip_us_east + + The US East region for VIP guilds. + .. attribute:: vip_us_west + + The US West region for VIP guilds. + +.. class:: VerificationLevel + + Specifies a :class:`Guild`\'s verification level, which is the criteria in + which a member must meet before being able to send messages to the guild. + + .. container:: operations + + .. versionadded:: 2.0 + + .. describe:: x == y + + Checks if two verification levels are equal. + .. describe:: x != y + + Checks if two verification levels are not equal. + .. describe:: x > y + + Checks if a verification level is higher than another. + .. describe:: x < y + + Checks if a verification level is lower than another. + .. describe:: x >= y + + Checks if a verification level is higher or equal to another. + .. describe:: x <= y + + Checks if a verification level is lower or equal to another. + + .. attribute:: none + + No criteria set. + .. attribute:: low + + Member must have a verified email on their Discord account. + .. attribute:: medium + + Member must have a verified email and be registered on Discord for more + than five minutes. + .. attribute:: high + + Member must have a verified email, be registered on Discord for more + than five minutes, and be a member of the guild itself for more than + ten minutes. + .. attribute:: highest + + Member must have a verified phone on their Discord account. + +.. class:: NotificationLevel + + Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default. + + .. container:: operations + + .. versionadded:: 2.0 + + .. describe:: x == y + + Checks if two notification levels are equal. + .. describe:: x != y + + Checks if two notification levels are not equal. + .. describe:: x > y + + Checks if a notification level is higher than another. + .. describe:: x < y + + Checks if a notification level is lower than another. + .. describe:: x >= y + + Checks if a notification level is higher or equal to another. + .. describe:: x <= y + + Checks if a notification level is lower or equal to another. + + .. attribute:: all_messages + + Members receive notifications for every message regardless of them being mentioned. + .. attribute:: only_mentions + + Members receive notifications for messages they are mentioned in. + +.. class:: ContentFilter + + Specifies a :class:`Guild`\'s explicit content filter, which is the machine + learning algorithms that Discord uses to detect if an image contains + pornography or otherwise explicit content. + + .. container:: operations + + .. versionadded:: 2.0 + + .. describe:: x == y + + Checks if two content filter levels are equal. + .. describe:: x != y + + Checks if two content filter levels are not equal. + .. describe:: x > y + + Checks if a content filter level is higher than another. + .. describe:: x < y + + Checks if a content filter level is lower than another. + .. describe:: x >= y + + Checks if a content filter level is higher or equal to another. + .. describe:: x <= y + + Checks if a content filter level is lower or equal to another. + + .. attribute:: disabled + + The guild does not have the content filter enabled. + .. attribute:: no_role + + The guild has the content filter enabled for members without a role. + .. attribute:: all_members + + The guild has the content filter enabled for every member. + +.. class:: Status + + Specifies a :class:`Member` 's status. + + .. attribute:: online + + The member is online. + .. attribute:: offline + + The member is offline. + .. attribute:: idle + + The member is idle. + .. attribute:: dnd + + The member is "Do Not Disturb". + .. attribute:: do_not_disturb + + An alias for :attr:`dnd`. + .. attribute:: invisible + + The member is "invisible". In reality, this is only used in sending + a presence a la :meth:`Client.change_presence`. When you receive a + user's presence this will be :attr:`offline` instead. + + +.. class:: AuditLogAction + + Represents the type of action being done for a :class:`AuditLogEntry`\, + which is retrievable via :meth:`Guild.audit_logs`. + + .. attribute:: guild_update + + The guild has updated. Things that trigger this include: + + - Changing the guild vanity URL + - Changing the guild invite splash + - Changing the guild AFK channel or timeout + - Changing the guild voice server region + - Changing the guild icon, banner, or discovery splash + - Changing the guild moderation settings + - Changing things related to the guild widget + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Guild`. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.afk_channel` + - :attr:`~AuditLogDiff.system_channel` + - :attr:`~AuditLogDiff.afk_timeout` + - :attr:`~AuditLogDiff.default_message_notifications` + - :attr:`~AuditLogDiff.explicit_content_filter` + - :attr:`~AuditLogDiff.mfa_level` + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.owner` + - :attr:`~AuditLogDiff.splash` + - :attr:`~AuditLogDiff.discovery_splash` + - :attr:`~AuditLogDiff.icon` + - :attr:`~AuditLogDiff.banner` + - :attr:`~AuditLogDiff.vanity_url_code` + + .. attribute:: channel_create + + A new channel was created. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + either a :class:`abc.GuildChannel` or :class:`Object` with an ID. + + A more filled out object in the :class:`Object` case can be found + by using :attr:`~AuditLogEntry.after`. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.type` + - :attr:`~AuditLogDiff.overwrites` + + .. attribute:: channel_update + + A channel was updated. Things that trigger this include: + + - The channel name or topic was changed + - The channel bitrate was changed + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`abc.GuildChannel` or :class:`Object` with an ID. + + A more filled out object in the :class:`Object` case can be found + by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.type` + - :attr:`~AuditLogDiff.position` + - :attr:`~AuditLogDiff.overwrites` + - :attr:`~AuditLogDiff.topic` + - :attr:`~AuditLogDiff.bitrate` + - :attr:`~AuditLogDiff.rtc_region` + - :attr:`~AuditLogDiff.video_quality_mode` + - :attr:`~AuditLogDiff.default_auto_archive_duration` + + .. attribute:: channel_delete + + A channel was deleted. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + an :class:`Object` with an ID. + + A more filled out object can be found by using the + :attr:`~AuditLogEntry.before` object. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.type` + - :attr:`~AuditLogDiff.overwrites` + + .. attribute:: overwrite_create + + A channel permission overwrite was created. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`abc.GuildChannel` or :class:`Object` with an ID. + + When this is the action, the type of :attr:`~AuditLogEntry.extra` is + either a :class:`Role` or :class:`Member`. If the object is not found + then it is a :class:`Object` with an ID being filled, a name, and a + ``type`` attribute set to either ``'role'`` or ``'member'`` to help + dictate what type of ID it is. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.deny` + - :attr:`~AuditLogDiff.allow` + - :attr:`~AuditLogDiff.id` + - :attr:`~AuditLogDiff.type` + + .. attribute:: overwrite_update + + A channel permission overwrite was changed, this is typically + when the permission values change. + + See :attr:`overwrite_create` for more information on how the + :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields + are set. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.deny` + - :attr:`~AuditLogDiff.allow` + - :attr:`~AuditLogDiff.id` + - :attr:`~AuditLogDiff.type` + + .. attribute:: overwrite_delete + + A channel permission overwrite was deleted. + + See :attr:`overwrite_create` for more information on how the + :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields + are set. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.deny` + - :attr:`~AuditLogDiff.allow` + - :attr:`~AuditLogDiff.id` + - :attr:`~AuditLogDiff.type` + + .. attribute:: kick + + A member was kicked. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`User` who got kicked. + + When this is the action, :attr:`~AuditLogEntry.changes` is empty. + + .. attribute:: member_prune + + A member prune was triggered. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + set to ``None``. + + When this is the action, the type of :attr:`~AuditLogEntry.extra` is + set to an unspecified proxy object with two attributes: + + - ``delete_members_days``: An integer specifying how far the prune was. + - ``members_removed``: An integer specifying how many members were removed. + + When this is the action, :attr:`~AuditLogEntry.changes` is empty. + + .. attribute:: ban + + A member was banned. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`User` who got banned. + + When this is the action, :attr:`~AuditLogEntry.changes` is empty. + + .. attribute:: unban + + A member was unbanned. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`User` who got unbanned. + + When this is the action, :attr:`~AuditLogEntry.changes` is empty. + + .. attribute:: member_update + + A member has updated. This triggers in the following situations: + + - A nickname was changed + - They were server muted or deafened (or it was undo'd) + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Member` or :class:`User` who got updated. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.nick` + - :attr:`~AuditLogDiff.mute` + - :attr:`~AuditLogDiff.deaf` + + .. attribute:: member_role_update + + A member's role has been updated. This triggers when a member + either gains a role or loses a role. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Member` or :class:`User` who got the role. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.roles` + + .. attribute:: member_move + + A member's voice channel has been updated. This triggers when a + member is moved to a different voice channel. + + When this is the action, the type of :attr:`~AuditLogEntry.extra` is + set to an unspecified proxy object with two attributes: + + - ``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved. + - ``count``: An integer specifying how many members were moved. + + .. versionadded:: 1.3 + + .. attribute:: member_disconnect + + A member's voice state has changed. This triggers when a + member is force disconnected from voice. + + When this is the action, the type of :attr:`~AuditLogEntry.extra` is + set to an unspecified proxy object with one attribute: + + - ``count``: An integer specifying how many members were disconnected. + + .. versionadded:: 1.3 + + .. attribute:: bot_add + + A bot was added to the guild. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Member` or :class:`User` which was added to the guild. + + .. versionadded:: 1.3 + + .. attribute:: role_create + + A new role was created. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Role` or a :class:`Object` with the ID. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.colour` + - :attr:`~AuditLogDiff.mentionable` + - :attr:`~AuditLogDiff.hoist` + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.permissions` + + .. attribute:: role_update + + A role was updated. This triggers in the following situations: + + - The name has changed + - The permissions have changed + - The colour has changed + - Its hoist/mentionable state has changed + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Role` or a :class:`Object` with the ID. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.colour` + - :attr:`~AuditLogDiff.mentionable` + - :attr:`~AuditLogDiff.hoist` + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.permissions` + + .. attribute:: role_delete + + A role was deleted. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Role` or a :class:`Object` with the ID. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.colour` + - :attr:`~AuditLogDiff.mentionable` + - :attr:`~AuditLogDiff.hoist` + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.permissions` + + .. attribute:: invite_create + + An invite was created. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Invite` that was created. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.max_age` + - :attr:`~AuditLogDiff.code` + - :attr:`~AuditLogDiff.temporary` + - :attr:`~AuditLogDiff.inviter` + - :attr:`~AuditLogDiff.channel` + - :attr:`~AuditLogDiff.uses` + - :attr:`~AuditLogDiff.max_uses` + + .. attribute:: invite_update + + An invite was updated. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Invite` that was updated. + + .. attribute:: invite_delete + + An invite was deleted. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Invite` that was deleted. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.max_age` + - :attr:`~AuditLogDiff.code` + - :attr:`~AuditLogDiff.temporary` + - :attr:`~AuditLogDiff.inviter` + - :attr:`~AuditLogDiff.channel` + - :attr:`~AuditLogDiff.uses` + - :attr:`~AuditLogDiff.max_uses` + + .. attribute:: webhook_create + + A webhook was created. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Object` with the webhook ID. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.channel` + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.type` (always set to ``1`` if so) + + .. attribute:: webhook_update + + A webhook was updated. This trigger in the following situations: + + - The webhook name changed + - The webhook channel changed + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Object` with the webhook ID. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.channel` + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.avatar` + + .. attribute:: webhook_delete + + A webhook was deleted. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Object` with the webhook ID. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.channel` + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.type` (always set to ``1`` if so) + + .. attribute:: emoji_create + + An emoji was created. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Emoji` or :class:`Object` with the emoji ID. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.name` + + .. attribute:: emoji_update + + An emoji was updated. This triggers when the name has changed. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Emoji` or :class:`Object` with the emoji ID. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.name` + + .. attribute:: emoji_delete + + An emoji was deleted. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Object` with the emoji ID. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.name` + + .. attribute:: message_delete + + A message was deleted by a moderator. Note that this + only triggers if the message was deleted by someone other than the author. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Member` or :class:`User` who had their message deleted. + + When this is the action, the type of :attr:`~AuditLogEntry.extra` is + set to an unspecified proxy object with two attributes: + + - ``count``: An integer specifying how many messages were deleted. + - ``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted. + + .. attribute:: message_bulk_delete + + Messages were bulk deleted by a moderator. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged. + + When this is the action, the type of :attr:`~AuditLogEntry.extra` is + set to an unspecified proxy object with one attribute: + + - ``count``: An integer specifying how many messages were deleted. + + .. versionadded:: 1.3 + + .. attribute:: message_pin + + A message was pinned in a channel. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Member` or :class:`User` who had their message pinned. + + When this is the action, the type of :attr:`~AuditLogEntry.extra` is + set to an unspecified proxy object with two attributes: + + - ``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned. + - ``message_id``: the ID of the message which was pinned. + + .. versionadded:: 1.3 + + .. attribute:: message_unpin + + A message was unpinned in a channel. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Member` or :class:`User` who had their message unpinned. + + When this is the action, the type of :attr:`~AuditLogEntry.extra` is + set to an unspecified proxy object with two attributes: + + - ``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned. + - ``message_id``: the ID of the message which was unpinned. + + .. versionadded:: 1.3 + + .. attribute:: integration_create + + A guild integration was created. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Object` with the integration ID of the integration which was created. + + .. versionadded:: 1.3 + + .. attribute:: integration_update + + A guild integration was updated. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Object` with the integration ID of the integration which was updated. + + .. versionadded:: 1.3 + + .. attribute:: integration_delete + + A guild integration was deleted. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Object` with the integration ID of the integration which was deleted. + + .. versionadded:: 1.3 + + .. attribute:: stage_instance_create + + A stage instance was started. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`StageInstance` or :class:`Object` with the ID of the stage + instance which was created. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.topic` + - :attr:`~AuditLogDiff.privacy_level` + + .. versionadded:: 2.0 + + .. attribute:: stage_instance_update + + A stage instance was updated. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`StageInstance` or :class:`Object` with the ID of the stage + instance which was updated. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.topic` + - :attr:`~AuditLogDiff.privacy_level` + + .. versionadded:: 2.0 + + .. attribute:: stage_instance_delete + + A stage instance was ended. + + .. versionadded:: 2.0 + + .. attribute:: sticker_create + + A sticker was created. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`GuildSticker` or :class:`Object` with the ID of the sticker + which was updated. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.emoji` + - :attr:`~AuditLogDiff.type` + - :attr:`~AuditLogDiff.format_type` + - :attr:`~AuditLogDiff.description` + - :attr:`~AuditLogDiff.available` + + .. versionadded:: 2.0 + + .. attribute:: sticker_update + + A sticker was updated. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`GuildSticker` or :class:`Object` with the ID of the sticker + which was updated. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.emoji` + - :attr:`~AuditLogDiff.type` + - :attr:`~AuditLogDiff.format_type` + - :attr:`~AuditLogDiff.description` + - :attr:`~AuditLogDiff.available` + + .. versionadded:: 2.0 + + .. attribute:: sticker_delete + + A sticker was deleted. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`GuildSticker` or :class:`Object` with the ID of the sticker + which was updated. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.emoji` + - :attr:`~AuditLogDiff.type` + - :attr:`~AuditLogDiff.format_type` + - :attr:`~AuditLogDiff.description` + - :attr:`~AuditLogDiff.available` + + .. versionadded:: 2.0 + + .. attribute:: thread_create + + A thread was created. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Thread` or :class:`Object` with the ID of the thread which + was created. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.archived` + - :attr:`~AuditLogDiff.locked` + - :attr:`~AuditLogDiff.auto_archive_duration` + + .. versionadded:: 2.0 + + .. attribute:: thread_update + + A thread was updated. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Thread` or :class:`Object` with the ID of the thread which + was updated. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.archived` + - :attr:`~AuditLogDiff.locked` + - :attr:`~AuditLogDiff.auto_archive_duration` + + .. versionadded:: 2.0 + + .. attribute:: thread_delete + + A thread was deleted. + + When this is the action, the type of :attr:`~AuditLogEntry.target` is + the :class:`Thread` or :class:`Object` with the ID of the thread which + was deleted. + + Possible attributes for :class:`AuditLogDiff`: + + - :attr:`~AuditLogDiff.name` + - :attr:`~AuditLogDiff.archived` + - :attr:`~AuditLogDiff.locked` + - :attr:`~AuditLogDiff.auto_archive_duration` + + .. versionadded:: 2.0 + +.. class:: AuditLogActionCategory + + Represents the category that the :class:`AuditLogAction` belongs to. + + This can be retrieved via :attr:`AuditLogEntry.category`. + + .. attribute:: create + + The action is the creation of something. + + .. attribute:: delete + + The action is the deletion of something. + + .. attribute:: update + + The action is the update of something. + +.. class:: TeamMembershipState + + Represents the membership state of a team member retrieved through :func:`Client.application_info`. + + .. versionadded:: 1.3 + + .. attribute:: invited + + Represents an invited member. + + .. attribute:: accepted + + Represents a member currently in the team. + +.. class:: WebhookType + + Represents the type of webhook that can be received. + + .. versionadded:: 1.3 + + .. attribute:: incoming + + Represents a webhook that can post messages to channels with a token. + + .. attribute:: channel_follower + + Represents a webhook that is internally managed by Discord, used for following channels. + + .. attribute:: application + + Represents a webhook that is used for interactions or applications. + + .. versionadded:: 2.0 + +.. class:: ExpireBehaviour + + Represents the behaviour the :class:`Integration` should perform + when a user's subscription has finished. + + There is an alias for this called ``ExpireBehavior``. + + .. versionadded:: 1.4 + + .. attribute:: remove_role + + This will remove the :attr:`StreamIntegration.role` from the user + when their subscription is finished. + + .. attribute:: kick + + This will kick the user when their subscription is finished. + +.. class:: DefaultAvatar + + Represents the default avatar of a Discord :class:`User` + + .. attribute:: blurple + + Represents the default avatar with the color blurple. + See also :attr:`Colour.blurple` + .. attribute:: grey + + Represents the default avatar with the color grey. + See also :attr:`Colour.greyple` + .. attribute:: gray + + An alias for :attr:`grey`. + .. attribute:: green + + Represents the default avatar with the color green. + See also :attr:`Colour.green` + .. attribute:: orange + + Represents the default avatar with the color orange. + See also :attr:`Colour.orange` + .. attribute:: red + + Represents the default avatar with the color red. + See also :attr:`Colour.red` + +.. class:: StickerType + + Represents the type of sticker. + + .. versionadded:: 2.0 + + .. attribute:: standard + + Represents a standard sticker that all Nitro users can use. + + .. attribute:: guild + + Represents a custom sticker created in a guild. + +.. class:: StickerFormatType + + Represents the type of sticker images. + + .. versionadded:: 1.6 + + .. attribute:: png + + Represents a sticker with a png image. + + .. attribute:: apng + + Represents a sticker with an apng image. + + .. attribute:: lottie + + Represents a sticker with a lottie image. + +.. class:: InviteTarget + + Represents the invite type for voice channel invites. + + .. versionadded:: 2.0 + + .. attribute:: unknown + + The invite doesn't target anyone or anything. + + .. attribute:: stream + + A stream invite that targets a user. + + .. attribute:: embedded_application + + A stream invite that targets an embedded application. + +.. class:: VideoQualityMode + + Represents the camera video quality mode for voice channel participants. + + .. versionadded:: 2.0 + + .. attribute:: auto + + Represents auto camera video quality. + + .. attribute:: full + + Represents full camera video quality. + +.. class:: StagePrivacyLevel + + Represents a stage instance's privacy level. + + .. versionadded:: 2.0 + + .. attribute:: public + + The stage instance can be joined by external users. + + .. attribute:: closed + + The stage instance can only be joined by members of the guild. + + .. attribute:: guild_only + + Alias for :attr:`.closed` + +.. class:: NSFWLevel + + Represents the NSFW level of a guild. + + .. versionadded:: 2.0 + + .. container:: operations + + .. describe:: x == y + + Checks if two NSFW levels are equal. + .. describe:: x != y + + Checks if two NSFW levels are not equal. + .. describe:: x > y + + Checks if a NSFW level is higher than another. + .. describe:: x < y + + Checks if a NSFW level is lower than another. + .. describe:: x >= y + + Checks if a NSFW level is higher or equal to another. + .. describe:: x <= y + + Checks if a NSFW level is lower or equal to another. + + .. attribute:: default + + The guild has not been categorised yet. + + .. attribute:: explicit + + The guild contains NSFW content. + + .. attribute:: safe + + The guild does not contain any NSFW content. + + .. attribute:: age_restricted + + The guild may contain NSFW content. + +Async Iterator +---------------- + +Some API functions return an "async iterator". An async iterator is something that is +capable of being used in an :ref:`async for statement `. + +These async iterators can be used as follows: :: + + async for elem in channel.history(): + # do stuff with elem here + +Certain utilities make working with async iterators easier, detailed below. + +.. class:: AsyncIterator + + Represents the "AsyncIterator" concept. Note that no such class exists, + it is purely abstract. + + .. container:: operations + + .. describe:: async for x in y + + Iterates over the contents of the async iterator. + + + .. method:: next() + :async: + + |coro| + + Advances the iterator by one, if possible. If no more items are found + then this raises :exc:`NoMoreItems`. + + .. method:: get(**attrs) + :async: + + |coro| + + Similar to :func:`utils.get` except run over the async iterator. + + Getting the last message by a user named 'Dave' or ``None``: :: + + msg = await channel.history().get(author__name='Dave') + + .. method:: find(predicate) + :async: + + |coro| + + Similar to :func:`utils.find` except run over the async iterator. + + Unlike :func:`utils.find`\, the predicate provided can be a + |coroutine_link|_. + + Getting the last audit log with a reason or ``None``: :: + + def predicate(event): + return event.reason is not None + + event = await guild.audit_logs().find(predicate) + + :param predicate: The predicate to use. Could be a |coroutine_link|_. + :return: The first element that returns ``True`` for the predicate or ``None``. + + .. method:: flatten() + :async: + + |coro| + + Flattens the async iterator into a :class:`list` with all the elements. + + :return: A list of every element in the async iterator. + :rtype: list + + .. method:: chunk(max_size) + + Collects items into chunks of up to a given maximum size. + Another :class:`AsyncIterator` is returned which collects items into + :class:`list`\s of a given size. The maximum chunk size must be a positive integer. + + .. versionadded:: 1.6 + + Collecting groups of users: :: + + async for leader, *users in reaction.users().chunk(3): + ... + + .. warning:: + + The last chunk collected may not be as large as ``max_size``. + + :param max_size: The size of individual chunks. + :rtype: :class:`AsyncIterator` + + .. method:: map(func) + + This is similar to the built-in :func:`map ` function. Another + :class:`AsyncIterator` is returned that executes the function on + every element it is iterating over. This function can either be a + regular function or a |coroutine_link|_. + + Creating a content iterator: :: + + def transform(message): + return message.content + + async for content in channel.history().map(transform): + message_length = len(content) + + :param func: The function to call on every element. Could be a |coroutine_link|_. + :rtype: :class:`AsyncIterator` + + .. method:: filter(predicate) + + This is similar to the built-in :func:`filter ` function. Another + :class:`AsyncIterator` is returned that filters over the original + async iterator. This predicate can be a regular function or a |coroutine_link|_. + + Getting messages by non-bot accounts: :: + + def predicate(message): + return not message.author.bot + + async for elem in channel.history().filter(predicate): + ... + + :param predicate: The predicate to call on every element. Could be a |coroutine_link|_. + :rtype: :class:`AsyncIterator` + +.. _discord-api-audit-logs: + +Audit Log Data +---------------- + +Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery +involved. The library attempts to make it easy to use and friendly. In order to accomplish +this goal, it must make use of a couple of data classes that aid in this goal. + +AuditLogEntry +~~~~~~~~~~~~~~~ + +.. attributetable:: AuditLogEntry + +.. autoclass:: AuditLogEntry + :members: + +AuditLogChanges +~~~~~~~~~~~~~~~~~ + +.. attributetable:: AuditLogChanges + +.. class:: AuditLogChanges + + An audit log change set. + + .. attribute:: before + + The old value. The attribute has the type of :class:`AuditLogDiff`. + + Depending on the :class:`AuditLogActionCategory` retrieved by + :attr:`~AuditLogEntry.category`\, the data retrieved by this + attribute differs: + + +----------------------------------------+---------------------------------------------------+ + | Category | Description | + +----------------------------------------+---------------------------------------------------+ + | :attr:`~AuditLogActionCategory.create` | All attributes are set to ``None``. | + +----------------------------------------+---------------------------------------------------+ + | :attr:`~AuditLogActionCategory.delete` | All attributes are set the value before deletion. | + +----------------------------------------+---------------------------------------------------+ + | :attr:`~AuditLogActionCategory.update` | All attributes are set the value before updating. | + +----------------------------------------+---------------------------------------------------+ + | ``None`` | No attributes are set. | + +----------------------------------------+---------------------------------------------------+ + + .. attribute:: after + + The new value. The attribute has the type of :class:`AuditLogDiff`. + + Depending on the :class:`AuditLogActionCategory` retrieved by + :attr:`~AuditLogEntry.category`\, the data retrieved by this + attribute differs: + + +----------------------------------------+--------------------------------------------------+ + | Category | Description | + +----------------------------------------+--------------------------------------------------+ + | :attr:`~AuditLogActionCategory.create` | All attributes are set to the created value | + +----------------------------------------+--------------------------------------------------+ + | :attr:`~AuditLogActionCategory.delete` | All attributes are set to ``None`` | + +----------------------------------------+--------------------------------------------------+ + | :attr:`~AuditLogActionCategory.update` | All attributes are set the value after updating. | + +----------------------------------------+--------------------------------------------------+ + | ``None`` | No attributes are set. | + +----------------------------------------+--------------------------------------------------+ + +AuditLogDiff +~~~~~~~~~~~~~ + +.. attributetable:: AuditLogDiff + +.. class:: AuditLogDiff + + Represents an audit log "change" object. A change object has dynamic + attributes that depend on the type of action being done. Certain actions + map to certain attributes being set. + + Note that accessing an attribute that does not match the specified action + will lead to an attribute error. + + To get a list of attributes that have been set, you can iterate over + them. To see a list of all possible attributes that could be set based + on the action being done, check the documentation for :class:`AuditLogAction`, + otherwise check the documentation below for all attributes that are possible. + + .. container:: operations + + .. describe:: iter(diff) + + Returns an iterator over (attribute, value) tuple of this diff. + + .. attribute:: name + + A name of something. + + :type: :class:`str` + + .. attribute:: icon + + A guild's icon. See also :attr:`Guild.icon`. + + :type: :class:`Asset` + + .. attribute:: splash + + The guild's invite splash. See also :attr:`Guild.splash`. + + :type: :class:`Asset` + + .. attribute:: discovery_splash + + The guild's discovery splash. See also :attr:`Guild.discovery_splash`. + + :type: :class:`Asset` + + .. attribute:: banner + + The guild's banner. See also :attr:`Guild.banner`. + + :type: :class:`Asset` + + .. attribute:: owner + + The guild's owner. See also :attr:`Guild.owner` + + :type: Union[:class:`Member`, :class:`User`] + + .. attribute:: region + + The guild's voice region. See also :attr:`Guild.region`. + + :type: :class:`VoiceRegion` + + .. attribute:: afk_channel + + The guild's AFK channel. + + If this could not be found, then it falls back to a :class:`Object` + with the ID being set. + + See :attr:`Guild.afk_channel`. + + :type: Union[:class:`VoiceChannel`, :class:`Object`] + + .. attribute:: system_channel + + The guild's system channel. + + If this could not be found, then it falls back to a :class:`Object` + with the ID being set. + + See :attr:`Guild.system_channel`. + + :type: Union[:class:`TextChannel`, :class:`Object`] + + + .. attribute:: rules_channel + + The guild's rules channel. + + If this could not be found then it falls back to a :class:`Object` + with the ID being set. + + See :attr:`Guild.rules_channel`. + + :type: Union[:class:`TextChannel`, :class:`Object`] + + + .. attribute:: public_updates_channel + + The guild's public updates channel. + + If this could not be found then it falls back to a :class:`Object` + with the ID being set. + + See :attr:`Guild.public_updates_channel`. + + :type: Union[:class:`TextChannel`, :class:`Object`] + + .. attribute:: afk_timeout + + The guild's AFK timeout. See :attr:`Guild.afk_timeout`. + + :type: :class:`int` + + .. attribute:: mfa_level + + The guild's MFA level. See :attr:`Guild.mfa_level`. + + :type: :class:`int` + + .. attribute:: widget_enabled + + The guild's widget has been enabled or disabled. + + :type: :class:`bool` + + .. attribute:: widget_channel + + The widget's channel. + + If this could not be found then it falls back to a :class:`Object` + with the ID being set. + + :type: Union[:class:`TextChannel`, :class:`Object`] + + .. attribute:: verification_level + + The guild's verification level. + + See also :attr:`Guild.verification_level`. + + :type: :class:`VerificationLevel` + + .. attribute:: default_notifications + + The guild's default notification level. + + See also :attr:`Guild.default_notifications`. + + :type: :class:`NotificationLevel` + + .. attribute:: explicit_content_filter + + The guild's content filter. + + See also :attr:`Guild.explicit_content_filter`. + + :type: :class:`ContentFilter` + + .. attribute:: default_message_notifications + + The guild's default message notification setting. + + :type: :class:`int` + + .. attribute:: vanity_url_code + + The guild's vanity URL. + + See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`. + + :type: :class:`str` + + .. attribute:: position + + The position of a :class:`Role` or :class:`abc.GuildChannel`. + + :type: :class:`int` + + .. attribute:: type + + The type of channel or sticker. + + :type: Union[:class:`ChannelType`, :class:`StickerType`] + + .. attribute:: topic + + The topic of a :class:`TextChannel` or :class:`StageChannel`. + + See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`. + + :type: :class:`str` + + .. attribute:: bitrate + + The bitrate of a :class:`VoiceChannel`. + + See also :attr:`VoiceChannel.bitrate`. + + :type: :class:`int` + + .. attribute:: overwrites + + A list of permission overwrite tuples that represents a target and a + :class:`PermissionOverwrite` for said target. + + The first element is the object being targeted, which can either + be a :class:`Member` or :class:`User` or :class:`Role`. If this object + is not found then it is a :class:`Object` with an ID being filled and + a ``type`` attribute set to either ``'role'`` or ``'member'`` to help + decide what type of ID it is. + + :type: List[Tuple[target, :class:`PermissionOverwrite`]] + + .. attribute:: privacy_level + + The privacy level of the stage instance. + + :type: :class:`StagePrivacyLevel` + + .. attribute:: roles + + A list of roles being added or removed from a member. + + If a role is not found then it is a :class:`Object` with the ID and name being + filled in. + + :type: List[Union[:class:`Role`, :class:`Object`]] + + .. attribute:: nick + + The nickname of a member. + + See also :attr:`Member.nick` + + :type: Optional[:class:`str`] + + .. attribute:: deaf + + Whether the member is being server deafened. + + See also :attr:`VoiceState.deaf`. + + :type: :class:`bool` + + .. attribute:: mute + + Whether the member is being server muted. + + See also :attr:`VoiceState.mute`. + + :type: :class:`bool` + + .. attribute:: permissions + + The permissions of a role. + + See also :attr:`Role.permissions`. + + :type: :class:`Permissions` + + .. attribute:: colour + color + + The colour of a role. + + See also :attr:`Role.colour` + + :type: :class:`Colour` + + .. attribute:: hoist + + Whether the role is being hoisted or not. + + See also :attr:`Role.hoist` + + :type: :class:`bool` + + .. attribute:: mentionable + + Whether the role is mentionable or not. + + See also :attr:`Role.mentionable` + + :type: :class:`bool` + + .. attribute:: code + + The invite's code. + + See also :attr:`Invite.code` + + :type: :class:`str` + + .. attribute:: channel + + A guild channel. + + If the channel is not found then it is a :class:`Object` with the ID + being set. In some cases the channel name is also set. + + :type: Union[:class:`abc.GuildChannel`, :class:`Object`] + + .. attribute:: inviter + + The user who created the invite. + + See also :attr:`Invite.inviter`. + + :type: Optional[:class:`User`] + + .. attribute:: max_uses + + The invite's max uses. + + See also :attr:`Invite.max_uses`. + + :type: :class:`int` + + .. attribute:: uses + + The invite's current uses. + + See also :attr:`Invite.uses`. + + :type: :class:`int` + + .. attribute:: max_age + + The invite's max age in seconds. + + See also :attr:`Invite.max_age`. + + :type: :class:`int` + + .. attribute:: temporary + + If the invite is a temporary invite. + + See also :attr:`Invite.temporary`. + + :type: :class:`bool` + + .. attribute:: allow + deny + + The permissions being allowed or denied. + + :type: :class:`Permissions` + + .. attribute:: id + + The ID of the object being changed. + + :type: :class:`int` + + .. attribute:: avatar + + The avatar of a member. + + See also :attr:`User.avatar`. + + :type: :class:`Asset` + + .. attribute:: slowmode_delay + + The number of seconds members have to wait before + sending another message in the channel. + + See also :attr:`TextChannel.slowmode_delay`. + + :type: :class:`int` + + .. attribute:: rtc_region + + The region for the voice channel’s voice communication. + A value of ``None`` indicates automatic voice region detection. + + See also :attr:`VoiceChannel.rtc_region`. + + :type: :class:`VoiceRegion` + + .. attribute:: video_quality_mode + + The camera video quality for the voice channel's participants. + + See also :attr:`VoiceChannel.video_quality_mode`. + + :type: :class:`VideoQualityMode` + + .. attribute:: format_type + + The format type of a sticker being changed. + + See also :attr:`GuildSticker.format` + + :type: :class:`StickerFormatType` + + .. attribute:: emoji + + The name of the emoji that represents a sticker being changed. + + See also :attr:`GuildSticker.emoji` + + :type: :class:`str` + + .. attribute:: description + + The description of a sticker being changed. + + See also :attr:`GuildSticker.description` + + :type: :class:`str` + + .. attribute:: available + + The availability of a sticker being changed. + + See also :attr:`GuildSticker.available` + + :type: :class:`bool` + + .. attribute:: archived + + The thread is now archived. + + :type: :class:`bool` + + .. attribute:: locked + + The thread is being locked or unlocked. + + :type: :class:`bool` + + .. attribute:: auto_archive_duration + + The thread's auto archive duration being changed. + + See also :attr:`Thread.auto_archive_duration` + + :type: :class:`int` + + .. attribute:: default_auto_archive_duration + + The default auto archive duration for newly created threads being changed. + + :type: :class:`int` + +.. this is currently missing the following keys: reason and application_id + I'm not sure how to about porting these + +Webhook Support +------------------ + +discord.py offers support for creating, editing, and executing webhooks through the :class:`Webhook` class. + +Webhook +~~~~~~~~~ + +.. attributetable:: Webhook + +.. autoclass:: Webhook() + :members: + :inherited-members: + +WebhookMessage +~~~~~~~~~~~~~~~~ + +.. attributetable:: WebhookMessage + +.. autoclass:: WebhookMessage() + :members: + +SyncWebhook +~~~~~~~~~~~~ + +.. attributetable:: SyncWebhook + +.. autoclass:: SyncWebhook() + :members: + :inherited-members: + +SyncWebhookMessage +~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: SyncWebhookMessage + +.. autoclass:: SyncWebhookMessage() + :members: + +.. _discord_api_abcs: + +Abstract Base Classes +----------------------- + +An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit +to get their behaviour. **Abstract base classes should not be instantiated**. +They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\. + +This library has a module related to abstract base classes, in which all the ABCs are subclasses of +:class:`typing.Protocol`. + +Snowflake +~~~~~~~~~~ + +.. attributetable:: discord.abc.Snowflake + +.. autoclass:: discord.abc.Snowflake() + :members: + +User +~~~~~ + +.. attributetable:: discord.abc.User + +.. autoclass:: discord.abc.User() + :members: + +PrivateChannel +~~~~~~~~~~~~~~~ + +.. attributetable:: discord.abc.PrivateChannel + +.. autoclass:: discord.abc.PrivateChannel() + :members: + +GuildChannel +~~~~~~~~~~~~~ + +.. attributetable:: discord.abc.GuildChannel + +.. autoclass:: discord.abc.GuildChannel() + :members: + +Messageable +~~~~~~~~~~~~ + +.. attributetable:: discord.abc.Messageable + +.. autoclass:: discord.abc.Messageable() + :members: + :exclude-members: history, typing + + .. automethod:: discord.abc.Messageable.history + :async-for: + + .. automethod:: discord.abc.Messageable.typing + :async-with: + +Connectable +~~~~~~~~~~~~ + +.. attributetable:: discord.abc.Connectable + +.. autoclass:: discord.abc.Connectable() + +.. _discord_api_models: + +Discord Models +--------------- + +Models are classes that are received from Discord and are not meant to be created by +the user of the library. + +.. danger:: + + The classes listed below are **not intended to be created by users** and are also + **read-only**. + + For example, this means that you should not make your own :class:`User` instances + nor should you modify the :class:`User` instance yourself. + + If you want to get one of these model classes instances they'd have to be through + the cache, and a common way of doing so is through the :func:`utils.find` function + or attributes of model classes that you receive from the events specified in the + :ref:`discord-api-events`. + +.. note:: + + Nearly all classes here have :ref:`py:slots` defined which means that it is + impossible to have dynamic attributes to the data classes. + + +ClientUser +~~~~~~~~~~~~ + +.. attributetable:: ClientUser + +.. autoclass:: ClientUser() + :members: + :inherited-members: + +User +~~~~~ + +.. attributetable:: User + +.. autoclass:: User() + :members: + :inherited-members: + :exclude-members: history, typing + + .. automethod:: history + :async-for: + + .. automethod:: typing + :async-with: + +Attachment +~~~~~~~~~~~ + +.. attributetable:: Attachment + +.. autoclass:: Attachment() + :members: + +Asset +~~~~~ + +.. attributetable:: Asset + +.. autoclass:: Asset() + :members: + :inherited-members: + +Message +~~~~~~~ + +.. attributetable:: Message + +.. autoclass:: Message() + :members: + +Component +~~~~~~~~~~ + +.. attributetable:: Component + +.. autoclass:: Component() + :members: + +ActionRow +~~~~~~~~~~ + +.. attributetable:: ActionRow + +.. autoclass:: ActionRow() + :members: + +Button +~~~~~~~ + +.. attributetable:: Button + +.. autoclass:: Button() + :members: + :inherited-members: + +SelectMenu +~~~~~~~~~~~ + +.. attributetable:: SelectMenu + +.. autoclass:: SelectMenu() + :members: + :inherited-members: + + +DeletedReferencedMessage +~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: DeletedReferencedMessage + +.. autoclass:: DeletedReferencedMessage() + :members: + + +Reaction +~~~~~~~~~ + +.. attributetable:: Reaction + +.. autoclass:: Reaction() + :members: + :exclude-members: users + + .. automethod:: users + :async-for: + +Guild +~~~~~~ + +.. attributetable:: Guild + +.. autoclass:: Guild() + :members: + :exclude-members: fetch_members, audit_logs + + .. automethod:: fetch_members + :async-for: + + .. automethod:: audit_logs + :async-for: + +.. class:: BanEntry + + A namedtuple which represents a ban returned from :meth:`~Guild.bans`. + + .. attribute:: reason + + The reason this user was banned. + + :type: Optional[:class:`str`] + .. attribute:: user + + The :class:`User` that was banned. + + :type: :class:`User` + + +Integration +~~~~~~~~~~~~ + +.. autoclass:: Integration() + :members: + +.. autoclass:: IntegrationAccount() + :members: + +.. autoclass:: BotIntegration() + :members: + +.. autoclass:: IntegrationApplication() + :members: + +.. autoclass:: StreamIntegration() + :members: + +Interaction +~~~~~~~~~~~~ + +.. attributetable:: Interaction + +.. autoclass:: Interaction() + :members: + +InteractionResponse +~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: InteractionResponse + +.. autoclass:: InteractionResponse() + :members: + +InteractionMessage +~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: InteractionMessage + +.. autoclass:: InteractionMessage() + :members: + +Member +~~~~~~ + +.. attributetable:: Member + +.. autoclass:: Member() + :members: + :inherited-members: + :exclude-members: history, typing + + .. automethod:: history + :async-for: + + .. automethod:: typing + :async-with: + +Spotify +~~~~~~~~ + +.. attributetable:: Spotify + +.. autoclass:: Spotify() + :members: + +VoiceState +~~~~~~~~~~~ + +.. attributetable:: VoiceState + +.. autoclass:: VoiceState() + :members: + +Emoji +~~~~~ + +.. attributetable:: Emoji + +.. autoclass:: Emoji() + :members: + :inherited-members: + +PartialEmoji +~~~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: PartialEmoji + +.. autoclass:: PartialEmoji() + :members: + :inherited-members: + +Role +~~~~~ + +.. attributetable:: Role + +.. autoclass:: Role() + :members: + +RoleTags +~~~~~~~~~~ + +.. attributetable:: RoleTags + +.. autoclass:: RoleTags() + :members: + +PartialMessageable +~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: PartialMessageable + +.. autoclass:: PartialMessageable() + :members: + :inherited-members: + +TextChannel +~~~~~~~~~~~~ + +.. attributetable:: TextChannel + +.. autoclass:: TextChannel() + :members: + :inherited-members: + :exclude-members: history, typing + + .. automethod:: history + :async-for: + + .. automethod:: typing + :async-with: + +Thread +~~~~~~~~ + +.. attributetable:: Thread + +.. autoclass:: Thread() + :members: + :inherited-members: + :exclude-members: history, typing + + .. automethod:: history + :async-for: + + .. automethod:: typing + :async-with: + +ThreadMember +~~~~~~~~~~~~~ + +.. attributetable:: ThreadMember + +.. autoclass:: ThreadMember() + :members: + +StoreChannel +~~~~~~~~~~~~~ + +.. attributetable:: StoreChannel + +.. autoclass:: StoreChannel() + :members: + :inherited-members: + +VoiceChannel +~~~~~~~~~~~~~ + +.. attributetable:: VoiceChannel + +.. autoclass:: VoiceChannel() + :members: + :inherited-members: + +StageChannel +~~~~~~~~~~~~~ + +.. attributetable:: StageChannel + +.. autoclass:: StageChannel() + :members: + :inherited-members: + + +StageInstance +~~~~~~~~~~~~~~ + +.. attributetable:: StageInstance + +.. autoclass:: StageInstance() + :members: + +CategoryChannel +~~~~~~~~~~~~~~~~~ + +.. attributetable:: CategoryChannel + +.. autoclass:: CategoryChannel() + :members: + :inherited-members: + +DMChannel +~~~~~~~~~ + +.. attributetable:: DMChannel + +.. autoclass:: DMChannel() + :members: + :inherited-members: + :exclude-members: history, typing + + .. automethod:: history + :async-for: + + .. automethod:: typing + :async-with: + +GroupChannel +~~~~~~~~~~~~ + +.. attributetable:: GroupChannel + +.. autoclass:: GroupChannel() + :members: + :inherited-members: + :exclude-members: history, typing + + .. automethod:: history + :async-for: + + .. automethod:: typing + :async-with: + +PartialInviteGuild +~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: PartialInviteGuild + +.. autoclass:: PartialInviteGuild() + :members: + +PartialInviteChannel +~~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: PartialInviteChannel + +.. autoclass:: PartialInviteChannel() + :members: + +Invite +~~~~~~~ + +.. attributetable:: Invite + +.. autoclass:: Invite() + :members: + +Template +~~~~~~~~~ + +.. attributetable:: Template + +.. autoclass:: Template() + :members: + +WidgetChannel +~~~~~~~~~~~~~~~ + +.. attributetable:: WidgetChannel + +.. autoclass:: WidgetChannel() + :members: + +WidgetMember +~~~~~~~~~~~~~ + +.. attributetable:: WidgetMember + +.. autoclass:: WidgetMember() + :members: + :inherited-members: + +Widget +~~~~~~~ + +.. attributetable:: Widget + +.. autoclass:: Widget() + :members: + +StickerPack +~~~~~~~~~~~~~ + +.. attributetable:: StickerPack + +.. autoclass:: StickerPack() + :members: + +StickerItem +~~~~~~~~~~~~~ + +.. attributetable:: StickerItem + +.. autoclass:: StickerItem() + :members: + +Sticker +~~~~~~~~~~~~~~~ + +.. attributetable:: Sticker + +.. autoclass:: Sticker() + :members: + +StandardSticker +~~~~~~~~~~~~~~~~ + +.. attributetable:: StandardSticker + +.. autoclass:: StandardSticker() + :members: + +GuildSticker +~~~~~~~~~~~~~ + +.. attributetable:: GuildSticker + +.. autoclass:: GuildSticker() + :members: + +RawTypingEvent +~~~~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: RawTypingEvent + +.. autoclass:: RawTypingEvent() + :members: + +RawMessageDeleteEvent +~~~~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: RawMessageDeleteEvent + +.. autoclass:: RawMessageDeleteEvent() + :members: + +RawBulkMessageDeleteEvent +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: RawBulkMessageDeleteEvent + +.. autoclass:: RawBulkMessageDeleteEvent() + :members: + +RawMessageUpdateEvent +~~~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: RawMessageUpdateEvent + +.. autoclass:: RawMessageUpdateEvent() + :members: + +RawReactionActionEvent +~~~~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: RawReactionActionEvent + +.. autoclass:: RawReactionActionEvent() + :members: + +RawReactionClearEvent +~~~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: RawReactionClearEvent + +.. autoclass:: RawReactionClearEvent() + :members: + +RawReactionClearEmojiEvent +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: RawReactionClearEmojiEvent + +.. autoclass:: RawReactionClearEmojiEvent() + :members: + +RawIntegrationDeleteEvent +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: RawIntegrationDeleteEvent + +.. autoclass:: RawIntegrationDeleteEvent() + :members: + +PartialWebhookGuild +~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: PartialWebhookGuild + +.. autoclass:: PartialWebhookGuild() + :members: + +PartialWebhookChannel +~~~~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: PartialWebhookChannel + +.. autoclass:: PartialWebhookChannel() + :members: + +.. _discord_api_data: + +Data Classes +-------------- + +Some classes are just there to be data containers, this lists them. + +Unlike :ref:`models ` you are allowed to create +most of these yourself, even if they can also be used to hold attributes. + +Nearly all classes here have :ref:`py:slots` defined which means that it is +impossible to have dynamic attributes to the data classes. + +The only exception to this rule is :class:`Object`, which is made with +dynamic attributes in mind. + + +Object +~~~~~~~ + +.. attributetable:: Object + +.. autoclass:: Object + :members: + +Embed +~~~~~~ + +.. attributetable:: Embed + +.. autoclass:: Embed + :members: + +AllowedMentions +~~~~~~~~~~~~~~~~~ + +.. attributetable:: AllowedMentions + +.. autoclass:: AllowedMentions + :members: + +MessageReference +~~~~~~~~~~~~~~~~~ + +.. attributetable:: MessageReference + +.. autoclass:: MessageReference + :members: + +PartialMessage +~~~~~~~~~~~~~~~~~ + +.. attributetable:: PartialMessage + +.. autoclass:: PartialMessage + :members: + +SelectOption +~~~~~~~~~~~~~ + +.. attributetable:: SelectOption + +.. autoclass:: SelectOption + :members: + +Intents +~~~~~~~~~~ + +.. attributetable:: Intents + +.. autoclass:: Intents + :members: + +MemberCacheFlags +~~~~~~~~~~~~~~~~~~ + +.. attributetable:: MemberCacheFlags + +.. autoclass:: MemberCacheFlags + :members: + +ApplicationFlags +~~~~~~~~~~~~~~~~~ + +.. attributetable:: ApplicationFlags + +.. autoclass:: ApplicationFlags + :members: + +File +~~~~~ + +.. attributetable:: File + +.. autoclass:: File + :members: + +Colour +~~~~~~ + +.. attributetable:: Colour + +.. autoclass:: Colour + :members: + +BaseActivity +~~~~~~~~~~~~~~ + +.. attributetable:: BaseActivity + +.. autoclass:: BaseActivity + :members: + +Activity +~~~~~~~~~ + +.. attributetable:: Activity + +.. autoclass:: Activity + :members: + +Game +~~~~~ + +.. attributetable:: Game + +.. autoclass:: Game + :members: + +Streaming +~~~~~~~~~~~ + +.. attributetable:: Streaming + +.. autoclass:: Streaming + :members: + +CustomActivity +~~~~~~~~~~~~~~~ + +.. attributetable:: CustomActivity + +.. autoclass:: CustomActivity + :members: + +Permissions +~~~~~~~~~~~~ + +.. attributetable:: Permissions + +.. autoclass:: Permissions + :members: + +PermissionOverwrite +~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: PermissionOverwrite + +.. autoclass:: PermissionOverwrite + :members: + +ShardInfo +~~~~~~~~~~~ + +.. attributetable:: ShardInfo + +.. autoclass:: ShardInfo() + :members: + +SystemChannelFlags +~~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: SystemChannelFlags + +.. autoclass:: SystemChannelFlags() + :members: + +MessageFlags +~~~~~~~~~~~~ + +.. attributetable:: MessageFlags + +.. autoclass:: MessageFlags() + :members: + +PublicUserFlags +~~~~~~~~~~~~~~~ + +.. attributetable:: PublicUserFlags + +.. autoclass:: PublicUserFlags() + :members: + +.. _discord_ui_kit: + +Bot UI Kit +------------- + +The library has helpers to help create component-based UIs. + +View +~~~~~~~ + +.. attributetable:: discord.ui.View + +.. autoclass:: discord.ui.View + :members: + +Item +~~~~~~~ + +.. attributetable:: discord.ui.Item + +.. autoclass:: discord.ui.Item + :members: + +Button +~~~~~~~ + +.. attributetable:: discord.ui.Button + +.. autoclass:: discord.ui.Button + :members: + :inherited-members: + +.. autofunction:: discord.ui.button + +Select +~~~~~~~ + +.. attributetable:: discord.ui.Select + +.. autoclass:: discord.ui.Select + :members: + :inherited-members: + +.. autofunction:: discord.ui.select + + +Exceptions +------------ + +The following exceptions are thrown by the library. + +.. autoexception:: DiscordException + +.. autoexception:: ClientException + +.. autoexception:: LoginFailure + +.. autoexception:: NoMoreItems + +.. autoexception:: HTTPException + :members: + +.. autoexception:: Forbidden + +.. autoexception:: NotFound + +.. autoexception:: DiscordServerError + +.. autoexception:: InvalidData + +.. autoexception:: InvalidArgument + +.. autoexception:: GatewayNotFound + +.. autoexception:: ConnectionClosed + +.. autoexception:: PrivilegedIntentsRequired + +.. autoexception:: InteractionResponded + +.. autoexception:: discord.opus.OpusError + +.. autoexception:: discord.opus.OpusNotLoaded + +Exception Hierarchy +~~~~~~~~~~~~~~~~~~~~~ + +.. exception_hierarchy:: + + - :exc:`Exception` + - :exc:`DiscordException` + - :exc:`ClientException` + - :exc:`InvalidData` + - :exc:`InvalidArgument` + - :exc:`LoginFailure` + - :exc:`ConnectionClosed` + - :exc:`PrivilegedIntentsRequired` + - :exc:`InteractionResponded` + - :exc:`NoMoreItems` + - :exc:`GatewayNotFound` + - :exc:`HTTPException` + - :exc:`Forbidden` + - :exc:`NotFound` + - :exc:`DiscordServerError` diff --git a/docs/Python/html/_sources/discord.rst.txt b/docs/Python/html/_sources/discord.rst.txt new file mode 100644 index 00000000..ac12417f --- /dev/null +++ b/docs/Python/html/_sources/discord.rst.txt @@ -0,0 +1,96 @@ +:orphan: + +.. _discord-intro: + +Creating a Bot Account +======================== + +In order to work with the library and the Discord API in general, we must first create a Discord Bot account. + +Creating a Bot account is a pretty straightforward process. + +1. Make sure you're logged on to the `Discord website `_. +2. Navigate to the `application page `_ +3. Click on the "New Application" button. + + .. image:: /images/discord_create_app_button.png + :alt: The new application button. + +4. Give the application a name and click "Create". + + .. image:: /images/discord_create_app_form.png + :alt: The new application form filled in. + +5. Create a Bot User by navigating to the "Bot" tab and clicking "Add Bot". + + - Click "Yes, do it!" to continue. + + .. image:: /images/discord_create_bot_user.png + :alt: The Add Bot button. +6. Make sure that **Public Bot** is ticked if you want others to invite your bot. + + - You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you + are developing a service that needs it. If you're unsure, then **leave it unchecked**. + + .. image:: /images/discord_bot_user_options.png + :alt: How the Bot User options should look like for most people. + +7. Copy the token using the "Copy" button. + + - **This is not the Client Secret at the General Information page.** + + .. warning:: + + It should be worth noting that this token is essentially your bot's + password. You should **never** share this with someone else. In doing so, + someone can log in to your bot and do malicious things, such as leaving + servers, ban all members inside a server, or pinging everyone maliciously. + + The possibilities are endless, so **do not share this token.** + + If you accidentally leaked your token, click the "Regenerate" button as soon + as possible. This revokes your old token and re-generates a new one. + Now you need to use the new token to login. + +And that's it. You now have a bot account and you can login with that token. + +.. _discord_invite_bot: + +Inviting Your Bot +------------------- + +So you've made a Bot User but it's not actually in any server. + +If you want to invite your bot you must create an invite URL for it. + +1. Make sure you're logged on to the `Discord website `_. +2. Navigate to the `application page `_ +3. Click on your bot's page. +4. Go to the "OAuth2" tab. + + .. image:: /images/discord_oauth2.png + :alt: How the OAuth2 page should look like. + +5. Tick the "bot" checkbox under "scopes". + + .. image:: /images/discord_oauth2_scope.png + :alt: The scopes checkbox with "bot" ticked. + +6. Tick the permissions required for your bot to function under "Bot Permissions". + + - Please be aware of the consequences of requiring your bot to have the "Administrator" permission. + + - Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information. + + .. image:: /images/discord_oauth2_perms.png + :alt: The permission checkboxes with some permissions checked. + +7. Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click "Authorize". + + +.. note:: + + The person adding the bot needs "Manage Server" permissions to do so. + +If you want to generate this URL dynamically at run-time inside your bot and using the +:class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`. diff --git a/docs/Python/html/_sources/ext/commands/api.rst.txt b/docs/Python/html/_sources/ext/commands/api.rst.txt new file mode 100644 index 00000000..f70d835c --- /dev/null +++ b/docs/Python/html/_sources/ext/commands/api.rst.txt @@ -0,0 +1,681 @@ +.. currentmodule:: discord + +API Reference +=============== + +The following section outlines the API of discord.py's command extension module. + +.. _ext_commands_api_bot: + +Bots +------ + +Bot +~~~~ + +.. attributetable:: discord.ext.commands.Bot + +.. autoclass:: discord.ext.commands.Bot + :members: + :inherited-members: + :exclude-members: after_invoke, before_invoke, check, check_once, command, event, group, listen + + .. automethod:: Bot.after_invoke() + :decorator: + + .. automethod:: Bot.before_invoke() + :decorator: + + .. automethod:: Bot.check() + :decorator: + + .. automethod:: Bot.check_once() + :decorator: + + .. automethod:: Bot.command(*args, **kwargs) + :decorator: + + .. automethod:: Bot.event() + :decorator: + + .. automethod:: Bot.group(*args, **kwargs) + :decorator: + + .. automethod:: Bot.listen(name=None) + :decorator: + +AutoShardedBot +~~~~~~~~~~~~~~~~ + +.. attributetable:: discord.ext.commands.AutoShardedBot + +.. autoclass:: discord.ext.commands.AutoShardedBot + :members: + +Prefix Helpers +---------------- + +.. autofunction:: discord.ext.commands.when_mentioned + +.. autofunction:: discord.ext.commands.when_mentioned_or + +.. _ext_commands_api_events: + +Event Reference +----------------- + +These events function similar to :ref:`the regular events `, except they +are custom to the command extension module. + +.. function:: discord.ext.commands.on_command_error(ctx, error) + + An error handler that is called when an error is raised + inside a command either through user input error, check + failure, or an error in your own code. + + A default one is provided (:meth:`.Bot.on_command_error`). + + :param ctx: The invocation context. + :type ctx: :class:`.Context` + :param error: The error that was raised. + :type error: :class:`.CommandError` derived + +.. function:: discord.ext.commands.on_command(ctx) + + An event that is called when a command is found and is about to be invoked. + + This event is called regardless of whether the command itself succeeds via + error or completes. + + :param ctx: The invocation context. + :type ctx: :class:`.Context` + +.. function:: discord.ext.commands.on_command_completion(ctx) + + An event that is called when a command has completed its invocation. + + This event is called only if the command succeeded, i.e. all checks have + passed and the user input it correctly. + + :param ctx: The invocation context. + :type ctx: :class:`.Context` + +.. _ext_commands_api_command: + +Commands +---------- + +Decorators +~~~~~~~~~~~~ + +.. autofunction:: discord.ext.commands.command + :decorator: + +.. autofunction:: discord.ext.commands.group + :decorator: + +Command +~~~~~~~~~ + +.. attributetable:: discord.ext.commands.Command + +.. autoclass:: discord.ext.commands.Command + :members: + :special-members: __call__ + :exclude-members: after_invoke, before_invoke, error + + .. automethod:: Command.after_invoke() + :decorator: + + .. automethod:: Command.before_invoke() + :decorator: + + .. automethod:: Command.error() + :decorator: + +Group +~~~~~~ + +.. attributetable:: discord.ext.commands.Group + +.. autoclass:: discord.ext.commands.Group + :members: + :inherited-members: + :exclude-members: after_invoke, before_invoke, command, error, group + + .. automethod:: Group.after_invoke() + :decorator: + + .. automethod:: Group.before_invoke() + :decorator: + + .. automethod:: Group.command(*args, **kwargs) + :decorator: + + .. automethod:: Group.error() + :decorator: + + .. automethod:: Group.group(*args, **kwargs) + :decorator: + +GroupMixin +~~~~~~~~~~~ + +.. attributetable:: discord.ext.commands.GroupMixin + +.. autoclass:: discord.ext.commands.GroupMixin + :members: + :exclude-members: command, group + + .. automethod:: GroupMixin.command(*args, **kwargs) + :decorator: + + .. automethod:: GroupMixin.group(*args, **kwargs) + :decorator: + +.. _ext_commands_api_cogs: + +Cogs +------ + +Cog +~~~~ + +.. attributetable:: discord.ext.commands.Cog + +.. autoclass:: discord.ext.commands.Cog + :members: + +CogMeta +~~~~~~~~ + +.. attributetable:: discord.ext.commands.CogMeta + +.. autoclass:: discord.ext.commands.CogMeta + :members: + +.. _ext_commands_help_command: + +Help Commands +--------------- + +HelpCommand +~~~~~~~~~~~~ + +.. attributetable:: discord.ext.commands.HelpCommand + +.. autoclass:: discord.ext.commands.HelpCommand + :members: + +DefaultHelpCommand +~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: discord.ext.commands.DefaultHelpCommand + +.. autoclass:: discord.ext.commands.DefaultHelpCommand + :members: + :exclude-members: send_bot_help, send_cog_help, send_group_help, send_command_help, prepare_help_command + +MinimalHelpCommand +~~~~~~~~~~~~~~~~~~~ + +.. attributetable:: discord.ext.commands.MinimalHelpCommand + +.. autoclass:: discord.ext.commands.MinimalHelpCommand + :members: + :exclude-members: send_bot_help, send_cog_help, send_group_help, send_command_help, prepare_help_command + +Paginator +~~~~~~~~~~ + +.. attributetable:: discord.ext.commands.Paginator + +.. autoclass:: discord.ext.commands.Paginator + :members: + +Enums +------ + +.. class:: BucketType + :module: discord.ext.commands + + Specifies a type of bucket for, e.g. a cooldown. + + .. attribute:: default + + The default bucket operates on a global basis. + .. attribute:: user + + The user bucket operates on a per-user basis. + .. attribute:: guild + + The guild bucket operates on a per-guild basis. + .. attribute:: channel + + The channel bucket operates on a per-channel basis. + .. attribute:: member + + The member bucket operates on a per-member basis. + .. attribute:: category + + The category bucket operates on a per-category basis. + .. attribute:: role + + The role bucket operates on a per-role basis. + + .. versionadded:: 1.3 + + +.. _ext_commands_api_checks: + +Checks +------- + +.. autofunction:: discord.ext.commands.check(predicate) + :decorator: + +.. autofunction:: discord.ext.commands.check_any(*checks) + :decorator: + +.. autofunction:: discord.ext.commands.has_role(item) + :decorator: + +.. autofunction:: discord.ext.commands.has_permissions(**perms) + :decorator: + +.. autofunction:: discord.ext.commands.has_guild_permissions(**perms) + :decorator: + +.. autofunction:: discord.ext.commands.has_any_role(*items) + :decorator: + +.. autofunction:: discord.ext.commands.bot_has_role(item) + :decorator: + +.. autofunction:: discord.ext.commands.bot_has_permissions(**perms) + :decorator: + +.. autofunction:: discord.ext.commands.bot_has_guild_permissions(**perms) + :decorator: + +.. autofunction:: discord.ext.commands.bot_has_any_role(*items) + :decorator: + +.. autofunction:: discord.ext.commands.cooldown(rate, per, type=discord.ext.commands.BucketType.default) + :decorator: + +.. autofunction:: discord.ext.commands.dynamic_cooldown(cooldown, type=BucketType.default) + :decorator: + +.. autofunction:: discord.ext.commands.max_concurrency(number, per=discord.ext.commands.BucketType.default, *, wait=False) + :decorator: + +.. autofunction:: discord.ext.commands.before_invoke(coro) + :decorator: + +.. autofunction:: discord.ext.commands.after_invoke(coro) + :decorator: + +.. autofunction:: discord.ext.commands.guild_only(,) + :decorator: + +.. autofunction:: discord.ext.commands.dm_only(,) + :decorator: + +.. autofunction:: discord.ext.commands.is_owner(,) + :decorator: + +.. autofunction:: discord.ext.commands.is_nsfw(,) + :decorator: + +.. _ext_commands_api_context: + +Cooldown +--------- + +.. attributetable:: discord.ext.commands.Cooldown + +.. autoclass:: discord.ext.commands.Cooldown + :members: + +Context +-------- + +.. attributetable:: discord.ext.commands.Context + +.. autoclass:: discord.ext.commands.Context + :members: + :inherited-members: + :exclude-members: history, typing + + .. automethod:: discord.ext.commands.Context.history + :async-for: + + .. automethod:: discord.ext.commands.Context.typing + :async-with: + +.. _ext_commands_api_converters: + +Converters +------------ + +.. autoclass:: discord.ext.commands.Converter + :members: + +.. autoclass:: discord.ext.commands.ObjectConverter + :members: + +.. autoclass:: discord.ext.commands.MemberConverter + :members: + +.. autoclass:: discord.ext.commands.UserConverter + :members: + +.. autoclass:: discord.ext.commands.MessageConverter + :members: + +.. autoclass:: discord.ext.commands.PartialMessageConverter + :members: + +.. autoclass:: discord.ext.commands.GuildChannelConverter + :members: + +.. autoclass:: discord.ext.commands.TextChannelConverter + :members: + +.. autoclass:: discord.ext.commands.VoiceChannelConverter + :members: + +.. autoclass:: discord.ext.commands.StoreChannelConverter + :members: + +.. autoclass:: discord.ext.commands.StageChannelConverter + :members: + +.. autoclass:: discord.ext.commands.CategoryChannelConverter + :members: + +.. autoclass:: discord.ext.commands.InviteConverter + :members: + +.. autoclass:: discord.ext.commands.GuildConverter + :members: + +.. autoclass:: discord.ext.commands.RoleConverter + :members: + +.. autoclass:: discord.ext.commands.GameConverter + :members: + +.. autoclass:: discord.ext.commands.ColourConverter + :members: + +.. autoclass:: discord.ext.commands.EmojiConverter + :members: + +.. autoclass:: discord.ext.commands.PartialEmojiConverter + :members: + +.. autoclass:: discord.ext.commands.ThreadConverter + :members: + +.. autoclass:: discord.ext.commands.GuildStickerConverter + :members: + +.. autoclass:: discord.ext.commands.clean_content + :members: + +.. autoclass:: discord.ext.commands.Greedy() + +.. autofunction:: discord.ext.commands.run_converters + +Option +~~~~~~ + +.. autoclass:: discord.ext.commands.Option + :members: + +Flag Converter +~~~~~~~~~~~~~~~ + +.. autoclass:: discord.ext.commands.FlagConverter + :members: + +.. autoclass:: discord.ext.commands.Flag() + :members: + +.. autofunction:: discord.ext.commands.flag + +.. _ext_commands_api_errors: + +Exceptions +----------- + +.. autoexception:: discord.ext.commands.CommandError + :members: + +.. autoexception:: discord.ext.commands.ConversionError + :members: + +.. autoexception:: discord.ext.commands.MissingRequiredArgument + :members: + +.. autoexception:: discord.ext.commands.ArgumentParsingError + :members: + +.. autoexception:: discord.ext.commands.UnexpectedQuoteError + :members: + +.. autoexception:: discord.ext.commands.InvalidEndOfQuotedStringError + :members: + +.. autoexception:: discord.ext.commands.ExpectedClosingQuoteError + :members: + +.. autoexception:: discord.ext.commands.BadArgument + :members: + +.. autoexception:: discord.ext.commands.BadUnionArgument + :members: + +.. autoexception:: discord.ext.commands.BadLiteralArgument + :members: + +.. autoexception:: discord.ext.commands.PrivateMessageOnly + :members: + +.. autoexception:: discord.ext.commands.NoPrivateMessage + :members: + +.. autoexception:: discord.ext.commands.CheckFailure + :members: + +.. autoexception:: discord.ext.commands.CheckAnyFailure + :members: + +.. autoexception:: discord.ext.commands.CommandNotFound + :members: + +.. autoexception:: discord.ext.commands.DisabledCommand + :members: + +.. autoexception:: discord.ext.commands.CommandInvokeError + :members: + +.. autoexception:: discord.ext.commands.TooManyArguments + :members: + +.. autoexception:: discord.ext.commands.UserInputError + :members: + +.. autoexception:: discord.ext.commands.CommandOnCooldown + :members: + +.. autoexception:: discord.ext.commands.MaxConcurrencyReached + :members: + +.. autoexception:: discord.ext.commands.NotOwner + :members: + +.. autoexception:: discord.ext.commands.MessageNotFound + :members: + +.. autoexception:: discord.ext.commands.MemberNotFound + :members: + +.. autoexception:: discord.ext.commands.GuildNotFound + :members: + +.. autoexception:: discord.ext.commands.UserNotFound + :members: + +.. autoexception:: discord.ext.commands.ChannelNotFound + :members: + +.. autoexception:: discord.ext.commands.ChannelNotReadable + :members: + +.. autoexception:: discord.ext.commands.ThreadNotFound + :members: + +.. autoexception:: discord.ext.commands.BadColourArgument + :members: + +.. autoexception:: discord.ext.commands.RoleNotFound + :members: + +.. autoexception:: discord.ext.commands.BadInviteArgument + :members: + +.. autoexception:: discord.ext.commands.EmojiNotFound + :members: + +.. autoexception:: discord.ext.commands.PartialEmojiConversionFailure + :members: + +.. autoexception:: discord.ext.commands.GuildStickerNotFound + :members: + +.. autoexception:: discord.ext.commands.BadBoolArgument + :members: + +.. autoexception:: discord.ext.commands.MissingPermissions + :members: + +.. autoexception:: discord.ext.commands.BotMissingPermissions + :members: + +.. autoexception:: discord.ext.commands.MissingRole + :members: + +.. autoexception:: discord.ext.commands.BotMissingRole + :members: + +.. autoexception:: discord.ext.commands.MissingAnyRole + :members: + +.. autoexception:: discord.ext.commands.BotMissingAnyRole + :members: + +.. autoexception:: discord.ext.commands.NSFWChannelRequired + :members: + +.. autoexception:: discord.ext.commands.FlagError + :members: + +.. autoexception:: discord.ext.commands.BadFlagArgument + :members: + +.. autoexception:: discord.ext.commands.MissingFlagArgument + :members: + +.. autoexception:: discord.ext.commands.TooManyFlags + :members: + +.. autoexception:: discord.ext.commands.MissingRequiredFlag + :members: + +.. autoexception:: discord.ext.commands.ExtensionError + :members: + +.. autoexception:: discord.ext.commands.ExtensionAlreadyLoaded + :members: + +.. autoexception:: discord.ext.commands.ExtensionNotLoaded + :members: + +.. autoexception:: discord.ext.commands.NoEntryPointError + :members: + +.. autoexception:: discord.ext.commands.ExtensionFailed + :members: + +.. autoexception:: discord.ext.commands.ExtensionNotFound + :members: + +.. autoexception:: discord.ext.commands.CommandRegistrationError + :members: + + +Exception Hierarchy +~~~~~~~~~~~~~~~~~~~~~ + +.. exception_hierarchy:: + + - :exc:`~.DiscordException` + - :exc:`~.commands.CommandError` + - :exc:`~.commands.ConversionError` + - :exc:`~.commands.UserInputError` + - :exc:`~.commands.MissingRequiredArgument` + - :exc:`~.commands.TooManyArguments` + - :exc:`~.commands.BadArgument` + - :exc:`~.commands.MessageNotFound` + - :exc:`~.commands.MemberNotFound` + - :exc:`~.commands.GuildNotFound` + - :exc:`~.commands.UserNotFound` + - :exc:`~.commands.ChannelNotFound` + - :exc:`~.commands.ChannelNotReadable` + - :exc:`~.commands.BadColourArgument` + - :exc:`~.commands.RoleNotFound` + - :exc:`~.commands.BadInviteArgument` + - :exc:`~.commands.EmojiNotFound` + - :exc:`~.commands.GuildStickerNotFound` + - :exc:`~.commands.PartialEmojiConversionFailure` + - :exc:`~.commands.BadBoolArgument` + - :exc:`~.commands.ThreadNotFound` + - :exc:`~.commands.FlagError` + - :exc:`~.commands.BadFlagArgument` + - :exc:`~.commands.MissingFlagArgument` + - :exc:`~.commands.TooManyFlags` + - :exc:`~.commands.MissingRequiredFlag` + - :exc:`~.commands.BadUnionArgument` + - :exc:`~.commands.BadLiteralArgument` + - :exc:`~.commands.ArgumentParsingError` + - :exc:`~.commands.UnexpectedQuoteError` + - :exc:`~.commands.InvalidEndOfQuotedStringError` + - :exc:`~.commands.ExpectedClosingQuoteError` + - :exc:`~.commands.CommandNotFound` + - :exc:`~.commands.CheckFailure` + - :exc:`~.commands.CheckAnyFailure` + - :exc:`~.commands.PrivateMessageOnly` + - :exc:`~.commands.NoPrivateMessage` + - :exc:`~.commands.NotOwner` + - :exc:`~.commands.MissingPermissions` + - :exc:`~.commands.BotMissingPermissions` + - :exc:`~.commands.MissingRole` + - :exc:`~.commands.BotMissingRole` + - :exc:`~.commands.MissingAnyRole` + - :exc:`~.commands.BotMissingAnyRole` + - :exc:`~.commands.NSFWChannelRequired` + - :exc:`~.commands.DisabledCommand` + - :exc:`~.commands.CommandInvokeError` + - :exc:`~.commands.CommandOnCooldown` + - :exc:`~.commands.MaxConcurrencyReached` + - :exc:`~.commands.ExtensionError` + - :exc:`~.commands.ExtensionAlreadyLoaded` + - :exc:`~.commands.ExtensionNotLoaded` + - :exc:`~.commands.NoEntryPointError` + - :exc:`~.commands.ExtensionFailed` + - :exc:`~.commands.ExtensionNotFound` + - :exc:`~.ClientException` + - :exc:`~.commands.CommandRegistrationError` diff --git a/docs/Python/html/_sources/ext/commands/cogs.rst.txt b/docs/Python/html/_sources/ext/commands/cogs.rst.txt new file mode 100644 index 00000000..25bb1a0b --- /dev/null +++ b/docs/Python/html/_sources/ext/commands/cogs.rst.txt @@ -0,0 +1,159 @@ +.. currentmodule:: discord + +.. _ext_commands_cogs: + +Cogs +====== + +There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that. + +The gist: + +- Each cog is a Python class that subclasses :class:`.commands.Cog`. +- Every command is marked with the :func:`.commands.command` decorator. +- Every listener is marked with the :meth:`.commands.Cog.listener` decorator. +- Cogs are then registered with the :meth:`.Bot.add_cog` call. +- Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call. + +It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`. + +Quick Example +--------------- + +This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `. + +.. code-block:: python3 + + class Greetings(commands.Cog): + def __init__(self, bot): + self.bot = bot + self._last_member = None + + @commands.Cog.listener() + async def on_member_join(self, member): + channel = member.guild.system_channel + if channel is not None: + await channel.send(f'Welcome {member.mention}.') + + @commands.command() + async def hello(self, ctx, *, member: discord.Member = None): + """Says hello""" + member = member or ctx.author + if self._last_member is None or self._last_member.id != member.id: + await ctx.send(f'Hello {member.name}~') + else: + await ctx.send(f'Hello {member.name}... This feels familiar.') + self._last_member = member + +A couple of technical notes to take into consideration: + +- All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`. +- The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`. +- All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state. + +Cog Registration +------------------- + +Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method. + +.. code-block:: python3 + + bot.add_cog(Greetings(bot)) + +This binds the cog to the bot, adding all commands and listeners to the bot automatically. + +Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following. + +.. code-block:: python3 + + bot.remove_cog('Greetings') + +Using Cogs +------------- + +Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example: + +.. code-block:: python3 + :emphasize-lines: 22,24 + + class Economy(commands.Cog): + ... + + async def withdraw_money(self, member, money): + # implementation here + ... + + async def deposit_money(self, member, money): + # implementation here + ... + + class Gambling(commands.Cog): + def __init__(self, bot): + self.bot = bot + + def coinflip(self): + return random.randint(0, 1) + + @commands.command() + async def gamble(self, ctx, money: int): + """Gambles some money.""" + economy = self.bot.get_cog('Economy') + if economy is not None: + await economy.withdraw_money(ctx.author, money) + if self.coinflip() == 1: + await economy.deposit_money(ctx.author, money * 1.5) + +.. _ext_commands_cogs_special_methods: + +Special Methods +----------------- + +As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot. + +They are as follows: + +- :meth:`.Cog.cog_unload` +- :meth:`.Cog.cog_check` +- :meth:`.Cog.cog_command_error` +- :meth:`.Cog.cog_before_invoke` +- :meth:`.Cog.cog_after_invoke` +- :meth:`.Cog.bot_check` +- :meth:`.Cog.bot_check_once` + +You can visit the reference to get more detail. + +.. _ext_commands_cogs_meta_options: + +Meta Options +-------------- + +At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows: + +.. code-block:: python3 + + class MyCog(commands.Cog, name='My Cog'): + pass + +To see more options that you can set, see the documentation of :class:`.commands.CogMeta`. + +Inspection +------------ + +Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog. + + +To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. :: + + >>> cog = bot.get_cog('Greetings') + >>> commands = cog.get_commands() + >>> print([c.name for c in commands]) + +If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. :: + + >>> print([c.qualified_name for c in cog.walk_commands()]) + +To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. :: + + >>> for name, func in cog.get_listeners(): + ... print(name, '->', func) + diff --git a/docs/Python/html/_sources/ext/commands/commands.rst.txt b/docs/Python/html/_sources/ext/commands/commands.rst.txt new file mode 100644 index 00000000..f29dc70b --- /dev/null +++ b/docs/Python/html/_sources/ext/commands/commands.rst.txt @@ -0,0 +1,962 @@ +.. currentmodule:: discord + +.. _ext_commands_commands: + +Commands +========== + +One of the most appealing aspects of the command extension is how easy it is to define commands and +how you can arbitrarily nest groups and commands to have a rich sub-command system. + +Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar +signature to the Python function. + +For example, in the given command definition: + +.. code-block:: python3 + + @bot.command() + async def foo(ctx, arg): + await ctx.send(arg) + +With the following prefix (``$``), it would be invoked by the user via: + +.. code-block:: none + + $foo abc + +A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one. + +There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, +as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by +:meth:`.Bot.add_command` on the instance. + +Essentially, these two are equivalent: :: + + from discord.ext import commands + + bot = commands.Bot(command_prefix='$') + + @bot.command() + async def test(ctx): + pass + + # or: + + @commands.command() + async def test(ctx): + pass + + bot.add_command(test) + +Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the +documentation here. + +Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change +the name to something other than the function would be as simple as doing this: + +.. code-block:: python3 + + @bot.command(name='list') + async def _list(ctx, arg): + pass + + +Parameters +------------ + +Since we define commands by making Python functions, we also define the argument passing behaviour by the function +parameters. + +Certain parameter types do different things in the user side and most forms of parameter types are supported. + +Positional +++++++++++++ + +The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is: + +.. code-block:: python3 + + @bot.command() + async def test(ctx, arg): + await ctx.send(arg) + + +On the bot using side, you can provide positional arguments by just passing a regular string: + +.. image:: /images/commands/positional1.png + +To make use of a word with spaces in between, you should quote it: + +.. image:: /images/commands/positional2.png + +As a note of warning, if you omit the quotes, you will only get the first word: + +.. image:: /images/commands/positional3.png + +Since positional arguments are just regular Python arguments, you can have as many as you want: + +.. code-block:: python3 + + @bot.command() + async def test(ctx, arg1, arg2): + await ctx.send(f'You passed {arg1} and {arg2}') + +Variable +++++++++++ + +Sometimes you want users to pass in an undetermined number of parameters. The library supports this +similar to how variable list parameters are done in Python: + +.. code-block:: python3 + + @bot.command() + async def test(ctx, *args): + arguments = ', '.join(args) + await ctx.send(f'{len(args)} arguments: {arguments}') + +This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, +so multi-word parameters should be quoted. + +For example, on the bot side: + +.. image:: /images/commands/variable1.png + +If the user wants to input a multi-word argument, they have to quote it like earlier: + +.. image:: /images/commands/variable2.png + +Do note that similar to the Python function behaviour, a user can technically pass no arguments +at all: + +.. image:: /images/commands/variable3.png + +Since the ``args`` variable is a :class:`py:tuple`, +you can do anything you would usually do with one. + +.. admonition:: Slash Command Only + + This functionally is currently not supported by the slash command API, so is turned into + a single ``STRING`` parameter on discord's end which we do our own parsing on. + +Keyword-Only Arguments +++++++++++++++++++++++++ + +When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into +quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, +seen below: + +.. code-block:: python3 + + @bot.command() + async def test(ctx, *, arg): + await ctx.send(arg) + +.. warning:: + + You can only have one keyword-only argument due to parsing ambiguities. + +On the bot side, we do not need to quote input with spaces: + +.. image:: /images/commands/keyword1.png + +Do keep in mind that wrapping it in quotes leaves it as-is: + +.. image:: /images/commands/keyword2.png + +By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be +toggled by the :attr:`.Command.rest_is_raw` argument in the decorator. + +.. _ext_commands_context: + +Invocation Context +------------------- + +As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`. + +This parameter gives you access to something called the "invocation context". Essentially all the information you need to +know how the command was executed. It contains a lot of useful information: + +- :attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any. +- :attr:`.Context.message` to fetch the :class:`Message` of the command. +- :attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command. +- :meth:`.Context.send` to send a message to the channel the command was used in. + +The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you +can do on the :class:`~ext.commands.Context`. + +.. admonition:: Slash Command Only + + :attr:`.Context.message` will be fake if in a slash command, it is not + recommended to access if :attr:`.Context.interaction` is not None as most + methods will error due to the message not actually existing. + +Converters +------------ + +Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually +make use of the arguments, we usually want to convert the data into a target type. We call these +:ref:`ext_commands_api_converters`. + +Converters come in a few flavours: + +- A regular callable object that takes an argument as a sole parameter and returns a different type. + + - These range from your own function, to something like :class:`bool` or :class:`int`. + +- A custom class that inherits from :class:`~ext.commands.Converter`. + +.. _ext_commands_basic_converters: + +Basic Converters +++++++++++++++++++ + +At its core, a basic converter is a callable that takes in an argument and turns it into something else. + +For example, if we wanted to add two numbers together, we could request that they are turned into integers +for us by specifying the converter: + +.. code-block:: python3 + + @bot.command() + async def add(ctx, a: int, b: int): + await ctx.send(a + b) + +We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was +introduced in :pep:`3107`. + +This works with any callable, such as a function that would convert a string to all upper-case: + +.. code-block:: python3 + + def to_upper(argument): + return argument.upper() + + @bot.command() + async def up(ctx, *, content: to_upper): + await ctx.send(content) + +bool +^^^^^^ + +Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content: + +.. code-block:: python3 + + if lowered in ('yes', 'y', 'true', 't', '1', 'enable', 'on'): + return True + elif lowered in ('no', 'n', 'false', 'f', '0', 'disable', 'off'): + return False + +.. _ext_commands_adv_converters: + +Advanced Converters ++++++++++++++++++++++ + +Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some +information from the :class:`Message` that called the command or we want to do some asynchronous processing. + +For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the +:class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires +overriding a single method, :meth:`.Converter.convert`. + +An example converter: + +.. code-block:: python3 + + import random + + class Slapper(commands.Converter): + async def convert(self, ctx, argument): + to_slap = random.choice(ctx.guild.members) + return f'{ctx.author} slapped {to_slap} because *{argument}*' + + @bot.command() + async def slap(ctx, *, reason: Slapper): + await ctx.send(reason) + +The converter provided can either be constructed or not. Essentially these two are equivalent: + +.. code-block:: python3 + + @bot.command() + async def slap(ctx, *, reason: Slapper): + await ctx.send(reason) + + # is the same as... + + @bot.command() + async def slap(ctx, *, reason: Slapper()): + await ctx.send(reason) + +Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for +fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`. + +.. code-block:: python3 + + @bot.command() + async def clean(ctx, *, content: commands.clean_content): + await ctx.send(content) + + # or for fine-tuning + + @bot.command() + async def clean(ctx, *, content: commands.clean_content(use_nicknames=False)): + await ctx.send(content) + + +If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be +raised. + +Inline Advanced Converters ++++++++++++++++++++++++++++++ + +If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the +advanced functionalities of an advanced converter and save us from specifying two types. + +For example, a common idiom would be to have a class and a converter for that class: + +.. code-block:: python3 + + class JoinDistance: + def __init__(self, joined, created): + self.joined = joined + self.created = created + + @property + def delta(self): + return self.joined - self.created + + class JoinDistanceConverter(commands.MemberConverter): + async def convert(self, ctx, argument): + member = await super().convert(ctx, argument) + return JoinDistance(member.joined_at, member.created_at) + + @bot.command() + async def delta(ctx, *, member: JoinDistanceConverter): + is_new = member.delta.days < 100 + if is_new: + await ctx.send("Hey you're pretty new!") + else: + await ctx.send("Hm you're not so new.") + +This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type: + +.. code-block:: python3 + + class JoinDistance: + def __init__(self, joined, created): + self.joined = joined + self.created = created + + @classmethod + async def convert(cls, ctx, argument): + member = await commands.MemberConverter().convert(ctx, argument) + return cls(member.joined_at, member.created_at) + + @property + def delta(self): + return self.joined - self.created + + @bot.command() + async def delta(ctx, *, member: JoinDistance): + is_new = member.delta.days < 100 + if is_new: + await ctx.send("Hey you're pretty new!") + else: + await ctx.send("Hm you're not so new.") + +Discord Converters +++++++++++++++++++++ + +Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes +working with them easy. + +For example, to receive a :class:`Member` you can just pass it as a converter: + +.. code-block:: python3 + + @bot.command() + async def joined(ctx, *, member: discord.Member): + await ctx.send(f'{member} joined on {member.joined_at}') + +When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a +parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, +or just a regular username. The default set of converters have been written to be as easy to use as possible. + +A lot of discord models work out of the gate as a parameter: + +- :class:`Object` (since v2.0) +- :class:`Member` +- :class:`User` +- :class:`Message` (since v1.1) +- :class:`PartialMessage` (since v1.7) +- :class:`abc.GuildChannel` (since 2.0) +- :class:`TextChannel` +- :class:`VoiceChannel` +- :class:`StageChannel` (since v1.7) +- :class:`StoreChannel` (since v1.7) +- :class:`CategoryChannel` +- :class:`Invite` +- :class:`Guild` (since v1.7) +- :class:`Role` +- :class:`Game` +- :class:`Colour` +- :class:`Emoji` +- :class:`PartialEmoji` +- :class:`Thread` (since v2.0) + +Having any of these set as the converter will intelligently convert the argument to the appropriate target type you +specify. + +Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent +converter is given below: + ++--------------------------+-------------------------------------------------+-----------------------------+ +| Discord Class | Converter | Supported By Slash Commands | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`Object` | :class:`~ext.commands.ObjectConverter` | Not currently | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`Member` | :class:`~ext.commands.MemberConverter` | Yes, as type 6 (USER) | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`User` | :class:`~ext.commands.UserConverter` | Yes, as type 6 (USER) | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`Message` | :class:`~ext.commands.MessageConverter` | Not currently | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`PartialMessage` | :class:`~ext.commands.PartialMessageConverter` | Not currently | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`.GuildChannel` | :class:`~ext.commands.GuildChannelConverter` | Yes, as type 7 (CHANNEL) | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`TextChannel` | :class:`~ext.commands.TextChannelConverter` | Yes, as type 7 (CHANNEL) | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`VoiceChannel` | :class:`~ext.commands.VoiceChannelConverter` | Yes, as type 7 (CHANNEL) | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`StageChannel` | :class:`~ext.commands.StageChannelConverter` | Yes, as type 7 (CHANNEL) | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`StoreChannel` | :class:`~ext.commands.StoreChannelConverter` | Yes, as type 7 (CHANNEL) | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`CategoryChannel` | :class:`~ext.commands.CategoryChannelConverter` | Yes, as type 7 (CHANNEL) | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`Thread` | :class:`~ext.commands.ThreadConverter` | Yes, as type 7 (CHANNEL) | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`Invite` | :class:`~ext.commands.InviteConverter` | Not currently | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`Guild` | :class:`~ext.commands.GuildConverter` | Not currently | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`Role` | :class:`~ext.commands.RoleConverter` | Yes, as type 8 (ROLE) | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`Game` | :class:`~ext.commands.GameConverter` | Not currently | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`Colour` | :class:`~ext.commands.ColourConverter` | Not currently | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`Emoji` | :class:`~ext.commands.EmojiConverter` | Not currently | ++--------------------------+-------------------------------------------------+-----------------------------+ +| :class:`PartialEmoji` | :class:`~ext.commands.PartialEmojiConverter` | Not currently | ++--------------------------+-------------------------------------------------+-----------------------------+ + +.. admonition:: Slash Command Only + + If a slash command is not marked on the table above as supported, it will be sent as type 3 (STRING) + and parsed by normal content parsing, see + `the discord documentation `_ + for all supported types by the API. + + +By providing the converter it allows us to use them as building blocks for another converter: + +.. code-block:: python3 + + class MemberRoles(commands.MemberConverter): + async def convert(self, ctx, argument): + member = await super().convert(ctx, argument) + return [role.name for role in member.roles[1:]] # Remove everyone role! + + @bot.command() + async def roles(ctx, *, member: MemberRoles): + """Tells you a member's roles.""" + await ctx.send('I see the following roles: ' + ', '.join(member)) + +.. _ext_commands_special_converters: + +Special Converters +++++++++++++++++++++ + +The command extension also has support for certain converters to allow for more advanced and intricate use cases that go +beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your +commands in an easy to use manner. + +typing.Union +^^^^^^^^^^^^^^ + +A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of +a singular type. For example, given the following: + +.. code-block:: python3 + + import typing + + @bot.command() + async def union(ctx, what: typing.Union[discord.TextChannel, discord.Member]): + await ctx.send(what) + + +The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. +The way this works is through a left-to-right order. It first attempts to convert the input to a +:class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, +then a special error is raised, :exc:`~ext.commands.BadUnionArgument`. + +Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`. + +.. admonition:: Slash Command Only + + These are not currently supported by the Discord API and will be sent as type 3 (STRING) + +typing.Optional +^^^^^^^^^^^^^^^^^ + +A :data:`typing.Optional` is a special type hint that allows for "back-referencing" behaviour. If the converter fails to +parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be +passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any. + +Consider the following example: + +.. code-block:: python3 + + import typing + + @bot.command() + async def bottles(ctx, amount: typing.Optional[int] = 99, *, liquid="beer"): + await ctx.send(f'{amount} bottles of {liquid} on the wall!') + + +.. image:: /images/commands/optional1.png + +In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser +resumes handling, which in this case would be to pass it into the ``liquid`` parameter. + +.. note:: + + This converter only works in regular positional parameters, not variable parameters or keyword-only parameters. + +typing.Literal +^^^^^^^^^^^^^^^^ + +A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values +after being converted to the same type. For example, given the following: + +.. code-block:: python3 + + from typing import Literal + + @bot.command() + async def shop(ctx, buy_sell: Literal['buy', 'sell'], amount: Literal[1, 2], *, item: str): + await ctx.send(f'{buy_sell.capitalize()}ing {amount} {item}(s)!') + + +The ``buy_sell`` parameter must be either the literal string ``"buy"`` or ``"sell"`` and ``amount`` must convert to the +``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, +:exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter. + +Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules. + +Greedy +^^^^^^^^ + +The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied +to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert +any further. + +Consider the following example: + +.. code-block:: python3 + + @bot.command() + async def slap(ctx, members: commands.Greedy[discord.Member], *, reason='no reason'): + slapped = ", ".join(x.name for x in members) + await ctx.send(f'{slapped} just got slapped for {reason}') + +When invoked, it allows for any number of members to be passed in: + +.. image:: /images/commands/greedy1.png + +The type passed when using this converter depends on the parameter type that it is being attached to: + +- Positional parameter types will receive either the default parameter or a :class:`list` of the converted values. +- Variable parameter types will be a :class:`tuple` as usual. +- Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all. + +:class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value. + +When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes: + +.. code-block:: python3 + + import typing + + @bot.command() + async def ban(ctx, members: commands.Greedy[discord.Member], + delete_days: typing.Optional[int] = 0, *, + reason: str): + """Mass bans members with an optional delete_days parameter""" + for member in members: + await member.ban(delete_message_days=delete_days, reason=reason) + + +This command can be invoked any of the following ways: + +.. code-block:: none + + $ban @Member @Member2 spam bot + $ban @Member @Member2 7 spam bot + $ban @Member spam + +.. warning:: + + The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a + price, they open you up to some parsing ambiguities that might surprise some people. + + For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a + :class:`int` could catch a member named after a number due to the different ways a + :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce + unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes + allowed through custom converters or reordering the parameters to minimise clashes. + + To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and + :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter. + +.. _ext_commands_flag_converter: + +FlagConverter +++++++++++++++ + +.. versionadded:: 2.0 + +A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly "flags" using :pep:`526` type annotations +or a syntax more reminiscent of the :mod:`py:dataclasses` module. + +For example, the following code: + +.. code-block:: python3 + + from discord.ext import commands + import discord + + class BanFlags(commands.FlagConverter): + member: discord.Member + reason: str + days: int = 1 + + @commands.command() + async def ban(ctx, *, flags: BanFlags): + plural = f'{flags.days} days' if flags.days != 1 else f'{flags.days} day' + await ctx.send(f'Banned {flags.member} for {flags.reason!r} (deleted {plural} worth of messages)') + +Allows the user to invoke the command using a simple flag-like syntax: + +.. image:: /images/commands/flags1.png + +Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the +flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have +multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use +keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting. + +Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a +class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` +function. These flags are then used to define the interface that your users will use. The annotations correspond to +the converters that the flag arguments must adhere to. + +For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name +or the default value then the :func:`~ext.commands.flag` function can come in handy: + +.. code-block:: python3 + + from typing import List + + class BanFlags(commands.FlagConverter): + members: List[discord.Member] = commands.flag(name='member', default=lambda ctx: []) + +This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that +the default value is an empty list. For greater customisability, the default can either be a value or a callable +that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine. + +In order to customise the flag syntax we also have a few options that can be passed to the class parameter list: + +.. code-block:: python3 + + # --hello world syntax + class PosixLikeFlags(commands.FlagConverter, delimiter=' ', prefix='--'): + hello: str + + + # /make food + class WindowsLikeFlags(commands.FlagConverter, prefix='/', delimiter=''): + make: str + + # TOPIC: not allowed nsfw: yes Slowmode: 100 + class Settings(commands.FlagConverter, case_insensitive=True): + topic: Optional[str] + nsfw: Optional[bool] + slowmode: Optional[int] + +.. note:: + + Despite the similarities in these examples to command like arguments, the syntax and parser is not + a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result + all flags need a corresponding value. + +.. admonition:: Slash Command Only + + As these are built very similar to slash command options, they are converted into options and parsed + back into flags when the slash command is executed. + +The flag converter is similar to regular commands and allows you to use most types of converters +(with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific +annotations as described below. + +typing.List +^^^^^^^^^^^^^ + +If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times. + +For example, augmenting the example above: + +.. code-block:: python3 + + from discord.ext import commands + from typing import List + import discord + + class BanFlags(commands.FlagConverter): + members: List[discord.Member] = commands.flag(name='member') + reason: str + days: int = 1 + + @commands.command() + async def ban(ctx, *, flags: BanFlags): + for member in flags.members: + await member.ban(reason=flags.reason, delete_message_days=flags.days) + + members = ', '.join(str(member) for member in flags.members) + plural = f'{flags.days} days' if flags.days != 1 else f'{flags.days} day' + await ctx.send(f'Banned {members} for {flags.reason!r} (deleted {plural} worth of messages)') + +This is called by repeatedly specifying the flag: + +.. image:: /images/commands/flags2.png + +typing.Tuple +^^^^^^^^^^^^^ + +Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation +allows for "greedy-like" semantics using a variadic tuple: + +.. code-block:: python3 + + from discord.ext import commands + from typing import Tuple + import discord + + class BanFlags(commands.FlagConverter): + members: Tuple[discord.Member, ...] + reason: str + days: int = 1 + +This allows the previous ``ban`` command to be called like this: + +.. image:: /images/commands/flags3.png + +The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code: + +.. code-block:: python3 + + # point: 10 11 point: 12 13 + class Coordinates(commands.FlagConverter): + point: Tuple[int, int] + + +.. warning:: + + Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted + if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces + then quotes should be used to disambiguate it from the other element of the tuple. + +typing.Dict +^^^^^^^^^^^^^ + +A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type +given as a :class:`dict` rather than a :class:`list`. + + +.. _ext_commands_error_handler: + +Error Handling +---------------- + +When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us +that an error has happened and has been silently ignored. + +In order to handle our errors, we must use something called an error handler. There is a global error handler, called +:func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is +called for every error reached. + +Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error +handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`: + +.. code-block:: python3 + + @bot.command() + async def info(ctx, *, member: discord.Member): + """Tells you some info about the member.""" + msg = f'{member} joined on {member.joined_at} and has {len(member.roles)} roles.' + await ctx.send(msg) + + @info.error + async def info_error(ctx, error): + if isinstance(error, commands.BadArgument): + await ctx.send('I could not find that member...') + +The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from +:exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation. + +Checks +------- + +There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked +them from using our bot earlier. The commands extension comes with full support for these things in a concept called a +:ref:`ext_commands_api_checks`. + +A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following +options: + +- Return ``True`` to signal that the person can run the command. +- Return ``False`` to signal that the person cannot run the command. +- Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command. + + - This allows you to have custom error messages for you to handle in the + :ref:`error handlers `. + +To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` +decorator. For example: + +.. code-block:: python3 + + async def is_owner(ctx): + return ctx.author.id == 316026178463072268 + + @bot.command(name='eval') + @commands.check(is_owner) + async def _eval(ctx, *, code): + """A bad example of an eval command""" + await ctx.send(eval(code)) + +This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and +want to split it into its own decorator. To do that we can just add another level of depth: + +.. code-block:: python3 + + def is_owner(): + async def predicate(ctx): + return ctx.author.id == 316026178463072268 + return commands.check(predicate) + + @bot.command(name='eval') + @is_owner() + async def _eval(ctx, *, code): + """A bad example of an eval command""" + await ctx.send(eval(code)) + + +Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`): + +.. code-block:: python3 + + @bot.command(name='eval') + @commands.is_owner() + async def _eval(ctx, *, code): + """A bad example of an eval command""" + await ctx.send(eval(code)) + +When multiple checks are specified, **all** of them must be ``True``: + +.. code-block:: python3 + + def is_in_guild(guild_id): + async def predicate(ctx): + return ctx.guild and ctx.guild.id == guild_id + return commands.check(predicate) + + @bot.command() + @commands.is_owner() + @is_in_guild(41771983423143937) + async def secretguilddata(ctx): + """super secret stuff""" + await ctx.send('secret stuff') + +If any of those checks fail in the example above, then the command will not be run. + +When an error happens, the error is propagated to the :ref:`error handlers `. If you do not +raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a +:exc:`~ext.commands.CheckFailure` exception as so: + +.. code-block:: python3 + + @bot.command() + @commands.is_owner() + @is_in_guild(41771983423143937) + async def secretguilddata(ctx): + """super secret stuff""" + await ctx.send('secret stuff') + + @secretguilddata.error + async def secretguilddata_error(ctx, error): + if isinstance(error, commands.CheckFailure): + await ctx.send('nothing to see here comrade.') + +If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``: + +.. code-block:: python3 + + class NoPrivateMessages(commands.CheckFailure): + pass + + def guild_only(): + async def predicate(ctx): + if ctx.guild is None: + raise NoPrivateMessages('Hey no DMs!') + return True + return commands.check(predicate) + + @guild_only() + async def test(ctx): + await ctx.send('Hey this is not a DM! Nice.') + + @test.error + async def test_error(ctx, error): + if isinstance(error, NoPrivateMessages): + await ctx.send(error) + +.. note:: + + Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`. + +Global Checks +++++++++++++++ + +Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well +using the global check concept. + +Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator. + +For example, to block all DMs we could do the following: + +.. code-block:: python3 + + @bot.check + async def globally_block_dms(ctx): + return ctx.guild is not None + +.. warning:: + + Be careful on how you write your global checks, as it could also lock you out of your own bot. + +.. need a note on global check once here I think diff --git a/docs/Python/html/_sources/ext/commands/extensions.rst.txt b/docs/Python/html/_sources/ext/commands/extensions.rst.txt new file mode 100644 index 00000000..20aa6e12 --- /dev/null +++ b/docs/Python/html/_sources/ext/commands/extensions.rst.txt @@ -0,0 +1,64 @@ +.. currentmodule:: discord + +.. _ext_commands_extensions: + +Extensions +============= + +There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**. + +Primer +-------- + +An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension. + +An example extension looks like this: + +.. code-block:: python3 + :caption: hello.py + :emphasize-lines: 7,8 + + from discord.ext import commands + + @commands.command() + async def hello(ctx): + await ctx.send(f'Hello {ctx.author.display_name}.') + + def setup(bot): + bot.add_command(hello) + +In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``. + +.. admonition:: Cogs + :class: helpful + + Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`. + +.. note:: + + Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``. + +Reloading +----------- + +When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`. + +.. code-block:: python3 + + >>> bot.reload_extension('hello') + +Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened. + +Cleaning Up +------------- + +Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded. + +.. code-block:: python3 + :caption: basic_ext.py + + def setup(bot): + print('I am being loaded!') + + def teardown(bot): + print('I am being unloaded!') diff --git a/docs/Python/html/_sources/ext/commands/index.rst.txt b/docs/Python/html/_sources/ext/commands/index.rst.txt new file mode 100644 index 00000000..9fd5e63c --- /dev/null +++ b/docs/Python/html/_sources/ext/commands/index.rst.txt @@ -0,0 +1,19 @@ +.. _discord_ext_commands: + +``discord.ext.commands`` -- Bot commands framework +==================================================== + +``discord.py`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of +bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in +creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``discord.py`` comes with an +extension library that handles this for you. + + +.. toctree:: + :maxdepth: 2 + + commands + cogs + extensions + slash-commands + api diff --git a/docs/Python/html/_sources/ext/commands/slash-commands.rst.txt b/docs/Python/html/_sources/ext/commands/slash-commands.rst.txt new file mode 100644 index 00000000..db0b89b6 --- /dev/null +++ b/docs/Python/html/_sources/ext/commands/slash-commands.rst.txt @@ -0,0 +1,23 @@ +.. currentmodule:: discord + +.. _ext_commands_slash_commands: + +Slash Commands +============== + +Slash Commands are currently supported in enhanced-discord.py using a system on top of ext.commands. + +This system is very simple to use, and can be enabled via :attr:`.Bot.slash_commands` globally, +or only for specific commands via :attr:`.Command.slash_command`. + +There is also the parameter ``slash_command_guilds`` which can be passed to either :class:`.Bot` or the command +decorator in order to only upload the commands as guild commands to these specific guild IDs, however this +should only be used for testing or small (<10 guilds) bots. + +If you want to add option descriptions to your commands, you should use :class:`.Option` + +For troubleshooting, see the :ref:`FAQ ` + +.. admonition:: Slash Command Only + + For parts of the docs specific to slash commands, look for this box! diff --git a/docs/Python/html/_sources/ext/tasks/index.rst.txt b/docs/Python/html/_sources/ext/tasks/index.rst.txt new file mode 100644 index 00000000..8f90a87d --- /dev/null +++ b/docs/Python/html/_sources/ext/tasks/index.rst.txt @@ -0,0 +1,154 @@ +.. _discord_ext_tasks: + +``discord.ext.tasks`` -- asyncio.Task helpers +==================================================== + +.. versionadded:: 1.1.0 + +One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for: + +- How do I handle :exc:`asyncio.CancelledError`? +- What do I do if the internet goes out? +- What is the maximum number of seconds I can sleep anyway? + +The goal of this discord.py extension is to abstract all these worries away from you. + +Recipes +--------- + +A simple background task in a :class:`~discord.ext.commands.Cog`: + +.. code-block:: python3 + + from discord.ext import tasks, commands + + class MyCog(commands.Cog): + def __init__(self): + self.index = 0 + self.printer.start() + + def cog_unload(self): + self.printer.cancel() + + @tasks.loop(seconds=5.0) + async def printer(self): + print(self.index) + self.index += 1 + +Adding an exception to handle during reconnect: + +.. code-block:: python3 + + import asyncpg + from discord.ext import tasks, commands + + class MyCog(commands.Cog): + def __init__(self, bot): + self.bot = bot + self.data = [] + self.batch_update.add_exception_type(asyncpg.PostgresConnectionError) + self.batch_update.start() + + def cog_unload(self): + self.batch_update.cancel() + + @tasks.loop(minutes=5.0) + async def batch_update(self): + async with self.bot.pool.acquire() as con: + # batch update here... + pass + +Looping a certain amount of times before exiting: + +.. code-block:: python3 + + from discord.ext import tasks + + @tasks.loop(seconds=5.0, count=5) + async def slow_count(): + print(slow_count.current_loop) + + @slow_count.after_loop + async def after_slow_count(): + print('done!') + + slow_count.start() + +Waiting until the bot is ready before the loop starts: + +.. code-block:: python3 + + from discord.ext import tasks, commands + + class MyCog(commands.Cog): + def __init__(self, bot): + self.index = 0 + self.bot = bot + self.printer.start() + + def cog_unload(self): + self.printer.cancel() + + @tasks.loop(seconds=5.0) + async def printer(self): + print(self.index) + self.index += 1 + + @printer.before_loop + async def before_printer(self): + print('waiting...') + await self.bot.wait_until_ready() + +Doing something during cancellation: + +.. code-block:: python3 + + from discord.ext import tasks, commands + import asyncio + + class MyCog(commands.Cog): + def __init__(self, bot): + self.bot= bot + self._batch = [] + self.lock = asyncio.Lock() + self.bulker.start() + + async def do_bulk(self): + # bulk insert data here + ... + + @tasks.loop(seconds=10.0) + async def bulker(self): + async with self.lock: + await self.do_bulk() + + @bulker.after_loop + async def on_bulker_cancel(self): + if self.bulker.is_being_cancelled() and len(self._batch) != 0: + # if we're cancelled and we have some data left... + # let's insert it to our database + await self.do_bulk() + + +.. _ext_tasks_api: + +API Reference +--------------- + +.. attributetable:: discord.ext.tasks.Loop + +.. autoclass:: discord.ext.tasks.Loop() + :members: + :special-members: __call__ + :exclude-members: after_loop, before_loop, error + + .. automethod:: Loop.after_loop() + :decorator: + + .. automethod:: Loop.before_loop() + :decorator: + + .. automethod:: Loop.error() + :decorator: + +.. autofunction:: discord.ext.tasks.loop diff --git a/docs/Python/html/_sources/faq.rst.txt b/docs/Python/html/_sources/faq.rst.txt new file mode 100644 index 00000000..556bb34f --- /dev/null +++ b/docs/Python/html/_sources/faq.rst.txt @@ -0,0 +1,443 @@ +:orphan: + +.. currentmodule:: discord +.. _faq: + +Frequently Asked Questions +=========================== + +This is a list of Frequently Asked Questions regarding using ``discord.py`` and its extension modules. Feel free to suggest a +new question or submit one via pull requests. + +.. contents:: Questions + :local: + +Coroutines +------------ + +Questions regarding coroutines and asyncio belong here. + +What is a coroutine? +~~~~~~~~~~~~~~~~~~~~~~ + +A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops +the function's execution at that point and works on other things until it comes back to that point and finishes off its work. +This allows for your program to be doing multiple things at the same time without using threads or complicated +multiprocessing. + +**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.** + +Where can I use ``await``\? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +You can only use ``await`` inside ``async def`` functions and nowhere else. + +What does "blocking" mean? +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not +despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make +sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has +not stopped the function's execution at that point to do other things. + +If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: +``Heartbeat blocked for more than N seconds.`` +See :ref:`logging_setup` for details on enabling logging. + +A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` +instead. Similar to this example: :: + + # bad + time.sleep(10) + + # good + await asyncio.sleep(10) + +Another common source of blocking for too long is using HTTP requests with the famous module :doc:`req:index`. +While :doc:`req:index` is an amazing module for non-asynchronous programming, it is not a good choice for +:mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which +is installed on the side with this library. + +Consider the following example: :: + + # bad + r = requests.get('http://aws.random.cat/meow') + if r.status_code == 200: + js = r.json() + await channel.send(js['file']) + + # good + async with aiohttp.ClientSession() as session: + async with session.get('http://aws.random.cat/meow') as r: + if r.status == 200: + js = await r.json() + await channel.send(js['file']) + +General +--------- + +General questions regarding library usage belong here. + +Where can I find usage examples? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Example code can be found in the `examples folder `_ +in the repository. + +How do I set the "Playing" status? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object. + +The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime. + +.. warning:: + + It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once. + + There is a high chance of disconnecting if presences are changed right after connecting. + +The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. +For memory optimisation purposes, some activities are offered in slimmed-down versions: + +- :class:`Game` +- :class:`Streaming` + +Putting both of these pieces of info together, you get the following: :: + + client = discord.Client(activity=discord.Game(name='my game')) + + # or, for watching: + activity = discord.Activity(name='my activity', type=discord.ActivityType.watching) + client = discord.Client(activity=activity) + +How do I send a message to a specific channel? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +You must fetch the channel directly and then call the appropriate method. Example: :: + + channel = client.get_channel(12324234183172) + await channel.send('hello') + +How do I send a DM? +~~~~~~~~~~~~~~~~~~~ + +Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: :: + + user = client.get_user(381870129706958858) + await user.send('👀') + +If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: :: + + await message.author.send('👋') + +How do I get the ID of a sent message? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +:meth:`abc.Messageable.send` returns the :class:`Message` that was sent. +The ID of a message can be accessed via :attr:`Message.id`: :: + + message = await channel.send('hmm…') + message_id = message.id + +How do I upload an image? +~~~~~~~~~~~~~~~~~~~~~~~~~ + +To upload something to Discord you have to use the :class:`File` object. + +A :class:`File` accepts two parameters, the file-like object (or file path) and the filename +to pass to Discord when uploading. + +If you want to upload an image it's as simple as: :: + + await channel.send(file=discord.File('my_file.png')) + +If you have a file-like object you can do as follows: :: + + with open('my_file.png', 'rb') as fp: + await channel.send(file=discord.File(fp, 'new_filename.png')) + +To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\: :: + + my_files = [ + discord.File('result.zip'), + discord.File('teaser_graph.png'), + ] + await channel.send(files=my_files) + +If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` +and then pass an :class:`io.BytesIO` instance to :class:`File` like so: + +.. code-block:: python3 + + import io + import aiohttp + + async with aiohttp.ClientSession() as session: + async with session.get(my_url) as resp: + if resp.status != 200: + return await channel.send('Could not download file...') + data = io.BytesIO(await resp.read()) + await channel.send(file=discord.File(data, 'cool_image.png')) + + +How can I add a reaction to a message? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +You use the :meth:`Message.add_reaction` method. + +If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways: + +- ``'👍'`` +- ``'\U0001F44D'`` +- ``'\N{THUMBS UP SIGN}'`` + +Quick example: :: + + emoji = '\N{THUMBS UP SIGN}' + # or '\U0001f44d' or '👍' + await message.add_reaction(emoji) + +In case you want to use emoji that come from a message, you already get their code points in the content without needing +to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands. + +For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you +can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ +:func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections. + +The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. +For example, sending the message ``\:python3:`` with the client will result in ``<:python3:232720527448342530>``. + +Quick example: :: + + + # if you have the ID already + emoji = client.get_emoji(310177266011340803) + await message.add_reaction(emoji) + + # no ID, do a lookup + emoji = discord.utils.get(guild.emojis, name='LUL') + if emoji: + await message.add_reaction(emoji) + + # if you have the name and ID of a custom emoji: + emoji = '<:python3:232720527448342530>' + await message.add_reaction(emoji) + +How do I pass a coroutine to the player's "after" function? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. +This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable +that wraps up a couple of aspects. + +The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are +technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for +us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call +a coroutine from another thread. + +However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of +this together we can do the following: :: + + def my_after(error): + coro = some_channel.send('Song is done!') + fut = asyncio.run_coroutine_threadsafe(coro, client.loop) + try: + fut.result() + except: + # an error happened sending the message + pass + + voice.play(discord.FFmpegPCMAudio(url), after=my_after) + +How do I run something in the background? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +`Check the background_task.py example. `_ + +How do I get a specific model? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +There are multiple ways of doing this. If you have a specific model's ID then you can use +one of the following functions: + +- :meth:`Client.get_channel` +- :meth:`Client.get_guild` +- :meth:`Client.get_user` +- :meth:`Client.get_emoji` +- :meth:`Guild.get_member` +- :meth:`Guild.get_channel` +- :meth:`Guild.get_role` + +The following use an HTTP request: + +- :meth:`abc.Messageable.fetch_message` +- :meth:`Client.fetch_user` +- :meth:`Client.fetch_guilds` +- :meth:`Client.fetch_guild` +- :meth:`Guild.fetch_emoji` +- :meth:`Guild.fetch_emojis` +- :meth:`Guild.fetch_member` + + +If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding +specific models. + +Quick example: :: + + # find a guild by name + guild = discord.utils.get(client.guilds, name='My Server') + + # make sure to check if it's found + if guild is not None: + # find a channel by name + channel = discord.utils.get(guild.text_channels, name='cool-channel') + +How do I make a web request? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +To make a request, you should use a non-blocking library. +This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `. + +Quick example: :: + + async with aiohttp.ClientSession() as session: + async with session.get('http://aws.random.cat/meow') as r: + if r.status == 200: + js = await r.json() + +See `aiohttp's full documentation `_ for more information. + +How do I use a local image file for an embed image? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Discord special-cases uploading an image attachment and using it within an embed so that it will not +display separately, but instead in the embed's thumbnail, image, footer or author icon. + +To do so, upload the image normally with :meth:`abc.Messageable.send`, +and set the embed's image URL to ``attachment://image.png``, +where ``image.png`` is the filename of the image you will send. + + +Quick example: :: + + file = discord.File("path/to/my/image.png", filename="image.png") + embed = discord.Embed() + embed.set_image(url="attachment://image.png") + await channel.send(file=file, embed=embed) + +.. note :: + + Due to a Discord limitation, filenames may not include underscores. + +Is there an event for audit log entries being created? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Since Discord does not dispatch this information in the gateway, the library cannot provide this information. +This is currently a Discord limitation. + +Commands Extension +------------------- + +Questions regarding ``discord.ext.commands`` belong here. + +Why does ``on_message`` make my commands stop working? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a +``bot.process_commands(message)`` line at the end of your ``on_message``. For example: :: + + @bot.event + async def on_message(message): + # do some extra stuff here + + await bot.process_commands(message) + +Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not +manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response +to a message. Example:: + + @bot.listen('on_message') + async def whatever_you_want_to_call_it(message): + # do stuff here + # do not process commands here + +Why do my arguments require quotes? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +In a simple command defined as: :: + + @bot.command() + async def echo(ctx, message: str): + await ctx.send(message) + +Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call +it via ``?echo "a b c"`` or change the signature to have "consume rest" behaviour. Example: :: + + @bot.command() + async def echo(ctx, *, message: str): + await ctx.send(message) + +This will allow you to use ``?echo a b c`` without needing the quotes. + +How do I get the original ``message``\? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original +message. + +Example: :: + + @bot.command() + async def length(ctx): + await ctx.send(f'Your message is {len(ctx.message.content)} characters long.') + +How do I make a subcommand? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into +the group operating as "subcommands". These groups can be arbitrarily nested as well. + +Example: :: + + @bot.group() + async def git(ctx): + if ctx.invoked_subcommand is None: + await ctx.send('Invalid git command passed...') + + @git.command() + async def push(ctx, remote: str, branch: str): + await ctx.send(f'Pushing to {remote} {branch}') + +This could then be used as ``?git push origin master``. + +How do I make slash commands? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +See :doc:`/ext/commands/slash-commands` + +My slash commands aren't showing up! +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. _ext_commands_slash_command_troubleshooting: + +You need to invite your bot with the ``application.commands`` scope on each guild and +you need the :attr:`Permissions.use_slash_commands` permission in order to see slash commands. + +.. image:: /images/discord_oauth2_slash_scope.png + :alt: The scopes checkbox with "bot" and "applications.commands" ticked. + +Global slash commands (created by not specifying :attr:`~ext.commands.Bot.slash_command_guilds`) will also take up an +hour to refresh on discord's end, so it is recommended to set :attr:`~ext.commands.Bot.slash_command_guilds` for development. + +If none of this works, make sure you are actually running enhanced-discord.py by doing ``print(bot.slash_commands)`` + +My bot won't start after enabling slash commands! +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This means some of your command metadata is invalid for slash commands. +Make sure your command names and option names are lowercase, and they have to match the regex ``^[\w-]{1,32}$`` + +If you cannot figure out the problem, you should disable slash commands globally (:attr:`~ext.commands.Bot.slash_commands`\=False) +then go through commands, enabling them specifically with :attr:`~.commands.Command.slash_command`\=True until it +errors, then you can debug the problem with that command specifically. diff --git a/docs/Python/html/_sources/index.rst.txt b/docs/Python/html/_sources/index.rst.txt new file mode 100644 index 00000000..e1af5163 --- /dev/null +++ b/docs/Python/html/_sources/index.rst.txt @@ -0,0 +1,76 @@ +.. discord.py documentation master file, created by + sphinx-quickstart on Fri Aug 21 05:43:30 2015. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to discord.py +=========================== + +.. image:: /images/snake.svg +.. image:: /images/snake_dark.svg + +discord.py is a modern, easy to use, feature-rich, and async ready API wrapper +for Discord. + +**Features:** + +- Modern Pythonic API using ``async``\/``await`` syntax +- Sane rate limit handling that prevents 429s +- Command extension to aid with bot creation +- Easy to use with an object oriented design +- Optimised for both speed and memory + +Getting started +----------------- + +Is this your first time using the library? This is the place to get started! + +- **First steps:** :doc:`intro` | :doc:`quickstart` | :doc:`logging` +- **Working with Discord:** :doc:`discord` | :doc:`intents` +- **Examples:** Many examples are available in the :resource:`repository `. + +Getting help +-------------- + +If you're having trouble with something, these resources might help. + +- Try the :doc:`faq` first, it's got answers to all common questions. +- Ask us and hang out with us in our :resource:`Discord ` server. +- If you're looking for something specific, try the :ref:`index ` or :ref:`searching `. +- Report bugs in the :resource:`issue tracker `. +- Ask in our :resource:`GitHub discussions page `. + +Extensions +------------ + +These extensions help you during development when it comes to common tasks. + +.. toctree:: + :maxdepth: 1 + + ext/commands/index.rst + ext/tasks/index.rst + +Manuals +--------- + +These pages go into great detail about everything the API can do. + +.. toctree:: + :maxdepth: 1 + + api + discord.ext.commands API Reference + discord.ext.tasks API Reference + +Meta +------ + +If you're looking for something related to the project itself, it's here. + +.. toctree:: + :maxdepth: 1 + + whats_new + version_guarantees + migrating diff --git a/docs/Python/html/_sources/intents.rst.txt b/docs/Python/html/_sources/intents.rst.txt new file mode 100644 index 00000000..a9708aaf --- /dev/null +++ b/docs/Python/html/_sources/intents.rst.txt @@ -0,0 +1,192 @@ +:orphan: + +.. currentmodule:: discord +.. versionadded:: 1.5 +.. _intents_primer: + +A Primer to Gateway Intents +============================= + +In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation. + +These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument. + +If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members` and :attr:`Intents.presences`. + +What intents are needed? +-------------------------- + +The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables. + +For example, if you want a bot that functions without spammy events like presences or typing then we could do the following: + +.. code-block:: python3 + :emphasize-lines: 7,9,10 + + import discord + intents = discord.Intents.default() + intents.typing = False + intents.presences = False + + # Somewhere else: + # client = discord.Client(intents=intents) + # or + # from discord.ext import commands + # bot = commands.Bot(command_prefix='!', intents=intents) + +Note that this doesn't enable :attr:`Intents.members` since it's a privileged intent. + +Another example showing a bot that only deals with messages and guild information: + +.. code-block:: python3 + :emphasize-lines: 7,9,10 + + import discord + intents = discord.Intents(messages=True, guilds=True) + # If you also want reaction events enable the following: + # intents.reactions = True + + # Somewhere else: + # client = discord.Client(intents=intents) + # or + # from discord.ext import commands + # bot = commands.Bot(command_prefix='!', intents=intents) + +.. _privileged_intents: + +Privileged Intents +--------------------- + +With the API change requiring bot authors to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**. + +A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following: + +1. Make sure you're logged on to the `Discord website `_. +2. Navigate to the `application page `_. +3. Click on the bot you want to enable privileged intents for. +4. Navigate to the bot tab on the left side of the screen. + + .. image:: /images/discord_bot_tab.png + :alt: The bot tab in the application page. + +5. Scroll down to the "Privileged Gateway Intents" section and enable the ones you want. + + .. image:: /images/discord_privileged_intents.png + :alt: The privileged gateway intents selector. + +.. warning:: + + Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_. If your bot is already verified and you would like to enable a privileged intent you must go through `Discord support `_ and talk to them about it. + +.. note:: + + Even if you enable intents through the developer portal, you still have to enable the intents + through code as well. + +Do I need privileged intents? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This is a quick checklist to see if you need specific privileged intents. + +.. _need_presence_intent: + +Presence Intent ++++++++++++++++++ + +- Whether you use :attr:`Member.status` at all to track member statuses. +- Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities. + +.. _need_members_intent: + +Member Intent ++++++++++++++++ + +- Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events. +- Whether you want to track member updates such as nickname or role changes. +- Whether you want to track user updates such as usernames, avatars, discriminators, etc. +- Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`. +- Whether you want high accuracy member cache under :attr:`Guild.members`. + +.. _intents_member_cache: + +Member Cache +------------- + +Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them. + +To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible. + +It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example: + +- :func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled. +- :func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled. +- :func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled. +- :func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled. +- The reaction add events do not contain additional information when in direct messages. This is a Discord limitation. +- The reaction removal events do not have member information. This is a Discord limitation. + +Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled. + +.. _retrieving_members: + +Retrieving Members +-------------------- + +If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this: + +- :meth:`Guild.query_members` + - Used to query members by a prefix matching nickname or username. + - This can also be used to query members by their user ID. + - This uses the gateway and not the HTTP. +- :meth:`Guild.chunk` + - This can be used to fetch the entire member list through the gateway. +- :meth:`Guild.fetch_member` + - Used to fetch a member by ID through the HTTP API. +- :meth:`Guild.fetch_members` + - used to fetch a large number of members through the HTTP API. + +It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds. + +Troubleshooting +------------------ + +Some common issues relating to the mandatory intent change. + +Where'd my members go? +~~~~~~~~~~~~~~~~~~~~~~~~ + +Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true. + +For example: + +.. code-block:: python3 + :emphasize-lines: 3,6,8,9 + + import discord + intents = discord.Intents.default() + intents.members = True + + # Somewhere else: + # client = discord.Client(intents=intents) + # or + # from discord.ext import commands + # bot = commands.Bot(command_prefix='!', intents=intents) + +Why does ``on_ready`` take so long to fire? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested. + +There are a few solutions to fix this. + +The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced. + +The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `. + +To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are "large" (over 250 members). + +Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list. + +Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this. + +If you truly dislike the direction Discord is going with their API, you can contact them via `support `_. diff --git a/docs/Python/html/_sources/intro.rst.txt b/docs/Python/html/_sources/intro.rst.txt new file mode 100644 index 00000000..12a73c70 --- /dev/null +++ b/docs/Python/html/_sources/intro.rst.txt @@ -0,0 +1,113 @@ +:orphan: + +.. currentmodule:: discord + +.. _intro: + +Introduction +============== + +This is the documentation for discord.py, a library for Python to aid +in creating applications that utilise the Discord API. + +Prerequisites +--------------- + +discord.py works with Python 3.8 or higher. Support for earlier versions of Python +is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported. + + +.. _installing: + +Installing +----------- + +You can get the library directly from PyPI: :: + + python3 -m pip install -U discord.py + +If you are using Windows, then the following should be used instead: :: + + py -3 -m pip install -U discord.py + + +To get voice support, you should use ``discord.py[voice]`` instead of ``discord.py``, e.g. :: + + python3 -m pip install -U discord.py[voice] + +On Linux environments, installing voice requires getting the following dependencies: + +- `libffi `_ +- `libnacl `_ +- `python3-dev `_ + +For a Debian-based system, the following command will get these dependencies: + +.. code-block:: shell + + $ apt install libffi-dev libnacl-dev python3-dev + +Remember to check your permissions! + +Virtual Environments +~~~~~~~~~~~~~~~~~~~~~ + +Sometimes you want to keep libraries from polluting system installs or use a different version of +libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. +For this purpose, the standard library as of Python 3.3 comes with a concept called "Virtual Environment"s to +help maintain these separate versions. + +A more in-depth tutorial is found on :doc:`py:tutorial/venv`. + +However, for the quick and dirty: + +1. Go to your project's working directory: + + .. code-block:: shell + + $ cd your-bot-source + $ python3 -m venv bot-env + +2. Activate the virtual environment: + + .. code-block:: shell + + $ source bot-env/bin/activate + + On Windows you activate it with: + + .. code-block:: shell + + $ bot-env\Scripts\activate.bat + +3. Use pip like usual: + + .. code-block:: shell + + $ pip install -U discord.py + +Congratulations. You now have a virtual environment all set up. + +Basic Concepts +--------------- + +discord.py revolves around the concept of :ref:`events `. +An event is something you listen to and then respond to. For example, when a message +happens, you will receive an event about it that you can respond to. + +A quick example to showcase how events work: + +.. code-block:: python3 + + import discord + + class MyClient(discord.Client): + async def on_ready(self): + print(f'Logged on as {self.user}!') + + async def on_message(self, message): + print(f'Message from {messsage.author}: {message.content}') + + client = MyClient() + client.run('my token goes here') + diff --git a/docs/Python/html/_sources/logging.rst.txt b/docs/Python/html/_sources/logging.rst.txt new file mode 100644 index 00000000..535a373f --- /dev/null +++ b/docs/Python/html/_sources/logging.rst.txt @@ -0,0 +1,46 @@ +:orphan: + +.. versionadded:: 0.6.0 +.. _logging_setup: + +Setting Up Logging +=================== + +*discord.py* logs errors and debug information via the :mod:`logging` python +module. It is strongly recommended that the logging module is +configured, as no errors or warnings will be output if it is not set up. +Configuration of the ``logging`` module can be as simple as:: + + import logging + + logging.basicConfig(level=logging.INFO) + +Placed at the start of the application. This will output the logs from +discord as well as other libraries that use the ``logging`` module +directly to the console. + +The optional ``level`` argument specifies what level of events to log +out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and +``DEBUG`` and if not specified defaults to ``WARNING``. + +More advanced setups are possible with the :mod:`logging` module. For +example to write the logs to a file called ``discord.log`` instead of +outputting them to the console the following snippet can be used:: + + import discord + import logging + + logger = logging.getLogger('discord') + logger.setLevel(logging.DEBUG) + handler = logging.FileHandler(filename='discord.log', encoding='utf-8', mode='w') + handler.setFormatter(logging.Formatter('%(asctime)s:%(levelname)s:%(name)s: %(message)s')) + logger.addHandler(handler) + +This is recommended, especially at verbose levels such as ``INFO`` +and ``DEBUG``, as there are a lot of events logged and it would clog the +stdout of your program. + + + +For more information, check the documentation and tutorial of the +:mod:`logging` module. diff --git a/docs/Python/html/_sources/migrating.rst.txt b/docs/Python/html/_sources/migrating.rst.txt new file mode 100644 index 00000000..baf97160 --- /dev/null +++ b/docs/Python/html/_sources/migrating.rst.txt @@ -0,0 +1,1172 @@ +.. currentmodule:: discord + +.. _migrating_1_0: + +Migrating to v1.0 +====================== + +v1.0 is one of the biggest breaking changes in the library due to a complete +redesign. + +The amount of changes are so massive and long that for all intents and purposes, it is a completely +new library. + +Part of the redesign involves making things more easy to use and natural. Things are done on the +:ref:`models ` instead of requiring a :class:`Client` instance to do any work. + +Python Version Change +----------------------- + +In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, +the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 +is dropped**. + +Major Model Changes +--------------------- + +Below are major model changes that have happened in v1.0 + +Snowflakes are int +~~~~~~~~~~~~~~~~~~~~ + +Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`. + +Quick example: :: + + # before + ch = client.get_channel('84319995256905728') + if message.author.id == '80528701850124288': + ... + + # after + ch = client.get_channel(84319995256905728) + if message.author.id == 80528701850124288: + ... + +This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have +to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally. + +Server is now Guild +~~~~~~~~~~~~~~~~~~~~~ + +The official API documentation calls the "Server" concept a "Guild" instead. In order to be more consistent with the +API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has +been changed as well. + +A list of changes is as follows: + ++-------------------------------+----------------------------------+ +| Before | After | ++-------------------------------+----------------------------------+ +| ``Message.server`` | :attr:`Message.guild` | ++-------------------------------+----------------------------------+ +| ``Channel.server`` | :attr:`.GuildChannel.guild` | ++-------------------------------+----------------------------------+ +| ``Client.servers`` | :attr:`Client.guilds` | ++-------------------------------+----------------------------------+ +| ``Client.get_server`` | :meth:`Client.get_guild` | ++-------------------------------+----------------------------------+ +| ``Emoji.server`` | :attr:`Emoji.guild` | ++-------------------------------+----------------------------------+ +| ``Role.server`` | :attr:`Role.guild` | ++-------------------------------+----------------------------------+ +| ``Invite.server`` | :attr:`Invite.guild` | ++-------------------------------+----------------------------------+ +| ``Member.server`` | :attr:`Member.guild` | ++-------------------------------+----------------------------------+ +| ``Permissions.manage_server`` | :attr:`Permissions.manage_guild` | ++-------------------------------+----------------------------------+ +| ``VoiceClient.server`` | :attr:`VoiceClient.guild` | ++-------------------------------+----------------------------------+ +| ``Client.create_server`` | :meth:`Client.create_guild` | ++-------------------------------+----------------------------------+ + +.. _migrating_1_0_model_state: + +Models are Stateful +~~~~~~~~~~~~~~~~~~~~~ + +As mentioned earlier, a lot of functionality was moved out of :class:`Client` and +put into their respective :ref:`model `. + +A list of these changes is enumerated below. + ++---------------------------------------+------------------------------------------------------------------------------+ +| Before | After | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.add_reaction`` | :meth:`Message.add_reaction` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.add_roles`` | :meth:`Member.add_roles` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.ban`` | :meth:`Member.ban` or :meth:`Guild.ban` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.change_nickname`` | :meth:`Member.edit` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.clear_reactions`` | :meth:`Message.clear_reactions` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.create_channel`` | :meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.create_custom_emoji`` | :meth:`Guild.create_custom_emoji` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.create_invite`` | :meth:`abc.GuildChannel.create_invite` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.create_role`` | :meth:`Guild.create_role` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.delete_channel`` | :meth:`abc.GuildChannel.delete` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.delete_channel_permissions`` | :meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None`` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.delete_custom_emoji`` | :meth:`Emoji.delete` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.delete_invite`` | :meth:`Invite.delete` or :meth:`Client.delete_invite` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.delete_message`` | :meth:`Message.delete` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.delete_messages`` | :meth:`TextChannel.delete_messages` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.delete_role`` | :meth:`Role.delete` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.delete_server`` | :meth:`Guild.delete` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.edit_channel`` | :meth:`TextChannel.edit` or :meth:`VoiceChannel.edit` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.edit_channel_permissions`` | :meth:`abc.GuildChannel.set_permissions` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.edit_custom_emoji`` | :meth:`Emoji.edit` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.edit_message`` | :meth:`Message.edit` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.edit_profile`` | :meth:`ClientUser.edit` (you get this from :attr:`Client.user`) | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.edit_role`` | :meth:`Role.edit` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.edit_server`` | :meth:`Guild.edit` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.estimate_pruned_members`` | :meth:`Guild.estimate_pruned_members` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.get_all_emojis`` | :attr:`Client.emojis` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.get_bans`` | :meth:`Guild.bans` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.get_invite`` | :meth:`Client.fetch_invite` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.get_message`` | :meth:`abc.Messageable.fetch_message` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.get_reaction_users`` | :meth:`Reaction.users` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.get_user_info`` | :meth:`Client.fetch_user` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.invites_from`` | :meth:`abc.GuildChannel.invites` or :meth:`Guild.invites` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.join_voice_channel`` | :meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`) | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.kick`` | :meth:`Guild.kick` or :meth:`Member.kick` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.leave_server`` | :meth:`Guild.leave` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.logs_from`` | :meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`) | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.move_channel`` | :meth:`TextChannel.edit` or :meth:`VoiceChannel.edit` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.move_member`` | :meth:`Member.edit` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.move_role`` | :meth:`Role.edit` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.pin_message`` | :meth:`Message.pin` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.pins_from`` | :meth:`abc.Messageable.pins` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.prune_members`` | :meth:`Guild.prune_members` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.purge_from`` | :meth:`TextChannel.purge` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.remove_reaction`` | :meth:`Message.remove_reaction` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.remove_roles`` | :meth:`Member.remove_roles` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.replace_roles`` | :meth:`Member.edit` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.send_file`` | :meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`) | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.send_message`` | :meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`) | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.send_typing`` | :meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`) | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.server_voice_state`` | :meth:`Member.edit` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.start_private_message`` | :meth:`User.create_dm` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.unban`` | :meth:`Guild.unban` or :meth:`Member.unban` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.unpin_message`` | :meth:`Message.unpin` | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.wait_for_message`` | :meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`) | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.wait_for_reaction`` | :meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`) | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.wait_until_login`` | Removed | ++---------------------------------------+------------------------------------------------------------------------------+ +| ``Client.wait_until_ready`` | No change | ++---------------------------------------+------------------------------------------------------------------------------+ + +Property Changes +~~~~~~~~~~~~~~~~~~ + +In order to be a bit more consistent, certain things that were properties were changed to methods instead. + +The following are now methods instead of properties (requires parentheses): + +- :meth:`Role.is_default` +- :meth:`Client.is_ready` +- :meth:`Client.is_closed` + +Dict Value Change +~~~~~~~~~~~~~~~~~~~~~ + +Prior to v1.0 some aggregating properties that retrieved models would return "dict view" objects. + +As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would +be raised and crash the task. To alleviate this, the "dict view" objects were changed into lists. + +The following views were changed to a list: + +- :attr:`Client.guilds` +- :attr:`Client.users` (new in v1.0) +- :attr:`Client.emojis` (new in v1.0) +- :attr:`Guild.channels` +- :attr:`Guild.text_channels` (new in v1.0) +- :attr:`Guild.voice_channels` (new in v1.0) +- :attr:`Guild.emojis` +- :attr:`Guild.members` + +Voice State Changes +~~~~~~~~~~~~~~~~~~~~~ + +Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a +:attr:`Member.voice` attribute to refer to it. + +However, it was transparent to the user. In an effort to make the library save more memory, the +voice state change is now more visible. + +The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if +the member does not have a voice state this attribute can be ``None``. + +Quick example: :: + + # before + member.deaf + member.voice.voice_channel + + # after + if member.voice: # can be None + member.voice.deaf + member.voice.channel + + +User and Member Type Split +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are "flattened" +by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional +change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind. + +These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you +can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list +of all :class:`User` your client can see with :attr:`Client.users`. + +.. _migrating_1_0_channel_split: + +Channel Type Split +~~~~~~~~~~~~~~~~~~~~~ + +Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` +property to help differentiate between them. + +In order to save memory the channels have been split into 4 different types: + +- :class:`TextChannel` for guild text channels. +- :class:`VoiceChannel` for guild voice channels. +- :class:`DMChannel` for DM channels with members. +- :class:`GroupChannel` for Group DM channels with members. + +With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`. + +The types are split into two different :ref:`discord_api_abcs`: + +- :class:`abc.GuildChannel` for guild channels. +- :class:`abc.PrivateChannel` for private channels (DMs and group DMs). + +So to check if something is a guild channel you would do: :: + + isinstance(channel, discord.abc.GuildChannel) + +And to check if it's a private channel you would do: :: + + isinstance(channel, discord.abc.PrivateChannel) + +Of course, if you're looking for only a specific type you can pass that too, e.g. :: + + isinstance(channel, discord.TextChannel) + +With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`. + + +Miscellaneous Model Changes +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +There were lots of other things added or removed in the models in general. + +They will be enumerated here. + +**Removed** + +- :meth:`Client.login` no longer accepts email and password logins. + + - Use a token and ``bot=False``. + +- ``Client.get_all_emojis`` + + - Use :attr:`Client.emojis` instead. + +- ``Client.messages`` + + - Use read-only :attr:`Client.cached_messages` instead. + +- ``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone. + + - Use :meth:`Client.wait_for` instead. + +- ``Channel.voice_members`` + + - Use :attr:`VoiceChannel.members` instead. + +- ``Channel.is_private`` + + - Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead. + - e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel. + +- ``Client.accept_invite`` + + - There is no replacement for this one. This functionality is deprecated API wise. + +- ``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default`` + + - The concept of a default channel was removed from Discord. + See `#329 `_. + +- ``Message.edited_timestamp`` + + - Use :attr:`Message.edited_at` instead. + +- ``Message.timestamp`` + + - Use :attr:`Message.created_at` instead. + +- ``Colour.to_tuple()`` + + - Use :meth:`Colour.to_rgb` instead. + +- ``Permissions.view_audit_logs`` + + - Use :attr:`Permissions.view_audit_log` instead. + +- ``Member.game`` + + - Use :attr:`Member.activities` instead. + +- ``Guild.role_hierarchy`` / ``Server.role_hierarchy`` + + - Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order + of what the old ``Guild.role_hierarchy`` used to be. + +**Changed** + +- :attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set. +- :attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects. +- :attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object. +- :attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role. + +**Added** + +- :class:`Attachment` to represent a discord attachment. +- :class:`CategoryChannel` to represent a channel category. +- :attr:`VoiceChannel.members` for fetching members connected to a voice channel. +- :attr:`TextChannel.members` for fetching members that can see the channel. +- :attr:`Role.members` for fetching members that have the role. +- :attr:`Guild.text_channels` for fetching text channels only. +- :attr:`Guild.voice_channels` for fetching voice channels only. +- :attr:`Guild.categories` for fetching channel categories only. +- :attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to. +- :meth:`Guild.by_category` to get channels grouped by their category. +- :attr:`Guild.chunked` to check member chunking status. +- :attr:`Guild.explicit_content_filter` to fetch the content filter. +- :attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding. +- :attr:`Client.users` to get all visible :class:`User` instances. +- :meth:`Client.get_user` to get a :class:`User` by ID. +- :meth:`User.avatar_url_as` to get an avatar in a specific size or format. +- :meth:`Guild.vanity_invite` to fetch the guild's vanity invite. +- :meth:`Guild.audit_logs` to fetch the guild's audit logs. +- :attr:`Message.webhook_id` to fetch the message's webhook ID. +- :attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information. +- :meth:`TextChannel.is_nsfw` to check if a text channel is NSFW. +- :meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple. +- :meth:`Guild.get_role` to get a role by its ID. + +.. _migrating_1_0_sending_messages: + +Sending Messages +------------------ + +One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` +functionality into a single method, :meth:`~abc.Messageable.send`. + +Basically: :: + + # before + await client.send_message(channel, 'Hello') + + # after + await channel.send('Hello') + +This supports everything that the old ``send_message`` supported such as embeds: :: + + e = discord.Embed(title='foo') + await channel.send('Hello', embed=e) + +There is a caveat with sending files however, as this functionality was expanded to support multiple +file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. :: + + # before + await client.send_file(channel, 'cool.png', filename='testing.png', content='Hello') + + # after + await channel.send('Hello', file=discord.File('cool.png', 'testing.png')) + +This change was to facilitate multiple file uploads: :: + + my_files = [ + discord.File('cool.png', 'testing.png'), + discord.File(some_fp, 'cool_filename.png'), + ] + + await channel.send('Your images:', files=my_files) + +.. _migrating_1_0_async_iter: + +Asynchronous Iterators +------------------------ + +Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+. + +In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called +:class:`AsyncIterator`. + +This allows you to iterate over it like normal: :: + + async for message in channel.history(): + print(message) + +Or turn it into a list: :: + + messages = await channel.history().flatten() + for message in messages: + print(message) + +A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as +:meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: :: + + async for m_id in channel.history().filter(lambda m: m.author == client.user).map(lambda m: m.id): + print(m_id) + +The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular +functions. + +You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via +:meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: :: + + my_last_message = await channel.history().get(author=client.user) + +The following return :class:`AsyncIterator`: + +- :meth:`abc.Messageable.history` +- :meth:`Guild.audit_logs` +- :meth:`Reaction.users` + +.. _migrating_1_0_event_changes: + +Event Changes +-------------- + +A lot of events have gone through some changes. + +Many events with ``server`` in the name were changed to use ``guild`` instead. + +Before: + +- ``on_server_join`` +- ``on_server_remove`` +- ``on_server_update`` +- ``on_server_role_create`` +- ``on_server_role_delete`` +- ``on_server_role_update`` +- ``on_server_emojis_update`` +- ``on_server_available`` +- ``on_server_unavailable`` + +After: + +- :func:`on_guild_join` +- :func:`on_guild_remove` +- :func:`on_guild_update` +- :func:`on_guild_role_create` +- :func:`on_guild_role_delete` +- :func:`on_guild_role_update` +- :func:`on_guild_emojis_update` +- :func:`on_guild_available` +- :func:`on_guild_unavailable` + + +The :func:`on_voice_state_update` event has received an argument change. + +Before: :: + + async def on_voice_state_update(before, after) + +After: :: + + async def on_voice_state_update(member, before, after) + +Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects. + +The :func:`on_guild_emojis_update` event has received an argument change. + +Before: :: + + async def on_guild_emojis_update(before, after) + +After: :: + + async def on_guild_emojis_update(guild, before, after) + +The first argument is now the :class:`Guild` that the emojis were updated from. + +The :func:`on_member_ban` event has received an argument change as well: + +Before: :: + + async def on_member_ban(member) + +After: :: + + async def on_member_ban(guild, user) + +As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have +:class:`User`, the :class:`Guild` is provided as the first parameter. + +The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`). + +Before: + +- ``on_channel_delete`` +- ``on_channel_create`` +- ``on_channel_update`` + +After: + +- :func:`on_guild_channel_delete` +- :func:`on_guild_channel_create` +- :func:`on_guild_channel_update` +- :func:`on_private_channel_delete` +- :func:`on_private_channel_create` +- :func:`on_private_channel_update` + +The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` +and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being +updated (i.e. :class:`DMChannel` and :class:`GroupChannel`). + +.. _migrating_1_0_voice: + +Voice Changes +--------------- + +Voice sending has gone through a complete redesign. + +In particular: + +- Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``. +- You no longer create players and operate on them (you no longer store them). +- You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`. +- There are different built-in :class:`AudioSource`\s. + + - :class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player`` + +- create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed. + + - The goal is to create :class:`AudioSource` instead. + +- Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``. + + - Instead, it's "flattened" like :class:`User` -> :class:`Member` is. + +- The ``after`` parameter now takes a single parameter (the error). + +Basically: + +Before: :: + + vc = await client.join_voice_channel(channel) + player = vc.create_ffmpeg_player('testing.mp3', after=lambda: print('done')) + player.start() + + player.is_playing() + player.pause() + player.resume() + player.stop() + # ... + +After: :: + + vc = await channel.connect() + vc.play(discord.FFmpegPCMAudio('testing.mp3'), after=lambda e: print('done', e)) + vc.is_playing() + vc.pause() + vc.resume() + vc.stop() + # ... + +With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is +playing at runtime via :attr:`VoiceClient.source`. + +For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: :: + + vc.source = discord.PCMVolumeTransformer(vc.source) + vc.source.volume = 0.6 + +An added benefit of the redesign is that it will be much more resilient towards reconnections: + +- The voice websocket will now automatically re-connect and re-do the handshake when disconnected. +- The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``. +- Audio will now stop and resume when a disconnect is found. + + - This includes changing voice regions etc. + + +.. _migrating_1_0_wait_for: + +Waiting For Events +-------------------- + +Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different +functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did +not allow you to wait for events outside of the ones provided by the library. + +In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`. + +For example, to wait for a message: :: + + # before + msg = await client.wait_for_message(author=message.author, channel=message.channel) + + # after + def pred(m): + return m.author == message.author and m.channel == message.channel + + msg = await client.wait_for('message', check=pred) + +To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of +arguments. + +For example, to wait for a reaction: :: + + reaction, user = await client.wait_for('reaction_add', check=lambda r, u: u.id == 176995180300206080) + + # use user and reaction + +Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` +when reached instead of setting the return to ``None``. For example: + +.. code-block:: python3 + + def pred(m): + return m.author == message.author and m.channel == message.channel + + try: + + msg = await client.wait_for('message', check=pred, timeout=60.0) + except asyncio.TimeoutError: + await channel.send('You took too long...') + else: + await channel.send('You said {0.content}, {0.author}.'.format(msg)) + +Upgraded Dependencies +----------------------- + +Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher. + +Since this is a backwards incompatible change, it is recommended that you see the +`changes `_ +and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in +:doc:`aiohttp `. + +Of the most significant for common users is the removal of helper functions such as: + +- ``aiohttp.get`` +- ``aiohttp.post`` +- ``aiohttp.delete`` +- ``aiohttp.patch`` +- ``aiohttp.head`` +- ``aiohttp.put`` +- ``aiohttp.request`` + +It is recommended that you create a session instead: :: + + async with aiohttp.ClientSession() as sess: + async with sess.get('url') as resp: + # work with resp + +Since it is better to not create a session for every request, you should store it in a variable and then call +``session.close`` on it when it needs to be disposed. + +Sharding +---------- + +The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen. + +If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`. + +This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC. + +It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection +logic and state handling. + +Usage is as simple as doing: :: + + client = discord.AutoShardedClient() + +instead of using :class:`Client`. + +This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds +per shard. + +If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. :: + + # launch 10 shards regardless + client = discord.AutoShardedClient(shard_count=10) + + # launch specific shard IDs in this process + client = discord.AutoShardedClient(shard_count=10, shard_ids=(1, 2, 5, 6)) + +For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly. + +Connection Improvements +------------------------- + +In v1.0, the auto reconnection logic has been powered up significantly. + +:meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls +the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going +offline or Discord going offline with exponential back-off. + +:meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not +need to specify it unless turning it off. + +.. _migrating_1_0_commands: + +Command Extension Changes +-------------------------- + +Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to +undergo some design changes as well. + +Context Changes +~~~~~~~~~~~~~~~~~ + +In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used. + +The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo: + +.. code-block:: python3 + + # before + @bot.command() + async def foo(): + await bot.say('Hello') + + # after + @bot.command() + async def foo(ctx): + await ctx.send('Hello') + +The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This +makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` +will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` +functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See +:ref:`migrating_1_0_removed_helpers` for more information. + +Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added: + +**New Shortcuts** + +- :attr:`ctx.author ` is a shortcut for ``ctx.message.author``. +- :attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``. +- :attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``. +- :attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``. +- :attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``. + +**New Functionality** + +- :meth:`.Context.reinvoke` to invoke a command again. + + - This is useful for bypassing cooldowns. +- :attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`. +- :meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system. + + - This is useful if you want to show the user help if they misused a command. + +Subclassing Context +++++++++++++++++++++ + +In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default +provided one. + +For example, if you want to add some functionality to the context: + +.. code-block:: python3 + + class MyContext(commands.Context): + @property + def secret(self): + return 'my secret here' + +Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with +:meth:`~ext.commands.Bot.invoke` to use your custom context: + +.. code-block:: python3 + + class MyBot(commands.Bot): + async def on_message(self, message): + ctx = await self.get_context(message, cls=MyContext) + await self.invoke(ctx) + +Now inside your commands you will have access to your custom context: + +.. code-block:: python3 + + @bot.command() + async def secret(ctx): + await ctx.send(ctx.secret) + +.. _migrating_1_0_removed_helpers: + +Removed Helpers ++++++++++++++++++ + +With the new :class:`.Context` changes, a lot of message sending helpers have been removed. + +For a full list of changes, see below: + ++-----------------+------------------------------------------------------------+ +| Before | After | ++-----------------+------------------------------------------------------------+ +| ``Bot.say`` | :meth:`.Context.send` | ++-----------------+------------------------------------------------------------+ +| ``Bot.upload`` | :meth:`.Context.send` | ++-----------------+------------------------------------------------------------+ +| ``Bot.whisper`` | ``ctx.author.send`` | ++-----------------+------------------------------------------------------------+ +| ``Bot.type`` | :meth:`.Context.typing` or :meth:`.Context.trigger_typing` | ++-----------------+------------------------------------------------------------+ +| ``Bot.reply`` | No replacement. | ++-----------------+------------------------------------------------------------+ + +Command Changes +~~~~~~~~~~~~~~~~~ + +As mentioned earlier, the first command change is that ``pass_context=True`` no longer +exists, so there is no need to pass this as a parameter. + +Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in +check. + +The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a +dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead. + +Command instances have gained new attributes and properties: + +1. :attr:`~ext.commands.Command.signature` to get the signature of the command. +2. :attr:`~.Command.usage`, an attribute to override the default signature. +3. :attr:`~.Command.root_parent` to get the root parent group of a subcommand. + +For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed: + +- Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases. + + - Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands. + +Check Changes +~~~~~~~~~~~~~~~ + +Prior to v1.0, :func:`~ext.commands.check`\s could only be synchronous. As of v1.0 checks can now be coroutines. + +Along with this change, a couple new checks were added. + +- :func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality. +- :func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID. + + - This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`. + - You can set the owner ID yourself by setting :attr:`.Bot.owner_id`. + +- :func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel. + + - This is powered by the new :meth:`TextChannel.is_nsfw` method. + +Event Changes +~~~~~~~~~~~~~~~ + +All command extension events have changed. + +Before: :: + + on_command(command, ctx) + on_command_completion(command, ctx) + on_command_error(error, ctx) + +After: :: + + on_command(ctx) + on_command_completion(ctx) + on_command_error(ctx, error) + +The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` +have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get +the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` +attribute. + +The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, +have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events +and commands. + +HelpFormatter and Help Command Changes +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command. + +The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``. + +The new interface allows the help command to be customised through special methods that can be overridden. + +- :meth:`.HelpCommand.send_bot_help` + - Called when the user requested for help with the entire bot. +- :meth:`.HelpCommand.send_cog_help` + - Called when the user requested for help with a specific cog. +- :meth:`.HelpCommand.send_group_help` + - Called when the user requested for help with a :class:`~.commands.Group` +- :meth:`.HelpCommand.send_command_help` + - Called when the user requested for help with a :class:`~.commands.Command` +- :meth:`.HelpCommand.get_destination` + - Called to know where to send the help messages. Useful for deciding whether to DM or not. +- :meth:`.HelpCommand.command_not_found` + - A function (or coroutine) that returns a presentable no command found string. +- :meth:`.HelpCommand.subcommand_not_found` + - A function (or coroutine) that returns a string when a subcommand is not found. +- :meth:`.HelpCommand.send_error_message` + - A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`. + - By default it just sends the message. But you can, for example, override it to put it in an embed. +- :meth:`.HelpCommand.on_help_command_error` + - The :ref:`error handler ` for the help command if you want to add one. +- :meth:`.HelpCommand.prepare_help_command` + - A coroutine that is called right before the help command processing is done. + +Certain subclasses can implement more customisable methods. + +The old ``HelpFormatter`` was replaced with :class:`~.commands.DefaultHelpCommand`\, which implements all of the logic of the old help command. The customisable methods can be found in the accompanying documentation. + +The library now provides a new more minimalistic :class:`~.commands.HelpCommand` implementation that doesn't take as much space, :class:`~.commands.MinimalHelpCommand`. The customisable methods can also be found in the accompanying documentation. + +A frequent request was if you could associate a help command with a cog. The new design allows for dynamically changing of cog through binding it to the :attr:`.HelpCommand.cog` attribute. After this assignment the help command will pretend to be part of the cog and everything should work as expected. When the cog is unloaded then the help command will be "unbound" from the cog. + +For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used. + +.. code-block:: python3 + + class MyHelpCommand(commands.MinimalHelpCommand): + def get_command_signature(self, command): + return '{0.clean_prefix}{1.qualified_name} {1.signature}'.format(self, command) + + class MyCog(commands.Cog): + def __init__(self, bot): + self._original_help_command = bot.help_command + bot.help_command = MyHelpCommand() + bot.help_command.cog = self + + def cog_unload(self): + self.bot.help_command = self._original_help_command + +For more information, check out the relevant :ref:`documentation `. + +Cog Changes +~~~~~~~~~~~~~ + +Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well. + +Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour. + +* :meth:`.Cog.cog_unload` + - This is called when a cog needs to do some cleanup, such as cancelling a task. +* :meth:`.Cog.bot_check_once` + - This registers a :meth:`.Bot.check_once` check. +* :meth:`.Cog.bot_check` + - This registers a regular :meth:`.Bot.check` check. +* :meth:`.Cog.cog_check` + - This registers a check that applies to every command in the cog. +* :meth:`.Cog.cog_command_error` + - This is a special error handler that is called whenever an error happens inside the cog. +* :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke` + - A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`. + +Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator. + +Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`. + +An example cog with every special method registered and a custom name is as follows: + +.. code-block:: python3 + + class MyCog(commands.Cog, name='Example Cog'): + def cog_unload(self): + print('cleanup goes here') + + def bot_check(self, ctx): + print('bot check') + return True + + def bot_check_once(self, ctx): + print('bot check once') + return True + + async def cog_check(self, ctx): + print('cog local check') + return await ctx.bot.is_owner(ctx.author) + + async def cog_command_error(self, ctx, error): + print('Error in {0.command.qualified_name}: {1}'.format(ctx, error)) + + async def cog_before_invoke(self, ctx): + print('cog local before: {0.command.qualified_name}'.format(ctx)) + + async def cog_after_invoke(self, ctx): + print('cog local after: {0.command.qualified_name}'.format(ctx)) + + @commands.Cog.listener() + async def on_message(self, message): + pass + + +.. _migrating_1_0_before_after_hook: + +Before and After Invocation Hooks +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is +run. + +They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine. + +They are on a global, per-cog, or per-command basis. + +Basically: :: + + + # global hooks: + + @bot.before_invoke + async def before_any_command(ctx): + # do something before a command is called + pass + + @bot.after_invoke + async def after_any_command(ctx): + # do something after a command is called + pass + +The after invocation is hook always called, **regardless of an error in the command**. This makes it ideal for some error +handling or clean up of certain resources such a database connection. + +The per-command registration is as follows: :: + + @bot.command() + async def foo(ctx): + await ctx.send('foo') + + @foo.before_invoke + async def before_foo_command(ctx): + # do something before the foo command is called + pass + + @foo.after_invoke + async def after_foo_command(ctx): + # do something after the foo command is called + pass + +The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.: + +.. code-block:: python3 + + class MyCog(commands.Cog): + async def cog_before_invoke(self, ctx): + ctx.secret_cog_data = 'foo' + + async def cog_after_invoke(self, ctx): + print('{0.command} is done...'.format(ctx)) + + @commands.command() + async def foo(self, ctx): + await ctx.send(ctx.secret_cog_data) + +To check if a command failed in the after invocation hook, you can use +:attr:`.Context.command_failed`. + +The invocation order is as follows: + +1. Command local before invocation hook +2. Cog local before invocation hook +3. Global before invocation hook +4. The actual command +5. Command local after invocation hook +6. Cog local after invocation hook +7. Global after invocation hook + +Converter Changes +~~~~~~~~~~~~~~~~~~~ + +Prior to v1.0, a converter was a type hint that could be a callable that could be invoked +with a singular argument denoting the argument passed by the user as a string. + +This system was eventually expanded to support a :class:`~ext.commands.Converter` system to +allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such +as the built-in "discord" converters. + +In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived +classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to +always be a coroutine and will now take the two arguments as parameters. + +Essentially, before: :: + + class MyConverter(commands.Converter): + def convert(self): + return self.ctx.message.server.me + +After: :: + + class MyConverter(commands.Converter): + async def convert(self, ctx, argument): + return ctx.me + +The command framework also got a couple new converters: + +- :class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions. +- :class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only. +- ``ChannelConverter`` is now split into two different converters. + + - :class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`. + - :class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`. diff --git a/docs/Python/html/_sources/migrating_to_async.rst.txt b/docs/Python/html/_sources/migrating_to_async.rst.txt new file mode 100644 index 00000000..a705f723 --- /dev/null +++ b/docs/Python/html/_sources/migrating_to_async.rst.txt @@ -0,0 +1,322 @@ +:orphan: + +.. currentmodule:: discord + +.. _migrating-to-async: + +Migrating to v0.10.0 +====================== + +v0.10.0 is one of the biggest breaking changes in the library due to massive +fundamental changes in how the library operates. + +The biggest major change is that the library has dropped support to all versions prior to +Python 3.4.2. This was made to support :mod:`asyncio`, in which more detail can be seen +:issue:`in the corresponding issue <50>`. To reiterate this, the implication is that +**python version 2.7 and 3.3 are no longer supported**. + +Below are all the other major changes from v0.9.0 to v0.10.0. + +Event Registration +-------------------- + +All events before were registered using :meth:`Client.event`. While this is still +possible, the events must be decorated with ``@asyncio.coroutine``. + +Before: + +.. code-block:: python3 + + @client.event + def on_message(message): + pass + +After: + +.. code-block:: python3 + + @client.event + @asyncio.coroutine + def on_message(message): + pass + +Or in Python 3.5+: + +.. code-block:: python3 + + @client.event + async def on_message(message): + pass + +Because there is a lot of typing, a utility decorator (:meth:`Client.async_event`) is provided +for easier registration. For example: + +.. code-block:: python3 + + @client.async_event + def on_message(message): + pass + + +Be aware however, that this is still a coroutine and your other functions that are coroutines must +be decorated with ``@asyncio.coroutine`` or be ``async def``. + +Event Changes +-------------- + +Some events in v0.9.0 were considered pretty useless due to having no separate states. The main +events that were changed were the ``_update`` events since previously they had no context on what +was changed. + +Before: + +.. code-block:: python3 + + def on_channel_update(channel): pass + def on_member_update(member): pass + def on_status(member): pass + def on_server_role_update(role): pass + def on_voice_state_update(member): pass + def on_socket_raw_send(payload, is_binary): pass + + +After: + +.. code-block:: python3 + + def on_channel_update(before, after): pass + def on_member_update(before, after): pass + def on_server_role_update(before, after): pass + def on_voice_state_update(before, after): pass + def on_socket_raw_send(payload): pass + +Note that ``on_status`` was removed. If you want its functionality, use :func:`on_member_update`. +See :ref:`discord-api-events` for more information. Other removed events include ``on_socket_closed``, ``on_socket_receive``, and ``on_socket_opened``. + + +Coroutines +----------- + +The biggest change that the library went through is that almost every function in :class:`Client` +was changed to be a `coroutine `_. Functions +that are marked as a coroutine in the documentation must be awaited from or yielded from in order +for the computation to be done. For example... + +Before: + +.. code-block:: python3 + + client.send_message(message.channel, 'Hello') + +After: + +.. code-block:: python3 + + yield from client.send_message(message.channel, 'Hello') + + # or in python 3.5+ + await client.send_message(message.channel, 'Hello') + +In order for you to ``yield from`` or ``await`` a coroutine then your function must be decorated +with ``@asyncio.coroutine`` or ``async def``. + +Iterables +---------- + +For performance reasons, many of the internal data structures were changed into a dictionary to support faster +lookup. As a consequence, this meant that some lists that were exposed via the API have changed into iterables +and not sequences. In short, this means that certain attributes now only support iteration and not any of the +sequence functions. + +The affected attributes are as follows: + +- :attr:`Client.servers` +- :attr:`Client.private_channels` +- :attr:`Server.channels` +- :attr:`Server.members` + +Some examples of previously valid behaviour that is now invalid + +.. code-block:: python3 + + if client.servers[0].name == "test": + # do something + +Since they are no longer :obj:`list`\s, they no longer support indexing or any operation other than iterating. +In order to get the old behaviour you should explicitly cast it to a list. + +.. code-block:: python3 + + servers = list(client.servers) + # work with servers + +.. warning:: + + Due to internal changes of the structure, the order you receive the data in + is not in a guaranteed order. + +Enumerations +------------ + +Due to dropping support for versions lower than Python 3.4.2, the library can now use +:doc:`py:library/enum` in places where it makes sense. + +The common places where this was changed was in the server region, member status, and channel type. + +Before: + +.. code-block:: python3 + + server.region == 'us-west' + member.status == 'online' + channel.type == 'text' + +After: + +.. code-block:: python3 + + server.region == discord.ServerRegion.us_west + member.status = discord.Status.online + channel.type == discord.ChannelType.text + +The main reason for this change was to reduce the use of finicky strings in the API as this +could give users a false sense of power. More information can be found in the :ref:`discord-api-enums` page. + +Properties +----------- + +A lot of function calls that returned constant values were changed into Python properties for ease of use +in format strings. + +The following functions were changed into properties: + ++----------------------------------------+--------------------------------------+ +| Before | After | ++----------------------------------------+--------------------------------------+ +| ``User.avatar_url()`` | :attr:`User.avatar_url` | ++----------------------------------------+--------------------------------------+ +| ``User.mention()`` | :attr:`User.mention` | ++----------------------------------------+--------------------------------------+ +| ``Channel.mention()`` | :attr:`Channel.mention` | ++----------------------------------------+--------------------------------------+ +| ``Channel.is_default_channel()`` | :attr:`Channel.is_default` | ++----------------------------------------+--------------------------------------+ +| ``Role.is_everyone()`` | :attr:`Role.is_everyone` | ++----------------------------------------+--------------------------------------+ +| ``Server.get_default_role()`` | :attr:`Server.default_role` | ++----------------------------------------+--------------------------------------+ +| ``Server.icon_url()`` | :attr:`Server.icon_url` | ++----------------------------------------+--------------------------------------+ +| ``Server.get_default_channel()`` | :attr:`Server.default_channel` | ++----------------------------------------+--------------------------------------+ +| ``Message.get_raw_mentions()`` | :attr:`Message.raw_mentions` | ++----------------------------------------+--------------------------------------+ +| ``Message.get_raw_channel_mentions()`` | :attr:`Message.raw_channel_mentions` | ++----------------------------------------+--------------------------------------+ + +Member Management +------------------- + +Functions that involved banning and kicking were changed. + ++--------------------------------+--------------------------+ +| Before | After | ++--------------------------------+--------------------------+ +| ``Client.ban(server, user)`` | ``Client.ban(member)`` | ++--------------------------------+--------------------------+ +| ``Client.kick(server, user)`` | ``Client.kick(member)`` | ++--------------------------------+--------------------------+ + +.. migrating-renames: + +Renamed Functions +------------------- + +Functions have been renamed. + ++------------------------------------+-------------------------------------------+ +| Before | After | ++------------------------------------+-------------------------------------------+ +| ``Client.set_channel_permissions`` | :meth:`Client.edit_channel_permissions` | ++------------------------------------+-------------------------------------------+ + +All the :class:`Permissions` related attributes have been renamed and the `can_` prefix has been +dropped. So for example, ``can_manage_messages`` has become ``manage_messages``. + +Forced Keyword Arguments +------------------------- + +Since 3.0+ of Python, we can now force questions to take in forced keyword arguments. A keyword argument is when you +explicitly specify the name of the variable and assign to it, for example: ``foo(name='test')``. Due to this support, +some functions in the library were changed to force things to take said keyword arguments. This is to reduce errors of +knowing the argument order and the issues that could arise from them. + +The following parameters are now exclusively keyword arguments: + +- :meth:`Client.send_message` + - ``tts`` +- :meth:`Client.logs_from` + - ``before`` + - ``after`` +- :meth:`Client.edit_channel_permissions` + - ``allow`` + - ``deny`` + +In the documentation you can tell if a function parameter is a forced keyword argument if it is after ``\*,`` +in the function signature. + +.. _migrating-running: + +Running the Client +-------------------- + +In earlier versions of discord.py, ``client.run()`` was a blocking call to the main thread +that called it. In v0.10.0 it is still a blocking call but it handles the event loop for you. +However, in order to do that you must pass in your credentials to :meth:`Client.run`. + +Basically, before: + +.. code-block:: python3 + + client.login('token') + client.run() + +After: + +.. code-block:: python3 + + client.run('token') + +.. warning:: + + Like in the older ``Client.run`` function, the newer one must be the one of + the last functions to call. This is because the function is **blocking**. Registering + events or doing anything after :meth:`Client.run` will not execute until the function + returns. + +This is a utility function that abstracts the event loop for you. There's no need for +the run call to be blocking and out of your control. Indeed, if you want control of the +event loop then doing so is quite straightforward: + +.. code-block:: python3 + + import discord + import asyncio + + client = discord.Client() + + @asyncio.coroutine + def main_task(): + yield from client.login('token') + yield from client.connect() + + loop = asyncio.get_event_loop() + try: + loop.run_until_complete(main_task()) + except: + loop.run_until_complete(client.logout()) + finally: + loop.close() + + + diff --git a/docs/Python/html/_sources/quickstart.rst.txt b/docs/Python/html/_sources/quickstart.rst.txt new file mode 100644 index 00000000..8b3daeb2 --- /dev/null +++ b/docs/Python/html/_sources/quickstart.rst.txt @@ -0,0 +1,79 @@ +:orphan: + +.. _quickstart: + +.. currentmodule:: discord + +Quickstart +============ + +This page gives a brief introduction to the library. It assumes you have the library installed, +if you don't check the :ref:`installing` portion. + +A Minimal Bot +--------------- + +Let's make a bot that responds to a specific message and walk you through it. + +It looks something like this: + +.. code-block:: python3 + + import discord + + client = discord.Client() + + @client.event + async def on_ready(): + print(f'We have logged in as {client.user}') + + @client.event + async def on_message(message): + if message.author == client.user: + return + + if message.content.startswith('$hello'): + await message.channel.send('Hello!') + + client.run('your token here') + +Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict +with the library. + +There's a lot going on here, so let's walk you through it step by step. + +1. The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` + then head on over to :ref:`installing` section to properly install. +2. Next, we create an instance of a :class:`Client`. This client is our connection to Discord. +3. We then use the :meth:`Client.event` decorator to register an event. This library has many events. + Since this library is asynchronous, we do things in a "callback" style manner. + + A callback is essentially a function that is called when something happens. In our case, + the :func:`on_ready` event is called when the bot has finished logging in and setting things + up and the :func:`on_message` event is called when the bot has received a message. +4. Since the :func:`on_message` event triggers for *every* message received, we have to make + sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` + is the same as the :attr:`Client.user`. +5. Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, + then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of + handling commands, which can be later automated with the :doc:`./ext/commands/index` framework. +6. Finally, we run the bot with our login token. If you need help getting your token or creating a bot, + look in the :ref:`discord-intro` section. + + +Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a +Python script, we can run it directly. + +On Windows: + +.. code-block:: shell + + $ py -3 example_bot.py + +On other systems: + +.. code-block:: shell + + $ python3 example_bot.py + +Now you can try playing around with your basic bot. diff --git a/docs/Python/html/_sources/version_guarantees.rst.txt b/docs/Python/html/_sources/version_guarantees.rst.txt new file mode 100644 index 00000000..7909bd6b --- /dev/null +++ b/docs/Python/html/_sources/version_guarantees.rst.txt @@ -0,0 +1,30 @@ +.. _version_guarantees: + +Version Guarantees +===================== + +The library follows a `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't. + +The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented. + +.. note:: + + The examples below are non-exhaustive. + +Examples of Breaking Changes +------------------------------ + +- Changing the default parameter value to something else. +- Renaming a function without an alias to an old function. +- Adding or removing parameters to an event. + +Examples of Non-Breaking Changes +---------------------------------- + +- Adding or removing private underscored attributes. +- Adding an element into the ``__slots__`` of a data class. +- Changing the behaviour of a function to fix a bug. +- Changes in the documentation. +- Modifying the internal HTTP handling. +- Upgrading the dependencies to a new version, major or otherwise. + diff --git a/docs/Python/html/_sources/whats_new.rst.txt b/docs/Python/html/_sources/whats_new.rst.txt new file mode 100644 index 00000000..bc283d22 --- /dev/null +++ b/docs/Python/html/_sources/whats_new.rst.txt @@ -0,0 +1,1315 @@ +.. currentmodule:: discord + +.. |commands| replace:: [:ref:`ext.commands `] +.. |tasks| replace:: [:ref:`ext.tasks `] + +.. _whats_new: + +Changelog +============ + +This page keeps a detailed human friendly rendering of what's new and changed +in specific versions. + +.. _vp2p0p0: + +v2.0.0 +-------- + +This version was partly developed by Danny, and partly by the enhanced-discord.py contributors. +The library has been updated with breaking changes, and as such the major version was changed. + + +- Performance of the library has improved significantly (all times with 1 process and 1 AutoShardedBot): + - 735 guilds boot up time (with chunking): 57s/1.7 GiB RAM -> 42s/1.4 GiB RAM + - 27k guilds boot up time (with chunking): 477s/8 GiB RAM -> 303s/7.2 GiB RAM + - 48k guilds boot up time (without chunking): 109s -> 67s + - 106k guilds boot up time (without chunking): 3300s -> 3090s +- The entire public API of the library is now completely type hinted. + - There may still be bugs however. + - For best type hinting experience consider using Pyright. +- Almost all edit methods now return their updated counterpart rather than doing an in-place edit. +- Japanese docs were removed, as we are no longer able to keep them in sync. + + +Breaking Changes +~~~~~~~~~~~~~~~~~ + +- :meth:`Asset.replace` now only accepts keyword arguments +- ``Asset.with_`` functions now only accept positional only arguments +- :meth:`TextChannel.get_partial_message` is now pos-only +- :meth:`TextChannel.get_thread` is now pos-only +- ``permissions_for`` is now pos-only +- :attr:`GroupChannel.owner` is now Optional +- ``edit`` methods now only accept None if it actually means something (e.g. clearing it) +- ``timeout`` parameter for ``ui.View.__init__`` is now keyword only +- When an interaction has already been responded and another one is sent, :exc:`InteractionResponded` is now raised. + - Discord's API only allows a single :attr:`interaction.response`. +- Separate :func:`on_member_update` and :func:`on_presence_update` + - The new event :func:`on_presence_update` is now called when status/activity is changed. + - :func:`on_member_update` will now no longer have status/activity changes. +- afk parameter in :meth:`Client.change_presence` is removed +- The undocumented private :func:`on_socket_response` event got removed. + - Consider using the newer documented :func:`on_socket_event_type` event instead. +- Using :func:`on_socket_raw_receive` and :func:`on_socket_raw_send` are now opt-in via :attr:`enable_debug_events` toggle. +- :func:`on_socket_raw_receive` is now only dispatched after decompressing the payload. +- Persistent View dispatch mechanism now uses the ``message_id`` key if provided. +- :meth:`Message.start_thread` was renamed to :meth:`Message.create_thread` +- :meth:`TextChannel.start_thread` was renamed to :meth:`TextChannel.create_thread` +- All ``get_`` lookup functions now use positional-only parameters for the id parameter. +- Remove :meth:`TextChannel.active_threads` due to the endpoint being deprecated and slated for removal. + - Use :meth:`Guild.active_threads` instead. +- :attr:`User.avatar` now returns None if the user did not upload an avatar. + - Use :attr:`User.display_avatar` to get the avatar and fallback to the default avatar to go back to the old behaviour. + +New Features +~~~~~~~~~~~~~~ + +- Channel types are now typed +- Member is now typed +- Client is now typed +- Permissions are now typed +- Core library errors are now typed +- Add various examples showing how to use views. There are more to come. +- :attr:`GroupChannel.owner_id` now gets the owner ID +- ``edit`` methods now don't rely on previous state +- :meth:`View.from_message` converts a Message.components to a View +- :attr:`Thread.type` to get the thread channel type +- :attr:`ButtonStyle.url` alias for :attr:`ButtonStyle.link` +- Add default style for :class:`ui.Button` constructor + - This makes it so creating a URL button is as simple as ``ui.Button(url='...', label='...')`` +- :attr:`Thread.mention` to get the mention string for a thread +- :meth:`Thread.is_nsfw` to check whether the parent channel of the thread is NSFW +- Add support for fetching the original interaction response message. + - :meth:`Interaction.original_message` will retrieve it and returns an InteractionMessage + - :meth:`InteractionMessage.edit` or :meth:`Interaction.edit_original_message` will edit it + - :meth:`InteractionMessage.delete` or :meth:`Interaction.delete_original_message` will delete it +- :attr:`MessageFlags.ephemeral` to get whether a message is ephemeral +- :meth:`Client.fetch_channel` now fetches threads as well +- :class:`SelectOption` now has a __str__ that matches the client representation. + - This might change in the future to remove the description from it. +- Add a converter for :class:`discord.Thread` +- Allow ``clean_content`` converter to work stand-alone +- Add :meth:`User.banner` to get a user's banner and :meth:`User.accent_colour` to get the set banner colour. + - Due to an API limitation this requires using :meth:`Client.fetch_user`. +- Add ``reason`` keyword argument to more methods +- Add audit log events for threads +- Allow public threads to be created without a starter message +- Add :meth:`Guild.get_channel_or_thread` helper method +- Add full support for the new sticker API +- Add :func:`on_socket_event_type` event to get the event type of an event +- Add :attr:`TextChannel.default_auto_archive_duration` +- Add :class:`PartialMessageable` type to allow for sending messages to a channel using only its ``channel_id``. + - This is constructed with :meth:`Client.get_partial_messageable`. +- Add :meth:`Guild.active_threads` to get all of a guild's active threads. +- Add :attr:`Thread.members` to get all cached :class:`ThreadMember` instances of a thread. +- Add :meth:`Thread.fetch_members` to fetch all :class:`ThreadMember` instances of a thread. + - These two require :attr:`Intents.members` to be useful. +- Add support for guild avatars for members under :attr:`Member.guild_avatar` +- Add :attr:`User.display_avatar` and :attr:`Member.display_avatar` to get the user's displayed avatar. +- Add :attr:`Colour.brand_green` and :attr:`Colour.brand_red` +- |commands| :attr:`CommandOnCooldown.type` to get back the type of the cooldown since it was removed from :class:`Cooldown` +- Add :attr:`Guild.bots` and :attr:`Guild.humans` + + +Bug Fixes +~~~~~~~~~~~ + +- :class:`Channel` converters now work in DMs again +- Fix :attr:`Interaction.channel` being None in threads +- Change timeouts in :class:`ui.View` to work as documented +- :attr:`Message.__repr__` now shows the proper type, e.g. :class:`WebhookMessage` and :class:`InteractionMessage` +- Change :class:`Cooldown` handling to not reset token window when the number of tokens reaches 0 +- Fix audit log permission construction breaking due to unexpected type errors. +- Fix :func:`on_thread_join` not dispatching when a thread is unarchived +- Fix :attr:`Message.guild` being None when a thread is unarchived due to a new message +- :class:`MessageConverter` now works with threads +- Retry requests when a 504 is hit +- Fix :attr:`Thread.slowmode_delay` not updating on edit +- Fix ``permissions_for`` for roles +- Update :attr:`Message.system_content` for newer message types +- Fix :class:`PartialMessage` not working with threads +- Fix crash with stage instances not having the documented ``discoverable_enabled`` key +- Fix some built-in checks not working with threads +- Fix :class:`SyncWebhook` not working in a multi-threaded context +- Fix :func:`on_thread_member_remove` not dispatching properly +- Fix :func:`on_typing` not dispatching for threads +- Update :attr:`Message.is_system` to work with newer message types +- Fix some enums like :class:`VerificationLevel` not being comparable. +- Fix ``io.BytesIO`` sources not working with ffmpeg players +- Fix :meth:`Client.fetch_channel` and :meth:`Guild.fetch_channel` not returning threads + +.. _vp1p7p3: + +v1.7.3 +-------- + +Bug Fixes +~~~~~~~~~~ + +- Fix a crash involving guild uploaded stickers +- Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set. + +.. _vp1p7p2: + +v1.7.2 +------- + +Bug Fixes +~~~~~~~~~~~ + +- Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:issue:`6726`) +- Fix :meth:`Guild.chunk` hanging when the user left the guild. (:issue:`6730`) +- Fix loop sleeping after final iteration rather than before (:issue:`6744`) + +.. _vp1p7p1: + +v1.7.1 +------- + +Bug Fixes +~~~~~~~~~~~ + +- |commands| Fix :meth:`Cog.has_error_handler ` not working as intended. + +.. _vp1p7p0: + +v1.7.0 +-------- + +This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. +Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. +Likewise, **this is the last version to support user bots**. + +Development of v2.0 will have breaking changes and support for newer API features. + +New Features +~~~~~~~~~~~~~~ + +- Add support for stage channels via :class:`StageChannel` (:issue:`6602`, :issue:`6608`) +- Add support for :attr:`MessageReference.fail_if_not_exists` (:issue:`6484`) + - By default, if the message you're replying to doesn't exist then the API errors out. + This attribute tells the Discord API that it's okay for that message to be missing. + +- Add support for Discord's new permission serialisation scheme. +- Add an easier way to move channels using :meth:`abc.GuildChannel.move` +- Add :attr:`Permissions.use_slash_commands` +- Add :attr:`Permissions.request_to_speak` +- Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:issue:`6606`) +- Add support for :meth:`PartialEmoji.url_as` (:issue:`6341`) +- Add :attr:`MessageReference.jump_url` (:issue:`6318`) +- Add :attr:`File.spoiler` (:issue:`6317`) +- Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:issue:`6538`) +- Allow callable class factories to be used in :meth:`abc.Connectable.play` (:issue:`6478`) +- Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:issue:`2539`, :issue:`6444`) +- :meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:issue:`6309`) +- Add :attr:`RawMessageUpdateEvent.guild_id` (:issue:`6489`) +- :class:`AuditLogEntry` is now hashable (:issue:`6495`) +- :class:`Attachment` is now hashable +- Add :attr:`Attachment.content_type` attribute (:issue:`6618`) +- Add support for casting :class:`Attachment` to :class:`str` to get the URL. +- Add ``seed`` parameter for :class:`Colour.random` (:issue:`6562`) + - This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`. + +- Add a :func:`utils.remove_markdown` helper function (:issue:`6573`) +- Add support for passing scopes to :func:`utils.oauth_url` (:issue:`6568`) +- |commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:issue:`6374`) +- |commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:issue:`6603`) +- |commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter. +- |commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:issue:`1874`, :issue:`6462`) +- |commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:issue:`6308`) +- |commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:issue:`6016`, :issue:`6365`) +- |commands| Add :meth:`Command.has_error_handler ` + - This is also adds :meth:`Cog.has_error_handler ` +- |commands| Allow callable types to act as a bucket key for cooldowns (:issue:`6563`) +- |commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:issue:`5975`) +- |commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:issue:`2008`, :issue:`6446`) +- |commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:issue:`2465`, :issue:`6445`) + +Bug Fixes +~~~~~~~~~~ + +- Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:issue:`6192`, :issue:`6458`) +- Fix user created instances of :class:`CustomActivity` triggering an error (:issue:`4049`) + - Note that currently, bot users still cannot set a custom activity due to a Discord limitation. +- Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:issue:`6430`, :issue:`6436`) +- Fix :attr:`User.public_flags` not updating upon edit (:issue:`6315`) +- Fix :attr:`Message.call` sometimes causing attribute errors (:issue:`6390`) +- Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:issue:`6531`) +- Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members` +- Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable. +- Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:issue:`6602`) +- :class:`Embed` constructor parameters now implicitly convert to :class:`str` (:issue:`6574`) +- Ensure ``discord`` package is only run if executed as a script (:issue:`6483`) +- |commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure. +- |commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:issue:`5154`) +- |commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:issue:`6451`, :issue:`6462`) +- |commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:issue:`6316`) +- |commands| Properly handle positional-only parameters in bot command signatures (:issue:`6431`) +- |commands| Group signatures now properly show up in :attr:`Command.signature ` (:issue:`6529`, :issue:`6530`) + +Miscellaneous +~~~~~~~~~~~~~~ + +- User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library. +- :class:`Permission` class methods were updated to match the UI of the Discord client (:issue:`6476`) +- ``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:issue:`6313`) + +.. _vp1p6p0: + +v1.6.0 +-------- + +This version comes with support for replies and stickers. + +New Features +~~~~~~~~~~~~~~ + +- An entirely redesigned documentation. This was the cumulation of multiple months of effort. + - There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic. +- Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:issue:`5888`) +- Add :meth:`Colour.random` to get a random colour (:issue:`6067`) +- Add support for stickers via :class:`Sticker` (:issue:`5946`) +- Add support for replying via :meth:`Message.reply` (:issue:`6061`) + - This also comes with the :attr:`AllowedMentions.replied_user` setting. + - :meth:`abc.Messageable.send` can now accept a :class:`MessageReference`. + - :class:`MessageReference` can now be constructed by users. + - :meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`. +- Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`. +- Add support for role tags. + - :attr:`Guild.premium_subscriber_role` to get the "Nitro Booster" role (if available). + - :attr:`Guild.self_role` to get the bot's own role (if available). + - :attr:`Role.tags` to get the role's tags. + - :meth:`Role.is_premium_subscriber` to check if a role is the "Nitro Booster" role. + - :meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots). + - :meth:`Role.is_integration` to check if a role is role created by an integration. +- Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited. + - :meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard. +- Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:issue:`6100`, :issue:`6082`) +- Add :attr:`PartialEmoji.created_at` (:issue:`6128`) +- Add support for editing and deleting webhook sent messages (:issue:`6058`) + - This adds :class:`WebhookMessage` as well to power this behaviour. +- Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:issue:`5905`) + - This is useful if you don't want to incur an extra API call to fetch the message. +- Add :meth:`Emoji.url_as` (:issue:`6162`) +- Add support for :attr:`Member.pending` for the membership gating feature. +- Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:issue:`6195`) +- Add support for ``presences`` in :meth:`Guild.query_members` (:issue:`2354`) +- |commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:issue:`6028`) +- |tasks| Add support for calling the wrapped coroutine as a function via ``__call__``. + + +Bug Fixes +~~~~~~~~~~~ + +- Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:issue:`6044`) +- Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:issue:`5986`) +- Fix errors when playing audio and moving to another channel (:issue:`5953`) +- Fix :exc:`AttributeError` when voice channels disconnect too fast (:issue:`6039`) +- Fix stale :class:`User` references when the members intent is off. +- Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is. +- Fix :attr:`Message.author` being overwritten in certain cases during message update. + - This would previously make it so :attr:`Message.author` is a :class:`User`. +- Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:issue:`6093`) +- Fix uninitialised :attr:`CustomActivity.created_at` (:issue:`6095`) +- |commands| Errors during cog unload no longer stops module cleanup (:issue:`6113`) +- |commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:issue:`6217`) + +Miscellaneous +~~~~~~~~~~~~~~~ + +- ``ffmpeg`` spawned processes no longer open a window in Windows (:issue:`6038`) +- Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:issue:`5984`, :issue:`5970`) +- Fix docstring issue leading to a SyntaxError in 3.9 (:issue:`6153`) +- Update Windows opus binaries from 1.2.1 to 1.3.1 (:issue:`6161`) +- Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:issue:`6195`) +- |commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:issue:`6002`) +- |commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached. +- |commands| :func:`max_concurrency ` is now called before cooldowns (:issue:`6172`) + +.. _vp1p5p1: + +v1.5.1 +------- + +Bug Fixes +~~~~~~~~~~~ + +- Fix :func:`utils.escape_markdown` not escaping quotes properly (:issue:`5897`) +- Fix :class:`Message` not being hashable (:issue:`5901`, :issue:`5866`) +- Fix moving channels to the end of the channel list (:issue:`5923`) +- Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:issue:`5929`) +- Fix aliases showing up in ``__iter__`` for :class:`Intents` (:issue:`5945`) +- Fix the bot disconnecting from voice when moving them to another channel (:issue:`5904`) +- Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching. +- Ensure that the bot's own member is not evicted from the cache (:issue:`5949`) + +Miscellaneous +~~~~~~~~~~~~~~ + +- Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:issue:`5930`) +- |commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache. + - This is the same as having ``discord.Member`` as the type-hint. +- :meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests. + +.. _vp1p5p0: + +v1.5.0 +-------- + +This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`. + +API Changes +~~~~~~~~~~~~~ + +- Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info. +- As a consequence, fetching offline members is disabled if the members intent is not enabled. + +New Features +~~~~~~~~~~~~~~ + +- Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`. +- Add :attr:`VoiceRegion.south_korea` (:issue:`5233`) +- Add support for ``__eq__`` for :class:`Message` (:issue:`5789`) +- Add :meth:`Colour.dark_theme` factory method (:issue:`1584`) +- Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:issue:`5785`) +- Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:issue:`5797`) +- Implement :class:`VoiceProtocol` to better intersect the voice flow. +- Add :meth:`Guild.chunk` to fully chunk a guild. +- Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info. +- Add support for :attr:`ActivityType.competing` (:issue:`5823`) + - This seems currently unused API wise. + +- Add support for message references, :attr:`Message.reference` (:issue:`5754`, :issue:`5832`) +- Add alias for :class:`ColourConverter` under ``ColorConverter`` (:issue:`5773`) +- Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:issue:`5849`) +- |commands| Add support for ``require_var_positional`` for :class:`Command` (:issue:`5793`) + +Bug Fixes +~~~~~~~~~~ + +- Fix issue with :meth:`Guild.by_category` not showing certain channels. +- Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:issue:`5772`) +- Fix handling of cloudflare bans on webhook related requests (:issue:`5221`) +- Fix cases where a keep-alive thread would ack despite already dying (:issue:`5800`) +- Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:issue:`5819`) +- Fix ``allowed_mentions`` not being sent when sending a single file (:issue:`5835`) +- Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:issue:`5756`, :issue:`5757`) +- |commands| Fix exceptions being raised improperly in command invoke hooks (:issue:`5799`) +- |commands| Fix commands not being properly ejected during errors in a cog injection (:issue:`5804`) +- |commands| Fix cooldown timing ignoring edited timestamps. +- |tasks| Fix tasks extending the next iteration on handled exceptions (:issue:`5762`, :issue:`5763`) + +Miscellaneous +~~~~~~~~~~~~~~~ + +- Webhook requests are now logged (:issue:`5798`) +- Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards. +- Gateway rate limits are now handled. +- Warnings logged due to missed caches are now changed to DEBUG log level. +- Some strings are now explicitly interned to reduce memory usage. +- Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:issue:`5834`) +- |commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:issue:`5748`) +- |tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:issue:`5808`) + +.. _vp1p4p2: + +v1.4.2 +-------- + +This is a maintenance release with backports from :ref:`vp1p5p0`. + +Bug Fixes +~~~~~~~~~~~ + +- Fix issue with :meth:`Guild.by_category` not showing certain channels. +- Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:issue:`5772`) +- Fix handling of cloudflare bans on webhook related requests (:issue:`5221`) +- Fix cases where a keep-alive thread would ack despite already dying (:issue:`5800`) +- Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:issue:`5819`) +- Fix ``allowed_mentions`` not being sent when sending a single file (:issue:`5835`) +- Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:issue:`5756`, :issue:`5757`) +- |commands| Fix exceptions being raised improperly in command invoke hooks (:issue:`5799`) +- |commands| Fix commands not being properly ejected during errors in a cog injection (:issue:`5804`) +- |commands| Fix cooldown timing ignoring edited timestamps. +- |tasks| Fix tasks extending the next iteration on handled exceptions (:issue:`5762`, :issue:`5763`) + +Miscellaneous +~~~~~~~~~~~~~~~ + +- Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards. +- |tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:issue:`5808`) + +.. _vp1p4p1: + +v1.4.1 +-------- + +Bug Fixes +~~~~~~~~~~~ + +- Properly terminate the connection when :meth:`Client.close` is called (:issue:`5207`) +- Fix error being raised when clearing embed author or image when it was already cleared (:issue:`5210`, :issue:`5212`) +- Fix ``__path__`` to allow editable extensions (:issue:`5213`) + +.. _vp1p4p0: + +v1.4.0 +-------- + +Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience! + +New Features +~~~~~~~~~~~~~~ + +- Add support for :class:`AllowedMentions` to have more control over what gets mentioned. + - This can be set globally through :attr:`Client.allowed_mentions` + - This can also be set on a per message basis via :meth:`abc.Messageable.send` + +- :class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:issue:`2654`) + - Add :class:`ShardInfo` which allows fetching specific information about a shard. + - The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well. + - Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards. + - Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits. + - Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done. + - Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`. + +- Add support for guild templates (:issue:`2652`) + - This adds :class:`Template` to read a template's information. + - :meth:`Client.fetch_template` can be used to fetch a template's information from the API. + - :meth:`Client.create_guild` can now take an optional template to base the creation from. + - Note that fetching a guild's template is currently restricted for bot accounts. + +- Add support for guild integrations (:issue:`2051`, :issue:`1083`) + - :class:`Integration` is used to read integration information. + - :class:`IntegrationAccount` is used to read integration account information. + - :meth:`Guild.integrations` will fetch all integrations in a guild. + - :meth:`Guild.create_integration` will create an integration. + - :meth:`Integration.edit` will edit an existing integration. + - :meth:`Integration.delete` will delete an integration. + - :meth:`Integration.sync` will sync an integration. + - There is currently no support in the audit log for this. + +- Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:issue:`2650`) +- Add various grey to gray aliases for :class:`Colour` (:issue:`5130`) +- Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:issue:`2535`) +- Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:issue:`2577`, :issue:`4095`) +- Add ``position`` parameter support to :meth:`Guild.create_category` (:issue:`2623`) +- Allow passing ``int`` for the colour in :meth:`Role.edit` (:issue:`4057`) +- Add :meth:`Embed.remove_author` to clear author information from an embed (:issue:`4068`) +- Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:issue:`4053`) +- Add :attr:`Guild.max_video_channel_users` (:issue:`4120`) +- Add :attr:`Guild.public_updates_channel` (:issue:`4120`) +- Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:issue:`4112`) +- Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:issue:`3999`) +- Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:issue:`4121`) +- Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:issue:`2501`, :issue:`2143`) +- Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:issue:`5088`) +- Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:issue:`4180`, :issue:`4181`) +- Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:issue:`4180`, :issue:`4181`) +- Add support for ``user_ids`` in :meth:`Guild.query_members` +- Add support for pruning members by roles in :meth:`Guild.prune_members` (:issue:`4043`) +- |commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:issue:`1986`, :issue:`2502`) +- |commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:issue:`5195`) +- |commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:issue:`5197`) +- |tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:issue:`2540`) +- |tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:issue:`2621`) + + +Bug Fixes +~~~~~~~~~~~~ + +- Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:issue:`4015`, :issue:`4016`) +- Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:issue:`4019`) +- Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:issue:`4021`) +- Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:issue:`4002`) +- Fix :meth:`Guild.edit` not allowing editing of notification settings (:issue:`4074`, :issue:`4047`) +- Fix crash when the guild widget contains channels that aren't in the payload (:issue:`4114`, :issue:`4115`) +- Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:issue:`4036`) +- Fix :func:`utils.escape_markdown` not escaping masked links (:issue:`4206`, :issue:`4207`) +- Fix reconnect loop due to failed handshake on region change (:issue:`4210`, :issue:`3996`) +- Fix :meth:`Guild.by_category` not returning empty categories (:issue:`4186`) +- Fix certain JPEG images not being identified as JPEG (:issue:`5143`) +- Fix a crash when an incomplete guild object is used when fetching reaction information (:issue:`5181`) +- Fix a timeout issue when fetching members using :meth:`Guild.query_members` +- Fix an issue with domain resolution in voice (:issue:`5188`, :issue:`5191`) +- Fix an issue where :attr:`PartialEmoji.id` could be a string (:issue:`4153`, :issue:`4152`) +- Fix regression where :attr:`Member.activities` would not clear. +- |commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:issue:`2253`, :issue:`5068`) +- |commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:issue:`2591`) +- |commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:issue:`4058`, :issue:`4071`) +- |commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:issue:`5124`) +- |commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:issue:`5198`) +- |tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:issue:`2294`) +- |tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:issue:`4082`) + + +Miscellaneous +~~~~~~~~~~~~~~~ + +- The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:issue:`4087`, :issue:`4157`) +- :class:`Webhook` objects are now comparable and hashable (:issue:`4182`) +- Some more API requests got a ``reason`` parameter for audit logs (:issue:`5086`) + - :meth:`TextChannel.follow` + - :meth:`Message.pin` and :meth:`Message.unpin` + - :meth:`Webhook.delete` and :meth:`Webhook.edit` + +- For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``. +- The blocking logging message now shows the stack trace of where the main thread was blocking +- The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration +- Reduce memory usage when reconnecting due to stale references being held by the message cache (:issue:`5133`) +- Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings). +- |commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:issue:`4217`) +- |tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:issue:`5193`) + +.. _vp1p3p4: + +v1.3.4 +-------- + +Bug Fixes +~~~~~~~~~~~ + +- Fix an issue with channel overwrites causing multiple issues including crashes (:issue:`5109`) + +.. _vp1p3p3: + +v1.3.3 +-------- + +Bug Fixes +~~~~~~~~~~~~ + +- Change default WS close to 4000 instead of 1000. + - The previous close code caused sessions to be invalidated at a higher frequency than desired. + +- Fix ``None`` appearing in ``Member.activities``. (:issue:`2619`) + +.. _vp1p3p2: + +v1.3.2 +--------- + +Another minor bug fix release. + +Bug Fixes +~~~~~~~~~~~ + +- Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`. +- :func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable. +- Fix various Cloudflare handling errors (:issue:`2572`, :issue:`2544`) +- Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`. +- Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``. +- Fix invalid format specifier in webhook state (:issue:`2570`) +- |commands| Passing invalid permissions to permission related checks now raises ``TypeError``. + +.. _vp1p3p1: + +v1.3.1 +-------- + +Minor bug fix release. + +Bug Fixes +~~~~~~~~~~~ + +- Fix fetching invites in guilds that the user is not in. +- Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:issue:`2531`) + +Miscellaneous +~~~~~~~~~~~~~~ + +- Fix compatibility warnings when using the Python 3.9 alpha. +- Change the unknown event logging from WARNING to DEBUG to reduce noise. + +.. _vp1p3p0: + +v1.3.0 +-------- + +This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated! + +New Features +~~~~~~~~~~~~~~ + +- Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:issue:`2204`) +- Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:issue:`2208`) +- Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:issue:`2239`) +- Add support for suppressing embeds via :meth:`Message.edit` +- Add support for guild subscriptions. See the :class:`Client` documentation for more details. +- Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache. +- Add :meth:`Guild.query_members` to request members from the gateway. +- Add :class:`FFmpegOpusAudio` and other voice improvements. (:issue:`2258`) +- Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:issue:`2301`) +- Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events. +- Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:issue:`2300`, :issue:`2324`) +- Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:issue:`2314`) +- Add :meth:`Message.is_system` to allow for quickly filtering through system messages. +- Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:issue:`2343`) +- Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:issue:`2349`) +- Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:issue:`2358`, :issue:`2490`) +- Add :meth:`TextChannel.follow` to follow a news channel. (:issue:`2367`) +- Add :attr:`Permissions.view_guild_insights` permission. (:issue:`2415`) +- Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:issue:`2427`) + - Note that integration support is not finalized. + +- Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:issue:`2441`) +- Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:issue:`2198`) +- Add :class:`Activity.created_at` to see when an activity was started. (:issue:`2446`) +- Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:issue:`2463`) +- Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:issue:`2443`) +- Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:issue:`2445`) +- Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:issue:`2482`) +- Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:issue:`2482`) + - It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there. + +- Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:issue:`2433`) +- Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account. +- Add :attr:`Profile.team_user` to check whether a user is a member of a team. +- Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending. +- Add certain aliases to :class:`Permissions` to match the UI better. (:issue:`2496`) + - :attr:`Permissions.manage_permissions` + - :attr:`Permissions.view_channel` + - :attr:`Permissions.use_external_emojis` + +- Add support for passing keyword arguments when creating :class:`Permissions`. +- Add support for custom activities via :class:`CustomActivity`. (:issue:`2400`) + - Note that as of now, bots cannot send custom activities yet. + +- Add support for :func:`on_invite_create` and :func:`on_invite_delete` events. +- Add support for clearing a specific reaction emoji from a message. + - :meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods. + - :func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events. + +- Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:issue:`2517`, :issue:`2519`) +- |commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:issue:`2239`) +- |commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:issue:`2201`) +- |commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:issue:`2360`) +- |commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:issue:`2411`) +- |commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:issue:`2460`) +- |commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:issue:`2460`) +- |commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`. +- |commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks. +- |commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring. +- |commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function. +- |tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:issue:`2333`) +- |tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:issue:`2305`) + +Bug Fixes +~~~~~~~~~~ + +- Fix issue with permission resolution sometimes failing for guilds with no owner. +- Tokens are now stripped upon use. (:issue:`2135`) +- Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:issue:`2368`) +- Fix issue with webhooks not re-raising after retries have run out. (:issue:`2272`, :issue:`2380`) +- Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:issue:`2420`) +- Fix issue with ports being read in little endian when they should be big endian in voice connections. (:issue:`2470`) +- Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild. +- Fix bug with moving channels when there are gaps in positions due to channel deletion and creation. +- Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:issue:`2504`) +- Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`. +- Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`. +- Fix out of order files being sent in webhooks when there are 10 files. +- |commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:issue:`2244`, :issue:`2275`, :issue:`2291`) +- |commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:issue:`2251`) +- |commands| Allow converters from custom extension packages. (:issue:`2369`, :issue:`2374`) +- |commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:issue:`2471`) +- |commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them. +- |commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled. +- |commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:issue:`2489`) +- |commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler. + +Miscellaneous +~~~~~~~~~~~~~~~ + +- The library now fully supports Python 3.8 without warnings. +- Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:issue:`2453`) +- Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned. +- :func:`utils.escape_markdown` now properly escapes new quote markdown. +- The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`. +- The default message cache size has changed from 5000 to 1000 to accommodate small bots. +- Lower memory usage by only creating certain objects as needed in :class:`Role`. +- There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation. +- The rate limiting code now uses millisecond precision to have more granular rate limit handling. + - Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`. + +- The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:issue:`2375`) +- The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps. +- The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation. +- There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those. +- The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising. +- |commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:issue:`2498`) +- |tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:issue:`2516`) + +.. _vp1p2p5: + +v1.2.5 +-------- + +Bug Fixes +~~~~~~~~~~~ + +- Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions. + +.. _vp1p2p4: + +v1.2.4 +-------- + +Bug Fixes +~~~~~~~~~~~ + +- Fix a regression when :attr:`Message.channel` would be ``None``. +- Fix a regression where :attr:`Message.edited_at` would not update during edits. +- Fix a crash that would trigger during message updates (:issue:`2265`, :issue:`2287`). +- Fix a bug when :meth:`VoiceChannel.connect` would not return (:issue:`2274`, :issue:`2372`, :issue:`2373`, :issue:`2377`). +- Fix a crash relating to token-less webhooks (:issue:`2364`). +- Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:issue:`2331`, :issue:`2376`). + +.. _vp1p2p3: + +v1.2.3 +-------- + +Bug Fixes +~~~~~~~~~~~ + +- Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:issue:`2213`) +- Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:issue:`2218`) +- Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:issue:`2232`) +- Properly propagate exceptions in :meth:`Client.run`. (:issue:`2237`) +- |commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``. + +.. _vp1p2p2: + +v1.2.2 +-------- + +Bug Fixes +~~~~~~~~~~~ + +- Audit log related attribute access have been fixed to not error out when they shouldn't have. + +.. _vp1p2p1: + +v1.2.1 +-------- + +Bug Fixes +~~~~~~~~~~~ + +- :attr:`User.avatar_url` and related attributes no longer raise an error. +- More compatibility shims with the ``enum.Enum`` code. + +.. _vp1p2p0: + +v1.2.0 +-------- + +This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as "premium guilds"). + +New Features +~~~~~~~~~~~~~~ + +- Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level. +- Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting. +- Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild. +- Add :attr:`Member.premium_since` to query since when a member has boosted a guild. +- Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild. +- Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`. + - This includes a new type named :class:`SystemChannelFlags` +- Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise). +- Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`. +- Add :meth:`Guild.is_icon_animated`. +- Add support for the various new :class:`MessageType` involving nitro boosting. +- Add :attr:`VoiceRegion.india`. (:issue:`2145`) +- Add :meth:`Embed.insert_field_at`. (:issue:`2178`) +- Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:issue:`2185`) +- Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:issue:`2169`) +- Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:issue:`2169`) +- |tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling. +- |tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow. +- |tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:issue:`2158`, :issue:`2162`) + +Bug Fixes +~~~~~~~~~~~ + +- Fix internal error when using :meth:`Guild.prune_members`. +- |commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases. +- |tasks| Reset iteration count when the loop terminates and is restarted. +- |tasks| The decorator interface now works as expected when stacking (:issue:`2154`) + +Miscellaneous +~~~~~~~~~~~~~~~ + +- Improve performance of all Enum related code significantly. + - This was done by replacing the ``enum.Enum`` code with an API compatible one. + - This should not be a breaking change for most users due to duck-typing. +- Improve performance of message creation by about 1.5x. +- Improve performance of message editing by about 1.5-4x depending on payload size. +- Improve performance of attribute access on :class:`Member` about by 2x. +- Improve performance of :func:`utils.get` by around 4-6x depending on usage. +- Improve performance of event parsing lookup by around 2.5x. +- Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:issue:`953`, :issue:`2170`) +- The Discord error code is now shown in the exception message for :exc:`HTTPException`. +- Internal tasks launched by the library will now have their own custom ``__repr__``. +- All public facing types should now have a proper and more detailed ``__repr__``. +- |tasks| Errors are now logged via the standard :mod:`py:logging` module. + +.. _vp1p1p1: + +v1.1.1 +-------- + +Bug Fixes +~~~~~~~~~~~~ + +- Webhooks do not overwrite data on retrying their HTTP requests (:issue:`2140`) + +Miscellaneous +~~~~~~~~~~~~~~ + +- Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup. + +.. _vp1p1p0: + +v1.1.0 +--------- + +New Features +~~~~~~~~~~~~~~ + +- **There is a new extension dedicated to making background tasks easier.** + - You can check the documentation here: :ref:`ext_tasks_api`. +- Add :attr:`Permissions.stream` permission. (:issue:`2077`) +- Add equality comparison and hash support to :class:`Asset` +- Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:issue:`2085`) +- Add :attr:`Client.cached_messages` attribute to fetch the message cache (:issue:`2086`) +- Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:issue:`2093`) +- Add ``delay`` keyword-only argument to :meth:`Message.delete` (:issue:`2094`) +- Add support for ``<:name:id>`` when adding reactions (:issue:`2095`) +- Add :meth:`Asset.read` to fetch the bytes content of an asset (:issue:`2107`) +- Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:issue:`2118`) +- Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`. + +``discord.ext.commands`` +++++++++++++++++++++++++++ + +- Add new :func:`~.commands.dm_only` check. +- Support callable converters in :data:`~.commands.Greedy` +- Add new :class:`~.commands.MessageConverter`. + - This allows you to use :class:`Message` as a type hint in functions. +- Allow passing ``cls`` in the :func:`~.commands.group` decorator (:issue:`2061`) +- Add :attr:`.Command.parents` to fetch the parents of a command (:issue:`2104`) + + +Bug Fixes +~~~~~~~~~~~~ + +- Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`. +- Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys. +- Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`. +- Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error. +- Fix bug where updating your own user did not update your member instances. +- Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:issue:`2113`, :issue:`2117`) + +``discord.ext.commands`` +++++++++++++++++++++++++++ + +- Fix lambda converters in a non-module context (e.g. ``eval``). +- Use message creation time for reference time when computing cooldowns. + - This prevents cooldowns from triggering during e.g. a RESUME session. +- Fix the default :func:`on_command_error` to work with new-style cogs (:issue:`2094`) +- DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check. +- Fix race condition with help commands (:issue:`2123`) +- Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:issue:`2139`) + +Miscellaneous +~~~~~~~~~~~~~~~ + +- Improve the performance of internal enum creation in the library by about 5x. +- Make the output of ``python -m discord --version`` a bit more useful. +- The loop cleanup facility has been rewritten again. +- The signal handling in :meth:`Client.run` has been removed. + +``discord.ext.commands`` +++++++++++++++++++++++++++ + +- Custom exception classes are now used for all default checks in the library (:issue:`2101`) + + +.. _vp1p0p1: + +v1.0.1 +-------- + +Bug Fixes +~~~~~~~~~~~ + +- Fix issue with speaking state being cast to ``int`` when it was invalid. +- Fix some issues with loop cleanup that some users experienced on Linux machines. +- Fix voice handshake race condition (:issue:`2056`, :issue:`2063`) + +.. _vp1p0p0: + +v1.0.0 +-------- + +The changeset for this version are too big to be listed here, for more information please +see :ref:`the migrating page `. + + +.. _vp0p16p6: + +v0.16.6 +-------- + +Bug Fixes +~~~~~~~~~~ + +- Fix issue with :meth:`Client.create_server` that made it stop working. +- Fix main thread being blocked upon calling ``StreamPlayer.stop``. +- Handle HEARTBEAT_ACK and resume gracefully when it occurs. +- Fix race condition when pre-emptively rate limiting that caused releasing an already released lock. +- Fix invalid state errors when immediately cancelling a coroutine. + +.. _vp0p16p1: + +v0.16.1 +-------- + +This release is just a bug fix release with some better rate limit implementation. + +Bug Fixes +~~~~~~~~~~~ + +- Servers are now properly chunked for user bots. +- The CDN URL is now used instead of the API URL for assets. +- Rate limit implementation now tries to use header information if possible. +- Event loop is now properly propagated (:issue:`420`) +- Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`. + +.. _vp0p16p0: + +v0.16.0 +--------- + +New Features +~~~~~~~~~~~~~~ + +- Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel. +- Add :attr:`Server.features` to get information about partnered servers. + +Bug Fixes +~~~~~~~~~~ + +- Timeout when waiting for offline members while triggering :func:`on_ready`. + + - The fact that we did not timeout caused a gigantic memory leak in the library that caused + thousands of duplicate :class:`Member` instances causing big memory spikes. + +- Discard null sequences in the gateway. + + - The fact these were not discarded meant that :func:`on_ready` kept being called instead of + :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be + called once or twice with :func:`on_resumed` being called much more often. + +.. _vp0p15p1: + +v0.15.1 +--------- + +- Fix crash on duplicate or out of order reactions. + +.. _vp0p15p0: + +v0.15.0 +-------- + +New Features +~~~~~~~~~~~~~~ + +- Rich Embeds for messages are now supported. + + - To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`. +- Add :meth:`Client.clear_reactions` to remove all reactions from a message. +- Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`. +- Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates. + + - This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line. +- Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false). + +For the command extension, the following changed: + +- ``Context`` is no longer slotted to facilitate setting dynamic attributes. + +.. _vp0p14p3: + +v0.14.3 +--------- + +Bug Fixes +~~~~~~~~~~~ + +- Fix crash when dealing with MESSAGE_REACTION_REMOVE +- Fix incorrect buckets for reactions. + +.. _v0p14p2: + +v0.14.2 +--------- + +New Features +~~~~~~~~~~~~~~ + +- :meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes. + - This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues. + +Bug Fixes +~~~~~~~~~~ + +- Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`. + +.. _v0p14p1: + +v0.14.1 +--------- + +Bug fixes +~~~~~~~~~~ + +- Fix bug with `Reaction` not being visible at import. + - This was also breaking the documentation. + +.. _v0p14p0: + +v0.14.0 +-------- + +This update adds new API features and a couple of bug fixes. + +New Features +~~~~~~~~~~~~~ + +- Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks` +- Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`. +- Add support for reactions. + - :meth:`Client.add_reaction` to add a reactions + - :meth:`Client.remove_reaction` to remove a reaction. + - :meth:`Client.get_reaction_users` to get the users that reacted to a message. + - :attr:`Permissions.add_reactions` permission bit support. + - Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`. + - :attr:`Message.reactions` to get reactions from a message. + - :meth:`Client.wait_for_reaction` to wait for a reaction from a user. + +Bug Fixes +~~~~~~~~~~ + +- Fix bug with Paginator still allowing lines that are too long. +- Fix the :attr:`Permissions.manage_emojis` bit being incorrect. + +.. _v0p13p0: + +v0.13.0 +--------- + +This is a backwards compatible update with new features. + +New Features +~~~~~~~~~~~~~ + +- Add the ability to manage emojis. + + - :meth:`Client.create_custom_emoji` to create new emoji. + - :meth:`Client.edit_custom_emoji` to edit an old emoji. + - :meth:`Client.delete_custom_emoji` to delete a custom emoji. +- Add new :attr:`Permissions.manage_emojis` toggle. + + - This applies for :class:`PermissionOverwrite` as well. +- Add new statuses for :class:`Status`. + + - :attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\) for Do Not Disturb. + - :attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat). +- Deprecate :meth:`Client.change_status` + + - Use :meth:`Client.change_presence` instead for better more up to date functionality. + - This method is subject for removal in a future API version. +- Add :meth:`Client.change_presence` for changing your status with the new Discord API change. + + - This is the only method that allows changing your status to invisible or do not disturb. + +Bug Fixes +~~~~~~~~~~ + +- Paginator pages do not exceed their max_size anymore (:issue:`340`) +- Do Not Disturb users no longer show up offline due to the new :class:`Status` changes. + +.. _v0p12p0: + +v0.12.0 +--------- + +This is a bug fix update that also comes with new features. + +New Features +~~~~~~~~~~~~~ + +- Add custom emoji support. + + - Adds a new class to represent a custom Emoji named :class:`Emoji` + - Adds a utility generator function, :meth:`Client.get_all_emojis`. + - Adds a list of emojis on a server, :attr:`Server.emojis`. + - Adds a new event, :func:`on_server_emojis_update`. +- Add new server regions to :class:`ServerRegion` + + - :attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`. +- Add support for new pinned system message under :attr:`MessageType.pins_add`. +- Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy. + + - This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy. + +- Add :attr:`Server.role_hierarchy` to get the server's role hierarchy. +- Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites. +- Add :meth:`Client.get_user_info` to retrieve a user's info from their ID. +- Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player. + + - To help with this change, a player's ``after`` function can now take a single parameter denoting the current player. +- Add support for server verification levels. + + - Adds a new enum called :class:`VerificationLevel`. + - This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument. + - Adds a new attribute in the server, :attr:`Server.verification_level`. +- Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`. + + - This is technically old (was added in v0.10.0) but was undocumented until v0.12.0. + +For the command extension, the following are new: + +- Add custom emoji converter. +- All default converters that can take IDs can now convert via ID. +- Add coroutine support for ``Bot.command_prefix``. +- Add a method to reset command cooldown. + +Bug Fixes +~~~~~~~~~~ + +- Fix bug that caused the library to not work with the latest ``websockets`` library. +- Fix bug that leaked keep alive threads (:issue:`309`) +- Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`. +- Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order. +- Fix bug in :attr:`Member.top_role` that did not account for same-position roles. + +.. _v0p11p0: + +v0.11.0 +-------- + +This is a minor bug fix update that comes with a gateway update (v5 -> v6). + +Breaking Changes +~~~~~~~~~~~~~~~~~ + +- ``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI. + +New Features +~~~~~~~~~~~~~ + +- Add the ability to prune members via :meth:`Client.prune_members`. +- Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls. +- Add :attr:`AppInfo.owner` attribute. +- Add :class:`CallMessage` for group voice call messages. +- Add :class:`GroupCall` for group voice call information. +- Add :attr:`Message.system_content` to get the system message. +- Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum. +- Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr. +- The library now handles implicit permission resolution in :meth:`Channel.permissions_for`. +- Add :attr:`Server.mfa_level` to query a server's 2FA requirement. +- Add :attr:`Permissions.external_emojis` permission. +- Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`. + + - For backwards compatibility, the member object will have properties mirroring the old behaviour. + +For the command extension, the following are new: + +- Command cooldown system with the ``cooldown`` decorator. +- ``UserInputError`` exception for the hierarchy for user input related errors. + +Bug Fixes +~~~~~~~~~~ + +- :attr:`Client.email` is now saved when using a token for user accounts. +- Fix issue when removing roles out of order. +- Fix bug where discriminators would not update. +- Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly. + +For the command extension, the following bug fixes apply: + +- ``Bot.check`` decorator is actually a decorator not requiring parentheses. +- ``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist. +- Command names are no longer forced to be ``lower()``. +- Fix a bug where Member and User converters failed to work in private message contexts. +- ``HelpFormatter`` now ignores hidden commands when deciding the maximum width. + +.. _v0p10p0: + +v0.10.0 +------- + +For breaking changes, see :ref:`migrating-to-async`. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive. + +New Features +~~~~~~~~~~~~~ + +- The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily. +- The library now fully handles 429s and unconditionally retries on 502s. +- A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader. +- Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors. +- Added :meth:`Client.delete_invite` to revoke invites. +- Added support for sending voice. Check :class:`VoiceClient` for more details. +- Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands. +- Added :data:`version_info` named tuple to check version info of the library. +- Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` + when constructing a :class:`Client`. +- New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes. +- All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``. +- Added :meth:`Client.get_bans` to get banned members from a server. +- Added :meth:`Client.invites_from` to get currently active invites in a server. +- Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`. +- Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses. +- Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names. +- Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`. +- Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready. +- Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in. +- Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`. +- Add :attr:`Message.nonce` attribute. +- Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`. +- Add :meth:`Client.move_member` to move a member to another voice channel. +- You can now create a server via :meth:`Client.create_server`. +- Added :meth:`Client.edit_server` to edit existing servers. +- Added :meth:`Client.server_voice_state` to server mute or server deafen a member. +- If you are being rate limited, the library will now handle it for you. +- Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned. + +Performance Improvements +~~~~~~~~~~~~~~~~~~~~~~~~~ + +- All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache. +- Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly. +- A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``. +- Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would + receive performance improvements by having to download and process less data. +- While minor, change regex from ``\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups. + +Bug Fixes +~~~~~~~~~~ + +- Fix bug where guilds being updated did not edit the items in cache. +- Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role. +- Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited. +- :meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation. +- Fix bug where a role being deleted would trigger a ``ValueError``. +- Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped. +- Mentions are now triggered normally. This was changed due to the way discord handles it internally. +- Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is + a :class:`Object`. +- Unavailable servers were not being added into cache, this has been corrected. \ No newline at end of file diff --git a/docs/Python/html/_static/basic.css b/docs/Python/html/_static/basic.css new file mode 100644 index 00000000..912859b5 --- /dev/null +++ b/docs/Python/html/_static/basic.css @@ -0,0 +1,904 @@ +/* + * basic.css + * ~~~~~~~~~ + * + * Sphinx stylesheet -- basic theme. + * + * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/* -- main layout ----------------------------------------------------------- */ + +div.clearer { + clear: both; +} + +div.section::after { + display: block; + content: ''; + clear: left; +} + +/* -- relbar ---------------------------------------------------------------- */ + +div.related { + width: 100%; + font-size: 90%; +} + +div.related h3 { + display: none; +} + +div.related ul { + margin: 0; + padding: 0 0 0 10px; + list-style: none; +} + +div.related li { + display: inline; +} + +div.related li.right { + float: right; + margin-right: 5px; +} + +/* -- sidebar --------------------------------------------------------------- */ + +div.sphinxsidebarwrapper { + padding: 10px 5px 0 10px; +} + +div.sphinxsidebar { + float: left; + width: 230px; + margin-left: -100%; + font-size: 90%; + word-wrap: break-word; + overflow-wrap : break-word; +} + +div.sphinxsidebar ul { + list-style: none; +} + +div.sphinxsidebar ul ul, +div.sphinxsidebar ul.want-points { + margin-left: 20px; + list-style: square; +} + +div.sphinxsidebar ul ul { + margin-top: 0; + margin-bottom: 0; +} + +div.sphinxsidebar form { + margin-top: 10px; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + +div.sphinxsidebar #searchbox form.search { + overflow: hidden; +} + +div.sphinxsidebar #searchbox input[type="text"] { + float: left; + width: 80%; + padding: 0.25em; + box-sizing: border-box; +} + +div.sphinxsidebar #searchbox input[type="submit"] { + float: left; + width: 20%; + border-left: none; + padding: 0.25em; + box-sizing: border-box; +} + + +img { + border: 0; + max-width: 100%; +} + +/* -- search page ----------------------------------------------------------- */ + +ul.search { + margin: 10px 0 0 20px; + padding: 0; +} + +ul.search li { + padding: 5px 0 5px 20px; + background-image: url(file.png); + background-repeat: no-repeat; + background-position: 0 7px; +} + +ul.search li a { + font-weight: bold; +} + +ul.search li p.context { + color: #888; + margin: 2px 0 0 30px; + text-align: left; +} + +ul.keywordmatches li.goodmatch a { + font-weight: bold; +} + +/* -- index page ------------------------------------------------------------ */ + +table.contentstable { + width: 90%; + margin-left: auto; + margin-right: auto; +} + +table.contentstable p.biglink { + line-height: 150%; +} + +a.biglink { + font-size: 1.3em; +} + +span.linkdescr { + font-style: italic; + padding-top: 5px; + font-size: 90%; +} + +/* -- general index --------------------------------------------------------- */ + +table.indextable { + width: 100%; +} + +table.indextable td { + text-align: left; + vertical-align: top; +} + +table.indextable ul { + margin-top: 0; + margin-bottom: 0; + list-style-type: none; +} + +table.indextable > tbody > tr > td > ul { + padding-left: 0em; +} + +table.indextable tr.pcap { + height: 10px; +} + +table.indextable tr.cap { + margin-top: 10px; + background-color: #f2f2f2; +} + +img.toggler { + margin-right: 3px; + margin-top: 3px; + cursor: pointer; +} + +div.modindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +div.genindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +/* -- domain module index --------------------------------------------------- */ + +table.modindextable td { + padding: 2px; + border-collapse: collapse; +} + +/* -- general body styles --------------------------------------------------- */ + +div.body { + min-width: 450px; + max-width: 800px; +} + +div.body p, div.body dd, div.body li, div.body blockquote { + -moz-hyphens: auto; + -ms-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} + +a.headerlink { + visibility: hidden; +} + +a.brackets:before, +span.brackets > a:before{ + content: "["; +} + +a.brackets:after, +span.brackets > a:after { + content: "]"; +} + +h1:hover > a.headerlink, +h2:hover > a.headerlink, +h3:hover > a.headerlink, +h4:hover > a.headerlink, +h5:hover > a.headerlink, +h6:hover > a.headerlink, +dt:hover > a.headerlink, +caption:hover > a.headerlink, +p.caption:hover > a.headerlink, +div.code-block-caption:hover > a.headerlink { + visibility: visible; +} + +div.body p.caption { + text-align: inherit; +} + +div.body td { + text-align: left; +} + +.first { + margin-top: 0 !important; +} + +p.rubric { + margin-top: 30px; + font-weight: bold; +} + +img.align-left, figure.align-left, .figure.align-left, object.align-left { + clear: left; + float: left; + margin-right: 1em; +} + +img.align-right, figure.align-right, .figure.align-right, object.align-right { + clear: right; + float: right; + margin-left: 1em; +} + +img.align-center, figure.align-center, .figure.align-center, object.align-center { + display: block; + margin-left: auto; + margin-right: auto; +} + +img.align-default, figure.align-default, .figure.align-default { + display: block; + margin-left: auto; + margin-right: auto; +} + +.align-left { + text-align: left; +} + +.align-center { + text-align: center; +} + +.align-default { + text-align: center; +} + +.align-right { + text-align: right; +} + +/* -- sidebars -------------------------------------------------------------- */ + +div.sidebar, +aside.sidebar { + margin: 0 0 0.5em 1em; + border: 1px solid #ddb; + padding: 7px; + background-color: #ffe; + width: 40%; + float: right; + clear: right; + overflow-x: auto; +} + +p.sidebar-title { + font-weight: bold; +} + +div.admonition, div.topic, blockquote { + clear: left; +} + +/* -- topics ---------------------------------------------------------------- */ + +div.topic { + border: 1px solid #ccc; + padding: 7px; + margin: 10px 0 10px 0; +} + +p.topic-title { + font-size: 1.1em; + font-weight: bold; + margin-top: 10px; +} + +/* -- admonitions ----------------------------------------------------------- */ + +div.admonition { + margin-top: 10px; + margin-bottom: 10px; + padding: 7px; +} + +div.admonition dt { + font-weight: bold; +} + +p.admonition-title { + margin: 0px 10px 5px 0px; + font-weight: bold; +} + +div.body p.centered { + text-align: center; + margin-top: 25px; +} + +/* -- content of sidebars/topics/admonitions -------------------------------- */ + +div.sidebar > :last-child, +aside.sidebar > :last-child, +div.topic > :last-child, +div.admonition > :last-child { + margin-bottom: 0; +} + +div.sidebar::after, +aside.sidebar::after, +div.topic::after, +div.admonition::after, +blockquote::after { + display: block; + content: ''; + clear: both; +} + +/* -- tables ---------------------------------------------------------------- */ + +table.docutils { + margin-top: 10px; + margin-bottom: 10px; + border: 0; + border-collapse: collapse; +} + +table.align-center { + margin-left: auto; + margin-right: auto; +} + +table.align-default { + margin-left: auto; + margin-right: auto; +} + +table caption span.caption-number { + font-style: italic; +} + +table caption span.caption-text { +} + +table.docutils td, table.docutils th { + padding: 1px 8px 1px 5px; + border-top: 0; + border-left: 0; + border-right: 0; + border-bottom: 1px solid #aaa; +} + +table.footnote td, table.footnote th { + border: 0 !important; +} + +th { + text-align: left; + padding-right: 5px; +} + +table.citation { + border-left: solid 1px gray; + margin-left: 1px; +} + +table.citation td { + border-bottom: none; +} + +th > :first-child, +td > :first-child { + margin-top: 0px; +} + +th > :last-child, +td > :last-child { + margin-bottom: 0px; +} + +/* -- figures --------------------------------------------------------------- */ + +div.figure, figure { + margin: 0.5em; + padding: 0.5em; +} + +div.figure p.caption, figcaption { + padding: 0.3em; +} + +div.figure p.caption span.caption-number, +figcaption span.caption-number { + font-style: italic; +} + +div.figure p.caption span.caption-text, +figcaption span.caption-text { +} + +/* -- field list styles ----------------------------------------------------- */ + +table.field-list td, table.field-list th { + border: 0 !important; +} + +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + +.field-name { + -moz-hyphens: manual; + -ms-hyphens: manual; + -webkit-hyphens: manual; + hyphens: manual; +} + +/* -- hlist styles ---------------------------------------------------------- */ + +table.hlist { + margin: 1em 0; +} + +table.hlist td { + vertical-align: top; +} + +/* -- object description styles --------------------------------------------- */ + +.sig { + font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; +} + +.sig-name, code.descname { + background-color: transparent; + font-weight: bold; +} + +.sig-name { + font-size: 1.1em; +} + +code.descname { + font-size: 1.2em; +} + +.sig-prename, code.descclassname { + background-color: transparent; +} + +.optional { + font-size: 1.3em; +} + +.sig-paren { + font-size: larger; +} + +.sig-param.n { + font-style: italic; +} + +/* C++ specific styling */ + +.sig-inline.c-texpr, +.sig-inline.cpp-texpr { + font-family: unset; +} + +.sig.c .k, .sig.c .kt, +.sig.cpp .k, .sig.cpp .kt { + color: #0033B3; +} + +.sig.c .m, +.sig.cpp .m { + color: #1750EB; +} + +.sig.c .s, .sig.c .sc, +.sig.cpp .s, .sig.cpp .sc { + color: #067D17; +} + + +/* -- other body styles ----------------------------------------------------- */ + +ol.arabic { + list-style: decimal; +} + +ol.loweralpha { + list-style: lower-alpha; +} + +ol.upperalpha { + list-style: upper-alpha; +} + +ol.lowerroman { + list-style: lower-roman; +} + +ol.upperroman { + list-style: upper-roman; +} + +:not(li) > ol > li:first-child > :first-child, +:not(li) > ul > li:first-child > :first-child { + margin-top: 0px; +} + +:not(li) > ol > li:last-child > :last-child, +:not(li) > ul > li:last-child > :last-child { + margin-bottom: 0px; +} + +ol.simple ol p, +ol.simple ul p, +ul.simple ol p, +ul.simple ul p { + margin-top: 0; +} + +ol.simple > li:not(:first-child) > p, +ul.simple > li:not(:first-child) > p { + margin-top: 0; +} + +ol.simple p, +ul.simple p { + margin-bottom: 0; +} + +dl.footnote > dt, +dl.citation > dt { + float: left; + margin-right: 0.5em; +} + +dl.footnote > dd, +dl.citation > dd { + margin-bottom: 0em; +} + +dl.footnote > dd:after, +dl.citation > dd:after { + content: ""; + clear: both; +} + +dl.field-list { + display: grid; + grid-template-columns: fit-content(30%) auto; +} + +dl.field-list > dt { + font-weight: bold; + word-break: break-word; + padding-left: 0.5em; + padding-right: 5px; +} + +dl.field-list > dt:after { + content: ":"; +} + +dl.field-list > dd { + padding-left: 0.5em; + margin-top: 0em; + margin-left: 0em; + margin-bottom: 0em; +} + +dl { + margin-bottom: 15px; +} + +dd > :first-child { + margin-top: 0px; +} + +dd ul, dd table { + margin-bottom: 10px; +} + +dd { + margin-top: 3px; + margin-bottom: 10px; + margin-left: 30px; +} + +dl > dd:last-child, +dl > dd:last-child > :last-child { + margin-bottom: 0; +} + +dt:target, span.highlighted { + background-color: #fbe54e; +} + +rect.highlighted { + fill: #fbe54e; +} + +dl.glossary dt { + font-weight: bold; + font-size: 1.1em; +} + +.versionmodified { + font-style: italic; +} + +.system-message { + background-color: #fda; + padding: 5px; + border: 3px solid red; +} + +.footnote:target { + background-color: #ffa; +} + +.line-block { + display: block; + margin-top: 1em; + margin-bottom: 1em; +} + +.line-block .line-block { + margin-top: 0; + margin-bottom: 0; + margin-left: 1.5em; +} + +.guilabel, .menuselection { + font-family: sans-serif; +} + +.accelerator { + text-decoration: underline; +} + +.classifier { + font-style: oblique; +} + +.classifier:before { + font-style: normal; + margin: 0.5em; + content: ":"; +} + +abbr, acronym { + border-bottom: dotted 1px; + cursor: help; +} + +/* -- code displays --------------------------------------------------------- */ + +pre { + overflow: auto; + overflow-y: hidden; /* fixes display issues on Chrome browsers */ +} + +pre, div[class*="highlight-"] { + clear: both; +} + +span.pre { + -moz-hyphens: none; + -ms-hyphens: none; + -webkit-hyphens: none; + hyphens: none; +} + +div[class*="highlight-"] { + margin: 1em 0; +} + +td.linenos pre { + border: 0; + background-color: transparent; + color: #aaa; +} + +table.highlighttable { + display: block; +} + +table.highlighttable tbody { + display: block; +} + +table.highlighttable tr { + display: flex; +} + +table.highlighttable td { + margin: 0; + padding: 0; +} + +table.highlighttable td.linenos { + padding-right: 0.5em; +} + +table.highlighttable td.code { + flex: 1; + overflow: hidden; +} + +.highlight .hll { + display: block; +} + +div.highlight pre, +table.highlighttable pre { + margin: 0; +} + +div.code-block-caption + div { + margin-top: 0; +} + +div.code-block-caption { + margin-top: 1em; + padding: 2px 5px; + font-size: small; +} + +div.code-block-caption code { + background-color: transparent; +} + +table.highlighttable td.linenos, +span.linenos, +div.highlight span.gp { /* gp: Generic.Prompt */ + user-select: none; + -webkit-user-select: text; /* Safari fallback only */ + -webkit-user-select: none; /* Chrome/Safari */ + -moz-user-select: none; /* Firefox */ + -ms-user-select: none; /* IE10+ */ +} + +div.code-block-caption span.caption-number { + padding: 0.1em 0.3em; + font-style: italic; +} + +div.code-block-caption span.caption-text { +} + +div.literal-block-wrapper { + margin: 1em 0; +} + +code.xref, a code { + background-color: transparent; + font-weight: bold; +} + +h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { + background-color: transparent; +} + +.viewcode-link { + float: right; +} + +.viewcode-back { + float: right; + font-family: sans-serif; +} + +div.viewcode-block:target { + margin: -1px -10px; + padding: 0 10px; +} + +/* -- math display ---------------------------------------------------------- */ + +img.math { + vertical-align: middle; +} + +div.body div.math p { + text-align: center; +} + +span.eqno { + float: right; +} + +span.eqno a.headerlink { + position: absolute; + z-index: 1; +} + +div.math:hover a.headerlink { + visibility: visible; +} + +/* -- printout stylesheet --------------------------------------------------- */ + +@media print { + div.document, + div.documentwrapper, + div.bodywrapper { + margin: 0 !important; + width: 100%; + } + + div.sphinxsidebar, + div.related, + div.footer, + #top-link { + display: none; + } +} \ No newline at end of file diff --git a/docs/Python/html/_static/codeblocks.css b/docs/Python/html/_static/codeblocks.css new file mode 100644 index 00000000..04755281 --- /dev/null +++ b/docs/Python/html/_static/codeblocks.css @@ -0,0 +1,143 @@ +/* light theme: default */ +.highlight .hll { background-color: #ffffcc } +.highlight { background: #f0f0f0; } +.highlight .c { color: #60a0b0; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #007020; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .ch { color: #60a0b0; font-style: italic } /* Comment.Hashbang */ +.highlight .cm { color: #60a0b0; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #007020 } /* Comment.Preproc */ +.highlight .cpf { color: #60a0b0; font-style: italic } /* Comment.PreprocFile */ +.highlight .c1 { color: #60a0b0; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #60a0b0; background-color: #fff0f0 } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #007020 } /* Keyword.Pseudo */ +.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #902000 } /* Keyword.Type */ +.highlight .m { color: #40a070 } /* Literal.Number */ +.highlight .s { color: #4070a0 } /* Literal.String */ +.highlight .na { color: #4070a0 } /* Name.Attribute */ +.highlight .nb { color: #007020 } /* Name.Builtin */ +.highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */ +.highlight .no { color: #60add5 } /* Name.Constant */ +.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */ +.highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #007020 } /* Name.Exception */ +.highlight .nf { color: #06287e } /* Name.Function */ +.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */ +.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #bb60d5 } /* Name.Variable */ +.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #40a070 } /* Literal.Number.Bin */ +.highlight .mf { color: #40a070 } /* Literal.Number.Float */ +.highlight .mh { color: #40a070 } /* Literal.Number.Hex */ +.highlight .mi { color: #40a070 } /* Literal.Number.Integer */ +.highlight .mo { color: #40a070 } /* Literal.Number.Oct */ +.highlight .sa { color: #4070a0 } /* Literal.String.Affix */ +.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */ +.highlight .sc { color: #4070a0 } /* Literal.String.Char */ +.highlight .dl { color: #4070a0 } /* Literal.String.Delimiter */ +.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #4070a0 } /* Literal.String.Double */ +.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */ +.highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */ +.highlight .sx { color: #c65d09 } /* Literal.String.Other */ +.highlight .sr { color: #235388 } /* Literal.String.Regex */ +.highlight .s1 { color: #4070a0 } /* Literal.String.Single */ +.highlight .ss { color: #517918 } /* Literal.String.Symbol */ +.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */ +.highlight .fm { color: #06287e } /* Name.Function.Magic */ +.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */ +.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */ +.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */ +.highlight .vm { color: #bb60d5 } /* Name.Variable.Magic */ +.highlight .il { color: #40a070 } /* Literal.Number.Integer.Long */ + +/* dark theme: modified "native" */ +:root[data-theme="dark"] .highlight pre { background-color: #2a2a2e } +:root[data-theme="dark"] .highlight .hll { background-color: #2a2a2e } +:root[data-theme="dark"] .highlight .c { color: #999999; font-style: italic } /* Comment */ +:root[data-theme="dark"] .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ +:root[data-theme="dark"] .highlight .g { color: #d0d0d0 } /* Generic */ +:root[data-theme="dark"] .highlight .k { color: #6ab825; font-weight: bold } /* Keyword */ +:root[data-theme="dark"] .highlight .l { color: #d0d0d0 } /* Literal */ +:root[data-theme="dark"] .highlight .n { color: #d0d0d0 } /* Name */ +:root[data-theme="dark"] .highlight .o { color: #d0d0d0 } /* Operator */ +:root[data-theme="dark"] .highlight .x { color: #d0d0d0 } /* Other */ +:root[data-theme="dark"] .highlight .p { color: #d0d0d0 } /* Punctuation */ +:root[data-theme="dark"] .highlight .cm { color: #999999; font-style: italic } /* Comment.Multiline */ +:root[data-theme="dark"] .highlight .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */ +:root[data-theme="dark"] .highlight .c1 { color: #999999; font-style: italic } /* Comment.Single */ +:root[data-theme="dark"] .highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */ +:root[data-theme="dark"] .highlight .gd { color: #d22323 } /* Generic.Deleted */ +:root[data-theme="dark"] .highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */ +:root[data-theme="dark"] .highlight .gr { color: #d22323 } /* Generic.Error */ +:root[data-theme="dark"] .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */ +:root[data-theme="dark"] .highlight .gi { color: #589819 } /* Generic.Inserted */ +:root[data-theme="dark"] .highlight .go { color: #cccccc } /* Generic.Output */ +:root[data-theme="dark"] .highlight .gp { color: #aaaaaa } /* Generic.Prompt */ +:root[data-theme="dark"] .highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */ +:root[data-theme="dark"] .highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */ +:root[data-theme="dark"] .highlight .gt { color: #d22323 } /* Generic.Traceback */ +:root[data-theme="dark"] .highlight .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */ +:root[data-theme="dark"] .highlight .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */ +:root[data-theme="dark"] .highlight .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */ +:root[data-theme="dark"] .highlight .kp { color: #6ab825 } /* Keyword.Pseudo */ +:root[data-theme="dark"] .highlight .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */ +:root[data-theme="dark"] .highlight .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */ +:root[data-theme="dark"] .highlight .ld { color: #d0d0d0 } /* Literal.Date */ +:root[data-theme="dark"] .highlight .m { color: #7fb1d7 } /* Literal.Number */ +:root[data-theme="dark"] .highlight .s { color: #ed9d13 } /* Literal.String */ +:root[data-theme="dark"] .highlight .na { color: #bbbbbb; } /* Name.Attribute */ +:root[data-theme="dark"] .highlight .nb { color: #29a5b3; } /* Name.Builtin */ +:root[data-theme="dark"] .highlight .nc { color: #6494d8;} /* Name.Class */ +:root[data-theme="dark"] .highlight .no { color: #40ffff; } /* Name.Constant */ +:root[data-theme="dark"] .highlight .nd { color: #ffa500; } /* Name.Decorator */ +:root[data-theme="dark"] .highlight .ni { color: #d0d0d0; } /* Name.Entity */ +:root[data-theme="dark"] .highlight .ne { color: #bbbbbb; } /* Name.Exception */ +:root[data-theme="dark"] .highlight .nf { color: #6494d8; } /* Name.Function */ +:root[data-theme="dark"] .highlight .fm { color: #6494d8; } /* Name.Function.Magic */ +:root[data-theme="dark"] .highlight .nl { color: #d0d0d0; } /* Name.Label */ +:root[data-theme="dark"] .highlight .nn { color: #6494d8;} /* Name.Namespace */ +:root[data-theme="dark"] .highlight .nx { color: #d0d0d0; } /* Name.Other */ +:root[data-theme="dark"] .highlight .py { color: #d0d0d0; } /* Name.Property */ +:root[data-theme="dark"] .highlight .nt { color: #6ab825; font-weight: bold } /* Name.Tag */ +:root[data-theme="dark"] .highlight .nv { color: #40ffff; } /* Name.Variable */ +:root[data-theme="dark"] .highlight .ow { color: #6ab825; font-weight: bold } /* Operator.Word */ +:root[data-theme="dark"] .highlight .w { color: #666666; } /* Text.Whitespace */ +:root[data-theme="dark"] .highlight .mf { color: #7fb1d7; } /* Literal.Number.Float */ +:root[data-theme="dark"] .highlight .mh { color: #7fb1d7; } /* Literal.Number.Hex */ +:root[data-theme="dark"] .highlight .mi { color: #7fb1d7; } /* Literal.Number.Integer */ +:root[data-theme="dark"] .highlight .mo { color: #7fb1d7; } /* Literal.Number.Oct */ +:root[data-theme="dark"] .highlight .sb { color: #ed9d13; } /* Literal.String.Backtick */ +:root[data-theme="dark"] .highlight .sc { color: #ed9d13; } /* Literal.String.Char */ +:root[data-theme="dark"] .highlight .sd { color: #ed9d13; } /* Literal.String.Doc */ +:root[data-theme="dark"] .highlight .s2 { color: #ed9d13; } /* Literal.String.Double */ +:root[data-theme="dark"] .highlight .se { color: #ed9d13; } /* Literal.String.Escape */ +:root[data-theme="dark"] .highlight .sh { color: #ed9d13; } /* Literal.String.Heredoc */ +:root[data-theme="dark"] .highlight .si { color: #ed9d13; } /* Literal.String.Interpol */ +:root[data-theme="dark"] .highlight .sx { color: #ffa500; } /* Literal.String.Other */ +:root[data-theme="dark"] .highlight .sr { color: #ed9d13; } /* Literal.String.Regex */ +:root[data-theme="dark"] .highlight .s1 { color: #ed9d13; } /* Literal.String.Single */ +:root[data-theme="dark"] .highlight .ss { color: #ed9d13; } /* Literal.String.Symbol */ +:root[data-theme="dark"] .highlight .bp { color: #29a5b3; } /* Name.Builtin.Pseudo */ +:root[data-theme="dark"] .highlight .vc { color: #40ffff; } /* Name.Variable.Class */ +:root[data-theme="dark"] .highlight .vg { color: #40ffff; } /* Name.Variable.Global */ +:root[data-theme="dark"] .highlight .vi { color: #40ffff; } /* Name.Variable.Instance */ +:root[data-theme="dark"] .highlight .il { color: #7fb1d7; } /* Literal.Number.Integer.Long */ diff --git a/docs/Python/html/_static/copy.js b/docs/Python/html/_static/copy.js new file mode 100644 index 00000000..f70e3d67 --- /dev/null +++ b/docs/Python/html/_static/copy.js @@ -0,0 +1,34 @@ +const COPY = "content_copy"; +const COPIED = "done"; + +const copy = async (obj) => { + // {{text}} + await navigator.clipboard.writeText(obj.children[1].innerText).then( + () => { + let icon = obj.children[0].children[0]; + icon.textContent = COPIED; + setTimeout(() => (icon.textContent = COPY), 2500); + }, + (r) => alert('Could not copy codeblock:\n' + r.toString()) + ); +}; + +document.addEventListener("DOMContentLoaded", () => { + let allCodeblocks = document.querySelectorAll("div[class='highlight']"); + + for (let codeblock of allCodeblocks) { + codeblock.parentNode.className += " relative-copy"; + let copyEl = document.createElement("span"); + copyEl.addEventListener('click', () => copy(codeblock)); + copyEl.className = "copy"; + copyEl.setAttribute("aria-label", "Copy Code"); + copyEl.setAttribute("title", "Copy Code"); + + let copyIcon = document.createElement("span"); + copyIcon.className = "material-icons"; + copyIcon.textContent = COPY; + copyEl.append(copyIcon); + + codeblock.prepend(copyEl); + } +}); diff --git a/docs/Python/html/_static/custom.js b/docs/Python/html/_static/custom.js new file mode 100644 index 00000000..f3cfa461 --- /dev/null +++ b/docs/Python/html/_static/custom.js @@ -0,0 +1,97 @@ +'use-strict'; + +let activeModal = null; +let bottomHeightThreshold, sections; +let hamburgerToggle; +let mobileSearch; +let sidebar; +let toTop; + +class Modal { + constructor(element) { + this.element = element; + } + + close() { + activeModal = null; + this.element.style.display = 'none' + } + + open() { + if (activeModal) { + activeModal.close(); + } + activeModal = this; + this.element.style.display = 'flex' + } +} + +class SearchBar { + + constructor() { + this.box = document.querySelector('nav.mobile-only'); + this.bar = document.querySelector('nav.mobile-only input[type="search"]'); + this.openButton = document.getElementById('open-search'); + this.closeButton = document.getElementById('close-search'); + } + + open() { + this.openButton.hidden = true; + this.closeButton.hidden = false; + this.box.style.top = "100%"; + this.bar.focus(); + } + + close() { + this.openButton.hidden = false; + this.closeButton.hidden = true; + this.box.style.top = "0"; + } + +} + +function scrollToTop() { + window.scrollTo({ top: 0, behavior: 'smooth' }); +} + +document.addEventListener('DOMContentLoaded', () => { + mobileSearch = new SearchBar(); + + bottomHeightThreshold = document.documentElement.scrollHeight - 30; + sections = document.querySelectorAll('section'); + hamburgerToggle = document.getElementById('hamburger-toggle'); + + toTop = document.getElementById('to-top'); + toTop.hidden = !(window.scrollY > 0); + + if (hamburgerToggle) { + hamburgerToggle.addEventListener('click', (e) => { + sidebar.element.classList.toggle('sidebar-toggle'); + let button = hamburgerToggle.firstElementChild; + if (button.textContent == 'menu') { + button.textContent = 'close'; + } + else { + button.textContent = 'menu'; + } + }); + } + + const tables = document.querySelectorAll('.py-attribute-table[data-move-to-id]'); + tables.forEach(table => { + let element = document.getElementById(table.getAttribute('data-move-to-id')); + let parent = element.parentNode; + // insert ourselves after the element + parent.insertBefore(table, element.nextSibling); + }); + + window.addEventListener('scroll', () => { + toTop.hidden = !(window.scrollY > 0); + }); +}); + +document.addEventListener('keydown', (event) => { + if (event.code == "Escape" && activeModal) { + activeModal.close(); + } +}); diff --git a/docs/Python/html/_static/discord_py_logo.ico b/docs/Python/html/_static/discord_py_logo.ico new file mode 100644 index 0000000000000000000000000000000000000000..209ba4ef2da01a08136894967c5bffaec58698cd GIT binary patch literal 270398 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 v>N8NEf%**8XP`a<^%= 0 && + !jQuery(node.parentNode).hasClass(className) && + !jQuery(node.parentNode).hasClass("nohighlight")) { + var span; + var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); + if (isInSVG) { + span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); + } else { + span = document.createElement("span"); + span.className = className; + } + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + node.parentNode.insertBefore(span, node.parentNode.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling)); + node.nodeValue = val.substr(0, pos); + if (isInSVG) { + var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); + var bbox = node.parentElement.getBBox(); + rect.x.baseVal.value = bbox.x; + rect.y.baseVal.value = bbox.y; + rect.width.baseVal.value = bbox.width; + rect.height.baseVal.value = bbox.height; + rect.setAttribute('class', className); + addItems.push({ + "parent": node.parentNode, + "target": rect}); + } + } + } + else if (!jQuery(node).is("button, select, textarea")) { + jQuery.each(node.childNodes, function() { + highlight(this, addItems); + }); + } + } + var addItems = []; + var result = this.each(function() { + highlight(this, addItems); + }); + for (var i = 0; i < addItems.length; ++i) { + jQuery(addItems[i].parent).before(addItems[i].target); + } + return result; +}; + +/* + * backward compatibility for jQuery.browser + * This will be supported until firefox bug is fixed. + */ +if (!jQuery.browser) { + jQuery.uaMatch = function(ua) { + ua = ua.toLowerCase(); + + var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || + /(webkit)[ \/]([\w.]+)/.exec(ua) || + /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || + /(msie) ([\w.]+)/.exec(ua) || + ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || + []; + + return { + browser: match[ 1 ] || "", + version: match[ 2 ] || "0" + }; + }; + jQuery.browser = {}; + jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; +} + +/** + * Small JavaScript module for the documentation. + */ +var Documentation = { + + init : function() { + this.fixFirefoxAnchorBug(); + this.highlightSearchWords(); + this.initIndexTable(); + if (DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) { + this.initOnKeyListeners(); + } + }, + + /** + * i18n support + */ + TRANSLATIONS : {}, + PLURAL_EXPR : function(n) { return n === 1 ? 0 : 1; }, + LOCALE : 'unknown', + + // gettext and ngettext don't access this so that the functions + // can safely bound to a different name (_ = Documentation.gettext) + gettext : function(string) { + var translated = Documentation.TRANSLATIONS[string]; + if (typeof translated === 'undefined') + return string; + return (typeof translated === 'string') ? translated : translated[0]; + }, + + ngettext : function(singular, plural, n) { + var translated = Documentation.TRANSLATIONS[singular]; + if (typeof translated === 'undefined') + return (n == 1) ? singular : plural; + return translated[Documentation.PLURALEXPR(n)]; + }, + + addTranslations : function(catalog) { + for (var key in catalog.messages) + this.TRANSLATIONS[key] = catalog.messages[key]; + this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); + this.LOCALE = catalog.locale; + }, + + /** + * add context elements like header anchor links + */ + addContextElements : function() { + $('div[id] > :header:first').each(function() { + $('\u00B6'). + attr('href', '#' + this.id). + attr('title', _('Permalink to this headline')). + appendTo(this); + }); + $('dt[id]').each(function() { + $('\u00B6'). + attr('href', '#' + this.id). + attr('title', _('Permalink to this definition')). + appendTo(this); + }); + }, + + /** + * workaround a firefox stupidity + * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 + */ + fixFirefoxAnchorBug : function() { + if (document.location.hash && $.browser.mozilla) + window.setTimeout(function() { + document.location.href += ''; + }, 10); + }, + + /** + * highlight the search words provided in the url in the text + */ + highlightSearchWords : function() { + var params = $.getQueryParameters(); + var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; + if (terms.length) { + var body = $('div.body'); + if (!body.length) { + body = $('body'); + } + window.setTimeout(function() { + $.each(terms, function() { + body.highlightText(this.toLowerCase(), 'highlighted'); + }); + }, 10); + $('') + .appendTo($('#searchbox')); + } + }, + + /** + * init the domain index toggle buttons + */ + initIndexTable : function() { + var togglers = $('img.toggler').click(function() { + var src = $(this).attr('src'); + var idnum = $(this).attr('id').substr(7); + $('tr.cg-' + idnum).toggle(); + if (src.substr(-9) === 'minus.png') + $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); + else + $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); + }).css('display', ''); + if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { + togglers.click(); + } + }, + + /** + * helper function to hide the search marks again + */ + hideSearchWords : function() { + $('#searchbox .highlight-link').fadeOut(300); + $('span.highlighted').removeClass('highlighted'); + }, + + /** + * make the url absolute + */ + makeURL : function(relativeURL) { + return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; + }, + + /** + * get the current relative url + */ + getCurrentURL : function() { + var path = document.location.pathname; + var parts = path.split(/\//); + $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { + if (this === '..') + parts.pop(); + }); + var url = parts.join('/'); + return path.substring(url.lastIndexOf('/') + 1, path.length - 1); + }, + + initOnKeyListeners: function() { + $(document).keydown(function(event) { + var activeElementType = document.activeElement.tagName; + // don't navigate when in search box, textarea, dropdown or button + if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT' + && activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey + && !event.shiftKey) { + switch (event.keyCode) { + case 37: // left + var prevHref = $('link[rel="prev"]').prop('href'); + if (prevHref) { + window.location.href = prevHref; + return false; + } + break; + case 39: // right + var nextHref = $('link[rel="next"]').prop('href'); + if (nextHref) { + window.location.href = nextHref; + return false; + } + break; + } + } + }); + } +}; + +// quick alias for translations +_ = Documentation.gettext; + +$(document).ready(function() { + Documentation.init(); +}); diff --git a/docs/Python/html/_static/documentation_options.js b/docs/Python/html/_static/documentation_options.js new file mode 100644 index 00000000..0a278a4e --- /dev/null +++ b/docs/Python/html/_static/documentation_options.js @@ -0,0 +1,12 @@ +var DOCUMENTATION_OPTIONS = { + URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), + VERSION: '2.0.0a', + LANGUAGE: 'None', + COLLAPSE_INDEX: false, + BUILDER: 'html', + FILE_SUFFIX: '.html', + LINK_SUFFIX: '.html', + HAS_SOURCE: true, + SOURCELINK_SUFFIX: '.txt', + NAVIGATION_WITH_KEYS: false +}; \ No newline at end of file diff --git a/docs/Python/html/_static/icons.css b/docs/Python/html/_static/icons.css new file mode 100644 index 00000000..b237f109 --- /dev/null +++ b/docs/Python/html/_static/icons.css @@ -0,0 +1,10 @@ +@font-face { + font-family: 'Custom Icons'; + font-style: normal; + font-weight: 400; + src: url('icons.woff') format('woff2'); +} + +.custom-icons { + font-family: 'Custom Icons' !important; +} diff --git a/docs/Python/html/_static/icons.woff b/docs/Python/html/_static/icons.woff new file mode 100644 index 0000000000000000000000000000000000000000..50a340c47fcf3f6d621ee929e49fa4ff55bd50b4 GIT binary patch literal 2608 zcmeHJ&2Jk;6o0d`-u3Q!*Wcf<<9y(>Y3n#~;xtVfswkvN)en-Y6+#Gb6XOIWc8DEF zIYmTVsvcVPe4cIU6?+Zq`KEU4`E(RNdk~EUmUSfqe>pTBsGJ&sG`>;CV%So5x%7^Q)CjjO#rJEN5$sZqzHQ zRbVHP<0nF2JbC-OwMG*;=z+g@9F|xYow9V0*h-~UN9HmRA)VEX1?ESsk%>5#-JkQPu$msM%N6NMM0(w+*-unr8vMP& zM7j^iF`{;x-)i5YV;qV$k=w51Y(qgQW;YBK8D9p+@kKtu=XS4Q)M74|fj)scg#0;X z!zf3Kv`h`!xJT`sb{lO3>;lz*t-Ba&f8V~=zS@4LeI@R9Bih70h0nIJKemW{6XL9< zi0G)u?E-WWD)OsAm!T@O;i||}oXHKSL39t5P^>Qd)wGq6JtKx}fr%ztB%;wV+x;IC zD?io#gWu#&(+6-0tgpa&x)s%8_@a?mJj>#-^5`TRDdtBe*a*;`?mS5N1{}Iu_2mVv zBs%PVr6B={&*nS5P>u|jN5L-J(LqMHp;+9ZqO+RC$ZiTwB0w_CPR1dP4Cnj!c6Pp0 zT044ltyG%NX0rVU`s>qPLzZP`ssUY#>PA@8OxeRVRWTJ=k|o9&lO#z~d>+47vlIoi zu&xDF)l|6U3uaBT!?NObs}t@%QVs=$+ZIBPIPg!hJhMrSyDAlWmKOpSMOSyc>=N0q%03zJYd?;1}f zCwh_x!r@NC7xrR7xWdf-j+Yg$%q13^J2JjKi!~EJ1(~+nxA+49gi-kUG)d=xj${kkcu8doG)))lULFp4bi zGtGoFRW1%3k4Ab8PiViY1Pq3w#pOtNUr;rABhljn#qyN6HSL=%H2-7p8UMuZWQePb z=$p=&FaEBv1LD^w-bma`wxFMVpOYLFKEJu=_Hr0OCz9jrc5}S{F41=ik+*H8P7%Cz z`)G(JXoeoACvoT2X_H=|%j}YL#2z_FAKJGt9;knaZqW@lKW6_o;oPbc?&{ZEoCAN% zwPo1XT-$?tyVtc9;LEP9Q;I$p?}w}bNub5CCA^n!yEX?t=h`yt8?No47!A0#0(`@@ zb-aCd7dD!$#_FNvg+{$e3utRn3-8G)9m3cPu6;Djle)#H? zqd_WA@nM2I3}?Pt+gPcr(>w;LA(s`Z(E7u4oN3fsxmvYeU9YsNi@6IIbF&MLQ;kNw ofE^TbXd%@aqSo#7EAXq>Rq elements + // (i.e., `typeof document.createElement( "object" ) === "function"`). + // We don't want to classify *any* DOM node as a function. + return typeof obj === "function" && typeof obj.nodeType !== "number"; + }; + + +var isWindow = function isWindow( obj ) { + return obj != null && obj === obj.window; + }; + + +var document = window.document; + + + + var preservedScriptAttributes = { + type: true, + src: true, + nonce: true, + noModule: true + }; + + function DOMEval( code, node, doc ) { + doc = doc || document; + + var i, val, + script = doc.createElement( "script" ); + + script.text = code; + if ( node ) { + for ( i in preservedScriptAttributes ) { + + // Support: Firefox 64+, Edge 18+ + // Some browsers don't support the "nonce" property on scripts. + // On the other hand, just using `getAttribute` is not enough as + // the `nonce` attribute is reset to an empty string whenever it + // becomes browsing-context connected. + // See https://github.com/whatwg/html/issues/2369 + // See https://html.spec.whatwg.org/#nonce-attributes + // The `node.getAttribute` check was added for the sake of + // `jQuery.globalEval` so that it can fake a nonce-containing node + // via an object. + val = node[ i ] || node.getAttribute && node.getAttribute( i ); + if ( val ) { + script.setAttribute( i, val ); + } + } + } + doc.head.appendChild( script ).parentNode.removeChild( script ); + } + + +function toType( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android <=2.3 only (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; +} +/* global Symbol */ +// Defining this global in .eslintrc.json would create a danger of using the global +// unguarded in another place, it seems safer to define global only for this module + + + +var + version = "3.5.1", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + even: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return ( i + 1 ) % 2; + } ) ); + }, + + odd: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return i % 2; + } ) ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + copy = options[ name ]; + + // Prevent Object.prototype pollution + // Prevent never-ending loop + if ( name === "__proto__" || target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + src = target[ name ]; + + // Ensure proper type for the source value + if ( copyIsArray && !Array.isArray( src ) ) { + clone = []; + } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { + clone = {}; + } else { + clone = src; + } + copyIsArray = false; + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + // Evaluates a script in a provided context; falls back to the global one + // if not specified. + globalEval: function( code, options, doc ) { + DOMEval( code, { nonce: options && options.nonce }, doc ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return flat( ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), +function( _i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +} ); + +function isArrayLike( obj ) { + + // Support: real iOS 8.2 only (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = toType( obj ); + + if ( isFunction( obj ) || isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.3.5 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2020-03-14 + */ +( function( window ) { +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + nonnativeSelectorCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // Instance methods + hasOwn = ( {} ).hasOwnProperty, + arr = [], + pop = arr.pop, + pushNative = arr.push, + push = arr.push, + slice = arr.slice, + + // Use a stripped-down indexOf as it's faster than native + // https://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[ i ] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + + "ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram + identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + + // "Attribute values must be CSS identifiers [capture 5] + // or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + + whitespace + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + + "*" ), + rdescend = new RegExp( whitespace + "|>" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rhtml = /HTML$/i, + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + + // CSS escapes + // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), + funescape = function( escape, nonHex ) { + var high = "0x" + escape.slice( 1 ) - 0x10000; + + return nonHex ? + + // Strip the backslash prefix from a non-hex escape sequence + nonHex : + + // Replace a hexadecimal escape sequence with the encoded Unicode code point + // Support: IE <=11+ + // For values outside the Basic Multilingual Plane (BMP), manually construct a + // surrogate pair + high < 0 ? + String.fromCharCode( high + 0x10000 ) : + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // CSS string/identifier serialization + // https://drafts.csswg.org/cssom/#common-serializing-idioms + rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + fcssescape = function( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }, + + inDisabledFieldset = addCombinator( + function( elem ) { + return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; + }, + { dir: "parentNode", next: "legend" } + ); + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + ( arr = slice.call( preferredDoc.childNodes ) ), + preferredDoc.childNodes + ); + + // Support: Android<4.0 + // Detect silently failing push.apply + // eslint-disable-next-line no-unused-expressions + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + pushNative.apply( target, slice.call( els ) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + + // Can't trust NodeList.length + while ( ( target[ j++ ] = els[ i++ ] ) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + setDocument( context ); + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { + + // ID selector + if ( ( m = match[ 1 ] ) ) { + + // Document context + if ( nodeType === 9 ) { + if ( ( elem = context.getElementById( m ) ) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && ( elem = newContext.getElementById( m ) ) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[ 2 ] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !nonnativeSelectorCache[ selector + " " ] && + ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && + + // Support: IE 8 only + // Exclude object elements + ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { + + newSelector = selector; + newContext = context; + + // qSA considers elements outside a scoping root when evaluating child or + // descendant combinators, which is not what we want. + // In such cases, we work around the behavior by prefixing every selector in the + // list with an ID selector referencing the scope context. + // The technique has to be used as well when a leading combinator is used + // as such selectors are not recognized by querySelectorAll. + // Thanks to Andrew Dupont for this technique. + if ( nodeType === 1 && + ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + + // We can use :scope instead of the ID hack if the browser + // supports it & if we're not changing the context. + if ( newContext !== context || !support.scope ) { + + // Capture the context ID, setting it first if necessary + if ( ( nid = context.getAttribute( "id" ) ) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", ( nid = expando ) ); + } + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + + toSelector( groups[ i ] ); + } + newSelector = groups.join( "," ); + } + + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + nonnativeSelectorCache( selector, true ); + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return ( cache[ key + " " ] = value ); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created element and returns a boolean result + */ +function assert( fn ) { + var el = document.createElement( "fieldset" ); + + try { + return !!fn( el ); + } catch ( e ) { + return false; + } finally { + + // Remove from its parent by default + if ( el.parentNode ) { + el.parentNode.removeChild( el ); + } + + // release memory in IE + el = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split( "|" ), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[ i ] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + a.sourceIndex - b.sourceIndex; + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( ( cur = cur.nextSibling ) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return ( name === "input" || name === "button" ) && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11 + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + /* jshint -W018 */ + elem.isDisabled !== !disabled && + inDisabledFieldset( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction( function( argument ) { + argument = +argument; + return markFunction( function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ ( j = matchIndexes[ i ] ) ] ) { + seed[ j ] = !( matches[ j ] = seed[ j ] ); + } + } + } ); + } ); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + var namespace = elem.namespaceURI, + docElem = ( elem.ownerDocument || elem ).documentElement; + + // Support: IE <=8 + // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes + // https://bugs.jquery.com/ticket/4833 + return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, subWindow, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9 - 11+, Edge 12 - 18+ + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( preferredDoc != document && + ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { + + // Support: IE 11, Edge + if ( subWindow.addEventListener ) { + subWindow.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( subWindow.attachEvent ) { + subWindow.attachEvent( "onunload", unloadHandler ); + } + } + + // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, + // Safari 4 - 5 only, Opera <=11.6 - 12.x only + // IE/Edge & older browsers don't support the :scope pseudo-class. + // Support: Safari 6.0 only + // Safari 6.0 supports :scope but it's an alias of :root there. + support.scope = assert( function( el ) { + docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); + return typeof el.querySelectorAll !== "undefined" && + !el.querySelectorAll( ":scope fieldset div" ).length; + } ); + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert( function( el ) { + el.className = "i"; + return !el.getAttribute( "className" ); + } ); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert( function( el ) { + el.appendChild( document.createComment( "" ) ); + return !el.getElementsByTagName( "*" ).length; + } ); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programmatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert( function( el ) { + docElem.appendChild( el ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + } ); + + // ID filter and find + if ( support.getById ) { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute( "id" ) === attrId; + }; + }; + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }; + } else { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode( "id" ); + return node && node.value === attrId; + }; + }; + + // Support: IE 6 - 7 only + // getElementById is not reliable as a find shortcut + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var node, i, elems, + elem = context.getElementById( id ); + + if ( elem ) { + + // Verify the id attribute + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + + // Fall back on getElementsByName + elems = context.getElementsByName( id ); + i = 0; + while ( ( elem = elems[ i++ ] ) ) { + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + } + } + + return []; + } + }; + } + + // Tag + Expr.find[ "TAG" ] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See https://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { + + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert( function( el ) { + + var input; + + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // https://bugs.jquery.com/ticket/12359 + docElem.appendChild( el ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !el.querySelectorAll( "[selected]" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push( "~=" ); + } + + // Support: IE 11+, Edge 15 - 18+ + // IE 11/Edge don't find elements on a `[name='']` query in some cases. + // Adding a temporary attribute to the document before the selection works + // around the issue. + // Interestingly, IE 10 & older don't seem to have the issue. + input = document.createElement( "input" ); + input.setAttribute( "name", "" ); + el.appendChild( input ); + if ( !el.querySelectorAll( "[name='']" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + + whitespace + "*(?:''|\"\")" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !el.querySelectorAll( ":checked" ).length ) { + rbuggyQSA.push( ":checked" ); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibling-combinator selector` fails + if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push( ".#.+[+~]" ); + } + + // Support: Firefox <=3.6 - 5 only + // Old Firefox doesn't throw on a badly-escaped identifier. + el.querySelectorAll( "\\\f" ); + rbuggyQSA.push( "[\\r\\n\\f]" ); + } ); + + assert( function( el ) { + el.innerHTML = "" + + ""; + + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement( "input" ); + input.setAttribute( "type", "hidden" ); + el.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( el.querySelectorAll( "[name=d]" ).length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: IE9-11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + docElem.appendChild( el ).disabled = true; + if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: Opera 10 - 11 only + // Opera 10-11 does not throw on post-comma invalid pseudos + el.querySelectorAll( "*,:x" ); + rbuggyQSA.push( ",.*:" ); + } ); + } + + if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector ) ) ) ) { + + assert( function( el ) { + + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( el, "*" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( el, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + } ); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + ) ); + } : + function( a, b ) { + if ( b ) { + while ( ( b = b.parentNode ) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { + + // Choose the first element that is related to our preferred document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( a == document || a.ownerDocument == preferredDoc && + contains( preferredDoc, a ) ) { + return -1; + } + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( b == document || b.ownerDocument == preferredDoc && + contains( preferredDoc, b ) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + return a == document ? -1 : + b == document ? 1 : + /* eslint-enable eqeqeq */ + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( ( cur = cur.parentNode ) ) { + ap.unshift( cur ); + } + cur = b; + while ( ( cur = cur.parentNode ) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[ i ] === bp[ i ] ) { + i++; + } + + return i ? + + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[ i ], bp[ i ] ) : + + // Otherwise nodes in our document sort first + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + ap[ i ] == preferredDoc ? -1 : + bp[ i ] == preferredDoc ? 1 : + /* eslint-enable eqeqeq */ + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + setDocument( elem ); + + if ( support.matchesSelector && documentIsHTML && + !nonnativeSelectorCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch ( e ) { + nonnativeSelectorCache( expr, true ); + } + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( context.ownerDocument || context ) != document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( elem.ownerDocument || elem ) != document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; +}; + +Sizzle.escape = function( sel ) { + return ( sel + "" ).replace( rcssescape, fcssescape ); +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + + // If no nodeType, this is expected to be an array + while ( ( node = elem[ i++ ] ) ) { + + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[ 1 ] = match[ 1 ].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[ 3 ] = ( match[ 3 ] || match[ 4 ] || + match[ 5 ] || "" ).replace( runescape, funescape ); + + if ( match[ 2 ] === "~=" ) { + match[ 3 ] = " " + match[ 3 ] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[ 1 ] = match[ 1 ].toLowerCase(); + + if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { + + // nth-* requires argument + if ( !match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[ 4 ] = +( match[ 4 ] ? + match[ 5 ] + ( match[ 6 ] || 1 ) : + 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); + match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); + + // other types prohibit arguments + } else if ( match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[ 6 ] && match[ 2 ]; + + if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[ 3 ] ) { + match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + + // Get excess from tokenize (recursively) + ( excess = tokenize( unquoted, true ) ) && + + // advance to the next closing parenthesis + ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { + + // excess is a negative index + match[ 0 ] = match[ 0 ].slice( 0, excess ); + match[ 2 ] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { + return true; + } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + ( pattern = new RegExp( "(^|" + whitespace + + ")" + className + "(" + whitespace + "|$)" ) ) && classCache( + className, function( elem ) { + return pattern.test( + typeof elem.className === "string" && elem.className || + typeof elem.getAttribute !== "undefined" && + elem.getAttribute( "class" ) || + "" + ); + } ); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + /* eslint-disable max-len */ + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + /* eslint-enable max-len */ + + }; + }, + + "CHILD": function( type, what, _argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, _context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( ( node = node[ dir ] ) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( ( node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + + // Use previously-cached element index if available + if ( useCache ) { + + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + + // Use the same loop as above to seek `elem` from the start + while ( ( node = ++nodeIndex && node && node[ dir ] || + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || + ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction( function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[ i ] ); + seed[ idx ] = !( matches[ idx ] = matched[ i ] ); + } + } ) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + + // Potentially complex pseudos + "not": markFunction( function( selector ) { + + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction( function( seed, matches, _context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( ( elem = unmatched[ i ] ) ) { + seed[ i ] = !( matches[ i ] = elem ); + } + } + } ) : + function( elem, _context, xml ) { + input[ 0 ] = elem; + matcher( input, null, xml, results ); + + // Don't keep the element (issue #299) + input[ 0 ] = null; + return !results.pop(); + }; + } ), + + "has": markFunction( function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + } ), + + "contains": markFunction( function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; + }; + } ), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + + // lang value must be a valid identifier + if ( !ridentifier.test( lang || "" ) ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( ( elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); + return false; + }; + } ), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && + ( !document.hasFocus || document.hasFocus() ) && + !!( elem.type || elem.href || ~elem.tabIndex ); + }, + + // Boolean properties + "enabled": createDisabledPseudo( false ), + "disabled": createDisabledPseudo( true ), + + "checked": function( elem ) { + + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return ( nodeName === "input" && !!elem.checked ) || + ( nodeName === "option" && !!elem.selected ); + }, + + "selected": function( elem ) { + + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + // eslint-disable-next-line no-unused-expressions + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos[ "empty" ]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( ( attr = elem.getAttribute( "type" ) ) == null || + attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo( function() { + return [ 0 ]; + } ), + + "last": createPositionalPseudo( function( _matchIndexes, length ) { + return [ length - 1 ]; + } ), + + "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + } ), + + "even": createPositionalPseudo( function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "odd": createPositionalPseudo( function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? + argument + length : + argument > length ? + length : + argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ) + } +}; + +Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || ( match = rcomma.exec( soFar ) ) ) { + if ( match ) { + + // Don't consume trailing commas as valid + soFar = soFar.slice( match[ 0 ].length ) || soFar; + } + groups.push( ( tokens = [] ) ); + } + + matched = false; + + // Combinators + if ( ( match = rcombinators.exec( soFar ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + + // Cast descendant combinators to space + type: match[ 0 ].replace( rtrim, " " ) + } ); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || + ( match = preFilters[ type ]( match ) ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + type: type, + matches: match + } ); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[ i ].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || ( elem[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || + ( outerCache[ elem.uniqueID ] = {} ); + + if ( skip && skip === elem.nodeName.toLowerCase() ) { + elem = elem[ dir ] || elem; + } else if ( ( oldCache = uniqueCache[ key ] ) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return ( newCache[ 2 ] = oldCache[ 2 ] ); + } else { + + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[ i ]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[ 0 ]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[ i ], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( ( elem = unmatched[ i ] ) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction( function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( + selector || "*", + context.nodeType ? [ context ] : context, + [] + ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( ( elem = temp[ i ] ) ) { + matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) ) { + + // Restore matcherIn since elem is not yet a final match + temp.push( ( matcherIn[ i ] = elem ) ); + } + } + postFinder( null, ( matcherOut = [] ), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) && + ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { + + seed[ temp ] = !( results[ temp ] = elem ); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + } ); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[ 0 ].type ], + implicitRelative = leadingRelative || Expr.relative[ " " ], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + ( checkContext = context ).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { + matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; + } else { + matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[ j ].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens + .slice( 0, i - 1 ) + .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), + + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), + len = elems.length; + + if ( outermost ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + outermostContext = context == document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( !context && elem.ownerDocument != document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( ( matcher = elementMatchers[ j++ ] ) ) { + if ( matcher( elem, context || document, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + + // They will have gone through all possible matchers + if ( ( elem = !matcher && elem ) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( ( matcher = setMatchers[ j++ ] ) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !( unmatched[ i ] || setMatched[ i ] ) ) { + setMatched[ i ] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[ i ] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( + selector, + matcherFromGroupMatchers( elementMatchers, setMatchers ) + ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( ( selector = compiled.selector || selector ) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[ 0 ] = match[ 0 ].slice( 0 ); + if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { + + context = ( Expr.find[ "ID" ]( token.matches[ 0 ] + .replace( runescape, funescape ), context ) || [] )[ 0 ]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[ i ]; + + // Abort if we hit a combinator + if ( Expr.relative[ ( type = token.type ) ] ) { + break; + } + if ( ( find = Expr.find[ type ] ) ) { + + // Search, expanding context for leading sibling combinators + if ( ( seed = find( + token.matches[ 0 ].replace( runescape, funescape ), + rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || + context + ) ) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert( function( el ) { + + // Should return 1, but returns 4 (following) + return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; +} ); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert( function( el ) { + el.innerHTML = ""; + return el.firstChild.getAttribute( "href" ) === "#"; +} ) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + } ); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert( function( el ) { + el.innerHTML = ""; + el.firstChild.setAttribute( "value", "" ); + return el.firstChild.getAttribute( "value" ) === ""; +} ) ) { + addHandle( "value", function( elem, _name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + } ); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert( function( el ) { + return el.getAttribute( "disabled" ) == null; +} ) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; + } + } ); +} + +return Sizzle; + +} )( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; + +// Deprecated +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; +jQuery.escapeSelector = Sizzle.escape; + + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + + + +function nodeName( elem, name ) { + + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + +}; +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); + + + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Filtered directly for both simple and complex selectors + return jQuery.filter( qualifier, elements, not ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, _i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, _i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, _i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( elem.contentDocument != null && + + // Support: IE 11+ + // elements with no `data` attribute has an object + // `contentDocument` with a `null` prototype. + getProto( elem.contentDocument ) ) { + + return elem.contentDocument; + } + + // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && toType( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && isFunction( ( method = value.promise ) ) ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && isFunction( ( method = value.then ) ) ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + + // Support: Android 4.0 only + // Strict mode functions invoked without .call/.apply get global-object context + reject.apply( undefined, [ value ] ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + "catch": function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( _i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( isFunction( then ) ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.stackTrace ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the stack, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getStackHook ) { + process.stackTrace = jQuery.Deferred.getStackHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onProgress ) ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onFulfilled ) ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onRejected ) ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // rejected_handlers.disable + // fulfilled_handlers.disable + tuples[ 3 - i ][ 3 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock, + + // progress_handlers.lock + tuples[ 0 ][ 3 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the master Deferred + master = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + master.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( master.state() === "pending" || + isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return master.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); + } + + return master.promise(); + } +} ); + + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +jQuery.Deferred.exceptionHook = function( error, stack ) { + + // Support: IE 8 - 9 only + // Console exists when dev tools are open, which can happen at any time + if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { + window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + } +}; + + + + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + + + + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +// Support: IE <=9 - 10 only +// Older IE sometimes signals "interactive" too soon +if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( toType( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, _key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +}; + + +// Matches dashed string for camelizing +var rmsPrefix = /^-ms-/, + rdashAlpha = /-([a-z])/g; + +// Used by camelCase as callback to replace() +function fcamelCase( _all, letter ) { + return letter.toUpperCase(); +} + +// Convert dashed to camelCase; used by the css and data modules +// Support: IE <=9 - 11, Edge 12 - 15 +// Microsoft forgot to hump their vendor prefix (#9572) +function camelCase( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); +} +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ camelCase( prop ) ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( camelCase ); + } else { + key = camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45 + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11 only + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var documentElement = document.documentElement; + + + + var isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ); + }, + composed = { composed: true }; + + // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only + // Check attachment across shadow DOM boundaries when possible (gh-3504) + // Support: iOS 10.0-10.2 only + // Early iOS 10 versions support `attachShadow` but not `getRootNode`, + // leading to errors. We need to check for `getRootNode`. + if ( documentElement.getRootNode ) { + isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ) || + elem.getRootNode( composed ) === elem.ownerDocument; + }; + } +var isHiddenWithinTree = function( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + + // Otherwise, check computed style + // Support: Firefox <=43 - 45 + // Disconnected elements can have computed display: none, so first confirm that elem is + // in the document. + isAttached( elem ) && + + jQuery.css( elem, "display" ) === "none"; + }; + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, scale, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = elem.nodeType && + ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Support: Firefox <=54 + // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) + initial = initial / 2; + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + while ( maxIterations-- ) { + + // Evaluate and update our best guess (doubling guesses that zero out). + // Finish if the scale equals or crosses 1 (making the old*new product non-positive). + jQuery.style( elem, prop, initialInUnit + unit ); + if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { + maxIterations = 0; + } + initialInUnit = initialInUnit / scale; + + } + + initialInUnit = initialInUnit * 2; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); + +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); + + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; + + // Support: IE <=9 only + // IE <=9 replaces "; + support.option = !!div.lastChild; +} )(); + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
" ], + col: [ 2, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + _default: [ 0, "", "" ] +}; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// Support: IE <=9 only +if ( !support.option ) { + wrapMap.optgroup = wrapMap.option = [ 1, "" ]; +} + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, attached, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + attached = isAttached( elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( attached ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +var + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 - 11+ +// focus() and blur() are asynchronous, except when they are no-op. +// So expect focus to be synchronous when the element is already active, +// and blur to be synchronous when the element is not already active. +// (focus and blur are always synchronous in other supported browsers, +// this just defines when we can count on it). +function expectSync( elem, type ) { + return ( elem === safeActiveElement() ) === ( type === "focus" ); +} + +// Support: IE <=9 only +// Accessing document.activeElement can throw unexpectedly +// https://bugs.jquery.com/ticket/13393 +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Only attach events to objects that accept data + if ( !acceptData( elem ) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = Object.create( null ); + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( nativeEvent ), + + handlers = ( + dataPriv.get( this, "events" ) || Object.create( null ) + )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // If the event is namespaced, then each handler is only invoked if it is + // specially universal or its namespaces are a superset of the event's. + if ( !event.rnamespace || handleObj.namespace === false || + event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + + // Utilize native event to ensure correct state for checkable inputs + setup: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Claim the first handler + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + // dataPriv.set( el, "click", ... ) + leverageNative( el, "click", returnTrue ); + } + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Force setup before triggering a click + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + leverageNative( el, "click" ); + } + + // Return non-false to allow normal event-path propagation + return true; + }, + + // For cross-browser consistency, suppress native .click() on links + // Also prevent it if we're currently inside a leveraged native-event stack + _default: function( event ) { + var target = event.target; + return rcheckableType.test( target.type ) && + target.click && nodeName( target, "input" ) && + dataPriv.get( target, "click" ) || + nodeName( target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +// Ensure the presence of an event listener that handles manually-triggered +// synthetic events by interrupting progress until reinvoked in response to +// *native* events that it fires directly, ensuring that state changes have +// already occurred before other listeners are invoked. +function leverageNative( el, type, expectSync ) { + + // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add + if ( !expectSync ) { + if ( dataPriv.get( el, type ) === undefined ) { + jQuery.event.add( el, type, returnTrue ); + } + return; + } + + // Register the controller as a special universal handler for all event namespaces + dataPriv.set( el, type, false ); + jQuery.event.add( el, type, { + namespace: false, + handler: function( event ) { + var notAsync, result, + saved = dataPriv.get( this, type ); + + if ( ( event.isTrigger & 1 ) && this[ type ] ) { + + // Interrupt processing of the outer synthetic .trigger()ed event + // Saved data should be false in such cases, but might be a leftover capture object + // from an async native handler (gh-4350) + if ( !saved.length ) { + + // Store arguments for use when handling the inner native event + // There will always be at least one argument (an event object), so this array + // will not be confused with a leftover capture object. + saved = slice.call( arguments ); + dataPriv.set( this, type, saved ); + + // Trigger the native event and capture its result + // Support: IE <=9 - 11+ + // focus() and blur() are asynchronous + notAsync = expectSync( this, type ); + this[ type ](); + result = dataPriv.get( this, type ); + if ( saved !== result || notAsync ) { + dataPriv.set( this, type, false ); + } else { + result = {}; + } + if ( saved !== result ) { + + // Cancel the outer synthetic event + event.stopImmediatePropagation(); + event.preventDefault(); + return result.value; + } + + // If this is an inner synthetic event for an event with a bubbling surrogate + // (focus or blur), assume that the surrogate already propagated from triggering the + // native event and prevent that from happening again here. + // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the + // bubbling surrogate propagates *after* the non-bubbling base), but that seems + // less bad than duplication. + } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { + event.stopPropagation(); + } + + // If this is a native event triggered above, everything is now in order + // Fire an inner synthetic event with the original arguments + } else if ( saved.length ) { + + // ...and capture the result + dataPriv.set( this, type, { + value: jQuery.event.trigger( + + // Support: IE <=9 - 11+ + // Extend with the prototype to reset the above stopImmediatePropagation() + jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), + saved.slice( 1 ), + this + ) + } ); + + // Abort handling of the native event + event.stopImmediatePropagation(); + } + } + } ); +} + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + code: true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + + which: function( event ) { + var button = event.button; + + // Add which for key events + if ( event.which == null && rkeyEvent.test( event.type ) ) { + return event.charCode != null ? event.charCode : event.keyCode; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { + if ( button & 1 ) { + return 1; + } + + if ( button & 2 ) { + return 3; + } + + if ( button & 4 ) { + return 2; + } + + return 0; + } + + return event.which; + } +}, jQuery.event.addProp ); + +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { + jQuery.event.special[ type ] = { + + // Utilize native event if possible so blur/focus sequence is correct + setup: function() { + + // Claim the first handler + // dataPriv.set( this, "focus", ... ) + // dataPriv.set( this, "blur", ... ) + leverageNative( this, type, expectSync ); + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function() { + + // Force setup before trigger + leverageNative( this, type ); + + // Return non-false to allow normal event-path propagation + return true; + }, + + delegateType: delegateType + }; +} ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + // Support: IE <=10 - 11, Edge 12 - 13 only + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( elem ).children( "tbody" )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.get( src ); + events = pdataOld.events; + + if ( events ) { + dataPriv.remove( dest, "handle events" ); + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = flat( args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( valueIsFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( valueIsFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl && !node.noModule ) { + jQuery._evalUrl( node.src, { + nonce: node.nonce || node.getAttribute( "nonce" ) + }, doc ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && isAttached( node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html; + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = isAttached( elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + +var swap = function( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + container.style.cssText = "position:absolute;left:-11111px;width:60px;" + + "margin-top:1px;padding:0;border:0"; + div.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + + "margin:auto;border:1px;padding:1px;" + + "width:60%;top:1%"; + documentElement.appendChild( container ).appendChild( div ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + + // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 + // Some styles come back with percentage values, even though they shouldn't + div.style.right = "60%"; + pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + + // Support: IE 9 - 11 only + // Detect misreporting of content dimensions for box-sizing:border-box elements + boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; + + // Support: IE 9 only + // Detect overflow:scroll screwiness (gh-3699) + // Support: Chrome <=64 + // Don't get tricked when zoom affects offsetWidth (gh-4029) + div.style.position = "absolute"; + scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + function roundPixelMeasures( measure ) { + return Math.round( parseFloat( measure ) ); + } + + var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, + reliableTrDimensionsVal, reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + jQuery.extend( support, { + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelBoxStyles: function() { + computeStyleTests(); + return pixelBoxStylesVal; + }, + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + }, + scrollboxSize: function() { + computeStyleTests(); + return scrollboxSizeVal; + }, + + // Support: IE 9 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Behavior in IE 9 is more subtle than in newer versions & it passes + // some versions of this test; make sure not to make it pass there! + reliableTrDimensions: function() { + var table, tr, trChild, trStyle; + if ( reliableTrDimensionsVal == null ) { + table = document.createElement( "table" ); + tr = document.createElement( "tr" ); + trChild = document.createElement( "div" ); + + table.style.cssText = "position:absolute;left:-11111px"; + tr.style.height = "1px"; + trChild.style.height = "9px"; + + documentElement + .appendChild( table ) + .appendChild( tr ) + .appendChild( trChild ); + + trStyle = window.getComputedStyle( tr ); + reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; + + documentElement.removeChild( table ); + } + return reliableTrDimensionsVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !isAttached( elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style, + vendorProps = {}; + +// Return a vendor-prefixed property or undefined +function vendorPropName( name ) { + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property +function finalPropName( name ) { + var final = jQuery.cssProps[ name ] || vendorProps[ name ]; + + if ( final ) { + return final; + } + if ( name in emptyStyle ) { + return name; + } + return vendorProps[ name ] = vendorPropName( name ) || name; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }; + +function setPositiveNumber( _elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + if ( box === "margin" ) { + delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + + // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter + // Use an explicit zero to avoid NaN (gh-3964) + ) ) || 0; + } + + return delta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). + // Fake content-box until we know it's needed to know the true value. + boxSizingNeeded = !support.boxSizingReliable() || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox, + + val = curCSS( elem, dimension, styles ), + offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); + + // Support: Firefox <=54 + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + + // Support: IE 9 - 11 only + // Use offsetWidth/offsetHeight for when box sizing is unreliable. + // In those cases, the computed value can be trusted to be border-box. + if ( ( !support.boxSizingReliable() && isBorderBox || + + // Support: IE 10 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Interestingly, in some cases IE 9 doesn't suffer from this issue. + !support.reliableTrDimensions() && nodeName( elem, "tr" ) || + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + val === "auto" || + + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) + !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && + + // Make sure the element is visible & connected + elem.getClientRects().length ) { + + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Where available, offsetWidth/offsetHeight approximate border box dimensions. + // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the + // retrieved value as a content box dimension. + valueIsBorderBox = offsetProp in elem; + if ( valueIsBorderBox ) { + val = elem[ offsetProp ]; + } + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "gridArea": true, + "gridColumn": true, + "gridColumnEnd": true, + "gridColumnStart": true, + "gridRow": true, + "gridRowEnd": true, + "gridRowStart": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append + // "px" to a few hardcoded values. + if ( type === "number" && !isCustomProp ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( _i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + + // Only read styles.position if the test has a chance to fail + // to avoid forcing a reflow. + scrollboxSizeBuggy = !support.scrollboxSize() && + styles.position === "absolute", + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) + boxSizingNeeded = scrollboxSizeBuggy || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra ? + boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ) : + 0; + + // Account for unreliable border-box dimensions by comparing offset* to computed and + // faking a content-box to get border and padding (gh-3699) + if ( isBorderBox && scrollboxSizeBuggy ) { + subtract -= Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + parseFloat( styles[ dimension ] ) - + boxModelAdjustment( elem, dimension, "border", false, styles ) - + 0.5 + ); + } + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && ( + jQuery.cssHooks[ tween.prop ] || + tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 15 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isValidValue = type === "string" || Array.isArray( value ); + + if ( typeof stateVal === "boolean" && isValidValue ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( isValidValue ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = classesToArray( value ); + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +support.focusin = "onfocusin" in window; + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( + dataPriv.get( cur, "events" ) || Object.create( null ) + )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + + // Handle: regular nodes (via `this.ownerDocument`), window + // (via `this.document`) & document (via `this`). + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = { guid: Date.now() }; + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) { + xml = undefined; + } + + if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + if ( a == null ) { + return ""; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ) + .filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ) + .map( function( _i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() + " " ] = + ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) + .concat( match[ 2 ] ); + } + } + match = responseHeaders[ key.toLowerCase() + " " ]; + } + return match == null ? null : match.join( ", " ); + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 15 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Use a noop converter for missing script + if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { + s.converters[ "text script" ] = function() {}; + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( _i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + +jQuery.ajaxPrefilter( function( s ) { + var i; + for ( i in s.headers ) { + if ( i.toLowerCase() === "content-type" ) { + s.contentType = s.headers[ i ] || ""; + } + } +} ); + + +jQuery._evalUrl = function( url, options, doc ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + + // Only evaluate the response if it is successful (gh-4126) + // dataFilter is not invoked for failure responses, so using it instead + // of the default converter is kludgy but it works. + converters: { + "text script": function() {} + }, + dataFilter: function( response ) { + jQuery.globalEval( response, options, doc ); + } + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.ontimeout = + xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain or forced-by-attrs requests + if ( s.crossDomain || s.scriptAttrs ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( " + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

API Reference

+

The following section outlines the API of discord.py.

+
+

Note

+

This module uses the Python logging module to log diagnostic and errors +in an output independent way. If the logging module is not configured, +these logs will not be output anywhere. See Setting Up Logging for +more information on how to set up and use the logging module with +discord.py.

+
+ +
+

Clients

+
+

Client

+
+
+class discord.Client(*, intents, loop=None, **options)
+

Represents a client connection that connects to Discord. +This class is used to interact with the Discord WebSocket and API.

+

A number of options can be passed to the Client.

+
+
Parameters
+
    +
  • max_messages (Optional[int]) –

    The maximum number of messages to store in the internal message cache. +This defaults to 1000. Passing in None disables the message cache.

    +
    +

    Changed in version 1.3: Allow disabling the message cache and change the default size to 1000.

    +
    +

  • +
  • loop (Optional[asyncio.AbstractEventLoop]) – The asyncio.AbstractEventLoop to use for asynchronous operations. +Defaults to None, in which case the default event loop is used via +asyncio.get_event_loop().

  • +
  • connector (Optional[aiohttp.BaseConnector]) – The connector to use for connection pooling.

  • +
  • proxy (Optional[str]) – Proxy URL.

  • +
  • proxy_auth (Optional[aiohttp.BasicAuth]) – An object that represents proxy HTTP Basic Authorization.

  • +
  • shard_id (Optional[int]) – Integer starting at 0 and less than shard_count.

  • +
  • shard_count (Optional[int]) – The total number of shards.

  • +
  • application_id (int) – The client’s application ID.

  • +
  • intents (Intents) –

    The intents that you want to enable for the session. This is a way of +disabling and enabling certain gateway events from triggering and being sent.

    +
    +

    New in version 1.5.

    +
    +

  • +
  • member_cache_flags (MemberCacheFlags) –

    Allows for finer control over how the library caches members. +If not given, defaults to cache as much as possible with the +currently selected intents.

    +
    +

    New in version 1.5.

    +
    +

  • +
  • chunk_guilds_at_startup (bool) –

    Indicates if on_ready() should be delayed to chunk all guilds +at start-up if necessary. This operation is incredibly slow for large +amounts of guilds. The default is True if Intents.members +is True.

    +
    +

    New in version 1.5.

    +
    +

  • +
  • status (Optional[Status]) – A status to start your presence with upon logging on to Discord.

  • +
  • activity (Optional[BaseActivity]) – An activity to start your presence with upon logging on to Discord.

  • +
  • allowed_mentions (Optional[AllowedMentions]) –

    Control how the client handles mentions by default on every message sent.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • heartbeat_timeout (float) – The maximum numbers of seconds before timing out and restarting the +WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if +processing the initial packets take too long to the point of disconnecting +you. The default timeout is 60 seconds.

  • +
  • guild_ready_timeout (float) –

    The maximum number of seconds to wait for the GUILD_CREATE stream to end before +preparing the member cache and firing READY. The default timeout is 2 seconds.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • assume_unsync_clock (bool) –

    Whether to assume the system clock is unsynced. This applies to the ratelimit handling +code. If this is set to True, the default, then the library uses the time to reset +a rate limit bucket given by Discord. If this is False then your system clock is +used to calculate how long to sleep for. If this is set to False it is recommended to +sync your system clock to Google’s NTP server.

    +
    +

    New in version 1.3.

    +
    +

  • +
  • enable_debug_events (bool) –

    Whether to enable events that are useful only for debugging gateway related information.

    +

    Right now this involves on_socket_raw_receive() and on_socket_raw_send(). If +this is False then those events will not be dispatched (due to performance considerations). +To enable these events, this must be set to True. Defaults to False.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
+
+
+ws
+

The websocket gateway the client is currently connected to. Could be None.

+
+ +
+
+loop
+

The event loop that the client uses for asynchronous operations.

+
+
Type
+

asyncio.AbstractEventLoop

+
+
+
+ +
+
+@event
+

A decorator that registers an event to listen to.

+

You can find more info about the events on the documentation below.

+

The events must be a coroutine, if not, TypeError is raised.

+

Example

+
@client.event
+async def on_ready():
+    print('Ready!')
+
+
+
+
Raises
+

TypeError – The coroutine passed is not actually a coroutine.

+
+
+
+ +
+
+async for ... in fetch_guilds(*, limit=100, before=None, after=None)
+

Retrieves an AsyncIterator that enables receiving your guilds.

+
+

Note

+

Using this, you will only receive Guild.owner, Guild.icon, +Guild.id, and Guild.name per Guild.

+
+
+

Note

+

This method is an API call. For general usage, consider guilds instead.

+
+

Examples

+

Usage

+
async for guild in client.fetch_guilds(limit=150):
+    print(guild.name)
+
+
+

Flattening into a list

+
guilds = await client.fetch_guilds(limit=150).flatten()
+# guilds is now a list of Guild...
+
+
+

All parameters are optional.

+
+
Parameters
+
    +
  • limit (Optional[int]) – The number of guilds to retrieve. +If None, it retrieves every guild you have access to. Note, however, +that this would make it a slow operation. +Defaults to 100.

  • +
  • before (Union[abc.Snowflake, datetime.datetime]) – Retrieves guilds before this date or object. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • after (Union[abc.Snowflake, datetime.datetime]) – Retrieve guilds after this date or object. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
+
+
Raises
+

HTTPException – Getting the guilds failed.

+
+
Yields
+

Guild – The guild with the guild data parsed.

+
+
+
+ +
+
+property latency
+

Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds.

+

This could be referred to as the Discord WebSocket protocol latency.

+
+
Type
+

float

+
+
+
+ +
+
+is_ws_ratelimited()
+

bool: Whether the websocket is currently rate limited.

+

This can be useful to know when deciding whether you should query members +using HTTP or via the gateway.

+
+

New in version 1.6.

+
+
+ +
+
+property user
+

Represents the connected client. None if not logged in.

+
+
Type
+

Optional[ClientUser]

+
+
+
+ +
+
+property guilds
+

The guilds that the connected client is a member of.

+
+
Type
+

List[Guild]

+
+
+
+ +
+
+property emojis
+

The emojis that the connected client has.

+
+
Type
+

List[Emoji]

+
+
+
+ +
+
+property stickers
+

The stickers that the connected client has.

+
+

New in version 2.0.

+
+
+
Type
+

List[GuildSticker]

+
+
+
+ +
+
+property cached_messages
+

Read-only list of messages the connected client has cached.

+
+

New in version 1.1.

+
+
+
Type
+

Sequence[Message]

+
+
+
+ +
+
+property private_channels
+

The private channels that the connected client is participating on.

+
+

Note

+

This returns only up to 128 most recent private channels due to an internal working +on how Discord deals with private channels.

+
+
+
Type
+

List[abc.PrivateChannel]

+
+
+
+ +
+
+property voice_clients
+

Represents a list of voice connections.

+

These are usually VoiceClient instances.

+
+
Type
+

List[VoiceProtocol]

+
+
+
+ +
+
+property application_id
+

The client’s application ID.

+

If this is not passed via __init__ then this is retrieved +through the gateway when an event contains the data. Usually +after on_connect() is called.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[int]

+
+
+
+ +
+
+property application_flags
+

The client’s application flags.

+
+

New in version 2.0.

+
+
+
Type
+

ApplicationFlags

+
+
+
+ +
+
+is_ready()
+

bool: Specifies if the client’s internal cache is ready for use.

+
+ +
+
+await on_error(event_method, *args, **kwargs)
+

This function is a coroutine.

+

The default error handler provided by the client.

+

By default this prints to sys.stderr however it could be +overridden to have a different implementation. +Check on_error() for more details.

+
+ +
+
+await before_identify_hook(shard_id, *, initial=False)
+

This function is a coroutine.

+

A hook that is called before IDENTIFYing a session. This is useful +if you wish to have more control over the synchronization of multiple +IDENTIFYing clients.

+

The default implementation sleeps for 5 seconds.

+
+

New in version 1.4.

+
+
+
Parameters
+
    +
  • shard_id (int) – The shard ID that requested being IDENTIFY’d

  • +
  • initial (bool) – Whether this IDENTIFY is the first initial IDENTIFY.

  • +
+
+
+
+ +
+
+await login(token)
+

This function is a coroutine.

+

Logs in the client with the specified credentials.

+
+
Parameters
+

token (str) – The authentication token. Do not prefix this token with +anything as the library will do it for you.

+
+
Raises
+
    +
  • LoginFailure – The wrong credentials are passed.

  • +
  • HTTPException – An unknown HTTP related error occurred, + usually when it isn’t 200 or the known incorrect credentials + passing status code.

  • +
+
+
+
+ +
+
+await connect(*, reconnect=True)
+

This function is a coroutine.

+

Creates a websocket connection and lets the websocket listen +to messages from Discord. This is a loop that runs the entire +event system and miscellaneous aspects of the library. Control +is not resumed until the WebSocket connection is terminated.

+
+
Parameters
+

reconnect (bool) – If we should attempt reconnecting, either due to internet +failure or a specific failure on Discord’s part. Certain +disconnects that lead to bad state will not be handled (such as +invalid sharding payloads or bad tokens).

+
+
Raises
+
    +
  • GatewayNotFound – If the gateway to connect to Discord is not found. Usually if this + is thrown then there is a Discord API outage.

  • +
  • ConnectionClosed – The websocket connection has been terminated.

  • +
+
+
+
+ +
+
+await close()
+

This function is a coroutine.

+

Closes the connection to Discord.

+
+ +
+
+clear()
+

Clears the internal state of the bot.

+

After this, the bot can be considered “re-opened”, i.e. is_closed() +and is_ready() both return False along with the bot’s internal +cache cleared.

+
+ +
+
+await start(token, *, reconnect=True)
+

This function is a coroutine.

+

A shorthand coroutine for login() + setup() + connect().

+
+
Raises
+

TypeError – An unexpected keyword argument was received.

+
+
+
+ +
+
+await setup()
+

This function is a coroutine.

+

A coroutine to be called to setup the bot, by default this is blank.

+

To perform asynchronous setup after the bot is logged in but before +it has connected to the Websocket, overwrite this coroutine.

+
+

New in version 2.0.

+
+
+ +
+
+run(*args, **kwargs)
+

A blocking call that abstracts away the event loop +initialisation from you.

+

If you want more control over the event loop then this +function should not be used. Use start() coroutine +or connect() + login().

+

Roughly Equivalent to:

+
try:
+    loop.run_until_complete(start(*args, **kwargs))
+except KeyboardInterrupt:
+    loop.run_until_complete(close())
+    # cancel all tasks lingering
+finally:
+    loop.close()
+
+
+
+

Warning

+

This function must be the last function to call due to the fact that it +is blocking. That means that registration of events or anything being +called after this function call will not execute until it returns.

+
+
+ +
+
+is_closed()
+

bool: Indicates if the websocket connection is closed.

+
+ +
+
+property activity
+

The activity being used upon +logging in.

+
+
Type
+

Optional[BaseActivity]

+
+
+
+ +
+
+property status
+

Status: +The status being used upon logging on to Discord.

+
+

New in version 2.0.

+
+
+ +
+
+property allowed_mentions
+

The allowed mention configuration.

+
+

New in version 1.4.

+
+
+
Type
+

Optional[AllowedMentions]

+
+
+
+ +
+
+property intents
+

The intents configured for this connection.

+
+

New in version 1.5.

+
+
+
Type
+

Intents

+
+
+
+ +
+
+property users
+

Returns a list of all the users the bot can see.

+
+
Type
+

List[User]

+
+
+
+ +
+
+get_channel(id, /)
+

Returns a channel or thread with the given ID.

+
+
Parameters
+

id (int) – The ID to search for.

+
+
Returns
+

The returned channel or None if not found.

+
+
Return type
+

Optional[Union[abc.GuildChannel, Thread, abc.PrivateChannel]]

+
+
+
+ +
+
+get_partial_messageable(id, *, type=None)
+

Returns a partial messageable with the given channel ID.

+

This is useful if you have a channel_id but don’t want to do an API call +to send messages to it.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • id (int) – The channel ID to create a partial messageable for.

  • +
  • type (Optional[ChannelType]) – The underlying channel type for the partial messageable.

  • +
+
+
Returns
+

The partial messageable

+
+
Return type
+

PartialMessageable

+
+
+
+ +
+
+get_stage_instance(id, /)
+

Returns a stage instance with the given stage channel ID.

+
+

New in version 2.0.

+
+
+
Parameters
+

id (int) – The ID to search for.

+
+
Returns
+

The returns stage instance of None if not found.

+
+
Return type
+

Optional[StageInstance]

+
+
+
+ +
+
+get_guild(id, /)
+

Returns a guild with the given ID.

+
+
Parameters
+

id (int) – The ID to search for.

+
+
Returns
+

The guild or None if not found.

+
+
Return type
+

Optional[Guild]

+
+
+
+ +
+
+get_user(id, /)
+

Returns a user with the given ID.

+
+
Parameters
+

id (int) – The ID to search for.

+
+
Returns
+

The user or None if not found.

+
+
Return type
+

Optional[User]

+
+
+
+ +
+
+await try_user(id, /)
+

This function is a coroutine. +Returns a user with the given ID. If not from cache, the user will be requested from the API.

+

You do not have to share any guilds with the user to get this information from the API, +however many operations do require that you do.

+
+

Note

+

This method is an API call. If you have discord.Intents.members and member cache enabled, consider get_user() instead.

+
+
+

New in version 2.0.

+
+
+
Parameters
+

id (int) – The ID to search for.

+
+
Returns
+

The user or None if not found.

+
+
Return type
+

Optional[User]

+
+
+
+ +
+
+get_emoji(id, /)
+

Returns an emoji with the given ID.

+
+
Parameters
+

id (int) – The ID to search for.

+
+
Returns
+

The custom emoji or None if not found.

+
+
Return type
+

Optional[Emoji]

+
+
+
+ +
+
+get_sticker(id, /)
+

Returns a guild sticker with the given ID.

+
+

New in version 2.0.

+
+
+

Note

+

To retrieve standard stickers, use fetch_sticker(). +or fetch_premium_sticker_packs().

+
+
+
Returns
+

The sticker or None if not found.

+
+
Return type
+

Optional[GuildSticker]

+
+
+
+ +
+
+for ... in get_all_channels()
+

A generator that retrieves every abc.GuildChannel the client can ‘access’.

+

This is equivalent to:

+
for guild in client.guilds:
+    for channel in guild.channels:
+        yield channel
+
+
+
+

Note

+

Just because you receive a abc.GuildChannel does not mean that +you can communicate in said channel. abc.GuildChannel.permissions_for() should +be used for that.

+
+
+
Yields
+

abc.GuildChannel – A channel the client can ‘access’.

+
+
+
+ +
+
+for ... in get_all_members()
+

Returns a generator with every Member the client can see.

+

This is equivalent to:

+
for guild in client.guilds:
+    for member in guild.members:
+        yield member
+
+
+
+
Yields
+

Member – A member the client can see.

+
+
+
+ +
+
+await wait_until_ready()
+

This function is a coroutine.

+

Waits until the client’s internal cache is all ready.

+
+ +
+
+wait_for(event, *, check=None, timeout=None)
+

This function is a coroutine.

+

Waits for a WebSocket event to be dispatched.

+

This could be used to wait for a user to reply to a message, +or to react to a message, or to edit a message in a self-contained +way.

+

The timeout parameter is passed onto asyncio.wait_for(). By default, +it does not timeout. Note that this does propagate the +asyncio.TimeoutError for you in case of timeout and is provided for +ease of use.

+

In case the event returns multiple arguments, a tuple containing those +arguments is returned instead. Please check the +documentation for a list of events and their +parameters.

+

This function returns the first event that meets the requirements.

+

Examples

+

Waiting for a user reply:

+
@client.event
+async def on_message(message):
+    if message.content.startswith('$greet'):
+        channel = message.channel
+        await channel.send('Say hello!')
+
+        def check(m):
+            return m.content == 'hello' and m.channel == channel
+
+        msg = await client.wait_for('message', check=check)
+        await channel.send(f'Hello {msg.author}!')
+
+
+

Waiting for a thumbs up reaction from the message author:

+
@client.event
+async def on_message(message):
+    if message.content.startswith('$thumb'):
+        channel = message.channel
+        await channel.send('Send me that 👍 reaction, mate')
+
+        def check(reaction, user):
+            return user == message.author and str(reaction.emoji) == '👍'
+
+        try:
+            reaction, user = await client.wait_for('reaction_add', timeout=60.0, check=check)
+        except asyncio.TimeoutError:
+            await channel.send('👎')
+        else:
+            await channel.send('👍')
+
+
+
+
Parameters
+
    +
  • event (str) – The event name, similar to the event reference, +but without the on_ prefix, to wait for.

  • +
  • check (Optional[Callable[…, bool]]) – A predicate to check what to wait for. The arguments must meet the +parameters of the event being waited for.

  • +
  • timeout (Optional[float]) – The number of seconds to wait before timing out and raising +asyncio.TimeoutError.

  • +
+
+
Raises
+

asyncio.TimeoutError – If a timeout is provided and it was reached.

+
+
Returns
+

Returns no arguments, a single argument, or a tuple of multiple +arguments that mirrors the parameters passed in the +event reference.

+
+
Return type
+

Any

+
+
+
+ +
+
+await change_presence(*, activity=None, status=None)
+

This function is a coroutine.

+

Changes the client’s presence.

+

Example

+
game = discord.Game("with the API")
+await client.change_presence(status=discord.Status.idle, activity=game)
+
+
+
+

Changed in version 2.0: Removed the afk keyword-only parameter.

+
+
+
Parameters
+
    +
  • activity (Optional[BaseActivity]) – The activity being done. None if no currently active activity is done.

  • +
  • status (Optional[Status]) – Indicates what status to change to. If None, then +Status.online is used.

  • +
+
+
Raises
+

InvalidArgument – If the activity parameter is not the proper type.

+
+
+
+ +
+
+await fetch_template(code)
+

This function is a coroutine.

+

Gets a Template from a discord.new URL or code.

+
+
Parameters
+

code (Union[Template, str]) – The Discord Template Code or URL (must be a discord.new URL).

+
+
Raises
+
+
+
Returns
+

The template from the URL/code.

+
+
Return type
+

Template

+
+
+
+ +
+
+await fetch_guild(guild_id, /)
+

This function is a coroutine.

+

Retrieves a Guild from an ID.

+
+

Note

+

Using this, you will not receive Guild.channels, Guild.members, +Member.activity and Member.voice per Member.

+
+
+

Note

+

This method is an API call. For general usage, consider get_guild() instead.

+
+
+
Parameters
+

guild_id (int) – The guild’s ID to fetch from.

+
+
Raises
+
+
+
Returns
+

The guild from the ID.

+
+
Return type
+

Guild

+
+
+
+ +
+
+await create_guild(*, name, region=<VoiceRegion.us_west: 'us-west'>, icon=..., code=...)
+

This function is a coroutine.

+

Creates a Guild.

+

Bot accounts in more than 10 guilds are not allowed to create guilds.

+
+
Parameters
+
    +
  • name (str) – The name of the guild.

  • +
  • region (VoiceRegion) – The region for the voice communication server. +Defaults to VoiceRegion.us_west.

  • +
  • icon (Optional[bytes]) – The bytes-like object representing the icon. See ClientUser.edit() +for more details on what is expected.

  • +
  • code (str) –

    The code for a template to create the guild with.

    +
    +

    New in version 1.4.

    +
    +

  • +
+
+
Raises
+
+
+
Returns
+

The guild created. This is not the same guild that is +added to cache.

+
+
Return type
+

Guild

+
+
+
+ +
+
+await fetch_stage_instance(channel_id, /)
+

This function is a coroutine.

+

Gets a StageInstance for a stage channel id.

+
+

New in version 2.0.

+
+
+
Parameters
+

channel_id (int) – The stage channel ID.

+
+
Raises
+
    +
  • NotFound – The stage instance or channel could not be found.

  • +
  • HTTPException – Getting the stage instance failed.

  • +
+
+
Returns
+

The stage instance from the stage channel ID.

+
+
Return type
+

StageInstance

+
+
+
+ +
+
+await fetch_invite(url, *, with_counts=True, with_expiration=True)
+

This function is a coroutine.

+

Gets an Invite from a discord.gg URL or ID.

+
+

Note

+

If the invite is for a guild you have not joined, the guild and channel +attributes of the returned Invite will be PartialInviteGuild and +PartialInviteChannel respectively.

+
+
+
Parameters
+
+
+
Raises
+
+
+
Returns
+

The invite from the URL/ID.

+
+
Return type
+

Invite

+
+
+
+ +
+
+await delete_invite(invite)
+

This function is a coroutine.

+

Revokes an Invite, URL, or ID to an invite.

+

You must have the manage_channels permission in +the associated guild to do this.

+
+
Parameters
+

invite (Union[Invite, str]) – The invite to revoke.

+
+
Raises
+
    +
  • Forbidden – You do not have permissions to revoke invites.

  • +
  • NotFound – The invite is invalid or expired.

  • +
  • HTTPException – Revoking the invite failed.

  • +
+
+
+
+ +
+
+await fetch_widget(guild_id, /)
+

This function is a coroutine.

+

Gets a Widget from a guild ID.

+
+

Note

+

The guild must have the widget enabled to get this information.

+
+
+
Parameters
+

guild_id (int) – The ID of the guild.

+
+
Raises
+
+
+
Returns
+

The guild’s widget.

+
+
Return type
+

Widget

+
+
+
+ +
+
+await application_info()
+

This function is a coroutine.

+

Retrieves the bot’s application information.

+
+
Raises
+

HTTPException – Retrieving the information failed somehow.

+
+
Returns
+

The bot’s application information.

+
+
Return type
+

AppInfo

+
+
+
+ +
+
+await fetch_user(user_id, /)
+

This function is a coroutine.

+

Retrieves a User based on their ID. +You do not have to share any guilds with the user to get this information, +however many operations do require that you do.

+
+

Note

+

This method is an API call. If you have discord.Intents.members and member cache enabled, consider get_user() instead.

+
+
+
Parameters
+

user_id (int) – The user’s ID to fetch from.

+
+
Raises
+
+
+
Returns
+

The user you requested.

+
+
Return type
+

User

+
+
+
+ +
+
+await fetch_channel(channel_id, /)
+

This function is a coroutine.

+

Retrieves a abc.GuildChannel, abc.PrivateChannel, or Thread with the specified ID.

+
+

Note

+

This method is an API call. For general usage, consider get_channel() instead.

+
+
+

New in version 1.2.

+
+
+
Raises
+
    +
  • InvalidData – An unknown channel type was received from Discord.

  • +
  • HTTPException – Retrieving the channel failed.

  • +
  • NotFound – Invalid Channel ID.

  • +
  • Forbidden – You do not have permission to fetch this channel.

  • +
+
+
Returns
+

The channel from the ID.

+
+
Return type
+

Union[abc.GuildChannel, abc.PrivateChannel, Thread]

+
+
+
+ +
+
+await fetch_webhook(webhook_id, /)
+

This function is a coroutine.

+

Retrieves a Webhook with the specified ID.

+
+
Raises
+
    +
  • HTTPException – Retrieving the webhook failed.

  • +
  • NotFound – Invalid webhook ID.

  • +
  • Forbidden – You do not have permission to fetch this webhook.

  • +
+
+
Returns
+

The webhook you requested.

+
+
Return type
+

Webhook

+
+
+
+ +
+
+await fetch_sticker(sticker_id, /)
+

This function is a coroutine.

+

Retrieves a Sticker with the specified ID.

+
+

New in version 2.0.

+
+
+
Raises
+
+
+
Returns
+

The sticker you requested.

+
+
Return type
+

Union[StandardSticker, GuildSticker]

+
+
+
+ +
+
+await fetch_premium_sticker_packs()
+

This function is a coroutine.

+

Retrieves all available premium sticker packs.

+
+

New in version 2.0.

+
+
+
Raises
+

HTTPException – Retrieving the sticker packs failed.

+
+
Returns
+

All available premium sticker packs.

+
+
Return type
+

List[StickerPack]

+
+
+
+ +
+
+await create_dm(user)
+

This function is a coroutine.

+

Creates a DMChannel with this user.

+

This should be rarely called, as this is done transparently for most +people.

+
+

New in version 2.0.

+
+
+
Parameters
+

user (Snowflake) – The user to create a DM with.

+
+
Returns
+

The channel that was created.

+
+
Return type
+

DMChannel

+
+
+
+ +
+
+add_view(view, *, message_id=None)
+

Registers a View for persistent listening.

+

This method should be used for when a view is comprised of components +that last longer than the lifecycle of the program.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • view (discord.ui.View) – The view to register for dispatching.

  • +
  • message_id (Optional[int]) – The message ID that the view is attached to. This is currently used to +refresh the view’s state during message update events. If not given +then message update events are not propagated for the view.

  • +
+
+
Raises
+
    +
  • TypeError – A view was not passed.

  • +
  • ValueError – The view is not persistent. A persistent view has no timeout + and all their components have an explicitly provided custom_id.

  • +
+
+
+
+ +
+
+property persistent_views
+

A sequence of persistent views added to the client.

+
+

New in version 2.0.

+
+
+
Type
+

Sequence[View]

+
+
+
+ +
+ +
+
+

AutoShardedClient

+
+ +Attributes +
+ +Methods +
+
+class discord.AutoShardedClient(*args, loop=None, **kwargs)
+

A client similar to Client except it handles the complications +of sharding for the user into a more manageable and transparent single +process bot.

+

When using this client, you will be able to use it as-if it was a regular +Client with a single shard when implementation wise internally it +is split up into multiple shards. This allows you to not have to deal with +IPC or other complicated infrastructure.

+

It is recommended to use this client only if you have surpassed at least +1000 guilds.

+

If no shard_count is provided, then the library will use the +Bot Gateway endpoint call to figure out how many shards to use.

+

If a shard_ids parameter is given, then those shard IDs will be used +to launch the internal shards. Note that shard_count must be provided +if this is used. By default, when omitted, the client will launch shards from +0 to shard_count - 1.

+
+
+shard_ids
+

An optional list of shard_ids to launch the shards with.

+
+
Type
+

Optional[List[int]]

+
+
+
+ +
+
+property latency
+

Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds.

+

This operates similarly to Client.latency() except it uses the average +latency of every shard’s latency. To get a list of shard latency, check the +latencies property. Returns nan if there are no shards ready.

+
+
Type
+

float

+
+
+
+ +
+
+property latencies
+

A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds.

+

This returns a list of tuples with elements (shard_id, latency).

+
+
Type
+

List[Tuple[int, float]]

+
+
+
+ +
+
+get_shard(shard_id)
+

Optional[ShardInfo]: Gets the shard information at a given shard ID or None if not found.

+
+ +
+
+property shards
+

Returns a mapping of shard IDs to their respective info object.

+
+
Type
+

Mapping[int, ShardInfo]

+
+
+
+ +
+
+await connect(*, reconnect=True)
+

This function is a coroutine.

+

Creates a websocket connection and lets the websocket listen +to messages from Discord. This is a loop that runs the entire +event system and miscellaneous aspects of the library. Control +is not resumed until the WebSocket connection is terminated.

+
+
Parameters
+

reconnect (bool) – If we should attempt reconnecting, either due to internet +failure or a specific failure on Discord’s part. Certain +disconnects that lead to bad state will not be handled (such as +invalid sharding payloads or bad tokens).

+
+
Raises
+
    +
  • GatewayNotFound – If the gateway to connect to Discord is not found. Usually if this + is thrown then there is a Discord API outage.

  • +
  • ConnectionClosed – The websocket connection has been terminated.

  • +
+
+
+
+ +
+
+await close()
+

This function is a coroutine.

+

Closes the connection to Discord.

+
+ +
+
+await change_presence(*, activity=None, status=None, shard_id=None)
+

This function is a coroutine.

+

Changes the client’s presence.

+

Example:

+
game = discord.Game("with the API")
+await client.change_presence(status=discord.Status.idle, activity=game)
+
+
+
+

Changed in version 2.0: Removed the afk keyword-only parameter.

+
+
+
Parameters
+
    +
  • activity (Optional[BaseActivity]) – The activity being done. None if no currently active activity is done.

  • +
  • status (Optional[Status]) – Indicates what status to change to. If None, then +Status.online is used.

  • +
  • shard_id (Optional[int]) – The shard_id to change the presence to. If not specified +or None, then it will change the presence of every +shard the bot can see.

  • +
+
+
Raises
+

InvalidArgument – If the activity parameter is not of proper type.

+
+
+
+ +
+
+is_ws_ratelimited()
+

bool: Whether the websocket is currently rate limited.

+

This can be useful to know when deciding whether you should query members +using HTTP or via the gateway.

+

This implementation checks if any of the shards are rate limited. +For more granular control, consider ShardInfo.is_ws_ratelimited().

+
+

New in version 1.6.

+
+
+ +
+ +
+
+
+

Application Info

+
+

AppInfo

+
+
+class discord.AppInfo
+

Represents the application info for the bot provided by Discord.

+
+
+id
+

The application ID.

+
+
Type
+

int

+
+
+
+ +
+
+name
+

The application name.

+
+
Type
+

str

+
+
+
+ +
+
+owner
+

The application owner.

+
+
Type
+

User

+
+
+
+ +
+
+team
+

The application’s team.

+
+

New in version 1.3.

+
+
+
Type
+

Optional[Team]

+
+
+
+ +
+
+description
+

The application description.

+
+
Type
+

str

+
+
+
+ +
+
+bot_public
+

Whether the bot can be invited by anyone or if it is locked +to the application owner.

+
+
Type
+

bool

+
+
+
+ +
+
+bot_require_code_grant
+

Whether the bot requires the completion of the full oauth2 code +grant flow to join.

+
+
Type
+

bool

+
+
+
+ +
+
+rpc_origins
+

A list of RPC origin URLs, if RPC is enabled.

+
+
Type
+

Optional[List[str]]

+
+
+
+ +
+
+summary
+

If this application is a game sold on Discord, +this field will be the summary field for the store page of its primary SKU.

+
+

New in version 1.3.

+
+
+
Type
+

str

+
+
+
+ +
+
+verify_key
+

The hex encoded key for verification in interactions and the +GameSDK’s GetTicket.

+
+

New in version 1.3.

+
+
+
Type
+

str

+
+
+
+ +
+
+guild_id
+

If this application is a game sold on Discord, +this field will be the guild to which it has been linked to.

+
+

New in version 1.3.

+
+
+
Type
+

Optional[int]

+
+
+
+ +
+
+primary_sku_id
+

If this application is a game sold on Discord, +this field will be the id of the “Game SKU” that is created, +if it exists.

+
+

New in version 1.3.

+
+
+
Type
+

Optional[int]

+
+
+
+ +
+
+slug
+

If this application is a game sold on Discord, +this field will be the URL slug that links to the store page.

+
+

New in version 1.3.

+
+
+
Type
+

Optional[str]

+
+
+
+ +
+
+terms_of_service_url
+

The application’s terms of service URL, if set.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[str]

+
+
+
+ +
+
+privacy_policy_url
+

The application’s privacy policy URL, if set.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[str]

+
+
+
+ +
+
+property icon
+

Retrieves the application’s icon asset, if any.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property cover_image
+

Retrieves the cover image on a store embed, if any.

+

This is only available if the application is a game sold on Discord.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property guild
+

If this application is a game sold on Discord, +this field will be the guild to which it has been linked

+
+

New in version 1.3.

+
+
+
Type
+

Optional[Guild]

+
+
+
+ +
+ +
+
+

PartialAppInfo

+
+
+class discord.PartialAppInfo
+

Represents a partial AppInfo given by create_invite()

+
+

New in version 2.0.

+
+
+
+id
+

The application ID.

+
+
Type
+

int

+
+
+
+ +
+
+name
+

The application name.

+
+
Type
+

str

+
+
+
+ +
+
+description
+

The application description.

+
+
Type
+

str

+
+
+
+ +
+
+rpc_origins
+

A list of RPC origin URLs, if RPC is enabled.

+
+
Type
+

Optional[List[str]]

+
+
+
+ +
+
+summary
+

If this application is a game sold on Discord, +this field will be the summary field for the store page of its primary SKU.

+
+
Type
+

str

+
+
+
+ +
+
+verify_key
+

The hex encoded key for verification in interactions and the +GameSDK’s GetTicket.

+
+
Type
+

str

+
+
+
+ +
+
+terms_of_service_url
+

The application’s terms of service URL, if set.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+privacy_policy_url
+

The application’s privacy policy URL, if set.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+property icon
+

Retrieves the application’s icon asset, if any.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+ +
+
+

Team

+
+ +Attributes +
+
+class discord.Team
+

Represents an application team for a bot provided by Discord.

+
+
+id
+

The team ID.

+
+
Type
+

int

+
+
+
+ +
+
+name
+

The team name

+
+
Type
+

str

+
+
+
+ +
+
+owner_id
+

The team’s owner ID.

+
+
Type
+

int

+
+
+
+ +
+
+members
+

A list of the members in the team

+
+

New in version 1.3.

+
+
+
Type
+

List[TeamMember]

+
+
+
+ +
+
+property icon
+

Retrieves the team’s icon asset, if any.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property owner
+

The team’s owner.

+
+
Type
+

Optional[TeamMember]

+
+
+
+ +
+ +
+
+

TeamMember

+
+ +Attributes +
+
+class discord.TeamMember
+

Represents a team member in a team.

+
+
+
+x == y
+

Checks if two team members are equal.

+
+ +
+
+x != y
+

Checks if two team members are not equal.

+
+ +
+
+hash(x)
+

Return the team member’s hash.

+
+ +
+
+str(x)
+

Returns the team member’s name with discriminator.

+
+ +
+
+

New in version 1.3.

+
+
+
+name
+

The team member’s username.

+
+
Type
+

str

+
+
+
+ +
+
+id
+

The team member’s unique ID.

+
+
Type
+

int

+
+
+
+ +
+
+discriminator
+

The team member’s discriminator. This is given when the username has conflicts.

+
+
Type
+

str

+
+
+
+ +
+
+avatar
+

The avatar hash the team member has. Could be None.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+bot
+

Specifies if the user is a bot account.

+
+
Type
+

bool

+
+
+
+ +
+
+team
+

The team that the member is from.

+
+
Type
+

Team

+
+
+
+ +
+
+membership_state
+

The membership state of the member (e.g. invited or accepted)

+
+
Type
+

TeamMembershipState

+
+
+
+ +
+ +
+
+ +
+

Event Reference

+

This section outlines the different types of events listened by Client.

+

There are two ways to register an event, the first way is through the use of +Client.event(). The second way is through subclassing Client and +overriding the specific events. For example:

+
import discord
+
+class MyClient(discord.Client):
+    async def on_message(self, message):
+        if message.author == self.user:
+            return
+
+        if message.content.startswith('$hello'):
+            await message.channel.send('Hello World!')
+
+
+

If an event handler raises an exception, on_error() will be called +to handle it, which defaults to print a traceback and ignoring the exception.

+
+

Warning

+

All the events must be a coroutine. If they aren’t, then you might get unexpected +errors. In order to turn a function into a coroutine they must be async def +functions.

+
+
+

Networking

+
+
+discord.on_connect()
+

Called when the client has successfully connected to Discord. This is not +the same as the client being fully prepared, see on_ready() for that.

+

The warnings on on_ready() also apply.

+
+ +
+
+discord.on_shard_connect(shard_id)
+

Similar to on_connect() except used by AutoShardedClient +to denote when a particular shard ID has connected to Discord.

+
+

New in version 1.4.

+
+
+
Parameters
+

shard_id (int) – The shard ID that has connected.

+
+
+
+ +
+
+discord.on_disconnect()
+

Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. +This could happen either through the internet being disconnected, explicit calls to close, +or Discord terminating the connection one way or the other.

+

This function can be called many times without a corresponding on_connect() call.

+
+ +
+
+discord.on_shard_disconnect(shard_id)
+

Similar to on_disconnect() except used by AutoShardedClient +to denote when a particular shard ID has disconnected from Discord.

+
+

New in version 1.4.

+
+
+
Parameters
+

shard_id (int) – The shard ID that has disconnected.

+
+
+
+ +
+
+discord.on_ready()
+

Called when the client is done preparing the data received from Discord. Usually after login is successful +and the Client.guilds and co. are filled up.

+
+

Warning

+

This function is not guaranteed to be the first event called. +Likewise, this function is not guaranteed to only be called +once. This library implements reconnection logic and thus will +end up calling this event whenever a RESUME request fails.

+
+
+ +
+
+discord.on_shard_ready(shard_id)
+

Similar to on_ready() except used by AutoShardedClient +to denote when a particular shard ID has become ready.

+
+
Parameters
+

shard_id (int) – The shard ID that is ready.

+
+
+
+ +
+
+discord.on_resumed()
+

Called when the client has resumed a session.

+
+ +
+
+discord.on_shard_resumed(shard_id)
+

Similar to on_resumed() except used by AutoShardedClient +to denote when a particular shard ID has resumed a session.

+
+

New in version 1.4.

+
+
+
Parameters
+

shard_id (int) – The shard ID that has resumed.

+
+
+
+ +
+
+discord.on_error(event, *args, **kwargs)
+

Usually when an event raises an uncaught exception, a traceback is +printed to stderr and the exception is ignored. If you want to +change this behaviour and handle the exception for whatever reason +yourself, this event can be overridden. Which, when done, will +suppress the default action of printing the traceback.

+

The information of the exception raised and the exception itself can +be retrieved with a standard call to sys.exc_info().

+

If you want exception to propagate out of the Client class +you can define an on_error handler consisting of a single empty +raise statement. Exceptions raised by on_error will not be +handled in any way by Client.

+
+

Note

+

on_error will only be dispatched to Client.event().

+

It will not be received by Client.wait_for(), or, if used, +Bots listeners such as +listen() or listener().

+
+
+
Parameters
+
    +
  • event (str) – The name of the event that raised the exception.

  • +
  • args – The positional arguments for the event that raised the +exception.

  • +
  • kwargs – The keyword arguments for the event that raised the +exception.

  • +
+
+
+
+ +
+
+discord.on_socket_event_type(event_type)
+

Called whenever a websocket event is received from the WebSocket.

+

This is mainly useful for logging how many events you are receiving +from the Discord gateway.

+
+

New in version 2.0.

+
+
+
Parameters
+

event_type (str) – The event type from Discord that is received, e.g. 'READY'.

+
+
+
+ +
+
+discord.on_socket_raw_receive(msg)
+

Called whenever a message is completely received from the WebSocket, before +it’s processed and parsed. This event is always dispatched when a +complete message is received and the passed data is not parsed in any way.

+

This is only really useful for grabbing the WebSocket stream and +debugging purposes.

+

This requires setting the enable_debug_events setting in the Client.

+
+

Note

+

This is only for the messages received from the client +WebSocket. The voice WebSocket will not trigger this event.

+
+
+
Parameters
+

msg (str) – The message passed in from the WebSocket library.

+
+
+
+ +
+
+discord.on_socket_raw_send(payload)
+

Called whenever a send operation is done on the WebSocket before the +message is sent. The passed parameter is the message that is being +sent to the WebSocket.

+

This is only really useful for grabbing the WebSocket stream and +debugging purposes.

+

This requires setting the enable_debug_events setting in the Client.

+
+

Note

+

This is only for the messages sent from the client +WebSocket. The voice WebSocket will not trigger this event.

+
+
+
Parameters
+

payload – The message that is about to be passed on to the +WebSocket library. It can be bytes to denote a binary +message or str to denote a regular text message.

+
+
+
+ +
+
+discord.on_typing(channel, user, when)
+

Called when someone begins typing a message.

+

The channel parameter can be a abc.Messageable instance. +Which could either be TextChannel, GroupChannel, or +DMChannel.

+

If the channel is a TextChannel then the user parameter +is a Member, otherwise it is a User.

+

This requires Intents.typing to be enabled.

+
+
Parameters
+
    +
  • channel (abc.Messageable) – The location where the typing originated from.

  • +
  • user (Union[User, Member]) – The user that started typing.

  • +
  • when (datetime.datetime) – When the typing started as an aware datetime in UTC.

  • +
+
+
+
+ +
+
+discord.on_raw_typing(payload)
+

Called when someone begins typing a message. Unlike on_typing(), this is +called regardless if the user can be found or not. This most often happens +when a user types in DMs.

+

This requires Intents.typing to be enabled.

+
+
Parameters
+

payload (RawTypingEvent) – The raw typing payload.

+
+
+
+ +
+
+

Messages

+
+
+discord.on_message(message)
+

Called when a Message is created and sent.

+

This requires Intents.messages to be enabled.

+
+

Warning

+

Your bot’s own messages and private messages are sent through this +event. This can lead cases of ‘recursion’ depending on how your bot was +programmed. If you want the bot to not reply to itself, consider +checking the user IDs. Note that Bot does not +have this problem.

+
+
+
Parameters
+

message (Message) – The current message.

+
+
+
+ +
+
+discord.on_message_delete(message)
+

Called when a message is deleted. If the message is not found in the +internal message cache, then this event will not be called. +Messages might not be in cache if the message is too old +or the client is participating in high traffic guilds.

+

If this occurs increase the max_messages parameter +or use the on_raw_message_delete() event instead.

+

This requires Intents.messages to be enabled.

+
+
Parameters
+

message (Message) – The deleted message.

+
+
+
+ +
+
+discord.on_bulk_message_delete(messages)
+

Called when messages are bulk deleted. If none of the messages deleted +are found in the internal message cache, then this event will not be called. +If individual messages were not found in the internal message cache, +this event will still be called, but the messages not found will not be included in +the messages list. Messages might not be in cache if the message is too old +or the client is participating in high traffic guilds.

+

If this occurs increase the max_messages parameter +or use the on_raw_bulk_message_delete() event instead.

+

This requires Intents.messages to be enabled.

+
+
Parameters
+

messages (List[Message]) – The messages that have been deleted.

+
+
+
+ +
+
+discord.on_raw_message_delete(payload)
+

Called when a message is deleted. Unlike on_message_delete(), this is +called regardless of the message being in the internal message cache or not.

+

If the message is found in the message cache, +it can be accessed via RawMessageDeleteEvent.cached_message

+

This requires Intents.messages to be enabled.

+
+
Parameters
+

payload (RawMessageDeleteEvent) – The raw event payload data.

+
+
+
+ +
+
+discord.on_raw_bulk_message_delete(payload)
+

Called when a bulk delete is triggered. Unlike on_bulk_message_delete(), this is +called regardless of the messages being in the internal message cache or not.

+

If the messages are found in the message cache, +they can be accessed via RawBulkMessageDeleteEvent.cached_messages

+

This requires Intents.messages to be enabled.

+
+
Parameters
+

payload (RawBulkMessageDeleteEvent) – The raw event payload data.

+
+
+
+ +
+
+discord.on_message_edit(before, after)
+

Called when a Message receives an update event. If the message is not found +in the internal message cache, then these events will not be called. +Messages might not be in cache if the message is too old +or the client is participating in high traffic guilds.

+

If this occurs increase the max_messages parameter +or use the on_raw_message_edit() event instead.

+

The following non-exhaustive cases trigger this event:

+
    +
  • A message has been pinned or unpinned.

  • +
  • The message content has been changed.

  • +
  • The message has received an embed.

    +
    +
      +
    • For performance reasons, the embed server does not do this in a “consistent” manner.

    • +
    +
    +
  • +
  • The message’s embeds were suppressed or unsuppressed.

  • +
  • A call message has received an update to its participants or ending time.

  • +
+

This requires Intents.messages to be enabled.

+
+
Parameters
+
    +
  • before (Message) – The previous version of the message.

  • +
  • after (Message) – The current version of the message.

  • +
+
+
+
+ +
+
+discord.on_raw_message_edit(payload)
+

Called when a message is edited. Unlike on_message_edit(), this is called +regardless of the state of the internal message cache.

+

If the message is found in the message cache, +it can be accessed via RawMessageUpdateEvent.cached_message. The cached message represents +the message before it has been edited. For example, if the content of a message is modified and +triggers the on_raw_message_edit() coroutine, the RawMessageUpdateEvent.cached_message +will return a Message object that represents the message before the content was modified.

+

Due to the inherently raw nature of this event, the data parameter coincides with +the raw data given by the gateway.

+

Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. +One example of a common case of partial data is when the 'content' key is inaccessible. This +denotes an “embed” only edit, which is an edit in which only the embeds are updated by the Discord +embed server.

+

This requires Intents.messages to be enabled.

+
+
Parameters
+

payload (RawMessageUpdateEvent) – The raw event payload data.

+
+
+
+ +
+
+discord.on_reaction_add(reaction, user)
+

Called when a message has a reaction added to it. Similar to on_message_edit(), +if the message is not found in the internal message cache, then this +event will not be called. Consider using on_raw_reaction_add() instead.

+
+

Note

+

To get the Message being reacted, access it via Reaction.message.

+
+

This requires Intents.reactions to be enabled.

+
+

Note

+

This doesn’t require Intents.members within a guild context, +but due to Discord not providing updated user information in a direct message +it’s required for direct messages to receive this event. +Consider using on_raw_reaction_add() if you need this and do not otherwise want +to enable the members intent.

+
+
+
Parameters
+
    +
  • reaction (Reaction) – The current state of the reaction.

  • +
  • user (Union[Member, User]) – The user who added the reaction.

  • +
+
+
+
+ +
+
+discord.on_raw_reaction_add(payload)
+

Called when a message has a reaction added. Unlike on_reaction_add(), this is +called regardless of the state of the internal message cache.

+

This requires Intents.reactions to be enabled.

+
+
Parameters
+

payload (RawReactionActionEvent) – The raw event payload data.

+
+
+
+ +
+
+discord.on_reaction_remove(reaction, user)
+

Called when a message has a reaction removed from it. Similar to on_message_edit, +if the message is not found in the internal message cache, then this event +will not be called.

+
+

Note

+

To get the message being reacted, access it via Reaction.message.

+
+

This requires both Intents.reactions and Intents.members to be enabled.

+
+

Note

+

Consider using on_raw_reaction_remove() if you need this and do not want +to enable the members intent.

+
+
+
Parameters
+
    +
  • reaction (Reaction) – The current state of the reaction.

  • +
  • user (Union[Member, User]) – The user who added the reaction.

  • +
+
+
+
+ +
+
+discord.on_raw_reaction_remove(payload)
+

Called when a message has a reaction removed. Unlike on_reaction_remove(), this is +called regardless of the state of the internal message cache.

+

This requires Intents.reactions to be enabled.

+
+
Parameters
+

payload (RawReactionActionEvent) – The raw event payload data.

+
+
+
+ +
+
+discord.on_reaction_clear(message, reactions)
+

Called when a message has all its reactions removed from it. Similar to on_message_edit(), +if the message is not found in the internal message cache, then this event +will not be called. Consider using on_raw_reaction_clear() instead.

+

This requires Intents.reactions to be enabled.

+
+
Parameters
+
    +
  • message (Message) – The message that had its reactions cleared.

  • +
  • reactions (List[Reaction]) – The reactions that were removed.

  • +
+
+
+
+ +
+
+discord.on_raw_reaction_clear(payload)
+

Called when a message has all its reactions removed. Unlike on_reaction_clear(), +this is called regardless of the state of the internal message cache.

+

This requires Intents.reactions to be enabled.

+
+
Parameters
+

payload (RawReactionClearEvent) – The raw event payload data.

+
+
+
+ +
+
+discord.on_reaction_clear_emoji(reaction)
+

Called when a message has a specific reaction removed from it. Similar to on_message_edit(), +if the message is not found in the internal message cache, then this event +will not be called. Consider using on_raw_reaction_clear_emoji() instead.

+

This requires Intents.reactions to be enabled.

+
+

New in version 1.3.

+
+
+
Parameters
+

reaction (Reaction) – The reaction that got cleared.

+
+
+
+ +
+
+discord.on_raw_reaction_clear_emoji(payload)
+

Called when a message has a specific reaction removed from it. Unlike on_reaction_clear_emoji() this is called +regardless of the state of the internal message cache.

+

This requires Intents.reactions to be enabled.

+
+

New in version 1.3.

+
+
+
Parameters
+

payload (RawReactionClearEmojiEvent) – The raw event payload data.

+
+
+
+ +
+
+discord.on_interaction(interaction)
+

Called when an interaction happened.

+

This currently happens due to slash command invocations or components being used.

+
+

Warning

+

This is a low level function that is not generally meant to be used. +If you are working with components, consider using the callbacks associated +with the View instead as it provides a nicer user experience.

+
+
+

New in version 2.0.

+
+
+
Parameters
+

interaction (Interaction) – The interaction data.

+
+
+
+ +
+
+discord.on_private_channel_update(before, after)
+

Called whenever a private group DM is updated. e.g. changed name or topic.

+

This requires Intents.messages to be enabled.

+
+
Parameters
+
    +
  • before (GroupChannel) – The updated group channel’s old info.

  • +
  • after (GroupChannel) – The updated group channel’s new info.

  • +
+
+
+
+ +
+
+discord.on_private_channel_pins_update(channel, last_pin)
+

Called whenever a message is pinned or unpinned from a private channel.

+
+
Parameters
+
    +
  • channel (abc.PrivateChannel) – The private channel that had its pins updated.

  • +
  • last_pin (Optional[datetime.datetime]) – The latest message that was pinned as an aware datetime in UTC. Could be None.

  • +
+
+
+
+ +
+
+discord.on_guild_channel_delete(channel)
+
+discord.on_guild_channel_create(channel)
+

Called whenever a guild channel is deleted or created.

+

Note that you can get the guild from guild.

+

This requires Intents.guilds to be enabled.

+
+
Parameters
+

channel (abc.GuildChannel) – The guild channel that got created or deleted.

+
+
+
+ +
+
+discord.on_guild_channel_update(before, after)
+

Called whenever a guild channel is updated. e.g. changed name, topic, permissions.

+

This requires Intents.guilds to be enabled.

+
+
Parameters
+
+
+
+
+ +
+
+discord.on_guild_channel_pins_update(channel, last_pin)
+

Called whenever a message is pinned or unpinned from a guild channel.

+

This requires Intents.guilds to be enabled.

+
+
Parameters
+
    +
  • channel (Union[abc.GuildChannel, Thread]) – The guild channel that had its pins updated.

  • +
  • last_pin (Optional[datetime.datetime]) – The latest message that was pinned as an aware datetime in UTC. Could be None.

  • +
+
+
+
+ +
+
+discord.on_thread_join(thread)
+

Called whenever a thread is joined or created. Note that from the API’s perspective there is no way to +differentiate between a thread being created or the bot joining a thread.

+

Note that you can get the guild from Thread.guild.

+

This requires Intents.guilds to be enabled.

+
+

New in version 2.0.

+
+
+
Parameters
+

thread (Thread) – The thread that got joined.

+
+
+
+ +
+
+discord.on_thread_remove(thread)
+

Called whenever a thread is removed. This is different from a thread being deleted.

+

Note that you can get the guild from Thread.guild.

+

This requires Intents.guilds to be enabled.

+
+

Warning

+

Due to technical limitations, this event might not be called +as soon as one expects. Since the library tracks thread membership +locally, the API only sends updated thread membership status upon being +synced by joining a thread.

+
+
+

New in version 2.0.

+
+
+
Parameters
+

thread (Thread) – The thread that got removed.

+
+
+
+ +
+
+discord.on_thread_delete(thread)
+

Called whenever a thread is deleted.

+

Note that you can get the guild from Thread.guild.

+

This requires Intents.guilds to be enabled.

+
+

New in version 2.0.

+
+
+
Parameters
+

thread (Thread) – The thread that got deleted.

+
+
+
+ +
+
+discord.on_thread_member_join(member)
+
+discord.on_thread_member_remove(member)
+

Called when a ThreadMember leaves or joins a Thread.

+

You can get the thread a member belongs in by accessing ThreadMember.thread.

+

This requires Intents.members to be enabled.

+
+

New in version 2.0.

+
+
+
Parameters
+

member (ThreadMember) – The member who joined or left.

+
+
+
+ +
+
+discord.on_thread_update(before, after)
+

Called whenever a thread is updated.

+

This requires Intents.guilds to be enabled.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • before (Thread) – The updated thread’s old info.

  • +
  • after (Thread) – The updated thread’s new info.

  • +
+
+
+
+ +
+
+discord.on_guild_integrations_update(guild)
+

Called whenever an integration is created, modified, or removed from a guild.

+

This requires Intents.integrations to be enabled.

+
+

New in version 1.4.

+
+
+
Parameters
+

guild (Guild) – The guild that had its integrations updated.

+
+
+
+ +
+
+discord.on_integration_create(integration)
+

Called when an integration is created.

+

This requires Intents.integrations to be enabled.

+
+

New in version 2.0.

+
+
+
Parameters
+

integration (Integration) – The integration that was created.

+
+
+
+ +
+
+discord.on_integration_update(integration)
+

Called when an integration is updated.

+

This requires Intents.integrations to be enabled.

+
+

New in version 2.0.

+
+
+
Parameters
+

integration (Integration) – The integration that was created.

+
+
+
+ +
+
+discord.on_raw_integration_delete(payload)
+

Called when an integration is deleted.

+

This requires Intents.integrations to be enabled.

+
+

New in version 2.0.

+
+
+
Parameters
+

payload (RawIntegrationDeleteEvent) – The raw event payload data.

+
+
+
+ +
+
+discord.on_webhooks_update(channel)
+

Called whenever a webhook is created, modified, or removed from a guild channel.

+

This requires Intents.webhooks to be enabled.

+
+
Parameters
+

channel (abc.GuildChannel) – The channel that had its webhooks updated.

+
+
+
+ +
+
+discord.on_member_join(member)
+
+discord.on_member_remove(member)
+

Called when a Member leaves or joins a Guild.

+

This requires Intents.members to be enabled.

+
+
Parameters
+

member (Member) – The member who joined or left.

+
+
+
+ +
+
+discord.on_member_update(before, after)
+

Called when a Member updates their profile.

+

This is called when one or more of the following things change:

+
    +
  • nickname

  • +
  • roles

  • +
  • pending

  • +
+

This requires Intents.members to be enabled.

+
+
Parameters
+
    +
  • before (Member) – The updated member’s old info.

  • +
  • after (Member) – The updated member’s updated info.

  • +
+
+
+
+ +
+
+discord.on_presence_update(before, after)
+

Called when a Member updates their presence.

+

This is called when one or more of the following things change:

+
    +
  • status

  • +
  • activity

  • +
+

This requires Intents.presences and Intents.members to be enabled.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • before (Member) – The updated member’s old info.

  • +
  • after (Member) – The updated member’s updated info.

  • +
+
+
+
+ +
+
+discord.on_user_update(before, after)
+

Called when a User updates their profile.

+

This is called when one or more of the following things change:

+
    +
  • avatar

  • +
  • username

  • +
  • discriminator

  • +
+

This requires Intents.members to be enabled.

+
+
Parameters
+
    +
  • before (User) – The updated user’s old info.

  • +
  • after (User) – The updated user’s updated info.

  • +
+
+
+
+ +
+
+discord.on_guild_join(guild)
+

Called when a Guild is either created by the Client or when the +Client joins a guild.

+

This requires Intents.guilds to be enabled.

+
+
Parameters
+

guild (Guild) – The guild that was joined.

+
+
+
+ +
+
+discord.on_guild_remove(guild)
+

Called when a Guild is removed from the Client.

+

This happens through, but not limited to, these circumstances:

+
    +
  • The client got banned.

  • +
  • The client got kicked.

  • +
  • The client left the guild.

  • +
  • The client or the guild owner deleted the guild.

  • +
+

In order for this event to be invoked then the Client must have +been part of the guild to begin with. (i.e. it is part of Client.guilds)

+

This requires Intents.guilds to be enabled.

+
+
Parameters
+

guild (Guild) – The guild that got removed.

+
+
+
+ +
+
+discord.on_guild_update(before, after)
+

Called when a Guild updates, for example:

+
    +
  • Changed name

  • +
  • Changed AFK channel

  • +
  • Changed AFK timeout

  • +
  • etc

  • +
+

This requires Intents.guilds to be enabled.

+
+
Parameters
+
    +
  • before (Guild) – The guild prior to being updated.

  • +
  • after (Guild) – The guild after being updated.

  • +
+
+
+
+ +
+
+discord.on_guild_role_create(role)
+
+discord.on_guild_role_delete(role)
+

Called when a Guild creates or deletes a new Role.

+

To get the guild it belongs to, use Role.guild.

+

This requires Intents.guilds to be enabled.

+
+
Parameters
+

role (Role) – The role that was created or deleted.

+
+
+
+ +
+
+discord.on_guild_role_update(before, after)
+

Called when a Role is changed guild-wide.

+

This requires Intents.guilds to be enabled.

+
+
Parameters
+
    +
  • before (Role) – The updated role’s old info.

  • +
  • after (Role) – The updated role’s updated info.

  • +
+
+
+
+ +
+
+discord.on_guild_emojis_update(guild, before, after)
+

Called when a Guild adds or removes Emoji.

+

This requires Intents.emojis_and_stickers to be enabled.

+
+
Parameters
+
    +
  • guild (Guild) – The guild who got their emojis updated.

  • +
  • before (Sequence[Emoji]) – A list of emojis before the update.

  • +
  • after (Sequence[Emoji]) – A list of emojis after the update.

  • +
+
+
+
+ +
+
+discord.on_guild_stickers_update(guild, before, after)
+

Called when a Guild updates its stickers.

+

This requires Intents.emojis_and_stickers to be enabled.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • guild (Guild) – The guild who got their stickers updated.

  • +
  • before (Sequence[GuildSticker]) – A list of stickers before the update.

  • +
  • after (Sequence[GuildSticker]) – A list of stickers after the update.

  • +
+
+
+
+ +
+
+discord.on_guild_available(guild)
+
+discord.on_guild_unavailable(guild)
+

Called when a guild becomes available or unavailable. The guild must have +existed in the Client.guilds cache.

+

This requires Intents.guilds to be enabled.

+
+
Parameters
+

guild – The Guild that has changed availability.

+
+
+
+ +
+
+discord.on_voice_state_update(member, before, after)
+

Called when a Member changes their VoiceState.

+

The following, but not limited to, examples illustrate when this event is called:

+
    +
  • A member joins a voice or stage channel.

  • +
  • A member leaves a voice or stage channel.

  • +
  • A member is muted or deafened by their own accord.

  • +
  • A member is muted or deafened by a guild administrator.

  • +
+

This requires Intents.voice_states to be enabled.

+
+
Parameters
+
    +
  • member (Member) – The member whose voice states changed.

  • +
  • before (VoiceState) – The voice state prior to the changes.

  • +
  • after (VoiceState) – The voice state after the changes.

  • +
+
+
+
+ +
+
+discord.on_stage_instance_create(stage_instance)
+
+discord.on_stage_instance_delete(stage_instance)
+

Called when a StageInstance is created or deleted for a StageChannel.

+
+

New in version 2.0.

+
+
+
Parameters
+

stage_instance (StageInstance) – The stage instance that was created or deleted.

+
+
+
+ +
+
+discord.on_stage_instance_update(before, after)
+

Called when a StageInstance is updated.

+

The following, but not limited to, examples illustrate when this event is called:

+
    +
  • The topic is changed.

  • +
  • The privacy level is changed.

  • +
+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • before (StageInstance) – The stage instance before the update.

  • +
  • after (StageInstance) – The stage instance after the update.

  • +
+
+
+
+ +
+
+discord.on_member_ban(guild, user)
+

Called when user gets banned from a Guild.

+

This requires Intents.bans to be enabled.

+
+
Parameters
+
    +
  • guild (Guild) – The guild the user got banned from.

  • +
  • user (Union[User, Member]) – The user that got banned. +Can be either User or Member depending if +the user was in the guild or not at the time of removal.

  • +
+
+
+
+ +
+
+discord.on_member_unban(guild, user)
+

Called when a User gets unbanned from a Guild.

+

This requires Intents.bans to be enabled.

+
+
Parameters
+
    +
  • guild (Guild) – The guild the user got unbanned from.

  • +
  • user (User) – The user that got unbanned.

  • +
+
+
+
+ +
+
+discord.on_invite_create(invite)
+

Called when an Invite is created. +You must have the manage_channels permission to receive this.

+
+

New in version 1.3.

+
+
+

Note

+

There is a rare possibility that the Invite.guild and Invite.channel +attributes will be of Object rather than the respective models.

+
+

This requires Intents.invites to be enabled.

+
+
Parameters
+

invite (Invite) – The invite that was created.

+
+
+
+ +
+
+discord.on_invite_delete(invite)
+

Called when an Invite is deleted. +You must have the manage_channels permission to receive this.

+
+

New in version 1.3.

+
+
+

Note

+

There is a rare possibility that the Invite.guild and Invite.channel +attributes will be of Object rather than the respective models.

+

Outside of those two attributes, the only other attribute guaranteed to be +filled by the Discord gateway for this event is Invite.code.

+
+

This requires Intents.invites to be enabled.

+
+
Parameters
+

invite (Invite) – The invite that was deleted.

+
+
+
+ +
+
+discord.on_group_join(channel, user)
+
+discord.on_group_remove(channel, user)
+

Called when someone joins or leaves a GroupChannel.

+
+
Parameters
+
    +
  • channel (GroupChannel) – The group that the user joined or left.

  • +
  • user (User) – The user that joined or left.

  • +
+
+
+
+ +
+
+
+

Utility Functions

+
+
+discord.utils.find(predicate, seq)
+

A helper to return the first element found in the sequence +that meets the predicate. For example:

+
member = discord.utils.find(lambda m: m.name == 'Mighty', channel.guild.members)
+
+
+

would find the first Member whose name is ‘Mighty’ and return it. +If an entry is not found, then None is returned.

+

This is different from filter() due to the fact it stops the moment it finds +a valid entry.

+
+
Parameters
+
    +
  • predicate – A function that returns a boolean-like result.

  • +
  • seq (collections.abc.Iterable) – The iterable to search through.

  • +
+
+
+
+ +
+
+discord.utils.get(iterable, **attrs)
+

A helper that returns the first element in the iterable that meets +all the traits passed in attrs. This is an alternative for +find().

+

When multiple attributes are specified, they are checked using +logical AND, not logical OR. Meaning they have to meet every +attribute passed in and not one of them.

+

To have a nested attribute search (i.e. search by x.y) then +pass in x__y as the keyword argument.

+

If nothing is found that matches the attributes passed, then +None is returned.

+

Examples

+

Basic usage:

+
member = discord.utils.get(message.guild.members, name='Foo')
+
+
+

Multiple attribute matching:

+
channel = discord.utils.get(guild.voice_channels, name='Foo', bitrate=64000)
+
+
+

Nested attribute matching:

+
channel = discord.utils.get(client.get_all_channels(), guild__name='Cool', name='general')
+
+
+
+
Parameters
+
    +
  • iterable – An iterable to search through.

  • +
  • **attrs – Keyword arguments that denote attributes to search with.

  • +
+
+
+
+ +
+
+discord.utils.snowflake_time(id)
+
+
Parameters
+

id (int) – The snowflake ID.

+
+
Returns
+

An aware datetime in UTC representing the creation time of the snowflake.

+
+
Return type
+

datetime.datetime

+
+
+
+ +
+
+discord.utils.oauth_url(client_id, *, permissions=..., guild=..., redirect_uri=..., scopes=..., disable_guild_select=False)
+

A helper function that returns the OAuth2 URL for inviting the bot +into guilds.

+
+
Parameters
+
    +
  • client_id (Union[int, str]) – The client ID for your bot.

  • +
  • permissions (Permissions) – The permissions you’re requesting. If not given then you won’t be requesting any +permissions.

  • +
  • guild (Snowflake) – The guild to pre-select in the authorization screen, if available.

  • +
  • redirect_uri (str) – An optional valid redirect URI.

  • +
  • scopes (Iterable[str]) –

    An optional valid list of scopes. Defaults to ('bot',).

    +
    +

    New in version 1.7.

    +
    +

  • +
  • disable_guild_select (bool) –

    Whether to disallow the user from changing the guild dropdown.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Returns
+

The OAuth2 URL for inviting the bot into guilds.

+
+
Return type
+

str

+
+
+
+ +
+
+discord.utils.remove_markdown(text, *, ignore_links=True)
+

A helper function that removes markdown characters.

+
+

New in version 1.7.

+
+
+

Note

+

This function is not markdown aware and may remove meaning from the original text. For example, +if the input contains 10 * 5 then it will be converted into 10  5.

+
+
+
Parameters
+
    +
  • text (str) – The text to remove markdown from.

  • +
  • ignore_links (bool) – Whether to leave links alone when removing markdown. For example, +if a URL in the text contains characters such as _ then it will +be left alone. Defaults to True.

  • +
+
+
Returns
+

The text with the markdown special characters removed.

+
+
Return type
+

str

+
+
+
+ +
+
+discord.utils.escape_markdown(text, *, as_needed=False, ignore_links=True)
+

A helper function that escapes Discord’s markdown.

+
+
Parameters
+
    +
  • text (str) – The text to escape markdown from.

  • +
  • as_needed (bool) – Whether to escape the markdown characters as needed. This +means that it does not escape extraneous characters if it’s +not necessary, e.g. **hello** is escaped into \*\*hello** +instead of \*\*hello\*\*. Note however that this can open +you up to some clever syntax abuse. Defaults to False.

  • +
  • ignore_links (bool) – Whether to leave links alone when escaping markdown. For example, +if a URL in the text contains characters such as _ then it will +be left alone. This option is not supported with as_needed. +Defaults to True.

  • +
+
+
Returns
+

The text with the markdown special characters escaped with a slash.

+
+
Return type
+

str

+
+
+
+ +
+
+discord.utils.escape_mentions(text)
+

A helper function that escapes everyone, here, role, and user mentions.

+
+

Note

+

This does not include channel mentions.

+
+
+

Note

+

For more granular control over what mentions should be escaped +within messages, refer to the AllowedMentions +class.

+
+
+
Parameters
+

text (str) – The text to escape mentions from.

+
+
Returns
+

The text with the mentions removed.

+
+
Return type
+

str

+
+
+
+ +
+
+discord.utils.resolve_invite(invite)
+

Resolves an invite from a Invite, URL or code.

+
+
Parameters
+

invite (Union[Invite, str]) – The invite.

+
+
Returns
+

The invite code.

+
+
Return type
+

str

+
+
+
+ +
+
+discord.utils.resolve_template(code)
+

Resolves a template code from a Template, URL or code.

+
+

New in version 1.4.

+
+
+
Parameters
+

code (Union[Template, str]) – The code.

+
+
Returns
+

The template code.

+
+
Return type
+

str

+
+
+
+ +
+
+await discord.utils.sleep_until(when, result=None)
+

This function is a coroutine.

+

Sleep until a specified time.

+

If the time supplied is in the past this function will yield instantly.

+
+

New in version 1.3.

+
+
+
Parameters
+
    +
  • when (datetime.datetime) – The timestamp in which to sleep until. If the datetime is naive then +it is assumed to be local time.

  • +
  • result (Any) – If provided is returned to the caller when the coroutine completes.

  • +
+
+
+
+ +
+
+discord.utils.utcnow()
+

A helper function to return an aware UTC datetime representing the current time.

+

This should be preferred to datetime.datetime.utcnow() since it is an aware +datetime, compared to the naive datetime in the standard library.

+
+

New in version 2.0.

+
+
+
Returns
+

The current aware datetime in UTC.

+
+
Return type
+

datetime.datetime

+
+
+
+ +
+
+discord.utils.format_dt(dt, /, style=None)
+

A helper function to format a datetime.datetime for presentation within Discord.

+

This allows for a locale-independent way of presenting data using Discord specific Markdown.

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Style

Example Output

Description

t

22:57

Short Time

T

22:57:58

Long Time

d

17/05/2016

Short Date

D

17 May 2016

Long Date

f (default)

17 May 2016 22:57

Short Date Time

F

Tuesday, 17 May 2016 22:57

Long Date Time

R

5 years ago

Relative Time

+

Note that the exact output depends on the user’s locale setting in the client. The example output +presented is using the en-GB locale.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • dt (datetime.datetime) – The datetime to format.

  • +
  • style (str) – The style to format the datetime with.

  • +
+
+
Returns
+

The formatted string.

+
+
Return type
+

str

+
+
+
+ +
+
+discord.utils.as_chunks(iterator, max_size)
+

A helper function that collects an iterator into chunks of a given size.

+
+

New in version 2.0.

+
+
+
Parameters
+
+
+
+
+

Warning

+

The last chunk collected may not be as large as max_size.

+
+
+
Returns
+

A new iterator which yields chunks of a given size.

+
+
Return type
+

Union[Iterator, AsyncIterator]

+
+
+
+ +
+
+

Enumerations

+

The API provides some enumerations for certain types of strings to avoid the API +from being stringly typed in case the strings change in the future.

+

All enumerations are subclasses of an internal class which mimics the behaviour +of enum.Enum.

+
+
+class discord.ChannelType
+

Specifies the type of channel.

+
+
+text
+

A text channel.

+
+ +
+
+voice
+

A voice channel.

+
+ +
+
+private
+

A private text channel. Also called a direct message.

+
+ +
+
+group
+

A private group text channel.

+
+ +
+
+category
+

A category channel.

+
+ +
+
+news
+

A guild news channel.

+
+ +
+
+store
+

A guild store channel.

+
+ +
+
+stage_voice
+

A guild stage voice channel.

+
+

New in version 1.7.

+
+
+ +
+
+news_thread
+

A news thread

+
+

New in version 2.0.

+
+
+ +
+
+public_thread
+

A public thread

+
+

New in version 2.0.

+
+
+ +
+
+private_thread
+

A private thread

+
+

New in version 2.0.

+
+
+ +
+ +
+
+class discord.MessageType
+

Specifies the type of Message. This is used to denote if a message +is to be interpreted as a system message or a regular message.

+
+
+
+x == y
+

Checks if two messages are equal.

+
+ +
+
+x != y
+

Checks if two messages are not equal.

+
+ +
+
+
+default
+

The default message type. This is the same as regular messages.

+
+ +
+
+recipient_add
+

The system message when a user is added to a group private +message or a thread.

+
+ +
+
+recipient_remove
+

The system message when a user is removed from a group private +message or a thread.

+
+ +
+
+call
+

The system message denoting call state, e.g. missed call, started call, +etc.

+
+ +
+
+channel_name_change
+

The system message denoting that a channel’s name has been changed.

+
+ +
+
+channel_icon_change
+

The system message denoting that a channel’s icon has been changed.

+
+ +
+
+pins_add
+

The system message denoting that a pinned message has been added to a channel.

+
+ +
+
+new_member
+

The system message denoting that a new member has joined a Guild.

+
+ +
+
+premium_guild_subscription
+

The system message denoting that a member has “nitro boosted” a guild.

+
+ +
+
+premium_guild_tier_1
+

The system message denoting that a member has “nitro boosted” a guild +and it achieved level 1.

+
+ +
+
+premium_guild_tier_2
+

The system message denoting that a member has “nitro boosted” a guild +and it achieved level 2.

+
+ +
+
+premium_guild_tier_3
+

The system message denoting that a member has “nitro boosted” a guild +and it achieved level 3.

+
+ +
+
+channel_follow_add
+

The system message denoting that an announcement channel has been followed.

+
+

New in version 1.3.

+
+
+ +
+
+guild_stream
+

The system message denoting that a member is streaming in the guild.

+
+

New in version 1.7.

+
+
+ +
+
+guild_discovery_disqualified
+

The system message denoting that the guild is no longer eligible for Server +Discovery.

+
+

New in version 1.7.

+
+
+ +
+
+guild_discovery_requalified
+

The system message denoting that the guild has become eligible again for Server +Discovery.

+
+

New in version 1.7.

+
+
+ +
+
+guild_discovery_grace_period_initial_warning
+

The system message denoting that the guild has failed to meet the Server +Discovery requirements for one week.

+
+

New in version 1.7.

+
+
+ +
+
+guild_discovery_grace_period_final_warning
+

The system message denoting that the guild has failed to meet the Server +Discovery requirements for 3 weeks in a row.

+
+

New in version 1.7.

+
+
+ +
+
+thread_created
+

The system message denoting that a thread has been created. This is only +sent if the thread has been created from an older message. The period of time +required for a message to be considered old cannot be relied upon and is up to +Discord.

+
+

New in version 2.0.

+
+
+ +
+
+reply
+

The system message denoting that the author is replying to a message.

+
+

New in version 2.0.

+
+
+ +
+
+application_command
+

The system message denoting that an application (or “slash”) command was executed.

+
+

New in version 2.0.

+
+
+ +
+
+guild_invite_reminder
+

The system message sent as a reminder to invite people to the guild.

+
+

New in version 2.0.

+
+
+ +
+
+thread_starter_message
+

The system message denoting the message in the thread that is the one that started the +thread’s conversation topic.

+
+

New in version 2.0.

+
+
+ +
+ +
+
+class discord.UserFlags
+

Represents Discord User flags.

+
+
+staff
+

The user is a Discord Employee.

+
+ +
+
+partner
+

The user is a Discord Partner.

+
+ +
+
+hypesquad
+

The user is a HypeSquad Events member.

+
+ +
+
+bug_hunter
+

The user is a Bug Hunter.

+
+ +
+
+mfa_sms
+

The user has SMS recovery for Multi Factor Authentication enabled.

+
+ +
+
+premium_promo_dismissed
+

The user has dismissed the Discord Nitro promotion.

+
+ +
+
+hypesquad_bravery
+

The user is a HypeSquad Bravery member.

+
+ +
+
+hypesquad_brilliance
+

The user is a HypeSquad Brilliance member.

+
+ +
+
+hypesquad_balance
+

The user is a HypeSquad Balance member.

+
+ +
+
+early_supporter
+

The user is an Early Supporter.

+
+ +
+
+team_user
+

The user is a Team User.

+
+ +
+
+system
+

The user is a system user (i.e. represents Discord officially).

+
+ +
+
+has_unread_urgent_messages
+

The user has an unread system message.

+
+ +
+
+bug_hunter_level_2
+

The user is a Bug Hunter Level 2.

+
+ +
+
+verified_bot
+

The user is a Verified Bot.

+
+ +
+
+verified_bot_developer
+

The user is an Early Verified Bot Developer.

+
+ +
+
+discord_certified_moderator
+

The user is a Discord Certified Moderator.

+
+ +
+ +
+
+class discord.ActivityType
+

Specifies the type of Activity. This is used to check how to +interpret the activity itself.

+
+
+unknown
+

An unknown activity type. This should generally not happen.

+
+ +
+
+playing
+

A “Playing” activity type.

+
+ +
+
+streaming
+

A “Streaming” activity type.

+
+ +
+
+listening
+

A “Listening” activity type.

+
+ +
+
+watching
+

A “Watching” activity type.

+
+ +
+
+custom
+

A custom activity type.

+
+ +
+
+competing
+

A competing activity type.

+
+

New in version 1.5.

+
+
+ +
+ +
+
+class discord.InteractionType
+

Specifies the type of Interaction.

+
+

New in version 2.0.

+
+
+
+ping
+

Represents Discord pinging to see if the interaction response server is alive.

+
+ +
+
+application_command
+

Represents a slash command interaction.

+
+ +
+
+component
+

Represents a component based interaction, i.e. using the Discord Bot UI Kit.

+
+ +
+ +
+
+class discord.InteractionResponseType
+

Specifies the response type for the interaction.

+
+

New in version 2.0.

+
+
+
+pong
+

Pongs the interaction when given a ping.

+

See also InteractionResponse.pong()

+
+ +
+
+channel_message
+

Respond to the interaction with a message.

+

See also InteractionResponse.send_message()

+
+ +
+
+deferred_channel_message
+

Responds to the interaction with a message at a later time.

+

See also InteractionResponse.defer()

+
+ +
+
+deferred_message_update
+

Acknowledges the component interaction with a promise that +the message will update later (though there is no need to actually update the message).

+

See also InteractionResponse.defer()

+
+ +
+
+message_update
+

Responds to the interaction by editing the message.

+

See also InteractionResponse.edit_message()

+
+ +
+ +
+
+class discord.ComponentType
+

Represents the component type of a component.

+
+

New in version 2.0.

+
+
+
+action_row
+

Represents the group component which holds different components in a row.

+
+ +
+
+button
+

Represents a button component.

+
+ +
+
+select
+

Represents a select component.

+
+ +
+ +
+
+class discord.ButtonStyle
+

Represents the style of the button component.

+
+

New in version 2.0.

+
+
+
+primary
+

Represents a blurple button for the primary action.

+
+ +
+
+secondary
+

Represents a grey button for the secondary action.

+
+ +
+
+success
+

Represents a green button for a successful action.

+
+ +
+
+danger
+

Represents a red button for a dangerous action.

+
+ +
+ +

Represents a link button.

+
+ +
+
+blurple
+

An alias for primary.

+
+ +
+
+grey
+

An alias for secondary.

+
+ +
+
+gray
+

An alias for secondary.

+
+ +
+
+green
+

An alias for success.

+
+ +
+
+red
+

An alias for danger.

+
+ +
+
+url
+

An alias for link.

+
+ +
+ +
+
+class discord.VoiceRegion
+

Specifies the region a voice server belongs to.

+
+
+amsterdam
+

The Amsterdam region.

+
+ +
+
+brazil
+

The Brazil region.

+
+ +
+
+dubai
+

The Dubai region.

+
+

New in version 1.3.

+
+
+ +
+
+eu_central
+

The EU Central region.

+
+ +
+
+eu_west
+

The EU West region.

+
+ +
+
+europe
+

The Europe region.

+
+

New in version 1.3.

+
+
+ +
+
+frankfurt
+

The Frankfurt region.

+
+ +
+
+hongkong
+

The Hong Kong region.

+
+ +
+
+india
+

The India region.

+
+

New in version 1.2.

+
+
+ +
+
+japan
+

The Japan region.

+
+ +
+
+london
+

The London region.

+
+ +
+
+russia
+

The Russia region.

+
+ +
+
+singapore
+

The Singapore region.

+
+ +
+
+southafrica
+

The South Africa region.

+
+ +
+
+south_korea
+

The South Korea region.

+
+ +
+
+sydney
+

The Sydney region.

+
+ +
+
+us_central
+

The US Central region.

+
+ +
+
+us_east
+

The US East region.

+
+ +
+
+us_south
+

The US South region.

+
+ +
+
+us_west
+

The US West region.

+
+ +
+
+vip_amsterdam
+

The Amsterdam region for VIP guilds.

+
+ +
+
+vip_us_east
+

The US East region for VIP guilds.

+
+ +
+
+vip_us_west
+

The US West region for VIP guilds.

+
+ +
+ +
+
+class discord.VerificationLevel
+

Specifies a Guild's verification level, which is the criteria in +which a member must meet before being able to send messages to the guild.

+
+
+

New in version 2.0.

+
+
+
+x == y
+

Checks if two verification levels are equal.

+
+ +
+
+x != y
+

Checks if two verification levels are not equal.

+
+ +
+
+x > y
+

Checks if a verification level is higher than another.

+
+ +
+
+x < y
+

Checks if a verification level is lower than another.

+
+ +
+
+x >= y
+

Checks if a verification level is higher or equal to another.

+
+ +
+
+x <= y
+

Checks if a verification level is lower or equal to another.

+
+ +
+
+
+none
+

No criteria set.

+
+ +
+
+low
+

Member must have a verified email on their Discord account.

+
+ +
+
+medium
+

Member must have a verified email and be registered on Discord for more +than five minutes.

+
+ +
+
+high
+

Member must have a verified email, be registered on Discord for more +than five minutes, and be a member of the guild itself for more than +ten minutes.

+
+ +
+
+highest
+

Member must have a verified phone on their Discord account.

+
+ +
+ +
+
+class discord.NotificationLevel
+

Specifies whether a Guild has notifications on for all messages or mentions only by default.

+
+
+

New in version 2.0.

+
+
+
+x == y
+

Checks if two notification levels are equal.

+
+ +
+
+x != y
+

Checks if two notification levels are not equal.

+
+ +
+
+x > y
+

Checks if a notification level is higher than another.

+
+ +
+
+x < y
+

Checks if a notification level is lower than another.

+
+ +
+
+x >= y
+

Checks if a notification level is higher or equal to another.

+
+ +
+
+x <= y
+

Checks if a notification level is lower or equal to another.

+
+ +
+
+
+all_messages
+

Members receive notifications for every message regardless of them being mentioned.

+
+ +
+
+only_mentions
+

Members receive notifications for messages they are mentioned in.

+
+ +
+ +
+
+class discord.ContentFilter
+

Specifies a Guild's explicit content filter, which is the machine +learning algorithms that Discord uses to detect if an image contains +pornography or otherwise explicit content.

+
+
+

New in version 2.0.

+
+
+
+x == y
+

Checks if two content filter levels are equal.

+
+ +
+
+x != y
+

Checks if two content filter levels are not equal.

+
+ +
+
+x > y
+

Checks if a content filter level is higher than another.

+
+ +
+
+x < y
+

Checks if a content filter level is lower than another.

+
+ +
+
+x >= y
+

Checks if a content filter level is higher or equal to another.

+
+ +
+
+x <= y
+

Checks if a content filter level is lower or equal to another.

+
+ +
+
+
+disabled
+

The guild does not have the content filter enabled.

+
+ +
+
+no_role
+

The guild has the content filter enabled for members without a role.

+
+ +
+
+all_members
+

The guild has the content filter enabled for every member.

+
+ +
+ +
+
+class discord.Status
+

Specifies a Member ‘s status.

+
+
+online
+

The member is online.

+
+ +
+
+offline
+

The member is offline.

+
+ +
+
+idle
+

The member is idle.

+
+ +
+
+dnd
+

The member is “Do Not Disturb”.

+
+ +
+
+do_not_disturb
+

An alias for dnd.

+
+ +
+
+invisible
+

The member is “invisible”. In reality, this is only used in sending +a presence a la Client.change_presence(). When you receive a +user’s presence this will be offline instead.

+
+ +
+ +
+
+class discord.AuditLogAction
+

Represents the type of action being done for a AuditLogEntry, +which is retrievable via Guild.audit_logs().

+
+
+guild_update
+

The guild has updated. Things that trigger this include:

+
    +
  • Changing the guild vanity URL

  • +
  • Changing the guild invite splash

  • +
  • Changing the guild AFK channel or timeout

  • +
  • Changing the guild voice server region

  • +
  • Changing the guild icon, banner, or discovery splash

  • +
  • Changing the guild moderation settings

  • +
  • Changing things related to the guild widget

  • +
+

When this is the action, the type of target is +the Guild.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+channel_create
+

A new channel was created.

+

When this is the action, the type of target is +either a abc.GuildChannel or Object with an ID.

+

A more filled out object in the Object case can be found +by using after.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+channel_update
+

A channel was updated. Things that trigger this include:

+
    +
  • The channel name or topic was changed

  • +
  • The channel bitrate was changed

  • +
+

When this is the action, the type of target is +the abc.GuildChannel or Object with an ID.

+

A more filled out object in the Object case can be found +by using after or before.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+channel_delete
+

A channel was deleted.

+

When this is the action, the type of target is +an Object with an ID.

+

A more filled out object can be found by using the +before object.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+overwrite_create
+

A channel permission overwrite was created.

+

When this is the action, the type of target is +the abc.GuildChannel or Object with an ID.

+

When this is the action, the type of extra is +either a Role or Member. If the object is not found +then it is a Object with an ID being filled, a name, and a +type attribute set to either 'role' or 'member' to help +dictate what type of ID it is.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+overwrite_update
+

A channel permission overwrite was changed, this is typically +when the permission values change.

+

See overwrite_create for more information on how the +target and extra fields +are set.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+overwrite_delete
+

A channel permission overwrite was deleted.

+

See overwrite_create for more information on how the +target and extra fields +are set.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+kick
+

A member was kicked.

+

When this is the action, the type of target is +the User who got kicked.

+

When this is the action, changes is empty.

+
+ +
+
+member_prune
+

A member prune was triggered.

+

When this is the action, the type of target is +set to None.

+

When this is the action, the type of extra is +set to an unspecified proxy object with two attributes:

+
    +
  • delete_members_days: An integer specifying how far the prune was.

  • +
  • members_removed: An integer specifying how many members were removed.

  • +
+

When this is the action, changes is empty.

+
+ +
+
+ban
+

A member was banned.

+

When this is the action, the type of target is +the User who got banned.

+

When this is the action, changes is empty.

+
+ +
+
+unban
+

A member was unbanned.

+

When this is the action, the type of target is +the User who got unbanned.

+

When this is the action, changes is empty.

+
+ +
+
+member_update
+

A member has updated. This triggers in the following situations:

+
    +
  • A nickname was changed

  • +
  • They were server muted or deafened (or it was undo’d)

  • +
+

When this is the action, the type of target is +the Member or User who got updated.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+member_role_update
+

A member’s role has been updated. This triggers when a member +either gains a role or loses a role.

+

When this is the action, the type of target is +the Member or User who got the role.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+member_move
+

A member’s voice channel has been updated. This triggers when a +member is moved to a different voice channel.

+

When this is the action, the type of extra is +set to an unspecified proxy object with two attributes:

+
    +
  • channel: A TextChannel or Object with the channel ID where the members were moved.

  • +
  • count: An integer specifying how many members were moved.

  • +
+
+

New in version 1.3.

+
+
+ +
+
+member_disconnect
+

A member’s voice state has changed. This triggers when a +member is force disconnected from voice.

+

When this is the action, the type of extra is +set to an unspecified proxy object with one attribute:

+
    +
  • count: An integer specifying how many members were disconnected.

  • +
+
+

New in version 1.3.

+
+
+ +
+
+bot_add
+

A bot was added to the guild.

+

When this is the action, the type of target is +the Member or User which was added to the guild.

+
+

New in version 1.3.

+
+
+ +
+
+role_create
+

A new role was created.

+

When this is the action, the type of target is +the Role or a Object with the ID.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+role_update
+

A role was updated. This triggers in the following situations:

+
    +
  • The name has changed

  • +
  • The permissions have changed

  • +
  • The colour has changed

  • +
  • Its hoist/mentionable state has changed

  • +
+

When this is the action, the type of target is +the Role or a Object with the ID.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+role_delete
+

A role was deleted.

+

When this is the action, the type of target is +the Role or a Object with the ID.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+invite_create
+

An invite was created.

+

When this is the action, the type of target is +the Invite that was created.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+invite_update
+

An invite was updated.

+

When this is the action, the type of target is +the Invite that was updated.

+
+ +
+
+invite_delete
+

An invite was deleted.

+

When this is the action, the type of target is +the Invite that was deleted.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+webhook_create
+

A webhook was created.

+

When this is the action, the type of target is +the Object with the webhook ID.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+webhook_update
+

A webhook was updated. This trigger in the following situations:

+
    +
  • The webhook name changed

  • +
  • The webhook channel changed

  • +
+

When this is the action, the type of target is +the Object with the webhook ID.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+webhook_delete
+

A webhook was deleted.

+

When this is the action, the type of target is +the Object with the webhook ID.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+emoji_create
+

An emoji was created.

+

When this is the action, the type of target is +the Emoji or Object with the emoji ID.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+emoji_update
+

An emoji was updated. This triggers when the name has changed.

+

When this is the action, the type of target is +the Emoji or Object with the emoji ID.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+emoji_delete
+

An emoji was deleted.

+

When this is the action, the type of target is +the Object with the emoji ID.

+

Possible attributes for AuditLogDiff:

+ +
+ +
+
+message_delete
+

A message was deleted by a moderator. Note that this +only triggers if the message was deleted by someone other than the author.

+

When this is the action, the type of target is +the Member or User who had their message deleted.

+

When this is the action, the type of extra is +set to an unspecified proxy object with two attributes:

+
    +
  • count: An integer specifying how many messages were deleted.

  • +
  • channel: A TextChannel or Object with the channel ID where the message got deleted.

  • +
+
+ +
+
+message_bulk_delete
+

Messages were bulk deleted by a moderator.

+

When this is the action, the type of target is +the TextChannel or Object with the ID of the channel that was purged.

+

When this is the action, the type of extra is +set to an unspecified proxy object with one attribute:

+
    +
  • count: An integer specifying how many messages were deleted.

  • +
+
+

New in version 1.3.

+
+
+ +
+
+message_pin
+

A message was pinned in a channel.

+

When this is the action, the type of target is +the Member or User who had their message pinned.

+

When this is the action, the type of extra is +set to an unspecified proxy object with two attributes:

+
    +
  • channel: A TextChannel or Object with the channel ID where the message was pinned.

  • +
  • message_id: the ID of the message which was pinned.

  • +
+
+

New in version 1.3.

+
+
+ +
+
+message_unpin
+

A message was unpinned in a channel.

+

When this is the action, the type of target is +the Member or User who had their message unpinned.

+

When this is the action, the type of extra is +set to an unspecified proxy object with two attributes:

+
    +
  • channel: A TextChannel or Object with the channel ID where the message was unpinned.

  • +
  • message_id: the ID of the message which was unpinned.

  • +
+
+

New in version 1.3.

+
+
+ +
+
+integration_create
+

A guild integration was created.

+

When this is the action, the type of target is +the Object with the integration ID of the integration which was created.

+
+

New in version 1.3.

+
+
+ +
+
+integration_update
+

A guild integration was updated.

+

When this is the action, the type of target is +the Object with the integration ID of the integration which was updated.

+
+

New in version 1.3.

+
+
+ +
+
+integration_delete
+

A guild integration was deleted.

+

When this is the action, the type of target is +the Object with the integration ID of the integration which was deleted.

+
+

New in version 1.3.

+
+
+ +
+
+stage_instance_create
+

A stage instance was started.

+

When this is the action, the type of target is +the StageInstance or Object with the ID of the stage +instance which was created.

+

Possible attributes for AuditLogDiff:

+ +
+

New in version 2.0.

+
+
+ +
+
+stage_instance_update
+

A stage instance was updated.

+

When this is the action, the type of target is +the StageInstance or Object with the ID of the stage +instance which was updated.

+

Possible attributes for AuditLogDiff:

+ +
+

New in version 2.0.

+
+
+ +
+
+stage_instance_delete
+

A stage instance was ended.

+
+

New in version 2.0.

+
+
+ +
+
+sticker_create
+

A sticker was created.

+

When this is the action, the type of target is +the GuildSticker or Object with the ID of the sticker +which was updated.

+

Possible attributes for AuditLogDiff:

+ +
+

New in version 2.0.

+
+
+ +
+
+sticker_update
+

A sticker was updated.

+

When this is the action, the type of target is +the GuildSticker or Object with the ID of the sticker +which was updated.

+

Possible attributes for AuditLogDiff:

+ +
+

New in version 2.0.

+
+
+ +
+
+sticker_delete
+

A sticker was deleted.

+

When this is the action, the type of target is +the GuildSticker or Object with the ID of the sticker +which was updated.

+

Possible attributes for AuditLogDiff:

+ +
+

New in version 2.0.

+
+
+ +
+
+thread_create
+

A thread was created.

+

When this is the action, the type of target is +the Thread or Object with the ID of the thread which +was created.

+

Possible attributes for AuditLogDiff:

+ +
+

New in version 2.0.

+
+
+ +
+
+thread_update
+

A thread was updated.

+

When this is the action, the type of target is +the Thread or Object with the ID of the thread which +was updated.

+

Possible attributes for AuditLogDiff:

+ +
+

New in version 2.0.

+
+
+ +
+
+thread_delete
+

A thread was deleted.

+

When this is the action, the type of target is +the Thread or Object with the ID of the thread which +was deleted.

+

Possible attributes for AuditLogDiff:

+ +
+

New in version 2.0.

+
+
+ +
+ +
+
+class discord.AuditLogActionCategory
+

Represents the category that the AuditLogAction belongs to.

+

This can be retrieved via AuditLogEntry.category.

+
+
+create
+

The action is the creation of something.

+
+ +
+
+delete
+

The action is the deletion of something.

+
+ +
+
+update
+

The action is the update of something.

+
+ +
+ +
+
+class discord.TeamMembershipState
+

Represents the membership state of a team member retrieved through Client.application_info().

+
+

New in version 1.3.

+
+
+
+invited
+

Represents an invited member.

+
+ +
+
+accepted
+

Represents a member currently in the team.

+
+ +
+ +
+
+class discord.WebhookType
+

Represents the type of webhook that can be received.

+
+

New in version 1.3.

+
+
+
+incoming
+

Represents a webhook that can post messages to channels with a token.

+
+ +
+
+channel_follower
+

Represents a webhook that is internally managed by Discord, used for following channels.

+
+ +
+
+application
+

Represents a webhook that is used for interactions or applications.

+
+

New in version 2.0.

+
+
+ +
+ +
+
+class discord.ExpireBehaviour
+

Represents the behaviour the Integration should perform +when a user’s subscription has finished.

+

There is an alias for this called ExpireBehavior.

+
+

New in version 1.4.

+
+
+
+remove_role
+

This will remove the StreamIntegration.role from the user +when their subscription is finished.

+
+ +
+
+kick
+

This will kick the user when their subscription is finished.

+
+ +
+ +
+
+class discord.DefaultAvatar
+

Represents the default avatar of a Discord User

+
+
+blurple
+

Represents the default avatar with the color blurple. +See also Colour.blurple

+
+ +
+
+grey
+

Represents the default avatar with the color grey. +See also Colour.greyple

+
+ +
+
+gray
+

An alias for grey.

+
+ +
+
+green
+

Represents the default avatar with the color green. +See also Colour.green

+
+ +
+
+orange
+

Represents the default avatar with the color orange. +See also Colour.orange

+
+ +
+
+red
+

Represents the default avatar with the color red. +See also Colour.red

+
+ +
+ +
+
+class discord.StickerType
+

Represents the type of sticker.

+
+

New in version 2.0.

+
+
+
+standard
+

Represents a standard sticker that all Nitro users can use.

+
+ +
+
+guild
+

Represents a custom sticker created in a guild.

+
+ +
+ +
+
+class discord.StickerFormatType
+

Represents the type of sticker images.

+
+

New in version 1.6.

+
+
+
+png
+

Represents a sticker with a png image.

+
+ +
+
+apng
+

Represents a sticker with an apng image.

+
+ +
+
+lottie
+

Represents a sticker with a lottie image.

+
+ +
+ +
+
+class discord.InviteTarget
+

Represents the invite type for voice channel invites.

+
+

New in version 2.0.

+
+
+
+unknown
+

The invite doesn’t target anyone or anything.

+
+ +
+
+stream
+

A stream invite that targets a user.

+
+ +
+
+embedded_application
+

A stream invite that targets an embedded application.

+
+ +
+ +
+
+class discord.VideoQualityMode
+

Represents the camera video quality mode for voice channel participants.

+
+

New in version 2.0.

+
+
+
+auto
+

Represents auto camera video quality.

+
+ +
+
+full
+

Represents full camera video quality.

+
+ +
+ +
+
+class discord.StagePrivacyLevel
+

Represents a stage instance’s privacy level.

+
+

New in version 2.0.

+
+
+
+public
+

The stage instance can be joined by external users.

+
+ +
+
+closed
+

The stage instance can only be joined by members of the guild.

+
+ +
+
+guild_only
+

Alias for closed

+
+ +
+ +
+
+class discord.NSFWLevel
+

Represents the NSFW level of a guild.

+
+

New in version 2.0.

+
+
+
+
+x == y
+

Checks if two NSFW levels are equal.

+
+ +
+
+x != y
+

Checks if two NSFW levels are not equal.

+
+ +
+
+x > y
+

Checks if a NSFW level is higher than another.

+
+ +
+
+x < y
+

Checks if a NSFW level is lower than another.

+
+ +
+
+x >= y
+

Checks if a NSFW level is higher or equal to another.

+
+ +
+
+x <= y
+

Checks if a NSFW level is lower or equal to another.

+
+ +
+
+
+default
+

The guild has not been categorised yet.

+
+ +
+
+explicit
+

The guild contains NSFW content.

+
+ +
+
+safe
+

The guild does not contain any NSFW content.

+
+ +
+
+age_restricted
+

The guild may contain NSFW content.

+
+ +
+ +
+
+

Async Iterator

+

Some API functions return an “async iterator”. An async iterator is something that is +capable of being used in an async for statement.

+

These async iterators can be used as follows:

+
async for elem in channel.history():
+    # do stuff with elem here
+
+
+

Certain utilities make working with async iterators easier, detailed below.

+
+
+class discord.AsyncIterator
+

Represents the “AsyncIterator” concept. Note that no such class exists, +it is purely abstract.

+
+
+
+async for x in y
+

Iterates over the contents of the async iterator.

+
+ +
+
+
+await next()
+

This function is a coroutine.

+

Advances the iterator by one, if possible. If no more items are found +then this raises NoMoreItems.

+
+ +
+
+await get(**attrs)
+

This function is a coroutine.

+

Similar to utils.get() except run over the async iterator.

+

Getting the last message by a user named ‘Dave’ or None:

+
msg = await channel.history().get(author__name='Dave')
+
+
+
+ +
+
+await find(predicate)
+

This function is a coroutine.

+

Similar to utils.find() except run over the async iterator.

+

Unlike utils.find(), the predicate provided can be a +coroutine.

+

Getting the last audit log with a reason or None:

+
def predicate(event):
+    return event.reason is not None
+
+event = await guild.audit_logs().find(predicate)
+
+
+
+
Parameters
+

predicate – The predicate to use. Could be a coroutine.

+
+
Returns
+

The first element that returns True for the predicate or None.

+
+
+
+ +
+
+await flatten()
+

This function is a coroutine.

+

Flattens the async iterator into a list with all the elements.

+
+
Returns
+

A list of every element in the async iterator.

+
+
Return type
+

list

+
+
+
+ +
+
+chunk(max_size)
+

Collects items into chunks of up to a given maximum size. +Another AsyncIterator is returned which collects items into +lists of a given size. The maximum chunk size must be a positive integer.

+
+

New in version 1.6.

+
+

Collecting groups of users:

+
async for leader, *users in reaction.users().chunk(3):
+    ...
+
+
+
+

Warning

+

The last chunk collected may not be as large as max_size.

+
+
+
Parameters
+

max_size – The size of individual chunks.

+
+
Return type
+

AsyncIterator

+
+
+
+ +
+
+map(func)
+

This is similar to the built-in map function. Another +AsyncIterator is returned that executes the function on +every element it is iterating over. This function can either be a +regular function or a coroutine.

+

Creating a content iterator:

+
def transform(message):
+    return message.content
+
+async for content in channel.history().map(transform):
+    message_length = len(content)
+
+
+
+
Parameters
+

func – The function to call on every element. Could be a coroutine.

+
+
Return type
+

AsyncIterator

+
+
+
+ +
+
+filter(predicate)
+

This is similar to the built-in filter function. Another +AsyncIterator is returned that filters over the original +async iterator. This predicate can be a regular function or a coroutine.

+

Getting messages by non-bot accounts:

+
def predicate(message):
+    return not message.author.bot
+
+async for elem in channel.history().filter(predicate):
+    ...
+
+
+
+
Parameters
+

predicate – The predicate to call on every element. Could be a coroutine.

+
+
Return type
+

AsyncIterator

+
+
+
+ +
+ +
+
+

Audit Log Data

+

Working with Guild.audit_logs() is a complicated process with a lot of machinery +involved. The library attempts to make it easy to use and friendly. In order to accomplish +this goal, it must make use of a couple of data classes that aid in this goal.

+
+

AuditLogEntry

+
+
+class discord.AuditLogEntry(*, users, data, guild)
+

Represents an Audit Log entry.

+

You retrieve these via Guild.audit_logs().

+
+
+
+x == y
+

Checks if two entries are equal.

+
+ +
+
+x != y
+

Checks if two entries are not equal.

+
+ +
+
+hash(x)
+

Returns the entry’s hash.

+
+ +
+
+int(x)
+

Returns the entry’s ID.

+
+ +
+
+

Changed in version 1.7: Audit log entries are now comparable and hashable.

+
+
+
+action
+

The action that was done.

+
+
Type
+

AuditLogAction

+
+
+
+ +
+
+user
+

The user who initiated this action. Usually a Member, unless gone +then it’s a User.

+
+
Type
+

abc.User

+
+
+
+ +
+
+id
+

The entry ID.

+
+
Type
+

int

+
+
+
+ +
+
+target
+

The target that got changed. The exact type of this depends on +the action being done.

+
+
Type
+

Any

+
+
+
+ +
+
+reason
+

The reason this action was done.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+extra
+

Extra information that this entry has that might be useful. +For most actions, this is None. However in some cases it +contains extra information. See AuditLogAction for +which actions have this field filled out.

+
+
Type
+

Any

+
+
+
+ +
+
+created_at
+

Returns the entry’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+category
+

The category of the action, if applicable.

+
+
Type
+

Optional[AuditLogActionCategory]

+
+
+
+ +
+
+changes
+

The list of changes this entry has.

+
+
Type
+

AuditLogChanges

+
+
+
+ +
+
+before
+

The target’s prior state.

+
+
Type
+

AuditLogDiff

+
+
+
+ +
+
+after
+

The target’s subsequent state.

+
+
Type
+

AuditLogDiff

+
+
+
+ +
+ +
+
+

AuditLogChanges

+
+ +Attributes +
+
+class discord.AuditLogChanges
+

An audit log change set.

+
+
+before
+

The old value. The attribute has the type of AuditLogDiff.

+

Depending on the AuditLogActionCategory retrieved by +category, the data retrieved by this +attribute differs:

+
++++ + + + + + + + + + + + + + + + + + +

Category

Description

create

All attributes are set to None.

delete

All attributes are set the value before deletion.

update

All attributes are set the value before updating.

None

No attributes are set.

+
+ +
+
+after
+

The new value. The attribute has the type of AuditLogDiff.

+

Depending on the AuditLogActionCategory retrieved by +category, the data retrieved by this +attribute differs:

+
++++ + + + + + + + + + + + + + + + + + +

Category

Description

create

All attributes are set to the created value

delete

All attributes are set to None

update

All attributes are set the value after updating.

None

No attributes are set.

+
+ +
+ +
+
+

AuditLogDiff

+
+
+class discord.AuditLogDiff
+

Represents an audit log “change” object. A change object has dynamic +attributes that depend on the type of action being done. Certain actions +map to certain attributes being set.

+

Note that accessing an attribute that does not match the specified action +will lead to an attribute error.

+

To get a list of attributes that have been set, you can iterate over +them. To see a list of all possible attributes that could be set based +on the action being done, check the documentation for AuditLogAction, +otherwise check the documentation below for all attributes that are possible.

+
+
+
+iter(diff)
+

Returns an iterator over (attribute, value) tuple of this diff.

+
+ +
+
+
+name
+

A name of something.

+
+
Type
+

str

+
+
+
+ +
+
+icon
+

A guild’s icon. See also Guild.icon.

+
+
Type
+

Asset

+
+
+
+ +
+
+splash
+

The guild’s invite splash. See also Guild.splash.

+
+
Type
+

Asset

+
+
+
+ +
+
+discovery_splash
+

The guild’s discovery splash. See also Guild.discovery_splash.

+
+
Type
+

Asset

+
+
+
+ +
+
+banner
+

The guild’s banner. See also Guild.banner.

+
+
Type
+

Asset

+
+
+
+ +
+
+owner
+

The guild’s owner. See also Guild.owner

+
+
Type
+

Union[Member, User]

+
+
+
+ +
+
+region
+

The guild’s voice region. See also Guild.region.

+
+
Type
+

VoiceRegion

+
+
+
+ +
+
+afk_channel
+

The guild’s AFK channel.

+

If this could not be found, then it falls back to a Object +with the ID being set.

+

See Guild.afk_channel.

+
+
Type
+

Union[VoiceChannel, Object]

+
+
+
+ +
+
+system_channel
+

The guild’s system channel.

+

If this could not be found, then it falls back to a Object +with the ID being set.

+

See Guild.system_channel.

+
+
Type
+

Union[TextChannel, Object]

+
+
+
+ +
+
+rules_channel
+

The guild’s rules channel.

+

If this could not be found then it falls back to a Object +with the ID being set.

+

See Guild.rules_channel.

+
+
Type
+

Union[TextChannel, Object]

+
+
+
+ +
+
+public_updates_channel
+

The guild’s public updates channel.

+

If this could not be found then it falls back to a Object +with the ID being set.

+

See Guild.public_updates_channel.

+
+
Type
+

Union[TextChannel, Object]

+
+
+
+ +
+
+afk_timeout
+

The guild’s AFK timeout. See Guild.afk_timeout.

+
+
Type
+

int

+
+
+
+ +
+
+mfa_level
+

The guild’s MFA level. See Guild.mfa_level.

+
+
Type
+

int

+
+
+
+ +
+
+widget_enabled
+

The guild’s widget has been enabled or disabled.

+
+
Type
+

bool

+
+
+
+ +
+
+widget_channel
+

The widget’s channel.

+

If this could not be found then it falls back to a Object +with the ID being set.

+
+
Type
+

Union[TextChannel, Object]

+
+
+
+ +
+
+verification_level
+

The guild’s verification level.

+

See also Guild.verification_level.

+
+
Type
+

VerificationLevel

+
+
+
+ +
+
+default_notifications
+

The guild’s default notification level.

+

See also Guild.default_notifications.

+
+
Type
+

NotificationLevel

+
+
+
+ +
+
+explicit_content_filter
+

The guild’s content filter.

+

See also Guild.explicit_content_filter.

+
+
Type
+

ContentFilter

+
+
+
+ +
+
+default_message_notifications
+

The guild’s default message notification setting.

+
+
Type
+

int

+
+
+
+ +
+
+vanity_url_code
+

The guild’s vanity URL.

+

See also Guild.vanity_invite() and Guild.edit().

+
+
Type
+

str

+
+
+
+ +
+
+position
+

The position of a Role or abc.GuildChannel.

+
+
Type
+

int

+
+
+
+ +
+
+type
+

The type of channel or sticker.

+
+
Type
+

Union[ChannelType, StickerType]

+
+
+
+ +
+
+topic
+

The topic of a TextChannel or StageChannel.

+

See also TextChannel.topic or StageChannel.topic.

+
+
Type
+

str

+
+
+
+ +
+
+bitrate
+

The bitrate of a VoiceChannel.

+

See also VoiceChannel.bitrate.

+
+
Type
+

int

+
+
+
+ +
+
+overwrites
+

A list of permission overwrite tuples that represents a target and a +PermissionOverwrite for said target.

+

The first element is the object being targeted, which can either +be a Member or User or Role. If this object +is not found then it is a Object with an ID being filled and +a type attribute set to either 'role' or 'member' to help +decide what type of ID it is.

+
+
Type
+

List[Tuple[target, PermissionOverwrite]]

+
+
+
+ +
+
+privacy_level
+

The privacy level of the stage instance.

+
+
Type
+

StagePrivacyLevel

+
+
+
+ +
+
+roles
+

A list of roles being added or removed from a member.

+

If a role is not found then it is a Object with the ID and name being +filled in.

+
+
Type
+

List[Union[Role, Object]]

+
+
+
+ +
+
+nick
+

The nickname of a member.

+

See also Member.nick

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+deaf
+

Whether the member is being server deafened.

+

See also VoiceState.deaf.

+
+
Type
+

bool

+
+
+
+ +
+
+mute
+

Whether the member is being server muted.

+

See also VoiceState.mute.

+
+
Type
+

bool

+
+
+
+ +
+
+permissions
+

The permissions of a role.

+

See also Role.permissions.

+
+
Type
+

Permissions

+
+
+
+ +
+
+colour
+
+color
+

The colour of a role.

+

See also Role.colour

+
+
Type
+

Colour

+
+
+
+ +
+
+hoist
+

Whether the role is being hoisted or not.

+

See also Role.hoist

+
+
Type
+

bool

+
+
+
+ +
+
+mentionable
+

Whether the role is mentionable or not.

+

See also Role.mentionable

+
+
Type
+

bool

+
+
+
+ +
+
+code
+

The invite’s code.

+

See also Invite.code

+
+
Type
+

str

+
+
+
+ +
+
+channel
+

A guild channel.

+

If the channel is not found then it is a Object with the ID +being set. In some cases the channel name is also set.

+
+
Type
+

Union[abc.GuildChannel, Object]

+
+
+
+ +
+
+inviter
+

The user who created the invite.

+

See also Invite.inviter.

+
+
Type
+

Optional[User]

+
+
+
+ +
+
+max_uses
+

The invite’s max uses.

+

See also Invite.max_uses.

+
+
Type
+

int

+
+
+
+ +
+
+uses
+

The invite’s current uses.

+

See also Invite.uses.

+
+
Type
+

int

+
+
+
+ +
+
+max_age
+

The invite’s max age in seconds.

+

See also Invite.max_age.

+
+
Type
+

int

+
+
+
+ +
+
+temporary
+

If the invite is a temporary invite.

+

See also Invite.temporary.

+
+
Type
+

bool

+
+
+
+ +
+
+allow
+
+deny
+

The permissions being allowed or denied.

+
+
Type
+

Permissions

+
+
+
+ +
+
+id
+

The ID of the object being changed.

+
+
Type
+

int

+
+
+
+ +
+
+avatar
+

The avatar of a member.

+

See also User.avatar.

+
+
Type
+

Asset

+
+
+
+ +
+
+slowmode_delay
+

The number of seconds members have to wait before +sending another message in the channel.

+

See also TextChannel.slowmode_delay.

+
+
Type
+

int

+
+
+
+ +
+
+rtc_region
+

The region for the voice channel’s voice communication. +A value of None indicates automatic voice region detection.

+

See also VoiceChannel.rtc_region.

+
+
Type
+

VoiceRegion

+
+
+
+ +
+
+video_quality_mode
+

The camera video quality for the voice channel’s participants.

+

See also VoiceChannel.video_quality_mode.

+
+
Type
+

VideoQualityMode

+
+
+
+ +
+
+format_type
+

The format type of a sticker being changed.

+

See also GuildSticker.format

+
+
Type
+

StickerFormatType

+
+
+
+ +
+
+emoji
+

The name of the emoji that represents a sticker being changed.

+

See also GuildSticker.emoji

+
+
Type
+

str

+
+
+
+ +
+
+description
+

The description of a sticker being changed.

+

See also GuildSticker.description

+
+
Type
+

str

+
+
+
+ +
+
+available
+

The availability of a sticker being changed.

+

See also GuildSticker.available

+
+
Type
+

bool

+
+
+
+ +
+
+archived
+

The thread is now archived.

+
+
Type
+

bool

+
+
+
+ +
+
+locked
+

The thread is being locked or unlocked.

+
+
Type
+

bool

+
+
+
+ +
+
+auto_archive_duration
+

The thread’s auto archive duration being changed.

+

See also Thread.auto_archive_duration

+
+
Type
+

int

+
+
+
+ +
+
+default_auto_archive_duration
+

The default auto archive duration for newly created threads being changed.

+
+
Type
+

int

+
+
+
+ +
+ +
+
+
+

Webhook Support

+

discord.py offers support for creating, editing, and executing webhooks through the Webhook class.

+
+

Webhook

+
+ +Methods +
+
+class discord.Webhook
+

Represents an asynchronous Discord webhook.

+

Webhooks are a form to send messages to channels in Discord without a +bot user or authentication.

+

There are two main ways to use Webhooks. The first is through the ones +received by the library such as Guild.webhooks() and +TextChannel.webhooks(). The ones received by the library will +automatically be bound using the library’s internal HTTP session.

+

The second form involves creating a webhook object manually using the +from_url() or partial() classmethods.

+

For example, creating a webhook from a URL and using aiohttp:

+
from discord import Webhook
+import aiohttp
+
+async def foo():
+    async with aiohttp.ClientSession() as session:
+        webhook = Webhook.from_url('url-here', session=session)
+        await webhook.send('Hello World', username='Foo')
+
+
+

For a synchronous counterpart, see SyncWebhook.

+
+
+
+x == y
+

Checks if two webhooks are equal.

+
+ +
+
+x != y
+

Checks if two webhooks are not equal.

+
+ +
+
+hash(x)
+

Returns the webhooks’s hash.

+
+ +
+
+int(x)
+

Returns the webhooks’s ID.

+
+ +
+
+

Changed in version 1.4: Webhooks are now comparable and hashable.

+
+
+
+id
+

The webhook’s ID

+
+
Type
+

int

+
+
+
+ +
+
+type
+

The type of the webhook.

+
+

New in version 1.3.

+
+
+
Type
+

WebhookType

+
+
+
+ +
+
+token
+

The authentication token of the webhook. If this is None +then the webhook cannot be used to make requests.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+guild_id
+

The guild ID this webhook is for.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+channel_id
+

The channel ID this webhook is for.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+user
+

The user this webhook was created by. If the webhook was +received without authentication then this will be None.

+
+
Type
+

Optional[abc.User]

+
+
+
+ +
+
+name
+

The default name of the webhook.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+source_guild
+

The guild of the channel that this webhook is following. +Only given if type is WebhookType.channel_follower.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[PartialWebhookGuild]

+
+
+
+ +
+
+source_channel
+

The channel that this webhook is following. +Only given if type is WebhookType.channel_follower.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[PartialWebhookChannel]

+
+
+
+ +
+
+property url
+

Returns the webhook’s url.

+
+
Type
+

str

+
+
+
+ +
+
+classmethod partial(id, token, *, session, bot_token=None)
+

Creates a partial Webhook.

+
+
Parameters
+
    +
  • id (int) – The ID of the webhook.

  • +
  • token (str) – The authentication token of the webhook.

  • +
  • session (aiohttp.ClientSession) –

    The session to use to send requests with. Note +that the library does not manage the session and +will not close it.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • bot_token (Optional[str]) –

    The bot authentication token for authenticated requests +involving the webhook.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Returns
+

A partial Webhook. +A partial webhook is just a webhook object with an ID and a token.

+
+
Return type
+

Webhook

+
+
+
+ +
+
+classmethod from_url(url, *, session, bot_token=None)
+

Creates a partial Webhook from a webhook URL.

+
+
Parameters
+
    +
  • url (str) – The URL of the webhook.

  • +
  • session (aiohttp.ClientSession) –

    The session to use to send requests with. Note +that the library does not manage the session and +will not close it.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • bot_token (Optional[str]) –

    The bot authentication token for authenticated requests +involving the webhook.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+

InvalidArgument – The URL is invalid.

+
+
Returns
+

A partial Webhook. +A partial webhook is just a webhook object with an ID and a token.

+
+
Return type
+

Webhook

+
+
+
+ +
+
+await fetch(*, prefer_auth=True)
+

This function is a coroutine.

+

Fetches the current webhook.

+

This could be used to get a full webhook from a partial webhook.

+
+

New in version 2.0.

+
+
+

Note

+

When fetching with an unauthenticated webhook, i.e. +is_authenticated() returns False, then the +returned webhook does not contain any user information.

+
+
+
Parameters
+

prefer_auth (bool) – Whether to use the bot token over the webhook token +if available. Defaults to True.

+
+
Raises
+
+
+
Returns
+

The fetched webhook.

+
+
Return type
+

Webhook

+
+
+
+ +
+
+await delete(*, reason=None, prefer_auth=True)
+

This function is a coroutine.

+

Deletes this Webhook.

+
+
Parameters
+
    +
  • reason (Optional[str]) –

    The reason for deleting this webhook. Shows up on the audit log.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • prefer_auth (bool) –

    Whether to use the bot token over the webhook token +if available. Defaults to True.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • HTTPException – Deleting the webhook failed.

  • +
  • NotFound – This webhook does not exist.

  • +
  • Forbidden – You do not have permissions to delete this webhook.

  • +
  • InvalidArgument – This webhook does not have a token associated with it.

  • +
+
+
+
+ +
+
+await edit(*, reason=None, name=..., avatar=..., channel=None, prefer_auth=True)
+

This function is a coroutine.

+

Edits this Webhook.

+
+
Parameters
+
    +
  • name (Optional[str]) – The webhook’s new default name.

  • +
  • avatar (Optional[bytes]) – A bytes-like object representing the webhook’s new default avatar.

  • +
  • channel (Optional[abc.Snowflake]) –

    The webhook’s new channel. This requires an authenticated webhook.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • reason (Optional[str]) –

    The reason for editing this webhook. Shows up on the audit log.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • prefer_auth (bool) –

    Whether to use the bot token over the webhook token +if available. Defaults to True.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • HTTPException – Editing the webhook failed.

  • +
  • NotFound – This webhook does not exist.

  • +
  • InvalidArgument – This webhook does not have a token associated with it + or it tried editing a channel without authentication.

  • +
+
+
+
+ +
+
+property avatar
+

Returns an Asset for the avatar the webhook has.

+

If the webhook does not have a traditional avatar, an asset for +the default avatar is returned instead.

+
+
Type
+

Asset

+
+
+
+ +
+
+property channel
+

The text channel this webhook belongs to.

+

If this is a partial webhook, then this will always return None.

+
+
Type
+

Optional[TextChannel]

+
+
+
+ +
+
+property created_at
+

Returns the webhook’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+property guild
+

The guild this webhook belongs to.

+

If this is a partial webhook, then this will always return None.

+
+
Type
+

Optional[Guild]

+
+
+
+ +
+
+is_authenticated()
+

bool: Whether the webhook is authenticated with a bot token.

+
+

New in version 2.0.

+
+
+ +
+
+is_partial()
+

bool: Whether the webhook is a “partial” webhook.

+
+

New in version 2.0.

+
+
+ +
+
+await send(content=..., *, username=..., avatar_url=..., tts=False, ephemeral=False, file=..., files=..., embed=..., embeds=..., allowed_mentions=..., view=..., thread=..., wait=False)
+

This function is a coroutine.

+

Sends a message using the webhook.

+

The content must be a type that can convert to a string through str(content).

+

To upload a single file, the file parameter should be used with a +single File object.

+

If the embed parameter is provided, it must be of type Embed and +it must be a rich embed type. You cannot mix the embed parameter with the +embeds parameter, which must be a list of Embed objects to send.

+
+
Parameters
+
    +
  • content (str) – The content of the message to send.

  • +
  • wait (bool) – Whether the server should wait before sending a response. This essentially +means that the return type of this function changes from None to +a WebhookMessage if set to True. If the type of webhook +is WebhookType.application then this is always set to True.

  • +
  • username (str) – The username to send with this message. If no username is provided +then the default username for the webhook is used.

  • +
  • avatar_url (str) – The avatar URL to send with this message. If no avatar URL is provided +then the default avatar for the webhook is used. If this is not a +string then it is explicitly cast using str.

  • +
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • +
  • ephemeral (bool) –

    Indicates if the message should only be visible to the user. +This is only available to WebhookType.application webhooks. +If a view is sent with an ephemeral message and it has no timeout set +then the timeout is set to 15 minutes.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • file (File) – The file to upload. This cannot be mixed with files parameter.

  • +
  • files (List[File]) – A list of files to send with the content. This cannot be mixed with the +file parameter.

  • +
  • embed (Embed) – The rich embed for the content to send. This cannot be mixed with +embeds parameter.

  • +
  • embeds (List[Embed]) – A list of embeds to send with the content. Maximum of 10. This cannot +be mixed with the embed parameter.

  • +
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • view (discord.ui.View) –

    The view to send with the message. You can only send a view +if this webhook is not partial and has state attached. A +webhook has state attached if the webhook is managed by the +library.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • thread (Snowflake) –

    The thread to send this webhook to.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • HTTPException – Sending the message failed.

  • +
  • NotFound – This webhook was not found.

  • +
  • Forbidden – The authorization token for the webhook is incorrect.

  • +
  • TypeError – You specified both embed and embeds or file and files.

  • +
  • ValueError – The length of embeds was invalid.

  • +
  • InvalidArgument – There was no token associated with this webhook or ephemeral + was passed with the improper webhook type or there was no state + attached with this webhook when giving it a view.

  • +
+
+
Returns
+

If wait is True then the message that was sent, otherwise None.

+
+
Return type
+

Optional[WebhookMessage]

+
+
+
+ +
+
+await fetch_message(id)
+

This function is a coroutine.

+

Retrieves a single WebhookMessage owned by this webhook.

+
+

New in version 2.0.

+
+
+
Parameters
+

id (int) – The message ID to look for.

+
+
Raises
+
    +
  • NotFound – The specified message was not found.

  • +
  • Forbidden – You do not have the permissions required to get a message.

  • +
  • HTTPException – Retrieving the message failed.

  • +
  • InvalidArgument – There was no token associated with this webhook.

  • +
+
+
Returns
+

The message asked for.

+
+
Return type
+

WebhookMessage

+
+
+
+ +
+
+await edit_message(message_id, *, content=..., embeds=..., embed=..., file=..., files=..., view=..., allowed_mentions=None)
+

This function is a coroutine.

+

Edits a message owned by this webhook.

+

This is a lower level interface to WebhookMessage.edit() in case +you only have an ID.

+
+

New in version 1.6.

+
+
+

Changed in version 2.0: The edit is no longer in-place, instead the newly edited message is returned.

+
+
+
Parameters
+
    +
  • message_id (int) – The message ID to edit.

  • +
  • content (Optional[str]) – The content to edit the message with or None to clear it.

  • +
  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • +
  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. +This should not be mixed with the embeds parameter.

  • +
  • file (File) –

    The file to upload. This cannot be mixed with files parameter.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • files (List[File]) –

    A list of files to send with the content. This cannot be mixed with the +file parameter.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • allowed_mentions (AllowedMentions) – Controls the mentions being processed in this message. +See abc.Messageable.send() for more information.

  • +
  • view (Optional[View]) –

    The updated view to update this message with. If None is passed then +the view is removed. The webhook must have state attached, similar to +send().

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • HTTPException – Editing the message failed.

  • +
  • Forbidden – Edited a message that is not yours.

  • +
  • TypeError – You specified both embed and embeds or file and files

  • +
  • ValueError – The length of embeds was invalid

  • +
  • InvalidArgument – There was no token associated with this webhook or the webhook had + no state.

  • +
+
+
Returns
+

The newly edited webhook message.

+
+
Return type
+

WebhookMessage

+
+
+
+ +
+
+await delete_message(message_id, /)
+

This function is a coroutine.

+

Deletes a message owned by this webhook.

+

This is a lower level interface to WebhookMessage.delete() in case +you only have an ID.

+
+

New in version 1.6.

+
+
+
Parameters
+

message_id (int) – The message ID to delete.

+
+
Raises
+
+
+
+
+ +
+ +
+
+

WebhookMessage

+
+ +Methods +
+
+class discord.WebhookMessage
+

Represents a message sent from your webhook.

+

This allows you to edit or delete a message sent by your +webhook.

+

This inherits from discord.Message with changes to +edit() and delete() to work.

+
+

New in version 1.6.

+
+
+
+await edit(content=..., embeds=..., embed=..., file=..., files=..., view=..., allowed_mentions=None)
+

This function is a coroutine.

+

Edits the message.

+
+

New in version 1.6.

+
+
+

Changed in version 2.0: The edit is no longer in-place, instead the newly edited message is returned.

+
+
+
Parameters
+
    +
  • content (Optional[str]) – The content to edit the message with or None to clear it.

  • +
  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • +
  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. +This should not be mixed with the embeds parameter.

  • +
  • file (File) –

    The file to upload. This cannot be mixed with files parameter.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • files (List[File]) –

    A list of files to send with the content. This cannot be mixed with the +file parameter.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • allowed_mentions (AllowedMentions) – Controls the mentions being processed in this message. +See abc.Messageable.send() for more information.

  • +
  • view (Optional[View]) –

    The updated view to update this message with. If None is passed then +the view is removed.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • HTTPException – Editing the message failed.

  • +
  • Forbidden – Edited a message that is not yours.

  • +
  • TypeError – You specified both embed and embeds or file and files

  • +
  • ValueError – The length of embeds was invalid

  • +
  • InvalidArgument – There was no token associated with this webhook.

  • +
+
+
Returns
+

The newly edited message.

+
+
Return type
+

WebhookMessage

+
+
+
+ +
+
+await delete(*, delay=None)
+

This function is a coroutine.

+

Deletes the message.

+
+
Parameters
+

delay (Optional[float]) – If provided, the number of seconds to wait before deleting the message. +The waiting is done in the background and deletion failures are ignored.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to delete the message.

  • +
  • NotFound – The message was deleted already.

  • +
  • HTTPException – Deleting the message failed.

  • +
+
+
+
+ +
+ +
+
+

SyncWebhook

+
+
+class discord.SyncWebhook
+

Represents a synchronous Discord webhook.

+

For an asynchronous counterpart, see Webhook.

+
+
+
+x == y
+

Checks if two webhooks are equal.

+
+ +
+
+x != y
+

Checks if two webhooks are not equal.

+
+ +
+
+hash(x)
+

Returns the webhooks’s hash.

+
+ +
+
+int(x)
+

Returns the webhooks’s ID.

+
+ +
+
+

Changed in version 1.4: Webhooks are now comparable and hashable.

+
+
+
+id
+

The webhook’s ID

+
+
Type
+

int

+
+
+
+ +
+
+type
+

The type of the webhook.

+
+

New in version 1.3.

+
+
+
Type
+

WebhookType

+
+
+
+ +
+
+token
+

The authentication token of the webhook. If this is None +then the webhook cannot be used to make requests.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+guild_id
+

The guild ID this webhook is for.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+channel_id
+

The channel ID this webhook is for.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+user
+

The user this webhook was created by. If the webhook was +received without authentication then this will be None.

+
+
Type
+

Optional[abc.User]

+
+
+
+ +
+
+name
+

The default name of the webhook.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+source_guild
+

The guild of the channel that this webhook is following. +Only given if type is WebhookType.channel_follower.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[PartialWebhookGuild]

+
+
+
+ +
+
+source_channel
+

The channel that this webhook is following. +Only given if type is WebhookType.channel_follower.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[PartialWebhookChannel]

+
+
+
+ +
+
+property url
+

Returns the webhook’s url.

+
+
Type
+

str

+
+
+
+ +
+
+classmethod partial(id, token, *, session=..., bot_token=None)
+

Creates a partial Webhook.

+
+
Parameters
+
    +
  • id (int) – The ID of the webhook.

  • +
  • token (str) – The authentication token of the webhook.

  • +
  • session (requests.Session) – The session to use to send requests with. Note +that the library does not manage the session and +will not close it. If not given, the requests +auto session creation functions are used instead.

  • +
  • bot_token (Optional[str]) – The bot authentication token for authenticated requests +involving the webhook.

  • +
+
+
Returns
+

A partial Webhook. +A partial webhook is just a webhook object with an ID and a token.

+
+
Return type
+

Webhook

+
+
+
+ +
+
+classmethod from_url(url, *, session=..., bot_token=None)
+

Creates a partial Webhook from a webhook URL.

+
+
Parameters
+
    +
  • url (str) – The URL of the webhook.

  • +
  • session (requests.Session) – The session to use to send requests with. Note +that the library does not manage the session and +will not close it. If not given, the requests +auto session creation functions are used instead.

  • +
  • bot_token (Optional[str]) – The bot authentication token for authenticated requests +involving the webhook.

  • +
+
+
Raises
+

InvalidArgument – The URL is invalid.

+
+
Returns
+

A partial Webhook. +A partial webhook is just a webhook object with an ID and a token.

+
+
Return type
+

Webhook

+
+
+
+ +
+
+fetch(*, prefer_auth=True)
+

Fetches the current webhook.

+

This could be used to get a full webhook from a partial webhook.

+
+

Note

+

When fetching with an unauthenticated webhook, i.e. +is_authenticated() returns False, then the +returned webhook does not contain any user information.

+
+
+
Parameters
+

prefer_auth (bool) – Whether to use the bot token over the webhook token +if available. Defaults to True.

+
+
Raises
+
+
+
Returns
+

The fetched webhook.

+
+
Return type
+

SyncWebhook

+
+
+
+ +
+
+delete(*, reason=None, prefer_auth=True)
+

Deletes this Webhook.

+
+
Parameters
+
    +
  • reason (Optional[str]) –

    The reason for deleting this webhook. Shows up on the audit log.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • prefer_auth (bool) – Whether to use the bot token over the webhook token +if available. Defaults to True.

  • +
+
+
Raises
+
    +
  • HTTPException – Deleting the webhook failed.

  • +
  • NotFound – This webhook does not exist.

  • +
  • Forbidden – You do not have permissions to delete this webhook.

  • +
  • InvalidArgument – This webhook does not have a token associated with it.

  • +
+
+
+
+ +
+
+edit(*, reason=None, name=..., avatar=..., channel=None, prefer_auth=True)
+

Edits this Webhook.

+
+
Parameters
+
    +
  • name (Optional[str]) – The webhook’s new default name.

  • +
  • avatar (Optional[bytes]) – A bytes-like object representing the webhook’s new default avatar.

  • +
  • channel (Optional[abc.Snowflake]) – The webhook’s new channel. This requires an authenticated webhook.

  • +
  • reason (Optional[str]) –

    The reason for editing this webhook. Shows up on the audit log.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • prefer_auth (bool) – Whether to use the bot token over the webhook token +if available. Defaults to True.

  • +
+
+
Raises
+
    +
  • HTTPException – Editing the webhook failed.

  • +
  • NotFound – This webhook does not exist.

  • +
  • InvalidArgument – This webhook does not have a token associated with it + or it tried editing a channel without authentication.

  • +
+
+
Returns
+

The newly edited webhook.

+
+
Return type
+

SyncWebhook

+
+
+
+ +
+
+send(content=..., *, username=..., avatar_url=..., tts=False, file=..., files=..., embed=..., embeds=..., allowed_mentions=..., thread=..., wait=False)
+

Sends a message using the webhook.

+

The content must be a type that can convert to a string through str(content).

+

To upload a single file, the file parameter should be used with a +single File object.

+

If the embed parameter is provided, it must be of type Embed and +it must be a rich embed type. You cannot mix the embed parameter with the +embeds parameter, which must be a list of Embed objects to send.

+
+
Parameters
+
    +
  • content (str) – The content of the message to send.

  • +
  • wait (bool) – Whether the server should wait before sending a response. This essentially +means that the return type of this function changes from None to +a WebhookMessage if set to True.

  • +
  • username (str) – The username to send with this message. If no username is provided +then the default username for the webhook is used.

  • +
  • avatar_url (str) – The avatar URL to send with this message. If no avatar URL is provided +then the default avatar for the webhook is used. If this is not a +string then it is explicitly cast using str.

  • +
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • +
  • file (File) – The file to upload. This cannot be mixed with files parameter.

  • +
  • files (List[File]) – A list of files to send with the content. This cannot be mixed with the +file parameter.

  • +
  • embed (Embed) – The rich embed for the content to send. This cannot be mixed with +embeds parameter.

  • +
  • embeds (List[Embed]) – A list of embeds to send with the content. Maximum of 10. This cannot +be mixed with the embed parameter.

  • +
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • thread (Snowflake) –

    The thread to send this message to.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • HTTPException – Sending the message failed.

  • +
  • NotFound – This webhook was not found.

  • +
  • Forbidden – The authorization token for the webhook is incorrect.

  • +
  • TypeError – You specified both embed and embeds or file and files

  • +
  • ValueError – The length of embeds was invalid

  • +
  • InvalidArgument – There was no token associated with this webhook.

  • +
+
+
Returns
+

If wait is True then the message that was sent, otherwise None.

+
+
Return type
+

Optional[SyncWebhookMessage]

+
+
+
+ +
+
+fetch_message(id, /)
+

Retrieves a single SyncWebhookMessage owned by this webhook.

+
+

New in version 2.0.

+
+
+
Parameters
+

id (int) – The message ID to look for.

+
+
Raises
+
    +
  • NotFound – The specified message was not found.

  • +
  • Forbidden – You do not have the permissions required to get a message.

  • +
  • HTTPException – Retrieving the message failed.

  • +
  • InvalidArgument – There was no token associated with this webhook.

  • +
+
+
Returns
+

The message asked for.

+
+
Return type
+

SyncWebhookMessage

+
+
+
+ +
+
+property avatar
+

Returns an Asset for the avatar the webhook has.

+

If the webhook does not have a traditional avatar, an asset for +the default avatar is returned instead.

+
+
Type
+

Asset

+
+
+
+ +
+
+property channel
+

The text channel this webhook belongs to.

+

If this is a partial webhook, then this will always return None.

+
+
Type
+

Optional[TextChannel]

+
+
+
+ +
+
+property created_at
+

Returns the webhook’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+edit_message(message_id, *, content=..., embeds=..., embed=..., file=..., files=..., allowed_mentions=None)
+

Edits a message owned by this webhook.

+

This is a lower level interface to WebhookMessage.edit() in case +you only have an ID.

+
+

New in version 1.6.

+
+
+
Parameters
+
    +
  • message_id (int) – The message ID to edit.

  • +
  • content (Optional[str]) – The content to edit the message with or None to clear it.

  • +
  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • +
  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. +This should not be mixed with the embeds parameter.

  • +
  • file (File) – The file to upload. This cannot be mixed with files parameter.

  • +
  • files (List[File]) – A list of files to send with the content. This cannot be mixed with the +file parameter.

  • +
  • allowed_mentions (AllowedMentions) – Controls the mentions being processed in this message. +See abc.Messageable.send() for more information.

  • +
+
+
Raises
+
    +
  • HTTPException – Editing the message failed.

  • +
  • Forbidden – Edited a message that is not yours.

  • +
  • TypeError – You specified both embed and embeds or file and files

  • +
  • ValueError – The length of embeds was invalid

  • +
  • InvalidArgument – There was no token associated with this webhook.

  • +
+
+
+
+ +
+
+property guild
+

The guild this webhook belongs to.

+

If this is a partial webhook, then this will always return None.

+
+
Type
+

Optional[Guild]

+
+
+
+ +
+
+is_authenticated()
+

bool: Whether the webhook is authenticated with a bot token.

+
+

New in version 2.0.

+
+
+ +
+
+is_partial()
+

bool: Whether the webhook is a “partial” webhook.

+
+

New in version 2.0.

+
+
+ +
+
+delete_message(message_id, /)
+

Deletes a message owned by this webhook.

+

This is a lower level interface to WebhookMessage.delete() in case +you only have an ID.

+
+

New in version 1.6.

+
+
+
Parameters
+

message_id (int) – The message ID to delete.

+
+
Raises
+
+
+
+
+ +
+ +
+
+

SyncWebhookMessage

+
+ +Methods +
+
+class discord.SyncWebhookMessage
+

Represents a message sent from your webhook.

+

This allows you to edit or delete a message sent by your +webhook.

+

This inherits from discord.Message with changes to +edit() and delete() to work.

+
+

New in version 2.0.

+
+
+
+edit(content=..., embeds=..., embed=..., file=..., files=..., allowed_mentions=None)
+

Edits the message.

+
+
Parameters
+
    +
  • content (Optional[str]) – The content to edit the message with or None to clear it.

  • +
  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • +
  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. +This should not be mixed with the embeds parameter.

  • +
  • file (File) – The file to upload. This cannot be mixed with files parameter.

  • +
  • files (List[File]) – A list of files to send with the content. This cannot be mixed with the +file parameter.

  • +
  • allowed_mentions (AllowedMentions) – Controls the mentions being processed in this message. +See abc.Messageable.send() for more information.

  • +
+
+
Raises
+
    +
  • HTTPException – Editing the message failed.

  • +
  • Forbidden – Edited a message that is not yours.

  • +
  • TypeError – You specified both embed and embeds or file and files

  • +
  • ValueError – The length of embeds was invalid

  • +
  • InvalidArgument – There was no token associated with this webhook.

  • +
+
+
Returns
+

The newly edited message.

+
+
Return type
+

SyncWebhookMessage

+
+
+
+ +
+
+delete(*, delay=None)
+

Deletes the message.

+
+
Parameters
+

delay (Optional[float]) – If provided, the number of seconds to wait before deleting the message. +This blocks the thread.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to delete the message.

  • +
  • NotFound – The message was deleted already.

  • +
  • HTTPException – Deleting the message failed.

  • +
+
+
+
+ +
+ +
+
+
+

Abstract Base Classes

+

An abstract base class (also known as an abc) is a class that models can inherit +to get their behaviour. Abstract base classes should not be instantiated. +They are mainly there for usage with isinstance() and issubclass().

+

This library has a module related to abstract base classes, in which all the ABCs are subclasses of +typing.Protocol.

+
+

Snowflake

+
+ +Attributes +
+
+class discord.abc.Snowflake
+

An ABC that details the common operations on a Discord model.

+

Almost all Discord models meet this +abstract base class.

+

If you want to create a snowflake on your own, consider using +Object.

+
+
+id
+

The model’s unique ID.

+
+
Type
+

int

+
+
+
+ +
+ +
+
+

User

+
+ +Attributes +
+
+class discord.abc.User
+

An ABC that details the common operations on a Discord user.

+

The following implement this ABC:

+ +

This ABC must also implement Snowflake.

+
+
+name
+

The user’s username.

+
+
Type
+

str

+
+
+
+ +
+
+discriminator
+

The user’s discriminator.

+
+
Type
+

str

+
+
+
+ +
+
+avatar
+

The avatar asset the user has.

+
+
Type
+

Asset

+
+
+
+ +
+
+bot
+

If the user is a bot account.

+
+
Type
+

bool

+
+
+
+ +
+
+property display_name
+

Returns the user’s display name.

+
+
Type
+

str

+
+
+
+ +
+
+property mention
+

Returns a string that allows you to mention the given user.

+
+
Type
+

str

+
+
+
+ +
+ +
+
+

PrivateChannel

+
+ +Attributes +
+
+class discord.abc.PrivateChannel
+

An ABC that details the common operations on a private Discord channel.

+

The following implement this ABC:

+ +

This ABC must also implement Snowflake.

+
+
+me
+

The user presenting yourself.

+
+
Type
+

ClientUser

+
+
+
+ +
+ +
+
+

GuildChannel

+
+ +Methods +
+
+class discord.abc.GuildChannel
+

An ABC that details the common operations on a Discord guild channel.

+

The following implement this ABC:

+ +

This ABC must also implement Snowflake.

+
+
+name
+

The channel name.

+
+
Type
+

str

+
+
+
+ +
+
+guild
+

The guild the channel belongs to.

+
+
Type
+

Guild

+
+
+
+ +
+
+position
+

The position in the channel list. This is a number that starts at 0. +e.g. the top channel is position 0.

+
+
Type
+

int

+
+
+
+ +
+
+property changed_roles
+

Returns a list of roles that have been overridden from +their default values in the roles attribute.

+
+
Type
+

List[Role]

+
+
+
+ +
+
+property mention
+

The string that allows you to mention the channel.

+
+
Type
+

str

+
+
+
+ +
+
+property created_at
+

Returns the channel’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+overwrites_for(obj)
+

Returns the channel-specific overwrites for a member or a role.

+
+
Parameters
+

obj (Union[Role, User]) – The role or user denoting +whose overwrite to get.

+
+
Returns
+

The permission overwrites for this object.

+
+
Return type
+

PermissionOverwrite

+
+
+
+ +
+
+property overwrites
+

Returns all of the channel’s overwrites.

+

This is returned as a dictionary where the key contains the target which +can be either a Role or a Member and the value is the +overwrite as a PermissionOverwrite.

+
+
Returns
+

The channel’s permission overwrites.

+
+
Return type
+

Dict[Union[Role, Member], PermissionOverwrite]

+
+
+
+ +
+
+property category
+

The category this channel belongs to.

+

If there is no category then this is None.

+
+
Type
+

Optional[CategoryChannel]

+
+
+
+ +
+
+property permissions_synced
+

Whether or not the permissions for this channel are synced with the +category it belongs to.

+

If there is no category then this is False.

+
+

New in version 1.3.

+
+
+
Type
+

bool

+
+
+
+ +
+
+permissions_for(obj, /)
+

Handles permission resolution for the Member +or Role.

+

This function takes into consideration the following cases:

+
    +
  • Guild owner

  • +
  • Guild roles

  • +
  • Channel overrides

  • +
  • Member overrides

  • +
+

If a Role is passed, then it checks the permissions +someone with that role would have, which is essentially:

+
    +
  • The default role permissions

  • +
  • The permissions of the role used as a parameter

  • +
  • The default role permission overwrites

  • +
  • The permission overwrites of the role used as a parameter

  • +
+
+

Changed in version 2.0: The object passed in can now be a role object.

+
+
+
Parameters
+

obj (Union[Member, Role]) – The object to resolve permissions for. This could be either +a member or a role. If it’s a role then member overwrites +are not computed.

+
+
Returns
+

The resolved permissions for the member or role.

+
+
Return type
+

Permissions

+
+
+
+ +
+
+await delete(*, reason=None)
+

This function is a coroutine.

+

Deletes the channel.

+

You must have manage_channels permission to use this.

+
+
Parameters
+

reason (Optional[str]) – The reason for deleting this channel. +Shows up on the audit log.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to delete the channel.

  • +
  • NotFound – The channel was not found or was already deleted.

  • +
  • HTTPException – Deleting the channel failed.

  • +
+
+
+
+ +
+
+await set_permissions(target, *, overwrite=see - below, reason=None, **permissions)
+

This function is a coroutine.

+

Sets the channel specific permission overwrites for a target in the +channel.

+

The target parameter should either be a Member or a +Role that belongs to guild.

+

The overwrite parameter, if given, must either be None or +PermissionOverwrite. For convenience, you can pass in +keyword arguments denoting Permissions attributes. If this is +done, then you cannot mix the keyword arguments with the overwrite +parameter.

+

If the overwrite parameter is None, then the permission +overwrites are deleted.

+

You must have the manage_roles permission to use this.

+
+

Note

+

This method replaces the old overwrites with the ones given.

+
+

Examples

+

Setting allow and deny:

+
await message.channel.set_permissions(message.author, read_messages=True,
+                                                      send_messages=False)
+
+
+

Deleting overwrites

+
await channel.set_permissions(member, overwrite=None)
+
+
+

Using PermissionOverwrite

+
overwrite = discord.PermissionOverwrite()
+overwrite.send_messages = False
+overwrite.read_messages = True
+await channel.set_permissions(member, overwrite=overwrite)
+
+
+
+
Parameters
+
    +
  • target (Union[Member, Role]) – The member or role to overwrite permissions for.

  • +
  • overwrite (Optional[PermissionOverwrite]) – The permissions to allow and deny to the target, or None to +delete the overwrite.

  • +
  • **permissions – A keyword argument list of permissions to set for ease of use. +Cannot be mixed with overwrite.

  • +
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to edit channel specific permissions.

  • +
  • HTTPException – Editing channel specific permissions failed.

  • +
  • NotFound – The role or member being edited is not part of the guild.

  • +
  • InvalidArgument – The overwrite parameter invalid or the target type was not + Role or Member.

  • +
+
+
+
+ +
+
+await clone(*, name=None, reason=None)
+

This function is a coroutine.

+

Clones this channel. This creates a channel with the same properties +as this channel.

+

You must have the manage_channels permission to +do this.

+
+

New in version 1.1.

+
+
+
Parameters
+
    +
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this +channel name.

  • +
  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to create this channel.

  • +
  • HTTPException – Creating the channel failed.

  • +
+
+
Returns
+

The channel that was created.

+
+
Return type
+

abc.GuildChannel

+
+
+
+ +
+
+await move(**kwargs)
+

This function is a coroutine.

+

A rich interface to help move a channel relative to other channels.

+

If exact position movement is required, edit should be used instead.

+

You must have the manage_channels permission to +do this.

+
+

Note

+

Voice channels will always be sorted below text channels. +This is a Discord limitation.

+
+
+

New in version 1.7.

+
+
+
Parameters
+
    +
  • beginning (bool) – Whether to move the channel to the beginning of the +channel list (or category if given). +This is mutually exclusive with end, before, and after.

  • +
  • end (bool) – Whether to move the channel to the end of the +channel list (or category if given). +This is mutually exclusive with beginning, before, and after.

  • +
  • before (Snowflake) – The channel that should be before our current channel. +This is mutually exclusive with beginning, end, and after.

  • +
  • after (Snowflake) – The channel that should be after our current channel. +This is mutually exclusive with beginning, end, and before.

  • +
  • offset (int) – The number of channels to offset the move by. For example, +an offset of 2 with beginning=True would move +it 2 after the beginning. A positive number moves it below +while a negative number moves it above. Note that this +number is relative and computed after the beginning, +end, before, and after parameters.

  • +
  • category (Optional[Snowflake]) – The category to move this channel under. +If None is given then it moves it out of the category. +This parameter is ignored if moving a category channel.

  • +
  • sync_permissions (bool) – Whether to sync the permissions with the category (if given).

  • +
  • reason (str) – The reason for the move.

  • +
+
+
Raises
+
    +
  • InvalidArgument – An invalid position was given or a bad mix of arguments were passed.

  • +
  • Forbidden – You do not have permissions to move the channel.

  • +
  • HTTPException – Moving the channel failed.

  • +
+
+
+
+ +
+
+await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_type=None, target_user=None, target_application_id=None)
+

This function is a coroutine.

+

Creates an instant invite from a text or voice channel.

+

You must have the create_instant_invite permission to +do this.

+
+
Parameters
+
    +
  • max_age (int) – How long the invite should last in seconds. If it’s 0 then the invite +doesn’t expire. Defaults to 0.

  • +
  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there +are unlimited uses. Defaults to 0.

  • +
  • temporary (bool) – Denotes that the invite grants temporary membership +(i.e. they get kicked after they disconnect). Defaults to False.

  • +
  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. +If this is set to False then it will return a previously created +invite.

  • +
  • reason (Optional[str]) – The reason for creating this invite. Shows up on the audit log.

  • +
  • target_type (Optional[InviteTarget]) –

    The type of target for the voice channel invite, if any.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • target_user (Optional[User]) –

    The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • target_application_id:

    Optional[int]: The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • HTTPException – Invite creation failed.

  • +
  • NotFound – The channel that was passed is a category or an invalid channel.

  • +
+
+
Returns
+

The invite that was created.

+
+
Return type
+

Invite

+
+
+
+ +
+
+await invites()
+

This function is a coroutine.

+

Returns a list of all active instant invites from this channel.

+

You must have manage_channels to get this information.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to get the information.

  • +
  • HTTPException – An error occurred while fetching the information.

  • +
+
+
Returns
+

The list of invites that are currently active.

+
+
Return type
+

List[Invite]

+
+
+
+ +
+ +
+
+

Messageable

+
+ +Methods +
+
+class discord.abc.Messageable
+

An ABC that details the common operations on a model that can send messages.

+

The following implement this ABC:

+ +
+
+async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
+

Returns an AsyncIterator that enables receiving the destination’s message history.

+

You must have read_message_history permissions to use this.

+

Examples

+

Usage

+
counter = 0
+async for message in channel.history(limit=200):
+    if message.author == client.user:
+        counter += 1
+
+
+

Flattening into a list:

+
messages = await channel.history(limit=123).flatten()
+# messages is now a list of Message...
+
+
+

All parameters are optional.

+
+
Parameters
+
    +
  • limit (Optional[int]) – The number of messages to retrieve. +If None, retrieves every message in the channel. Note, however, +that this would make it a slow operation.

  • +
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time. +When using this argument, the maximum limit is 101. Note that if the limit is an +even number then this will return at most limit + 1 messages.

  • +
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if +after is specified, otherwise False.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to get channel message history.

  • +
  • HTTPException – The request to get message history failed.

  • +
+
+
Yields
+

Message – The message with the message data parsed.

+
+
+
+ +
+
+async with typing()
+

Returns a context manager that allows you to type for an indefinite period of time.

+

This is useful for denoting long computations in your bot.

+
+

Note

+

This is both a regular context manager and an async context manager. +This means that both with and async with work with this.

+
+

Example Usage:

+
async with channel.typing():
+    # simulate something heavy
+    await asyncio.sleep(10)
+
+await channel.send('done!')
+
+
+
+ +
+
+await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
+

This function is a coroutine.

+

Sends a message to the destination with the content given.

+

The content must be a type that can convert to a string through str(content). +If the content is set to None (the default), then the embed parameter must +be provided.

+

To upload a single file, the file parameter should be used with a +single File object. To upload multiple files, the files +parameter should be used with a list of File objects. +Specifying both parameters will lead to an exception.

+

To upload a single embed, the embed parameter should be used with a +single Embed object. To upload multiple embeds, the embeds +parameter should be used with a list of Embed objects. +Specifying both parameters will lead to an exception.

+
+
Parameters
+
    +
  • content (Optional[str]) – The content of the message to send.

  • +
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • +
  • embed (Embed) – The rich embed for the content.

  • +
  • file (File) – The file to upload.

  • +
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • +
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, +then the message will have a nonce with this value.

  • +
  • delete_after (float) – If provided, the number of seconds to wait in the background +before deleting the message we just sent. If the deletion fails, +then it is silently ignored.

  • +
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is +passed, then the object is merged with allowed_mentions. +The merging behaviour only overrides attributes that have been explicitly passed +to the object, otherwise it uses the attributes set in allowed_mentions. +If no object is passed at all then the defaults given by allowed_mentions +are used instead.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using +to_reference() or passed directly as a Message. You can control +whether this mentions the author of the referenced message using the replied_user +attribute of allowed_mentions or by setting mention_author.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • +
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
+
+
Returns
+

The message that was sent.

+
+
Return type
+

Message

+
+
+
+ +
+
+await trigger_typing()
+

This function is a coroutine.

+

Triggers a typing indicator to the destination.

+

Typing indicator will go away after 10 seconds, or after a message is sent.

+
+ +
+
+await fetch_message(id, /)
+

This function is a coroutine.

+

Retrieves a single Message from the destination.

+
+
Parameters
+

id (int) – The message ID to look for.

+
+
Raises
+
    +
  • NotFound – The specified message was not found.

  • +
  • Forbidden – You do not have the permissions required to get a message.

  • +
  • HTTPException – Retrieving the message failed.

  • +
+
+
Returns
+

The message asked for.

+
+
Return type
+

Message

+
+
+
+ +
+
+await pins()
+

This function is a coroutine.

+

Retrieves all messages that are currently pinned in the channel.

+
+

Note

+

Due to a limitation with the Discord API, the Message +objects returned by this method do not contain complete +Message.reactions data.

+
+
+
Raises
+

HTTPException – Retrieving the pinned messages failed.

+
+
Returns
+

The messages that are currently pinned.

+
+
Return type
+

List[Message]

+
+
+
+ +
+ +
+
+

Connectable

+
+
+class discord.abc.Connectable
+

An ABC that details the common operations on a channel that can +connect to a voice server.

+

The following implement this ABC:

+ +
+

Note

+

This ABC is not decorated with typing.runtime_checkable(), so will fail isinstance()/issubclass() +checks.

+
+
+ +
+
+
+

Discord Models

+

Models are classes that are received from Discord and are not meant to be created by +the user of the library.

+
+

Danger

+

The classes listed below are not intended to be created by users and are also +read-only.

+

For example, this means that you should not make your own User instances +nor should you modify the User instance yourself.

+

If you want to get one of these model classes instances they’d have to be through +the cache, and a common way of doing so is through the utils.find() function +or attributes of model classes that you receive from the events specified in the +Event Reference.

+
+
+

Note

+

Nearly all classes here have __slots__ defined which means that it is +impossible to have dynamic attributes to the data classes.

+
+
+

ClientUser

+
+
+class discord.ClientUser
+

Represents your Discord user.

+
+
+
+x == y
+

Checks if two users are equal.

+
+ +
+
+x != y
+

Checks if two users are not equal.

+
+ +
+
+hash(x)
+

Return the user’s hash.

+
+ +
+
+str(x)
+

Returns the user’s name with discriminator.

+
+ +
+
+
+name
+

The user’s username.

+
+
Type
+

str

+
+
+
+ +
+
+id
+

The user’s unique ID.

+
+
Type
+

int

+
+
+
+ +
+
+discriminator
+

The user’s discriminator. This is given when the username has conflicts.

+
+
Type
+

str

+
+
+
+ +
+
+bot
+

Specifies if the user is a bot account.

+
+
Type
+

bool

+
+
+
+ +
+
+system
+

Specifies if the user is a system user (i.e. represents Discord officially).

+
+

New in version 1.3.

+
+
+
Type
+

bool

+
+
+
+ +
+
+verified
+

Specifies if the user’s email is verified.

+
+
Type
+

bool

+
+
+
+ +
+
+locale
+

The IETF language tag used to identify the language the user is using.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+mfa_enabled
+

Specifies if the user has MFA turned on and working.

+
+
Type
+

bool

+
+
+
+ +
+
+await edit(*, username=..., avatar=...)
+

This function is a coroutine.

+

Edits the current profile of the client.

+
+

Note

+

To upload an avatar, a bytes-like object must be passed in that +represents the image being uploaded. If this is done through a file +then the file must be opened via open('some_filename', 'rb') and +the bytes-like object is given through the use of fp.read().

+

The only image formats supported for uploading is JPEG and PNG.

+
+
+

Changed in version 2.0: The edit is no longer in-place, instead the newly edited client user is returned.

+
+
+
Parameters
+
    +
  • username (str) – The new username you wish to change to.

  • +
  • avatar (bytes) – A bytes-like object representing the image to upload. +Could be None to denote no avatar.

  • +
+
+
Raises
+
+
+
Returns
+

The newly edited client user.

+
+
Return type
+

ClientUser

+
+
+
+ +
+
+property accent_color
+

Returns the user’s accent color, if applicable.

+

There is an alias for this named accent_colour.

+
+

New in version 2.0.

+
+
+

Note

+

This information is only available via Client.fetch_user().

+
+
+
Type
+

Optional[Colour]

+
+
+
+ +
+
+property accent_colour
+

Returns the user’s accent colour, if applicable.

+

There is an alias for this named accent_color.

+
+

New in version 2.0.

+
+
+

Note

+

This information is only available via Client.fetch_user().

+
+
+
Type
+

Optional[Colour]

+
+
+
+ +
+
+property avatar
+

Returns an Asset for the avatar the user has.

+

If the user does not have a traditional avatar, None is returned. +If you want the avatar that a user has displayed, consider display_avatar.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property banner
+

Returns the user’s banner asset, if available.

+
+

New in version 2.0.

+
+
+

Note

+

This information is only available via Client.fetch_user().

+
+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property color
+

A property that returns a color denoting the rendered color +for the user. This always returns Colour.default().

+

There is an alias for this named colour.

+
+
Type
+

Colour

+
+
+
+ +
+
+property colour
+

A property that returns a colour denoting the rendered colour +for the user. This always returns Colour.default().

+

There is an alias for this named color.

+
+
Type
+

Colour

+
+
+
+ +
+
+property created_at
+

Returns the user’s creation time in UTC.

+

This is when the user’s Discord account was created.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+property default_avatar
+

Returns the default avatar for a given user. This is calculated by the user’s discriminator.

+
+
Type
+

Asset

+
+
+
+ +
+
+property display_avatar
+

Returns the user’s display avatar.

+

For regular users this is just their default avatar or uploaded avatar.

+
+

New in version 2.0.

+
+
+
Type
+

Asset

+
+
+
+ +
+
+property display_name
+

Returns the user’s display name.

+

For regular users this is just their username, but +if they have a guild specific nickname then that +is returned instead.

+
+
Type
+

str

+
+
+
+ +
+
+property mention
+

Returns a string that allows you to mention the given user.

+
+
Type
+

str

+
+
+
+ +
+
+mentioned_in(message)
+

Checks if the user is mentioned in the specified message.

+
+
Parameters
+

message (Message) – The message to check if you’re mentioned in.

+
+
Returns
+

Indicates if the user is mentioned in the message.

+
+
Return type
+

bool

+
+
+
+ +
+
+property public_flags
+

The publicly available flags the user has.

+
+
Type
+

PublicUserFlags

+
+
+
+ +
+ +
+
+

User

+
+
+class discord.User
+

Represents a Discord user.

+
+
+
+x == y
+

Checks if two users are equal.

+
+ +
+
+x != y
+

Checks if two users are not equal.

+
+ +
+
+hash(x)
+

Return the user’s hash.

+
+ +
+
+str(x)
+

Returns the user’s name with discriminator.

+
+ +
+
+int(x)
+

Returns the user’s ID.

+
+ +
+
+
+name
+

The user’s username.

+
+
Type
+

str

+
+
+
+ +
+
+id
+

The user’s unique ID.

+
+
Type
+

int

+
+
+
+ +
+
+discriminator
+

The user’s discriminator. This is given when the username has conflicts.

+
+
Type
+

str

+
+
+
+ +
+
+bot
+

Specifies if the user is a bot account.

+
+
Type
+

bool

+
+
+
+ +
+
+system
+

Specifies if the user is a system user (i.e. represents Discord officially).

+
+
Type
+

bool

+
+
+
+ +
+
+async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
+

Returns an AsyncIterator that enables receiving the destination’s message history.

+

You must have read_message_history permissions to use this.

+

Examples

+

Usage

+
counter = 0
+async for message in channel.history(limit=200):
+    if message.author == client.user:
+        counter += 1
+
+
+

Flattening into a list:

+
messages = await channel.history(limit=123).flatten()
+# messages is now a list of Message...
+
+
+

All parameters are optional.

+
+
Parameters
+
    +
  • limit (Optional[int]) – The number of messages to retrieve. +If None, retrieves every message in the channel. Note, however, +that this would make it a slow operation.

  • +
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time. +When using this argument, the maximum limit is 101. Note that if the limit is an +even number then this will return at most limit + 1 messages.

  • +
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if +after is specified, otherwise False.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to get channel message history.

  • +
  • HTTPException – The request to get message history failed.

  • +
+
+
Yields
+

Message – The message with the message data parsed.

+
+
+
+ +
+
+async with typing()
+

Returns a context manager that allows you to type for an indefinite period of time.

+

This is useful for denoting long computations in your bot.

+
+

Note

+

This is both a regular context manager and an async context manager. +This means that both with and async with work with this.

+
+

Example Usage:

+
async with channel.typing():
+    # simulate something heavy
+    await asyncio.sleep(10)
+
+await channel.send('done!')
+
+
+
+ +
+
+property dm_channel
+

Returns the channel associated with this user if it exists.

+

If this returns None, you can create a DM channel by calling the +create_dm() coroutine function.

+
+
Type
+

Optional[DMChannel]

+
+
+
+ +
+
+property mutual_guilds
+

The guilds that the user shares with the client.

+
+

Note

+

This will only return mutual guilds within the client’s internal cache.

+
+
+

New in version 1.7.

+
+
+
Type
+

List[Guild]

+
+
+
+ +
+
+property accent_color
+

Returns the user’s accent color, if applicable.

+

There is an alias for this named accent_colour.

+
+

New in version 2.0.

+
+
+

Note

+

This information is only available via Client.fetch_user().

+
+
+
Type
+

Optional[Colour]

+
+
+
+ +
+
+property accent_colour
+

Returns the user’s accent colour, if applicable.

+

There is an alias for this named accent_color.

+
+

New in version 2.0.

+
+
+

Note

+

This information is only available via Client.fetch_user().

+
+
+
Type
+

Optional[Colour]

+
+
+
+ +
+
+property avatar
+

Returns an Asset for the avatar the user has.

+

If the user does not have a traditional avatar, None is returned. +If you want the avatar that a user has displayed, consider display_avatar.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property banner
+

Returns the user’s banner asset, if available.

+
+

New in version 2.0.

+
+
+

Note

+

This information is only available via Client.fetch_user().

+
+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property color
+

A property that returns a color denoting the rendered color +for the user. This always returns Colour.default().

+

There is an alias for this named colour.

+
+
Type
+

Colour

+
+
+
+ +
+
+property colour
+

A property that returns a colour denoting the rendered colour +for the user. This always returns Colour.default().

+

There is an alias for this named color.

+
+
Type
+

Colour

+
+
+
+ +
+
+await create_dm()
+

This function is a coroutine.

+

Creates a DMChannel with this user.

+

This should be rarely called, as this is done transparently for most +people.

+
+
Returns
+

The channel that was created.

+
+
Return type
+

DMChannel

+
+
+
+ +
+
+property created_at
+

Returns the user’s creation time in UTC.

+

This is when the user’s Discord account was created.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+property default_avatar
+

Returns the default avatar for a given user. This is calculated by the user’s discriminator.

+
+
Type
+

Asset

+
+
+
+ +
+
+property display_avatar
+

Returns the user’s display avatar.

+

For regular users this is just their default avatar or uploaded avatar.

+
+

New in version 2.0.

+
+
+
Type
+

Asset

+
+
+
+ +
+
+property display_name
+

Returns the user’s display name.

+

For regular users this is just their username, but +if they have a guild specific nickname then that +is returned instead.

+
+
Type
+

str

+
+
+
+ +
+
+await fetch_message(id, /)
+

This function is a coroutine.

+

Retrieves a single Message from the destination.

+
+
Parameters
+

id (int) – The message ID to look for.

+
+
Raises
+
    +
  • NotFound – The specified message was not found.

  • +
  • Forbidden – You do not have the permissions required to get a message.

  • +
  • HTTPException – Retrieving the message failed.

  • +
+
+
Returns
+

The message asked for.

+
+
Return type
+

Message

+
+
+
+ +
+
+property mention
+

Returns a string that allows you to mention the given user.

+
+
Type
+

str

+
+
+
+ +
+
+mentioned_in(message)
+

Checks if the user is mentioned in the specified message.

+
+
Parameters
+

message (Message) – The message to check if you’re mentioned in.

+
+
Returns
+

Indicates if the user is mentioned in the message.

+
+
Return type
+

bool

+
+
+
+ +
+
+await pins()
+

This function is a coroutine.

+

Retrieves all messages that are currently pinned in the channel.

+
+

Note

+

Due to a limitation with the Discord API, the Message +objects returned by this method do not contain complete +Message.reactions data.

+
+
+
Raises
+

HTTPException – Retrieving the pinned messages failed.

+
+
Returns
+

The messages that are currently pinned.

+
+
Return type
+

List[Message]

+
+
+
+ +
+
+property public_flags
+

The publicly available flags the user has.

+
+
Type
+

PublicUserFlags

+
+
+
+ +
+
+await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
+

This function is a coroutine.

+

Sends a message to the destination with the content given.

+

The content must be a type that can convert to a string through str(content). +If the content is set to None (the default), then the embed parameter must +be provided.

+

To upload a single file, the file parameter should be used with a +single File object. To upload multiple files, the files +parameter should be used with a list of File objects. +Specifying both parameters will lead to an exception.

+

To upload a single embed, the embed parameter should be used with a +single Embed object. To upload multiple embeds, the embeds +parameter should be used with a list of Embed objects. +Specifying both parameters will lead to an exception.

+
+
Parameters
+
    +
  • content (Optional[str]) – The content of the message to send.

  • +
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • +
  • embed (Embed) – The rich embed for the content.

  • +
  • file (File) – The file to upload.

  • +
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • +
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, +then the message will have a nonce with this value.

  • +
  • delete_after (float) – If provided, the number of seconds to wait in the background +before deleting the message we just sent. If the deletion fails, +then it is silently ignored.

  • +
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is +passed, then the object is merged with allowed_mentions. +The merging behaviour only overrides attributes that have been explicitly passed +to the object, otherwise it uses the attributes set in allowed_mentions. +If no object is passed at all then the defaults given by allowed_mentions +are used instead.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using +to_reference() or passed directly as a Message. You can control +whether this mentions the author of the referenced message using the replied_user +attribute of allowed_mentions or by setting mention_author.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • +
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
+
+
Returns
+

The message that was sent.

+
+
Return type
+

Message

+
+
+
+ +
+
+await trigger_typing()
+

This function is a coroutine.

+

Triggers a typing indicator to the destination.

+

Typing indicator will go away after 10 seconds, or after a message is sent.

+
+ +
+ +
+
+

Attachment

+
+ +Methods +
+
+class discord.Attachment
+

Represents an attachment from Discord.

+
+
+
+str(x)
+

Returns the URL of the attachment.

+
+ +
+
+x == y
+

Checks if the attachment is equal to another attachment.

+
+ +
+
+x != y
+

Checks if the attachment is not equal to another attachment.

+
+ +
+
+hash(x)
+

Returns the hash of the attachment.

+
+ +
+
+int(x)
+

Returns the attachment’s ID.

+
+ +
+
+

Changed in version 1.7: Attachment can now be casted to str and is hashable.

+
+
+
+id
+

The attachment ID.

+
+
Type
+

int

+
+
+
+ +
+
+size
+

The attachment size in bytes.

+
+
Type
+

int

+
+
+
+ +
+
+height
+

The attachment’s height, in pixels. Only applicable to images and videos.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+width
+

The attachment’s width, in pixels. Only applicable to images and videos.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+filename
+

The attachment’s filename.

+
+
Type
+

str

+
+
+
+ +
+
+url
+

The attachment URL. If the message this attachment was attached +to is deleted, then this will 404.

+
+
Type
+

str

+
+
+
+ +
+
+proxy_url
+

The proxy URL. This is a cached version of the url in the +case of images. When the message is deleted, this URL might be valid for a few +minutes or not valid at all.

+
+
Type
+

str

+
+
+
+ +
+
+content_type
+

The attachment’s media type

+
+

New in version 1.7.

+
+
+
Type
+

Optional[str]

+
+
+
+ +
+
+ephemeral
+

If the attachment is ephemeral. Ephemeral attachments are temporary and +will automatically be removed after a set period of time.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[bool]

+
+
+
+ +
+
+is_spoiler()
+

bool: Whether this attachment contains a spoiler.

+
+ +
+
+await save(fp, *, seek_begin=True, use_cached=False)
+

This function is a coroutine.

+

Saves this attachment into a file-like object.

+
+
Parameters
+
    +
  • fp (Union[io.BufferedIOBase, os.PathLike]) – The file-like object to save this attachment to or the filename +to use. If a filename is passed then a file is created with that +filename and used instead.

  • +
  • seek_begin (bool) – Whether to seek to the beginning of the file after saving is +successfully done.

  • +
  • use_cached (bool) – Whether to use proxy_url rather than url when downloading +the attachment. This will allow attachments to be saved after deletion +more often, compared to the regular URL which is generally deleted right +after the message is deleted. Note that this can still fail to download +deleted attachments if too much time has passed and it does not work +on some types of attachments.

  • +
+
+
Raises
+
+
+
Returns
+

The number of bytes written.

+
+
Return type
+

int

+
+
+
+ +
+
+await read(*, use_cached=False)
+

This function is a coroutine.

+

Retrieves the content of this attachment as a bytes object.

+
+

New in version 1.1.

+
+
+
Parameters
+

use_cached (bool) – Whether to use proxy_url rather than url when downloading +the attachment. This will allow attachments to be saved after deletion +more often, compared to the regular URL which is generally deleted right +after the message is deleted. Note that this can still fail to download +deleted attachments if too much time has passed and it does not work +on some types of attachments.

+
+
Raises
+
    +
  • HTTPException – Downloading the attachment failed.

  • +
  • Forbidden – You do not have permissions to access this attachment

  • +
  • NotFound – The attachment was deleted.

  • +
+
+
Returns
+

The contents of the attachment.

+
+
Return type
+

bytes

+
+
+
+ +
+
+await to_file(*, use_cached=False, spoiler=False)
+

This function is a coroutine.

+

Converts the attachment into a File suitable for sending via +abc.Messageable.send().

+
+

New in version 1.3.

+
+
+
Parameters
+
    +
  • use_cached (bool) –

    Whether to use proxy_url rather than url when downloading +the attachment. This will allow attachments to be saved after deletion +more often, compared to the regular URL which is generally deleted right +after the message is deleted. Note that this can still fail to download +deleted attachments if too much time has passed and it does not work +on some types of attachments.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • spoiler (bool) –

    Whether the file is a spoiler.

    +
    +

    New in version 1.4.

    +
    +

  • +
+
+
Raises
+
    +
  • HTTPException – Downloading the attachment failed.

  • +
  • Forbidden – You do not have permissions to access this attachment

  • +
  • NotFound – The attachment was deleted.

  • +
+
+
Returns
+

The attachment as a file suitable for sending.

+
+
Return type
+

File

+
+
+
+ +
+ +
+
+

Asset

+
+ +Attributes +
+ +Methods +
+
+class discord.Asset
+

Represents a CDN asset on Discord.

+
+
+
+str(x)
+

Returns the URL of the CDN asset.

+
+ +
+
+len(x)
+

Returns the length of the CDN asset’s URL.

+
+ +
+
+x == y
+

Checks if the asset is equal to another asset.

+
+ +
+
+x != y
+

Checks if the asset is not equal to another asset.

+
+ +
+
+hash(x)
+

Returns the hash of the asset.

+
+ +
+
+
+property url
+

Returns the underlying URL of the asset.

+
+
Type
+

str

+
+
+
+ +
+
+property key
+

Returns the identifying key of the asset.

+
+
Type
+

str

+
+
+
+ +
+
+is_animated()
+

bool: Returns whether the asset is animated.

+
+ +
+
+replace(*, size=..., format=..., static_format=...)
+

Returns a new asset with the passed components replaced.

+
+
Parameters
+
    +
  • size (int) – The new size of the asset.

  • +
  • format (str) – The new format to change it to. Must be either +‘webp’, ‘jpeg’, ‘jpg’, ‘png’, or ‘gif’ if it’s animated.

  • +
  • static_format (str) – The new format to change it to if the asset isn’t animated. +Must be either ‘webp’, ‘jpeg’, ‘jpg’, or ‘png’.

  • +
+
+
Raises
+

InvalidArgument – An invalid size or format was passed.

+
+
Returns
+

The newly updated asset.

+
+
Return type
+

Asset

+
+
+
+ +
+
+with_size(size, /)
+

Returns a new asset with the specified size.

+
+
Parameters
+

size (int) – The new size of the asset.

+
+
Raises
+

InvalidArgument – The asset had an invalid size.

+
+
Returns
+

The new updated asset.

+
+
Return type
+

Asset

+
+
+
+ +
+
+with_format(format, /)
+

Returns a new asset with the specified format.

+
+
Parameters
+

format (str) – The new format of the asset.

+
+
Raises
+

InvalidArgument – The asset had an invalid format.

+
+
Returns
+

The new updated asset.

+
+
Return type
+

Asset

+
+
+
+ +
+
+with_static_format(format, /)
+

Returns a new asset with the specified static format.

+

This only changes the format if the underlying asset is +not animated. Otherwise, the asset is not changed.

+
+
Parameters
+

format (str) – The new static format of the asset.

+
+
Raises
+

InvalidArgument – The asset had an invalid format.

+
+
Returns
+

The new updated asset.

+
+
Return type
+

Asset

+
+
+
+ +
+
+await read()
+

This function is a coroutine.

+

Retrieves the content of this asset as a bytes object.

+
+
Raises
+
+
+
Returns
+

The content of the asset.

+
+
Return type
+

bytes

+
+
+
+ +
+
+await save(fp, *, seek_begin=True)
+

This function is a coroutine.

+

Saves this asset into a file-like object.

+
+
Parameters
+
    +
  • fp (Union[io.BufferedIOBase, os.PathLike]) – The file-like object to save this attachment to or the filename +to use. If a filename is passed then a file is created with that +filename and used instead.

  • +
  • seek_begin (bool) – Whether to seek to the beginning of the file after saving is +successfully done.

  • +
+
+
Raises
+
+
+
Returns
+

The number of bytes written.

+
+
Return type
+

int

+
+
+
+ +
+ +
+
+

Message

+
+
+class discord.Message
+

Represents a message from Discord.

+
+
+
+x == y
+

Checks if two messages are equal.

+
+ +
+
+x != y
+

Checks if two messages are not equal.

+
+ +
+
+hash(x)
+

Returns the message’s hash.

+
+ +
+
+str(x)
+

Returns the message’s content.

+
+ +
+
+int(x)
+

Returns the message’s ID.

+
+ +
+
+
+tts
+

Specifies if the message was done with text-to-speech. +This can only be accurately received in on_message() due to +a discord limitation.

+
+
Type
+

bool

+
+
+
+ +
+
+type
+

The type of message. In most cases this should not be checked, but it is helpful +in cases where it might be a system message for system_content.

+
+
Type
+

MessageType

+
+
+
+ +
+
+author
+

A Member that sent the message. If channel is a +private channel or the user has the left the guild, then it is a User instead.

+
+
Type
+

Union[Member, abc.User]

+
+
+
+ +
+
+content
+

The actual contents of the message.

+
+
Type
+

str

+
+
+
+ +
+
+nonce
+

The value used by the discord guild and the client to verify that the message is successfully sent. +This is not stored long term within Discord’s servers and is only used ephemerally.

+
+
Type
+

Optional[Union[str, int]]

+
+
+
+ +
+
+embeds
+

A list of embeds the message has.

+
+
Type
+

List[Embed]

+
+
+
+ +
+
+channel
+

The TextChannel or Thread that the message was sent from. +Could be a DMChannel or GroupChannel if it’s a private message.

+
+
Type
+

Union[TextChannel, Thread, DMChannel, GroupChannel, PartialMessageable]

+
+
+
+ +
+
+reference
+

The message that this message references. This is only applicable to messages of +type MessageType.pins_add, crossposted messages created by a +followed channel integration, or message replies.

+
+

New in version 1.5.

+
+
+
Type
+

Optional[MessageReference]

+
+
+
+ +
+
+mention_everyone
+

Specifies if the message mentions everyone.

+
+

Note

+

This does not check if the @everyone or the @here text is in the message itself. +Rather this boolean indicates if either the @everyone or the @here text is in the message +and it did end up mentioning.

+
+
+
Type
+

bool

+
+
+
+ +
+
+mentions
+

A list of Member that were mentioned. If the message is in a private message +then the list will be of User instead. For messages that are not of type +MessageType.default, this array can be used to aid in system messages. +For more information, see system_content.

+
+

Warning

+

The order of the mentions list is not in any particular order so you should +not rely on it. This is a Discord limitation, not one with the library.

+
+
+
Type
+

List[abc.User]

+
+
+
+ +
+
+channel_mentions
+

A list of abc.GuildChannel that were mentioned. If the message is in a private message +then the list is always empty.

+
+
Type
+

List[abc.GuildChannel]

+
+
+
+ +
+
+role_mentions
+

A list of Role that were mentioned. If the message is in a private message +then the list is always empty.

+
+
Type
+

List[Role]

+
+
+
+ +
+
+id
+

The message ID.

+
+
Type
+

int

+
+
+
+ +
+
+webhook_id
+

If this message was sent by a webhook, then this is the webhook ID’s that sent this +message.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+attachments
+

A list of attachments given to a message.

+
+
Type
+

List[Attachment]

+
+
+
+ +
+
+pinned
+

Specifies if the message is currently pinned.

+
+
Type
+

bool

+
+
+
+ +
+
+flags
+

Extra features of the message.

+
+

New in version 1.3.

+
+
+
Type
+

MessageFlags

+
+
+
+ +
+
+reactions
+

Reactions to a message. Reactions can be either custom emoji or standard unicode emoji.

+
+
Type
+

List[Reaction]

+
+
+
+ +
+
+activity
+

The activity associated with this message. Sent with Rich-Presence related messages that for +example, request joining, spectating, or listening to or with another member.

+

It is a dictionary with the following optional keys:

+
    +
  • type: An integer denoting the type of message activity being requested.

  • +
  • party_id: The party ID associated with the party.

  • +
+
+
Type
+

Optional[dict]

+
+
+
+ +
+
+application
+

The rich presence enabled application associated with this message.

+

It is a dictionary with the following keys:

+
    +
  • id: A string representing the application’s ID.

  • +
  • name: A string representing the application’s name.

  • +
  • description: A string representing the application’s description.

  • +
  • icon: A string representing the icon ID of the application.

  • +
  • cover_image: A string representing the embed’s image asset ID.

  • +
+
+
Type
+

Optional[dict]

+
+
+
+ +
+
+stickers
+

A list of sticker items given to the message.

+
+

New in version 1.6.

+
+
+
Type
+

List[StickerItem]

+
+
+
+ +
+
+components
+

A list of components in the message.

+
+

New in version 2.0.

+
+
+
Type
+

List[Component]

+
+
+
+ +
+
+guild
+

The guild that the message belongs to, if applicable.

+
+
Type
+

Optional[Guild]

+
+
+
+ +
+
+raw_mentions
+

A property that returns an array of user IDs matched with +the syntax of <@user_id> in the message content.

+

This allows you to receive the user IDs of mentioned users +even in a private message context.

+
+
Type
+

List[int]

+
+
+
+ +
+
+raw_channel_mentions
+

A property that returns an array of channel IDs matched with +the syntax of <#channel_id> in the message content.

+
+
Type
+

List[int]

+
+
+
+ +
+
+raw_role_mentions
+

A property that returns an array of role IDs matched with +the syntax of <@&role_id> in the message content.

+
+
Type
+

List[int]

+
+
+
+ +
+
+clean_content
+

A property that returns the content in a “cleaned up” +manner. This basically means that mentions are transformed +into the way the client shows it. e.g. <#id> will transform +into #name.

+

This will also transform @everyone and @here mentions into +non-mentions.

+
+

Note

+

This does not affect markdown. If you want to escape +or remove markdown then use utils.escape_markdown() or utils.remove_markdown() +respectively, along with this function.

+
+
+
Type
+

str

+
+
+
+ +
+
+property created_at
+

The message’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+property edited_at
+

An aware UTC datetime object containing the edited time of the message.

+
+
Type
+

Optional[datetime.datetime]

+
+
+
+ +
+
+property jump_url
+

Returns a URL that allows the client to jump to this message.

+
+
Type
+

str

+
+
+
+ +
+
+is_system()
+

bool: Whether the message is a system message.

+

A system message is a message that is constructed entirely by the Discord API +in response to something.

+
+

New in version 1.3.

+
+
+ +
+
+system_content
+

A property that returns the content that is rendered +regardless of the Message.type.

+

In the case of MessageType.default and MessageType.reply, +this just returns the regular Message.content. Otherwise this +returns an English message denoting the contents of the system message.

+
+
Type
+

str

+
+
+
+ +
+
+await delete(*, delay=None, silent=False)
+

This function is a coroutine.

+

Deletes the message.

+

Your own messages could be deleted without any proper permissions. However to +delete other people’s messages, you need the manage_messages +permission.

+
+

Changed in version 1.1: Added the new delay keyword-only parameter.

+
+
+

Changed in version 2.0: Added the new silent keyword-only parameter.

+
+
+
Parameters
+
    +
  • delay (Optional[float]) – If provided, the number of seconds to wait in the background +before deleting the message. If the deletion fails then it is silently ignored.

  • +
  • silent (bool) – If silent is set to True, the error will not be raised, it will be ignored. +This defaults to False

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to delete the message.

  • +
  • NotFound – The message was deleted already

  • +
  • HTTPException – Deleting the message failed.

  • +
+
+
+
+ +
+
+await edit(content=..., embed=..., embeds=..., attachments=..., suppress=..., delete_after=None, allowed_mentions=..., view=...)
+

This function is a coroutine.

+

Edits the message.

+

The content must be able to be transformed into a string via str(content).

+
+

Changed in version 1.3: The suppress keyword-only parameter was added.

+
+
+
Parameters
+
    +
  • content (Optional[str]) – The new content to replace the message with. +Could be None to remove the content.

  • +
  • embed (Optional[Embed]) – The new embed to replace the original with. +Could be None to remove the embed.

  • +
  • embeds (List[Embed]) –

    The new embeds to replace the original with. Must be a maximum of 10. +To remove all embeds [] should be passed.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • attachments (List[Attachment]) – A list of attachments to keep in the message. If [] is passed +then all attachments are removed.

  • +
  • suppress (bool) – Whether to suppress embeds for the message. This removes +all the embeds if set to True. If set to False +this brings the embeds back if they were suppressed. +Using this parameter requires manage_messages.

  • +
  • delete_after (Optional[float]) – If provided, the number of seconds to wait in the background +before deleting the message we just edited. If the deletion fails, +then it is silently ignored.

  • +
  • allowed_mentions (Optional[AllowedMentions]) –

    Controls the mentions being processed in this message. If this is +passed, then the object is merged with allowed_mentions. +The merging behaviour only overrides attributes that have been explicitly passed +to the object, otherwise it uses the attributes set in allowed_mentions. +If no object is passed at all then the defaults given by allowed_mentions +are used instead.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • view (Optional[View]) – The updated view to update this message with. If None is passed then +the view is removed.

  • +
+
+
Raises
+
    +
  • HTTPException – Editing the message failed.

  • +
  • Forbidden – Tried to suppress a message without permissions or + edited a message’s content or embed that isn’t yours.

  • +
  • InvalidArgument – You specified both embed and embeds

  • +
+
+
+
+ +
+
+await publish()
+

This function is a coroutine.

+

Publishes this message to your announcement channel.

+

You must have the send_messages permission to do this.

+

If the message is not your own then the manage_messages +permission is also needed.

+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to publish this message.

  • +
  • HTTPException – Publishing the message failed.

  • +
+
+
+
+ +
+
+await pin(*, reason=None)
+

This function is a coroutine.

+

Pins the message.

+

You must have the manage_messages permission to do +this in a non-private channel context.

+
+
Parameters
+

reason (Optional[str]) –

The reason for pinning the message. Shows up on the audit log.

+
+

New in version 1.4.

+
+

+
+
Raises
+
    +
  • Forbidden – You do not have permissions to pin the message.

  • +
  • NotFound – The message or channel was not found or deleted.

  • +
  • HTTPException – Pinning the message failed, probably due to the channel + having more than 50 pinned messages.

  • +
+
+
+
+ +
+
+await unpin(*, reason=None)
+

This function is a coroutine.

+

Unpins the message.

+

You must have the manage_messages permission to do +this in a non-private channel context.

+
+
Parameters
+

reason (Optional[str]) –

The reason for unpinning the message. Shows up on the audit log.

+
+

New in version 1.4.

+
+

+
+
Raises
+
    +
  • Forbidden – You do not have permissions to unpin the message.

  • +
  • NotFound – The message or channel was not found or deleted.

  • +
  • HTTPException – Unpinning the message failed.

  • +
+
+
+
+ +
+
+await add_reaction(emoji)
+

This function is a coroutine.

+

Add a reaction to the message.

+

The emoji may be a unicode emoji or a custom guild Emoji.

+

You must have the read_message_history permission +to use this. If nobody else has reacted to the message using this +emoji, the add_reactions permission is required.

+
+
Parameters
+

emoji (Union[Emoji, Reaction, PartialEmoji, str]) – The emoji to react with.

+
+
Raises
+
    +
  • HTTPException – Adding the reaction failed.

  • +
  • Forbidden – You do not have the proper permissions to react to the message.

  • +
  • NotFound – The emoji you specified was not found.

  • +
  • InvalidArgument – The emoji parameter is invalid.

  • +
+
+
+
+ +
+
+await remove_reaction(emoji, member)
+

This function is a coroutine.

+

Remove a reaction by the member from the message.

+

The emoji may be a unicode emoji or a custom guild Emoji.

+

If the reaction is not your own (i.e. member parameter is not you) then +the manage_messages permission is needed.

+

The member parameter must represent a member and meet +the abc.Snowflake abc.

+
+
Parameters
+
+
+
Raises
+
    +
  • HTTPException – Removing the reaction failed.

  • +
  • Forbidden – You do not have the proper permissions to remove the reaction.

  • +
  • NotFound – The member or emoji you specified was not found.

  • +
  • InvalidArgument – The emoji parameter is invalid.

  • +
+
+
+
+ +
+
+await clear_reaction(emoji)
+

This function is a coroutine.

+

Clears a specific reaction from the message.

+

The emoji may be a unicode emoji or a custom guild Emoji.

+

You need the manage_messages permission to use this.

+
+

New in version 1.3.

+
+
+
Parameters
+

emoji (Union[Emoji, Reaction, PartialEmoji, str]) – The emoji to clear.

+
+
Raises
+
    +
  • HTTPException – Clearing the reaction failed.

  • +
  • Forbidden – You do not have the proper permissions to clear the reaction.

  • +
  • NotFound – The emoji you specified was not found.

  • +
  • InvalidArgument – The emoji parameter is invalid.

  • +
+
+
+
+ +
+
+await clear_reactions()
+

This function is a coroutine.

+

Removes all the reactions from the message.

+

You need the manage_messages permission to use this.

+
+
Raises
+
    +
  • HTTPException – Removing the reactions failed.

  • +
  • Forbidden – You do not have the proper permissions to remove all the reactions.

  • +
+
+
+
+ +
+
+await create_thread(*, name, auto_archive_duration=...)
+

This function is a coroutine.

+

Creates a public thread from this message.

+

You must have create_public_threads in order to +create a public thread from a message.

+

The channel this message belongs in must be a TextChannel.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • name (str) – The name of the thread.

  • +
  • auto_archive_duration (int) – The duration in minutes before a thread is automatically archived for inactivity. +If not provided, the channel’s default auto archive duration is used.

  • +
+
+
Raises
+
+
+
Returns
+

The created thread.

+
+
Return type
+

Thread

+
+
+
+ +
+
+await reply(content=None, **kwargs)
+

This function is a coroutine.

+

A shortcut method to abc.Messageable.send() to reply to the +Message.

+
+

New in version 1.6.

+
+
+
Raises
+
    +
  • HTTPException – Sending the message failed.

  • +
  • Forbidden – You do not have the proper permissions to send the message.

  • +
  • InvalidArgument – The files list is not of the appropriate size or + you specified both file and files.

  • +
+
+
Returns
+

The message that was sent.

+
+
Return type
+

Message

+
+
+
+ +
+
+to_reference(*, fail_if_not_exists=True)
+

Creates a MessageReference from the current message.

+
+

New in version 1.6.

+
+
+
Parameters
+

fail_if_not_exists (bool) –

Whether replying using the message reference should raise HTTPException +if the message no longer exists or Discord could not fetch the message.

+
+

New in version 1.7.

+
+

+
+
Returns
+

The reference to this message.

+
+
Return type
+

MessageReference

+
+
+
+ +
+ +
+
+

Component

+
+ +Attributes +
+
+class discord.Component
+

Represents a Discord Bot UI Kit Component.

+

Currently, the only components supported by Discord are:

+ +

This class is abstract and cannot be instantiated.

+
+

New in version 2.0.

+
+
+
+type
+

The type of component.

+
+
Type
+

ComponentType

+
+
+
+ +
+ +
+
+

ActionRow

+
+ +Attributes +
+
+class discord.ActionRow
+

Represents a Discord Bot UI Kit Action Row.

+

This is a component that holds up to 5 children components in a row.

+

This inherits from Component.

+
+

New in version 2.0.

+
+
+
+type
+

The type of component.

+
+
Type
+

ComponentType

+
+
+
+ +
+
+children
+

The children components that this holds, if any.

+
+
Type
+

List[Component]

+
+
+
+ +
+ +
+
+

Button

+
+ +Attributes +
+
+class discord.Button
+

Represents a button from the Discord Bot UI Kit.

+

This inherits from Component.

+
+

Note

+

The user constructible and usable type to create a button is discord.ui.Button +not this one.

+
+
+

New in version 2.0.

+
+
+
+style
+

The style of the button.

+
+
Type
+

ButtonStyle

+
+
+
+ +
+
+custom_id
+

The ID of the button that gets received during an interaction. +If this button is for a URL, it does not have a custom ID.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+url
+

The URL this button sends you to.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+disabled
+

Whether the button is disabled or not.

+
+
Type
+

bool

+
+
+
+ +
+
+label
+

The label of the button, if any.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+emoji
+

The emoji of the button, if available.

+
+
Type
+

Optional[PartialEmoji]

+
+
+
+ +
+ +
+
+

SelectMenu

+
+
+class discord.SelectMenu
+

Represents a select menu from the Discord Bot UI Kit.

+

A select menu is functionally the same as a dropdown, however +on mobile it renders a bit differently.

+
+

Note

+

The user constructible and usable type to create a select menu is +discord.ui.Select not this one.

+
+
+

New in version 2.0.

+
+
+
+custom_id
+

The ID of the select menu that gets received during an interaction.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+placeholder
+

The placeholder text that is shown if nothing is selected, if any.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+min_values
+

The minimum number of items that must be chosen for this select menu. +Defaults to 1 and must be between 1 and 25.

+
+
Type
+

int

+
+
+
+ +
+
+max_values
+

The maximum number of items that must be chosen for this select menu. +Defaults to 1 and must be between 1 and 25.

+
+
Type
+

int

+
+
+
+ +
+
+options
+

A list of options that can be selected in this menu.

+
+
Type
+

List[SelectOption]

+
+
+
+ +
+
+disabled
+

Whether the select is disabled or not.

+
+
Type
+

bool

+
+
+
+ +
+ +
+
+

DeletedReferencedMessage

+
+ +Attributes +
+
+class discord.DeletedReferencedMessage
+

A special sentinel type that denotes whether the +resolved message referenced message had since been deleted.

+

The purpose of this class is to separate referenced messages that could not be +fetched and those that were previously fetched but have since been deleted.

+
+

New in version 1.6.

+
+
+
+property id
+

The message ID of the deleted referenced message.

+
+
Type
+

int

+
+
+
+ +
+
+property channel_id
+

The channel ID of the deleted referenced message.

+
+
Type
+

int

+
+
+
+ +
+
+property guild_id
+

The guild ID of the deleted referenced message.

+
+
Type
+

Optional[int]

+
+
+
+ +
+ +
+
+

Reaction

+
+ +Attributes +
+ +Methods +
+
+class discord.Reaction
+

Represents a reaction to a message.

+

Depending on the way this object was created, some of the attributes can +have a value of None.

+
+
+
+x == y
+

Checks if two reactions are equal. This works by checking if the emoji +is the same. So two messages with the same reaction will be considered +“equal”.

+
+ +
+
+x != y
+

Checks if two reactions are not equal.

+
+ +
+
+hash(x)
+

Returns the reaction’s hash.

+
+ +
+
+str(x)
+

Returns the string form of the reaction’s emoji.

+
+ +
+
+
+emoji
+

The reaction emoji. May be a custom emoji, or a unicode emoji.

+
+
Type
+

Union[Emoji, PartialEmoji, str]

+
+
+
+ +
+
+count
+

Number of times this reaction was made

+
+
Type
+

int

+
+
+
+ +
+
+me
+

If the user sent this reaction.

+
+
Type
+

bool

+
+
+
+ +
+
+message
+

Message this reaction is for.

+
+
Type
+

Message

+
+
+
+ +
+
+async for ... in users(*, limit=None, after=None)
+

Returns an AsyncIterator representing the users that have reacted to the message.

+

The after parameter must represent a member +and meet the abc.Snowflake abc.

+

Examples

+

Usage

+
# I do not actually recommend doing this.
+async for user in reaction.users():
+    await channel.send(f'{user} has reacted with {reaction.emoji}!')
+
+
+

Flattening into a list:

+
users = await reaction.users().flatten()
+# users is now a list of User...
+winner = random.choice(users)
+await channel.send(f'{winner} has won the raffle.')
+
+
+
+
Parameters
+
    +
  • limit (Optional[int]) – The maximum number of results to return. +If not provided, returns all the users who +reacted to the message.

  • +
  • after (Optional[abc.Snowflake]) – For pagination, reactions are sorted by member.

  • +
+
+
Raises
+

HTTPException – Getting the users for the reaction failed.

+
+
Yields
+

Union[User, Member] – The member (if retrievable) or the user that has reacted +to this message. The case where it can be a Member is +in a guild message context. Sometimes it can be a User +if the member has left the guild.

+
+
+
+ +
+
+is_custom_emoji()
+

bool: If this is a custom emoji.

+
+ +
+
+await remove(user)
+

This function is a coroutine.

+

Remove the reaction by the provided User from the message.

+

If the reaction is not your own (i.e. user parameter is not you) then +the manage_messages permission is needed.

+

The user parameter must represent a user or member and meet +the abc.Snowflake abc.

+
+
Parameters
+

user (abc.Snowflake) – The user or member from which to remove the reaction.

+
+
Raises
+
    +
  • HTTPException – Removing the reaction failed.

  • +
  • Forbidden – You do not have the proper permissions to remove the reaction.

  • +
  • NotFound – The user you specified, or the reaction’s message was not found.

  • +
+
+
+
+ +
+
+await clear()
+

This function is a coroutine.

+

Clears this reaction from the message.

+

You need the manage_messages permission to use this.

+
+

New in version 1.3.

+
+
+
Raises
+
    +
  • HTTPException – Clearing the reaction failed.

  • +
  • Forbidden – You do not have the proper permissions to clear the reaction.

  • +
  • NotFound – The emoji you specified was not found.

  • +
  • InvalidArgument – The emoji parameter is invalid.

  • +
+
+
+
+ +
+ +
+
+

Guild

+
+ +Methods +
+
+class discord.Guild
+

Represents a Discord guild.

+

This is referred to as a “server” in the official Discord UI.

+
+
+
+x == y
+

Checks if two guilds are equal.

+
+ +
+
+x != y
+

Checks if two guilds are not equal.

+
+ +
+
+hash(x)
+

Returns the guild’s hash.

+
+ +
+
+str(x)
+

Returns the guild’s name.

+
+ +
+
+int(x)
+

Returns the guild’s ID.

+
+ +
+
+
+name
+

The guild name.

+
+
Type
+

str

+
+
+
+ +
+
+emojis
+

All emojis that the guild owns.

+
+
Type
+

Tuple[Emoji, …]

+
+
+
+ +
+
+stickers
+

All stickers that the guild owns.

+
+

New in version 2.0.

+
+
+
Type
+

Tuple[GuildSticker, …]

+
+
+
+ +
+
+region
+

The region the guild belongs on. There is a chance that the region +will be a str if the value is not recognised by the enumerator.

+
+
Type
+

VoiceRegion

+
+
+
+ +
+
+afk_timeout
+

The timeout to get sent to the AFK channel.

+
+
Type
+

int

+
+
+
+ +
+
+afk_channel
+

The channel that denotes the AFK channel. None if it doesn’t exist.

+
+
Type
+

Optional[VoiceChannel]

+
+
+
+ +
+
+id
+

The guild’s ID.

+
+
Type
+

int

+
+
+
+ +
+
+owner_id
+

The guild owner’s ID. Use Guild.owner instead.

+
+
Type
+

int

+
+
+
+ +
+
+unavailable
+

Indicates if the guild is unavailable. If this is True then the +reliability of other attributes outside of Guild.id is slim and they might +all be None. It is best to not do anything with the guild if it is unavailable.

+

Check the on_guild_unavailable() and on_guild_available() events.

+
+
Type
+

bool

+
+
+
+ +
+
+max_presences
+

The maximum amount of presences for the guild.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+max_members
+

The maximum amount of members for the guild.

+
+

Note

+

This attribute is only available via Client.fetch_guild().

+
+
+
Type
+

Optional[int]

+
+
+
+ +
+
+max_video_channel_users
+

The maximum amount of users in a video channel.

+
+

New in version 1.4.

+
+
+
Type
+

Optional[int]

+
+
+
+ +
+
+description
+

The guild’s description.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+mfa_level
+

Indicates the guild’s two factor authorisation level. If this value is 0 then +the guild does not require 2FA for their administrative members. If the value is +1 then they do.

+
+
Type
+

int

+
+
+
+ +
+
+verification_level
+

The guild’s verification level.

+
+
Type
+

VerificationLevel

+
+
+
+ +
+
+explicit_content_filter
+

The guild’s explicit content filter.

+
+
Type
+

ContentFilter

+
+
+
+ +
+
+default_notifications
+

The guild’s notification settings.

+
+
Type
+

NotificationLevel

+
+
+
+ +
+
+features
+

A list of features that the guild has. The features that a guild can have are +subject to arbitrary change by Discord.

+

They are currently as follows:

+
    +
  • ANIMATED_ICON: Guild can upload an animated icon.

  • +
  • BANNER: Guild can upload and use a banner. (i.e. banner)

  • +
  • COMMERCE: Guild can sell things using store channels.

  • +
  • COMMUNITY: Guild is a community server.

  • +
  • DISCOVERABLE: Guild shows up in Server Discovery.

  • +
  • FEATURABLE: Guild is able to be featured in Server Discovery.

  • +
  • INVITE_SPLASH: Guild’s invite page can have a special splash.

  • +
  • MEMBER_VERIFICATION_GATE_ENABLED: Guild has Membership Screening enabled.

  • +
  • MONETIZATION_ENABLED: Guild has enabled monetization.

  • +
  • MORE_EMOJI: Guild has increased custom emoji slots.

  • +
  • MORE_STICKERS: Guild has increased custom sticker slots.

  • +
  • NEWS: Guild can create news channels.

  • +
  • PARTNERED: Guild is a partnered server.

  • +
  • PREVIEW_ENABLED: Guild can be viewed before being accepted via Membership Screening.

  • +
  • PRIVATE_THREADS: Guild has access to create private threads.

  • +
  • SEVEN_DAY_THREAD_ARCHIVE: Guild has access to the seven day archive time for threads.

  • +
  • THREE_DAY_THREAD_ARCHIVE: Guild has access to the three day archive time for threads.

  • +
  • TICKETED_EVENTS_ENABLED: Guild has enabled ticketed events.

  • +
  • VANITY_URL: Guild can have a vanity invite URL (e.g. discord.gg/discord-api).

  • +
  • VERIFIED: Guild is a verified server.

  • +
  • VIP_REGIONS: Guild has VIP voice regions.

  • +
  • WELCOME_SCREEN_ENABLED: Guild has enabled the welcome screen.

  • +
+
+
Type
+

List[str]

+
+
+
+ +
+
+premium_tier
+

The premium tier for this guild. Corresponds to “Nitro Server” in the official UI. +The number goes from 0 to 3 inclusive.

+
+
Type
+

int

+
+
+
+ +
+
+premium_subscription_count
+

The number of “boosts” this guild currently has.

+
+
Type
+

int

+
+
+
+ +
+
+preferred_locale
+

The preferred locale for the guild. Used when filtering Server Discovery +results to a specific language.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+nsfw_level
+

The guild’s NSFW level.

+
+

New in version 2.0.

+
+
+
Type
+

NSFWLevel

+
+
+
+ +
+
+async for ... in fetch_members(*, limit=1000, after=None)
+

Retrieves an AsyncIterator that enables receiving the guild’s members. In order to use this, +Intents.members() must be enabled.

+
+

Note

+

This method is an API call. For general usage, consider members instead.

+
+
+

New in version 1.3.

+
+

All parameters are optional.

+
+
Parameters
+
    +
  • limit (Optional[int]) – The number of members to retrieve. Defaults to 1000. +Pass None to fetch all members. Note that this is potentially slow.

  • +
  • after (Optional[Union[abc.Snowflake, datetime.datetime]]) – Retrieve members after this date or object. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
+
+
Raises
+
+
+
Yields
+

Member – The member with the member data parsed.

+
+
+

Examples

+

Usage

+
async for member in guild.fetch_members(limit=150):
+    print(member.name)
+
+
+

Flattening into a list

+
members = await guild.fetch_members(limit=150).flatten()
+# members is now a list of Member...
+
+
+
+ +
+
+async for ... in audit_logs(*, limit=100, before=None, after=None, oldest_first=None, user=None, action=None)
+

Returns an AsyncIterator that enables receiving the guild’s audit logs.

+

You must have the view_audit_log permission to use this.

+

Examples

+

Getting the first 100 entries:

+
async for entry in guild.audit_logs(limit=100):
+    print(f'{entry.user} did {entry.action} to {entry.target}')
+
+
+

Getting entries for a specific action:

+
async for entry in guild.audit_logs(action=discord.AuditLogAction.ban):
+    print(f'{entry.user} banned {entry.target}')
+
+
+

Getting entries made by a specific user:

+
entries = await guild.audit_logs(limit=None, user=guild.me).flatten()
+await channel.send(f'I made {len(entries)} moderation actions.')
+
+
+
+
Parameters
+
    +
  • limit (Optional[int]) – The number of entries to retrieve. If None retrieve all entries.

  • +
  • before (Union[abc.Snowflake, datetime.datetime]) – Retrieve entries before this date or entry. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • after (Union[abc.Snowflake, datetime.datetime]) – Retrieve entries after this date or entry. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • oldest_first (bool) – If set to True, return entries in oldest->newest order. Defaults to True if +after is specified, otherwise False.

  • +
  • user (abc.Snowflake) – The moderator to filter entries from.

  • +
  • action (AuditLogAction) – The action to filter with.

  • +
+
+
Raises
+
    +
  • Forbidden – You are not allowed to fetch audit logs

  • +
  • HTTPException – An error occurred while fetching the audit logs.

  • +
+
+
Yields
+

AuditLogEntry – The audit log entry.

+
+
+
+ +
+
+property channels
+

A list of channels that belongs to this guild.

+
+
Type
+

List[abc.GuildChannel]

+
+
+
+ +
+
+property threads
+

A list of threads that you have permission to view.

+
+

New in version 2.0.

+
+
+
Type
+

List[Thread]

+
+
+
+ +
+
+property large
+

Indicates if the guild is a ‘large’ guild.

+

A large guild is defined as having more than large_threshold count +members, which for this library is set to the maximum of 250.

+
+
Type
+

bool

+
+
+
+ +
+
+property voice_channels
+

A list of voice channels that belongs to this guild.

+

This is sorted by the position and are in UI order from top to bottom.

+
+
Type
+

List[VoiceChannel]

+
+
+
+ +
+
+property stage_channels
+

A list of stage channels that belongs to this guild.

+
+

New in version 1.7.

+
+

This is sorted by the position and are in UI order from top to bottom.

+
+
Type
+

List[StageChannel]

+
+
+
+ +
+
+property me
+

Similar to Client.user except an instance of Member. +This is essentially used to get the member version of yourself.

+
+
Type
+

Member

+
+
+
+ +
+
+property voice_client
+

Returns the VoiceProtocol associated with this guild, if any.

+
+
Type
+

Optional[VoiceProtocol]

+
+
+
+ +
+
+property text_channels
+

A list of text channels that belongs to this guild.

+

This is sorted by the position and are in UI order from top to bottom.

+
+
Type
+

List[TextChannel]

+
+
+
+ +
+
+property categories
+

A list of categories that belongs to this guild.

+

This is sorted by the position and are in UI order from top to bottom.

+
+
Type
+

List[CategoryChannel]

+
+
+
+ +
+
+by_category()
+

Returns every CategoryChannel and their associated channels.

+

These channels and categories are sorted in the official Discord UI order.

+

If the channels do not have a category, then the first element of the tuple is +None.

+
+
Returns
+

The categories and their associated channels.

+
+
Return type
+

List[Tuple[Optional[CategoryChannel], List[abc.GuildChannel]]]

+
+
+
+ +
+
+get_channel_or_thread(channel_id, /)
+

Returns a channel or thread with the given ID.

+
+

New in version 2.0.

+
+
+
Parameters
+

channel_id (int) – The ID to search for.

+
+
Returns
+

The returned channel or thread or None if not found.

+
+
Return type
+

Optional[Union[Thread, abc.GuildChannel]]

+
+
+
+ +
+
+get_channel(channel_id, /)
+

Returns a channel with the given ID.

+
+

Note

+

This does not search for threads.

+
+
+
Parameters
+

channel_id (int) – The ID to search for.

+
+
Returns
+

The returned channel or None if not found.

+
+
Return type
+

Optional[abc.GuildChannel]

+
+
+
+ +
+
+get_thread(thread_id, /)
+

Returns a thread with the given ID.

+
+

New in version 2.0.

+
+
+
Parameters
+

thread_id (int) – The ID to search for.

+
+
Returns
+

The returned thread or None if not found.

+
+
Return type
+

Optional[Thread]

+
+
+
+ +
+
+property system_channel
+

Returns the guild’s channel used for system messages.

+

If no channel is set, then this returns None.

+
+
Type
+

Optional[TextChannel]

+
+
+
+ +
+
+property system_channel_flags
+

Returns the guild’s system channel settings.

+
+
Type
+

SystemChannelFlags

+
+
+
+ +
+
+property rules_channel
+

Return’s the guild’s channel used for the rules. +The guild must be a Community guild.

+

If no channel is set, then this returns None.

+
+

New in version 1.3.

+
+
+
Type
+

Optional[TextChannel]

+
+
+
+ +
+
+property public_updates_channel
+

Return’s the guild’s channel where admins and +moderators of the guilds receive notices from Discord. The guild must be a +Community guild.

+

If no channel is set, then this returns None.

+
+

New in version 1.4.

+
+
+
Type
+

Optional[TextChannel]

+
+
+
+ +
+
+property emoji_limit
+

The maximum number of emoji slots this guild has.

+
+
Type
+

int

+
+
+
+ +
+
+property sticker_limit
+

The maximum number of sticker slots this guild has.

+
+

New in version 2.0.

+
+
+
Type
+

int

+
+
+
+ +
+
+property bitrate_limit
+

The maximum bitrate for voice channels this guild can have.

+
+
Type
+

float

+
+
+
+ +
+
+property filesize_limit
+

The maximum number of bytes files can have when uploaded to this guild.

+
+
Type
+

int

+
+
+
+ +
+
+property members
+

A list of members that belong to this guild.

+
+
Type
+

List[Member]

+
+
+
+ +
+
+property humans
+

A list of human members that belong to this guild.

+
+

New in version 2.0.

+
+
+
Type
+

List[Member]

+
+
+
+ +
+
+property bots
+

A list of bots that belong to this guild.

+
+

New in version 2.0.

+
+
+
Type
+

List[Member]

+
+
+
+ +
+
+get_member(user_id, /)
+

Returns a member with the given ID.

+
+
Parameters
+

user_id (int) – The ID to search for.

+
+
Returns
+

The member or None if not found.

+
+
Return type
+

Optional[Member]

+
+
+
+ +
+
+property premium_subscribers
+

A list of members who have “boosted” this guild.

+
+
Type
+

List[Member]

+
+
+
+ +
+
+property roles
+

Returns a list of the guild’s roles in hierarchy order.

+

The first element of this list will be the lowest role in the +hierarchy.

+
+
Type
+

List[Role]

+
+
+
+ +
+
+get_role(role_id, /)
+

Returns a role with the given ID.

+
+
Parameters
+

role_id (int) – The ID to search for.

+
+
Returns
+

The role or None if not found.

+
+
Return type
+

Optional[Role]

+
+
+
+ +
+
+property default_role
+

Gets the @everyone role that all members have by default.

+
+
Type
+

Role

+
+
+
+ +
+
+property premium_subscriber_role
+

Gets the premium subscriber role, AKA “boost” role, in this guild.

+
+

New in version 1.6.

+
+
+
Type
+

Optional[Role]

+
+
+
+ +
+
+property self_role
+

Gets the role associated with this client’s user, if any.

+
+

New in version 1.6.

+
+
+
Type
+

Optional[Role]

+
+
+
+ +
+
+property stage_instances
+

Returns a list of the guild’s stage instances that +are currently running.

+
+

New in version 2.0.

+
+
+
Type
+

List[StageInstance]

+
+
+
+ +
+
+get_stage_instance(stage_instance_id, /)
+

Returns a stage instance with the given ID.

+
+

New in version 2.0.

+
+
+
Parameters
+

stage_instance_id (int) – The ID to search for.

+
+
Returns
+

The stage instance or None if not found.

+
+
Return type
+

Optional[StageInstance]

+
+
+
+ +
+
+property owner
+

The member that owns the guild.

+
+
Type
+

Optional[Member]

+
+
+
+ +
+
+property icon
+

Returns the guild’s icon asset, if available.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property banner
+

Returns the guild’s banner asset, if available.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property splash
+

Returns the guild’s invite splash asset, if available.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property discovery_splash
+

Returns the guild’s discovery splash asset, if available.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property member_count
+

Returns the true member count regardless of it being loaded fully or not.

+
+

Warning

+

Due to a Discord limitation, in order for this attribute to remain up-to-date and +accurate, it requires Intents.members to be specified.

+
+
+
Type
+

int

+
+
+
+ +
+
+property chunked
+

Returns a boolean indicating if the guild is “chunked”.

+

A chunked guild means that member_count is equal to the +number of members stored in the internal members cache.

+

If this value returns False, then you should request for +offline members.

+
+
Type
+

bool

+
+
+
+ +
+
+property shard_id
+

Returns the shard ID for this guild if applicable.

+
+
Type
+

int

+
+
+
+ +
+
+property created_at
+

Returns the guild’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+get_member_named(name, /)
+

Returns the first member found that matches the name provided.

+

The name can have an optional discriminator argument, e.g. “Jake#0001” +or “Jake” will both do the lookup. However the former will give a more +precise result. Note that the discriminator must have all 4 digits +for this to work.

+

If a nickname is passed, then it is looked up via the nickname. Note +however, that a nickname + discriminator combo will not lookup the nickname +but rather the username + discriminator combo due to nickname + discriminator +not being unique.

+

If no member is found, None is returned.

+
+
Parameters
+

name (str) – The name of the member to lookup with an optional discriminator.

+
+
Returns
+

The member in this guild with the associated name. If not found +then None is returned.

+
+
Return type
+

Optional[Member]

+
+
+
+ +
+
+await create_text_channel(name, *, reason=None, category=None, position=..., topic=..., slowmode_delay=..., nsfw=..., overwrites=...)
+

This function is a coroutine.

+

Creates a TextChannel for the guild.

+

Note that you need the manage_channels permission +to create the channel.

+

The overwrites parameter can be used to create a ‘secret’ +channel upon creation. This parameter expects a dict of +overwrites with the target (either a Member or a Role) +as the key and a PermissionOverwrite as the value.

+
+

Note

+

Creating a channel of a specified position will not update the position of +other channels to follow suit. A follow-up call to edit() +will be required to update the position of the channel in the channel list.

+
+

Examples

+

Creating a basic channel:

+
channel = await guild.create_text_channel('cool-channel')
+
+
+

Creating a “secret” channel:

+
overwrites = {
+    guild.default_role: discord.PermissionOverwrite(read_messages=False),
+    guild.me: discord.PermissionOverwrite(read_messages=True)
+}
+
+channel = await guild.create_text_channel('secret', overwrites=overwrites)
+
+
+
+
Parameters
+
    +
  • name (str) – The channel’s name.

  • +
  • overwrites (Dict[Union[Role, Member], PermissionOverwrite]) – A dict of target (either a role or a member) to +PermissionOverwrite to apply upon creation of a channel. +Useful for creating secret channels.

  • +
  • category (Optional[CategoryChannel]) – The category to place the newly created channel under. +The permissions will be automatically synced to category if no +overwrites are provided.

  • +
  • position (int) – The position in the channel list. This is a number that starts +at 0. e.g. the top channel is position 0.

  • +
  • topic (str) – The new channel’s topic.

  • +
  • slowmode_delay (int) – Specifies the slowmode rate limit for user in this channel, in seconds. +The maximum value possible is 21600.

  • +
  • nsfw (bool) – To mark the channel as NSFW or not.

  • +
  • reason (Optional[str]) – The reason for creating this channel. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to create this channel.

  • +
  • HTTPException – Creating the channel failed.

  • +
  • InvalidArgument – The permission overwrite information is not in proper form.

  • +
+
+
Returns
+

The channel that was just created.

+
+
Return type
+

TextChannel

+
+
+
+ +
+
+await create_voice_channel(name, *, reason=None, category=None, position=..., bitrate=..., user_limit=..., rtc_region=..., video_quality_mode=..., overwrites=...)
+

This function is a coroutine.

+

This is similar to create_text_channel() except makes a VoiceChannel instead.

+
+
Parameters
+
    +
  • name (str) – The channel’s name.

  • +
  • overwrites (Dict[Union[Role, Member], PermissionOverwrite]) – A dict of target (either a role or a member) to +PermissionOverwrite to apply upon creation of a channel. +Useful for creating secret channels.

  • +
  • category (Optional[CategoryChannel]) – The category to place the newly created channel under. +The permissions will be automatically synced to category if no +overwrites are provided.

  • +
  • position (int) – The position in the channel list. This is a number that starts +at 0. e.g. the top channel is position 0.

  • +
  • bitrate (int) – The channel’s preferred audio bitrate in bits per second.

  • +
  • user_limit (int) – The channel’s limit for number of members that can be in a voice channel.

  • +
  • rtc_region (Optional[VoiceRegion]) –

    The region for the voice channel’s voice communication. +A value of None indicates automatic voice region detection.

    +
    +

    New in version 1.7.

    +
    +

  • +
  • video_quality_mode (VideoQualityMode) –

    The camera video quality for the voice channel’s participants.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • reason (Optional[str]) – The reason for creating this channel. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to create this channel.

  • +
  • HTTPException – Creating the channel failed.

  • +
  • InvalidArgument – The permission overwrite information is not in proper form.

  • +
+
+
Returns
+

The channel that was just created.

+
+
Return type
+

VoiceChannel

+
+
+
+ +
+
+await create_stage_channel(name, *, topic, position=..., overwrites=..., category=None, reason=None)
+

This function is a coroutine.

+

This is similar to create_text_channel() except makes a StageChannel instead.

+
+

New in version 1.7.

+
+
+
Parameters
+
    +
  • name (str) – The channel’s name.

  • +
  • topic (str) – The new channel’s topic.

  • +
  • overwrites (Dict[Union[Role, Member], PermissionOverwrite]) – A dict of target (either a role or a member) to +PermissionOverwrite to apply upon creation of a channel. +Useful for creating secret channels.

  • +
  • category (Optional[CategoryChannel]) – The category to place the newly created channel under. +The permissions will be automatically synced to category if no +overwrites are provided.

  • +
  • position (int) – The position in the channel list. This is a number that starts +at 0. e.g. the top channel is position 0.

  • +
  • reason (Optional[str]) – The reason for creating this channel. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to create this channel.

  • +
  • HTTPException – Creating the channel failed.

  • +
  • InvalidArgument – The permission overwrite information is not in proper form.

  • +
+
+
Returns
+

The channel that was just created.

+
+
Return type
+

StageChannel

+
+
+
+ +
+
+await create_category(name, *, overwrites=..., reason=None, position=...)
+

This function is a coroutine.

+

Same as create_text_channel() except makes a CategoryChannel instead.

+
+

Note

+

The category parameter is not supported in this function since categories +cannot have categories.

+
+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to create this channel.

  • +
  • HTTPException – Creating the channel failed.

  • +
  • InvalidArgument – The permission overwrite information is not in proper form.

  • +
+
+
Returns
+

The channel that was just created.

+
+
Return type
+

CategoryChannel

+
+
+
+ +
+
+await create_category_channel(name, *, overwrites=..., reason=None, position=...)
+

This function is a coroutine.

+

Same as create_text_channel() except makes a CategoryChannel instead.

+
+

Note

+

The category parameter is not supported in this function since categories +cannot have categories.

+
+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to create this channel.

  • +
  • HTTPException – Creating the channel failed.

  • +
  • InvalidArgument – The permission overwrite information is not in proper form.

  • +
+
+
Returns
+

The channel that was just created.

+
+
Return type
+

CategoryChannel

+
+
+
+ +
+
+await leave()
+

This function is a coroutine.

+

Leaves the guild.

+
+

Note

+

You cannot leave the guild that you own, you must delete it instead +via delete().

+
+
+
Raises
+

HTTPException – Leaving the guild failed.

+
+
+
+ +
+
+await delete()
+

This function is a coroutine.

+

Deletes the guild. You must be the guild owner to delete the +guild.

+
+
Raises
+
    +
  • HTTPException – Deleting the guild failed.

  • +
  • Forbidden – You do not have permissions to delete the guild.

  • +
+
+
+
+ +
+
+await edit(*, reason=..., name=..., description=..., icon=..., banner=..., splash=..., discovery_splash=..., community=..., region=..., afk_channel=..., owner=..., afk_timeout=..., default_notifications=..., verification_level=..., explicit_content_filter=..., vanity_code=..., system_channel=..., system_channel_flags=..., preferred_locale=..., rules_channel=..., public_updates_channel=...)
+

This function is a coroutine.

+

Edits the guild.

+

You must have the manage_guild permission +to edit the guild.

+
+

Changed in version 1.4: The rules_channel and public_updates_channel keyword-only parameters were added.

+
+
+

Changed in version 2.0: The discovery_splash and community keyword-only parameters were added.

+
+
+

Changed in version 2.0: The newly updated guild is returned.

+
+
+
Parameters
+
    +
  • name (str) – The new name of the guild.

  • +
  • description (Optional[str]) – The new description of the guild. Could be None for no description. +This is only available to guilds that contain PUBLIC in Guild.features.

  • +
  • icon (bytes) – A bytes-like object representing the icon. Only PNG/JPEG is supported. +GIF is only available to guilds that contain ANIMATED_ICON in Guild.features. +Could be None to denote removal of the icon.

  • +
  • banner (bytes) – A bytes-like object representing the banner. +Could be None to denote removal of the banner. This is only available to guilds that contain +BANNER in Guild.features.

  • +
  • splash (bytes) – A bytes-like object representing the invite splash. +Only PNG/JPEG supported. Could be None to denote removing the +splash. This is only available to guilds that contain INVITE_SPLASH +in Guild.features.

  • +
  • discovery_splash (bytes) – A bytes-like object representing the discovery splash. +Only PNG/JPEG supported. Could be None to denote removing the +splash. This is only available to guilds that contain DISCOVERABLE +in Guild.features.

  • +
  • community (bool) – Whether the guild should be a Community guild. If set to True, both rules_channel +and public_updates_channel parameters are required.

  • +
  • region (Union[str, VoiceRegion]) – The new region for the guild’s voice communication.

  • +
  • afk_channel (Optional[VoiceChannel]) – The new channel that is the AFK channel. Could be None for no AFK channel.

  • +
  • afk_timeout (int) – The number of seconds until someone is moved to the AFK channel.

  • +
  • owner (Member) – The new owner of the guild to transfer ownership to. Note that you must +be owner of the guild to do this.

  • +
  • verification_level (VerificationLevel) – The new verification level for the guild.

  • +
  • default_notifications (NotificationLevel) – The new default notification level for the guild.

  • +
  • explicit_content_filter (ContentFilter) – The new explicit content filter for the guild.

  • +
  • vanity_code (str) – The new vanity code for the guild.

  • +
  • system_channel (Optional[TextChannel]) – The new channel that is used for the system channel. Could be None for no system channel.

  • +
  • system_channel_flags (SystemChannelFlags) – The new system channel settings to use with the new system channel.

  • +
  • preferred_locale (str) – The new preferred locale for the guild. Used as the primary language in the guild. +If set, this must be an ISO 639 code, e.g. en-US or ja or zh-CN.

  • +
  • rules_channel (Optional[TextChannel]) – The new channel that is used for rules. This is only available to +guilds that contain PUBLIC in Guild.features. Could be None for no rules +channel.

  • +
  • public_updates_channel (Optional[TextChannel]) – The new channel that is used for public updates from Discord. This is only available to +guilds that contain PUBLIC in Guild.features. Could be None for no +public updates channel.

  • +
  • reason (Optional[str]) – The reason for editing this guild. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to edit the guild.

  • +
  • HTTPException – Editing the guild failed.

  • +
  • InvalidArgument – The image format passed in to icon is invalid. It must be + PNG or JPG. This is also raised if you are not the owner of the + guild and request an ownership transfer.

  • +
+
+
Returns
+

The newly updated guild. Note that this has the same limitations as +mentioned in Client.fetch_guild() and may not have full data.

+
+
Return type
+

Guild

+
+
+
+ +
+
+await fetch_channels()
+

This function is a coroutine.

+

Retrieves all abc.GuildChannel that the guild has.

+
+

Note

+

This method is an API call. For general usage, consider channels instead.

+
+
+

New in version 1.2.

+
+
+
Raises
+
    +
  • InvalidData – An unknown channel type was received from Discord.

  • +
  • HTTPException – Retrieving the channels failed.

  • +
+
+
Returns
+

All channels in the guild.

+
+
Return type
+

Sequence[abc.GuildChannel]

+
+
+
+ +
+
+await active_threads()
+

This function is a coroutine.

+

Returns a list of active Thread that the client can access.

+

This includes both private and public threads.

+
+

New in version 2.0.

+
+
+
Raises
+

HTTPException – The request to get the active threads failed.

+
+
Returns
+

The active threads

+
+
Return type
+

List[Thread]

+
+
+
+ +
+
+await fetch_member(member_id, /)
+

This function is a coroutine.

+

Retrieves a Member from a guild ID, and a member ID.

+
+

Note

+

This method is an API call. If you have Intents.members and member cache enabled, consider get_member() instead.

+
+
+
Parameters
+

member_id (int) – The member’s ID to fetch from.

+
+
Raises
+
    +
  • Forbidden – You do not have access to the guild.

  • +
  • HTTPException – Fetching the member failed.

  • +
  • NotFound – A member with that ID does not exist.

  • +
+
+
Returns
+

The member from the member ID.

+
+
Return type
+

Member

+
+
+
+ +
+
+await try_member(member_id, /)
+

This function is a coroutine.

+

Returns a member with the given ID. This uses the cache first, and if not found, it’ll request using fetch_member().

+
+

Note

+

This method might result in an API call.

+
+
+
Parameters
+

member_id (int) – The ID to search for.

+
+
Returns
+

The member or None if not found.

+
+
Return type
+

Optional[Member]

+
+
+
+ +
+
+await fetch_ban(user)
+

This function is a coroutine.

+

Retrieves the BanEntry for a user.

+

You must have the ban_members permission +to get this information.

+
+
Parameters
+

user (abc.Snowflake) – The user to get ban information from.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to get the information.

  • +
  • NotFound – This user is not banned.

  • +
  • HTTPException – An error occurred while fetching the information.

  • +
+
+
Returns
+

The BanEntry object for the specified user.

+
+
Return type
+

BanEntry

+
+
+
+ +
+
+await fetch_channel(channel_id, /)
+

This function is a coroutine.

+

Retrieves a abc.GuildChannel or Thread with the specified ID.

+
+

Note

+

This method is an API call. For general usage, consider get_channel_or_thread() instead.

+
+
+

New in version 2.0.

+
+
+
Raises
+
    +
  • InvalidData – An unknown channel type was received from Discord + or the guild the channel belongs to is not the same + as the one in this object points to.

  • +
  • HTTPException – Retrieving the channel failed.

  • +
  • NotFound – Invalid Channel ID.

  • +
  • Forbidden – You do not have permission to fetch this channel.

  • +
+
+
Returns
+

The channel from the ID.

+
+
Return type
+

Union[abc.GuildChannel, Thread]

+
+
+
+ +
+
+await bans()
+

This function is a coroutine.

+

Retrieves all the users that are banned from the guild as a list of BanEntry.

+

You must have the ban_members permission +to get this information.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to get the information.

  • +
  • HTTPException – An error occurred while fetching the information.

  • +
+
+
Returns
+

A list of BanEntry objects.

+
+
Return type
+

List[BanEntry]

+
+
+
+ +
+
+await prune_members(*, days, compute_prune_count=True, roles=..., reason=None)
+

This function is a coroutine.

+

Prunes the guild from its inactive members.

+

The inactive members are denoted if they have not logged on in +days number of days and they have no roles.

+

You must have the kick_members permission +to use this.

+

To check how many members you would prune without actually pruning, +see the estimate_pruned_members() function.

+

To prune members that have specific roles see the roles parameter.

+
+

Changed in version 1.4: The roles keyword-only parameter was added.

+
+
+
Parameters
+
    +
  • days (int) – The number of days before counting as inactive.

  • +
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • +
  • compute_prune_count (bool) – Whether to compute the prune count. This defaults to True +which makes it prone to timeouts in very large guilds. In order +to prevent timeouts, you must set this to False. If this is +set to False, then this function will always return None.

  • +
  • roles (List[abc.Snowflake]) – A list of abc.Snowflake that represent roles to include in the pruning process. If a member +has a role that is not specified, they’ll be excluded.

  • +
+
+
Raises
+
+
+
Returns
+

The number of members pruned. If compute_prune_count is False +then this returns None.

+
+
Return type
+

Optional[int]

+
+
+
+ +
+
+await templates()
+

This function is a coroutine.

+

Gets the list of templates from this guild.

+

Requires manage_guild permissions.

+
+

New in version 1.7.

+
+
+
Raises
+

Forbidden – You don’t have permissions to get the templates.

+
+
Returns
+

The templates for this guild.

+
+
Return type
+

List[Template]

+
+
+
+ +
+
+await webhooks()
+

This function is a coroutine.

+

Gets the list of webhooks from this guild.

+

Requires manage_webhooks permissions.

+
+
Raises
+

Forbidden – You don’t have permissions to get the webhooks.

+
+
Returns
+

The webhooks for this guild.

+
+
Return type
+

List[Webhook]

+
+
+
+ +
+
+await estimate_pruned_members(*, days, roles=...)
+

This function is a coroutine.

+

Similar to prune_members() except instead of actually +pruning members, it returns how many members it would prune +from the guild had it been called.

+
+
Parameters
+
    +
  • days (int) – The number of days before counting as inactive.

  • +
  • roles (List[abc.Snowflake]) –

    A list of abc.Snowflake that represent roles to include in the estimate. If a member +has a role that is not specified, they’ll be excluded.

    +
    +

    New in version 1.7.

    +
    +

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to prune members.

  • +
  • HTTPException – An error occurred while fetching the prune members estimate.

  • +
  • InvalidArgument – An integer was not passed for days.

  • +
+
+
Returns
+

The number of members estimated to be pruned.

+
+
Return type
+

int

+
+
+
+ +
+
+await invites()
+

This function is a coroutine.

+

Returns a list of all active instant invites from the guild.

+

You must have the manage_guild permission to get +this information.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to get the information.

  • +
  • HTTPException – An error occurred while fetching the information.

  • +
+
+
Returns
+

The list of invites that are currently active.

+
+
Return type
+

List[Invite]

+
+
+
+ +
+
+await create_template(*, name, description=...)
+

This function is a coroutine.

+

Creates a template for the guild.

+

You must have the manage_guild permission to +do this.

+
+

New in version 1.7.

+
+
+
Parameters
+
    +
  • name (str) – The name of the template.

  • +
  • description (str) – The description of the template.

  • +
+
+
+
+ +
+
+await create_integration(*, type, id)
+

This function is a coroutine.

+

Attaches an integration to the guild.

+

You must have the manage_guild permission to +do this.

+
+

New in version 1.4.

+
+
+
Parameters
+
    +
  • type (str) – The integration type (e.g. Twitch).

  • +
  • id (int) – The integration ID.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permission to create the integration.

  • +
  • HTTPException – The account could not be found.

  • +
+
+
+
+ +
+
+await integrations()
+

This function is a coroutine.

+

Returns a list of all integrations attached to the guild.

+

You must have the manage_guild permission to +do this.

+
+

New in version 1.4.

+
+
+
Raises
+
    +
  • Forbidden – You do not have permission to create the integration.

  • +
  • HTTPException – Fetching the integrations failed.

  • +
+
+
Returns
+

The list of integrations that are attached to the guild.

+
+
Return type
+

List[Integration]

+
+
+
+ +
+
+await fetch_stickers()
+

This function is a coroutine.

+

Retrieves a list of all Stickers for the guild.

+
+

New in version 2.0.

+
+
+

Note

+

This method is an API call. For general usage, consider stickers instead.

+
+
+
Raises
+

HTTPException – An error occurred fetching the stickers.

+
+
Returns
+

The retrieved stickers.

+
+
Return type
+

List[GuildSticker]

+
+
+
+ +
+
+await fetch_sticker(sticker_id, /)
+

This function is a coroutine.

+

Retrieves a custom Sticker from the guild.

+
+

New in version 2.0.

+
+
+

Note

+

This method is an API call. +For general usage, consider iterating over stickers instead.

+
+
+
Parameters
+

sticker_id (int) – The sticker’s ID.

+
+
Raises
+
    +
  • NotFound – The sticker requested could not be found.

  • +
  • HTTPException – An error occurred fetching the sticker.

  • +
+
+
Returns
+

The retrieved sticker.

+
+
Return type
+

GuildSticker

+
+
+
+ +
+
+await create_sticker(*, name, description=None, emoji, file, reason=None)
+

This function is a coroutine.

+

Creates a Sticker for the guild.

+

You must have manage_emojis_and_stickers permission to +do this.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • name (str) – The sticker name. Must be at least 2 characters.

  • +
  • description (Optional[str]) – The sticker’s description. Can be None.

  • +
  • emoji (str) – The name of a unicode emoji that represents the sticker’s expression.

  • +
  • file (File) – The file of the sticker to upload.

  • +
  • reason (str) – The reason for creating this sticker. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You are not allowed to create stickers.

  • +
  • HTTPException – An error occurred creating a sticker.

  • +
+
+
Returns
+

The created sticker.

+
+
Return type
+

GuildSticker

+
+
+
+ +
+
+await delete_sticker(sticker, *, reason=None)
+

This function is a coroutine.

+

Deletes the custom Sticker from the guild.

+

You must have manage_emojis_and_stickers permission to +do this.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • sticker (abc.Snowflake) – The sticker you are deleting.

  • +
  • reason (Optional[str]) – The reason for deleting this sticker. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You are not allowed to delete stickers.

  • +
  • HTTPException – An error occurred deleting the sticker.

  • +
+
+
+
+ +
+
+await fetch_emojis()
+

This function is a coroutine.

+

Retrieves all custom Emojis from the guild.

+
+

Note

+

This method is an API call. For general usage, consider emojis instead.

+
+
+
Raises
+

HTTPException – An error occurred fetching the emojis.

+
+
Returns
+

The retrieved emojis.

+
+
Return type
+

List[Emoji]

+
+
+
+ +
+
+await fetch_emoji(emoji_id, /)
+

This function is a coroutine.

+

Retrieves a custom Emoji from the guild.

+
+

Note

+

This method is an API call. +For general usage, consider iterating over emojis instead.

+
+
+
Parameters
+

emoji_id (int) – The emoji’s ID.

+
+
Raises
+
    +
  • NotFound – The emoji requested could not be found.

  • +
  • HTTPException – An error occurred fetching the emoji.

  • +
+
+
Returns
+

The retrieved emoji.

+
+
Return type
+

Emoji

+
+
+
+ +
+
+await create_custom_emoji(*, name, image, roles=..., reason=None)
+

This function is a coroutine.

+

Creates a custom Emoji for the guild.

+

There is currently a limit of 50 static and animated emojis respectively per guild, +unless the guild has the MORE_EMOJI feature which extends the limit to 200.

+

You must have the manage_emojis permission to +do this.

+
+
Parameters
+
    +
  • name (str) – The emoji name. Must be at least 2 characters.

  • +
  • image (bytes) – The bytes-like object representing the image data to use. +Only JPG, PNG and GIF images are supported.

  • +
  • roles (List[Role]) – A list of Roles that can use this emoji. Leave empty to make it available to everyone.

  • +
  • reason (Optional[str]) – The reason for creating this emoji. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You are not allowed to create emojis.

  • +
  • HTTPException – An error occurred creating an emoji.

  • +
+
+
Returns
+

The created emoji.

+
+
Return type
+

Emoji

+
+
+
+ +
+
+await delete_emoji(emoji, *, reason=None)
+

This function is a coroutine.

+

Deletes the custom Emoji from the guild.

+

You must have manage_emojis permission to +do this.

+
+
Parameters
+
    +
  • emoji (abc.Snowflake) – The emoji you are deleting.

  • +
  • reason (Optional[str]) – The reason for deleting this emoji. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You are not allowed to delete emojis.

  • +
  • HTTPException – An error occurred deleting the emoji.

  • +
+
+
+
+ +
+
+await fetch_roles()
+

This function is a coroutine.

+

Retrieves all Role that the guild has.

+
+

Note

+

This method is an API call. For general usage, consider roles instead.

+
+
+

New in version 1.3.

+
+
+
Raises
+

HTTPException – Retrieving the roles failed.

+
+
Returns
+

All roles in the guild.

+
+
Return type
+

List[Role]

+
+
+
+ +
+
+await create_role(*, name=..., permissions=..., color=..., colour=..., hoist=..., mentionable=..., reason=None)
+

This function is a coroutine.

+

Creates a Role for the guild.

+

All fields are optional.

+

You must have the manage_roles permission to +do this.

+
+

Changed in version 1.6: Can now pass int to colour keyword-only parameter.

+
+
+
Parameters
+
    +
  • name (str) – The role name. Defaults to ‘new role’.

  • +
  • permissions (Permissions) – The permissions to have. Defaults to no permissions.

  • +
  • colour (Union[Colour, int]) – The colour for the role. Defaults to Colour.default(). +This is aliased to color as well.

  • +
  • hoist (bool) – Indicates if the role should be shown separately in the member list. +Defaults to False.

  • +
  • mentionable (bool) – Indicates if the role should be mentionable by others. +Defaults to False.

  • +
  • reason (Optional[str]) – The reason for creating this role. Shows up on the audit log.

  • +
+
+
Raises
+
+
+
Returns
+

The newly created role.

+
+
Return type
+

Role

+
+
+
+ +
+
+await edit_role_positions(positions, *, reason=None)
+

This function is a coroutine.

+

Bulk edits a list of Role in the guild.

+

You must have the manage_roles permission to +do this.

+
+

New in version 1.4.

+
+

Example:

+
positions = {
+    bots_role: 1, # penultimate role
+    tester_role: 2,
+    admin_role: 6
+}
+
+await guild.edit_role_positions(positions=positions)
+
+
+
+
Parameters
+
    +
  • positions – A dict of Role to int to change the positions +of each given role.

  • +
  • reason (Optional[str]) – The reason for editing the role positions. Shows up on the audit log.

  • +
+
+
Raises
+
+
+
Returns
+

A list of all the roles in the guild.

+
+
Return type
+

List[Role]

+
+
+
+ +
+
+await kick(user, *, reason=None)
+

This function is a coroutine.

+

Kicks a user from the guild.

+

The user must meet the abc.Snowflake abc.

+

You must have the kick_members permission to +do this.

+
+
Parameters
+
    +
  • user (abc.Snowflake) – The user to kick from their guild.

  • +
  • reason (Optional[str]) – The reason the user got kicked.

  • +
+
+
Raises
+
+
+
+
+ +
+
+await ban(user, *, reason=None, delete_message_days=1)
+

This function is a coroutine.

+

Bans a user from the guild.

+

The user must meet the abc.Snowflake abc.

+

You must have the ban_members permission to +do this.

+
+
Parameters
+
    +
  • user (abc.Snowflake) – The user to ban from their guild.

  • +
  • delete_message_days (int) – The number of days worth of messages to delete from the user +in the guild. The minimum is 0 and the maximum is 7.

  • +
  • reason (Optional[str]) – The reason the user got banned.

  • +
+
+
Raises
+
+
+
+
+ +
+
+await unban(user, *, reason=None)
+

This function is a coroutine.

+

Unbans a user from the guild.

+

The user must meet the abc.Snowflake abc.

+

You must have the ban_members permission to +do this.

+
+
Parameters
+
    +
  • user (abc.Snowflake) – The user to unban.

  • +
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • +
+
+
Raises
+
+
+
+
+ +
+
+await vanity_invite()
+

This function is a coroutine.

+

Returns the guild’s special vanity invite.

+

The guild must have VANITY_URL in features.

+

You must have the manage_guild permission to use +this as well.

+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to get this.

  • +
  • HTTPException – Retrieving the vanity invite failed.

  • +
+
+
Returns
+

The special vanity invite. If None then the guild does not +have a vanity invite set.

+
+
Return type
+

Optional[Invite]

+
+
+
+ +
+
+await widget()
+

This function is a coroutine.

+

Returns the widget of the guild.

+
+

Note

+

The guild must have the widget enabled to get this information.

+
+
+
Raises
+
+
+
Returns
+

The guild’s widget.

+
+
Return type
+

Widget

+
+
+
+ +
+
+await edit_widget(*, enabled=..., channel=...)
+

This function is a coroutine.

+

Edits the widget of the guild.

+

You must have the manage_guild permission to +use this

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • enabled (bool) – Whether to enable the widget for the guild.

  • +
  • channel (Optional[Snowflake]) – The new widget channel. None removes the widget channel.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permission to edit the widget.

  • +
  • HTTPException – Editing the widget failed.

  • +
+
+
+
+ +
+
+await chunk(*, cache=True)
+

This function is a coroutine.

+

Requests all members that belong to this guild. In order to use this, +Intents.members() must be enabled.

+

This is a websocket operation and can be slow.

+
+

New in version 1.5.

+
+
+
Parameters
+

cache (bool) – Whether to cache the members as well.

+
+
Raises
+

ClientException – The members intent is not enabled.

+
+
+
+ +
+
+await query_members(query=None, *, limit=5, user_ids=None, presences=False, cache=True)
+

This function is a coroutine.

+

Request members that belong to this guild whose username starts with +the query given.

+

This is a websocket operation and can be slow.

+
+

New in version 1.3.

+
+
+
Parameters
+
    +
  • query (Optional[str]) – The string that the username’s start with.

  • +
  • limit (int) – The maximum number of members to send back. This must be +a number between 5 and 100.

  • +
  • presences (bool) –

    Whether to request for presences to be provided. This defaults +to False.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • cache (bool) – Whether to cache the members internally. This makes operations +such as get_member() work for those that matched.

  • +
  • user_ids (Optional[List[int]]) –

    List of user IDs to search for. If the user ID is not in the guild then it won’t be returned.

    +
    +

    New in version 1.4.

    +
    +

  • +
+
+
Raises
+
+
+
Returns
+

The list of members that have matched the query.

+
+
Return type
+

List[Member]

+
+
+
+ +
+
+await change_voice_state(*, channel, self_mute=False, self_deaf=False)
+

This function is a coroutine.

+

Changes client’s voice state in the guild.

+
+

New in version 1.4.

+
+
+
Parameters
+
    +
  • channel (Optional[VoiceChannel]) – Channel the client wants to join. Use None to disconnect.

  • +
  • self_mute (bool) – Indicates if the client should be self-muted.

  • +
  • self_deaf (bool) – Indicates if the client should be self-deafened.

  • +
+
+
+
+ +
+ +
+
+class discord.BanEntry
+

A namedtuple which represents a ban returned from bans().

+
+
+reason
+

The reason this user was banned.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+user
+

The User that was banned.

+
+
Type
+

User

+
+
+
+ +
+ +
+
+

Integration

+
+
+class discord.Integration
+

Represents a guild integration.

+
+

New in version 1.4.

+
+
+
+id
+

The integration ID.

+
+
Type
+

int

+
+
+
+ +
+
+name
+

The integration name.

+
+
Type
+

str

+
+
+
+ +
+
+guild
+

The guild of the integration.

+
+
Type
+

Guild

+
+
+
+ +
+
+type
+

The integration type (i.e. Twitch).

+
+
Type
+

str

+
+
+
+ +
+
+enabled
+

Whether the integration is currently enabled.

+
+
Type
+

bool

+
+
+
+ +
+
+account
+

The account linked to this integration.

+
+
Type
+

IntegrationAccount

+
+
+
+ +
+
+user
+

The user that added this integration.

+
+
Type
+

User

+
+
+
+ +
+
+await delete(*, reason=None)
+

This function is a coroutine.

+

Deletes the integration.

+

You must have the manage_guild permission to +do this.

+
+
Parameters
+

reason (str) –

The reason the integration was deleted. Shows up on the audit log.

+
+

New in version 2.0.

+
+

+
+
Raises
+
    +
  • Forbidden – You do not have permission to delete the integration.

  • +
  • HTTPException – Deleting the integration failed.

  • +
+
+
+
+ +
+ +
+
+class discord.IntegrationAccount
+

Represents an integration account.

+
+

New in version 1.4.

+
+
+
+id
+

The account ID.

+
+
Type
+

str

+
+
+
+ +
+
+name
+

The account name.

+
+
Type
+

str

+
+
+
+ +
+ +
+
+class discord.BotIntegration
+

Represents a bot integration on discord.

+
+

New in version 2.0.

+
+
+
+id
+

The integration ID.

+
+
Type
+

int

+
+
+
+ +
+
+name
+

The integration name.

+
+
Type
+

str

+
+
+
+ +
+
+guild
+

The guild of the integration.

+
+
Type
+

Guild

+
+
+
+ +
+
+type
+

The integration type (i.e. Twitch).

+
+
Type
+

str

+
+
+
+ +
+
+enabled
+

Whether the integration is currently enabled.

+
+
Type
+

bool

+
+
+
+ +
+
+user
+

The user that added this integration.

+
+
Type
+

User

+
+
+
+ +
+
+account
+

The integration account information.

+
+
Type
+

IntegrationAccount

+
+
+
+ +
+
+application
+

The application tied to this integration.

+
+
Type
+

IntegrationApplication

+
+
+
+ +
+ +
+
+class discord.IntegrationApplication
+

Represents an application for a bot integration.

+
+

New in version 2.0.

+
+
+
+id
+

The ID for this application.

+
+
Type
+

int

+
+
+
+ +
+
+name
+

The application’s name.

+
+
Type
+

str

+
+
+
+ +
+
+icon
+

The application’s icon hash.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+description
+

The application’s description. Can be an empty string.

+
+
Type
+

str

+
+
+
+ +
+
+summary
+

The summary of the application. Can be an empty string.

+
+
Type
+

str

+
+
+
+ +
+
+user
+

The bot user on this application.

+
+
Type
+

Optional[User]

+
+
+
+ +
+ +
+
+class discord.StreamIntegration
+

Represents a stream integration for Twitch or YouTube.

+
+

New in version 2.0.

+
+
+
+id
+

The integration ID.

+
+
Type
+

int

+
+
+
+ +
+
+name
+

The integration name.

+
+
Type
+

str

+
+
+
+ +
+
+guild
+

The guild of the integration.

+
+
Type
+

Guild

+
+
+
+ +
+
+type
+

The integration type (i.e. Twitch).

+
+
Type
+

str

+
+
+
+ +
+
+enabled
+

Whether the integration is currently enabled.

+
+
Type
+

bool

+
+
+
+ +
+
+syncing
+

Where the integration is currently syncing.

+
+
Type
+

bool

+
+
+
+ +
+
+enable_emoticons
+

Whether emoticons should be synced for this integration (currently twitch only).

+
+
Type
+

Optional[bool]

+
+
+
+ +
+
+expire_behaviour
+

The behaviour of expiring subscribers. Aliased to expire_behavior as well.

+
+
Type
+

ExpireBehaviour

+
+
+
+ +
+
+expire_grace_period
+

The grace period (in days) for expiring subscribers.

+
+
Type
+

int

+
+
+
+ +
+
+user
+

The user for the integration.

+
+
Type
+

User

+
+
+
+ +
+
+account
+

The integration account information.

+
+
Type
+

IntegrationAccount

+
+
+
+ +
+
+synced_at
+

An aware UTC datetime representing when the integration was last synced.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+property expire_behavior
+

An alias for expire_behaviour.

+
+
Type
+

ExpireBehaviour

+
+
+
+ +
+
+property role
+

Optional[Role] The role which the integration uses for subscribers.

+
+ +
+
+await edit(*, expire_behaviour=..., expire_grace_period=..., enable_emoticons=...)
+

This function is a coroutine.

+

Edits the integration.

+

You must have the manage_guild permission to +do this.

+
+
Parameters
+
    +
  • expire_behaviour (ExpireBehaviour) – The behaviour when an integration subscription lapses. Aliased to expire_behavior as well.

  • +
  • expire_grace_period (int) – The period (in days) where the integration will ignore lapsed subscriptions.

  • +
  • enable_emoticons (bool) – Where emoticons should be synced for this integration (currently twitch only).

  • +
+
+
Raises
+
+
+
+
+ +
+
+await sync()
+

This function is a coroutine.

+

Syncs the integration.

+

You must have the manage_guild permission to +do this.

+
+
Raises
+
    +
  • Forbidden – You do not have permission to sync the integration.

  • +
  • HTTPException – Syncing the integration failed.

  • +
+
+
+
+ +
+ +
+
+

Interaction

+
+
+class discord.Interaction
+

Represents a Discord interaction.

+

An interaction happens when a user does an action that needs to +be notified. Current examples are slash commands and components.

+
+

New in version 2.0.

+
+
+
+id
+

The interaction’s ID.

+
+
Type
+

int

+
+
+
+ +
+
+type
+

The interaction type.

+
+
Type
+

InteractionType

+
+
+
+ +
+
+guild_id
+

The guild ID the interaction was sent from.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+channel_id
+

The channel ID the interaction was sent from.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+application_id
+

The application ID that the interaction was for.

+
+
Type
+

int

+
+
+
+ +
+
+user
+

The user or member that sent the interaction.

+
+
Type
+

Optional[Union[User, Member]]

+
+
+
+ +
+
+message
+

The message that sent this interaction.

+
+
Type
+

Optional[Message]

+
+
+
+ +
+
+token
+

The token to continue the interaction. These are valid +for 15 minutes.

+
+
Type
+

str

+
+
+
+ +
+
+data
+

The raw interaction data.

+
+
Type
+

dict

+
+
+
+ +
+
+property guild
+

The guild the interaction was sent from.

+
+
Type
+

Optional[Guild]

+
+
+
+ +
+
+channel
+

The channel the interaction was sent from.

+

Note that due to a Discord limitation, DM channels are not resolved since there is +no data to complete them. These are PartialMessageable instead.

+
+
Type
+

Optional[Union[abc.GuildChannel, PartialMessageable, Thread]]

+
+
+
+ +
+
+property permissions
+

The resolved permissions of the member in the channel, including overwrites.

+

In a non-guild context where this doesn’t apply, an empty permissions object is returned.

+
+
Type
+

Permissions

+
+
+
+ +
+
+response
+

Returns an object responsible for handling responding to the interaction.

+

A response can only be done once. If secondary messages need to be sent, consider using followup +instead.

+
+
Type
+

InteractionResponse

+
+
+
+ +
+
+followup
+

Returns the follow up webhook for follow up interactions.

+
+
Type
+

Webhook

+
+
+
+ +
+
+await original_message()
+

This function is a coroutine.

+

Fetches the original interaction response message associated with the interaction.

+

If the interaction response was InteractionResponse.send_message() then this would +return the message that was sent using that response. Otherwise, this would return +the message that triggered the interaction.

+

Repeated calls to this will return a cached value.

+
+
Raises
+
    +
  • HTTPException – Fetching the original response message failed.

  • +
  • ClientException – The channel for the message could not be resolved.

  • +
+
+
Returns
+

The original interaction response message.

+
+
Return type
+

InteractionMessage

+
+
+
+ +
+
+await edit_original_message(*, content=..., embeds=..., embed=..., file=..., files=..., view=..., allowed_mentions=None)
+

This function is a coroutine.

+

Edits the original interaction response message.

+

This is a lower level interface to InteractionMessage.edit() in case +you do not want to fetch the message and save an HTTP request.

+

This method is also the only way to edit the original message if +the message sent was ephemeral.

+
+
Parameters
+
    +
  • content (Optional[str]) – The content to edit the message with or None to clear it.

  • +
  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • +
  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. +This should not be mixed with the embeds parameter.

  • +
  • file (File) – The file to upload. This cannot be mixed with files parameter.

  • +
  • files (List[File]) – A list of files to send with the content. This cannot be mixed with the +file parameter.

  • +
  • allowed_mentions (AllowedMentions) – Controls the mentions being processed in this message. +See abc.Messageable.send() for more information.

  • +
  • view (Optional[View]) – The updated view to update this message with. If None is passed then +the view is removed.

  • +
+
+
Raises
+
    +
  • HTTPException – Editing the message failed.

  • +
  • Forbidden – Edited a message that is not yours.

  • +
  • TypeError – You specified both embed and embeds or file and files

  • +
  • ValueError – The length of embeds was invalid.

  • +
+
+
Returns
+

The newly edited message.

+
+
Return type
+

InteractionMessage

+
+
+
+ +
+
+await delete_original_message()
+

This function is a coroutine.

+

Deletes the original interaction response message.

+

This is a lower level interface to InteractionMessage.delete() in case +you do not want to fetch the message and save an HTTP request.

+
+
Raises
+
+
+
+
+ +
+ +
+
+

InteractionResponse

+
+ +Methods +
+
+class discord.InteractionResponse
+

Represents a Discord interaction response.

+

This type can be accessed through Interaction.response.

+
+

New in version 2.0.

+
+
+
+is_done()
+

bool: Indicates whether an interaction response has been done before.

+

An interaction can only be responded to once.

+
+ +
+
+await defer(*, ephemeral=False)
+

This function is a coroutine.

+

Defers the interaction response.

+

This is typically used when the interaction is acknowledged +and a secondary action will be done later.

+
+
Parameters
+

ephemeral (bool) – Indicates whether the deferred message will eventually be ephemeral. +This only applies for interactions of type InteractionType.application_command.

+
+
Raises
+
+
+
+
+ +
+
+await pong()
+

This function is a coroutine.

+

Pongs the ping interaction.

+

This should rarely be used.

+
+
Raises
+
+
+
+
+ +
+
+await send_message(content=None, *, embed=..., embeds=..., view=..., tts=False, ephemeral=False)
+

This function is a coroutine.

+

Responds to this interaction by sending a message.

+
+
Parameters
+
    +
  • content (Optional[str]) – The content of the message to send.

  • +
  • embeds (List[Embed]) – A list of embeds to send with the content. Maximum of 10. This cannot +be mixed with the embed parameter.

  • +
  • embed (Embed) – The rich embed for the content to send. This cannot be mixed with +embeds parameter.

  • +
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • +
  • view (discord.ui.View) – The view to send with the message.

  • +
  • ephemeral (bool) – Indicates if the message should only be visible to the user who started the interaction. +If a view is sent with an ephemeral message and it has no timeout set then the timeout +is set to 15 minutes.

  • +
+
+
Raises
+
+
+
+
+ +
+
+await edit_message(*, content=..., embed=..., embeds=..., attachments=..., view=...)
+

This function is a coroutine.

+

Responds to this interaction by editing the original message of +a component interaction.

+
+
Parameters
+
    +
  • content (Optional[str]) – The new content to replace the message with. None removes the content.

  • +
  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • +
  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. +This should not be mixed with the embeds parameter.

  • +
  • attachments (List[Attachment]) – A list of attachments to keep in the message. If [] is passed +then all attachments are removed.

  • +
  • view (Optional[View]) – The updated view to update this message with. If None is passed then +the view is removed.

  • +
+
+
Raises
+
+
+
+
+ +
+ +
+
+

InteractionMessage

+
+ +Methods +
+
+class discord.InteractionMessage
+

Represents the original interaction response message.

+

This allows you to edit or delete the message associated with +the interaction response. To retrieve this object see Interaction.original_message().

+

This inherits from discord.Message with changes to +edit() and delete() to work.

+
+

New in version 2.0.

+
+
+
+await edit(content=..., embeds=..., embed=..., file=..., files=..., view=..., allowed_mentions=None)
+

This function is a coroutine.

+

Edits the message.

+
+
Parameters
+
    +
  • content (Optional[str]) – The content to edit the message with or None to clear it.

  • +
  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • +
  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. +This should not be mixed with the embeds parameter.

  • +
  • file (File) – The file to upload. This cannot be mixed with files parameter.

  • +
  • files (List[File]) – A list of files to send with the content. This cannot be mixed with the +file parameter.

  • +
  • allowed_mentions (AllowedMentions) – Controls the mentions being processed in this message. +See abc.Messageable.send() for more information.

  • +
  • view (Optional[View]) – The updated view to update this message with. If None is passed then +the view is removed.

  • +
+
+
Raises
+
    +
  • HTTPException – Editing the message failed.

  • +
  • Forbidden – Edited a message that is not yours.

  • +
  • TypeError – You specified both embed and embeds or file and files

  • +
  • ValueError – The length of embeds was invalid.

  • +
+
+
Returns
+

The newly edited message.

+
+
Return type
+

InteractionMessage

+
+
+
+ +
+
+await delete(*, delay=None)
+

This function is a coroutine.

+

Deletes the message.

+
+
Parameters
+

delay (Optional[float]) – If provided, the number of seconds to wait before deleting the message. +The waiting is done in the background and deletion failures are ignored.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to delete the message.

  • +
  • NotFound – The message was deleted already.

  • +
  • HTTPException – Deleting the message failed.

  • +
+
+
+
+ +
+ +
+
+

Member

+
+
+class discord.Member
+

Represents a Discord member to a Guild.

+

This implements a lot of the functionality of User.

+
+
+
+x == y
+

Checks if two members are equal. +Note that this works with User instances too.

+
+ +
+
+x != y
+

Checks if two members are not equal. +Note that this works with User instances too.

+
+ +
+
+hash(x)
+

Returns the member’s hash.

+
+ +
+
+str(x)
+

Returns the member’s name with the discriminator.

+
+ +
+
+int(x)
+

Returns the user’s ID.

+
+ +
+
+
+joined_at
+

An aware datetime object that specifies the date and time in UTC that the member joined the guild. +If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be None.

+
+
Type
+

Optional[datetime.datetime]

+
+
+
+ +
+
+activities
+

The activities that the user is currently doing.

+
+

Note

+

Due to a Discord API limitation, a user’s Spotify activity may not appear +if they are listening to a song with a title longer +than 128 characters. See GH-1738 for more information.

+
+
+
Type
+

Tuple[Union[BaseActivity, Spotify]]

+
+
+
+ +
+
+guild
+

The guild that the member belongs to.

+
+
Type
+

Guild

+
+
+
+ +
+
+nick
+

The guild specific nickname of the user.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+pending
+

Whether the member is pending member verification.

+
+

New in version 1.6.

+
+
+
Type
+

bool

+
+
+
+ +
+
+premium_since
+

An aware datetime object that specifies the date and time in UTC when the member used their +“Nitro boost” on the guild, if available. This could be None.

+
+
Type
+

Optional[datetime.datetime]

+
+
+
+ +
+
+async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
+

Returns an AsyncIterator that enables receiving the destination’s message history.

+

You must have read_message_history permissions to use this.

+

Examples

+

Usage

+
counter = 0
+async for message in channel.history(limit=200):
+    if message.author == client.user:
+        counter += 1
+
+
+

Flattening into a list:

+
messages = await channel.history(limit=123).flatten()
+# messages is now a list of Message...
+
+
+

All parameters are optional.

+
+
Parameters
+
    +
  • limit (Optional[int]) – The number of messages to retrieve. +If None, retrieves every message in the channel. Note, however, +that this would make it a slow operation.

  • +
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time. +When using this argument, the maximum limit is 101. Note that if the limit is an +even number then this will return at most limit + 1 messages.

  • +
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if +after is specified, otherwise False.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to get channel message history.

  • +
  • HTTPException – The request to get message history failed.

  • +
+
+
Yields
+

Message – The message with the message data parsed.

+
+
+
+ +
+
+async with typing()
+

Returns a context manager that allows you to type for an indefinite period of time.

+

This is useful for denoting long computations in your bot.

+
+

Note

+

This is both a regular context manager and an async context manager. +This means that both with and async with work with this.

+
+

Example Usage:

+
async with channel.typing():
+    # simulate something heavy
+    await asyncio.sleep(10)
+
+await channel.send('done!')
+
+
+
+ +
+
+property name
+

Equivalent to User.name

+
+ +
+
+property id
+

Equivalent to User.id

+
+ +
+
+property discriminator
+

Equivalent to User.discriminator

+
+ +
+
+property bot
+

Equivalent to User.bot

+
+ +
+
+property system
+

Equivalent to User.system

+
+ +
+
+property created_at
+

Equivalent to User.created_at

+
+ +
+
+property default_avatar
+

Equivalent to User.default_avatar

+
+ +
+
+property avatar
+

Equivalent to User.avatar

+
+ +
+
+property dm_channel
+

Equivalent to User.dm_channel

+
+ +
+
+await create_dm()
+

This function is a coroutine.

+

Creates a DMChannel with this user.

+

This should be rarely called, as this is done transparently for most +people.

+
+
Returns
+

The channel that was created.

+
+
Return type
+

DMChannel

+
+
+
+ +
+
+property mutual_guilds
+

Equivalent to User.mutual_guilds

+
+ +
+
+property public_flags
+

Equivalent to User.public_flags

+
+ +
+
+property banner
+

Equivalent to User.banner

+
+ +
+
+property accent_color
+

Equivalent to User.accent_color

+
+ +
+
+property accent_colour
+

Equivalent to User.accent_colour

+
+ +
+
+property raw_status
+

The member’s overall status as a string value.

+
+

New in version 1.5.

+
+
+
Type
+

str

+
+
+
+ +
+
+property status
+

The member’s overall status. If the value is unknown, then it will be a str instead.

+
+
Type
+

Status

+
+
+
+ +
+
+property mobile_status
+

The member’s status on a mobile device, if applicable.

+
+
Type
+

Status

+
+
+
+ +
+
+property desktop_status
+

The member’s status on the desktop client, if applicable.

+
+
Type
+

Status

+
+
+
+ +
+
+property web_status
+

The member’s status on the web client, if applicable.

+
+
Type
+

Status

+
+
+
+ +
+
+is_on_mobile()
+

bool: A helper function that determines if a member is active on a mobile device.

+
+ +
+
+property colour
+

A property that returns a colour denoting the rendered colour +for the member. If the default colour is the one rendered then an instance +of Colour.default() is returned.

+

There is an alias for this named color.

+
+
Type
+

Colour

+
+
+
+ +
+
+property color
+

A property that returns a color denoting the rendered color for +the member. If the default color is the one rendered then an instance of Colour.default() +is returned.

+

There is an alias for this named colour.

+
+
Type
+

Colour

+
+
+
+ +
+
+property roles
+

A list of Role that the member belongs to. Note +that the first element of this list is always the default @everyone’ +role.

+

These roles are sorted by their position in the role hierarchy.

+
+
Type
+

List[Role]

+
+
+
+ +
+
+property mention
+

Returns a string that allows you to mention the member.

+
+
Type
+

str

+
+
+
+ +
+
+property display_name
+

Returns the user’s display name.

+

For regular users this is just their username, but +if they have a guild specific nickname then that +is returned instead.

+
+
Type
+

str

+
+
+
+ +
+
+property display_avatar
+

Returns the member’s display avatar.

+

For regular members this is just their avatar, but +if they have a guild specific avatar then that +is returned instead.

+
+

New in version 2.0.

+
+
+
Type
+

Asset

+
+
+
+ +
+
+property guild_avatar
+

Returns an Asset for the guild avatar +the member has. If unavailable, None is returned.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property activity
+

Returns the primary +activity the user is currently doing. Could be None if no activity is being done.

+
+

Note

+

Due to a Discord API limitation, this may be None if +the user is listening to a song on Spotify with a title longer +than 128 characters. See GH-1738 for more information.

+
+
+

Note

+

A user may have multiple activities, these can be accessed under activities.

+
+
+
Type
+

Optional[Union[BaseActivity, Spotify]]

+
+
+
+ +
+
+mentioned_in(message)
+

Checks if the member is mentioned in the specified message.

+
+
Parameters
+

message (Message) – The message to check if you’re mentioned in.

+
+
Returns
+

Indicates if the member is mentioned in the message.

+
+
Return type
+

bool

+
+
+
+ +
+
+property top_role
+

Returns the member’s highest role.

+

This is useful for figuring where a member stands in the role +hierarchy chain.

+
+
Type
+

Role

+
+
+
+ +
+
+property guild_permissions
+

Returns the member’s guild permissions.

+

This only takes into consideration the guild permissions +and not most of the implied permissions or any of the +channel permission overwrites. For 100% accurate permission +calculation, please use abc.GuildChannel.permissions_for().

+

This does take into consideration guild ownership and the +administrator implication.

+
+
Type
+

Permissions

+
+
+
+ +
+
+property voice
+

Returns the member’s current voice state.

+
+
Type
+

Optional[VoiceState]

+
+
+
+ +
+
+await ban(*, delete_message_days=1, reason=None)
+

This function is a coroutine.

+

Bans this member. Equivalent to Guild.ban().

+
+ +
+
+await unban(*, reason=None)
+

This function is a coroutine.

+

Unbans this member. Equivalent to Guild.unban().

+
+ +
+
+await kick(*, reason=None)
+

This function is a coroutine.

+

Kicks this member. Equivalent to Guild.kick().

+
+ +
+
+await edit(*, nick=..., mute=..., deafen=..., suppress=..., roles=..., voice_channel=..., reason=None)
+

This function is a coroutine.

+

Edits the member’s data.

+

Depending on the parameter passed, this requires different permissions listed below:

+
++++ + + + + + + + + + + + + + + + + + + + + +

Parameter

Permission

nick

Permissions.manage_nicknames

mute

Permissions.mute_members

deafen

Permissions.deafen_members

roles

Permissions.manage_roles

voice_channel

Permissions.move_members

+

All parameters are optional.

+
+

Changed in version 1.1: Can now pass None to voice_channel to kick a member from voice.

+
+
+

Changed in version 2.0: The newly member is now optionally returned, if applicable.

+
+
+
Parameters
+
    +
  • nick (Optional[str]) – The member’s new nickname. Use None to remove the nickname.

  • +
  • mute (bool) – Indicates if the member should be guild muted or un-muted.

  • +
  • deafen (bool) – Indicates if the member should be guild deafened or un-deafened.

  • +
  • suppress (bool) –

    Indicates if the member should be suppressed in stage channels.

    +
    +

    New in version 1.7.

    +
    +

  • +
  • roles (List[Role]) – The member’s new list of roles. This replaces the roles.

  • +
  • voice_channel (Optional[VoiceChannel]) – The voice channel to move the member to. +Pass None to kick them from voice.

  • +
  • reason (Optional[str]) – The reason for editing this member. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to the action requested.

  • +
  • HTTPException – The operation failed.

  • +
+
+
Returns
+

The newly updated member, if applicable. This is only returned +when certain fields are updated.

+
+
Return type
+

Optional[Member]

+
+
+
+ +
+
+await request_to_speak()
+

This function is a coroutine.

+

Request to speak in the connected channel.

+

Only applies to stage channels.

+
+

Note

+

Requesting members that are not the client is equivalent +to edit providing suppress as False.

+
+
+

New in version 1.7.

+
+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to the action requested.

  • +
  • HTTPException – The operation failed.

  • +
+
+
+
+ +
+
+await move_to(channel, *, reason=None)
+

This function is a coroutine.

+

Moves a member to a new voice channel (they must be connected first).

+

You must have the move_members permission to +use this.

+

This raises the same exceptions as edit().

+
+

Changed in version 1.1: Can now pass None to kick a member from voice.

+
+
+
Parameters
+
    +
  • channel (Optional[VoiceChannel]) – The new voice channel to move the member to. +Pass None to kick them from voice.

  • +
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • +
+
+
+
+ +
+
+await add_roles(*roles, reason=None, atomic=True)
+

This function is a coroutine.

+

Gives the member a number of Roles.

+

You must have the manage_roles permission to +use this, and the added Roles must appear lower in the list +of roles than the highest role of the member.

+
+
Parameters
+
    +
  • *roles (abc.Snowflake) – An argument list of abc.Snowflake representing a Role +to give to the member.

  • +
  • reason (Optional[str]) – The reason for adding these roles. Shows up on the audit log.

  • +
  • atomic (bool) – Whether to atomically add roles. This will ensure that multiple +operations will always be applied regardless of the current +state of the cache.

  • +
+
+
Raises
+
+
+
+
+ +
+
+await fetch_message(id, /)
+

This function is a coroutine.

+

Retrieves a single Message from the destination.

+
+
Parameters
+

id (int) – The message ID to look for.

+
+
Raises
+
    +
  • NotFound – The specified message was not found.

  • +
  • Forbidden – You do not have the permissions required to get a message.

  • +
  • HTTPException – Retrieving the message failed.

  • +
+
+
Returns
+

The message asked for.

+
+
Return type
+

Message

+
+
+
+ +
+
+await pins()
+

This function is a coroutine.

+

Retrieves all messages that are currently pinned in the channel.

+
+

Note

+

Due to a limitation with the Discord API, the Message +objects returned by this method do not contain complete +Message.reactions data.

+
+
+
Raises
+

HTTPException – Retrieving the pinned messages failed.

+
+
Returns
+

The messages that are currently pinned.

+
+
Return type
+

List[Message]

+
+
+
+ +
+
+await remove_roles(*roles, reason=None, atomic=True)
+

This function is a coroutine.

+

Removes Roles from this member.

+

You must have the manage_roles permission to +use this, and the removed Roles must appear lower in the list +of roles than the highest role of the member.

+
+
Parameters
+
    +
  • *roles (abc.Snowflake) – An argument list of abc.Snowflake representing a Role +to remove from the member.

  • +
  • reason (Optional[str]) – The reason for removing these roles. Shows up on the audit log.

  • +
  • atomic (bool) – Whether to atomically remove roles. This will ensure that multiple +operations will always be applied regardless of the current +state of the cache.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to remove these roles.

  • +
  • HTTPException – Removing the roles failed.

  • +
+
+
+
+ +
+
+await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
+

This function is a coroutine.

+

Sends a message to the destination with the content given.

+

The content must be a type that can convert to a string through str(content). +If the content is set to None (the default), then the embed parameter must +be provided.

+

To upload a single file, the file parameter should be used with a +single File object. To upload multiple files, the files +parameter should be used with a list of File objects. +Specifying both parameters will lead to an exception.

+

To upload a single embed, the embed parameter should be used with a +single Embed object. To upload multiple embeds, the embeds +parameter should be used with a list of Embed objects. +Specifying both parameters will lead to an exception.

+
+
Parameters
+
    +
  • content (Optional[str]) – The content of the message to send.

  • +
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • +
  • embed (Embed) – The rich embed for the content.

  • +
  • file (File) – The file to upload.

  • +
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • +
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, +then the message will have a nonce with this value.

  • +
  • delete_after (float) – If provided, the number of seconds to wait in the background +before deleting the message we just sent. If the deletion fails, +then it is silently ignored.

  • +
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is +passed, then the object is merged with allowed_mentions. +The merging behaviour only overrides attributes that have been explicitly passed +to the object, otherwise it uses the attributes set in allowed_mentions. +If no object is passed at all then the defaults given by allowed_mentions +are used instead.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using +to_reference() or passed directly as a Message. You can control +whether this mentions the author of the referenced message using the replied_user +attribute of allowed_mentions or by setting mention_author.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • +
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
+
+
Returns
+

The message that was sent.

+
+
Return type
+

Message

+
+
+
+ +
+
+await trigger_typing()
+

This function is a coroutine.

+

Triggers a typing indicator to the destination.

+

Typing indicator will go away after 10 seconds, or after a message is sent.

+
+ +
+
+get_role(role_id, /)
+

Returns a role with the given ID from roles which the member has.

+
+

New in version 2.0.

+
+
+
Parameters
+

role_id (int) – The ID to search for.

+
+
Returns
+

The role or None if not found in the member’s roles.

+
+
Return type
+

Optional[Role]

+
+
+
+ +
+ +
+
+

Spotify

+
+
+class discord.Spotify
+

Represents a Spotify listening activity from Discord. This is a special case of +Activity that makes it easier to work with the Spotify integration.

+
+
+
+x == y
+

Checks if two activities are equal.

+
+ +
+
+x != y
+

Checks if two activities are not equal.

+
+ +
+
+hash(x)
+

Returns the activity’s hash.

+
+ +
+
+str(x)
+

Returns the string ‘Spotify’.

+
+ +
+
+
+property type
+

Returns the activity’s type. This is for compatibility with Activity.

+

It always returns ActivityType.listening.

+
+
Type
+

ActivityType

+
+
+
+ +
+
+property created_at
+

When the user started listening in UTC.

+
+

New in version 1.3.

+
+
+
Type
+

Optional[datetime.datetime]

+
+
+
+ +
+
+property colour
+

Returns the Spotify integration colour, as a Colour.

+

There is an alias for this named color

+
+
Type
+

Colour

+
+
+
+ +
+
+property color
+

Returns the Spotify integration colour, as a Colour.

+

There is an alias for this named colour

+
+
Type
+

Colour

+
+
+
+ +
+
+property name
+

The activity’s name. This will always return “Spotify”.

+
+
Type
+

str

+
+
+
+ +
+
+property title
+

The title of the song being played.

+
+
Type
+

str

+
+
+
+ +
+
+property artists
+

The artists of the song being played.

+
+
Type
+

List[str]

+
+
+
+ +
+
+property artist
+

The artist of the song being played.

+

This does not attempt to split the artist information into +multiple artists. Useful if there’s only a single artist.

+
+
Type
+

str

+
+
+
+ +
+
+property album
+

The album that the song being played belongs to.

+
+
Type
+

str

+
+
+
+ +
+
+property album_cover_url
+

The album cover image URL from Spotify’s CDN.

+
+
Type
+

str

+
+
+
+ +
+
+property track_id
+

The track ID used by Spotify to identify this song.

+
+
Type
+

str

+
+
+
+ +
+
+property track_url
+

The track URL to listen on Spotify.

+
+

New in version 2.0.

+
+
+
Type
+

str

+
+
+
+ +
+
+property start
+

When the user started playing this song in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+property end
+

When the user will stop playing this song in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+property duration
+

The duration of the song being played.

+
+
Type
+

datetime.timedelta

+
+
+
+ +
+
+property party_id
+

The party ID of the listening party.

+
+
Type
+

str

+
+
+
+ +
+ +
+
+

VoiceState

+
+
+class discord.VoiceState
+

Represents a Discord user’s voice state.

+
+
+deaf
+

Indicates if the user is currently deafened by the guild.

+
+
Type
+

bool

+
+
+
+ +
+
+mute
+

Indicates if the user is currently muted by the guild.

+
+
Type
+

bool

+
+
+
+ +
+
+self_mute
+

Indicates if the user is currently muted by their own accord.

+
+
Type
+

bool

+
+
+
+ +
+
+self_deaf
+

Indicates if the user is currently deafened by their own accord.

+
+
Type
+

bool

+
+
+
+ +
+
+self_stream
+

Indicates if the user is currently streaming via ‘Go Live’ feature.

+
+

New in version 1.3.

+
+
+
Type
+

bool

+
+
+
+ +
+
+self_video
+

Indicates if the user is currently broadcasting video.

+
+
Type
+

bool

+
+
+
+ +
+
+suppress
+

Indicates if the user is suppressed from speaking.

+

Only applies to stage channels.

+
+

New in version 1.7.

+
+
+
Type
+

bool

+
+
+
+ +
+
+requested_to_speak_at
+

An aware datetime object that specifies the date and time in UTC that the member +requested to speak. It will be None if they are not requesting to speak +anymore or have been accepted to speak.

+

Only applicable to stage channels.

+
+

New in version 1.7.

+
+
+
Type
+

Optional[datetime.datetime]

+
+
+
+ +
+
+afk
+

Indicates if the user is currently in the AFK channel in the guild.

+
+
Type
+

bool

+
+
+
+ +
+
+channel
+

The voice channel that the user is currently connected to. None if the user +is not currently in a voice channel.

+
+
Type
+

Optional[Union[VoiceChannel, StageChannel]]

+
+
+
+ +
+ +
+
+

Emoji

+
+ +Methods +
+
+class discord.Emoji
+

Represents a custom emoji.

+

Depending on the way this object was created, some of the attributes can +have a value of None.

+
+
+
+x == y
+

Checks if two emoji are the same.

+
+ +
+
+x != y
+

Checks if two emoji are not the same.

+
+ +
+
+hash(x)
+

Return the emoji’s hash.

+
+ +
+
+iter(x)
+

Returns an iterator of (field, value) pairs. This allows this class +to be used as an iterable in list/dict/etc constructions.

+
+ +
+
+str(x)
+

Returns the emoji rendered for discord.

+
+ +
+
+int(x)
+

Returns the emoji ID.

+
+ +
+
+
+name
+

The name of the emoji.

+
+
Type
+

str

+
+
+
+ +
+
+id
+

The emoji’s ID.

+
+
Type
+

int

+
+
+
+ +
+
+require_colons
+

If colons are required to use this emoji in the client (:PJSalt: vs PJSalt).

+
+
Type
+

bool

+
+
+
+ +
+
+animated
+

Whether an emoji is animated or not.

+
+
Type
+

bool

+
+
+
+ +
+
+managed
+

If this emoji is managed by a Twitch integration.

+
+
Type
+

bool

+
+
+
+ +
+
+guild_id
+

The guild ID the emoji belongs to.

+
+
Type
+

int

+
+
+
+ +
+
+available
+

Whether the emoji is available for use.

+
+
Type
+

bool

+
+
+
+ +
+
+user
+

The user that created the emoji. This can only be retrieved using Guild.fetch_emoji() and +having the manage_emojis permission.

+
+
Type
+

Optional[User]

+
+
+
+ +
+
+property created_at
+

Returns the emoji’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+property url
+

Returns the URL of the emoji.

+
+
Type
+

str

+
+
+
+ +
+
+property roles
+

A list of roles that is allowed to use this emoji.

+

If roles is empty, the emoji is unrestricted.

+
+
Type
+

List[Role]

+
+
+
+ +
+
+property guild
+

The guild this emoji belongs to.

+
+
Type
+

Guild

+
+
+
+ +
+
+is_usable()
+

bool: Whether the bot can use this emoji.

+
+

New in version 1.3.

+
+
+ +
+
+await delete(*, reason=None)
+

This function is a coroutine.

+

Deletes the custom emoji.

+

You must have manage_emojis permission to +do this.

+
+
Parameters
+

reason (Optional[str]) – The reason for deleting this emoji. Shows up on the audit log.

+
+
Raises
+
    +
  • Forbidden – You are not allowed to delete emojis.

  • +
  • HTTPException – An error occurred deleting the emoji.

  • +
+
+
+
+ +
+
+await edit(*, name=..., roles=..., reason=None)
+

This function is a coroutine.

+

Edits the custom emoji.

+

You must have manage_emojis permission to +do this.

+
+

Changed in version 2.0: The newly updated emoji is returned.

+
+
+
Parameters
+
    +
  • name (str) – The new emoji name.

  • +
  • roles (Optional[List[Snowflake]]) – A list of roles that can use this emoji. An empty list can be passed to make it available to everyone.

  • +
  • reason (Optional[str]) – The reason for editing this emoji. Shows up on the audit log.

  • +
+
+
Raises
+
+
+
Returns
+

The newly updated emoji.

+
+
Return type
+

Emoji

+
+
+
+ +
+
+await read()
+

This function is a coroutine.

+

Retrieves the content of this asset as a bytes object.

+
+
Raises
+
+
+
Returns
+

The content of the asset.

+
+
Return type
+

bytes

+
+
+
+ +
+
+await save(fp, *, seek_begin=True)
+

This function is a coroutine.

+

Saves this asset into a file-like object.

+
+
Parameters
+
    +
  • fp (Union[io.BufferedIOBase, os.PathLike]) – The file-like object to save this attachment to or the filename +to use. If a filename is passed then a file is created with that +filename and used instead.

  • +
  • seek_begin (bool) – Whether to seek to the beginning of the file after saving is +successfully done.

  • +
+
+
Raises
+
+
+
Returns
+

The number of bytes written.

+
+
Return type
+

int

+
+
+
+ +
+ +
+
+

PartialEmoji

+
+ +Attributes +
+ +Methods +
+
+class discord.PartialEmoji
+

Represents a “partial” emoji.

+

This model will be given in two scenarios:

+ +
+
+
+x == y
+

Checks if two emoji are the same.

+
+ +
+
+x != y
+

Checks if two emoji are not the same.

+
+ +
+
+hash(x)
+

Return the emoji’s hash.

+
+ +
+
+str(x)
+

Returns the emoji rendered for discord.

+
+ +
+
+
+name
+

The custom emoji name, if applicable, or the unicode codepoint +of the non-custom emoji. This can be None if the emoji +got deleted (e.g. removing a reaction with a deleted emoji).

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+animated
+

Whether the emoji is animated or not.

+
+
Type
+

bool

+
+
+
+ +
+
+id
+

The ID of the custom emoji, if applicable.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+classmethod from_str(value)
+

Converts a Discord string representation of an emoji to a PartialEmoji.

+

The formats accepted are:

+
    +
  • a:name:id

  • +
  • <a:name:id>

  • +
  • name:id

  • +
  • <:name:id>

  • +
+

If the format does not match then it is assumed to be a unicode emoji.

+
+

New in version 2.0.

+
+
+
Parameters
+

value (str) – The string representation of an emoji.

+
+
Returns
+

The partial emoji from this string.

+
+
Return type
+

PartialEmoji

+
+
+
+ +
+
+is_custom_emoji()
+

bool: Checks if this is a custom non-Unicode emoji.

+
+ +
+
+is_unicode_emoji()
+

bool: Checks if this is a Unicode emoji.

+
+ +
+
+property created_at
+

Returns the emoji’s creation time in UTC, or None if Unicode emoji.

+
+

New in version 1.6.

+
+
+
Type
+

Optional[datetime.datetime]

+
+
+
+ +
+
+property url
+

Returns the URL of the emoji, if it is custom.

+

If this isn’t a custom emoji then an empty string is returned

+
+
Type
+

str

+
+
+
+ +
+
+await read()
+

This function is a coroutine.

+

Retrieves the content of this asset as a bytes object.

+
+
Raises
+
+
+
Returns
+

The content of the asset.

+
+
Return type
+

bytes

+
+
+
+ +
+
+await save(fp, *, seek_begin=True)
+

This function is a coroutine.

+

Saves this asset into a file-like object.

+
+
Parameters
+
    +
  • fp (Union[io.BufferedIOBase, os.PathLike]) – The file-like object to save this attachment to or the filename +to use. If a filename is passed then a file is created with that +filename and used instead.

  • +
  • seek_begin (bool) – Whether to seek to the beginning of the file after saving is +successfully done.

  • +
+
+
Raises
+
+
+
Returns
+

The number of bytes written.

+
+
Return type
+

int

+
+
+
+ +
+ +
+
+

Role

+
+
+class discord.Role
+

Represents a Discord role in a Guild.

+
+
+
+x == y
+

Checks if two roles are equal.

+
+ +
+
+x != y
+

Checks if two roles are not equal.

+
+ +
+
+x > y
+

Checks if a role is higher than another in the hierarchy.

+
+ +
+
+x < y
+

Checks if a role is lower than another in the hierarchy.

+
+ +
+
+x >= y
+

Checks if a role is higher or equal to another in the hierarchy.

+
+ +
+
+x <= y
+

Checks if a role is lower or equal to another in the hierarchy.

+
+ +
+
+hash(x)
+

Return the role’s hash.

+
+ +
+
+str(x)
+

Returns the role’s name.

+
+ +
+
+str(x)
+

Returns the role’s ID.

+
+ +
+
+int(x)
+

Returns the role’s ID.

+
+ +
+
+
+id
+

The ID for the role.

+
+
Type
+

int

+
+
+
+ +
+
+name
+

The name of the role.

+
+
Type
+

str

+
+
+
+ +
+
+guild
+

The guild the role belongs to.

+
+
Type
+

Guild

+
+
+
+ +
+
+hoist
+

Indicates if the role will be displayed separately from other members.

+
+
Type
+

bool

+
+
+
+ +
+
+position
+

The position of the role. This number is usually positive. The bottom +role has a position of 0.

+
+

Warning

+

Multiple roles can have the same position number. As a consequence +of this, comparing via role position is prone to subtle bugs if +checking for role hierarchy. The recommended and correct way to +compare for roles in the hierarchy is using the comparison +operators on the role objects themselves.

+
+
+
Type
+

int

+
+
+
+ +
+
+managed
+

Indicates if the role is managed by the guild through some form of +integrations such as Twitch.

+
+
Type
+

bool

+
+
+
+ +
+
+mentionable
+

Indicates if the role can be mentioned by users.

+
+
Type
+

bool

+
+
+
+ +
+
+tags
+

The role tags associated with this role.

+
+
Type
+

Optional[RoleTags]

+
+
+
+ +
+
+is_default()
+

bool: Checks if the role is the default role.

+
+ +
+
+is_bot_managed()
+

bool: Whether the role is associated with a bot.

+
+

New in version 1.6.

+
+
+ +
+
+is_premium_subscriber()
+

bool: Whether the role is the premium subscriber, AKA “boost”, role for the guild.

+
+

New in version 1.6.

+
+
+ +
+
+is_integration()
+

bool: Whether the role is managed by an integration.

+
+

New in version 1.6.

+
+
+ +
+
+is_assignable()
+

bool: Whether the role is able to be assigned or removed by the bot.

+
+

New in version 2.0.

+
+
+ +
+
+property permissions
+

Returns the role’s permissions.

+
+
Type
+

Permissions

+
+
+
+ +
+
+property colour
+

Returns the role colour. An alias exists under color.

+
+
Type
+

Colour

+
+
+
+ +
+
+property color
+

Returns the role color. An alias exists under colour.

+
+
Type
+

Colour

+
+
+
+ +
+
+property created_at
+

Returns the role’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+property mention
+

Returns a string that allows you to mention a role.

+
+
Type
+

str

+
+
+
+ +
+
+property members
+

Returns all the members with this role.

+
+
Type
+

List[Member]

+
+
+
+ +
+
+await edit(*, name=..., permissions=..., colour=..., color=..., hoist=..., mentionable=..., position=..., reason=...)
+

This function is a coroutine.

+

Edits the role.

+

You must have the manage_roles permission to +use this.

+

All fields are optional.

+
+

Changed in version 1.4: Can now pass int to colour keyword-only parameter.

+
+
+

Changed in version 2.0: Edits are no longer in-place, the newly edited role is returned instead.

+
+
+
Parameters
+
    +
  • name (str) – The new role name to change to.

  • +
  • permissions (Permissions) – The new permissions to change to.

  • +
  • colour (Union[Colour, int]) – The new colour to change to. (aliased to color as well)

  • +
  • hoist (bool) – Indicates if the role should be shown separately in the member list.

  • +
  • mentionable (bool) – Indicates if the role should be mentionable by others.

  • +
  • position (int) – The new role’s position. This must be below your top role’s +position or it will fail.

  • +
  • reason (Optional[str]) – The reason for editing this role. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to change the role.

  • +
  • HTTPException – Editing the role failed.

  • +
  • InvalidArgument – An invalid position was given or the default + role was asked to be moved.

  • +
+
+
Returns
+

The newly edited role.

+
+
Return type
+

Role

+
+
+
+ +
+
+await delete(*, reason=None)
+

This function is a coroutine.

+

Deletes the role.

+

You must have the manage_roles permission to +use this.

+
+
Parameters
+

reason (Optional[str]) – The reason for deleting this role. Shows up on the audit log.

+
+
Raises
+
    +
  • Forbidden – You do not have permissions to delete the role.

  • +
  • HTTPException – Deleting the role failed.

  • +
+
+
+
+ +
+ +
+
+

RoleTags

+
+ +Attributes +
+ +Methods +
+
+class discord.RoleTags
+

Represents tags on a role.

+

A role tag is a piece of extra information attached to a managed role +that gives it context for the reason the role is managed.

+

While this can be accessed, a useful interface is also provided in the +Role and Guild classes as well.

+
+

New in version 1.6.

+
+
+
+bot_id
+

The bot’s user ID that manages this role.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+integration_id
+

The integration ID that manages the role.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+is_bot_managed()
+

bool: Whether the role is associated with a bot.

+
+ +
+
+is_premium_subscriber()
+

bool: Whether the role is the premium subscriber, AKA “boost”, role for the guild.

+
+ +
+
+is_integration()
+

bool: Whether the role is managed by an integration.

+
+ +
+ +
+
+

PartialMessageable

+
+ +Attributes +
+ +Methods +
+
+class discord.PartialMessageable
+

Represents a partial messageable to aid with working messageable channels when +only a channel ID are present.

+

The only way to construct this class is through Client.get_partial_messageable().

+

Note that this class is trimmed down and has no rich attributes.

+
+

New in version 2.0.

+
+
+
+
+x == y
+

Checks if two partial messageables are equal.

+
+ +
+
+x != y
+

Checks if two partial messageables are not equal.

+
+ +
+
+hash(x)
+

Returns the partial messageable’s hash.

+
+ +
+
+int(x)
+

Returns the messageable’s ID.

+
+ +
+
+
+id
+

The channel ID associated with this partial messageable.

+
+
Type
+

int

+
+
+
+ +
+
+type
+

The channel type associated with this partial messageable, if given.

+
+
Type
+

Optional[ChannelType]

+
+
+
+ +
+
+await fetch_message(id, /)
+

This function is a coroutine.

+

Retrieves a single Message from the destination.

+
+
Parameters
+

id (int) – The message ID to look for.

+
+
Raises
+
    +
  • NotFound – The specified message was not found.

  • +
  • Forbidden – You do not have the permissions required to get a message.

  • +
  • HTTPException – Retrieving the message failed.

  • +
+
+
Returns
+

The message asked for.

+
+
Return type
+

Message

+
+
+
+ +
+
+history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
+

Returns an AsyncIterator that enables receiving the destination’s message history.

+

You must have read_message_history permissions to use this.

+

Examples

+

Usage

+
counter = 0
+async for message in channel.history(limit=200):
+    if message.author == client.user:
+        counter += 1
+
+
+

Flattening into a list:

+
messages = await channel.history(limit=123).flatten()
+# messages is now a list of Message...
+
+
+

All parameters are optional.

+
+
Parameters
+
    +
  • limit (Optional[int]) – The number of messages to retrieve. +If None, retrieves every message in the channel. Note, however, +that this would make it a slow operation.

  • +
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time. +When using this argument, the maximum limit is 101. Note that if the limit is an +even number then this will return at most limit + 1 messages.

  • +
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if +after is specified, otherwise False.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to get channel message history.

  • +
  • HTTPException – The request to get message history failed.

  • +
+
+
Yields
+

Message – The message with the message data parsed.

+
+
+
+ +
+
+await pins()
+

This function is a coroutine.

+

Retrieves all messages that are currently pinned in the channel.

+
+

Note

+

Due to a limitation with the Discord API, the Message +objects returned by this method do not contain complete +Message.reactions data.

+
+
+
Raises
+

HTTPException – Retrieving the pinned messages failed.

+
+
Returns
+

The messages that are currently pinned.

+
+
Return type
+

List[Message]

+
+
+
+ +
+
+await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
+

This function is a coroutine.

+

Sends a message to the destination with the content given.

+

The content must be a type that can convert to a string through str(content). +If the content is set to None (the default), then the embed parameter must +be provided.

+

To upload a single file, the file parameter should be used with a +single File object. To upload multiple files, the files +parameter should be used with a list of File objects. +Specifying both parameters will lead to an exception.

+

To upload a single embed, the embed parameter should be used with a +single Embed object. To upload multiple embeds, the embeds +parameter should be used with a list of Embed objects. +Specifying both parameters will lead to an exception.

+
+
Parameters
+
    +
  • content (Optional[str]) – The content of the message to send.

  • +
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • +
  • embed (Embed) – The rich embed for the content.

  • +
  • file (File) – The file to upload.

  • +
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • +
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, +then the message will have a nonce with this value.

  • +
  • delete_after (float) – If provided, the number of seconds to wait in the background +before deleting the message we just sent. If the deletion fails, +then it is silently ignored.

  • +
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is +passed, then the object is merged with allowed_mentions. +The merging behaviour only overrides attributes that have been explicitly passed +to the object, otherwise it uses the attributes set in allowed_mentions. +If no object is passed at all then the defaults given by allowed_mentions +are used instead.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using +to_reference() or passed directly as a Message. You can control +whether this mentions the author of the referenced message using the replied_user +attribute of allowed_mentions or by setting mention_author.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • +
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
+
+
Returns
+

The message that was sent.

+
+
Return type
+

Message

+
+
+
+ +
+
+await trigger_typing()
+

This function is a coroutine.

+

Triggers a typing indicator to the destination.

+

Typing indicator will go away after 10 seconds, or after a message is sent.

+
+ +
+
+typing()
+

Returns a context manager that allows you to type for an indefinite period of time.

+

This is useful for denoting long computations in your bot.

+
+

Note

+

This is both a regular context manager and an async context manager. +This means that both with and async with work with this.

+
+

Example Usage:

+
async with channel.typing():
+    # simulate something heavy
+    await asyncio.sleep(10)
+
+await channel.send('done!')
+
+
+
+ +
+
+get_partial_message(message_id, /)
+

Creates a PartialMessage from the message ID.

+

This is useful if you want to work with a message and only have its ID without +doing an unnecessary API call.

+
+
Parameters
+

message_id (int) – The message ID to create a partial message for.

+
+
Returns
+

The partial message.

+
+
Return type
+

PartialMessage

+
+
+
+ +
+ +
+
+

TextChannel

+
+
+class discord.TextChannel
+

Represents a Discord guild text channel.

+
+
+
+x == y
+

Checks if two channels are equal.

+
+ +
+
+x != y
+

Checks if two channels are not equal.

+
+ +
+
+hash(x)
+

Returns the channel’s hash.

+
+ +
+
+str(x)
+

Returns the channel’s name.

+
+ +
+
+int(x)
+

Returns the channel’s ID.

+
+ +
+
+
+name
+

The channel name.

+
+
Type
+

str

+
+
+
+ +
+
+guild
+

The guild the channel belongs to.

+
+
Type
+

Guild

+
+
+
+ +
+
+id
+

The channel ID.

+
+
Type
+

int

+
+
+
+ +
+
+category_id
+

The category channel ID this channel belongs to, if applicable.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+topic
+

The channel’s topic. None if it doesn’t exist.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+position
+

The position in the channel list. This is a number that starts at 0. e.g. the +top channel is position 0.

+
+
Type
+

int

+
+
+
+ +
+
+last_message_id
+

The last message ID of the message sent to this channel. It may +not point to an existing or valid message.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+slowmode_delay
+

The number of seconds a member must wait between sending messages +in this channel. A value of 0 denotes that it is disabled. +Bots and users with manage_channels or +manage_messages bypass slowmode.

+
+
Type
+

int

+
+
+
+ +
+
+nsfw
+

If the channel is marked as “not safe for work”.

+
+

Note

+

To check if the channel or the guild of that channel are marked as NSFW, consider is_nsfw() instead.

+
+
+
Type
+

bool

+
+
+
+ +
+
+default_auto_archive_duration
+

The default auto archive duration in minutes for threads created in this channel.

+
+

New in version 2.0.

+
+
+
Type
+

int

+
+
+
+ +
+
+async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
+

Returns an AsyncIterator that enables receiving the destination’s message history.

+

You must have read_message_history permissions to use this.

+

Examples

+

Usage

+
counter = 0
+async for message in channel.history(limit=200):
+    if message.author == client.user:
+        counter += 1
+
+
+

Flattening into a list:

+
messages = await channel.history(limit=123).flatten()
+# messages is now a list of Message...
+
+
+

All parameters are optional.

+
+
Parameters
+
    +
  • limit (Optional[int]) – The number of messages to retrieve. +If None, retrieves every message in the channel. Note, however, +that this would make it a slow operation.

  • +
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time. +When using this argument, the maximum limit is 101. Note that if the limit is an +even number then this will return at most limit + 1 messages.

  • +
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if +after is specified, otherwise False.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to get channel message history.

  • +
  • HTTPException – The request to get message history failed.

  • +
+
+
Yields
+

Message – The message with the message data parsed.

+
+
+
+ +
+
+async with typing()
+

Returns a context manager that allows you to type for an indefinite period of time.

+

This is useful for denoting long computations in your bot.

+
+

Note

+

This is both a regular context manager and an async context manager. +This means that both with and async with work with this.

+
+

Example Usage:

+
async with channel.typing():
+    # simulate something heavy
+    await asyncio.sleep(10)
+
+await channel.send('done!')
+
+
+
+ +
+
+property type
+

The channel’s Discord type.

+
+
Type
+

ChannelType

+
+
+
+ +
+
+permissions_for(obj, /)
+

Handles permission resolution for the Member +or Role.

+

This function takes into consideration the following cases:

+
    +
  • Guild owner

  • +
  • Guild roles

  • +
  • Channel overrides

  • +
  • Member overrides

  • +
+

If a Role is passed, then it checks the permissions +someone with that role would have, which is essentially:

+
    +
  • The default role permissions

  • +
  • The permissions of the role used as a parameter

  • +
  • The default role permission overwrites

  • +
  • The permission overwrites of the role used as a parameter

  • +
+
+

Changed in version 2.0: The object passed in can now be a role object.

+
+
+
Parameters
+

obj (Union[Member, Role]) – The object to resolve permissions for. This could be either +a member or a role. If it’s a role then member overwrites +are not computed.

+
+
Returns
+

The resolved permissions for the member or role.

+
+
Return type
+

Permissions

+
+
+
+ +
+
+property members
+

Returns all members that can see this channel.

+
+
Type
+

List[Member]

+
+
+
+ +
+
+property bots
+

Returns all bots that can see this channel.

+
+
Type
+

List[Member]

+
+
+
+ +
+
+property humans
+

Returns all human members that can see this channel.

+
+
Type
+

List[Member]

+
+
+
+ +
+
+property threads
+

Returns all the threads that you can see.

+
+

New in version 2.0.

+
+
+
Type
+

List[Thread]

+
+
+
+ +
+
+is_nsfw()
+

bool: Checks if the channel is NSFW.

+
+ +
+
+is_news()
+

bool: Checks if the channel is a news channel.

+
+ +
+
+property last_message
+

Fetches the last message from this channel in cache.

+

The message might not be valid or point to an existing message.

+
+

Reliable Fetching

+

For a slightly more reliable method of fetching the +last message, consider using either history() +or fetch_message() with the last_message_id +attribute.

+
+
+
Returns
+

The last message in this channel or None if not found.

+
+
Return type
+

Optional[Message]

+
+
+
+ +
+
+await edit(*, reason=None, **options)
+

This function is a coroutine.

+

Edits the channel.

+

You must have the manage_channels permission to +use this.

+
+

Changed in version 1.3: The overwrites keyword-only parameter was added.

+
+
+

Changed in version 1.4: The type keyword-only parameter was added.

+
+
+

Changed in version 2.0: Edits are no longer in-place, the newly edited channel is returned instead.

+
+
+
Parameters
+
    +
  • name (str) – The new channel name.

  • +
  • topic (str) – The new channel’s topic.

  • +
  • position (int) – The new channel’s position.

  • +
  • nsfw (bool) – To mark the channel as NSFW or not.

  • +
  • sync_permissions (bool) – Whether to sync permissions with the channel’s new or pre-existing +category. Defaults to False.

  • +
  • category (Optional[CategoryChannel]) – The new category for this channel. Can be None to remove the +category.

  • +
  • slowmode_delay (int) – Specifies the slowmode rate limit for user in this channel, in seconds. +A value of 0 disables slowmode. The maximum value possible is 21600.

  • +
  • type (ChannelType) – Change the type of this text channel. Currently, only conversion between +ChannelType.text and ChannelType.news is supported. This +is only available to guilds that contain NEWS in Guild.features.

  • +
  • reason (Optional[str]) – The reason for editing this channel. Shows up on the audit log.

  • +
  • overwrites (Mapping) – A Mapping of target (either a role or a member) to +PermissionOverwrite to apply to the channel.

  • +
  • default_auto_archive_duration (int) – The new default auto archive duration in minutes for threads created in this channel. +Must be one of 60, 1440, 4320, or 10080.

  • +
+
+
Raises
+
    +
  • InvalidArgument – If position is less than 0 or greater than the number of channels, or if + the permission overwrite information is not in proper form.

  • +
  • Forbidden – You do not have permissions to edit the channel.

  • +
  • HTTPException – Editing the channel failed.

  • +
+
+
Returns
+

The newly edited text channel. If the edit was only positional +then None is returned instead.

+
+
Return type
+

Optional[TextChannel]

+
+
+
+ +
+
+await clone(*, name=None, reason=None)
+

This function is a coroutine.

+

Clones this channel. This creates a channel with the same properties +as this channel.

+

You must have the manage_channels permission to +do this.

+
+

New in version 1.1.

+
+
+
Parameters
+
    +
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this +channel name.

  • +
  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to create this channel.

  • +
  • HTTPException – Creating the channel failed.

  • +
+
+
Returns
+

The channel that was created.

+
+
Return type
+

abc.GuildChannel

+
+
+
+ +
+
+await delete_messages(messages)
+

This function is a coroutine.

+

Deletes a list of messages. This is similar to Message.delete() +except it bulk deletes multiple messages.

+

As a special case, if the number of messages is 0, then nothing +is done. If the number of messages is 1 then single message +delete is done. If it’s more than two, then bulk delete is used.

+

You cannot bulk delete more than 100 messages or messages that +are older than 14 days old.

+

You must have the manage_messages permission to +use this.

+
+
Parameters
+

messages (Iterable[abc.Snowflake]) – An iterable of messages denoting which ones to bulk delete.

+
+
Raises
+
    +
  • ClientException – The number of messages to delete was more than 100.

  • +
  • Forbidden – You do not have proper permissions to delete the messages.

  • +
  • NotFound – If single delete, then the message was already deleted.

  • +
  • HTTPException – Deleting the messages failed.

  • +
+
+
+
+ +
+
+await purge(*, limit=100, check=..., before=None, after=None, around=None, oldest_first=False, bulk=True)
+

This function is a coroutine.

+

Purges a list of messages that meet the criteria given by the predicate +check. If a check is not provided then all messages are deleted +without discrimination.

+

You must have the manage_messages permission to +delete messages even if they are your own. +The read_message_history permission is +also needed to retrieve message history.

+

Examples

+

Deleting bot’s messages

+
def is_me(m):
+    return m.author == client.user
+
+deleted = await channel.purge(limit=100, check=is_me)
+await channel.send(f'Deleted {len(deleted)} message(s)')
+
+
+
+
Parameters
+
+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to do the actions required.

  • +
  • HTTPException – Purging the messages failed.

  • +
+
+
Returns
+

The list of messages that were deleted.

+
+
Return type
+

List[Message]

+
+
+
+ +
+
+await webhooks()
+

This function is a coroutine.

+

Gets the list of webhooks from this channel.

+

Requires manage_webhooks permissions.

+
+
Raises
+

Forbidden – You don’t have permissions to get the webhooks.

+
+
Returns
+

The webhooks for this channel.

+
+
Return type
+

List[Webhook]

+
+
+
+ +
+
+await create_webhook(*, name, avatar=None, reason=None)
+

This function is a coroutine.

+

Creates a webhook for this channel.

+

Requires manage_webhooks permissions.

+
+

Changed in version 1.1: Added the reason keyword-only parameter.

+
+
+
Parameters
+
    +
  • name (str) – The webhook’s name.

  • +
  • avatar (Optional[bytes]) – A bytes-like object representing the webhook’s default avatar. +This operates similarly to edit().

  • +
  • reason (Optional[str]) – The reason for creating this webhook. Shows up in the audit logs.

  • +
+
+
Raises
+
    +
  • HTTPException – Creating the webhook failed.

  • +
  • Forbidden – You do not have permissions to create a webhook.

  • +
+
+
Returns
+

The created webhook.

+
+
Return type
+

Webhook

+
+
+
+ +
+
+await follow(*, destination, reason=None)
+

Follows a channel using a webhook.

+

Only news channels can be followed.

+
+

Note

+

The webhook returned will not provide a token to do webhook +actions, as Discord does not provide it.

+
+
+

New in version 1.3.

+
+
+
Parameters
+
    +
  • destination (TextChannel) – The channel you would like to follow from.

  • +
  • reason (Optional[str]) –

    The reason for following the channel. Shows up on the destination guild’s audit log.

    +
    +

    New in version 1.4.

    +
    +

  • +
+
+
Raises
+
    +
  • HTTPException – Following the channel failed.

  • +
  • Forbidden – You do not have the permissions to create a webhook.

  • +
+
+
Returns
+

The created webhook.

+
+
Return type
+

Webhook

+
+
+
+ +
+
+get_partial_message(message_id, /)
+

Creates a PartialMessage from the message ID.

+

This is useful if you want to work with a message and only have its ID without +doing an unnecessary API call.

+
+

New in version 1.6.

+
+
+
Parameters
+

message_id (int) – The message ID to create a partial message for.

+
+
Returns
+

The partial message.

+
+
Return type
+

PartialMessage

+
+
+
+ +
+
+get_thread(thread_id, /)
+

Returns a thread with the given ID.

+
+

New in version 2.0.

+
+
+
Parameters
+

thread_id (int) – The ID to search for.

+
+
Returns
+

The returned thread or None if not found.

+
+
Return type
+

Optional[Thread]

+
+
+
+ +
+
+await create_thread(*, name, message=None, auto_archive_duration=..., type=None, reason=None)
+

This function is a coroutine.

+

Creates a thread in this text channel.

+

To create a public thread, you must have create_public_threads. +For a private thread, create_private_threads is needed instead.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • name (str) – The name of the thread.

  • +
  • message (Optional[abc.Snowflake]) – A snowflake representing the message to create the thread with. +If None is passed then a private thread is created. +Defaults to None.

  • +
  • auto_archive_duration (int) – The duration in minutes before a thread is automatically archived for inactivity. +If not provided, the channel’s default auto archive duration is used.

  • +
  • type (Optional[ChannelType]) – The type of thread to create. If a message is passed then this parameter +is ignored, as a thread created with a message is always a public thread. +By default this creates a private thread if this is None.

  • +
  • reason (str) – The reason for creating a new thread. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to create a thread.

  • +
  • HTTPException – Starting the thread failed.

  • +
+
+
Returns
+

The created thread

+
+
Return type
+

Thread

+
+
+
+ +
+
+archived_threads(*, private=False, joined=False, limit=50, before=None)
+

Returns an AsyncIterator that iterates over all archived threads in the guild.

+

You must have read_message_history to use this. If iterating over private threads +then manage_threads is also required.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • limit (Optional[bool]) – The number of threads to retrieve. +If None, retrieves every archived thread in the channel. Note, however, +that this would make it a slow operation.

  • +
  • before (Optional[Union[abc.Snowflake, datetime.datetime]]) – Retrieve archived channels before the given date or ID.

  • +
  • private (bool) – Whether to retrieve private archived threads.

  • +
  • joined (bool) – Whether to retrieve private archived threads that you’ve joined. +You cannot set joined to True and private to False.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to get archived threads.

  • +
  • HTTPException – The request to get the archived threads failed.

  • +
+
+
Yields
+

Thread – The archived threads.

+
+
+
+ +
+
+property category
+

The category this channel belongs to.

+

If there is no category then this is None.

+
+
Type
+

Optional[CategoryChannel]

+
+
+
+ +
+
+property changed_roles
+

Returns a list of roles that have been overridden from +their default values in the roles attribute.

+
+
Type
+

List[Role]

+
+
+
+ +
+
+await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_type=None, target_user=None, target_application_id=None)
+

This function is a coroutine.

+

Creates an instant invite from a text or voice channel.

+

You must have the create_instant_invite permission to +do this.

+
+
Parameters
+
    +
  • max_age (int) – How long the invite should last in seconds. If it’s 0 then the invite +doesn’t expire. Defaults to 0.

  • +
  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there +are unlimited uses. Defaults to 0.

  • +
  • temporary (bool) – Denotes that the invite grants temporary membership +(i.e. they get kicked after they disconnect). Defaults to False.

  • +
  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. +If this is set to False then it will return a previously created +invite.

  • +
  • reason (Optional[str]) – The reason for creating this invite. Shows up on the audit log.

  • +
  • target_type (Optional[InviteTarget]) –

    The type of target for the voice channel invite, if any.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • target_user (Optional[User]) –

    The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • target_application_id:

    Optional[int]: The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • HTTPException – Invite creation failed.

  • +
  • NotFound – The channel that was passed is a category or an invalid channel.

  • +
+
+
Returns
+

The invite that was created.

+
+
Return type
+

Invite

+
+
+
+ +
+
+property created_at
+

Returns the channel’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+await delete(*, reason=None)
+

This function is a coroutine.

+

Deletes the channel.

+

You must have manage_channels permission to use this.

+
+
Parameters
+

reason (Optional[str]) – The reason for deleting this channel. +Shows up on the audit log.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to delete the channel.

  • +
  • NotFound – The channel was not found or was already deleted.

  • +
  • HTTPException – Deleting the channel failed.

  • +
+
+
+
+ +
+
+await fetch_message(id, /)
+

This function is a coroutine.

+

Retrieves a single Message from the destination.

+
+
Parameters
+

id (int) – The message ID to look for.

+
+
Raises
+
    +
  • NotFound – The specified message was not found.

  • +
  • Forbidden – You do not have the permissions required to get a message.

  • +
  • HTTPException – Retrieving the message failed.

  • +
+
+
Returns
+

The message asked for.

+
+
Return type
+

Message

+
+
+
+ +
+
+await invites()
+

This function is a coroutine.

+

Returns a list of all active instant invites from this channel.

+

You must have manage_channels to get this information.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to get the information.

  • +
  • HTTPException – An error occurred while fetching the information.

  • +
+
+
Returns
+

The list of invites that are currently active.

+
+
Return type
+

List[Invite]

+
+
+
+ +
+
+property mention
+

The string that allows you to mention the channel.

+
+
Type
+

str

+
+
+
+ +
+
+await move(**kwargs)
+

This function is a coroutine.

+

A rich interface to help move a channel relative to other channels.

+

If exact position movement is required, edit should be used instead.

+

You must have the manage_channels permission to +do this.

+
+

Note

+

Voice channels will always be sorted below text channels. +This is a Discord limitation.

+
+
+

New in version 1.7.

+
+
+
Parameters
+
    +
  • beginning (bool) – Whether to move the channel to the beginning of the +channel list (or category if given). +This is mutually exclusive with end, before, and after.

  • +
  • end (bool) – Whether to move the channel to the end of the +channel list (or category if given). +This is mutually exclusive with beginning, before, and after.

  • +
  • before (Snowflake) – The channel that should be before our current channel. +This is mutually exclusive with beginning, end, and after.

  • +
  • after (Snowflake) – The channel that should be after our current channel. +This is mutually exclusive with beginning, end, and before.

  • +
  • offset (int) – The number of channels to offset the move by. For example, +an offset of 2 with beginning=True would move +it 2 after the beginning. A positive number moves it below +while a negative number moves it above. Note that this +number is relative and computed after the beginning, +end, before, and after parameters.

  • +
  • category (Optional[Snowflake]) – The category to move this channel under. +If None is given then it moves it out of the category. +This parameter is ignored if moving a category channel.

  • +
  • sync_permissions (bool) – Whether to sync the permissions with the category (if given).

  • +
  • reason (str) – The reason for the move.

  • +
+
+
Raises
+
    +
  • InvalidArgument – An invalid position was given or a bad mix of arguments were passed.

  • +
  • Forbidden – You do not have permissions to move the channel.

  • +
  • HTTPException – Moving the channel failed.

  • +
+
+
+
+ +
+
+property overwrites
+

Returns all of the channel’s overwrites.

+

This is returned as a dictionary where the key contains the target which +can be either a Role or a Member and the value is the +overwrite as a PermissionOverwrite.

+
+
Returns
+

The channel’s permission overwrites.

+
+
Return type
+

Dict[Union[Role, Member], PermissionOverwrite]

+
+
+
+ +
+
+overwrites_for(obj)
+

Returns the channel-specific overwrites for a member or a role.

+
+
Parameters
+

obj (Union[Role, User]) – The role or user denoting +whose overwrite to get.

+
+
Returns
+

The permission overwrites for this object.

+
+
Return type
+

PermissionOverwrite

+
+
+
+ +
+
+property permissions_synced
+

Whether or not the permissions for this channel are synced with the +category it belongs to.

+

If there is no category then this is False.

+
+

New in version 1.3.

+
+
+
Type
+

bool

+
+
+
+ +
+
+await pins()
+

This function is a coroutine.

+

Retrieves all messages that are currently pinned in the channel.

+
+

Note

+

Due to a limitation with the Discord API, the Message +objects returned by this method do not contain complete +Message.reactions data.

+
+
+
Raises
+

HTTPException – Retrieving the pinned messages failed.

+
+
Returns
+

The messages that are currently pinned.

+
+
Return type
+

List[Message]

+
+
+
+ +
+
+await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
+

This function is a coroutine.

+

Sends a message to the destination with the content given.

+

The content must be a type that can convert to a string through str(content). +If the content is set to None (the default), then the embed parameter must +be provided.

+

To upload a single file, the file parameter should be used with a +single File object. To upload multiple files, the files +parameter should be used with a list of File objects. +Specifying both parameters will lead to an exception.

+

To upload a single embed, the embed parameter should be used with a +single Embed object. To upload multiple embeds, the embeds +parameter should be used with a list of Embed objects. +Specifying both parameters will lead to an exception.

+
+
Parameters
+
    +
  • content (Optional[str]) – The content of the message to send.

  • +
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • +
  • embed (Embed) – The rich embed for the content.

  • +
  • file (File) – The file to upload.

  • +
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • +
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, +then the message will have a nonce with this value.

  • +
  • delete_after (float) – If provided, the number of seconds to wait in the background +before deleting the message we just sent. If the deletion fails, +then it is silently ignored.

  • +
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is +passed, then the object is merged with allowed_mentions. +The merging behaviour only overrides attributes that have been explicitly passed +to the object, otherwise it uses the attributes set in allowed_mentions. +If no object is passed at all then the defaults given by allowed_mentions +are used instead.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using +to_reference() or passed directly as a Message. You can control +whether this mentions the author of the referenced message using the replied_user +attribute of allowed_mentions or by setting mention_author.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • +
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
+
+
Returns
+

The message that was sent.

+
+
Return type
+

Message

+
+
+
+ +
+
+await set_permissions(target, *, overwrite=see - below, reason=None, **permissions)
+

This function is a coroutine.

+

Sets the channel specific permission overwrites for a target in the +channel.

+

The target parameter should either be a Member or a +Role that belongs to guild.

+

The overwrite parameter, if given, must either be None or +PermissionOverwrite. For convenience, you can pass in +keyword arguments denoting Permissions attributes. If this is +done, then you cannot mix the keyword arguments with the overwrite +parameter.

+

If the overwrite parameter is None, then the permission +overwrites are deleted.

+

You must have the manage_roles permission to use this.

+
+

Note

+

This method replaces the old overwrites with the ones given.

+
+

Examples

+

Setting allow and deny:

+
await message.channel.set_permissions(message.author, read_messages=True,
+                                                      send_messages=False)
+
+
+

Deleting overwrites

+
await channel.set_permissions(member, overwrite=None)
+
+
+

Using PermissionOverwrite

+
overwrite = discord.PermissionOverwrite()
+overwrite.send_messages = False
+overwrite.read_messages = True
+await channel.set_permissions(member, overwrite=overwrite)
+
+
+
+
Parameters
+
    +
  • target (Union[Member, Role]) – The member or role to overwrite permissions for.

  • +
  • overwrite (Optional[PermissionOverwrite]) – The permissions to allow and deny to the target, or None to +delete the overwrite.

  • +
  • **permissions – A keyword argument list of permissions to set for ease of use. +Cannot be mixed with overwrite.

  • +
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to edit channel specific permissions.

  • +
  • HTTPException – Editing channel specific permissions failed.

  • +
  • NotFound – The role or member being edited is not part of the guild.

  • +
  • InvalidArgument – The overwrite parameter invalid or the target type was not + Role or Member.

  • +
+
+
+
+ +
+
+await trigger_typing()
+

This function is a coroutine.

+

Triggers a typing indicator to the destination.

+

Typing indicator will go away after 10 seconds, or after a message is sent.

+
+ +
+ +
+
+

Thread

+
+
+class discord.Thread
+

Represents a Discord thread.

+
+
+
+x == y
+

Checks if two threads are equal.

+
+ +
+
+x != y
+

Checks if two threads are not equal.

+
+ +
+
+hash(x)
+

Returns the thread’s hash.

+
+ +
+
+int(x)
+

Returns the thread’s ID.

+
+ +
+
+str(x)
+

Returns the thread’s name.

+
+ +
+
+

New in version 2.0.

+
+
+
+name
+

The thread name.

+
+
Type
+

str

+
+
+
+ +
+
+guild
+

The guild the thread belongs to.

+
+
Type
+

Guild

+
+
+
+ +
+
+id
+

The thread ID.

+
+
Type
+

int

+
+
+
+ +
+
+parent_id
+

The parent TextChannel ID this thread belongs to.

+
+
Type
+

int

+
+
+
+ +
+
+owner_id
+

The user’s ID that created this thread.

+
+
Type
+

int

+
+
+
+ +
+
+last_message_id
+

The last message ID of the message sent to this thread. It may +not point to an existing or valid message.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+slowmode_delay
+

The number of seconds a member must wait between sending messages +in this thread. A value of 0 denotes that it is disabled. +Bots and users with manage_channels or +manage_messages bypass slowmode.

+
+
Type
+

int

+
+
+
+ +
+
+message_count
+

An approximate number of messages in this thread. This caps at 50.

+
+
Type
+

int

+
+
+
+ +
+
+member_count
+

An approximate number of members in this thread. This caps at 50.

+
+
Type
+

int

+
+
+
+ +
+
+me
+

A thread member representing yourself, if you’ve joined the thread. +This could not be available.

+
+
Type
+

Optional[ThreadMember]

+
+
+
+ +
+
+archived
+

Whether the thread is archived.

+
+
Type
+

bool

+
+
+
+ +
+
+locked
+

Whether the thread is locked.

+
+
Type
+

bool

+
+
+
+ +
+
+invitable
+

Whether non-moderators can add other non-moderators to this thread. +This is always True for public threads.

+
+
Type
+

bool

+
+
+
+ +
+
+archiver_id
+

The user’s ID that archived this thread.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+auto_archive_duration
+

The duration in minutes until the thread is automatically archived due to inactivity. +Usually a value of 60, 1440, 4320 and 10080.

+
+
Type
+

int

+
+
+
+ +
+
+archive_timestamp
+

An aware timestamp of when the thread’s archived status was last updated in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
+

Returns an AsyncIterator that enables receiving the destination’s message history.

+

You must have read_message_history permissions to use this.

+

Examples

+

Usage

+
counter = 0
+async for message in channel.history(limit=200):
+    if message.author == client.user:
+        counter += 1
+
+
+

Flattening into a list:

+
messages = await channel.history(limit=123).flatten()
+# messages is now a list of Message...
+
+
+

All parameters are optional.

+
+
Parameters
+
    +
  • limit (Optional[int]) – The number of messages to retrieve. +If None, retrieves every message in the channel. Note, however, +that this would make it a slow operation.

  • +
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time. +When using this argument, the maximum limit is 101. Note that if the limit is an +even number then this will return at most limit + 1 messages.

  • +
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if +after is specified, otherwise False.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to get channel message history.

  • +
  • HTTPException – The request to get message history failed.

  • +
+
+
Yields
+

Message – The message with the message data parsed.

+
+
+
+ +
+
+async with typing()
+

Returns a context manager that allows you to type for an indefinite period of time.

+

This is useful for denoting long computations in your bot.

+
+

Note

+

This is both a regular context manager and an async context manager. +This means that both with and async with work with this.

+
+

Example Usage:

+
async with channel.typing():
+    # simulate something heavy
+    await asyncio.sleep(10)
+
+await channel.send('done!')
+
+
+
+ +
+
+property type
+

The channel’s Discord type.

+
+
Type
+

ChannelType

+
+
+
+ +
+
+property parent
+

The parent channel this thread belongs to.

+
+
Type
+

Optional[TextChannel]

+
+
+
+ +
+
+property owner
+

The member this thread belongs to.

+
+
Type
+

Optional[Member]

+
+
+
+ +
+
+property mention
+

The string that allows you to mention the thread.

+
+
Type
+

str

+
+
+
+ +
+
+property members
+

A list of thread members in this thread.

+

This requires Intents.members to be properly filled. Most of the time however, +this data is not provided by the gateway and a call to fetch_members() is +needed.

+
+
Type
+

List[ThreadMember]

+
+
+
+ +
+
+property last_message
+

Fetches the last message from this channel in cache.

+

The message might not be valid or point to an existing message.

+
+

Reliable Fetching

+

For a slightly more reliable method of fetching the +last message, consider using either history() +or fetch_message() with the last_message_id +attribute.

+
+
+
Returns
+

The last message in this channel or None if not found.

+
+
Return type
+

Optional[Message]

+
+
+
+ +
+
+property category
+

The category channel the parent channel belongs to, if applicable.

+
+
Raises
+

ClientException – The parent channel was not cached and returned None.

+
+
Returns
+

The parent channel’s category.

+
+
Return type
+

Optional[CategoryChannel]

+
+
+
+ +
+
+property category_id
+

The category channel ID the parent channel belongs to, if applicable.

+
+
Raises
+

ClientException – The parent channel was not cached and returned None.

+
+
Returns
+

The parent channel’s category ID.

+
+
Return type
+

Optional[int]

+
+
+
+ +
+
+is_private()
+

bool: Whether the thread is a private thread.

+

A private thread is only viewable by those that have been explicitly +invited or have manage_threads.

+
+ +
+
+is_news()
+

bool: Whether the thread is a news thread.

+

A news thread is a thread that has a parent that is a news channel, +i.e. TextChannel.is_news() is True.

+
+ +
+
+is_nsfw()
+

bool: Whether the thread is NSFW or not.

+

An NSFW thread is a thread that has a parent that is an NSFW channel, +i.e. TextChannel.is_nsfw() is True.

+
+ +
+
+permissions_for(obj, /)
+

Handles permission resolution for the Member +or Role.

+

Since threads do not have their own permissions, they inherit them +from the parent channel. This is a convenience method for +calling permissions_for() on the +parent channel.

+
+
Parameters
+

obj (Union[Member, Role]) – The object to resolve permissions for. This could be either +a member or a role. If it’s a role then member overwrites +are not computed.

+
+
Raises
+

ClientException – The parent channel was not cached and returned None

+
+
Returns
+

The resolved permissions for the member or role.

+
+
Return type
+

Permissions

+
+
+
+ +
+
+await delete_messages(messages)
+

This function is a coroutine.

+

Deletes a list of messages. This is similar to Message.delete() +except it bulk deletes multiple messages.

+

As a special case, if the number of messages is 0, then nothing +is done. If the number of messages is 1 then single message +delete is done. If it’s more than two, then bulk delete is used.

+

You cannot bulk delete more than 100 messages or messages that +are older than 14 days old.

+

You must have the manage_messages permission to +use this.

+

Usable only by bot accounts.

+
+
Parameters
+

messages (Iterable[abc.Snowflake]) – An iterable of messages denoting which ones to bulk delete.

+
+
Raises
+
    +
  • ClientException – The number of messages to delete was more than 100.

  • +
  • Forbidden – You do not have proper permissions to delete the messages or + you’re not using a bot account.

  • +
  • NotFound – If single delete, then the message was already deleted.

  • +
  • HTTPException – Deleting the messages failed.

  • +
+
+
+
+ +
+
+await purge(*, limit=100, check=..., before=None, after=None, around=None, oldest_first=False, bulk=True)
+

This function is a coroutine.

+

Purges a list of messages that meet the criteria given by the predicate +check. If a check is not provided then all messages are deleted +without discrimination.

+

You must have the manage_messages permission to +delete messages even if they are your own (unless you are a user +account). The read_message_history permission is +also needed to retrieve message history.

+

Examples

+

Deleting bot’s messages

+
def is_me(m):
+    return m.author == client.user
+
+deleted = await thread.purge(limit=100, check=is_me)
+await thread.send(f'Deleted {len(deleted)} message(s)')
+
+
+
+
Parameters
+
+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to do the actions required.

  • +
  • HTTPException – Purging the messages failed.

  • +
+
+
Returns
+

The list of messages that were deleted.

+
+
Return type
+

List[Message]

+
+
+
+ +
+
+await edit(*, name=..., archived=..., locked=..., invitable=..., slowmode_delay=..., auto_archive_duration=...)
+

This function is a coroutine.

+

Edits the thread.

+

Editing the thread requires Permissions.manage_threads. The thread +creator can also edit name, archived or auto_archive_duration. +Note that if the thread is locked then only those with Permissions.manage_threads +can unarchive a thread.

+

The thread must be unarchived to be edited.

+
+
Parameters
+
    +
  • name (str) – The new name of the thread.

  • +
  • archived (bool) – Whether to archive the thread or not.

  • +
  • locked (bool) – Whether to lock the thread or not.

  • +
  • invitable (bool) – Whether non-moderators can add other non-moderators to this thread. +Only available for private threads.

  • +
  • auto_archive_duration (int) – The new duration in minutes before a thread is automatically archived for inactivity. +Must be one of 60, 1440, 4320, or 10080.

  • +
  • slowmode_delay (int) – Specifies the slowmode rate limit for user in this thread, in seconds. +A value of 0 disables slowmode. The maximum value possible is 21600.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to edit the thread.

  • +
  • HTTPException – Editing the thread failed.

  • +
+
+
Returns
+

The newly edited thread.

+
+
Return type
+

Thread

+
+
+
+ +
+
+await join()
+

This function is a coroutine.

+

Joins this thread.

+

You must have send_messages_in_threads to join a thread. +If the thread is private, manage_threads is also needed.

+
+
Raises
+
    +
  • Forbidden – You do not have permissions to join the thread.

  • +
  • HTTPException – Joining the thread failed.

  • +
+
+
+
+ +
+
+await leave()
+

This function is a coroutine.

+

Leaves this thread.

+
+
Raises
+

HTTPException – Leaving the thread failed.

+
+
+
+ +
+
+await add_user(user)
+

This function is a coroutine.

+

Adds a user to this thread.

+

You must have send_messages and use_threads +to add a user to a public thread. If the thread is private then send_messages +and either use_private_threads or manage_messages +is required to add a user to the thread.

+
+
Parameters
+

user (abc.Snowflake) – The user to add to the thread.

+
+
Raises
+
    +
  • Forbidden – You do not have permissions to add the user to the thread.

  • +
  • HTTPException – Adding the user to the thread failed.

  • +
+
+
+
+ +
+
+await remove_user(user)
+

This function is a coroutine.

+

Removes a user from this thread.

+

You must have manage_threads or be the creator of the thread to remove a user.

+
+
Parameters
+

user (abc.Snowflake) – The user to add to the thread.

+
+
Raises
+
    +
  • Forbidden – You do not have permissions to remove the user from the thread.

  • +
  • HTTPException – Removing the user from the thread failed.

  • +
+
+
+
+ +
+
+await fetch_members()
+

This function is a coroutine.

+

Retrieves all ThreadMember that are in this thread.

+

This requires Intents.members to get information about members +other than yourself.

+
+
Raises
+

HTTPException – Retrieving the members failed.

+
+
Returns
+

All thread members in the thread.

+
+
Return type
+

List[ThreadMember]

+
+
+
+ +
+
+await delete()
+

This function is a coroutine.

+

Deletes this thread.

+

You must have manage_threads to delete threads.

+
+
Raises
+
    +
  • Forbidden – You do not have permissions to delete this thread.

  • +
  • HTTPException – Deleting the thread failed.

  • +
+
+
+
+ +
+
+get_partial_message(message_id, /)
+

Creates a PartialMessage from the message ID.

+

This is useful if you want to work with a message and only have its ID without +doing an unnecessary API call.

+
+

New in version 2.0.

+
+
+
Parameters
+

message_id (int) – The message ID to create a partial message for.

+
+
Returns
+

The partial message.

+
+
Return type
+

PartialMessage

+
+
+
+ +
+
+await fetch_message(id, /)
+

This function is a coroutine.

+

Retrieves a single Message from the destination.

+
+
Parameters
+

id (int) – The message ID to look for.

+
+
Raises
+
    +
  • NotFound – The specified message was not found.

  • +
  • Forbidden – You do not have the permissions required to get a message.

  • +
  • HTTPException – Retrieving the message failed.

  • +
+
+
Returns
+

The message asked for.

+
+
Return type
+

Message

+
+
+
+ +
+
+await pins()
+

This function is a coroutine.

+

Retrieves all messages that are currently pinned in the channel.

+
+

Note

+

Due to a limitation with the Discord API, the Message +objects returned by this method do not contain complete +Message.reactions data.

+
+
+
Raises
+

HTTPException – Retrieving the pinned messages failed.

+
+
Returns
+

The messages that are currently pinned.

+
+
Return type
+

List[Message]

+
+
+
+ +
+
+await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
+

This function is a coroutine.

+

Sends a message to the destination with the content given.

+

The content must be a type that can convert to a string through str(content). +If the content is set to None (the default), then the embed parameter must +be provided.

+

To upload a single file, the file parameter should be used with a +single File object. To upload multiple files, the files +parameter should be used with a list of File objects. +Specifying both parameters will lead to an exception.

+

To upload a single embed, the embed parameter should be used with a +single Embed object. To upload multiple embeds, the embeds +parameter should be used with a list of Embed objects. +Specifying both parameters will lead to an exception.

+
+
Parameters
+
    +
  • content (Optional[str]) – The content of the message to send.

  • +
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • +
  • embed (Embed) – The rich embed for the content.

  • +
  • file (File) – The file to upload.

  • +
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • +
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, +then the message will have a nonce with this value.

  • +
  • delete_after (float) – If provided, the number of seconds to wait in the background +before deleting the message we just sent. If the deletion fails, +then it is silently ignored.

  • +
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is +passed, then the object is merged with allowed_mentions. +The merging behaviour only overrides attributes that have been explicitly passed +to the object, otherwise it uses the attributes set in allowed_mentions. +If no object is passed at all then the defaults given by allowed_mentions +are used instead.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using +to_reference() or passed directly as a Message. You can control +whether this mentions the author of the referenced message using the replied_user +attribute of allowed_mentions or by setting mention_author.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • +
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
+
+
Returns
+

The message that was sent.

+
+
Return type
+

Message

+
+
+
+ +
+
+await trigger_typing()
+

This function is a coroutine.

+

Triggers a typing indicator to the destination.

+

Typing indicator will go away after 10 seconds, or after a message is sent.

+
+ +
+ +
+
+

ThreadMember

+
+ +Attributes +
+ +Methods +
+
+class discord.ThreadMember
+

Represents a Discord thread member.

+
+
+
+x == y
+

Checks if two thread members are equal.

+
+ +
+
+x != y
+

Checks if two thread members are not equal.

+
+ +
+
+hash(x)
+

Returns the thread member’s hash.

+
+ +
+
+int(x)
+

Returns the thread member’s ID.

+
+ +
+
+str(x)
+

Returns the thread member’s name.

+
+ +
+
+

New in version 2.0.

+
+
+
+id
+

The thread member’s ID.

+
+
Type
+

int

+
+
+
+ +
+
+thread_id
+

The thread’s ID.

+
+
Type
+

int

+
+
+
+ +
+
+joined_at
+

The time the member joined the thread in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+property thread
+

The thread this member belongs to.

+
+
Type
+

Thread

+
+
+
+ +
+
+await fetch_member()
+

This function is a coroutine.

+

Retrieves a Member from the ThreadMember object.

+
+

Note

+

This method is an API call. If you have Intents.members and member cache enabled, consider get_member() instead.

+
+
+
Raises
+
+
+
Returns
+

The member.

+
+
Return type
+

Member

+
+
+
+ +
+
+get_member()
+

Get the Member from cache for the ThreadMember object.

+
+
Returns
+

The member or None if not found.

+
+
Return type
+

Optional[Member]

+
+
+
+ +
+ +
+
+

StoreChannel

+
+ +Methods +
+
+class discord.StoreChannel
+

Represents a Discord guild store channel.

+
+
+
+x == y
+

Checks if two channels are equal.

+
+ +
+
+x != y
+

Checks if two channels are not equal.

+
+ +
+
+hash(x)
+

Returns the channel’s hash.

+
+ +
+
+str(x)
+

Returns the channel’s name.

+
+ +
+
+int(x)
+

Returns the channel’s ID.

+
+ +
+
+
+name
+

The channel name.

+
+
Type
+

str

+
+
+
+ +
+
+guild
+

The guild the channel belongs to.

+
+
Type
+

Guild

+
+
+
+ +
+
+id
+

The channel ID.

+
+
Type
+

int

+
+
+
+ +
+
+category_id
+

The category channel ID this channel belongs to.

+
+
Type
+

int

+
+
+
+ +
+
+position
+

The position in the channel list. This is a number that starts at 0. e.g. the +top channel is position 0.

+
+
Type
+

int

+
+
+
+ +
+
+nsfw
+

If the channel is marked as “not safe for work”.

+
+

Note

+

To check if the channel or the guild of that channel are marked as NSFW, consider is_nsfw() instead.

+
+
+
Type
+

bool

+
+
+
+ +
+
+property type
+

The channel’s Discord type.

+
+
Type
+

ChannelType

+
+
+
+ +
+
+permissions_for(obj, /)
+

Handles permission resolution for the Member +or Role.

+

This function takes into consideration the following cases:

+
    +
  • Guild owner

  • +
  • Guild roles

  • +
  • Channel overrides

  • +
  • Member overrides

  • +
+

If a Role is passed, then it checks the permissions +someone with that role would have, which is essentially:

+
    +
  • The default role permissions

  • +
  • The permissions of the role used as a parameter

  • +
  • The default role permission overwrites

  • +
  • The permission overwrites of the role used as a parameter

  • +
+
+

Changed in version 2.0: The object passed in can now be a role object.

+
+
+
Parameters
+

obj (Union[Member, Role]) – The object to resolve permissions for. This could be either +a member or a role. If it’s a role then member overwrites +are not computed.

+
+
Returns
+

The resolved permissions for the member or role.

+
+
Return type
+

Permissions

+
+
+
+ +
+
+is_nsfw()
+

bool: Checks if the channel is NSFW.

+
+ +
+
+await clone(*, name=None, reason=None)
+

This function is a coroutine.

+

Clones this channel. This creates a channel with the same properties +as this channel.

+

You must have the manage_channels permission to +do this.

+
+

New in version 1.1.

+
+
+
Parameters
+
    +
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this +channel name.

  • +
  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to create this channel.

  • +
  • HTTPException – Creating the channel failed.

  • +
+
+
Returns
+

The channel that was created.

+
+
Return type
+

abc.GuildChannel

+
+
+
+ +
+
+await edit(*, reason=None, **options)
+

This function is a coroutine.

+

Edits the channel.

+

You must have the manage_channels permission to +use this.

+
+

Changed in version 2.0: Edits are no longer in-place, the newly edited channel is returned instead.

+
+
+
Parameters
+
    +
  • name (str) – The new channel name.

  • +
  • position (int) – The new channel’s position.

  • +
  • nsfw (bool) – To mark the channel as NSFW or not.

  • +
  • sync_permissions (bool) – Whether to sync permissions with the channel’s new or pre-existing +category. Defaults to False.

  • +
  • category (Optional[CategoryChannel]) – The new category for this channel. Can be None to remove the +category.

  • +
  • reason (Optional[str]) – The reason for editing this channel. Shows up on the audit log.

  • +
  • overwrites (Mapping) –

    A Mapping of target (either a role or a member) to +PermissionOverwrite to apply to the channel.

    +
    +

    New in version 1.3.

    +
    +

  • +
+
+
Raises
+
    +
  • InvalidArgument – If position is less than 0 or greater than the number of channels, or if + the permission overwrite information is not in proper form.

  • +
  • Forbidden – You do not have permissions to edit the channel.

  • +
  • HTTPException – Editing the channel failed.

  • +
+
+
Returns
+

The newly edited store channel. If the edit was only positional +then None is returned instead.

+
+
Return type
+

Optional[StoreChannel]

+
+
+
+ +
+
+property category
+

The category this channel belongs to.

+

If there is no category then this is None.

+
+
Type
+

Optional[CategoryChannel]

+
+
+
+ +
+
+property changed_roles
+

Returns a list of roles that have been overridden from +their default values in the roles attribute.

+
+
Type
+

List[Role]

+
+
+
+ +
+
+await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_type=None, target_user=None, target_application_id=None)
+

This function is a coroutine.

+

Creates an instant invite from a text or voice channel.

+

You must have the create_instant_invite permission to +do this.

+
+
Parameters
+
    +
  • max_age (int) – How long the invite should last in seconds. If it’s 0 then the invite +doesn’t expire. Defaults to 0.

  • +
  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there +are unlimited uses. Defaults to 0.

  • +
  • temporary (bool) – Denotes that the invite grants temporary membership +(i.e. they get kicked after they disconnect). Defaults to False.

  • +
  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. +If this is set to False then it will return a previously created +invite.

  • +
  • reason (Optional[str]) – The reason for creating this invite. Shows up on the audit log.

  • +
  • target_type (Optional[InviteTarget]) –

    The type of target for the voice channel invite, if any.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • target_user (Optional[User]) –

    The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • target_application_id:

    Optional[int]: The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • HTTPException – Invite creation failed.

  • +
  • NotFound – The channel that was passed is a category or an invalid channel.

  • +
+
+
Returns
+

The invite that was created.

+
+
Return type
+

Invite

+
+
+
+ +
+
+property created_at
+

Returns the channel’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+await delete(*, reason=None)
+

This function is a coroutine.

+

Deletes the channel.

+

You must have manage_channels permission to use this.

+
+
Parameters
+

reason (Optional[str]) – The reason for deleting this channel. +Shows up on the audit log.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to delete the channel.

  • +
  • NotFound – The channel was not found or was already deleted.

  • +
  • HTTPException – Deleting the channel failed.

  • +
+
+
+
+ +
+
+await invites()
+

This function is a coroutine.

+

Returns a list of all active instant invites from this channel.

+

You must have manage_channels to get this information.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to get the information.

  • +
  • HTTPException – An error occurred while fetching the information.

  • +
+
+
Returns
+

The list of invites that are currently active.

+
+
Return type
+

List[Invite]

+
+
+
+ +
+
+property mention
+

The string that allows you to mention the channel.

+
+
Type
+

str

+
+
+
+ +
+
+await move(**kwargs)
+

This function is a coroutine.

+

A rich interface to help move a channel relative to other channels.

+

If exact position movement is required, edit should be used instead.

+

You must have the manage_channels permission to +do this.

+
+

Note

+

Voice channels will always be sorted below text channels. +This is a Discord limitation.

+
+
+

New in version 1.7.

+
+
+
Parameters
+
    +
  • beginning (bool) – Whether to move the channel to the beginning of the +channel list (or category if given). +This is mutually exclusive with end, before, and after.

  • +
  • end (bool) – Whether to move the channel to the end of the +channel list (or category if given). +This is mutually exclusive with beginning, before, and after.

  • +
  • before (Snowflake) – The channel that should be before our current channel. +This is mutually exclusive with beginning, end, and after.

  • +
  • after (Snowflake) – The channel that should be after our current channel. +This is mutually exclusive with beginning, end, and before.

  • +
  • offset (int) – The number of channels to offset the move by. For example, +an offset of 2 with beginning=True would move +it 2 after the beginning. A positive number moves it below +while a negative number moves it above. Note that this +number is relative and computed after the beginning, +end, before, and after parameters.

  • +
  • category (Optional[Snowflake]) – The category to move this channel under. +If None is given then it moves it out of the category. +This parameter is ignored if moving a category channel.

  • +
  • sync_permissions (bool) – Whether to sync the permissions with the category (if given).

  • +
  • reason (str) – The reason for the move.

  • +
+
+
Raises
+
    +
  • InvalidArgument – An invalid position was given or a bad mix of arguments were passed.

  • +
  • Forbidden – You do not have permissions to move the channel.

  • +
  • HTTPException – Moving the channel failed.

  • +
+
+
+
+ +
+
+property overwrites
+

Returns all of the channel’s overwrites.

+

This is returned as a dictionary where the key contains the target which +can be either a Role or a Member and the value is the +overwrite as a PermissionOverwrite.

+
+
Returns
+

The channel’s permission overwrites.

+
+
Return type
+

Dict[Union[Role, Member], PermissionOverwrite]

+
+
+
+ +
+
+overwrites_for(obj)
+

Returns the channel-specific overwrites for a member or a role.

+
+
Parameters
+

obj (Union[Role, User]) – The role or user denoting +whose overwrite to get.

+
+
Returns
+

The permission overwrites for this object.

+
+
Return type
+

PermissionOverwrite

+
+
+
+ +
+
+property permissions_synced
+

Whether or not the permissions for this channel are synced with the +category it belongs to.

+

If there is no category then this is False.

+
+

New in version 1.3.

+
+
+
Type
+

bool

+
+
+
+ +
+
+await set_permissions(target, *, overwrite=see - below, reason=None, **permissions)
+

This function is a coroutine.

+

Sets the channel specific permission overwrites for a target in the +channel.

+

The target parameter should either be a Member or a +Role that belongs to guild.

+

The overwrite parameter, if given, must either be None or +PermissionOverwrite. For convenience, you can pass in +keyword arguments denoting Permissions attributes. If this is +done, then you cannot mix the keyword arguments with the overwrite +parameter.

+

If the overwrite parameter is None, then the permission +overwrites are deleted.

+

You must have the manage_roles permission to use this.

+
+

Note

+

This method replaces the old overwrites with the ones given.

+
+

Examples

+

Setting allow and deny:

+
await message.channel.set_permissions(message.author, read_messages=True,
+                                                      send_messages=False)
+
+
+

Deleting overwrites

+
await channel.set_permissions(member, overwrite=None)
+
+
+

Using PermissionOverwrite

+
overwrite = discord.PermissionOverwrite()
+overwrite.send_messages = False
+overwrite.read_messages = True
+await channel.set_permissions(member, overwrite=overwrite)
+
+
+
+
Parameters
+
    +
  • target (Union[Member, Role]) – The member or role to overwrite permissions for.

  • +
  • overwrite (Optional[PermissionOverwrite]) – The permissions to allow and deny to the target, or None to +delete the overwrite.

  • +
  • **permissions – A keyword argument list of permissions to set for ease of use. +Cannot be mixed with overwrite.

  • +
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to edit channel specific permissions.

  • +
  • HTTPException – Editing channel specific permissions failed.

  • +
  • NotFound – The role or member being edited is not part of the guild.

  • +
  • InvalidArgument – The overwrite parameter invalid or the target type was not + Role or Member.

  • +
+
+
+
+ +
+ +
+
+

VoiceChannel

+
+
+class discord.VoiceChannel
+

Represents a Discord guild voice channel.

+
+
+
+x == y
+

Checks if two channels are equal.

+
+ +
+
+x != y
+

Checks if two channels are not equal.

+
+ +
+
+hash(x)
+

Returns the channel’s hash.

+
+ +
+
+str(x)
+

Returns the channel’s name.

+
+ +
+
+
+name
+

The channel name.

+
+
Type
+

str

+
+
+
+ +
+
+guild
+

The guild the channel belongs to.

+
+
Type
+

Guild

+
+
+
+ +
+
+id
+

The channel ID.

+
+
Type
+

int

+
+
+
+ +
+
+category_id
+

The category channel ID this channel belongs to, if applicable.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+position
+

The position in the channel list. This is a number that starts at 0. e.g. the +top channel is position 0.

+
+
Type
+

int

+
+
+
+ +
+
+bitrate
+

The channel’s preferred audio bitrate in bits per second.

+
+
Type
+

int

+
+
+
+ +
+
+user_limit
+

The channel’s limit for number of members that can be in a voice channel.

+
+
Type
+

int

+
+
+
+ +
+
+rtc_region
+

The region for the voice channel’s voice communication. +A value of None indicates automatic voice region detection.

+
+

New in version 1.7.

+
+
+
Type
+

Optional[VoiceRegion]

+
+
+
+ +
+
+video_quality_mode
+

The camera video quality for the voice channel’s participants.

+
+

New in version 2.0.

+
+
+
Type
+

VideoQualityMode

+
+
+
+ +
+
+property type
+

The channel’s Discord type.

+
+
Type
+

ChannelType

+
+
+
+ +
+
+await clone(*, name=None, reason=None)
+

This function is a coroutine.

+

Clones this channel. This creates a channel with the same properties +as this channel.

+

You must have the manage_channels permission to +do this.

+
+

New in version 1.1.

+
+
+
Parameters
+
    +
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this +channel name.

  • +
  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to create this channel.

  • +
  • HTTPException – Creating the channel failed.

  • +
+
+
Returns
+

The channel that was created.

+
+
Return type
+

abc.GuildChannel

+
+
+
+ +
+
+await edit(*, reason=None, **options)
+

This function is a coroutine.

+

Edits the channel.

+

You must have the manage_channels permission to +use this.

+
+

Changed in version 1.3: The overwrites keyword-only parameter was added.

+
+
+

Changed in version 2.0: Edits are no longer in-place, the newly edited channel is returned instead.

+
+
+
Parameters
+
    +
  • name (str) – The new channel’s name.

  • +
  • bitrate (int) – The new channel’s bitrate.

  • +
  • user_limit (int) – The new channel’s user limit.

  • +
  • position (int) – The new channel’s position.

  • +
  • sync_permissions (bool) – Whether to sync permissions with the channel’s new or pre-existing +category. Defaults to False.

  • +
  • category (Optional[CategoryChannel]) – The new category for this channel. Can be None to remove the +category.

  • +
  • reason (Optional[str]) – The reason for editing this channel. Shows up on the audit log.

  • +
  • overwrites (Mapping) – A Mapping of target (either a role or a member) to +PermissionOverwrite to apply to the channel.

  • +
  • rtc_region (Optional[VoiceRegion]) –

    The new region for the voice channel’s voice communication. +A value of None indicates automatic voice region detection.

    +
    +

    New in version 1.7.

    +
    +

  • +
  • video_quality_mode (VideoQualityMode) –

    The camera video quality for the voice channel’s participants.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • InvalidArgument – If the permission overwrite information is not in proper form.

  • +
  • Forbidden – You do not have permissions to edit the channel.

  • +
  • HTTPException – Editing the channel failed.

  • +
+
+
Returns
+

The newly edited voice channel. If the edit was only positional +then None is returned instead.

+
+
Return type
+

Optional[VoiceChannel]

+
+
+
+ +
+
+property category
+

The category this channel belongs to.

+

If there is no category then this is None.

+
+
Type
+

Optional[CategoryChannel]

+
+
+
+ +
+
+property changed_roles
+

Returns a list of roles that have been overridden from +their default values in the roles attribute.

+
+
Type
+

List[Role]

+
+
+
+ +
+
+await connect(*, timeout=60.0, reconnect=True, cls=<class 'discord.voice_client.VoiceClient'>)
+

This function is a coroutine.

+

Connects to voice and creates a VoiceClient to establish +your connection to the voice server.

+

This requires Intents.voice_states.

+
+
Parameters
+
    +
  • timeout (float) – The timeout in seconds to wait for the voice endpoint.

  • +
  • reconnect (bool) – Whether the bot should automatically attempt +a reconnect if a part of the handshake fails +or the gateway goes down.

  • +
  • cls (Type[VoiceProtocol]) – A type that subclasses VoiceProtocol to connect with. +Defaults to VoiceClient.

  • +
+
+
Raises
+
+
+
Returns
+

A voice client that is fully connected to the voice server.

+
+
Return type
+

VoiceProtocol

+
+
+
+ +
+
+await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_type=None, target_user=None, target_application_id=None)
+

This function is a coroutine.

+

Creates an instant invite from a text or voice channel.

+

You must have the create_instant_invite permission to +do this.

+
+
Parameters
+
    +
  • max_age (int) – How long the invite should last in seconds. If it’s 0 then the invite +doesn’t expire. Defaults to 0.

  • +
  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there +are unlimited uses. Defaults to 0.

  • +
  • temporary (bool) – Denotes that the invite grants temporary membership +(i.e. they get kicked after they disconnect). Defaults to False.

  • +
  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. +If this is set to False then it will return a previously created +invite.

  • +
  • reason (Optional[str]) – The reason for creating this invite. Shows up on the audit log.

  • +
  • target_type (Optional[InviteTarget]) –

    The type of target for the voice channel invite, if any.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • target_user (Optional[User]) –

    The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • target_application_id:

    Optional[int]: The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • HTTPException – Invite creation failed.

  • +
  • NotFound – The channel that was passed is a category or an invalid channel.

  • +
+
+
Returns
+

The invite that was created.

+
+
Return type
+

Invite

+
+
+
+ +
+
+property created_at
+

Returns the channel’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+await delete(*, reason=None)
+

This function is a coroutine.

+

Deletes the channel.

+

You must have manage_channels permission to use this.

+
+
Parameters
+

reason (Optional[str]) – The reason for deleting this channel. +Shows up on the audit log.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to delete the channel.

  • +
  • NotFound – The channel was not found or was already deleted.

  • +
  • HTTPException – Deleting the channel failed.

  • +
+
+
+
+ +
+
+await invites()
+

This function is a coroutine.

+

Returns a list of all active instant invites from this channel.

+

You must have manage_channels to get this information.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to get the information.

  • +
  • HTTPException – An error occurred while fetching the information.

  • +
+
+
Returns
+

The list of invites that are currently active.

+
+
Return type
+

List[Invite]

+
+
+
+ +
+
+property members
+

Returns all members that are currently inside this voice channel.

+
+
Type
+

List[Member]

+
+
+
+ +
+
+property mention
+

The string that allows you to mention the channel.

+
+
Type
+

str

+
+
+
+ +
+
+await move(**kwargs)
+

This function is a coroutine.

+

A rich interface to help move a channel relative to other channels.

+

If exact position movement is required, edit should be used instead.

+

You must have the manage_channels permission to +do this.

+
+

Note

+

Voice channels will always be sorted below text channels. +This is a Discord limitation.

+
+
+

New in version 1.7.

+
+
+
Parameters
+
    +
  • beginning (bool) – Whether to move the channel to the beginning of the +channel list (or category if given). +This is mutually exclusive with end, before, and after.

  • +
  • end (bool) – Whether to move the channel to the end of the +channel list (or category if given). +This is mutually exclusive with beginning, before, and after.

  • +
  • before (Snowflake) – The channel that should be before our current channel. +This is mutually exclusive with beginning, end, and after.

  • +
  • after (Snowflake) – The channel that should be after our current channel. +This is mutually exclusive with beginning, end, and before.

  • +
  • offset (int) – The number of channels to offset the move by. For example, +an offset of 2 with beginning=True would move +it 2 after the beginning. A positive number moves it below +while a negative number moves it above. Note that this +number is relative and computed after the beginning, +end, before, and after parameters.

  • +
  • category (Optional[Snowflake]) – The category to move this channel under. +If None is given then it moves it out of the category. +This parameter is ignored if moving a category channel.

  • +
  • sync_permissions (bool) – Whether to sync the permissions with the category (if given).

  • +
  • reason (str) – The reason for the move.

  • +
+
+
Raises
+
    +
  • InvalidArgument – An invalid position was given or a bad mix of arguments were passed.

  • +
  • Forbidden – You do not have permissions to move the channel.

  • +
  • HTTPException – Moving the channel failed.

  • +
+
+
+
+ +
+
+property overwrites
+

Returns all of the channel’s overwrites.

+

This is returned as a dictionary where the key contains the target which +can be either a Role or a Member and the value is the +overwrite as a PermissionOverwrite.

+
+
Returns
+

The channel’s permission overwrites.

+
+
Return type
+

Dict[Union[Role, Member], PermissionOverwrite]

+
+
+
+ +
+
+overwrites_for(obj)
+

Returns the channel-specific overwrites for a member or a role.

+
+
Parameters
+

obj (Union[Role, User]) – The role or user denoting +whose overwrite to get.

+
+
Returns
+

The permission overwrites for this object.

+
+
Return type
+

PermissionOverwrite

+
+
+
+ +
+
+permissions_for(obj, /)
+

Handles permission resolution for the Member +or Role.

+

This function takes into consideration the following cases:

+
    +
  • Guild owner

  • +
  • Guild roles

  • +
  • Channel overrides

  • +
  • Member overrides

  • +
+

If a Role is passed, then it checks the permissions +someone with that role would have, which is essentially:

+
    +
  • The default role permissions

  • +
  • The permissions of the role used as a parameter

  • +
  • The default role permission overwrites

  • +
  • The permission overwrites of the role used as a parameter

  • +
+
+

Changed in version 2.0: The object passed in can now be a role object.

+
+
+
Parameters
+

obj (Union[Member, Role]) – The object to resolve permissions for. This could be either +a member or a role. If it’s a role then member overwrites +are not computed.

+
+
Returns
+

The resolved permissions for the member or role.

+
+
Return type
+

Permissions

+
+
+
+ +
+
+property permissions_synced
+

Whether or not the permissions for this channel are synced with the +category it belongs to.

+

If there is no category then this is False.

+
+

New in version 1.3.

+
+
+
Type
+

bool

+
+
+
+ +
+
+await set_permissions(target, *, overwrite=see - below, reason=None, **permissions)
+

This function is a coroutine.

+

Sets the channel specific permission overwrites for a target in the +channel.

+

The target parameter should either be a Member or a +Role that belongs to guild.

+

The overwrite parameter, if given, must either be None or +PermissionOverwrite. For convenience, you can pass in +keyword arguments denoting Permissions attributes. If this is +done, then you cannot mix the keyword arguments with the overwrite +parameter.

+

If the overwrite parameter is None, then the permission +overwrites are deleted.

+

You must have the manage_roles permission to use this.

+
+

Note

+

This method replaces the old overwrites with the ones given.

+
+

Examples

+

Setting allow and deny:

+
await message.channel.set_permissions(message.author, read_messages=True,
+                                                      send_messages=False)
+
+
+

Deleting overwrites

+
await channel.set_permissions(member, overwrite=None)
+
+
+

Using PermissionOverwrite

+
overwrite = discord.PermissionOverwrite()
+overwrite.send_messages = False
+overwrite.read_messages = True
+await channel.set_permissions(member, overwrite=overwrite)
+
+
+
+
Parameters
+
    +
  • target (Union[Member, Role]) – The member or role to overwrite permissions for.

  • +
  • overwrite (Optional[PermissionOverwrite]) – The permissions to allow and deny to the target, or None to +delete the overwrite.

  • +
  • **permissions – A keyword argument list of permissions to set for ease of use. +Cannot be mixed with overwrite.

  • +
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to edit channel specific permissions.

  • +
  • HTTPException – Editing channel specific permissions failed.

  • +
  • NotFound – The role or member being edited is not part of the guild.

  • +
  • InvalidArgument – The overwrite parameter invalid or the target type was not + Role or Member.

  • +
+
+
+
+ +
+
+property voice_states
+

Returns a mapping of member IDs who have voice states in this channel.

+
+

New in version 1.3.

+
+
+

Note

+

This function is intentionally low level to replace members +when the member cache is unavailable.

+
+
+
Returns
+

The mapping of member ID to a voice state.

+
+
Return type
+

Mapping[int, VoiceState]

+
+
+
+ +
+ +
+
+

StageChannel

+
+
+class discord.StageChannel
+

Represents a Discord guild stage channel.

+
+

New in version 1.7.

+
+
+
+
+x == y
+

Checks if two channels are equal.

+
+ +
+
+x != y
+

Checks if two channels are not equal.

+
+ +
+
+hash(x)
+

Returns the channel’s hash.

+
+ +
+
+str(x)
+

Returns the channel’s name.

+
+ +
+
+
+name
+

The channel name.

+
+
Type
+

str

+
+
+
+ +
+
+guild
+

The guild the channel belongs to.

+
+
Type
+

Guild

+
+
+
+ +
+
+id
+

The channel ID.

+
+
Type
+

int

+
+
+
+ +
+
+topic
+

The channel’s topic. None if it isn’t set.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+category_id
+

The category channel ID this channel belongs to, if applicable.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+position
+

The position in the channel list. This is a number that starts at 0. e.g. the +top channel is position 0.

+
+
Type
+

int

+
+
+
+ +
+
+bitrate
+

The channel’s preferred audio bitrate in bits per second.

+
+
Type
+

int

+
+
+
+ +
+
+user_limit
+

The channel’s limit for number of members that can be in a stage channel.

+
+
Type
+

int

+
+
+
+ +
+
+rtc_region
+

The region for the stage channel’s voice communication. +A value of None indicates automatic voice region detection.

+
+
Type
+

Optional[VoiceRegion]

+
+
+
+ +
+
+video_quality_mode
+

The camera video quality for the stage channel’s participants.

+
+

New in version 2.0.

+
+
+
Type
+

VideoQualityMode

+
+
+
+ +
+
+property requesting_to_speak
+

A list of members who are requesting to speak in the stage channel.

+
+
Type
+

List[Member]

+
+
+
+ +
+
+property speakers
+

A list of members who have been permitted to speak in the stage channel.

+
+

New in version 2.0.

+
+
+
Type
+

List[Member]

+
+
+
+ +
+
+property listeners
+

A list of members who are listening in the stage channel.

+
+

New in version 2.0.

+
+
+
Type
+

List[Member]

+
+
+
+ +
+
+property moderators
+

A list of members who are moderating the stage channel.

+
+

New in version 2.0.

+
+
+
Type
+

List[Member]

+
+
+
+ +
+
+property type
+

The channel’s Discord type.

+
+
Type
+

ChannelType

+
+
+
+ +
+
+await clone(*, name=None, reason=None)
+

This function is a coroutine.

+

Clones this channel. This creates a channel with the same properties +as this channel.

+

You must have the manage_channels permission to +do this.

+
+

New in version 1.1.

+
+
+
Parameters
+
    +
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this +channel name.

  • +
  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to create this channel.

  • +
  • HTTPException – Creating the channel failed.

  • +
+
+
Returns
+

The channel that was created.

+
+
Return type
+

abc.GuildChannel

+
+
+
+ +
+
+property instance
+

The running stage instance of the stage channel.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[StageInstance]

+
+
+
+ +
+
+await create_instance(*, topic, privacy_level=..., reason=None)
+

This function is a coroutine.

+

Create a stage instance.

+

You must have the manage_channels permission to +use this.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • topic (str) – The stage instance’s topic.

  • +
  • privacy_level (StagePrivacyLevel) – The stage instance’s privacy level. Defaults to StagePrivacyLevel.guild_only.

  • +
  • reason (str) – The reason the stage instance was created. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • InvalidArgument – If the privacy_level parameter is not the proper type.

  • +
  • Forbidden – You do not have permissions to create a stage instance.

  • +
  • HTTPException – Creating a stage instance failed.

  • +
+
+
Returns
+

The newly created stage instance.

+
+
Return type
+

StageInstance

+
+
+
+ +
+
+await fetch_instance()
+

This function is a coroutine.

+

Gets the running StageInstance.

+
+

New in version 2.0.

+
+
+
Raises
+
    +
  • NotFound – The stage instance or channel could not be found.

  • +
  • HTTPException – Getting the stage instance failed.

  • +
+
+
Returns
+

The stage instance.

+
+
Return type
+

StageInstance

+
+
+
+ +
+
+await edit(*, reason=None, **options)
+

This function is a coroutine.

+

Edits the channel.

+

You must have the manage_channels permission to +use this.

+
+

Changed in version 2.0: The topic parameter must now be set via create_instance.

+
+
+

Changed in version 2.0: Edits are no longer in-place, the newly edited channel is returned instead.

+
+
+
Parameters
+
    +
  • name (str) – The new channel’s name.

  • +
  • position (int) – The new channel’s position.

  • +
  • sync_permissions (bool) – Whether to sync permissions with the channel’s new or pre-existing +category. Defaults to False.

  • +
  • category (Optional[CategoryChannel]) – The new category for this channel. Can be None to remove the +category.

  • +
  • reason (Optional[str]) – The reason for editing this channel. Shows up on the audit log.

  • +
  • overwrites (Mapping) – A Mapping of target (either a role or a member) to +PermissionOverwrite to apply to the channel.

  • +
  • rtc_region (Optional[VoiceRegion]) – The new region for the stage channel’s voice communication. +A value of None indicates automatic voice region detection.

  • +
  • video_quality_mode (VideoQualityMode) –

    The camera video quality for the stage channel’s participants.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • InvalidArgument – If the permission overwrite information is not in proper form.

  • +
  • Forbidden – You do not have permissions to edit the channel.

  • +
  • HTTPException – Editing the channel failed.

  • +
+
+
Returns
+

The newly edited stage channel. If the edit was only positional +then None is returned instead.

+
+
Return type
+

Optional[StageChannel]

+
+
+
+ +
+
+property category
+

The category this channel belongs to.

+

If there is no category then this is None.

+
+
Type
+

Optional[CategoryChannel]

+
+
+
+ +
+
+property changed_roles
+

Returns a list of roles that have been overridden from +their default values in the roles attribute.

+
+
Type
+

List[Role]

+
+
+
+ +
+
+await connect(*, timeout=60.0, reconnect=True, cls=<class 'discord.voice_client.VoiceClient'>)
+

This function is a coroutine.

+

Connects to voice and creates a VoiceClient to establish +your connection to the voice server.

+

This requires Intents.voice_states.

+
+
Parameters
+
    +
  • timeout (float) – The timeout in seconds to wait for the voice endpoint.

  • +
  • reconnect (bool) – Whether the bot should automatically attempt +a reconnect if a part of the handshake fails +or the gateway goes down.

  • +
  • cls (Type[VoiceProtocol]) – A type that subclasses VoiceProtocol to connect with. +Defaults to VoiceClient.

  • +
+
+
Raises
+
+
+
Returns
+

A voice client that is fully connected to the voice server.

+
+
Return type
+

VoiceProtocol

+
+
+
+ +
+
+await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_type=None, target_user=None, target_application_id=None)
+

This function is a coroutine.

+

Creates an instant invite from a text or voice channel.

+

You must have the create_instant_invite permission to +do this.

+
+
Parameters
+
    +
  • max_age (int) – How long the invite should last in seconds. If it’s 0 then the invite +doesn’t expire. Defaults to 0.

  • +
  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there +are unlimited uses. Defaults to 0.

  • +
  • temporary (bool) – Denotes that the invite grants temporary membership +(i.e. they get kicked after they disconnect). Defaults to False.

  • +
  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. +If this is set to False then it will return a previously created +invite.

  • +
  • reason (Optional[str]) – The reason for creating this invite. Shows up on the audit log.

  • +
  • target_type (Optional[InviteTarget]) –

    The type of target for the voice channel invite, if any.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • target_user (Optional[User]) –

    The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • target_application_id:

    Optional[int]: The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • HTTPException – Invite creation failed.

  • +
  • NotFound – The channel that was passed is a category or an invalid channel.

  • +
+
+
Returns
+

The invite that was created.

+
+
Return type
+

Invite

+
+
+
+ +
+
+property created_at
+

Returns the channel’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+await delete(*, reason=None)
+

This function is a coroutine.

+

Deletes the channel.

+

You must have manage_channels permission to use this.

+
+
Parameters
+

reason (Optional[str]) – The reason for deleting this channel. +Shows up on the audit log.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to delete the channel.

  • +
  • NotFound – The channel was not found or was already deleted.

  • +
  • HTTPException – Deleting the channel failed.

  • +
+
+
+
+ +
+
+await invites()
+

This function is a coroutine.

+

Returns a list of all active instant invites from this channel.

+

You must have manage_channels to get this information.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to get the information.

  • +
  • HTTPException – An error occurred while fetching the information.

  • +
+
+
Returns
+

The list of invites that are currently active.

+
+
Return type
+

List[Invite]

+
+
+
+ +
+
+property members
+

Returns all members that are currently inside this voice channel.

+
+
Type
+

List[Member]

+
+
+
+ +
+
+property mention
+

The string that allows you to mention the channel.

+
+
Type
+

str

+
+
+
+ +
+
+await move(**kwargs)
+

This function is a coroutine.

+

A rich interface to help move a channel relative to other channels.

+

If exact position movement is required, edit should be used instead.

+

You must have the manage_channels permission to +do this.

+
+

Note

+

Voice channels will always be sorted below text channels. +This is a Discord limitation.

+
+
+

New in version 1.7.

+
+
+
Parameters
+
    +
  • beginning (bool) – Whether to move the channel to the beginning of the +channel list (or category if given). +This is mutually exclusive with end, before, and after.

  • +
  • end (bool) – Whether to move the channel to the end of the +channel list (or category if given). +This is mutually exclusive with beginning, before, and after.

  • +
  • before (Snowflake) – The channel that should be before our current channel. +This is mutually exclusive with beginning, end, and after.

  • +
  • after (Snowflake) – The channel that should be after our current channel. +This is mutually exclusive with beginning, end, and before.

  • +
  • offset (int) – The number of channels to offset the move by. For example, +an offset of 2 with beginning=True would move +it 2 after the beginning. A positive number moves it below +while a negative number moves it above. Note that this +number is relative and computed after the beginning, +end, before, and after parameters.

  • +
  • category (Optional[Snowflake]) – The category to move this channel under. +If None is given then it moves it out of the category. +This parameter is ignored if moving a category channel.

  • +
  • sync_permissions (bool) – Whether to sync the permissions with the category (if given).

  • +
  • reason (str) – The reason for the move.

  • +
+
+
Raises
+
    +
  • InvalidArgument – An invalid position was given or a bad mix of arguments were passed.

  • +
  • Forbidden – You do not have permissions to move the channel.

  • +
  • HTTPException – Moving the channel failed.

  • +
+
+
+
+ +
+
+property overwrites
+

Returns all of the channel’s overwrites.

+

This is returned as a dictionary where the key contains the target which +can be either a Role or a Member and the value is the +overwrite as a PermissionOverwrite.

+
+
Returns
+

The channel’s permission overwrites.

+
+
Return type
+

Dict[Union[Role, Member], PermissionOverwrite]

+
+
+
+ +
+
+overwrites_for(obj)
+

Returns the channel-specific overwrites for a member or a role.

+
+
Parameters
+

obj (Union[Role, User]) – The role or user denoting +whose overwrite to get.

+
+
Returns
+

The permission overwrites for this object.

+
+
Return type
+

PermissionOverwrite

+
+
+
+ +
+
+permissions_for(obj, /)
+

Handles permission resolution for the Member +or Role.

+

This function takes into consideration the following cases:

+
    +
  • Guild owner

  • +
  • Guild roles

  • +
  • Channel overrides

  • +
  • Member overrides

  • +
+

If a Role is passed, then it checks the permissions +someone with that role would have, which is essentially:

+
    +
  • The default role permissions

  • +
  • The permissions of the role used as a parameter

  • +
  • The default role permission overwrites

  • +
  • The permission overwrites of the role used as a parameter

  • +
+
+

Changed in version 2.0: The object passed in can now be a role object.

+
+
+
Parameters
+

obj (Union[Member, Role]) – The object to resolve permissions for. This could be either +a member or a role. If it’s a role then member overwrites +are not computed.

+
+
Returns
+

The resolved permissions for the member or role.

+
+
Return type
+

Permissions

+
+
+
+ +
+
+property permissions_synced
+

Whether or not the permissions for this channel are synced with the +category it belongs to.

+

If there is no category then this is False.

+
+

New in version 1.3.

+
+
+
Type
+

bool

+
+
+
+ +
+
+await set_permissions(target, *, overwrite=see - below, reason=None, **permissions)
+

This function is a coroutine.

+

Sets the channel specific permission overwrites for a target in the +channel.

+

The target parameter should either be a Member or a +Role that belongs to guild.

+

The overwrite parameter, if given, must either be None or +PermissionOverwrite. For convenience, you can pass in +keyword arguments denoting Permissions attributes. If this is +done, then you cannot mix the keyword arguments with the overwrite +parameter.

+

If the overwrite parameter is None, then the permission +overwrites are deleted.

+

You must have the manage_roles permission to use this.

+
+

Note

+

This method replaces the old overwrites with the ones given.

+
+

Examples

+

Setting allow and deny:

+
await message.channel.set_permissions(message.author, read_messages=True,
+                                                      send_messages=False)
+
+
+

Deleting overwrites

+
await channel.set_permissions(member, overwrite=None)
+
+
+

Using PermissionOverwrite

+
overwrite = discord.PermissionOverwrite()
+overwrite.send_messages = False
+overwrite.read_messages = True
+await channel.set_permissions(member, overwrite=overwrite)
+
+
+
+
Parameters
+
    +
  • target (Union[Member, Role]) – The member or role to overwrite permissions for.

  • +
  • overwrite (Optional[PermissionOverwrite]) – The permissions to allow and deny to the target, or None to +delete the overwrite.

  • +
  • **permissions – A keyword argument list of permissions to set for ease of use. +Cannot be mixed with overwrite.

  • +
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to edit channel specific permissions.

  • +
  • HTTPException – Editing channel specific permissions failed.

  • +
  • NotFound – The role or member being edited is not part of the guild.

  • +
  • InvalidArgument – The overwrite parameter invalid or the target type was not + Role or Member.

  • +
+
+
+
+ +
+
+property voice_states
+

Returns a mapping of member IDs who have voice states in this channel.

+
+

New in version 1.3.

+
+
+

Note

+

This function is intentionally low level to replace members +when the member cache is unavailable.

+
+
+
Returns
+

The mapping of member ID to a voice state.

+
+
Return type
+

Mapping[int, VoiceState]

+
+
+
+ +
+ +
+
+

StageInstance

+
+ +Methods +
+
+class discord.StageInstance
+

Represents a stage instance of a stage channel in a guild.

+
+

New in version 2.0.

+
+
+
+
+x == y
+

Checks if two stage instances are equal.

+
+ +
+
+x != y
+

Checks if two stage instances are not equal.

+
+ +
+
+hash(x)
+

Returns the stage instance’s hash.

+
+ +
+
+int(x)
+

Returns the stage instance’s ID.

+
+ +
+
+
+id
+

The stage instance’s ID.

+
+
Type
+

int

+
+
+
+ +
+
+guild
+

The guild that the stage instance is running in.

+
+
Type
+

Guild

+
+
+
+ +
+
+channel_id
+

The ID of the channel that the stage instance is running in.

+
+
Type
+

int

+
+
+
+ +
+
+topic
+

The topic of the stage instance.

+
+
Type
+

str

+
+
+
+ +
+
+privacy_level
+

The privacy level of the stage instance.

+
+
Type
+

StagePrivacyLevel

+
+
+
+ +
+
+discoverable_disabled
+

Whether discoverability for the stage instance is disabled.

+
+
Type
+

bool

+
+
+
+ +
+
+channel
+

The channel that stage instance is running in.

+
+
Type
+

Optional[StageChannel]

+
+
+
+ +
+
+await edit(*, topic=..., privacy_level=..., reason=None)
+

This function is a coroutine.

+

Edits the stage instance.

+

You must have the manage_channels permission to +use this.

+
+
Parameters
+
    +
  • topic (str) – The stage instance’s new topic.

  • +
  • privacy_level (StagePrivacyLevel) – The stage instance’s new privacy level.

  • +
  • reason (str) – The reason the stage instance was edited. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • InvalidArgument – If the privacy_level parameter is not the proper type.

  • +
  • Forbidden – You do not have permissions to edit the stage instance.

  • +
  • HTTPException – Editing a stage instance failed.

  • +
+
+
+
+ +
+
+await delete(*, reason=None)
+

This function is a coroutine.

+

Deletes the stage instance.

+

You must have the manage_channels permission to +use this.

+
+
Parameters
+

reason (str) – The reason the stage instance was deleted. Shows up on the audit log.

+
+
Raises
+
    +
  • Forbidden – You do not have permissions to delete the stage instance.

  • +
  • HTTPException – Deleting the stage instance failed.

  • +
+
+
+
+ +
+ +
+
+

CategoryChannel

+
+
+class discord.CategoryChannel
+

Represents a Discord channel category.

+

These are useful to group channels to logical compartments.

+
+
+
+x == y
+

Checks if two channels are equal.

+
+ +
+
+x != y
+

Checks if two channels are not equal.

+
+ +
+
+hash(x)
+

Returns the category’s hash.

+
+ +
+
+str(x)
+

Returns the category’s name.

+
+ +
+
+int(x)
+

Returns the category’s ID.

+
+ +
+
+
+name
+

The category name.

+
+
Type
+

str

+
+
+
+ +
+
+guild
+

The guild the category belongs to.

+
+
Type
+

Guild

+
+
+
+ +
+
+id
+

The category channel ID.

+
+
Type
+

int

+
+
+
+ +
+
+position
+

The position in the category list. This is a number that starts at 0. e.g. the +top category is position 0.

+
+
Type
+

int

+
+
+
+ +
+
+nsfw
+

If the channel is marked as “not safe for work”.

+
+

Note

+

To check if the channel or the guild of that channel are marked as NSFW, consider is_nsfw() instead.

+
+
+
Type
+

bool

+
+
+
+ +
+
+property type
+

The channel’s Discord type.

+
+
Type
+

ChannelType

+
+
+
+ +
+
+is_nsfw()
+

bool: Checks if the category is NSFW.

+
+ +
+
+await clone(*, name=None, reason=None)
+

This function is a coroutine.

+

Clones this channel. This creates a channel with the same properties +as this channel.

+

You must have the manage_channels permission to +do this.

+
+

New in version 1.1.

+
+
+
Parameters
+
    +
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this +channel name.

  • +
  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to create this channel.

  • +
  • HTTPException – Creating the channel failed.

  • +
+
+
Returns
+

The channel that was created.

+
+
Return type
+

abc.GuildChannel

+
+
+
+ +
+
+await edit(*, reason=None, **options)
+

This function is a coroutine.

+

Edits the channel.

+

You must have the manage_channels permission to +use this.

+
+

Changed in version 1.3: The overwrites keyword-only parameter was added.

+
+
+

Changed in version 2.0: Edits are no longer in-place, the newly edited channel is returned instead.

+
+
+
Parameters
+
    +
  • name (str) – The new category’s name.

  • +
  • position (int) – The new category’s position.

  • +
  • nsfw (bool) – To mark the category as NSFW or not.

  • +
  • reason (Optional[str]) – The reason for editing this category. Shows up on the audit log.

  • +
  • overwrites (Mapping) – A Mapping of target (either a role or a member) to +PermissionOverwrite to apply to the channel.

  • +
+
+
Raises
+
    +
  • InvalidArgument – If position is less than 0 or greater than the number of categories.

  • +
  • Forbidden – You do not have permissions to edit the category.

  • +
  • HTTPException – Editing the category failed.

  • +
+
+
Returns
+

The newly edited category channel. If the edit was only positional +then None is returned instead.

+
+
Return type
+

Optional[CategoryChannel]

+
+
+
+ +
+
+await move(**kwargs)
+

This function is a coroutine.

+

A rich interface to help move a channel relative to other channels.

+

If exact position movement is required, edit should be used instead.

+

You must have the manage_channels permission to +do this.

+
+

Note

+

Voice channels will always be sorted below text channels. +This is a Discord limitation.

+
+
+

New in version 1.7.

+
+
+
Parameters
+
    +
  • beginning (bool) – Whether to move the channel to the beginning of the +channel list (or category if given). +This is mutually exclusive with end, before, and after.

  • +
  • end (bool) – Whether to move the channel to the end of the +channel list (or category if given). +This is mutually exclusive with beginning, before, and after.

  • +
  • before (Snowflake) – The channel that should be before our current channel. +This is mutually exclusive with beginning, end, and after.

  • +
  • after (Snowflake) – The channel that should be after our current channel. +This is mutually exclusive with beginning, end, and before.

  • +
  • offset (int) – The number of channels to offset the move by. For example, +an offset of 2 with beginning=True would move +it 2 after the beginning. A positive number moves it below +while a negative number moves it above. Note that this +number is relative and computed after the beginning, +end, before, and after parameters.

  • +
  • category (Optional[Snowflake]) – The category to move this channel under. +If None is given then it moves it out of the category. +This parameter is ignored if moving a category channel.

  • +
  • sync_permissions (bool) – Whether to sync the permissions with the category (if given).

  • +
  • reason (str) – The reason for the move.

  • +
+
+
Raises
+
    +
  • InvalidArgument – An invalid position was given or a bad mix of arguments were passed.

  • +
  • Forbidden – You do not have permissions to move the channel.

  • +
  • HTTPException – Moving the channel failed.

  • +
+
+
+
+ +
+
+property channels
+

Returns the channels that are under this category.

+

These are sorted by the official Discord UI, which places voice channels below the text channels.

+
+
Type
+

List[abc.GuildChannel]

+
+
+
+ +
+
+property text_channels
+

Returns the text channels that are under this category.

+
+
Type
+

List[TextChannel]

+
+
+
+ +
+
+property voice_channels
+

Returns the voice channels that are under this category.

+
+
Type
+

List[VoiceChannel]

+
+
+
+ +
+
+property stage_channels
+

Returns the stage channels that are under this category.

+
+

New in version 1.7.

+
+
+
Type
+

List[StageChannel]

+
+
+
+ +
+
+await create_text_channel(name, **options)
+

This function is a coroutine.

+

A shortcut method to Guild.create_text_channel() to create a TextChannel in the category.

+
+
Returns
+

The channel that was just created.

+
+
Return type
+

TextChannel

+
+
+
+ +
+
+await create_voice_channel(name, **options)
+

This function is a coroutine.

+

A shortcut method to Guild.create_voice_channel() to create a VoiceChannel in the category.

+
+
Returns
+

The channel that was just created.

+
+
Return type
+

VoiceChannel

+
+
+
+ +
+
+await create_stage_channel(name, **options)
+

This function is a coroutine.

+

A shortcut method to Guild.create_stage_channel() to create a StageChannel in the category.

+
+

New in version 1.7.

+
+
+
Returns
+

The channel that was just created.

+
+
Return type
+

StageChannel

+
+
+
+ +
+
+property category
+

The category this channel belongs to.

+

If there is no category then this is None.

+
+
Type
+

Optional[CategoryChannel]

+
+
+
+ +
+
+property changed_roles
+

Returns a list of roles that have been overridden from +their default values in the roles attribute.

+
+
Type
+

List[Role]

+
+
+
+ +
+
+await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_type=None, target_user=None, target_application_id=None)
+

This function is a coroutine.

+

Creates an instant invite from a text or voice channel.

+

You must have the create_instant_invite permission to +do this.

+
+
Parameters
+
    +
  • max_age (int) – How long the invite should last in seconds. If it’s 0 then the invite +doesn’t expire. Defaults to 0.

  • +
  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there +are unlimited uses. Defaults to 0.

  • +
  • temporary (bool) – Denotes that the invite grants temporary membership +(i.e. they get kicked after they disconnect). Defaults to False.

  • +
  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. +If this is set to False then it will return a previously created +invite.

  • +
  • reason (Optional[str]) – The reason for creating this invite. Shows up on the audit log.

  • +
  • target_type (Optional[InviteTarget]) –

    The type of target for the voice channel invite, if any.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • target_user (Optional[User]) –

    The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • target_application_id:

    Optional[int]: The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • HTTPException – Invite creation failed.

  • +
  • NotFound – The channel that was passed is a category or an invalid channel.

  • +
+
+
Returns
+

The invite that was created.

+
+
Return type
+

Invite

+
+
+
+ +
+
+property created_at
+

Returns the channel’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+await delete(*, reason=None)
+

This function is a coroutine.

+

Deletes the channel.

+

You must have manage_channels permission to use this.

+
+
Parameters
+

reason (Optional[str]) – The reason for deleting this channel. +Shows up on the audit log.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to delete the channel.

  • +
  • NotFound – The channel was not found or was already deleted.

  • +
  • HTTPException – Deleting the channel failed.

  • +
+
+
+
+ +
+
+await invites()
+

This function is a coroutine.

+

Returns a list of all active instant invites from this channel.

+

You must have manage_channels to get this information.

+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to get the information.

  • +
  • HTTPException – An error occurred while fetching the information.

  • +
+
+
Returns
+

The list of invites that are currently active.

+
+
Return type
+

List[Invite]

+
+
+
+ +
+
+property mention
+

The string that allows you to mention the channel.

+
+
Type
+

str

+
+
+
+ +
+
+property overwrites
+

Returns all of the channel’s overwrites.

+

This is returned as a dictionary where the key contains the target which +can be either a Role or a Member and the value is the +overwrite as a PermissionOverwrite.

+
+
Returns
+

The channel’s permission overwrites.

+
+
Return type
+

Dict[Union[Role, Member], PermissionOverwrite]

+
+
+
+ +
+
+overwrites_for(obj)
+

Returns the channel-specific overwrites for a member or a role.

+
+
Parameters
+

obj (Union[Role, User]) – The role or user denoting +whose overwrite to get.

+
+
Returns
+

The permission overwrites for this object.

+
+
Return type
+

PermissionOverwrite

+
+
+
+ +
+
+permissions_for(obj, /)
+

Handles permission resolution for the Member +or Role.

+

This function takes into consideration the following cases:

+
    +
  • Guild owner

  • +
  • Guild roles

  • +
  • Channel overrides

  • +
  • Member overrides

  • +
+

If a Role is passed, then it checks the permissions +someone with that role would have, which is essentially:

+
    +
  • The default role permissions

  • +
  • The permissions of the role used as a parameter

  • +
  • The default role permission overwrites

  • +
  • The permission overwrites of the role used as a parameter

  • +
+
+

Changed in version 2.0: The object passed in can now be a role object.

+
+
+
Parameters
+

obj (Union[Member, Role]) – The object to resolve permissions for. This could be either +a member or a role. If it’s a role then member overwrites +are not computed.

+
+
Returns
+

The resolved permissions for the member or role.

+
+
Return type
+

Permissions

+
+
+
+ +
+
+property permissions_synced
+

Whether or not the permissions for this channel are synced with the +category it belongs to.

+

If there is no category then this is False.

+
+

New in version 1.3.

+
+
+
Type
+

bool

+
+
+
+ +
+
+await set_permissions(target, *, overwrite=see - below, reason=None, **permissions)
+

This function is a coroutine.

+

Sets the channel specific permission overwrites for a target in the +channel.

+

The target parameter should either be a Member or a +Role that belongs to guild.

+

The overwrite parameter, if given, must either be None or +PermissionOverwrite. For convenience, you can pass in +keyword arguments denoting Permissions attributes. If this is +done, then you cannot mix the keyword arguments with the overwrite +parameter.

+

If the overwrite parameter is None, then the permission +overwrites are deleted.

+

You must have the manage_roles permission to use this.

+
+

Note

+

This method replaces the old overwrites with the ones given.

+
+

Examples

+

Setting allow and deny:

+
await message.channel.set_permissions(message.author, read_messages=True,
+                                                      send_messages=False)
+
+
+

Deleting overwrites

+
await channel.set_permissions(member, overwrite=None)
+
+
+

Using PermissionOverwrite

+
overwrite = discord.PermissionOverwrite()
+overwrite.send_messages = False
+overwrite.read_messages = True
+await channel.set_permissions(member, overwrite=overwrite)
+
+
+
+
Parameters
+
    +
  • target (Union[Member, Role]) – The member or role to overwrite permissions for.

  • +
  • overwrite (Optional[PermissionOverwrite]) – The permissions to allow and deny to the target, or None to +delete the overwrite.

  • +
  • **permissions – A keyword argument list of permissions to set for ease of use. +Cannot be mixed with overwrite.

  • +
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to edit channel specific permissions.

  • +
  • HTTPException – Editing channel specific permissions failed.

  • +
  • NotFound – The role or member being edited is not part of the guild.

  • +
  • InvalidArgument – The overwrite parameter invalid or the target type was not + Role or Member.

  • +
+
+
+
+ +
+ +
+
+

DMChannel

+
+ +Attributes +
+ +Methods +
+
+class discord.DMChannel
+

Represents a Discord direct message channel.

+
+
+
+x == y
+

Checks if two channels are equal.

+
+ +
+
+x != y
+

Checks if two channels are not equal.

+
+ +
+
+hash(x)
+

Returns the channel’s hash.

+
+ +
+
+str(x)
+

Returns a string representation of the channel

+
+ +
+
+int(x)
+

Returns the channel’s ID.

+
+ +
+
+
+recipient
+

The user you are participating with in the direct message channel. +If this channel is received through the gateway, the recipient information +may not be always available.

+
+
Type
+

Optional[User]

+
+
+
+ +
+
+me
+

The user presenting yourself.

+
+
Type
+

ClientUser

+
+
+
+ +
+
+id
+

The direct message channel ID.

+
+
Type
+

int

+
+
+
+ +
+
+async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
+

Returns an AsyncIterator that enables receiving the destination’s message history.

+

You must have read_message_history permissions to use this.

+

Examples

+

Usage

+
counter = 0
+async for message in channel.history(limit=200):
+    if message.author == client.user:
+        counter += 1
+
+
+

Flattening into a list:

+
messages = await channel.history(limit=123).flatten()
+# messages is now a list of Message...
+
+
+

All parameters are optional.

+
+
Parameters
+
    +
  • limit (Optional[int]) – The number of messages to retrieve. +If None, retrieves every message in the channel. Note, however, +that this would make it a slow operation.

  • +
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time. +When using this argument, the maximum limit is 101. Note that if the limit is an +even number then this will return at most limit + 1 messages.

  • +
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if +after is specified, otherwise False.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to get channel message history.

  • +
  • HTTPException – The request to get message history failed.

  • +
+
+
Yields
+

Message – The message with the message data parsed.

+
+
+
+ +
+
+async with typing()
+

Returns a context manager that allows you to type for an indefinite period of time.

+

This is useful for denoting long computations in your bot.

+
+

Note

+

This is both a regular context manager and an async context manager. +This means that both with and async with work with this.

+
+

Example Usage:

+
async with channel.typing():
+    # simulate something heavy
+    await asyncio.sleep(10)
+
+await channel.send('done!')
+
+
+
+ +
+
+property type
+

The channel’s Discord type.

+
+
Type
+

ChannelType

+
+
+
+ +
+
+property created_at
+

Returns the direct message channel’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+permissions_for(obj=None, /)
+

Handles permission resolution for a User.

+

This function is there for compatibility with other channel types.

+

Actual direct messages do not really have the concept of permissions.

+

This returns all the Text related permissions set to True except:

+ +
+
Parameters
+

obj (User) – The user to check permissions for. This parameter is ignored +but kept for compatibility with other permissions_for methods.

+
+
Returns
+

The resolved permissions.

+
+
Return type
+

Permissions

+
+
+
+ +
+
+get_partial_message(message_id, /)
+

Creates a PartialMessage from the message ID.

+

This is useful if you want to work with a message and only have its ID without +doing an unnecessary API call.

+
+

New in version 1.6.

+
+
+
Parameters
+

message_id (int) – The message ID to create a partial message for.

+
+
Returns
+

The partial message.

+
+
Return type
+

PartialMessage

+
+
+
+ +
+
+await fetch_message(id, /)
+

This function is a coroutine.

+

Retrieves a single Message from the destination.

+
+
Parameters
+

id (int) – The message ID to look for.

+
+
Raises
+
    +
  • NotFound – The specified message was not found.

  • +
  • Forbidden – You do not have the permissions required to get a message.

  • +
  • HTTPException – Retrieving the message failed.

  • +
+
+
Returns
+

The message asked for.

+
+
Return type
+

Message

+
+
+
+ +
+
+await pins()
+

This function is a coroutine.

+

Retrieves all messages that are currently pinned in the channel.

+
+

Note

+

Due to a limitation with the Discord API, the Message +objects returned by this method do not contain complete +Message.reactions data.

+
+
+
Raises
+

HTTPException – Retrieving the pinned messages failed.

+
+
Returns
+

The messages that are currently pinned.

+
+
Return type
+

List[Message]

+
+
+
+ +
+
+await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
+

This function is a coroutine.

+

Sends a message to the destination with the content given.

+

The content must be a type that can convert to a string through str(content). +If the content is set to None (the default), then the embed parameter must +be provided.

+

To upload a single file, the file parameter should be used with a +single File object. To upload multiple files, the files +parameter should be used with a list of File objects. +Specifying both parameters will lead to an exception.

+

To upload a single embed, the embed parameter should be used with a +single Embed object. To upload multiple embeds, the embeds +parameter should be used with a list of Embed objects. +Specifying both parameters will lead to an exception.

+
+
Parameters
+
    +
  • content (Optional[str]) – The content of the message to send.

  • +
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • +
  • embed (Embed) – The rich embed for the content.

  • +
  • file (File) – The file to upload.

  • +
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • +
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, +then the message will have a nonce with this value.

  • +
  • delete_after (float) – If provided, the number of seconds to wait in the background +before deleting the message we just sent. If the deletion fails, +then it is silently ignored.

  • +
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is +passed, then the object is merged with allowed_mentions. +The merging behaviour only overrides attributes that have been explicitly passed +to the object, otherwise it uses the attributes set in allowed_mentions. +If no object is passed at all then the defaults given by allowed_mentions +are used instead.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using +to_reference() or passed directly as a Message. You can control +whether this mentions the author of the referenced message using the replied_user +attribute of allowed_mentions or by setting mention_author.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • +
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
+
+
Returns
+

The message that was sent.

+
+
Return type
+

Message

+
+
+
+ +
+
+await trigger_typing()
+

This function is a coroutine.

+

Triggers a typing indicator to the destination.

+

Typing indicator will go away after 10 seconds, or after a message is sent.

+
+ +
+ +
+
+

GroupChannel

+
+ +Attributes +
+ +Methods +
+
+class discord.GroupChannel
+

Represents a Discord group channel.

+
+
+
+x == y
+

Checks if two channels are equal.

+
+ +
+
+x != y
+

Checks if two channels are not equal.

+
+ +
+
+hash(x)
+

Returns the channel’s hash.

+
+ +
+
+str(x)
+

Returns a string representation of the channel

+
+ +
+
+int(x)
+

Returns the channel’s ID.

+
+ +
+
+
+recipients
+

The users you are participating with in the group channel.

+
+
Type
+

List[User]

+
+
+
+ +
+
+me
+

The user presenting yourself.

+
+
Type
+

ClientUser

+
+
+
+ +
+
+id
+

The group channel ID.

+
+
Type
+

int

+
+
+
+ +
+
+owner
+

The user that owns the group channel.

+
+
Type
+

Optional[User]

+
+
+
+ +
+
+owner_id
+

The owner ID that owns the group channel.

+
+

New in version 2.0.

+
+
+
Type
+

int

+
+
+
+ +
+
+name
+

The group channel’s name if provided.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
+

Returns an AsyncIterator that enables receiving the destination’s message history.

+

You must have read_message_history permissions to use this.

+

Examples

+

Usage

+
counter = 0
+async for message in channel.history(limit=200):
+    if message.author == client.user:
+        counter += 1
+
+
+

Flattening into a list:

+
messages = await channel.history(limit=123).flatten()
+# messages is now a list of Message...
+
+
+

All parameters are optional.

+
+
Parameters
+
    +
  • limit (Optional[int]) – The number of messages to retrieve. +If None, retrieves every message in the channel. Note, however, +that this would make it a slow operation.

  • +
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time. +When using this argument, the maximum limit is 101. Note that if the limit is an +even number then this will return at most limit + 1 messages.

  • +
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if +after is specified, otherwise False.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to get channel message history.

  • +
  • HTTPException – The request to get message history failed.

  • +
+
+
Yields
+

Message – The message with the message data parsed.

+
+
+
+ +
+
+async with typing()
+

Returns a context manager that allows you to type for an indefinite period of time.

+

This is useful for denoting long computations in your bot.

+
+

Note

+

This is both a regular context manager and an async context manager. +This means that both with and async with work with this.

+
+

Example Usage:

+
async with channel.typing():
+    # simulate something heavy
+    await asyncio.sleep(10)
+
+await channel.send('done!')
+
+
+
+ +
+
+property type
+

The channel’s Discord type.

+
+
Type
+

ChannelType

+
+
+
+ +
+
+property icon
+

Returns the channel’s icon asset if available.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property created_at
+

Returns the channel’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+permissions_for(obj, /)
+

Handles permission resolution for a User.

+

This function is there for compatibility with other channel types.

+

Actual direct messages do not really have the concept of permissions.

+

This returns all the Text related permissions set to True except:

+ +

This also checks the kick_members permission if the user is the owner.

+
+
Parameters
+

obj (Snowflake) – The user to check permissions for.

+
+
Returns
+

The resolved permissions for the user.

+
+
Return type
+

Permissions

+
+
+
+ +
+
+await leave()
+

This function is a coroutine.

+

Leave the group.

+

If you are the only one in the group, this deletes it as well.

+
+
Raises
+

HTTPException – Leaving the group failed.

+
+
+
+ +
+
+await fetch_message(id, /)
+

This function is a coroutine.

+

Retrieves a single Message from the destination.

+
+
Parameters
+

id (int) – The message ID to look for.

+
+
Raises
+
    +
  • NotFound – The specified message was not found.

  • +
  • Forbidden – You do not have the permissions required to get a message.

  • +
  • HTTPException – Retrieving the message failed.

  • +
+
+
Returns
+

The message asked for.

+
+
Return type
+

Message

+
+
+
+ +
+
+await pins()
+

This function is a coroutine.

+

Retrieves all messages that are currently pinned in the channel.

+
+

Note

+

Due to a limitation with the Discord API, the Message +objects returned by this method do not contain complete +Message.reactions data.

+
+
+
Raises
+

HTTPException – Retrieving the pinned messages failed.

+
+
Returns
+

The messages that are currently pinned.

+
+
Return type
+

List[Message]

+
+
+
+ +
+
+await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
+

This function is a coroutine.

+

Sends a message to the destination with the content given.

+

The content must be a type that can convert to a string through str(content). +If the content is set to None (the default), then the embed parameter must +be provided.

+

To upload a single file, the file parameter should be used with a +single File object. To upload multiple files, the files +parameter should be used with a list of File objects. +Specifying both parameters will lead to an exception.

+

To upload a single embed, the embed parameter should be used with a +single Embed object. To upload multiple embeds, the embeds +parameter should be used with a list of Embed objects. +Specifying both parameters will lead to an exception.

+
+
Parameters
+
    +
  • content (Optional[str]) – The content of the message to send.

  • +
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • +
  • embed (Embed) – The rich embed for the content.

  • +
  • file (File) – The file to upload.

  • +
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • +
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, +then the message will have a nonce with this value.

  • +
  • delete_after (float) – If provided, the number of seconds to wait in the background +before deleting the message we just sent. If the deletion fails, +then it is silently ignored.

  • +
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is +passed, then the object is merged with allowed_mentions. +The merging behaviour only overrides attributes that have been explicitly passed +to the object, otherwise it uses the attributes set in allowed_mentions. +If no object is passed at all then the defaults given by allowed_mentions +are used instead.

    +
    +

    New in version 1.4.

    +
    +

  • +
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using +to_reference() or passed directly as a Message. You can control +whether this mentions the author of the referenced message using the replied_user +attribute of allowed_mentions or by setting mention_author.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    +
    +

    New in version 1.6.

    +
    +

  • +
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • +
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    +
    +

    New in version 2.0.

    +
    +

  • +
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
+
+
Returns
+

The message that was sent.

+
+
Return type
+

Message

+
+
+
+ +
+
+await trigger_typing()
+

This function is a coroutine.

+

Triggers a typing indicator to the destination.

+

Typing indicator will go away after 10 seconds, or after a message is sent.

+
+ +
+ +
+
+

PartialInviteGuild

+
+
+class discord.PartialInviteGuild
+

Represents a “partial” invite guild.

+

This model will be given when the user is not part of the +guild the Invite resolves to.

+
+
+
+x == y
+

Checks if two partial guilds are the same.

+
+ +
+
+x != y
+

Checks if two partial guilds are not the same.

+
+ +
+
+hash(x)
+

Return the partial guild’s hash.

+
+ +
+
+str(x)
+

Returns the partial guild’s name.

+
+ +
+
+
+name
+

The partial guild’s name.

+
+
Type
+

str

+
+
+
+ +
+
+id
+

The partial guild’s ID.

+
+
Type
+

int

+
+
+
+ +
+
+verification_level
+

The partial guild’s verification level.

+
+
Type
+

VerificationLevel

+
+
+
+ +
+
+features
+

A list of features the guild has. See Guild.features for more information.

+
+
Type
+

List[str]

+
+
+
+ +
+
+description
+

The partial guild’s description.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+property created_at
+

Returns the guild’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+property icon
+

Returns the guild’s icon asset, if available.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property banner
+

Returns the guild’s banner asset, if available.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property splash
+

Returns the guild’s invite splash asset, if available.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+ +
+
+

PartialInviteChannel

+
+ +Attributes +
+
+class discord.PartialInviteChannel
+

Represents a “partial” invite channel.

+

This model will be given when the user is not part of the +guild the Invite resolves to.

+
+
+
+x == y
+

Checks if two partial channels are the same.

+
+ +
+
+x != y
+

Checks if two partial channels are not the same.

+
+ +
+
+hash(x)
+

Return the partial channel’s hash.

+
+ +
+
+str(x)
+

Returns the partial channel’s name.

+
+ +
+
+
+name
+

The partial channel’s name.

+
+
Type
+

str

+
+
+
+ +
+
+id
+

The partial channel’s ID.

+
+
Type
+

int

+
+
+
+ +
+
+type
+

The partial channel’s type.

+
+
Type
+

ChannelType

+
+
+
+ +
+
+property mention
+

The string that allows you to mention the channel.

+
+
Type
+

str

+
+
+
+ +
+
+property created_at
+

Returns the channel’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+ +
+
+

Invite

+
+
+class discord.Invite
+

Represents a Discord Guild or abc.GuildChannel invite.

+

Depending on the way this object was created, some of the attributes can +have a value of None.

+
+
+
+x == y
+

Checks if two invites are equal.

+
+ +
+
+x != y
+

Checks if two invites are not equal.

+
+ +
+
+hash(x)
+

Returns the invite hash.

+
+ +
+
+str(x)
+

Returns the invite URL.

+
+ +
+

The following table illustrates what methods will obtain the attributes:

+

If it’s not in the table above then it is available by all methods.

+
+
+max_age
+

How long before the invite expires in seconds. +A value of 0 indicates that it doesn’t expire.

+
+
Type
+

int

+
+
+
+ +
+
+code
+

The URL fragment used for the invite.

+
+
Type
+

str

+
+
+
+ +
+
+guild
+

The guild the invite is for. Can be None if it’s from a group direct message.

+
+
Type
+

Optional[Union[Guild, Object, PartialInviteGuild]]

+
+
+
+ +
+
+revoked
+

Indicates if the invite has been revoked.

+
+
Type
+

bool

+
+
+
+ +
+
+created_at
+

An aware UTC datetime object denoting the time the invite was created.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+temporary
+

Indicates that the invite grants temporary membership. +If True, members who joined via this invite will be kicked upon disconnect.

+
+
Type
+

bool

+
+
+
+ +
+
+uses
+

How many times the invite has been used.

+
+
Type
+

int

+
+
+
+ +
+
+max_uses
+

How many times the invite can be used. +A value of 0 indicates that it has unlimited uses.

+
+
Type
+

int

+
+
+
+ +
+
+inviter
+

The user who created the invite.

+
+
Type
+

Optional[User]

+
+
+
+ +
+
+approximate_member_count
+

The approximate number of members in the guild.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+approximate_presence_count
+

The approximate number of members currently active in the guild. +This includes idle, dnd, online, and invisible members. Offline members are excluded.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+expires_at
+

The expiration date of the invite. If the value is None when received through +Client.fetch_invite with with_expiration enabled, the invite will never expire.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[datetime.datetime]

+
+
+
+ +
+
+channel
+

The channel the invite is for.

+
+
Type
+

Union[abc.GuildChannel, Object, PartialInviteChannel]

+
+
+
+ +
+
+target_type
+

The type of target for the voice channel invite.

+
+

New in version 2.0.

+
+
+
Type
+

InviteTarget

+
+
+
+ +
+
+target_user
+

The user whose stream to display for this invite, if any.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[User]

+
+
+
+ +
+
+target_application
+

The embedded application the invite targets, if any.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[PartialAppInfo]

+
+
+
+ +
+
+property id
+

Returns the proper code portion of the invite.

+
+
Type
+

str

+
+
+
+ +
+
+property url
+

A property that retrieves the invite URL.

+
+
Type
+

str

+
+
+
+ +
+
+await delete(*, reason=None)
+

This function is a coroutine.

+

Revokes the instant invite.

+

You must have the manage_channels permission to do this.

+
+
Parameters
+

reason (Optional[str]) – The reason for deleting this invite. Shows up on the audit log.

+
+
Raises
+
    +
  • Forbidden – You do not have permissions to revoke invites.

  • +
  • NotFound – The invite is invalid or expired.

  • +
  • HTTPException – Revoking the invite failed.

  • +
+
+
+
+ +
+ +
+
+

Template

+
+ +Methods +
+
+class discord.Template
+

Represents a Discord template.

+
+

New in version 1.4.

+
+
+
+code
+

The template code.

+
+
Type
+

str

+
+
+
+ +
+
+uses
+

How many times the template has been used.

+
+
Type
+

int

+
+
+
+ +
+
+name
+

The name of the template.

+
+
Type
+

str

+
+
+
+ +
+
+description
+

The description of the template.

+
+
Type
+

str

+
+
+
+ +
+
+creator
+

The creator of the template.

+
+
Type
+

User

+
+
+
+ +
+
+created_at
+

An aware datetime in UTC representing when the template was created.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+updated_at
+

An aware datetime in UTC representing when the template was last updated. +This is referred to as “last synced” in the official Discord client.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+source_guild
+

The source guild.

+
+
Type
+

Guild

+
+
+
+ +
+
+is_dirty
+

Whether the template has unsynced changes.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[bool]

+
+
+
+ +
+
+await create_guild(name, region=None, icon=None)
+

This function is a coroutine.

+

Creates a Guild using the template.

+

Bot accounts in more than 10 guilds are not allowed to create guilds.

+
+
Parameters
+
+
+
Raises
+
+
+
Returns
+

The guild created. This is not the same guild that is +added to cache.

+
+
Return type
+

Guild

+
+
+
+ +
+
+await sync()
+

This function is a coroutine.

+

Sync the template to the guild’s current state.

+

You must have the manage_guild permission in the +source guild to do this.

+
+

New in version 1.7.

+
+
+

Changed in version 2.0: The template is no longer edited in-place, instead it is returned.

+
+
+
Raises
+
    +
  • HTTPException – Editing the template failed.

  • +
  • Forbidden – You don’t have permissions to edit the template.

  • +
  • NotFound – This template does not exist.

  • +
+
+
Returns
+

The newly edited template.

+
+
Return type
+

Template

+
+
+
+ +
+
+await edit(*, name=..., description=...)
+

This function is a coroutine.

+

Edit the template metadata.

+

You must have the manage_guild permission in the +source guild to do this.

+
+

New in version 1.7.

+
+
+

Changed in version 2.0: The template is no longer edited in-place, instead it is returned.

+
+
+
Parameters
+
    +
  • name (str) – The template’s new name.

  • +
  • description (Optional[str]) – The template’s new description.

  • +
+
+
Raises
+
    +
  • HTTPException – Editing the template failed.

  • +
  • Forbidden – You don’t have permissions to edit the template.

  • +
  • NotFound – This template does not exist.

  • +
+
+
Returns
+

The newly edited template.

+
+
Return type
+

Template

+
+
+
+ +
+
+await delete()
+

This function is a coroutine.

+

Delete the template.

+

You must have the manage_guild permission in the +source guild to do this.

+
+

New in version 1.7.

+
+
+
Raises
+
    +
  • HTTPException – Editing the template failed.

  • +
  • Forbidden – You don’t have permissions to edit the template.

  • +
  • NotFound – This template does not exist.

  • +
+
+
+
+ +
+
+property url
+

The template url.

+
+

New in version 2.0.

+
+
+
Type
+

str

+
+
+
+ +
+ +
+
+

WidgetChannel

+
+ +Attributes +
+
+class discord.WidgetChannel
+

Represents a “partial” widget channel.

+
+
+
+x == y
+

Checks if two partial channels are the same.

+
+ +
+
+x != y
+

Checks if two partial channels are not the same.

+
+ +
+
+hash(x)
+

Return the partial channel’s hash.

+
+ +
+
+str(x)
+

Returns the partial channel’s name.

+
+ +
+
+
+id
+

The channel’s ID.

+
+
Type
+

int

+
+
+
+ +
+
+name
+

The channel’s name.

+
+
Type
+

str

+
+
+
+ +
+
+position
+

The channel’s position

+
+
Type
+

int

+
+
+
+ +
+
+property mention
+

The string that allows you to mention the channel.

+
+
Type
+

str

+
+
+
+ +
+
+property created_at
+

Returns the channel’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+ +
+
+

WidgetMember

+
+
+class discord.WidgetMember
+

Represents a “partial” member of the widget’s guild.

+
+
+
+x == y
+

Checks if two widget members are the same.

+
+ +
+
+x != y
+

Checks if two widget members are not the same.

+
+ +
+
+hash(x)
+

Return the widget member’s hash.

+
+ +
+
+str(x)
+

Returns the widget member’s name#discriminator.

+
+ +
+
+
+id
+

The member’s ID.

+
+
Type
+

int

+
+
+
+ +
+
+name
+

The member’s username.

+
+
Type
+

str

+
+
+
+ +
+
+discriminator
+

The member’s discriminator.

+
+
Type
+

str

+
+
+
+ +
+
+bot
+

Whether the member is a bot.

+
+
Type
+

bool

+
+
+
+ +
+
+status
+

The member’s status.

+
+
Type
+

Status

+
+
+
+ +
+
+nick
+

The member’s nickname.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+avatar
+

The member’s avatar hash.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+activity
+

The member’s activity.

+
+
Type
+

Optional[Union[BaseActivity, Spotify]]

+
+
+
+ +
+
+deafened
+

Whether the member is currently deafened.

+
+
Type
+

Optional[bool]

+
+
+
+ +
+
+muted
+

Whether the member is currently muted.

+
+
Type
+

Optional[bool]

+
+
+
+ +
+
+suppress
+

Whether the member is currently being suppressed.

+
+
Type
+

Optional[bool]

+
+
+
+ +
+
+connected_channel
+

Which channel the member is connected to.

+
+
Type
+

Optional[WidgetChannel]

+
+
+
+ +
+
+property display_name
+

Returns the member’s display name.

+
+
Type
+

str

+
+
+
+ +
+
+property accent_color
+

Returns the user’s accent color, if applicable.

+

There is an alias for this named accent_colour.

+
+

New in version 2.0.

+
+
+

Note

+

This information is only available via Client.fetch_user().

+
+
+
Type
+

Optional[Colour]

+
+
+
+ +
+
+property accent_colour
+

Returns the user’s accent colour, if applicable.

+

There is an alias for this named accent_color.

+
+

New in version 2.0.

+
+
+

Note

+

This information is only available via Client.fetch_user().

+
+
+
Type
+

Optional[Colour]

+
+
+
+ +
+
+property banner
+

Returns the user’s banner asset, if available.

+
+

New in version 2.0.

+
+
+

Note

+

This information is only available via Client.fetch_user().

+
+
+
Type
+

Optional[Asset]

+
+
+
+ +
+
+property color
+

A property that returns a color denoting the rendered color +for the user. This always returns Colour.default().

+

There is an alias for this named colour.

+
+
Type
+

Colour

+
+
+
+ +
+
+property colour
+

A property that returns a colour denoting the rendered colour +for the user. This always returns Colour.default().

+

There is an alias for this named color.

+
+
Type
+

Colour

+
+
+
+ +
+
+property created_at
+

Returns the user’s creation time in UTC.

+

This is when the user’s Discord account was created.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+property default_avatar
+

Returns the default avatar for a given user. This is calculated by the user’s discriminator.

+
+
Type
+

Asset

+
+
+
+ +
+
+property display_avatar
+

Returns the user’s display avatar.

+

For regular users this is just their default avatar or uploaded avatar.

+
+

New in version 2.0.

+
+
+
Type
+

Asset

+
+
+
+ +
+
+property mention
+

Returns a string that allows you to mention the given user.

+
+
Type
+

str

+
+
+
+ +
+
+mentioned_in(message)
+

Checks if the user is mentioned in the specified message.

+
+
Parameters
+

message (Message) – The message to check if you’re mentioned in.

+
+
Returns
+

Indicates if the user is mentioned in the message.

+
+
Return type
+

bool

+
+
+
+ +
+
+property public_flags
+

The publicly available flags the user has.

+
+
Type
+

PublicUserFlags

+
+
+
+ +
+ +
+
+

Widget

+
+ +Methods +
+
+class discord.Widget
+

Represents a Guild widget.

+
+
+
+x == y
+

Checks if two widgets are the same.

+
+ +
+
+x != y
+

Checks if two widgets are not the same.

+
+ +
+
+str(x)
+

Returns the widget’s JSON URL.

+
+ +
+
+
+id
+

The guild’s ID.

+
+
Type
+

int

+
+
+
+ +
+
+name
+

The guild’s name.

+
+
Type
+

str

+
+
+
+ +
+
+channels
+

The accessible voice channels in the guild.

+
+
Type
+

List[WidgetChannel]

+
+
+
+ +
+
+members
+

The online members in the server. Offline members +do not appear in the widget.

+
+

Note

+

Due to a Discord limitation, if this data is available +the users will be “anonymized” with linear IDs and discriminator +information being incorrect. Likewise, the number of members +retrieved is capped.

+
+
+
Type
+

List[Member]

+
+
+
+ +
+
+property created_at
+

Returns the member’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+property json_url
+

The JSON URL of the widget.

+
+
Type
+

str

+
+
+
+ +
+
+property invite_url
+

The invite URL for the guild, if available.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+await fetch_invite(*, with_counts=True)
+

This function is a coroutine.

+

Retrieves an Invite from the widget’s invite URL. +This is the same as Client.fetch_invite(); the invite +code is abstracted away.

+
+
Parameters
+

with_counts (bool) – Whether to include count information in the invite. This fills the +Invite.approximate_member_count and Invite.approximate_presence_count +fields.

+
+
Returns
+

The invite from the widget’s invite URL.

+
+
Return type
+

Invite

+
+
+
+ +
+ +
+
+

StickerPack

+
+
+class discord.StickerPack
+

Represents a sticker pack.

+
+

New in version 2.0.

+
+
+
+
+str(x)
+

Returns the name of the sticker pack.

+
+ +
+
+hash(x)
+

Returns the hash of the sticker pack.

+
+ +
+
+int(x)
+

Returns the ID of the sticker pack.

+
+ +
+
+x == y
+

Checks if the sticker pack is equal to another sticker pack.

+
+ +
+
+x != y
+

Checks if the sticker pack is not equal to another sticker pack.

+
+ +
+
+
+name
+

The name of the sticker pack.

+
+
Type
+

str

+
+
+
+ +
+
+description
+

The description of the sticker pack.

+
+
Type
+

str

+
+
+
+ +
+
+id
+

The id of the sticker pack.

+
+
Type
+

int

+
+
+
+ +
+
+stickers
+

The stickers of this sticker pack.

+
+
Type
+

List[StandardSticker]

+
+
+
+ +
+
+sku_id
+

The SKU ID of the sticker pack.

+
+
Type
+

int

+
+
+
+ +
+
+cover_sticker_id
+

The ID of the sticker used for the cover of the sticker pack.

+
+
Type
+

int

+
+
+
+ +
+
+cover_sticker
+

The sticker used for the cover of the sticker pack.

+
+
Type
+

StandardSticker

+
+
+
+ +
+
+property banner
+

The banner asset of the sticker pack.

+
+
Type
+

Asset

+
+
+
+ +
+ +
+
+

StickerItem

+
+ +Attributes +
+ +Methods +
+
+class discord.StickerItem
+

Represents a sticker item.

+
+

New in version 2.0.

+
+
+
+
+str(x)
+

Returns the name of the sticker item.

+
+ +
+
+x == y
+

Checks if the sticker item is equal to another sticker item.

+
+ +
+
+x != y
+

Checks if the sticker item is not equal to another sticker item.

+
+ +
+
+
+name
+

The sticker’s name.

+
+
Type
+

str

+
+
+
+ +
+
+id
+

The id of the sticker.

+
+
Type
+

int

+
+
+
+ +
+
+format
+

The format for the sticker’s image.

+
+
Type
+

StickerFormatType

+
+
+
+ +
+
+url
+

The URL for the sticker’s image.

+
+
Type
+

str

+
+
+
+ +
+
+await fetch()
+

This function is a coroutine.

+

Attempts to retrieve the full sticker data of the sticker item.

+
+
Raises
+

HTTPException – Retrieving the sticker failed.

+
+
Returns
+

The retrieved sticker.

+
+
Return type
+

Union[StandardSticker, GuildSticker]

+
+
+
+ +
+ +
+
+

Sticker

+
+ +Attributes +
+
+class discord.Sticker
+

Represents a sticker.

+
+

New in version 1.6.

+
+
+
+
+str(x)
+

Returns the name of the sticker.

+
+ +
+
+x == y
+

Checks if the sticker is equal to another sticker.

+
+ +
+
+x != y
+

Checks if the sticker is not equal to another sticker.

+
+ +
+
+
+name
+

The sticker’s name.

+
+
Type
+

str

+
+
+
+ +
+
+id
+

The id of the sticker.

+
+
Type
+

int

+
+
+
+ +
+
+description
+

The description of the sticker.

+
+
Type
+

str

+
+
+
+ +
+
+pack_id
+

The id of the sticker’s pack.

+
+
Type
+

int

+
+
+
+ +
+
+format
+

The format for the sticker’s image.

+
+
Type
+

StickerFormatType

+
+
+
+ +
+
+url
+

The URL for the sticker’s image.

+
+
Type
+

str

+
+
+
+ +
+
+property created_at
+

Returns the sticker’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+ +
+
+

StandardSticker

+
+ +Attributes +
+ +Methods +
+
+class discord.StandardSticker
+

Represents a sticker that is found in a standard sticker pack.

+
+

New in version 2.0.

+
+
+
+
+str(x)
+

Returns the name of the sticker.

+
+ +
+
+x == y
+

Checks if the sticker is equal to another sticker.

+
+ +
+
+x != y
+

Checks if the sticker is not equal to another sticker.

+
+ +
+
+
+name
+

The sticker’s name.

+
+
Type
+

str

+
+
+
+ +
+
+id
+

The id of the sticker.

+
+
Type
+

int

+
+
+
+ +
+
+description
+

The description of the sticker.

+
+
Type
+

str

+
+
+
+ +
+
+pack_id
+

The id of the sticker’s pack.

+
+
Type
+

int

+
+
+
+ +
+
+format
+

The format for the sticker’s image.

+
+
Type
+

StickerFormatType

+
+
+
+ +
+
+tags
+

A list of tags for the sticker.

+
+
Type
+

List[str]

+
+
+
+ +
+
+sort_value
+

The sticker’s sort order within its pack.

+
+
Type
+

int

+
+
+
+ +
+
+await pack()
+

This function is a coroutine.

+

Retrieves the sticker pack that this sticker belongs to.

+
+
Raises
+
    +
  • InvalidData – The corresponding sticker pack was not found.

  • +
  • HTTPException – Retrieving the sticker pack failed.

  • +
+
+
Returns
+

The retrieved sticker pack.

+
+
Return type
+

StickerPack

+
+
+
+ +
+ +
+
+

GuildSticker

+
+ +Attributes +
+ +Methods +
+
+class discord.GuildSticker
+

Represents a sticker that belongs to a guild.

+
+

New in version 2.0.

+
+
+
+
+str(x)
+

Returns the name of the sticker.

+
+ +
+
+x == y
+

Checks if the sticker is equal to another sticker.

+
+ +
+
+x != y
+

Checks if the sticker is not equal to another sticker.

+
+ +
+
+
+name
+

The sticker’s name.

+
+
Type
+

str

+
+
+
+ +
+
+id
+

The id of the sticker.

+
+
Type
+

int

+
+
+
+ +
+
+description
+

The description of the sticker.

+
+
Type
+

str

+
+
+
+ +
+
+format
+

The format for the sticker’s image.

+
+
Type
+

StickerFormatType

+
+
+
+ +
+
+available
+

Whether this sticker is available for use.

+
+
Type
+

bool

+
+
+
+ +
+
+guild_id
+

The ID of the guild that this sticker is from.

+
+
Type
+

int

+
+
+
+ +
+
+user
+

The user that created this sticker. This can only be retrieved using Guild.fetch_sticker() and +having the manage_emojis_and_stickers permission.

+
+
Type
+

Optional[User]

+
+
+
+ +
+
+emoji
+

The name of a unicode emoji that represents this sticker.

+
+
Type
+

str

+
+
+
+ +
+
+guild
+

The guild that this sticker is from. +Could be None if the bot is not in the guild.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[Guild]

+
+
+
+ +
+
+await edit(*, name=..., description=..., emoji=..., reason=None)
+

This function is a coroutine.

+

Edits a GuildSticker for the guild.

+
+
Parameters
+
    +
  • name (str) – The sticker’s new name. Must be at least 2 characters.

  • +
  • description (Optional[str]) – The sticker’s new description. Can be None.

  • +
  • emoji (str) – The name of a unicode emoji that represents the sticker’s expression.

  • +
  • reason (str) – The reason for editing this sticker. Shows up on the audit log.

  • +
+
+
Raises
+
    +
  • Forbidden – You are not allowed to edit stickers.

  • +
  • HTTPException – An error occurred editing the sticker.

  • +
+
+
Returns
+

The newly modified sticker.

+
+
Return type
+

GuildSticker

+
+
+
+ +
+
+await delete(*, reason=None)
+

This function is a coroutine.

+

Deletes the custom Sticker from the guild.

+

You must have manage_emojis_and_stickers permission to +do this.

+
+
Parameters
+

reason (Optional[str]) – The reason for deleting this sticker. Shows up on the audit log.

+
+
Raises
+
    +
  • Forbidden – You are not allowed to delete stickers.

  • +
  • HTTPException – An error occurred deleting the sticker.

  • +
+
+
+
+ +
+ +
+
+

RawTypingEvent

+
+ +Attributes +
+
+class discord.RawTypingEvent
+

Represents the payload for a on_raw_typing() event.

+
+

New in version 2.0.

+
+
+
+channel_id
+

The channel ID where the typing originated from.

+
+
Type
+

int

+
+
+
+ +
+
+user_id
+

The ID of the user that started typing.

+
+
Type
+

int

+
+
+
+ +
+
+when
+

When the typing started as an aware datetime in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+guild_id
+

The guild ID where the typing originated from, if applicable.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+member
+

The member who started typing. Only available if the member started typing in a guild.

+
+
Type
+

Optional[Member]

+
+
+
+ +
+ +
+
+

RawMessageDeleteEvent

+
+
+class discord.RawMessageDeleteEvent
+

Represents the event payload for a on_raw_message_delete() event.

+
+
+channel_id
+

The channel ID where the deletion took place.

+
+
Type
+

int

+
+
+
+ +
+
+guild_id
+

The guild ID where the deletion took place, if applicable.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+message_id
+

The message ID that got deleted.

+
+
Type
+

int

+
+
+
+ +
+
+cached_message
+

The cached message, if found in the internal message cache.

+
+
Type
+

Optional[Message]

+
+
+
+ +
+ +
+
+

RawBulkMessageDeleteEvent

+
+
+class discord.RawBulkMessageDeleteEvent
+

Represents the event payload for a on_raw_bulk_message_delete() event.

+
+
+message_ids
+

A set of the message IDs that were deleted.

+
+
Type
+

Set[int]

+
+
+
+ +
+
+channel_id
+

The channel ID where the message got deleted.

+
+
Type
+

int

+
+
+
+ +
+
+guild_id
+

The guild ID where the message got deleted, if applicable.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+cached_messages
+

The cached messages, if found in the internal message cache.

+
+
Type
+

List[Message]

+
+
+
+ +
+ +
+
+

RawMessageUpdateEvent

+
+
+class discord.RawMessageUpdateEvent
+

Represents the payload for a on_raw_message_edit() event.

+
+
+message_id
+

The message ID that got updated.

+
+
Type
+

int

+
+
+
+ +
+
+channel_id
+

The channel ID where the update took place.

+
+

New in version 1.3.

+
+
+
Type
+

int

+
+
+
+ +
+
+guild_id
+

The guild ID where the message got updated, if applicable.

+
+

New in version 1.7.

+
+
+
Type
+

Optional[int]

+
+
+
+ +
+
+data
+

The raw data given by the gateway

+
+
Type
+

dict

+
+
+
+ +
+
+cached_message
+

The cached message, if found in the internal message cache. Represents the message before +it is modified by the data in RawMessageUpdateEvent.data.

+
+
Type
+

Optional[Message]

+
+
+
+ +
+ +
+
+

RawReactionActionEvent

+
+
+class discord.RawReactionActionEvent
+

Represents the payload for a on_raw_reaction_add() or +on_raw_reaction_remove() event.

+
+
+message_id
+

The message ID that got or lost a reaction.

+
+
Type
+

int

+
+
+
+ +
+
+user_id
+

The user ID who added the reaction or whose reaction was removed.

+
+
Type
+

int

+
+
+
+ +
+
+channel_id
+

The channel ID where the reaction got added or removed.

+
+
Type
+

int

+
+
+
+ +
+
+guild_id
+

The guild ID where the reaction got added or removed, if applicable.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+emoji
+

The custom or unicode emoji being used.

+
+
Type
+

PartialEmoji

+
+
+
+ +
+
+member
+

The member who added the reaction. Only available if event_type is REACTION_ADD and the reaction is inside a guild.

+
+

New in version 1.3.

+
+
+
Type
+

Optional[Member]

+
+
+
+ +
+
+event_type
+

The event type that triggered this action. Can be +REACTION_ADD for reaction addition or +REACTION_REMOVE for reaction removal.

+
+

New in version 1.3.

+
+
+
Type
+

str

+
+
+
+ +
+ +
+
+

RawReactionClearEvent

+
+ +Attributes +
+
+class discord.RawReactionClearEvent
+

Represents the payload for a on_raw_reaction_clear() event.

+
+
+message_id
+

The message ID that got its reactions cleared.

+
+
Type
+

int

+
+
+
+ +
+
+channel_id
+

The channel ID where the reactions got cleared.

+
+
Type
+

int

+
+
+
+ +
+
+guild_id
+

The guild ID where the reactions got cleared.

+
+
Type
+

Optional[int]

+
+
+
+ +
+ +
+
+

RawReactionClearEmojiEvent

+
+ +Attributes +
+
+class discord.RawReactionClearEmojiEvent
+

Represents the payload for a on_raw_reaction_clear_emoji() event.

+
+

New in version 1.3.

+
+
+
+message_id
+

The message ID that got its reactions cleared.

+
+
Type
+

int

+
+
+
+ +
+
+channel_id
+

The channel ID where the reactions got cleared.

+
+
Type
+

int

+
+
+
+ +
+
+guild_id
+

The guild ID where the reactions got cleared.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+emoji
+

The custom or unicode emoji being removed.

+
+
Type
+

PartialEmoji

+
+
+
+ +
+ +
+
+

RawIntegrationDeleteEvent

+
+ +Attributes +
+
+class discord.RawIntegrationDeleteEvent
+

Represents the payload for a on_raw_integration_delete() event.

+
+

New in version 2.0.

+
+
+
+integration_id
+

The ID of the integration that got deleted.

+
+
Type
+

int

+
+
+
+ +
+
+application_id
+

The ID of the bot/OAuth2 application for this deleted integration.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+guild_id
+

The guild ID where the integration got deleted.

+
+
Type
+

int

+
+
+
+ +
+ +
+
+

PartialWebhookGuild

+
+ +Attributes +
+
+class discord.PartialWebhookGuild
+

Represents a partial guild for webhooks.

+

These are typically given for channel follower webhooks.

+
+

New in version 2.0.

+
+
+
+id
+

The partial guild’s ID.

+
+
Type
+

int

+
+
+
+ +
+
+name
+

The partial guild’s name.

+
+
Type
+

str

+
+
+
+ +
+
+property icon
+

Returns the guild’s icon asset, if available.

+
+
Type
+

Optional[Asset]

+
+
+
+ +
+ +
+
+

PartialWebhookChannel

+
+ +Attributes +
+
+class discord.PartialWebhookChannel
+

Represents a partial channel for webhooks.

+

These are typically given for channel follower webhooks.

+
+

New in version 2.0.

+
+
+
+id
+

The partial channel’s ID.

+
+
Type
+

int

+
+
+
+ +
+
+name
+

The partial channel’s name.

+
+
Type
+

str

+
+
+
+ +
+ +
+
+
+

Data Classes

+

Some classes are just there to be data containers, this lists them.

+

Unlike models you are allowed to create +most of these yourself, even if they can also be used to hold attributes.

+

Nearly all classes here have __slots__ defined which means that it is +impossible to have dynamic attributes to the data classes.

+

The only exception to this rule is Object, which is made with +dynamic attributes in mind.

+
+

Object

+
+ +Attributes +
+
+class discord.Object(id)
+

Represents a generic Discord object.

+

The purpose of this class is to allow you to create ‘miniature’ +versions of data classes if you want to pass in just an ID. Most functions +that take in a specific data class with an ID can also take in this class +as a substitute instead. Note that even though this is the case, not all +objects (if any) actually inherit from this class.

+

There are also some cases where some websocket events are received +in strange order and when such events happened you would +receive this class rather than the actual data class. These cases are +extremely rare.

+
+
+
+x == y
+

Checks if two objects are equal.

+
+ +
+
+x != y
+

Checks if two objects are not equal.

+
+ +
+
+hash(x)
+

Returns the object’s hash.

+
+ +
+
+int(x)
+

Returns the object’s ID.

+
+ +
+
+
+id
+

The ID of the object.

+
+
Type
+

int

+
+
+
+ +
+
+property created_at
+

Returns the snowflake’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+ +
+
+

Embed

+
+
+class discord.Embed(*, colour=Embed.Empty, color=Embed.Empty, title=Embed.Empty, type='rich', url=Embed.Empty, description=Embed.Empty, timestamp=None)
+

Represents a Discord embed.

+
+
+
+len(x)
+

Returns the total size of the embed. +Useful for checking if it’s within the 6000 character limit.

+
+ +
+
+bool(b)
+

Returns whether the embed has any data set.

+
+

New in version 2.0.

+
+
+ +
+

Certain properties return an EmbedProxy, a type +that acts similar to a regular dict except using dotted access, +e.g. embed.author.icon_url. If the attribute +is invalid or empty, then a special sentinel value is returned, +Embed.Empty.

+

For ease of use, all parameters that expect a str are implicitly +casted to str for you.

+
+
+title
+

The title of the embed. +This can be set during initialisation.

+
+
Type
+

str

+
+
+
+ +
+
+type
+

The type of embed. Usually “rich”. +This can be set during initialisation. +Possible strings for embed types can be found on discord’s +api docs

+
+
Type
+

str

+
+
+
+ +
+
+description
+

The description of the embed. +This can be set during initialisation.

+
+
Type
+

str

+
+
+
+ +
+
+url
+

The URL of the embed. +This can be set during initialisation.

+
+
Type
+

str

+
+
+
+ +
+
+timestamp
+

The timestamp of the embed content. This is an aware datetime. +If a naive datetime is passed, it is converted to an aware +datetime with the local timezone.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+colour
+

The colour code of the embed. Aliased to color as well. +This can be set during initialisation.

+
+
Type
+

Union[Colour, int]

+
+
+
+ +
+
+Empty
+

A special sentinel value used by EmbedProxy and this class +to denote that the value or attribute is empty.

+
+
Type
+

Final

+
+
+
+ +
+
+classmethod from_dict(data)
+

Converts a dict to a Embed provided it is in the +format that Discord expects it to be in.

+

You can find out about this format in the official Discord documentation.

+
+
Parameters
+

data (dict) – The dictionary to convert into an embed.

+
+
+
+ +
+
+copy()
+

Returns a shallow copy of the embed.

+
+ +
+
+property footer
+

Returns an EmbedProxy denoting the footer contents.

+

See set_footer() for possible values you can access.

+

If the attribute has no value then Empty is returned.

+
+ +
+ +

Sets the footer for the embed content.

+

This function returns the class instance to allow for fluent-style +chaining.

+
+
Parameters
+
    +
  • text (str) – The footer text.

  • +
  • icon_url (str) – The URL of the footer icon. Only HTTP(S) is supported.

  • +
+
+
+
+ +
+ +

Clears embed’s footer information.

+

This function returns the class instance to allow for fluent-style +chaining.

+
+

New in version 2.0.

+
+
+ +
+
+property image
+

Returns an EmbedProxy denoting the image contents.

+

Possible attributes you can access are:

+
    +
  • url

  • +
  • proxy_url

  • +
  • width

  • +
  • height

  • +
+

If the attribute has no value then Empty is returned.

+
+ +
+
+set_image(*, url)
+

Sets the image for the embed content.

+

This function returns the class instance to allow for fluent-style +chaining.

+
+

Changed in version 1.4: Passing Empty removes the image.

+
+
+
Parameters
+

url (str) – The source URL for the image. Only HTTP(S) is supported.

+
+
+
+ +
+
+property thumbnail
+

Returns an EmbedProxy denoting the thumbnail contents.

+

Possible attributes you can access are:

+
    +
  • url

  • +
  • proxy_url

  • +
  • width

  • +
  • height

  • +
+

If the attribute has no value then Empty is returned.

+
+ +
+
+set_thumbnail(*, url)
+

Sets the thumbnail for the embed content.

+

This function returns the class instance to allow for fluent-style +chaining.

+
+

Changed in version 1.4: Passing Empty removes the thumbnail.

+
+
+
Parameters
+

url (str) – The source URL for the thumbnail. Only HTTP(S) is supported.

+
+
+
+ +
+
+property video
+

Returns an EmbedProxy denoting the video contents.

+

Possible attributes include:

+
    +
  • url for the video URL.

  • +
  • height for the video height.

  • +
  • width for the video width.

  • +
+

If the attribute has no value then Empty is returned.

+
+ +
+
+property provider
+

Returns an EmbedProxy denoting the provider contents.

+

The only attributes that might be accessed are name and url.

+

If the attribute has no value then Empty is returned.

+
+ +
+
+property author
+

Returns an EmbedProxy denoting the author contents.

+

See set_author() for possible values you can access.

+

If the attribute has no value then Empty is returned.

+
+ +
+
+set_author(*, name, url=Embed.Empty, icon_url=Embed.Empty)
+

Sets the author for the embed content.

+

This function returns the class instance to allow for fluent-style +chaining.

+
+
Parameters
+
    +
  • name (str) – The name of the author.

  • +
  • url (str) – The URL for the author.

  • +
  • icon_url (str) – The URL of the author icon. Only HTTP(S) is supported.

  • +
+
+
+
+ +
+
+remove_author()
+

Clears embed’s author information.

+

This function returns the class instance to allow for fluent-style +chaining.

+
+

New in version 1.4.

+
+
+ +
+
+property fields
+

Returns a list of EmbedProxy denoting the field contents.

+

See add_field() for possible values you can access.

+

If the attribute has no value then Empty is returned.

+
+
Type
+

List[Union[EmbedProxy, Empty]]

+
+
+
+ +
+
+add_field(*, name, value, inline=True)
+

Adds a field to the embed object.

+

This function returns the class instance to allow for fluent-style +chaining.

+
+
Parameters
+
    +
  • name (str) – The name of the field.

  • +
  • value (str) – The value of the field.

  • +
  • inline (bool) – Whether the field should be displayed inline.

  • +
+
+
+
+ +
+
+insert_field_at(index, *, name, value, inline=True)
+

Inserts a field before a specified index to the embed.

+

This function returns the class instance to allow for fluent-style +chaining.

+
+

New in version 1.2.

+
+
+
Parameters
+
    +
  • index (int) – The index of where to insert the field.

  • +
  • name (str) – The name of the field.

  • +
  • value (str) – The value of the field.

  • +
  • inline (bool) – Whether the field should be displayed inline.

  • +
+
+
+
+ +
+
+clear_fields()
+

Removes all fields from this embed.

+
+ +
+
+remove_field(index)
+

Removes a field at a specified index.

+

If the index is invalid or out of bounds then the error is +silently swallowed.

+
+

Note

+

When deleting a field by index, the index of the other fields +shift to fill the gap just like a regular list.

+
+
+
Parameters
+

index (int) – The index of the field to remove.

+
+
+
+ +
+
+set_field_at(index, *, name, value, inline=True)
+

Modifies a field to the embed object.

+

The index must point to a valid pre-existing field.

+

This function returns the class instance to allow for fluent-style +chaining.

+
+
Parameters
+
    +
  • index (int) – The index of the field to modify.

  • +
  • name (str) – The name of the field.

  • +
  • value (str) – The value of the field.

  • +
  • inline (bool) – Whether the field should be displayed inline.

  • +
+
+
Raises
+

IndexError – An invalid index was provided.

+
+
+
+ +
+
+to_dict()
+

Converts this embed object into a dict.

+
+ +
+ +
+
+

AllowedMentions

+
+ +Attributes +
+ +Methods +
+
+class discord.AllowedMentions(*, everyone=True, users=True, roles=True, replied_user=True)
+

A class that represents what mentions are allowed in a message.

+

This class can be set during Client initialisation to apply +to every message sent. It can also be applied on a per message basis +via abc.Messageable.send() for more fine-grained control.

+
+
+everyone
+

Whether to allow everyone and here mentions. Defaults to True.

+
+
Type
+

bool

+
+
+
+ +
+
+users
+

Controls the users being mentioned. If True (the default) then +users are mentioned based on the message content. If False then +users are not mentioned at all. If a list of abc.Snowflake +is given then only the users provided will be mentioned, provided those +users are in the message content.

+
+
Type
+

Union[bool, List[abc.Snowflake]]

+
+
+
+ +
+
+roles
+

Controls the roles being mentioned. If True (the default) then +roles are mentioned based on the message content. If False then +roles are not mentioned at all. If a list of abc.Snowflake +is given then only the roles provided will be mentioned, provided those +roles are in the message content.

+
+
Type
+

Union[bool, List[abc.Snowflake]]

+
+
+
+ +
+
+replied_user
+

Whether to mention the author of the message being replied to. Defaults +to True.

+
+

New in version 1.6.

+
+
+
Type
+

bool

+
+
+
+ +
+
+classmethod all()
+

A factory method that returns a AllowedMentions with all fields explicitly set to True

+
+

New in version 1.5.

+
+
+ +
+
+classmethod none()
+

A factory method that returns a AllowedMentions with all fields set to False

+
+

New in version 1.5.

+
+
+ +
+ +
+
+

MessageReference

+
+
+class discord.MessageReference(*, message_id, channel_id, guild_id=None, fail_if_not_exists=True)
+

Represents a reference to a Message.

+
+

New in version 1.5.

+
+
+

Changed in version 1.6: This class can now be constructed by users.

+
+
+
+message_id
+

The id of the message referenced.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+channel_id
+

The channel id of the message referenced.

+
+
Type
+

int

+
+
+
+ +
+
+guild_id
+

The guild id of the message referenced.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+fail_if_not_exists
+

Whether replying to the referenced message should raise HTTPException +if the message no longer exists or Discord could not fetch the message.

+
+

New in version 1.7.

+
+
+
Type
+

bool

+
+
+
+ +
+
+resolved
+

The message that this reference resolved to. If this is None +then the original message was not fetched either due to the Discord API +not attempting to resolve it or it not being available at the time of creation. +If the message was resolved at a prior point but has since been deleted then +this will be of type DeletedReferencedMessage.

+

Currently, this is mainly the replied to message when a user replies to a message.

+
+

New in version 1.6.

+
+
+
Type
+

Optional[Union[Message, DeletedReferencedMessage]]

+
+
+
+ +
+
+classmethod from_message(message, *, fail_if_not_exists=True)
+

Creates a MessageReference from an existing Message.

+
+

New in version 1.6.

+
+
+
Parameters
+
    +
  • message (Message) – The message to be converted into a reference.

  • +
  • fail_if_not_exists (bool) –

    Whether replying to the referenced message should raise HTTPException +if the message no longer exists or Discord could not fetch the message.

    +
    +

    New in version 1.7.

    +
    +

  • +
+
+
Returns
+

A reference to the message.

+
+
Return type
+

MessageReference

+
+
+
+ +
+
+property cached_message
+

The cached message, if found in the internal message cache.

+
+
Type
+

Optional[Message]

+
+
+
+ +
+
+property jump_url
+

Returns a URL that allows the client to jump to the referenced message.

+
+

New in version 1.7.

+
+
+
Type
+

str

+
+
+
+ +
+ +
+
+

PartialMessage

+
+ +Attributes +
+ +Methods +
+
+class discord.PartialMessage(*, channel, id)
+

Represents a partial message to aid with working messages when only +a message and channel ID are present.

+

There are two ways to construct this class. The first one is through +the constructor itself, and the second is via the following:

+ +

Note that this class is trimmed down and has no rich attributes.

+
+

New in version 1.6.

+
+
+
+
+x == y
+

Checks if two partial messages are equal.

+
+ +
+
+x != y
+

Checks if two partial messages are not equal.

+
+ +
+
+hash(x)
+

Returns the partial message’s hash.

+
+ +
+
+int(x)
+

Returns the partial message’s ID.

+
+ +
+
+
+channel
+

The channel associated with this partial message.

+
+
Type
+

Union[TextChannel, Thread, DMChannel]

+
+
+
+ +
+
+id
+

The message ID.

+
+
Type
+

int

+
+
+
+ +
+
+property jump_url
+

Returns a URL that allows the client to jump to this message.

+
+
Type
+

str

+
+
+
+ +
+
+await delete(*, delay=None, silent=False)
+

This function is a coroutine.

+

Deletes the message.

+

Your own messages could be deleted without any proper permissions. However to +delete other people’s messages, you need the manage_messages +permission.

+
+

Changed in version 1.1: Added the new delay keyword-only parameter.

+
+
+

Changed in version 2.0: Added the new silent keyword-only parameter.

+
+
+
Parameters
+
    +
  • delay (Optional[float]) – If provided, the number of seconds to wait in the background +before deleting the message. If the deletion fails then it is silently ignored.

  • +
  • silent (bool) – If silent is set to True, the error will not be raised, it will be ignored. +This defaults to False

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have proper permissions to delete the message.

  • +
  • NotFound – The message was deleted already

  • +
  • HTTPException – Deleting the message failed.

  • +
+
+
+
+ +
+
+await publish()
+

This function is a coroutine.

+

Publishes this message to your announcement channel.

+

You must have the send_messages permission to do this.

+

If the message is not your own then the manage_messages +permission is also needed.

+
+
Raises
+
    +
  • Forbidden – You do not have the proper permissions to publish this message.

  • +
  • HTTPException – Publishing the message failed.

  • +
+
+
+
+ +
+
+await pin(*, reason=None)
+

This function is a coroutine.

+

Pins the message.

+

You must have the manage_messages permission to do +this in a non-private channel context.

+
+
Parameters
+

reason (Optional[str]) –

The reason for pinning the message. Shows up on the audit log.

+
+

New in version 1.4.

+
+

+
+
Raises
+
    +
  • Forbidden – You do not have permissions to pin the message.

  • +
  • NotFound – The message or channel was not found or deleted.

  • +
  • HTTPException – Pinning the message failed, probably due to the channel + having more than 50 pinned messages.

  • +
+
+
+
+ +
+
+await unpin(*, reason=None)
+

This function is a coroutine.

+

Unpins the message.

+

You must have the manage_messages permission to do +this in a non-private channel context.

+
+
Parameters
+

reason (Optional[str]) –

The reason for unpinning the message. Shows up on the audit log.

+
+

New in version 1.4.

+
+

+
+
Raises
+
    +
  • Forbidden – You do not have permissions to unpin the message.

  • +
  • NotFound – The message or channel was not found or deleted.

  • +
  • HTTPException – Unpinning the message failed.

  • +
+
+
+
+ +
+
+await add_reaction(emoji)
+

This function is a coroutine.

+

Add a reaction to the message.

+

The emoji may be a unicode emoji or a custom guild Emoji.

+

You must have the read_message_history permission +to use this. If nobody else has reacted to the message using this +emoji, the add_reactions permission is required.

+
+
Parameters
+

emoji (Union[Emoji, Reaction, PartialEmoji, str]) – The emoji to react with.

+
+
Raises
+
    +
  • HTTPException – Adding the reaction failed.

  • +
  • Forbidden – You do not have the proper permissions to react to the message.

  • +
  • NotFound – The emoji you specified was not found.

  • +
  • InvalidArgument – The emoji parameter is invalid.

  • +
+
+
+
+ +
+
+await remove_reaction(emoji, member)
+

This function is a coroutine.

+

Remove a reaction by the member from the message.

+

The emoji may be a unicode emoji or a custom guild Emoji.

+

If the reaction is not your own (i.e. member parameter is not you) then +the manage_messages permission is needed.

+

The member parameter must represent a member and meet +the abc.Snowflake abc.

+
+
Parameters
+
+
+
Raises
+
    +
  • HTTPException – Removing the reaction failed.

  • +
  • Forbidden – You do not have the proper permissions to remove the reaction.

  • +
  • NotFound – The member or emoji you specified was not found.

  • +
  • InvalidArgument – The emoji parameter is invalid.

  • +
+
+
+
+ +
+
+await clear_reaction(emoji)
+

This function is a coroutine.

+

Clears a specific reaction from the message.

+

The emoji may be a unicode emoji or a custom guild Emoji.

+

You need the manage_messages permission to use this.

+
+

New in version 1.3.

+
+
+
Parameters
+

emoji (Union[Emoji, Reaction, PartialEmoji, str]) – The emoji to clear.

+
+
Raises
+
    +
  • HTTPException – Clearing the reaction failed.

  • +
  • Forbidden – You do not have the proper permissions to clear the reaction.

  • +
  • NotFound – The emoji you specified was not found.

  • +
  • InvalidArgument – The emoji parameter is invalid.

  • +
+
+
+
+ +
+
+await clear_reactions()
+

This function is a coroutine.

+

Removes all the reactions from the message.

+

You need the manage_messages permission to use this.

+
+
Raises
+
    +
  • HTTPException – Removing the reactions failed.

  • +
  • Forbidden – You do not have the proper permissions to remove all the reactions.

  • +
+
+
+
+ +
+
+await reply(content=None, **kwargs)
+

This function is a coroutine.

+

A shortcut method to abc.Messageable.send() to reply to the +Message.

+
+

New in version 1.6.

+
+
+
Raises
+
    +
  • HTTPException – Sending the message failed.

  • +
  • Forbidden – You do not have the proper permissions to send the message.

  • +
  • InvalidArgument – The files list is not of the appropriate size or + you specified both file and files.

  • +
+
+
Returns
+

The message that was sent.

+
+
Return type
+

Message

+
+
+
+ +
+
+to_reference(*, fail_if_not_exists=True)
+

Creates a MessageReference from the current message.

+
+

New in version 1.6.

+
+
+
Parameters
+

fail_if_not_exists (bool) –

Whether replying using the message reference should raise HTTPException +if the message no longer exists or Discord could not fetch the message.

+
+

New in version 1.7.

+
+

+
+
Returns
+

The reference to this message.

+
+
Return type
+

MessageReference

+
+
+
+ +
+
+property created_at
+

The partial message’s creation time in UTC.

+
+
Type
+

datetime.datetime

+
+
+
+ +
+
+guild
+

The guild that the partial message belongs to, if applicable.

+
+
Type
+

Optional[Guild]

+
+
+
+ +
+
+await fetch()
+

This function is a coroutine.

+

Fetches the partial message to a full Message.

+
+
Raises
+
    +
  • NotFound – The message was not found.

  • +
  • Forbidden – You do not have the permissions required to get a message.

  • +
  • HTTPException – Retrieving the message failed.

  • +
+
+
Returns
+

The full message.

+
+
Return type
+

Message

+
+
+
+ +
+
+await edit(**fields)
+

This function is a coroutine.

+

Edits the message.

+

The content must be able to be transformed into a string via str(content).

+
+

Changed in version 1.7: discord.Message is returned instead of None if an edit took place.

+
+
+
Parameters
+
    +
  • content (Optional[str]) – The new content to replace the message with. +Could be None to remove the content.

  • +
  • embed (Optional[Embed]) – The new embed to replace the original with. +Could be None to remove the embed.

  • +
  • suppress (bool) – Whether to suppress embeds for the message. This removes +all the embeds if set to True. If set to False +this brings the embeds back if they were suppressed. +Using this parameter requires manage_messages.

  • +
  • delete_after (Optional[float]) – If provided, the number of seconds to wait in the background +before deleting the message we just edited. If the deletion fails, +then it is silently ignored.

  • +
  • allowed_mentions (Optional[AllowedMentions]) – Controls the mentions being processed in this message. If this is +passed, then the object is merged with allowed_mentions. +The merging behaviour only overrides attributes that have been explicitly passed +to the object, otherwise it uses the attributes set in allowed_mentions. +If no object is passed at all then the defaults given by allowed_mentions +are used instead.

  • +
  • view (Optional[View]) –

    The updated view to update this message with. If None is passed then +the view is removed.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
    +
  • NotFound – The message was not found.

  • +
  • HTTPException – Editing the message failed.

  • +
  • Forbidden – Tried to suppress a message without permissions or + edited a message’s content or embed that isn’t yours.

  • +
+
+
Returns
+

The message that was edited.

+
+
Return type
+

Optional[Message]

+
+
+
+ +
+ +
+
+

SelectOption

+
+ +Attributes +
+
+class discord.SelectOption(*, label, value=..., description=None, emoji=None, default=False)
+

Represents a select menu’s option.

+

These can be created by users.

+
+

New in version 2.0.

+
+
+
+label
+

The label of the option. This is displayed to users. +Can only be up to 100 characters.

+
+
Type
+

str

+
+
+
+ +
+
+value
+

The value of the option. This is not displayed to users. +If not provided when constructed then it defaults to the +label. Can only be up to 100 characters.

+
+
Type
+

str

+
+
+
+ +
+
+description
+

An additional description of the option, if any. +Can only be up to 100 characters.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+emoji
+

The emoji of the option, if available.

+
+
Type
+

Optional[Union[str, Emoji, PartialEmoji]]

+
+
+
+ +
+
+default
+

Whether this option is selected by default.

+
+
Type
+

bool

+
+
+
+ +
+ +
+
+

Intents

+
+
+class discord.Intents(**kwargs)
+

Wraps up a Discord gateway intent flag.

+

Similar to Permissions, the properties provided are two way. +You can set and retrieve individual bits using the properties as if they +were regular bools.

+

To construct an object you can pass keyword arguments denoting the flags +to enable or disable.

+

This is used to disable certain gateway features that are unnecessary to +run your bot. To make use of this, it is passed to the intents keyword +argument of Client.

+
+

New in version 1.5.

+
+
+
+
+x == y
+

Checks if two flags are equal.

+
+ +
+
+x != y
+

Checks if two flags are not equal.

+
+ +
+
+hash(x)
+

Return the flag’s hash.

+
+ +
+
+iter(x)
+

Returns an iterator of (name, value) pairs. This allows it +to be, for example, constructed as a dict or a list of pairs.

+
+ +
+
+
+value
+

The raw value. You should query flags via the properties +rather than using this raw value.

+
+
Type
+

int

+
+
+
+ +
+
+classmethod all()
+

A factory method that creates a Intents with everything enabled.

+
+ +
+
+classmethod none()
+

A factory method that creates a Intents with everything disabled.

+
+ +
+
+guilds
+

Whether guild related events are enabled.

+

This corresponds to the following events:

+ +

This also corresponds to the following attributes and classes in terms of cache:

+ +

It is highly advisable to leave this intent enabled for your bot to function.

+
+
Type
+

bool

+
+
+
+ +
+
+members
+

Whether guild member related events are enabled.

+

This corresponds to the following events:

+ +

This also corresponds to the following attributes and classes in terms of cache:

+ +

For more information go to the member intent documentation.

+
+

Note

+

Currently, this requires opting in explicitly via the developer portal as well. +Bots in over 100 guilds will need to apply to Discord for verification.

+
+
+
Type
+

bool

+
+
+
+ +
+
+bans
+

Whether guild ban related events are enabled.

+

This corresponds to the following events:

+ +

This does not correspond to any attributes or classes in the library in terms of cache.

+
+
Type
+

bool

+
+
+
+ +
+
+emojis
+

Alias of emojis_and_stickers.

+
+

Changed in version 2.0: Changed to an alias.

+
+
+
Type
+

bool

+
+
+
+ +
+
+emojis_and_stickers
+

Whether guild emoji and sticker related events are enabled.

+
+

New in version 2.0.

+
+

This corresponds to the following events:

+ +

This also corresponds to the following attributes and classes in terms of cache:

+ +
+
Type
+

bool

+
+
+
+ +
+
+integrations
+

Whether guild integration related events are enabled.

+

This corresponds to the following events:

+ +

This does not correspond to any attributes or classes in the library in terms of cache.

+
+
Type
+

bool

+
+
+
+ +
+
+webhooks
+

Whether guild webhook related events are enabled.

+

This corresponds to the following events:

+ +

This does not correspond to any attributes or classes in the library in terms of cache.

+
+
Type
+

bool

+
+
+
+ +
+
+invites
+

Whether guild invite related events are enabled.

+

This corresponds to the following events:

+ +

This does not correspond to any attributes or classes in the library in terms of cache.

+
+
Type
+

bool

+
+
+
+ +
+
+voice_states
+

Whether guild voice state related events are enabled.

+

This corresponds to the following events:

+ +

This also corresponds to the following attributes and classes in terms of cache:

+ +
+

Note

+

This intent is required to connect to voice.

+
+
+
Type
+

bool

+
+
+
+ +
+
+presences
+

Whether guild presence related events are enabled.

+

This corresponds to the following events:

+ +

This also corresponds to the following attributes and classes in terms of cache:

+ +

For more information go to the presence intent documentation.

+
+

Note

+

Currently, this requires opting in explicitly via the developer portal as well. +Bots in over 100 guilds will need to apply to Discord for verification.

+
+
+
Type
+

bool

+
+
+
+ +
+
+messages
+

Whether guild and direct message related events are enabled.

+

This is a shortcut to set or get both guild_messages and dm_messages.

+

This corresponds to the following events:

+ +

This also corresponds to the following attributes and classes in terms of cache:

+ +

Note that due to an implicit relationship this also corresponds to the following events:

+ +
+
Type
+

bool

+
+
+
+ +
+
+guild_messages
+

Whether guild message related events are enabled.

+

See also dm_messages for DMs or messages for both.

+

This corresponds to the following events:

+ +

This also corresponds to the following attributes and classes in terms of cache:

+ +

Note that due to an implicit relationship this also corresponds to the following events:

+ +
+
Type
+

bool

+
+
+
+ +
+
+dm_messages
+

Whether direct message related events are enabled.

+

See also guild_messages for guilds or messages for both.

+

This corresponds to the following events:

+ +

This also corresponds to the following attributes and classes in terms of cache:

+ +

Note that due to an implicit relationship this also corresponds to the following events:

+ +
+
Type
+

bool

+
+
+
+ +
+
+reactions
+

Whether guild and direct message reaction related events are enabled.

+

This is a shortcut to set or get both guild_reactions and dm_reactions.

+

This corresponds to the following events:

+ +

This also corresponds to the following attributes and classes in terms of cache:

+ +
+
Type
+

bool

+
+
+
+ +
+
+guild_reactions
+

Whether guild message reaction related events are enabled.

+

See also dm_reactions for DMs or reactions for both.

+

This corresponds to the following events:

+ +

This also corresponds to the following attributes and classes in terms of cache:

+ +
+
Type
+

bool

+
+
+
+ +
+
+dm_reactions
+

Whether direct message reaction related events are enabled.

+

See also guild_reactions for guilds or reactions for both.

+

This corresponds to the following events:

+ +

This also corresponds to the following attributes and classes in terms of cache:

+ +
+
Type
+

bool

+
+
+
+ +
+
+typing
+

Whether guild and direct message typing related events are enabled.

+

This is a shortcut to set or get both guild_typing and dm_typing.

+

This corresponds to the following events:

+ +

This does not correspond to any attributes or classes in the library in terms of cache.

+
+
Type
+

bool

+
+
+
+ +
+
+guild_typing
+

Whether guild and direct message typing related events are enabled.

+

See also dm_typing for DMs or typing for both.

+

This corresponds to the following events:

+ +

This does not correspond to any attributes or classes in the library in terms of cache.

+
+
Type
+

bool

+
+
+
+ +
+
+dm_typing
+

Whether guild and direct message typing related events are enabled.

+

See also guild_typing for guilds or typing for both.

+

This corresponds to the following events:

+ +

This does not correspond to any attributes or classes in the library in terms of cache.

+
+
Type
+

bool

+
+
+
+ +
+ +
+
+

MemberCacheFlags

+
+ +Attributes +
+
+class discord.MemberCacheFlags(**kwargs)
+

Controls the library’s cache policy when it comes to members.

+

This allows for finer grained control over what members are cached. +Note that the bot’s own member is always cached. This class is passed +to the member_cache_flags parameter in Client.

+

Due to a quirk in how Discord works, in order to ensure proper cleanup +of cache resources it is recommended to have Intents.members +enabled. Otherwise the library cannot know when a member leaves a guild and +is thus unable to cleanup after itself.

+

To construct an object you can pass keyword arguments denoting the flags +to enable or disable.

+

The default value is all flags enabled.

+
+

New in version 1.5.

+
+
+
+
+x == y
+

Checks if two flags are equal.

+
+ +
+
+x != y
+

Checks if two flags are not equal.

+
+ +
+
+hash(x)
+

Return the flag’s hash.

+
+ +
+
+iter(x)
+

Returns an iterator of (name, value) pairs. This allows it +to be, for example, constructed as a dict or a list of pairs.

+
+ +
+
+
+value
+

The raw value. You should query flags via the properties +rather than using this raw value.

+
+
Type
+

int

+
+
+
+ +
+
+classmethod all()
+

A factory method that creates a MemberCacheFlags with everything enabled.

+
+ +
+
+classmethod none()
+

A factory method that creates a MemberCacheFlags with everything disabled.

+
+ +
+
+voice
+

Whether to cache members that are in voice.

+

This requires Intents.voice_states.

+

Members that leave voice are no longer cached.

+
+
Type
+

bool

+
+
+
+ +
+
+joined
+

Whether to cache members that joined the guild +or are chunked as part of the initial log in flow.

+

This requires Intents.members.

+

Members that leave the guild are no longer cached.

+
+
Type
+

bool

+
+
+
+ +
+
+classmethod from_intents(intents)
+

A factory method that creates a MemberCacheFlags based on +the currently selected Intents.

+
+
Parameters
+

intents (Intents) – The intents to select from.

+
+
Returns
+

The resulting member cache flags.

+
+
Return type
+

MemberCacheFlags

+
+
+
+ +
+ +
+
+

ApplicationFlags

+
+
+class discord.ApplicationFlags(**kwargs)
+

Wraps up the Discord Application flags.

+
+
+
+x == y
+

Checks if two ApplicationFlags are equal.

+
+ +
+
+x != y
+

Checks if two ApplicationFlags are not equal.

+
+ +
+
+hash(x)
+

Return the flag’s hash.

+
+ +
+
+iter(x)
+

Returns an iterator of (name, value) pairs. This allows it +to be, for example, constructed as a dict or a list of pairs. +Note that aliases are not shown.

+
+ +
+
+

New in version 2.0.

+
+
+
+value
+

The raw value. You should query flags via the properties +rather than using this raw value.

+
+
Type
+

int

+
+
+
+ +
+
+gateway_presence
+

Returns True if the application is verified and is allowed to +receive presence information over the gateway.

+
+
Type
+

bool

+
+
+
+ +
+
+gateway_presence_limited
+

Returns True if the application is allowed to receive limited +presence information over the gateway.

+
+
Type
+

bool

+
+
+
+ +
+
+gateway_guild_members
+

Returns True if the application is verified and is allowed to +receive guild members information over the gateway.

+
+
Type
+

bool

+
+
+
+ +
+
+gateway_guild_members_limited
+

Returns True if the application is allowed to receive limited +guild members information over the gateway.

+
+
Type
+

bool

+
+
+
+ +
+
+verification_pending_guild_limit
+

Returns True if the application is currently pending verification +and has hit the guild limit.

+
+
Type
+

bool

+
+
+
+ +
+
+embedded
+

Returns True if the application is embedded within the Discord client.

+
+
Type
+

bool

+
+
+
+ +
+ +
+
+

File

+
+ +Attributes +
+
+class discord.File(fp, filename=None, *, spoiler=False)
+

A parameter object used for abc.Messageable.send() +for sending file objects.

+
+

Note

+

File objects are single use and are not meant to be reused in +multiple abc.Messageable.send()s.

+
+
+
+fp
+

A file-like object opened in binary mode and read mode +or a filename representing a file in the hard drive to +open.

+
+

Note

+

If the file-like object passed is opened via open then the +modes ‘rb’ should be used.

+

To pass binary data, consider usage of io.BytesIO.

+
+
+
Type
+

Union[os.PathLike, io.BufferedIOBase]

+
+
+
+ +
+
+filename
+

The filename to display when uploading to Discord. +If this is not given then it defaults to fp.name or if fp is +a string then the filename will default to the string given.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+spoiler
+

Whether the attachment is a spoiler.

+
+
Type
+

bool

+
+
+
+ +
+ +
+
+

Colour

+
+
+class discord.Colour(value)
+

Represents a Discord role colour. This class is similar +to a (red, green, blue) tuple.

+

There is an alias for this called Color.

+
+
+
+x == y
+

Checks if two colours are equal.

+
+ +
+
+x != y
+

Checks if two colours are not equal.

+
+ +
+
+hash(x)
+

Return the colour’s hash.

+
+ +
+
+str(x)
+

Returns the hex format for the colour.

+
+ +
+
+int(x)
+

Returns the raw colour value.

+
+ +
+
+
+value
+

The raw integer colour value.

+
+
Type
+

int

+
+
+
+ +
+
+property r
+

Returns the red component of the colour.

+
+
Type
+

int

+
+
+
+ +
+
+property g
+

Returns the green component of the colour.

+
+
Type
+

int

+
+
+
+ +
+
+property b
+

Returns the blue component of the colour.

+
+
Type
+

int

+
+
+
+ +
+
+to_rgb()
+

Tuple[int, int, int]: Returns an (r, g, b) tuple representing the colour.

+
+ +
+
+classmethod from_rgb(r, g, b)
+

Constructs a Colour from an RGB tuple.

+
+ +
+
+classmethod from_hsv(h, s, v)
+

Constructs a Colour from an HSV tuple.

+
+ +
+
+classmethod default()
+

A factory method that returns a Colour with a value of 0.

+
+ +
+
+classmethod random(*, seed=None)
+

A factory method that returns a Colour with a random hue.

+
+

Note

+

The random algorithm works by choosing a colour with a random hue but +with maxed out saturation and value.

+
+
+

New in version 1.6.

+
+
+
Parameters
+

seed (Optional[Union[int, str, float, bytes, bytearray]]) –

The seed to initialize the RNG with. If None is passed the default RNG is used.

+
+

New in version 1.7.

+
+

+
+
+
+ +
+
+classmethod teal()
+

A factory method that returns a Colour with a value of 0x1abc9c.

+
+ +
+
+classmethod dark_teal()
+

A factory method that returns a Colour with a value of 0x11806a.

+
+ +
+
+classmethod brand_green()
+

A factory method that returns a Colour with a value of 0x57F287.

+
+

New in version 2.0.

+
+
+ +
+
+classmethod green()
+

A factory method that returns a Colour with a value of 0x2ecc71.

+
+ +
+
+classmethod dark_green()
+

A factory method that returns a Colour with a value of 0x1f8b4c.

+
+ +
+
+classmethod blue()
+

A factory method that returns a Colour with a value of 0x3498db.

+
+ +
+
+classmethod dark_blue()
+

A factory method that returns a Colour with a value of 0x206694.

+
+ +
+
+classmethod purple()
+

A factory method that returns a Colour with a value of 0x9b59b6.

+
+ +
+
+classmethod dark_purple()
+

A factory method that returns a Colour with a value of 0x71368a.

+
+ +
+
+classmethod magenta()
+

A factory method that returns a Colour with a value of 0xe91e63.

+
+ +
+
+classmethod dark_magenta()
+

A factory method that returns a Colour with a value of 0xad1457.

+
+ +
+
+classmethod gold()
+

A factory method that returns a Colour with a value of 0xf1c40f.

+
+ +
+
+classmethod dark_gold()
+

A factory method that returns a Colour with a value of 0xc27c0e.

+
+ +
+
+classmethod orange()
+

A factory method that returns a Colour with a value of 0xe67e22.

+
+ +
+
+classmethod dark_orange()
+

A factory method that returns a Colour with a value of 0xa84300.

+
+ +
+
+classmethod brand_red()
+

A factory method that returns a Colour with a value of 0xED4245.

+
+

New in version 2.0.

+
+
+ +
+
+classmethod red()
+

A factory method that returns a Colour with a value of 0xe74c3c.

+
+ +
+
+classmethod nitro_booster()
+

A factory method that returns a Colour with a value of 0xf47fff.

+
+

New in version 2.0.

+
+
+ +
+
+classmethod dark_red()
+

A factory method that returns a Colour with a value of 0x992d22.

+
+ +
+
+classmethod lighter_grey()
+

A factory method that returns a Colour with a value of 0x95a5a6.

+
+ +
+
+classmethod lighter_gray()
+

A factory method that returns a Colour with a value of 0x95a5a6.

+
+ +
+
+classmethod dark_grey()
+

A factory method that returns a Colour with a value of 0x607d8b.

+
+ +
+
+classmethod dark_gray()
+

A factory method that returns a Colour with a value of 0x607d8b.

+
+ +
+
+classmethod light_grey()
+

A factory method that returns a Colour with a value of 0x979c9f.

+
+ +
+
+classmethod light_gray()
+

A factory method that returns a Colour with a value of 0x979c9f.

+
+ +
+
+classmethod darker_grey()
+

A factory method that returns a Colour with a value of 0x546e7a.

+
+ +
+
+classmethod darker_gray()
+

A factory method that returns a Colour with a value of 0x546e7a.

+
+ +
+
+classmethod og_blurple()
+

A factory method that returns a Colour with a value of 0x7289da.

+
+ +
+
+classmethod blurple()
+

A factory method that returns a Colour with a value of 0x5865F2.

+
+ +
+
+classmethod greyple()
+

A factory method that returns a Colour with a value of 0x99aab5.

+
+ +
+
+classmethod dark_theme()
+

A factory method that returns a Colour with a value of 0x36393F. +This will appear transparent on Discord’s dark theme.

+
+

New in version 1.5.

+
+
+ +
+
+classmethod fuchsia()
+

A factory method that returns a Colour with a value of 0xEB459E.

+
+

New in version 2.0.

+
+
+ +
+
+classmethod yellow()
+

A factory method that returns a Colour with a value of 0xFEE75C.

+
+

New in version 2.0.

+
+
+ +
+
+classmethod dark_blurple()
+

A factory method that returns a Colour with a value of 0x4E5D94. +This is the original Dark Blurple branding.

+
+

New in version 2.0.

+
+
+ +
+ +
+
+

BaseActivity

+
+ +Attributes +
+
+class discord.BaseActivity(**kwargs)
+

The base activity that all user-settable activities inherit from. +A user-settable activity is one that can be used in Client.change_presence().

+

The following types currently count as user-settable:

+ +

Note that although these types are considered user-settable by the library, +Discord typically ignores certain combinations of activity depending on +what is currently set. This behaviour may change in the future so there are +no guarantees on whether Discord will actually let you set these types.

+
+

New in version 1.3.

+
+
+
+property created_at
+

When the user started doing this activity in UTC.

+
+

New in version 1.3.

+
+
+
Type
+

Optional[datetime.datetime]

+
+
+
+ +
+ +
+
+

Activity

+
+
+class discord.Activity(**kwargs)
+

Represents an activity in Discord.

+

This could be an activity such as streaming, playing, listening +or watching.

+

For memory optimisation purposes, some activities are offered in slimmed +down versions:

+ +
+
+application_id
+

The application ID of the game.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+name
+

The name of the activity.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+url
+

A stream URL that the activity could be doing.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+type
+

The type of activity currently being done.

+
+
Type
+

ActivityType

+
+
+
+ +
+
+state
+

The user’s current state. For example, “In Game”.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+details
+

The detail of the user’s current activity.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+timestamps
+

A dictionary of timestamps. It contains the following optional keys:

+
    +
  • start: Corresponds to when the user started doing the +activity in milliseconds since Unix epoch.

  • +
  • end: Corresponds to when the user will finish doing the +activity in milliseconds since Unix epoch.

  • +
+
+
Type
+

dict

+
+
+
+ +
+
+assets
+

A dictionary representing the images and their hover text of an activity. +It contains the following optional keys:

+
    +
  • large_image: A string representing the ID for the large image asset.

  • +
  • large_text: A string representing the text when hovering over the large image asset.

  • +
  • small_image: A string representing the ID for the small image asset.

  • +
  • small_text: A string representing the text when hovering over the small image asset.

  • +
+
+
Type
+

dict

+
+
+
+ +
+
+party
+

A dictionary representing the activity party. It contains the following optional keys:

+
    +
  • id: A string representing the party ID.

  • +
  • size: A list of up to two integer elements denoting (current_size, maximum_size).

  • +
+
+
Type
+

dict

+
+
+
+ +
+
+buttons
+

An list of dictionaries representing custom buttons shown in a rich presence. +Each dictionary contains the following keys:

+
    +
  • label: A string representing the text shown on the button.

  • +
  • url: A string representing the URL opened upon clicking the button.

  • +
+
+

New in version 2.0.

+
+
+
Type
+

List[dict]

+
+
+
+ +
+
+emoji
+

The emoji that belongs to this activity.

+
+
Type
+

Optional[PartialEmoji]

+
+
+
+ +
+
+property start
+

When the user started doing this activity in UTC, if applicable.

+
+
Type
+

Optional[datetime.datetime]

+
+
+
+ +
+
+property end
+

When the user will stop doing this activity in UTC, if applicable.

+
+
Type
+

Optional[datetime.datetime]

+
+
+
+ +
+
+property large_image_url
+

Returns a URL pointing to the large image asset of this activity if applicable.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+property small_image_url
+

Returns a URL pointing to the small image asset of this activity if applicable.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+property large_image_text
+

Returns the large image asset hover text of this activity if applicable.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+property small_image_text
+

Returns the small image asset hover text of this activity if applicable.

+
+
Type
+

Optional[str]

+
+
+
+ +
+ +
+
+

Game

+
+ +Attributes +
+
+class discord.Game(name, **extra)
+

A slimmed down version of Activity that represents a Discord game.

+

This is typically displayed via Playing on the official Discord client.

+
+
+
+x == y
+

Checks if two games are equal.

+
+ +
+
+x != y
+

Checks if two games are not equal.

+
+ +
+
+hash(x)
+

Returns the game’s hash.

+
+ +
+
+str(x)
+

Returns the game’s name.

+
+ +
+
+
Parameters
+

name (str) – The game’s name.

+
+
+
+
+name
+

The game’s name.

+
+
Type
+

str

+
+
+
+ +
+
+property type
+

Returns the game’s type. This is for compatibility with Activity.

+

It always returns ActivityType.playing.

+
+
Type
+

ActivityType

+
+
+
+ +
+
+property start
+

When the user started playing this game in UTC, if applicable.

+
+
Type
+

Optional[datetime.datetime]

+
+
+
+ +
+
+property end
+

When the user will stop playing this game in UTC, if applicable.

+
+
Type
+

Optional[datetime.datetime]

+
+
+
+ +
+ +
+
+

Streaming

+
+ +Attributes +
+
+class discord.Streaming(*, name, url, **extra)
+

A slimmed down version of Activity that represents a Discord streaming status.

+

This is typically displayed via Streaming on the official Discord client.

+
+
+
+x == y
+

Checks if two streams are equal.

+
+ +
+
+x != y
+

Checks if two streams are not equal.

+
+ +
+
+hash(x)
+

Returns the stream’s hash.

+
+ +
+
+str(x)
+

Returns the stream’s name.

+
+ +
+
+
+platform
+

Where the user is streaming from (ie. YouTube, Twitch).

+
+

New in version 1.3.

+
+
+
Type
+

Optional[str]

+
+
+
+ +
+
+name
+

The stream’s name.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+details
+

An alias for name

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+game
+

The game being streamed.

+
+

New in version 1.3.

+
+
+
Type
+

Optional[str]

+
+
+
+ +
+
+url
+

The stream’s URL.

+
+
Type
+

str

+
+
+
+ +
+
+assets
+

A dictionary comprising of similar keys than those in Activity.assets.

+
+
Type
+

dict

+
+
+
+ +
+
+property type
+

Returns the game’s type. This is for compatibility with Activity.

+

It always returns ActivityType.streaming.

+
+
Type
+

ActivityType

+
+
+
+ +
+
+property twitch_name
+

If provided, the twitch name of the user streaming.

+

This corresponds to the large_image key of the Streaming.assets +dictionary if it starts with twitch:. Typically set by the Discord client.

+
+
Type
+

Optional[str]

+
+
+
+ +
+ +
+
+

CustomActivity

+
+ +Attributes +
+
+class discord.CustomActivity(name, *, emoji=None, **extra)
+

Represents a Custom activity from Discord.

+
+
+
+x == y
+

Checks if two activities are equal.

+
+ +
+
+x != y
+

Checks if two activities are not equal.

+
+ +
+
+hash(x)
+

Returns the activity’s hash.

+
+ +
+
+str(x)
+

Returns the custom status text.

+
+ +
+
+

New in version 1.3.

+
+
+
+name
+

The custom activity’s name.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+emoji
+

The emoji to pass to the activity, if any.

+
+
Type
+

Optional[PartialEmoji]

+
+
+
+ +
+
+property type
+

Returns the activity’s type. This is for compatibility with Activity.

+

It always returns ActivityType.custom.

+
+
Type
+

ActivityType

+
+
+
+ +
+ +
+
+

Permissions

+
+
+class discord.Permissions(permissions=0, **kwargs)
+

Wraps up the Discord permission value.

+

The properties provided are two way. You can set and retrieve individual +bits using the properties as if they were regular bools. This allows +you to edit permissions.

+
+

Changed in version 1.3: You can now use keyword arguments to initialize Permissions +similar to update().

+
+
+
+
+x == y
+

Checks if two permissions are equal.

+
+ +
+
+x != y
+

Checks if two permissions are not equal.

+
+ +
+
+x <= y
+

Checks if a permission is a subset of another permission.

+
+ +
+
+x >= y
+

Checks if a permission is a superset of another permission.

+
+ +
+
+x < y
+

Checks if a permission is a strict subset of another permission.

+
+ +
+
+x > y
+

Checks if a permission is a strict superset of another permission.

+
+ +
+
+hash(x)
+

Return the permission’s hash.

+
+ +
+
+iter(x)
+

Returns an iterator of (perm, value) pairs. This allows it +to be, for example, constructed as a dict or a list of pairs. +Note that aliases are not shown.

+
+ +
+
+
+value
+

The raw value. This value is a bit array field of a 53-bit integer +representing the currently available permissions. You should query +permissions via the properties rather than using this raw value.

+
+
Type
+

int

+
+
+
+ +
+
+is_subset(other)
+

Returns True if self has the same or fewer permissions as other.

+
+ +
+
+is_superset(other)
+

Returns True if self has the same or more permissions as other.

+
+ +
+
+is_strict_subset(other)
+

Returns True if the permissions on other are a strict subset of those on self.

+
+ +
+
+is_strict_superset(other)
+

Returns True if the permissions on other are a strict superset of those on self.

+
+ +
+
+classmethod none()
+

A factory method that creates a Permissions with all +permissions set to False.

+
+ +
+
+classmethod all()
+

A factory method that creates a Permissions with all +permissions set to True.

+
+ +
+
+classmethod all_channel()
+

A Permissions with all channel-specific permissions set to +True and the guild-specific ones set to False. The guild-specific +permissions are currently:

+ +
+

Changed in version 1.7: Added stream, priority_speaker and use_slash_commands permissions.

+
+ +
+ +
+
+classmethod general()
+

A factory method that creates a Permissions with all +“General” permissions from the official Discord UI set to True.

+
+

Changed in version 1.7: Permission read_messages is now included in the general permissions, but +permissions administrator, create_instant_invite, kick_members, +ban_members, change_nickname and manage_nicknames are +no longer part of the general permissions.

+
+
+ +
+
+classmethod membership()
+

A factory method that creates a Permissions with all +“Membership” permissions from the official Discord UI set to True.

+
+

New in version 1.7.

+
+
+ +
+
+classmethod text()
+

A factory method that creates a Permissions with all +“Text” permissions from the official Discord UI set to True.

+
+

Changed in version 1.7: Permission read_messages is no longer part of the text permissions. +Added use_slash_commands permission.

+
+ +
+ +
+
+classmethod voice()
+

A factory method that creates a Permissions with all +“Voice” permissions from the official Discord UI set to True.

+
+ +
+
+classmethod stage()
+

A factory method that creates a Permissions with all +“Stage Channel” permissions from the official Discord UI set to True.

+
+

New in version 1.7.

+
+
+ +
+
+classmethod stage_moderator()
+

A factory method that creates a Permissions with all +“Stage Moderator” permissions from the official Discord UI set to True.

+
+

New in version 1.7.

+
+
+ +
+
+classmethod advanced()
+

A factory method that creates a Permissions with all +“Advanced” permissions from the official Discord UI set to True.

+
+

New in version 1.7.

+
+
+ +
+
+update(**kwargs)
+

Bulk updates this permission object.

+

Allows you to set multiple attributes by using keyword +arguments. The names must be equivalent to the properties +listed. Extraneous key/value pairs will be silently ignored.

+
+
Parameters
+

**kwargs – A list of key/value pairs to bulk update permissions with.

+
+
+
+ +
+
+create_instant_invite
+

Returns True if the user can create instant invites.

+
+
Type
+

bool

+
+
+
+ +
+
+kick_members
+

Returns True if the user can kick users from the guild.

+
+
Type
+

bool

+
+
+
+ +
+
+ban_members
+

Returns True if a user can ban users from the guild.

+
+
Type
+

bool

+
+
+
+ +
+
+administrator
+

Returns True if a user is an administrator. This role overrides all other permissions.

+

This also bypasses all channel-specific overrides.

+
+
Type
+

bool

+
+
+
+ +
+
+admin
+

An alias for administrator. +.. versionadded:: 2.0

+
+
Type
+

bool

+
+
+
+ +
+
+manage_channels
+

Returns True if a user can edit, delete, or create channels in the guild.

+

This also corresponds to the “Manage Channel” channel-specific override.

+
+
Type
+

bool

+
+
+
+ +
+
+manage_guild
+

Returns True if a user can edit guild properties.

+
+
Type
+

bool

+
+
+
+ +
+
+add_reactions
+

Returns True if a user can add reactions to messages.

+
+
Type
+

bool

+
+
+
+ +
+
+view_audit_log
+

Returns True if a user can view the guild’s audit log.

+
+
Type
+

bool

+
+
+
+ +
+
+priority_speaker
+

Returns True if a user can be more easily heard while talking.

+
+
Type
+

bool

+
+
+
+ +
+
+stream
+

Returns True if a user can stream in a voice channel.

+
+
Type
+

bool

+
+
+
+ +
+
+read_messages
+

Returns True if a user can read messages from all or specific text channels.

+
+
Type
+

bool

+
+
+
+ +
+
+view_channel
+

An alias for read_messages.

+
+

New in version 1.3.

+
+
+
Type
+

bool

+
+
+
+ +
+
+send_messages
+

Returns True if a user can send messages from all or specific text channels.

+
+
Type
+

bool

+
+
+
+ +
+
+send_tts_messages
+

Returns True if a user can send TTS messages from all or specific text channels.

+
+
Type
+

bool

+
+
+
+ +
+
+manage_messages
+

Returns True if a user can delete or pin messages in a text channel.

+
+

Note

+

Note that there are currently no ways to edit other people’s messages.

+
+
+
Type
+

bool

+
+
+
+ +
+ +

Returns True if a user’s messages will automatically be embedded by Discord.

+
+
Type
+

bool

+
+
+
+ +
+
+attach_files
+

Returns True if a user can send files in their messages.

+
+
Type
+

bool

+
+
+
+ +
+
+read_message_history
+

Returns True if a user can read a text channel’s previous messages.

+
+
Type
+

bool

+
+
+
+ +
+
+mention_everyone
+

Returns True if a user’s @everyone or @here will mention everyone in the text channel.

+
+
Type
+

bool

+
+
+
+ +
+
+external_emojis
+

Returns True if a user can use emojis from other guilds.

+
+
Type
+

bool

+
+
+
+ +
+
+use_external_emojis
+

An alias for external_emojis.

+
+

New in version 1.3.

+
+
+
Type
+

bool

+
+
+
+ +
+
+view_guild_insights
+

Returns True if a user can view the guild’s insights.

+
+

New in version 1.3.

+
+
+
Type
+

bool

+
+
+
+ +
+
+connect
+

Returns True if a user can connect to a voice channel.

+
+
Type
+

bool

+
+
+
+ +
+
+speak
+

Returns True if a user can speak in a voice channel.

+
+
Type
+

bool

+
+
+
+ +
+
+mute_members
+

Returns True if a user can mute other users.

+
+
Type
+

bool

+
+
+
+ +
+
+deafen_members
+

Returns True if a user can deafen other users.

+
+
Type
+

bool

+
+
+
+ +
+
+move_members
+

Returns True if a user can move users between other voice channels.

+
+
Type
+

bool

+
+
+
+ +
+
+use_voice_activation
+

Returns True if a user can use voice activation in voice channels.

+
+
Type
+

bool

+
+
+
+ +
+
+change_nickname
+

Returns True if a user can change their nickname in the guild.

+
+
Type
+

bool

+
+
+
+ +
+
+manage_nicknames
+

Returns True if a user can change other user’s nickname in the guild.

+
+
Type
+

bool

+
+
+
+ +
+
+manage_roles
+

Returns True if a user can create or edit roles less than their role’s position.

+

This also corresponds to the “Manage Permissions” channel-specific override.

+
+
Type
+

bool

+
+
+
+ +
+
+manage_permissions
+

An alias for manage_roles.

+
+

New in version 1.3.

+
+
+
Type
+

bool

+
+
+
+ +
+
+manage_webhooks
+

Returns True if a user can create, edit, or delete webhooks.

+
+
Type
+

bool

+
+
+
+ +
+
+manage_emojis
+

Returns True if a user can create, edit, or delete emojis.

+
+
Type
+

bool

+
+
+
+ +
+
+manage_emojis_and_stickers
+

An alias for manage_emojis.

+
+

New in version 2.0.

+
+
+
Type
+

bool

+
+
+
+ +
+
+use_slash_commands
+

Returns True if a user can use slash commands.

+
+

New in version 1.7.

+
+
+
Type
+

bool

+
+
+
+ +
+
+request_to_speak
+

Returns True if a user can request to speak in a stage channel.

+
+

New in version 1.7.

+
+
+
Type
+

bool

+
+
+
+ +
+
+manage_events
+

Returns True if a user can manage guild events.

+
+

New in version 2.0.

+
+
+
Type
+

bool

+
+
+
+ +
+
+manage_threads
+

Returns True if a user can manage threads.

+
+

New in version 2.0.

+
+
+
Type
+

bool

+
+
+
+ +
+
+create_public_threads
+

Returns True if a user can create public threads.

+
+

New in version 2.0.

+
+
+
Type
+

bool

+
+
+
+ +
+
+create_private_threads
+

Returns True if a user can create private threads.

+
+

New in version 2.0.

+
+
+
Type
+

bool

+
+
+
+ +
+
+external_stickers
+

Returns True if a user can use stickers from other guilds.

+
+

New in version 2.0.

+
+
+
Type
+

bool

+
+
+
+ +
+
+use_external_stickers
+

An alias for external_stickers.

+
+

New in version 2.0.

+
+
+
Type
+

bool

+
+
+
+ +
+
+send_messages_in_threads
+

Returns True if a user can send messages in threads.

+
+

New in version 2.0.

+
+
+
Type
+

bool

+
+
+
+ +
+ +
+
+

PermissionOverwrite

+
+ +Methods +
+
+class discord.PermissionOverwrite(**kwargs)
+

A type that is used to represent a channel specific permission.

+

Unlike a regular Permissions, the default value of a +permission is equivalent to None and not False. Setting +a value to False is explicitly denying that permission, +while setting a value to True is explicitly allowing +that permission.

+

The values supported by this are the same as Permissions +with the added possibility of it being set to None.

+
+
+
+x == y
+

Checks if two overwrites are equal.

+
+ +
+
+x != y
+

Checks if two overwrites are not equal.

+
+ +
+
+iter(x)
+

Returns an iterator of (perm, value) pairs. This allows it +to be, for example, constructed as a dict or a list of pairs. +Note that aliases are not shown.

+
+ +
+
+
Parameters
+

**kwargs – Set the value of permissions by their name.

+
+
+
+
+pair()
+

Tuple[Permissions, Permissions]: Returns the (allow, deny) pair from this overwrite.

+
+ +
+
+classmethod from_pair(allow, deny)
+

Creates an overwrite from an allow/deny pair of Permissions.

+
+ +
+
+is_empty()
+

Checks if the permission overwrite is currently empty.

+

An empty permission overwrite is one that has no overwrites set +to True or False.

+
+
Returns
+

Indicates if the overwrite is empty.

+
+
Return type
+

bool

+
+
+
+ +
+
+update(**kwargs)
+

Bulk updates this permission overwrite object.

+

Allows you to set multiple attributes by using keyword +arguments. The names must be equivalent to the properties +listed. Extraneous key/value pairs will be silently ignored.

+
+
Parameters
+

**kwargs – A list of key/value pairs to bulk update with.

+
+
+
+ +
+ +
+
+

ShardInfo

+
+ +Attributes +
+ +Methods +
+
+class discord.ShardInfo
+

A class that gives information and control over a specific shard.

+

You can retrieve this object via AutoShardedClient.get_shard() +or AutoShardedClient.shards.

+
+

New in version 1.4.

+
+
+
+id
+

The shard ID for this shard.

+
+
Type
+

int

+
+
+
+ +
+
+shard_count
+

The shard count for this cluster. If this is None then the bot has not started yet.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+is_closed()
+

bool: Whether the shard connection is currently closed.

+
+ +
+
+await disconnect()
+

This function is a coroutine.

+

Disconnects a shard. When this is called, the shard connection will no +longer be open.

+

If the shard is already disconnected this does nothing.

+
+ +
+
+await reconnect()
+

This function is a coroutine.

+

Disconnects and then connects the shard again.

+
+ +
+
+await connect()
+

This function is a coroutine.

+

Connects a shard. If the shard is already connected this does nothing.

+
+ +
+
+property latency
+

Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard.

+
+
Type
+

float

+
+
+
+ +
+
+is_ws_ratelimited()
+

bool: Whether the websocket is currently rate limited.

+

This can be useful to know when deciding whether you should query members +using HTTP or via the gateway.

+
+

New in version 1.6.

+
+
+ +
+ +
+
+

SystemChannelFlags

+
+
+class discord.SystemChannelFlags
+

Wraps up a Discord system channel flag value.

+

Similar to Permissions, the properties provided are two way. +You can set and retrieve individual bits using the properties as if they +were regular bools. This allows you to edit the system flags easily.

+

To construct an object you can pass keyword arguments denoting the flags +to enable or disable.

+
+
+
+x == y
+

Checks if two flags are equal.

+
+ +
+
+x != y
+

Checks if two flags are not equal.

+
+ +
+
+hash(x)
+

Return the flag’s hash.

+
+ +
+
+iter(x)
+

Returns an iterator of (name, value) pairs. This allows it +to be, for example, constructed as a dict or a list of pairs.

+
+ +
+
+
+value
+

The raw value. This value is a bit array field of a 53-bit integer +representing the currently available flags. You should query +flags via the properties rather than using this raw value.

+
+
Type
+

int

+
+
+
+ +
+
+join_notifications
+

Returns True if the system channel is used for member join notifications.

+
+
Type
+

bool

+
+
+
+ +
+
+premium_subscriptions
+

Returns True if the system channel is used for “Nitro boosting” notifications.

+
+
Type
+

bool

+
+
+
+ +
+
+guild_reminder_notifications
+

Returns True if the system channel is used for server setup helpful tips notifications.

+
+

New in version 2.0.

+
+
+
Type
+

bool

+
+
+
+ +
+ +
+
+

MessageFlags

+
+
+class discord.MessageFlags
+

Wraps up a Discord Message flag value.

+

See SystemChannelFlags.

+
+
+
+x == y
+

Checks if two flags are equal.

+
+ +
+
+x != y
+

Checks if two flags are not equal.

+
+ +
+
+hash(x)
+

Return the flag’s hash.

+
+ +
+
+iter(x)
+

Returns an iterator of (name, value) pairs. This allows it +to be, for example, constructed as a dict or a list of pairs.

+
+ +
+
+

New in version 1.3.

+
+
+
+value
+

The raw value. This value is a bit array field of a 53-bit integer +representing the currently available flags. You should query +flags via the properties rather than using this raw value.

+
+
Type
+

int

+
+
+
+ +
+
+crossposted
+

Returns True if the message is the original crossposted message.

+
+
Type
+

bool

+
+
+
+ +
+
+is_crossposted
+

Returns True if the message was crossposted from another channel.

+
+
Type
+

bool

+
+
+
+ +
+
+suppress_embeds
+

Returns True if the message’s embeds have been suppressed.

+
+
Type
+

bool

+
+
+
+ +
+
+source_message_deleted
+

Returns True if the source message for this crosspost has been deleted.

+
+
Type
+

bool

+
+
+
+ +
+
+urgent
+

Returns True if the source message is an urgent message.

+

An urgent message is one sent by Discord Trust and Safety.

+
+
Type
+

bool

+
+
+
+ +
+
+has_thread
+

Returns True if the source message is associated with a thread.

+
+

New in version 2.0.

+
+
+
Type
+

bool

+
+
+
+ +
+
+ephemeral
+

Returns True if the source message is ephemeral.

+
+

New in version 2.0.

+
+
+
Type
+

bool

+
+
+
+ +
+ +
+
+

PublicUserFlags

+
+
+class discord.PublicUserFlags
+

Wraps up the Discord User Public flags.

+
+
+
+x == y
+

Checks if two PublicUserFlags are equal.

+
+ +
+
+x != y
+

Checks if two PublicUserFlags are not equal.

+
+ +
+
+hash(x)
+

Return the flag’s hash.

+
+ +
+
+iter(x)
+

Returns an iterator of (name, value) pairs. This allows it +to be, for example, constructed as a dict or a list of pairs. +Note that aliases are not shown.

+
+ +
+
+

New in version 1.4.

+
+
+
+value
+

The raw value. This value is a bit array field of a 53-bit integer +representing the currently available flags. You should query +flags via the properties rather than using this raw value.

+
+
Type
+

int

+
+
+
+ +
+
+staff
+

Returns True if the user is a Discord Employee.

+
+
Type
+

bool

+
+
+
+ +
+
+partner
+

Returns True if the user is a Discord Partner.

+
+
Type
+

bool

+
+
+
+ +
+
+hypesquad
+

Returns True if the user is a HypeSquad Events member.

+
+
Type
+

bool

+
+
+
+ +
+
+bug_hunter
+

Returns True if the user is a Bug Hunter

+
+
Type
+

bool

+
+
+
+ +
+
+hypesquad_bravery
+

Returns True if the user is a HypeSquad Bravery member.

+
+
Type
+

bool

+
+
+
+ +
+
+hypesquad_brilliance
+

Returns True if the user is a HypeSquad Brilliance member.

+
+
Type
+

bool

+
+
+
+ +
+
+hypesquad_balance
+

Returns True if the user is a HypeSquad Balance member.

+
+
Type
+

bool

+
+
+
+ +
+
+early_supporter
+

Returns True if the user is an Early Supporter.

+
+
Type
+

bool

+
+
+
+ +
+
+team_user
+

Returns True if the user is a Team User.

+
+
Type
+

bool

+
+
+
+ +
+
+system
+

Returns True if the user is a system user (i.e. represents Discord officially).

+
+
Type
+

bool

+
+
+
+ +
+
+bug_hunter_level_2
+

Returns True if the user is a Bug Hunter Level 2

+
+
Type
+

bool

+
+
+
+ +
+
+verified_bot
+

Returns True if the user is a Verified Bot.

+
+
Type
+

bool

+
+
+
+ +
+
+verified_bot_developer
+

Returns True if the user is an Early Verified Bot Developer.

+
+
Type
+

bool

+
+
+
+ +
+
+early_verified_bot_developer
+

An alias for verified_bot_developer.

+
+

New in version 1.5.

+
+
+
Type
+

bool

+
+
+
+ +
+
+discord_certified_moderator
+

Returns True if the user is a Discord Certified Moderator.

+
+

New in version 2.0.

+
+
+
Type
+

bool

+
+
+
+ +
+
+all()
+

List[UserFlags]: Returns all public flags the user has.

+
+ +
+ +
+
+
+

Bot UI Kit

+

The library has helpers to help create component-based UIs.

+
+

View

+
+ +Attributes +
+ +Methods +
+
+class discord.ui.View(*, timeout=180.0)
+

Represents a UI view.

+

This object must be inherited to create a UI within Discord.

+
+

New in version 2.0.

+
+
+
Parameters
+

timeout (Optional[float]) – Timeout in seconds from last interaction with the UI before no longer accepting input. +If None then there is no timeout.

+
+
+
+
+timeout
+

Timeout from last interaction with the UI before no longer accepting input. +If None then there is no timeout.

+
+
Type
+

Optional[float]

+
+
+
+ +
+
+children
+

The list of children attached to this view.

+
+
Type
+

List[Item]

+
+
+
+ +
+
+classmethod from_message(message, /, *, timeout=180.0)
+

Converts a message’s components into a View.

+

The Message.components of a message are read-only +and separate types from those in the discord.ui namespace. +In order to modify and edit message components they must be +converted into a View first.

+
+
Parameters
+
    +
  • message (discord.Message) – The message with components to convert into a view.

  • +
  • timeout (Optional[float]) – The timeout of the converted view.

  • +
+
+
Returns
+

The converted view. This always returns a View and not +one of its subclasses.

+
+
Return type
+

View

+
+
+
+ +
+
+add_item(item)
+

Adds an item to the view.

+
+
Parameters
+

item (Item) – The item to add to the view.

+
+
Raises
+
    +
  • TypeError – An Item was not passed.

  • +
  • ValueError – Maximum number of children has been exceeded (25) + or the row the item is trying to be added to is full.

  • +
+
+
+
+ +
+
+remove_item(item)
+

Removes an item from the view.

+
+
Parameters
+

item (Item) – The item to remove from the view.

+
+
+
+ +
+
+clear_items()
+

Removes all items from the view.

+
+ +
+
+await interaction_check(interaction)
+

This function is a coroutine.

+

A callback that is called when an interaction happens within the view +that checks whether the view should process item callbacks for the interaction.

+

This is useful to override if, for example, you want to ensure that the +interaction author is a given user.

+

The default implementation of this returns True.

+
+

Note

+

If an exception occurs within the body then the check +is considered a failure and on_error() is called.

+
+
+
Parameters
+

interaction (Interaction) – The interaction that occurred.

+
+
Returns
+

Whether the view children’s callbacks should be called.

+
+
Return type
+

bool

+
+
+
+ +
+
+await on_timeout()
+

This function is a coroutine.

+

A callback that is called when a view’s timeout elapses without being explicitly stopped.

+
+ +
+
+await on_error(error, item, interaction)
+

This function is a coroutine.

+

A callback that is called when an item’s callback or interaction_check() +fails with an error.

+

The default implementation prints the traceback to stderr.

+
+
Parameters
+
    +
  • error (Exception) – The exception that was raised.

  • +
  • item (Item) – The item that failed the dispatch.

  • +
  • interaction (Interaction) – The interaction that led to the failure.

  • +
+
+
+
+ +
+
+stop()
+

Stops listening to interaction events from this view.

+

This operation cannot be undone.

+
+ +
+
+is_finished()
+

bool: Whether the view has finished interacting.

+
+ +
+
+is_dispatching()
+

bool: Whether the view has been added for dispatching purposes.

+
+ +
+
+is_persistent()
+

bool: Whether the view is set up as persistent.

+

A persistent view has all their components with a set custom_id and +a timeout set to None.

+
+ +
+
+await wait()
+

Waits until the view has finished interacting.

+

A view is considered finished when stop() is called +or it times out.

+
+
Returns
+

If True, then the view timed out. If False then +the view finished normally.

+
+
Return type
+

bool

+
+
+
+ +
+ +
+
+

Item

+
+ +Attributes +
+ +Methods +
+
+class discord.ui.Item
+

Represents the base UI item that all UI components inherit from.

+

The current UI items supported are:

+ +
+

New in version 2.0.

+
+
+
+property view
+

The underlying view for this item.

+
+
Type
+

Optional[View]

+
+
+
+ +
+
+await callback(interaction)
+

This function is a coroutine.

+

The callback associated with this UI item.

+

This can be overriden by subclasses.

+
+
Parameters
+

interaction (Interaction) – The interaction that triggered this UI item.

+
+
+
+ +
+ +
+
+

Button

+
+ +Attributes +
+ +Methods +
+
+class discord.ui.Button(*, style=<ButtonStyle.secondary: 2>, label=None, disabled=False, custom_id=None, url=None, emoji=None, row=None)
+

Represents a UI button.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • style (discord.ButtonStyle) – The style of the button.

  • +
  • custom_id (Optional[str]) – The ID of the button that gets received during an interaction. +If this button is for a URL, it does not have a custom ID.

  • +
  • url (Optional[str]) – The URL this button sends you to.

  • +
  • disabled (bool) – Whether the button is disabled or not.

  • +
  • label (Optional[str]) – The label of the button, if any.

  • +
  • emoji (Optional[Union[PartialEmoji, Emoji, str]]) – The emoji of the button, if available.

  • +
  • row (Optional[int]) – The relative row this button belongs to. A Discord component can only have 5 +rows. By default, items are arranged automatically into those 5 rows. If you’d +like to control the relative positioning of the row then passing an index is advised. +For example, row=1 will show up before row=2. Defaults to None, which is automatic +ordering. The row number must be between 0 and 4 (i.e. zero indexed).

  • +
+
+
+
+
+property style
+

The style of the button.

+
+
Type
+

discord.ButtonStyle

+
+
+
+ +
+
+property custom_id
+

The ID of the button that gets received during an interaction.

+

If this button is for a URL, it does not have a custom ID.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+property url
+

The URL this button sends you to.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+property disabled
+

Whether the button is disabled or not.

+
+
Type
+

bool

+
+
+
+ +
+
+property label
+

The label of the button, if available.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+property emoji
+

The emoji of the button, if available.

+
+
Type
+

Optional[PartialEmoji]

+
+
+
+ +
+
+await callback(interaction)
+

This function is a coroutine.

+

The callback associated with this UI item.

+

This can be overriden by subclasses.

+
+
Parameters
+

interaction (Interaction) – The interaction that triggered this UI item.

+
+
+
+ +
+
+property view
+

The underlying view for this item.

+
+
Type
+

Optional[View]

+
+
+
+ +
+ +
+
+discord.ui.button(*, label=None, custom_id=None, disabled=False, style=<ButtonStyle.secondary: 2>, emoji=None, row=None)
+

A decorator that attaches a button to a component.

+

The function being decorated should have three parameters, self representing +the discord.ui.View, the discord.ui.Button being pressed and +the discord.Interaction you receive.

+
+

Note

+

Buttons with a URL cannot be created with this function. +Consider creating a Button manually instead. +This is because buttons with a URL do not have a callback +associated with them since Discord does not do any processing +with it.

+
+
+
Parameters
+
    +
  • label (Optional[str]) – The label of the button, if any.

  • +
  • custom_id (Optional[str]) – The ID of the button that gets received during an interaction. +It is recommended not to set this parameter to prevent conflicts.

  • +
  • style (ButtonStyle) – The style of the button. Defaults to ButtonStyle.grey.

  • +
  • disabled (bool) – Whether the button is disabled or not. Defaults to False.

  • +
  • emoji (Optional[Union[str, Emoji, PartialEmoji]]) – The emoji of the button. This can be in string form or a PartialEmoji +or a full Emoji.

  • +
  • row (Optional[int]) – The relative row this button belongs to. A Discord component can only have 5 +rows. By default, items are arranged automatically into those 5 rows. If you’d +like to control the relative positioning of the row then passing an index is advised. +For example, row=1 will show up before row=2. Defaults to None, which is automatic +ordering. The row number must be between 0 and 4 (i.e. zero indexed).

  • +
+
+
+
+ +
+
+

Select

+
+ +Methods +
+
+class discord.ui.Select(*, custom_id=..., placeholder=None, min_values=1, max_values=1, options=..., disabled=False, row=None)
+

Represents a UI select menu.

+

This is usually represented as a drop down menu.

+

In order to get the selected items that the user has chosen, use Select.values.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • custom_id (str) – The ID of the select menu that gets received during an interaction. +If not given then one is generated for you.

  • +
  • placeholder (Optional[str]) – The placeholder text that is shown if nothing is selected, if any.

  • +
  • min_values (int) – The minimum number of items that must be chosen for this select menu. +Defaults to 1 and must be between 1 and 25.

  • +
  • max_values (int) – The maximum number of items that must be chosen for this select menu. +Defaults to 1 and must be between 1 and 25.

  • +
  • options (List[discord.SelectOption]) – A list of options that can be selected in this menu.

  • +
  • disabled (bool) – Whether the select is disabled or not.

  • +
  • row (Optional[int]) – The relative row this select menu belongs to. A Discord component can only have 5 +rows. By default, items are arranged automatically into those 5 rows. If you’d +like to control the relative positioning of the row then passing an index is advised. +For example, row=1 will show up before row=2. Defaults to None, which is automatic +ordering. The row number must be between 0 and 4 (i.e. zero indexed).

  • +
+
+
+
+
+property custom_id
+

The ID of the select menu that gets received during an interaction.

+
+
Type
+

str

+
+
+
+ +
+
+property placeholder
+

The placeholder text that is shown if nothing is selected, if any.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+property min_values
+

The minimum number of items that must be chosen for this select menu.

+
+
Type
+

int

+
+
+
+ +
+
+property max_values
+

The maximum number of items that must be chosen for this select menu.

+
+
Type
+

int

+
+
+
+ +
+
+property options
+

A list of options that can be selected in this menu.

+
+
Type
+

List[discord.SelectOption]

+
+
+
+ +
+
+add_option(*, label, value=..., description=None, emoji=None, default=False)
+

Adds an option to the select menu.

+

To append a pre-existing discord.SelectOption use the +append_option() method instead.

+
+
Parameters
+
    +
  • label (str) – The label of the option. This is displayed to users. +Can only be up to 100 characters.

  • +
  • value (str) – The value of the option. This is not displayed to users. +If not given, defaults to the label. Can only be up to 100 characters.

  • +
  • description (Optional[str]) – An additional description of the option, if any. +Can only be up to 100 characters.

  • +
  • emoji (Optional[Union[str, Emoji, PartialEmoji]]) – The emoji of the option, if available. This can either be a string representing +the custom or unicode emoji or an instance of PartialEmoji or Emoji.

  • +
  • default (bool) – Whether this option is selected by default.

  • +
+
+
Raises
+

ValueError – The number of options exceeds 25.

+
+
+
+ +
+
+append_option(option)
+

Appends an option to the select menu.

+
+
Parameters
+

option (discord.SelectOption) – The option to append to the select menu.

+
+
Raises
+

ValueError – The number of options exceeds 25.

+
+
+
+ +
+
+property disabled
+

Whether the select is disabled or not.

+
+
Type
+

bool

+
+
+
+ +
+
+property values
+

A list of values that have been selected by the user.

+
+
Type
+

List[str]

+
+
+
+ +
+
+await callback(interaction)
+

This function is a coroutine.

+

The callback associated with this UI item.

+

This can be overriden by subclasses.

+
+
Parameters
+

interaction (Interaction) – The interaction that triggered this UI item.

+
+
+
+ +
+
+property view
+

The underlying view for this item.

+
+
Type
+

Optional[View]

+
+
+
+ +
+ +
+
+discord.ui.select(*, placeholder=None, custom_id=..., min_values=1, max_values=1, options=..., disabled=False, row=None)
+

A decorator that attaches a select menu to a component.

+

The function being decorated should have three parameters, self representing +the discord.ui.View, the discord.ui.Select being pressed and +the discord.Interaction you receive.

+

In order to get the selected items that the user has chosen within the callback +use Select.values.

+
+
Parameters
+
    +
  • placeholder (Optional[str]) – The placeholder text that is shown if nothing is selected, if any.

  • +
  • custom_id (str) – The ID of the select menu that gets received during an interaction. +It is recommended not to set this parameter to prevent conflicts.

  • +
  • row (Optional[int]) – The relative row this select menu belongs to. A Discord component can only have 5 +rows. By default, items are arranged automatically into those 5 rows. If you’d +like to control the relative positioning of the row then passing an index is advised. +For example, row=1 will show up before row=2. Defaults to None, which is automatic +ordering. The row number must be between 0 and 4 (i.e. zero indexed).

  • +
  • min_values (int) – The minimum number of items that must be chosen for this select menu. +Defaults to 1 and must be between 1 and 25.

  • +
  • max_values (int) – The maximum number of items that must be chosen for this select menu. +Defaults to 1 and must be between 1 and 25.

  • +
  • options (List[discord.SelectOption]) – A list of options that can be selected in this menu.

  • +
  • disabled (bool) – Whether the select is disabled or not. Defaults to False.

  • +
+
+
+
+ +
+
+
+

Exceptions

+

The following exceptions are thrown by the library.

+
+
+exception discord.DiscordException
+

Base exception class for discord.py

+

Ideally speaking, this could be caught to handle any exceptions raised from this library.

+
+ +
+
+exception discord.ClientException
+

Exception that’s raised when an operation in the Client fails.

+

These are usually for exceptions that happened due to user input.

+
+ +
+
+exception discord.LoginFailure
+

Exception that’s raised when the Client.login() function +fails to log you in from improper credentials or some other misc. +failure.

+
+ +
+
+exception discord.NoMoreItems
+

Exception that is raised when an async iteration operation has no more items.

+
+ +
+
+exception discord.HTTPException(response, message)
+

Exception that’s raised when an HTTP request operation fails.

+
+
+response
+

The response of the failed HTTP request. This is an +instance of aiohttp.ClientResponse. In some cases +this could also be a requests.Response.

+
+
Type
+

aiohttp.ClientResponse

+
+
+
+ +
+
+text
+

The text of the error. Could be an empty string.

+
+
Type
+

str

+
+
+
+ +
+
+status
+

The status code of the HTTP request.

+
+
Type
+

int

+
+
+
+ +
+
+code
+

The Discord specific error code for the failure.

+
+
Type
+

int

+
+
+
+ +
+ +
+
+exception discord.Forbidden(response, message)
+

Exception that’s raised for when status code 403 occurs.

+

Subclass of HTTPException

+
+ +
+
+exception discord.NotFound(response, message)
+

Exception that’s raised for when status code 404 occurs.

+

Subclass of HTTPException

+
+ +
+
+exception discord.DiscordServerError(response, message)
+

Exception that’s raised for when a 500 range status code occurs.

+

Subclass of HTTPException.

+
+

New in version 1.5.

+
+
+ +
+
+exception discord.InvalidData
+

Exception that’s raised when the library encounters unknown +or invalid data from Discord.

+
+ +
+
+exception discord.InvalidArgument
+

Exception that’s raised when an argument to a function +is invalid some way (e.g. wrong value or wrong type).

+

This could be considered the analogous of ValueError and +TypeError except inherited from ClientException and thus +DiscordException.

+
+ +
+
+exception discord.GatewayNotFound
+

An exception that is raised when the gateway for Discord could not be found

+
+ +
+
+exception discord.ConnectionClosed(socket, *, shard_id, code=None)
+

Exception that’s raised when the gateway connection is +closed for reasons that could not be handled internally.

+
+
+code
+

The close code of the websocket.

+
+
Type
+

int

+
+
+
+ +
+
+reason
+

The reason provided for the closure.

+
+
Type
+

str

+
+
+
+ +
+
+shard_id
+

The shard ID that got closed if applicable.

+
+
Type
+

Optional[int]

+
+
+
+ +
+ +
+
+exception discord.PrivilegedIntentsRequired(shard_id)
+

Exception that’s raised when the gateway is requesting privileged intents +but they’re not ticked in the developer page yet.

+

Go to https://discord.com/developers/applications/ and enable the intents +that are required. Currently these are as follows:

+ +
+
+shard_id
+

The shard ID that got closed if applicable.

+
+
Type
+

Optional[int]

+
+
+
+ +
+ +
+
+exception discord.InteractionResponded(interaction)
+

Exception that’s raised when sending another interaction response using +InteractionResponse when one has already been done before.

+

An interaction can only respond once.

+
+

New in version 2.0.

+
+
+
+interaction
+

The interaction that’s already been responded to.

+
+
Type
+

Interaction

+
+
+
+ +
+ +
+
+exception discord.opus.OpusError(code)
+

An exception that is thrown for libopus related errors.

+
+
+code
+

The error code returned.

+
+
Type
+

int

+
+
+
+ +
+ +
+
+exception discord.opus.OpusNotLoaded
+

An exception that is thrown for when libopus is not loaded.

+
+ +
+

Exception Hierarchy

+ +
+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/discord.html b/docs/Python/html/discord.html new file mode 100644 index 00000000..8c3f99a3 --- /dev/null +++ b/docs/Python/html/discord.html @@ -0,0 +1,234 @@ + + + + + + Creating a Bot Account + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

Creating a Bot Account

+

In order to work with the library and the Discord API in general, we must first create a Discord Bot account.

+

Creating a Bot account is a pretty straightforward process.

+
    +
  1. Make sure you’re logged on to the Discord website.

  2. +
  3. Navigate to the application page

  4. +
  5. Click on the “New Application” button.

    +
    +
    The new application button. +
    +
  6. +
  7. Give the application a name and click “Create”.

    +
    +
    The new application form filled in. +
    +
  8. +
  9. Create a Bot User by navigating to the “Bot” tab and clicking “Add Bot”.

    +
    +
      +
    • Click “Yes, do it!” to continue.

    • +
    +The Add Bot button. +
    +
  10. +
  11. Make sure that Public Bot is ticked if you want others to invite your bot.

    +
    +
      +
    • You should also make sure that Require OAuth2 Code Grant is unchecked unless you +are developing a service that needs it. If you’re unsure, then leave it unchecked.

    • +
    +How the Bot User options should look like for most people. +
    +
  12. +
  13. Copy the token using the “Copy” button.

    +
    +
      +
    • This is not the Client Secret at the General Information page.

    • +
    +
    +

    Warning

    +

    It should be worth noting that this token is essentially your bot’s +password. You should never share this with someone else. In doing so, +someone can log in to your bot and do malicious things, such as leaving +servers, ban all members inside a server, or pinging everyone maliciously.

    +

    The possibilities are endless, so do not share this token.

    +

    If you accidentally leaked your token, click the “Regenerate” button as soon +as possible. This revokes your old token and re-generates a new one. +Now you need to use the new token to login.

    +
    +
    +
  14. +
+

And that’s it. You now have a bot account and you can login with that token.

+
+

Inviting Your Bot

+

So you’ve made a Bot User but it’s not actually in any server.

+

If you want to invite your bot you must create an invite URL for it.

+
    +
  1. Make sure you’re logged on to the Discord website.

  2. +
  3. Navigate to the application page

  4. +
  5. Click on your bot’s page.

  6. +
  7. Go to the “OAuth2” tab.

    +
    +
    How the OAuth2 page should look like. +
    +
  8. +
  9. Tick the “bot” checkbox under “scopes”.

    +
    +
    The scopes checkbox with "bot" ticked. +
    +
  10. +
  11. Tick the permissions required for your bot to function under “Bot Permissions”.

    +
    +
      +
    • Please be aware of the consequences of requiring your bot to have the “Administrator” permission.

    • +
    • Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the 2FA support page for more information.

    • +
    +The permission checkboxes with some permissions checked. +
    +
  12. +
  13. Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click “Authorize”.

  14. +
+
+

Note

+

The person adding the bot needs “Manage Server” permissions to do so.

+
+

If you want to generate this URL dynamically at run-time inside your bot and using the +discord.Permissions interface, you can use discord.utils.oauth_url().

+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/ext/commands/api.html b/docs/Python/html/ext/commands/api.html new file mode 100644 index 00000000..81e599bf --- /dev/null +++ b/docs/Python/html/ext/commands/api.html @@ -0,0 +1,8921 @@ + + + + + + API Reference + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

API Reference

+

The following section outlines the API of discord.py’s command extension module.

+
+

Bots

+
+

Bot

+
+ +Methods +
+
+class discord.ext.commands.Bot(command_prefix, help_command=<default-help-command>, description=None, *, intents, message_commands=True, slash_commands=False, **options)
+

Represents a discord bot.

+

This class is a subclass of discord.Client and as a result +anything that you can do with a discord.Client you can do with +this bot.

+

This class also subclasses GroupMixin to provide the functionality +to manage commands.

+
+
+command_prefix
+

The command prefix is what the message content must contain initially +to have a command invoked. This prefix could either be a string to +indicate what the prefix should be, or a callable that takes in the bot +as its first parameter and discord.Message as its second +parameter and returns the prefix. This is to facilitate “dynamic” +command prefixes. This callable can be either a regular function or +a coroutine.

+

An empty string as the prefix always matches, enabling prefix-less +command invocation. While this may be useful in DMs it should be avoided +in servers, as it’s likely to cause performance issues and unintended +command invocations.

+

The command prefix could also be an iterable of strings indicating that +multiple checks for the prefix should be used and the first one to +match will be the invocation prefix. You can get this prefix via +Context.prefix. To avoid confusion empty iterables are not +allowed.

+
+

Note

+

When passing multiple prefixes be careful to not pass a prefix +that matches a longer prefix occurring later in the sequence. For +example, if the command prefix is ('!', '!?') the '!?' +prefix will never be matched to any message as the previous one +matches messages starting with !?. This is especially important +when passing an empty string, it should always be last as no prefix +after it will be matched.

+
+
+ +
+
+case_insensitive
+

Whether the commands should be case insensitive. Defaults to True. This +attribute does not carry over to groups. You must set it to every group if +you require group commands to be case insensitive as well.

+
+
Type
+

bool

+
+
+
+ +
+
+description
+

The content prefixed into the default help message.

+
+
Type
+

str

+
+
+
+ +
+
+help_command
+

The help command implementation to use. This can be dynamically +set at runtime. To remove the help command pass None. For more +information on implementing a help command, see Help Commands.

+
+
Type
+

Optional[HelpCommand]

+
+
+
+ +
+
+owner_id
+

The user ID that owns the bot. If this is not set and is then queried via +is_owner() then it is fetched automatically using +application_info().

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+owner_ids
+

The user IDs that owns the bot. This is similar to owner_id. +If this is not set and the application is team based, then it is +fetched automatically using application_info(). +For performance reasons it is recommended to use a set +for the collection. You cannot set both owner_id and owner_ids.

+
+

New in version 1.3.

+
+
+
Type
+

Optional[Collection[int]]

+
+
+
+ +
+
+strip_after_prefix
+

Whether to strip whitespace characters after encountering the command +prefix. This allows for !   hello and !hello to both work if +the command_prefix is set to !. Defaults to False.

+
+

New in version 1.7.

+
+
+
Type
+

bool

+
+
+
+ +
+
+message_commands
+

Whether to process commands based on messages.

+

Can be overwritten per command in the command decorators or when making +a Command object via the message_command parameter

+
+

New in version 2.0.

+
+
+
Type
+

Optional[bool]

+
+
+
+ +
+
+slash_commands
+

Whether to upload and process slash commands.

+

Can be overwritten per command in the command decorators or when making +a Command object via the slash_command parameter

+
+

New in version 2.0.

+
+
+
Type
+

Optional[bool]

+
+
+
+ +
+
+slash_command_guilds
+

If this is set, only upload slash commands to these guild IDs.

+

Can be overwritten per command in the command decorators or when making +a Command object via the slash_command_guilds parameter

+
+

New in version 2.0.

+
+
+
Type
+

Optional[List[int]]

+
+
+
+ +
+
+@after_invoke
+

A decorator that registers a coroutine as a post-invoke hook.

+

A post-invoke hook is called directly after the command is +called. This makes it a useful function to clean-up database +connections or any type of clean up required.

+

This post-invoke hook takes a sole parameter, a Context.

+
+

Note

+

Similar to before_invoke(), this is not called unless +checks and argument parsing procedures succeed. This hook is, +however, always called regardless of the internal command +callback raising an error (i.e. CommandInvokeError). +This makes it ideal for clean-up scenarios.

+
+
+
Parameters
+

coro (coroutine) – The coroutine to register as the post-invoke hook.

+
+
Raises
+

TypeError – The coroutine passed is not actually a coroutine.

+
+
+
+ +
+
+@before_invoke
+

A decorator that registers a coroutine as a pre-invoke hook.

+

A pre-invoke hook is called directly before the command is +called. This makes it a useful function to set up database +connections or any type of set up required.

+

This pre-invoke hook takes a sole parameter, a Context.

+
+

Note

+

The before_invoke() and after_invoke() hooks are +only called if all checks and argument parsing procedures pass +without error. If any check or argument parsing procedures fail +then the hooks are not called.

+
+
+
Parameters
+

coro (coroutine) – The coroutine to register as the pre-invoke hook.

+
+
Raises
+

TypeError – The coroutine passed is not actually a coroutine.

+
+
+
+ +
+
+@check
+

A decorator that adds a global check to the bot.

+

A global check is similar to a check() that is applied +on a per command basis except it is run before any command checks +have been verified and applies to every command the bot has.

+
+

Note

+

This function can either be a regular function or a coroutine.

+
+

Similar to a command check(), this takes a single parameter +of type Context and can only raise exceptions inherited from +CommandError.

+

Example

+
@bot.check
+def check_commands(ctx):
+    return ctx.command.qualified_name in allowed_commands
+
+
+
+ +
+
+@check_once
+

A decorator that adds a “call once” global check to the bot.

+

Unlike regular global checks, this one is called only once +per invoke() call.

+

Regular global checks are called whenever a command is called +or Command.can_run() is called. This type of check +bypasses that and ensures that it’s called only once, even inside +the default help command.

+
+

Note

+

When using this function the Context sent to a group subcommand +may only parse the parent command and not the subcommands due to it +being invoked once per Bot.invoke() call.

+
+
+

Note

+

This function can either be a regular function or a coroutine.

+
+

Similar to a command check(), this takes a single parameter +of type Context and can only raise exceptions inherited from +CommandError.

+

Example

+
@bot.check_once
+def whitelist(ctx):
+    return ctx.message.author.id in my_whitelist
+
+
+
+ +
+
+@command(*args, **kwargs)
+

A shortcut decorator that invokes command() and adds it to +the internal command list via add_command().

+
+
Returns
+

A decorator that converts the provided method into a Command, adds it to the bot, then returns it.

+
+
Return type
+

Callable[…, Command]

+
+
+
+ +
+
+@event
+

A decorator that registers an event to listen to.

+

You can find more info about the events on the documentation below.

+

The events must be a coroutine, if not, TypeError is raised.

+

Example

+
@client.event
+async def on_ready():
+    print('Ready!')
+
+
+
+
Raises
+

TypeError – The coroutine passed is not actually a coroutine.

+
+
+
+ +
+
+@group(*args, **kwargs)
+

A shortcut decorator that invokes group() and adds it to +the internal command list via add_command().

+
+
Returns
+

A decorator that converts the provided method into a Group, adds it to the bot, then returns it.

+
+
Return type
+

Callable[…, Group]

+
+
+
+ +
+
+@listen(name=None)
+

A decorator that registers another function as an external +event listener. Basically this allows you to listen to multiple +events from different places e.g. such as on_ready()

+

The functions being listened to must be a coroutine.

+

Example

+
@bot.listen()
+async def on_message(message):
+    print('one')
+
+# in some other file...
+
+@bot.listen('on_message')
+async def my_message(message):
+    print('two')
+
+
+

Would print one and two in an unspecified order.

+
+
Raises
+

TypeError – The function being listened to is not a coroutine.

+
+
+
+ +
+
+property activity
+

The activity being used upon +logging in.

+
+
Type
+

Optional[BaseActivity]

+
+
+
+ +
+
+add_check(func, *, call_once=False)
+

Adds a global check to the bot.

+

This is the non-decorator interface to check() +and check_once().

+
+
Parameters
+
    +
  • func – The function that was used as a global check.

  • +
  • call_once (bool) – If the function should only be called once per +invoke() call.

  • +
+
+
+
+ +
+
+add_cog(cog, *, override=False)
+

Adds a “cog” to the bot.

+

A cog is a class that has its own event listeners and commands.

+
+

Changed in version 2.0: ClientException is raised when a cog with the same name +is already loaded.

+
+
+
Parameters
+
    +
  • cog (Cog) – The cog to register to the bot.

  • +
  • override (bool) –

    If a previously loaded cog with the same name should be ejected +instead of raising an error.

    +
    +

    New in version 2.0.

    +
    +

  • +
+
+
Raises
+
+
+
+
+ +
+
+add_command(command)
+

Adds a Command into the internal list of commands.

+

This is usually not called, instead the command() or +group() shortcut decorators are used instead.

+
+

Changed in version 1.4: Raise CommandRegistrationError instead of generic ClientException

+
+
+
Parameters
+

command (Command) – The command to add.

+
+
Raises
+
+
+
+
+ +
+
+add_listener(func, name=...)
+

The non decorator alternative to listen().

+
+
Parameters
+
    +
  • func (coroutine) – The function to call.

  • +
  • name (str) – The name of the event to listen for. Defaults to func.__name__.

  • +
+
+
+

Example

+
async def on_ready(): pass
+async def my_message(message): pass
+
+bot.add_listener(on_ready)
+bot.add_listener(my_message, 'on_message')
+
+
+
+ +
+
+add_view(view, *, message_id=None)
+

Registers a View for persistent listening.

+

This method should be used for when a view is comprised of components +that last longer than the lifecycle of the program.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • view (discord.ui.View) – The view to register for dispatching.

  • +
  • message_id (Optional[int]) – The message ID that the view is attached to. This is currently used to +refresh the view’s state during message update events. If not given +then message update events are not propagated for the view.

  • +
+
+
Raises
+
    +
  • TypeError – A view was not passed.

  • +
  • ValueError – The view is not persistent. A persistent view has no timeout + and all their components have an explicitly provided custom_id.

  • +
+
+
+
+ +
+
+property allowed_mentions
+

The allowed mention configuration.

+
+

New in version 1.4.

+
+
+
Type
+

Optional[AllowedMentions]

+
+
+
+ +
+
+property application_flags
+

The client’s application flags.

+
+

New in version 2.0.

+
+
+
Type
+

ApplicationFlags

+
+
+
+ +
+
+property application_id
+

The client’s application ID.

+

If this is not passed via __init__ then this is retrieved +through the gateway when an event contains the data. Usually +after on_connect() is called.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[int]

+
+
+
+ +
+
+await application_info()
+

This function is a coroutine.

+

Retrieves the bot’s application information.

+
+
Raises
+

HTTPException – Retrieving the information failed somehow.

+
+
Returns
+

The bot’s application information.

+
+
Return type
+

AppInfo

+
+
+
+ +
+
+await before_identify_hook(shard_id, *, initial=False)
+

This function is a coroutine.

+

A hook that is called before IDENTIFYing a session. This is useful +if you wish to have more control over the synchronization of multiple +IDENTIFYing clients.

+

The default implementation sleeps for 5 seconds.

+
+

New in version 1.4.

+
+
+
Parameters
+
    +
  • shard_id (int) – The shard ID that requested being IDENTIFY’d

  • +
  • initial (bool) – Whether this IDENTIFY is the first initial IDENTIFY.

  • +
+
+
+
+ +
+
+property cached_messages
+

Read-only list of messages the connected client has cached.

+
+

New in version 1.1.

+
+
+
Type
+

Sequence[Message]

+
+
+
+ +
+
+await change_presence(*, activity=None, status=None)
+

This function is a coroutine.

+

Changes the client’s presence.

+

Example

+
game = discord.Game("with the API")
+await client.change_presence(status=discord.Status.idle, activity=game)
+
+
+
+

Changed in version 2.0: Removed the afk keyword-only parameter.

+
+
+
Parameters
+
    +
  • activity (Optional[BaseActivity]) – The activity being done. None if no currently active activity is done.

  • +
  • status (Optional[Status]) – Indicates what status to change to. If None, then +Status.online is used.

  • +
+
+
Raises
+

InvalidArgument – If the activity parameter is not the proper type.

+
+
+
+ +
+
+clear()
+

Clears the internal state of the bot.

+

After this, the bot can be considered “re-opened”, i.e. is_closed() +and is_ready() both return False along with the bot’s internal +cache cleared.

+
+ +
+
+await close()
+

This function is a coroutine.

+

Closes the connection to Discord.

+
+ +
+
+property cogs
+

A read-only mapping of cog name to cog.

+
+
Type
+

Mapping[str, Cog]

+
+
+
+ +
+
+property commands
+

A unique set of commands without aliases that are registered.

+
+
Type
+

Set[Command]

+
+
+
+ +
+
+await connect(*, reconnect=True)
+

This function is a coroutine.

+

Creates a websocket connection and lets the websocket listen +to messages from Discord. This is a loop that runs the entire +event system and miscellaneous aspects of the library. Control +is not resumed until the WebSocket connection is terminated.

+
+
Parameters
+

reconnect (bool) – If we should attempt reconnecting, either due to internet +failure or a specific failure on Discord’s part. Certain +disconnects that lead to bad state will not be handled (such as +invalid sharding payloads or bad tokens).

+
+
Raises
+
    +
  • GatewayNotFound – If the gateway to connect to Discord is not found. Usually if this + is thrown then there is a Discord API outage.

  • +
  • ConnectionClosed – The websocket connection has been terminated.

  • +
+
+
+
+ +
+
+await create_dm(user)
+

This function is a coroutine.

+

Creates a DMChannel with this user.

+

This should be rarely called, as this is done transparently for most +people.

+
+

New in version 2.0.

+
+
+
Parameters
+

user (Snowflake) – The user to create a DM with.

+
+
Returns
+

The channel that was created.

+
+
Return type
+

DMChannel

+
+
+
+ +
+
+await create_guild(*, name, region=<VoiceRegion.us_west: 'us-west'>, icon=..., code=...)
+

This function is a coroutine.

+

Creates a Guild.

+

Bot accounts in more than 10 guilds are not allowed to create guilds.

+
+
Parameters
+
    +
  • name (str) – The name of the guild.

  • +
  • region (VoiceRegion) – The region for the voice communication server. +Defaults to VoiceRegion.us_west.

  • +
  • icon (Optional[bytes]) – The bytes-like object representing the icon. See ClientUser.edit() +for more details on what is expected.

  • +
  • code (str) –

    The code for a template to create the guild with.

    +
    +

    New in version 1.4.

    +
    +

  • +
+
+
Raises
+
+
+
Returns
+

The guild created. This is not the same guild that is +added to cache.

+
+
Return type
+

Guild

+
+
+
+ +
+
+await delete_invite(invite)
+

This function is a coroutine.

+

Revokes an Invite, URL, or ID to an invite.

+

You must have the manage_channels permission in +the associated guild to do this.

+
+
Parameters
+

invite (Union[Invite, str]) – The invite to revoke.

+
+
Raises
+
    +
  • Forbidden – You do not have permissions to revoke invites.

  • +
  • NotFound – The invite is invalid or expired.

  • +
  • HTTPException – Revoking the invite failed.

  • +
+
+
+
+ +
+
+property emojis
+

The emojis that the connected client has.

+
+
Type
+

List[Emoji]

+
+
+
+ +
+
+property extensions
+

A read-only mapping of extension name to extension.

+
+
Type
+

Mapping[str, types.ModuleType]

+
+
+
+ +
+
+await fetch_channel(channel_id, /)
+

This function is a coroutine.

+

Retrieves a abc.GuildChannel, abc.PrivateChannel, or Thread with the specified ID.

+
+

Note

+

This method is an API call. For general usage, consider get_channel() instead.

+
+
+

New in version 1.2.

+
+
+
Raises
+
    +
  • InvalidData – An unknown channel type was received from Discord.

  • +
  • HTTPException – Retrieving the channel failed.

  • +
  • NotFound – Invalid Channel ID.

  • +
  • Forbidden – You do not have permission to fetch this channel.

  • +
+
+
Returns
+

The channel from the ID.

+
+
Return type
+

Union[abc.GuildChannel, abc.PrivateChannel, Thread]

+
+
+
+ +
+
+await fetch_guild(guild_id, /)
+

This function is a coroutine.

+

Retrieves a Guild from an ID.

+
+

Note

+

Using this, you will not receive Guild.channels, Guild.members, +Member.activity and Member.voice per Member.

+
+
+

Note

+

This method is an API call. For general usage, consider get_guild() instead.

+
+
+
Parameters
+

guild_id (int) – The guild’s ID to fetch from.

+
+
Raises
+
+
+
Returns
+

The guild from the ID.

+
+
Return type
+

Guild

+
+
+
+ +
+
+fetch_guilds(*, limit=100, before=None, after=None)
+

Retrieves an AsyncIterator that enables receiving your guilds.

+
+

Note

+

Using this, you will only receive Guild.owner, Guild.icon, +Guild.id, and Guild.name per Guild.

+
+
+

Note

+

This method is an API call. For general usage, consider guilds instead.

+
+

Examples

+

Usage

+
async for guild in client.fetch_guilds(limit=150):
+    print(guild.name)
+
+
+

Flattening into a list

+
guilds = await client.fetch_guilds(limit=150).flatten()
+# guilds is now a list of Guild...
+
+
+

All parameters are optional.

+
+
Parameters
+
    +
  • limit (Optional[int]) – The number of guilds to retrieve. +If None, it retrieves every guild you have access to. Note, however, +that this would make it a slow operation. +Defaults to 100.

  • +
  • before (Union[abc.Snowflake, datetime.datetime]) – Retrieves guilds before this date or object. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • after (Union[abc.Snowflake, datetime.datetime]) – Retrieve guilds after this date or object. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
+
+
Raises
+

HTTPException – Getting the guilds failed.

+
+
Yields
+

Guild – The guild with the guild data parsed.

+
+
+
+ +
+
+await fetch_invite(url, *, with_counts=True, with_expiration=True)
+

This function is a coroutine.

+

Gets an Invite from a discord.gg URL or ID.

+
+

Note

+

If the invite is for a guild you have not joined, the guild and channel +attributes of the returned Invite will be PartialInviteGuild and +PartialInviteChannel respectively.

+
+
+
Parameters
+
+
+
Raises
+
+
+
Returns
+

The invite from the URL/ID.

+
+
Return type
+

Invite

+
+
+
+ +
+
+await fetch_premium_sticker_packs()
+

This function is a coroutine.

+

Retrieves all available premium sticker packs.

+
+

New in version 2.0.

+
+
+
Raises
+

HTTPException – Retrieving the sticker packs failed.

+
+
Returns
+

All available premium sticker packs.

+
+
Return type
+

List[StickerPack]

+
+
+
+ +
+
+await fetch_stage_instance(channel_id, /)
+

This function is a coroutine.

+

Gets a StageInstance for a stage channel id.

+
+

New in version 2.0.

+
+
+
Parameters
+

channel_id (int) – The stage channel ID.

+
+
Raises
+
    +
  • NotFound – The stage instance or channel could not be found.

  • +
  • HTTPException – Getting the stage instance failed.

  • +
+
+
Returns
+

The stage instance from the stage channel ID.

+
+
Return type
+

StageInstance

+
+
+
+ +
+
+await fetch_sticker(sticker_id, /)
+

This function is a coroutine.

+

Retrieves a Sticker with the specified ID.

+
+

New in version 2.0.

+
+
+
Raises
+
+
+
Returns
+

The sticker you requested.

+
+
Return type
+

Union[StandardSticker, GuildSticker]

+
+
+
+ +
+
+await fetch_template(code)
+

This function is a coroutine.

+

Gets a Template from a discord.new URL or code.

+
+
Parameters
+

code (Union[Template, str]) – The Discord Template Code or URL (must be a discord.new URL).

+
+
Raises
+
+
+
Returns
+

The template from the URL/code.

+
+
Return type
+

Template

+
+
+
+ +
+
+await fetch_user(user_id, /)
+

This function is a coroutine.

+

Retrieves a User based on their ID. +You do not have to share any guilds with the user to get this information, +however many operations do require that you do.

+
+

Note

+

This method is an API call. If you have discord.Intents.members and member cache enabled, consider get_user() instead.

+
+
+
Parameters
+

user_id (int) – The user’s ID to fetch from.

+
+
Raises
+
+
+
Returns
+

The user you requested.

+
+
Return type
+

User

+
+
+
+ +
+
+await fetch_webhook(webhook_id, /)
+

This function is a coroutine.

+

Retrieves a Webhook with the specified ID.

+
+
Raises
+
    +
  • HTTPException – Retrieving the webhook failed.

  • +
  • NotFound – Invalid webhook ID.

  • +
  • Forbidden – You do not have permission to fetch this webhook.

  • +
+
+
Returns
+

The webhook you requested.

+
+
Return type
+

Webhook

+
+
+
+ +
+
+await fetch_widget(guild_id, /)
+

This function is a coroutine.

+

Gets a Widget from a guild ID.

+
+

Note

+

The guild must have the widget enabled to get this information.

+
+
+
Parameters
+

guild_id (int) – The ID of the guild.

+
+
Raises
+
+
+
Returns
+

The guild’s widget.

+
+
Return type
+

Widget

+
+
+
+ +
+
+for ... in get_all_channels()
+

A generator that retrieves every abc.GuildChannel the client can ‘access’.

+

This is equivalent to:

+
for guild in client.guilds:
+    for channel in guild.channels:
+        yield channel
+
+
+
+

Note

+

Just because you receive a abc.GuildChannel does not mean that +you can communicate in said channel. abc.GuildChannel.permissions_for() should +be used for that.

+
+
+
Yields
+

abc.GuildChannel – A channel the client can ‘access’.

+
+
+
+ +
+
+for ... in get_all_members()
+

Returns a generator with every Member the client can see.

+

This is equivalent to:

+
for guild in client.guilds:
+    for member in guild.members:
+        yield member
+
+
+
+
Yields
+

Member – A member the client can see.

+
+
+
+ +
+
+get_channel(id, /)
+

Returns a channel or thread with the given ID.

+
+
Parameters
+

id (int) – The ID to search for.

+
+
Returns
+

The returned channel or None if not found.

+
+
Return type
+

Optional[Union[abc.GuildChannel, Thread, abc.PrivateChannel]]

+
+
+
+ +
+
+get_cog(name)
+

Gets the cog instance requested.

+

If the cog is not found, None is returned instead.

+
+
Parameters
+

name (str) – The name of the cog you are requesting. +This is equivalent to the name passed via keyword +argument in class creation or the class name if unspecified.

+
+
Returns
+

The cog that was requested. If not found, returns None.

+
+
Return type
+

Optional[Cog]

+
+
+
+ +
+
+get_command(name)
+

Get a Command from the internal list +of commands.

+

This could also be used as a way to get aliases.

+

The name could be fully qualified (e.g. 'foo bar') will get +the subcommand bar of the group command foo. If a +subcommand is not found then None is returned just as usual.

+
+
Parameters
+

name (str) – The name of the command to get.

+
+
Returns
+

The command that was requested. If not found, returns None.

+
+
Return type
+

Optional[Command]

+
+
+
+ +
+
+await get_context(message, *, cls=<class 'discord.ext.commands.context.Context'>)
+

This function is a coroutine.

+

Returns the invocation context from the message.

+

This is a more low-level counter-part for process_commands() +to allow users more fine grained control over the processing.

+

The returned context is not guaranteed to be a valid invocation +context, Context.valid must be checked to make sure it is. +If the context is not valid then it is not a valid candidate to be +invoked under invoke().

+
+
Parameters
+
    +
  • message (discord.Message) – The message to get the invocation context from.

  • +
  • cls – The factory class that will be used to create the context. +By default, this is Context. Should a custom +class be provided, it must be similar enough to Context's +interface.

  • +
+
+
Returns
+

The invocation context. The type of this can change via the +cls parameter.

+
+
Return type
+

Context

+
+
+
+ +
+
+get_emoji(id, /)
+

Returns an emoji with the given ID.

+
+
Parameters
+

id (int) – The ID to search for.

+
+
Returns
+

The custom emoji or None if not found.

+
+
Return type
+

Optional[Emoji]

+
+
+
+ +
+
+get_guild(id, /)
+

Returns a guild with the given ID.

+
+
Parameters
+

id (int) – The ID to search for.

+
+
Returns
+

The guild or None if not found.

+
+
Return type
+

Optional[Guild]

+
+
+
+ +
+
+get_partial_messageable(id, *, type=None)
+

Returns a partial messageable with the given channel ID.

+

This is useful if you have a channel_id but don’t want to do an API call +to send messages to it.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • id (int) – The channel ID to create a partial messageable for.

  • +
  • type (Optional[ChannelType]) – The underlying channel type for the partial messageable.

  • +
+
+
Returns
+

The partial messageable

+
+
Return type
+

PartialMessageable

+
+
+
+ +
+
+await get_prefix(message)
+

This function is a coroutine.

+

Retrieves the prefix the bot is listening to +with the message as a context.

+
+
Parameters
+

message (discord.Message) – The message context to get the prefix of.

+
+
Returns
+

A list of prefixes or a single prefix that the bot is +listening for.

+
+
Return type
+

Union[List[str], str]

+
+
+
+ +
+
+get_stage_instance(id, /)
+

Returns a stage instance with the given stage channel ID.

+
+

New in version 2.0.

+
+
+
Parameters
+

id (int) – The ID to search for.

+
+
Returns
+

The returns stage instance of None if not found.

+
+
Return type
+

Optional[StageInstance]

+
+
+
+ +
+
+get_sticker(id, /)
+

Returns a guild sticker with the given ID.

+
+

New in version 2.0.

+
+
+

Note

+

To retrieve standard stickers, use fetch_sticker(). +or fetch_premium_sticker_packs().

+
+
+
Returns
+

The sticker or None if not found.

+
+
Return type
+

Optional[GuildSticker]

+
+
+
+ +
+
+get_user(id, /)
+

Returns a user with the given ID.

+
+
Parameters
+

id (int) – The ID to search for.

+
+
Returns
+

The user or None if not found.

+
+
Return type
+

Optional[User]

+
+
+
+ +
+
+property guilds
+

The guilds that the connected client is a member of.

+
+
Type
+

List[Guild]

+
+
+
+ +
+
+property intents
+

The intents configured for this connection.

+
+

New in version 1.5.

+
+
+
Type
+

Intents

+
+
+
+ +
+
+await invoke(ctx)
+

This function is a coroutine.

+

Invokes the command given under the invocation context and +handles all the internal event dispatch mechanisms.

+
+
Parameters
+

ctx (Context) – The invocation context to invoke.

+
+
+
+ +
+
+is_closed()
+

bool: Indicates if the websocket connection is closed.

+
+ +
+
+await is_owner(user)
+

This function is a coroutine.

+

Checks if a User or Member is the owner of +this bot.

+

If an owner_id is not set, it is fetched automatically +through the use of application_info().

+
+

Changed in version 1.3: The function also checks if the application is team-owned if +owner_ids is not set.

+
+
+
Parameters
+

user (abc.User) – The user to check for.

+
+
Returns
+

Whether the user is the owner.

+
+
Return type
+

bool

+
+
+
+ +
+
+is_ready()
+

bool: Specifies if the client’s internal cache is ready for use.

+
+ +
+
+is_ws_ratelimited()
+

bool: Whether the websocket is currently rate limited.

+

This can be useful to know when deciding whether you should query members +using HTTP or via the gateway.

+
+

New in version 1.6.

+
+
+ +
+
+property latency
+

Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds.

+

This could be referred to as the Discord WebSocket protocol latency.

+
+
Type
+

float

+
+
+
+ +
+
+load_extension(name, *, package=None)
+

Loads an extension.

+

An extension is a python module that contains commands, cogs, or +listeners.

+

An extension must have a global function, setup defined as +the entry point on what to do when the extension is loaded. This entry +point must have a single argument, the bot.

+
+
Parameters
+
    +
  • name (str) – The extension name to load. It must be dot separated like +regular Python imports if accessing a sub-module. e.g. +foo.test if you want to import foo/test.py.

  • +
  • package (Optional[str]) –

    The package name to resolve relative imports with. +This is required when loading an extension using a relative path, e.g .foo.test. +Defaults to None.

    +
    +

    New in version 1.7.

    +
    +

  • +
+
+
Raises
+
    +
  • ExtensionNotFound – The extension could not be imported. + This is also raised if the name of the extension could not + be resolved using the provided package parameter.

  • +
  • ExtensionAlreadyLoaded – The extension is already loaded.

  • +
  • NoEntryPointError – The extension does not have a setup function.

  • +
  • ExtensionFailed – The extension or its setup function had an execution error.

  • +
+
+
+
+ +
+
+await login(token)
+

This function is a coroutine.

+

Logs in the client with the specified credentials.

+
+
Parameters
+

token (str) – The authentication token. Do not prefix this token with +anything as the library will do it for you.

+
+
Raises
+
    +
  • LoginFailure – The wrong credentials are passed.

  • +
  • HTTPException – An unknown HTTP related error occurred, + usually when it isn’t 200 or the known incorrect credentials + passing status code.

  • +
+
+
+
+ +
+
+await on_command_error(context, exception)
+

This function is a coroutine.

+

The default command error handler provided by the bot.

+

By default this prints to sys.stderr however it could be +overridden to have a different implementation.

+

This only fires if you do not specify any listeners for command error.

+
+ +
+
+await on_error(event_method, *args, **kwargs)
+

This function is a coroutine.

+

The default error handler provided by the client.

+

By default this prints to sys.stderr however it could be +overridden to have a different implementation. +Check on_error() for more details.

+
+ +
+
+property persistent_views
+

A sequence of persistent views added to the client.

+
+

New in version 2.0.

+
+
+
Type
+

Sequence[View]

+
+
+
+ +
+
+await populate_owners()
+

This function is a coroutine.

+

Populate the owner_id and owner_ids through the use of application_info().

+
+

New in version 2.0.

+
+
+ +
+
+property private_channels
+

The private channels that the connected client is participating on.

+
+

Note

+

This returns only up to 128 most recent private channels due to an internal working +on how Discord deals with private channels.

+
+
+
Type
+

List[abc.PrivateChannel]

+
+
+
+ +
+
+await process_commands(message)
+

This function is a coroutine.

+

This function processes the commands that have been registered +to the bot and other groups. Without this coroutine, none of the +commands will be triggered.

+

By default, this coroutine is called inside the on_message() +event. If you choose to override the on_message() event, then +you should invoke this coroutine as well.

+

This is built using other low level tools, and is equivalent to a +call to get_context() followed by a call to invoke().

+

This also checks if the message’s author is a bot and doesn’t +call get_context() or invoke() if so.

+
+
Parameters
+

message (discord.Message) – The message to process commands for.

+
+
+
+ +
+
+await process_slash_commands(interaction)
+

This function is a coroutine.

+

This function processes a slash command interaction into a usable +message and calls process_commands() based on it. Without this +coroutine slash commands will not be triggered.

+

By default, this coroutine is called inside the on_interaction() +event. If you choose to override the on_interaction() event, +then you should invoke this coroutine as well.

+
+

New in version 2.0.

+
+
+
Parameters
+

interaction (discord.Interaction) – The interaction to process slash commands for.

+
+
+
+ +
+
+reload_extension(name, *, package=None)
+

Atomically reloads an extension.

+

This replaces the extension with the same extension, only refreshed. This is +equivalent to a unload_extension() followed by a load_extension() +except done in an atomic way. That is, if an operation fails mid-reload then +the bot will roll-back to the prior working state.

+
+
Parameters
+
    +
  • name (str) – The extension name to reload. It must be dot separated like +regular Python imports if accessing a sub-module. e.g. +foo.test if you want to import foo/test.py.

  • +
  • package (Optional[str]) –

    The package name to resolve relative imports with. +This is required when reloading an extension using a relative path, e.g .foo.test. +Defaults to None.

    +
    +

    New in version 1.7.

    +
    +

  • +
+
+
Raises
+
    +
  • ExtensionNotLoaded – The extension was not loaded.

  • +
  • ExtensionNotFound – The extension could not be imported. + This is also raised if the name of the extension could not + be resolved using the provided package parameter.

  • +
  • NoEntryPointError – The extension does not have a setup function.

  • +
  • ExtensionFailed – The extension setup function had an execution error.

  • +
+
+
+
+ +
+
+remove_check(func, *, call_once=False)
+

Removes a global check from the bot.

+

This function is idempotent and will not raise an exception +if the function is not in the global checks.

+
+
Parameters
+
    +
  • func – The function to remove from the global checks.

  • +
  • call_once (bool) – If the function was added with call_once=True in +the Bot.add_check() call or using check_once().

  • +
+
+
+
+ +
+
+remove_cog(name)
+

Removes a cog from the bot and returns it.

+

All registered commands and event listeners that the +cog has registered will be removed as well.

+

If no cog is found then this method has no effect.

+
+
Parameters
+

name (str) – The name of the cog to remove.

+
+
Returns
+

The cog that was removed. None if not found.

+
+
Return type
+

Optional[Cog]

+
+
+
+ +
+
+remove_command(name)
+

Remove a Command from the internal list +of commands.

+

This could also be used as a way to remove aliases.

+
+
Parameters
+

name (str) – The name of the command to remove.

+
+
Returns
+

The command that was removed. If the name is not valid then +None is returned instead.

+
+
Return type
+

Optional[Command]

+
+
+
+ +
+
+remove_listener(func, name=...)
+

Removes a listener from the pool of listeners.

+
+
Parameters
+
    +
  • func – The function that was used as a listener to remove.

  • +
  • name (str) – The name of the event we want to remove. Defaults to +func.__name__.

  • +
+
+
+
+ +
+
+run(*args, **kwargs)
+

A blocking call that abstracts away the event loop +initialisation from you.

+

If you want more control over the event loop then this +function should not be used. Use start() coroutine +or connect() + login().

+

Roughly Equivalent to:

+
try:
+    loop.run_until_complete(start(*args, **kwargs))
+except KeyboardInterrupt:
+    loop.run_until_complete(close())
+    # cancel all tasks lingering
+finally:
+    loop.close()
+
+
+
+

Warning

+

This function must be the last function to call due to the fact that it +is blocking. That means that registration of events or anything being +called after this function call will not execute until it returns.

+
+
+ +
+
+await setup()
+

This function is a coroutine.

+

A coroutine to be called to setup the bot, by default this is blank.

+

To perform asynchronous setup after the bot is logged in but before +it has connected to the Websocket, overwrite this coroutine.

+
+

New in version 2.0.

+
+
+ +
+
+await start(token, *, reconnect=True)
+

This function is a coroutine.

+

A shorthand coroutine for login() + setup() + connect().

+
+
Raises
+

TypeError – An unexpected keyword argument was received.

+
+
+
+ +
+
+property status
+

Status: +The status being used upon logging on to Discord.

+
+

New in version 2.0.

+
+
+ +
+
+property stickers
+

The stickers that the connected client has.

+
+

New in version 2.0.

+
+
+
Type
+

List[GuildSticker]

+
+
+
+ +
+
+await try_owners()
+

This function is a coroutine.

+

Returns a list of User representing the owners of the bot. +It uses the owner_id and owner_ids, if set.

+
+

New in version 2.0: The function also checks if the application is team-owned if +owner_ids is not set.

+
+
+
Returns
+

List of owners of the bot.

+
+
Return type
+

List[User]

+
+
+
+ +
+
+await try_user(id, /)
+

This function is a coroutine. +Returns a user with the given ID. If not from cache, the user will be requested from the API.

+

You do not have to share any guilds with the user to get this information from the API, +however many operations do require that you do.

+
+

Note

+

This method is an API call. If you have discord.Intents.members and member cache enabled, consider get_user() instead.

+
+
+

New in version 2.0.

+
+
+
Parameters
+

id (int) – The ID to search for.

+
+
Returns
+

The user or None if not found.

+
+
Return type
+

Optional[User]

+
+
+
+ +
+
+unload_extension(name, *, package=None)
+

Unloads an extension.

+

When the extension is unloaded, all commands, listeners, and cogs are +removed from the bot and the module is un-imported.

+

The extension can provide an optional global function, teardown, +to do miscellaneous clean-up if necessary. This function takes a single +parameter, the bot, similar to setup from +load_extension().

+
+
Parameters
+
    +
  • name (str) – The extension name to unload. It must be dot separated like +regular Python imports if accessing a sub-module. e.g. +foo.test if you want to import foo/test.py.

  • +
  • package (Optional[str]) –

    The package name to resolve relative imports with. +This is required when unloading an extension using a relative path, e.g .foo.test. +Defaults to None.

    +
    +

    New in version 1.7.

    +
    +

  • +
+
+
Raises
+
+
+
+
+ +
+
+property user
+

Represents the connected client. None if not logged in.

+
+
Type
+

Optional[ClientUser]

+
+
+
+ +
+
+property users
+

Returns a list of all the users the bot can see.

+
+
Type
+

List[User]

+
+
+
+ +
+
+property voice_clients
+

Represents a list of voice connections.

+

These are usually VoiceClient instances.

+
+
Type
+

List[VoiceProtocol]

+
+
+
+ +
+
+wait_for(event, *, check=None, timeout=None)
+

This function is a coroutine.

+

Waits for a WebSocket event to be dispatched.

+

This could be used to wait for a user to reply to a message, +or to react to a message, or to edit a message in a self-contained +way.

+

The timeout parameter is passed onto asyncio.wait_for(). By default, +it does not timeout. Note that this does propagate the +asyncio.TimeoutError for you in case of timeout and is provided for +ease of use.

+

In case the event returns multiple arguments, a tuple containing those +arguments is returned instead. Please check the +documentation for a list of events and their +parameters.

+

This function returns the first event that meets the requirements.

+

Examples

+

Waiting for a user reply:

+
@client.event
+async def on_message(message):
+    if message.content.startswith('$greet'):
+        channel = message.channel
+        await channel.send('Say hello!')
+
+        def check(m):
+            return m.content == 'hello' and m.channel == channel
+
+        msg = await client.wait_for('message', check=check)
+        await channel.send(f'Hello {msg.author}!')
+
+
+

Waiting for a thumbs up reaction from the message author:

+
@client.event
+async def on_message(message):
+    if message.content.startswith('$thumb'):
+        channel = message.channel
+        await channel.send('Send me that 👍 reaction, mate')
+
+        def check(reaction, user):
+            return user == message.author and str(reaction.emoji) == '👍'
+
+        try:
+            reaction, user = await client.wait_for('reaction_add', timeout=60.0, check=check)
+        except asyncio.TimeoutError:
+            await channel.send('👎')
+        else:
+            await channel.send('👍')
+
+
+
+
Parameters
+
    +
  • event (str) – The event name, similar to the event reference, +but without the on_ prefix, to wait for.

  • +
  • check (Optional[Callable[…, bool]]) – A predicate to check what to wait for. The arguments must meet the +parameters of the event being waited for.

  • +
  • timeout (Optional[float]) – The number of seconds to wait before timing out and raising +asyncio.TimeoutError.

  • +
+
+
Raises
+

asyncio.TimeoutError – If a timeout is provided and it was reached.

+
+
Returns
+

Returns no arguments, a single argument, or a tuple of multiple +arguments that mirrors the parameters passed in the +event reference.

+
+
Return type
+

Any

+
+
+
+ +
+
+await wait_until_ready()
+

This function is a coroutine.

+

Waits until the client’s internal cache is all ready.

+
+ +
+
+for ... in walk_commands()
+

An iterator that recursively walks through all commands and subcommands.

+
+

Changed in version 1.4: Duplicates due to aliases are no longer returned

+
+
+
Yields
+

Union[Command, Group] – A command or group from the internal list of commands.

+
+
+
+ +
+ +
+
+

AutoShardedBot

+
+
+class discord.ext.commands.AutoShardedBot(command_prefix, help_command=<default-help-command>, description=None, *, intents, message_commands=True, slash_commands=False, **options)
+

This is similar to Bot except that it is inherited from +discord.AutoShardedClient instead.

+
+ +
+
+
+

Prefix Helpers

+
+
+discord.ext.commands.when_mentioned(bot, msg)
+

A callable that implements a command prefix equivalent to being mentioned.

+

These are meant to be passed into the Bot.command_prefix attribute.

+
+ +
+
+discord.ext.commands.when_mentioned_or(*prefixes)
+

A callable that implements when mentioned or other prefixes provided.

+

These are meant to be passed into the Bot.command_prefix attribute.

+

Example

+
bot = commands.Bot(command_prefix=commands.when_mentioned_or('!'))
+
+
+
+

Note

+

This callable returns another callable, so if this is done inside a custom +callable, you must call the returned callable, for example:

+
async def get_prefix(bot, message):
+    extras = await prefixes_for(message.guild) # returns a list
+    return commands.when_mentioned_or(*extras)(bot, message)
+
+
+
+
+

See also

+

when_mentioned()

+
+
+ +
+
+

Event Reference

+

These events function similar to the regular events, except they +are custom to the command extension module.

+
+
+discord.ext.commands.on_command_error(ctx, error)
+

An error handler that is called when an error is raised +inside a command either through user input error, check +failure, or an error in your own code.

+

A default one is provided (Bot.on_command_error()).

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context.

  • +
  • error (CommandError derived) – The error that was raised.

  • +
+
+
+
+ +
+
+discord.ext.commands.on_command(ctx)
+

An event that is called when a command is found and is about to be invoked.

+

This event is called regardless of whether the command itself succeeds via +error or completes.

+
+
Parameters
+

ctx (Context) – The invocation context.

+
+
+
+ +
+
+discord.ext.commands.on_command_completion(ctx)
+

An event that is called when a command has completed its invocation.

+

This event is called only if the command succeeded, i.e. all checks have +passed and the user input it correctly.

+
+
Parameters
+

ctx (Context) – The invocation context.

+
+
+
+ +
+
+

Commands

+
+

Decorators

+
+
+@discord.ext.commands.command(name=..., cls=..., **attrs)
+

A decorator that transforms a function into a Command +or if called with group(), Group.

+

By default the help attribute is received automatically from the +docstring of the function and is cleaned up with the use of +inspect.cleandoc. If the docstring is bytes, then it is decoded +into str using utf-8 encoding.

+

All checks added using the check() & co. decorators are added into +the function. There is no way to supply your own checks through this +decorator.

+
+
Parameters
+
    +
  • name (str) – The name to create the command with. By default this uses the +function name unchanged.

  • +
  • cls – The class to construct with. By default this is Command. +You usually do not change this.

  • +
  • attrs – Keyword arguments to pass into the construction of the class denoted +by cls.

  • +
+
+
Raises
+

TypeError – If the function is not a coroutine or is already a command.

+
+
+
+ +
+
+@discord.ext.commands.group(name=..., cls=..., **attrs)
+

A decorator that transforms a function into a Group.

+

This is similar to the command() decorator but the cls +parameter is set to Group by default.

+
+

Changed in version 1.1: The cls parameter can now be passed.

+
+
+ +
+
+

Command

+
+
+class discord.ext.commands.Command(*args, **kwargs)
+

A class that implements the protocol for a bot text command.

+

These are not created manually, instead they are created via the +decorator or functional interface.

+
+
+name
+

The name of the command.

+
+
Type
+

str

+
+
+
+ +
+
+callback
+

The coroutine that is executed when the command is called.

+
+
Type
+

coroutine

+
+
+
+ +
+
+help
+

The long help text for the command.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+brief
+

The short help text for the command.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+usage
+

A replacement for arguments in the default help text.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+aliases
+

The list of aliases the command can be invoked under.

+
+
Type
+

Union[List[str], Tuple[str]]

+
+
+
+ +
+
+enabled
+

A boolean that indicates if the command is currently enabled. +If the command is invoked while it is disabled, then +DisabledCommand is raised to the on_command_error() +event. Defaults to True.

+
+
Type
+

bool

+
+
+
+ +
+
+parent
+

The parent group that this command belongs to. None if there +isn’t one.

+
+
Type
+

Optional[Group]

+
+
+
+ +
+
+cog
+

The cog that this command belongs to. None if there isn’t one.

+
+
Type
+

Optional[Cog]

+
+
+
+ +
+
+checks
+

A list of predicates that verifies if the command could be executed +with the given Context as the sole parameter. If an exception +is necessary to be thrown to signal failure, then one inherited from +CommandError should be used. Note that if the checks fail then +CheckFailure exception is raised to the on_command_error() +event.

+
+
Type
+

List[Callable[[Context], bool]]

+
+
+
+ +
+
+description
+

The message prefixed into the default help command.

+
+
Type
+

str

+
+
+
+ +
+
+hidden
+

If True, the default help command does not show this in the +help output.

+
+
Type
+

bool

+
+
+
+ +
+
+rest_is_raw
+

If False and a keyword-only argument is provided then the keyword +only argument is stripped and handled as if it was a regular argument +that handles MissingRequiredArgument and default values in a +regular matter rather than passing the rest completely raw. If True +then the keyword-only argument will pass in the rest of the arguments +in a completely raw matter. Defaults to False.

+
+
Type
+

bool

+
+
+
+ +
+
+invoked_subcommand
+

The subcommand that was invoked, if any.

+
+
Type
+

Optional[Command]

+
+
+
+ +
+
+require_var_positional
+

If True and a variadic positional argument is specified, requires +the user to specify at least one argument. Defaults to False.

+
+

New in version 1.5.

+
+
+
Type
+

bool

+
+
+
+ +
+
+ignore_extra
+

If True, ignores extraneous strings passed to a command if all its +requirements are met (e.g. ?foo a b c when only expecting a +and b). Otherwise on_command_error() and local error handlers +are called with TooManyArguments. Defaults to True.

+
+
Type
+

bool

+
+
+
+ +
+
+cooldown_after_parsing
+

If True, cooldown processing is done after argument parsing, +which calls converters. If False then cooldown processing is done +first and then the converters are called second. Defaults to False.

+
+
Type
+

bool

+
+
+
+ +
+
+extras
+

A dict of user provided extras to attach to the Command.

+
+

New in version 2.0.

+
+
+

Note

+

This object may be copied by the library.

+
+
+
Type
+

dict

+
+
+
+ +
+
+message_command
+

Whether to process this command based on messages.

+

This overwrites the global message_commands parameter of Bot.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[bool]

+
+
+
+ +
+
+slash_command
+

Whether to upload and process this command as a slash command.

+

This overwrites the global slash_commands parameter of Bot.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[bool]

+
+
+
+ +
+
+slash_command_guilds
+

If this is set, only upload this slash command to these guild IDs.

+

This overwrites the global slash_command_guilds parameter of Bot.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[List[int]]

+
+
+
+ +
+
+option_descriptions
+

The unpacked option descriptions from Option.

+
+

New in version 2.0.

+
+
+
Type
+

Dict[str, str]

+
+
+
+ +
+
+@after_invoke
+

A decorator that registers a coroutine as a post-invoke hook.

+

A post-invoke hook is called directly after the command is +called. This makes it a useful function to clean-up database +connections or any type of clean up required.

+

This post-invoke hook takes a sole parameter, a Context.

+

See Bot.after_invoke() for more info.

+
+
Parameters
+

coro (coroutine) – The coroutine to register as the post-invoke hook.

+
+
Raises
+

TypeError – The coroutine passed is not actually a coroutine.

+
+
+
+ +
+
+@before_invoke
+

A decorator that registers a coroutine as a pre-invoke hook.

+

A pre-invoke hook is called directly before the command is +called. This makes it a useful function to set up database +connections or any type of set up required.

+

This pre-invoke hook takes a sole parameter, a Context.

+

See Bot.before_invoke() for more info.

+
+
Parameters
+

coro (coroutine) – The coroutine to register as the pre-invoke hook.

+
+
Raises
+

TypeError – The coroutine passed is not actually a coroutine.

+
+
+
+ +
+
+@error
+

A decorator that registers a coroutine as a local error handler.

+

A local error handler is an on_command_error() event limited to +a single command. However, the on_command_error() is still +invoked afterwards as the catch-all.

+
+
Parameters
+

coro (coroutine) – The coroutine to register as the local error handler.

+
+
Raises
+

TypeError – The coroutine passed is not actually a coroutine.

+
+
+
+ +
+
+add_check(func)
+

Adds a check to the command.

+

This is the non-decorator interface to check().

+
+

New in version 1.3.

+
+
+
Parameters
+

func – The function that will be used as a check.

+
+
+
+ +
+
+remove_check(func)
+

Removes a check from the command.

+

This function is idempotent and will not raise an exception +if the function is not in the command’s checks.

+
+

New in version 1.3.

+
+
+
Parameters
+

func – The function to remove from the checks.

+
+
+
+ +
+
+update(**kwargs)
+

Updates Command instance with updated attribute.

+

This works similarly to the command() decorator in terms +of parameters in that they are passed to the Command or +subclass constructors, sans the name and callback.

+
+ +
+
+await __call__(context, *args, **kwargs)
+

This function is a coroutine.

+

Calls the internal callback that the command holds.

+
+

Note

+

This bypasses all mechanisms – including checks, converters, +invoke hooks, cooldowns, etc. You must take care to pass +the proper arguments and types to this function.

+
+
+

New in version 1.3.

+
+
+ +
+
+copy()
+

Creates a copy of this command.

+
+
Returns
+

A new instance of this command.

+
+
Return type
+

Command

+
+
+
+ +
+
+property clean_params
+

Dict[str, inspect.Parameter]: +Retrieves the parameter dictionary without the context or self parameters.

+

Useful for inspecting signature.

+
+ +
+
+property full_parent_name
+

Retrieves the fully qualified parent command name.

+

This the base command name required to execute it. For example, +in ?one two three the parent name would be one two.

+
+
Type
+

str

+
+
+
+ +
+
+property parents
+

Retrieves the parents of this command.

+

If the command has no parents then it returns an empty list.

+

For example in commands ?a b c test, the parents are [c, b, a].

+
+

New in version 1.1.

+
+
+
Type
+

List[Group]

+
+
+
+ +
+
+property root_parent
+

Retrieves the root parent of this command.

+

If the command has no parents then it returns None.

+

For example in commands ?a b c test, the root parent is a.

+
+
Type
+

Optional[Group]

+
+
+
+ +
+
+property qualified_name
+

Retrieves the fully qualified command name.

+

This is the full parent name with the command name as well. +For example, in ?one two three the qualified name would be +one two three.

+
+
Type
+

str

+
+
+
+ +
+
+is_on_cooldown(ctx)
+

Checks whether the command is currently on cooldown.

+
+
Parameters
+

ctx (Context) – The invocation context to use when checking the commands cooldown status.

+
+
Returns
+

A boolean indicating if the command is on cooldown.

+
+
Return type
+

bool

+
+
+
+ +
+
+reset_cooldown(ctx)
+

Resets the cooldown on this command.

+
+
Parameters
+

ctx (Context) – The invocation context to reset the cooldown under.

+
+
+
+ +
+
+get_cooldown_retry_after(ctx)
+

Retrieves the amount of seconds before this command can be tried again.

+
+

New in version 1.4.

+
+
+
Parameters
+

ctx (Context) – The invocation context to retrieve the cooldown from.

+
+
Returns
+

The amount of time left on this command’s cooldown in seconds. +If this is 0.0 then the command isn’t on cooldown.

+
+
Return type
+

float

+
+
+
+ +
+
+has_error_handler()
+

bool: Checks whether the command has an error handler registered.

+
+

New in version 1.7.

+
+
+ +
+
+property cog_name
+

The name of the cog this command belongs to, if any.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+property short_doc
+

Gets the “short” documentation of a command.

+

By default, this is the brief attribute. +If that lookup leads to an empty string then the first line of the +help attribute is used instead.

+
+
Type
+

str

+
+
+
+ +
+
+property signature
+

Returns a POSIX-like signature useful for help command output.

+
+
Type
+

str

+
+
+
+ +
+
+await can_run(ctx)
+

This function is a coroutine.

+

Checks if the command can be executed by checking all the predicates +inside the checks attribute. This also checks whether the +command is disabled.

+
+

Changed in version 1.3: Checks whether the command is disabled or not

+
+
+
Parameters
+

ctx (Context) – The ctx of the command currently being invoked.

+
+
Raises
+

CommandError – Any command error that was raised during a check call will be propagated + by this function.

+
+
Returns
+

A boolean indicating if the command can be invoked.

+
+
Return type
+

bool

+
+
+
+ +
+ +
+
+

Group

+
+
+class discord.ext.commands.Group(*args, **kwargs)
+

A class that implements a grouping protocol for commands to be +executed as subcommands.

+

This class is a subclass of Command and thus all options +valid in Command are valid in here as well.

+
+
+invoke_without_command
+

Indicates if the group callback should begin parsing and +invocation only if no subcommand was found. Useful for +making it an error handling function to tell the user that +no subcommand was found or to have different functionality +in case no subcommand was found. If this is False, then +the group callback will always be invoked first. This means +that the checks and the parsing dictated by its parameters +will be executed. Defaults to False.

+
+
Type
+

bool

+
+
+
+ +
+
+case_insensitive
+

Indicates if the group’s commands should be case insensitive. +Defaults to False.

+
+
Type
+

bool

+
+
+
+ +
+
+@after_invoke
+

A decorator that registers a coroutine as a post-invoke hook.

+

A post-invoke hook is called directly after the command is +called. This makes it a useful function to clean-up database +connections or any type of clean up required.

+

This post-invoke hook takes a sole parameter, a Context.

+

See Bot.after_invoke() for more info.

+
+
Parameters
+

coro (coroutine) – The coroutine to register as the post-invoke hook.

+
+
Raises
+

TypeError – The coroutine passed is not actually a coroutine.

+
+
+
+ +
+
+@before_invoke
+

A decorator that registers a coroutine as a pre-invoke hook.

+

A pre-invoke hook is called directly before the command is +called. This makes it a useful function to set up database +connections or any type of set up required.

+

This pre-invoke hook takes a sole parameter, a Context.

+

See Bot.before_invoke() for more info.

+
+
Parameters
+

coro (coroutine) – The coroutine to register as the pre-invoke hook.

+
+
Raises
+

TypeError – The coroutine passed is not actually a coroutine.

+
+
+
+ +
+
+@command(*args, **kwargs)
+

A shortcut decorator that invokes command() and adds it to +the internal command list via add_command().

+
+
Returns
+

A decorator that converts the provided method into a Command, adds it to the bot, then returns it.

+
+
Return type
+

Callable[…, Command]

+
+
+
+ +
+
+@error
+

A decorator that registers a coroutine as a local error handler.

+

A local error handler is an on_command_error() event limited to +a single command. However, the on_command_error() is still +invoked afterwards as the catch-all.

+
+
Parameters
+

coro (coroutine) – The coroutine to register as the local error handler.

+
+
Raises
+

TypeError – The coroutine passed is not actually a coroutine.

+
+
+
+ +
+
+@group(*args, **kwargs)
+

A shortcut decorator that invokes group() and adds it to +the internal command list via add_command().

+
+
Returns
+

A decorator that converts the provided method into a Group, adds it to the bot, then returns it.

+
+
Return type
+

Callable[…, Group]

+
+
+
+ +
+
+copy()
+

Creates a copy of this Group.

+
+
Returns
+

A new instance of this group.

+
+
Return type
+

Group

+
+
+
+ +
+
+add_check(func)
+

Adds a check to the command.

+

This is the non-decorator interface to check().

+
+

New in version 1.3.

+
+
+
Parameters
+

func – The function that will be used as a check.

+
+
+
+ +
+
+add_command(command)
+

Adds a Command into the internal list of commands.

+

This is usually not called, instead the command() or +group() shortcut decorators are used instead.

+
+

Changed in version 1.4: Raise CommandRegistrationError instead of generic ClientException

+
+
+
Parameters
+

command (Command) – The command to add.

+
+
Raises
+
+
+
+
+ +
+
+await can_run(ctx)
+

This function is a coroutine.

+

Checks if the command can be executed by checking all the predicates +inside the checks attribute. This also checks whether the +command is disabled.

+
+

Changed in version 1.3: Checks whether the command is disabled or not

+
+
+
Parameters
+

ctx (Context) – The ctx of the command currently being invoked.

+
+
Raises
+

CommandError – Any command error that was raised during a check call will be propagated + by this function.

+
+
Returns
+

A boolean indicating if the command can be invoked.

+
+
Return type
+

bool

+
+
+
+ +
+
+property clean_params
+

Dict[str, inspect.Parameter]: +Retrieves the parameter dictionary without the context or self parameters.

+

Useful for inspecting signature.

+
+ +
+
+property cog_name
+

The name of the cog this command belongs to, if any.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+property commands
+

A unique set of commands without aliases that are registered.

+
+
Type
+

Set[Command]

+
+
+
+ +
+
+property full_parent_name
+

Retrieves the fully qualified parent command name.

+

This the base command name required to execute it. For example, +in ?one two three the parent name would be one two.

+
+
Type
+

str

+
+
+
+ +
+
+get_command(name)
+

Get a Command from the internal list +of commands.

+

This could also be used as a way to get aliases.

+

The name could be fully qualified (e.g. 'foo bar') will get +the subcommand bar of the group command foo. If a +subcommand is not found then None is returned just as usual.

+
+
Parameters
+

name (str) – The name of the command to get.

+
+
Returns
+

The command that was requested. If not found, returns None.

+
+
Return type
+

Optional[Command]

+
+
+
+ +
+
+get_cooldown_retry_after(ctx)
+

Retrieves the amount of seconds before this command can be tried again.

+
+

New in version 1.4.

+
+
+
Parameters
+

ctx (Context) – The invocation context to retrieve the cooldown from.

+
+
Returns
+

The amount of time left on this command’s cooldown in seconds. +If this is 0.0 then the command isn’t on cooldown.

+
+
Return type
+

float

+
+
+
+ +
+
+has_error_handler()
+

bool: Checks whether the command has an error handler registered.

+
+

New in version 1.7.

+
+
+ +
+
+is_on_cooldown(ctx)
+

Checks whether the command is currently on cooldown.

+
+
Parameters
+

ctx (Context) – The invocation context to use when checking the commands cooldown status.

+
+
Returns
+

A boolean indicating if the command is on cooldown.

+
+
Return type
+

bool

+
+
+
+ +
+
+property parents
+

Retrieves the parents of this command.

+

If the command has no parents then it returns an empty list.

+

For example in commands ?a b c test, the parents are [c, b, a].

+
+

New in version 1.1.

+
+
+
Type
+

List[Group]

+
+
+
+ +
+
+property qualified_name
+

Retrieves the fully qualified command name.

+

This is the full parent name with the command name as well. +For example, in ?one two three the qualified name would be +one two three.

+
+
Type
+

str

+
+
+
+ +
+
+remove_check(func)
+

Removes a check from the command.

+

This function is idempotent and will not raise an exception +if the function is not in the command’s checks.

+
+

New in version 1.3.

+
+
+
Parameters
+

func – The function to remove from the checks.

+
+
+
+ +
+
+remove_command(name)
+

Remove a Command from the internal list +of commands.

+

This could also be used as a way to remove aliases.

+
+
Parameters
+

name (str) – The name of the command to remove.

+
+
Returns
+

The command that was removed. If the name is not valid then +None is returned instead.

+
+
Return type
+

Optional[Command]

+
+
+
+ +
+
+reset_cooldown(ctx)
+

Resets the cooldown on this command.

+
+
Parameters
+

ctx (Context) – The invocation context to reset the cooldown under.

+
+
+
+ +
+
+property root_parent
+

Retrieves the root parent of this command.

+

If the command has no parents then it returns None.

+

For example in commands ?a b c test, the root parent is a.

+
+
Type
+

Optional[Group]

+
+
+
+ +
+
+property short_doc
+

Gets the “short” documentation of a command.

+

By default, this is the brief attribute. +If that lookup leads to an empty string then the first line of the +help attribute is used instead.

+
+
Type
+

str

+
+
+
+ +
+
+property signature
+

Returns a POSIX-like signature useful for help command output.

+
+
Type
+

str

+
+
+
+ +
+
+update(**kwargs)
+

Updates Command instance with updated attribute.

+

This works similarly to the command() decorator in terms +of parameters in that they are passed to the Command or +subclass constructors, sans the name and callback.

+
+ +
+
+for ... in walk_commands()
+

An iterator that recursively walks through all commands and subcommands.

+
+

Changed in version 1.4: Duplicates due to aliases are no longer returned

+
+
+
Yields
+

Union[Command, Group] – A command or group from the internal list of commands.

+
+
+
+ +
+ +
+
+

GroupMixin

+
+ +Attributes +
+ +Methods +
+
+class discord.ext.commands.GroupMixin(*args, **kwargs)
+

A mixin that implements common functionality for classes that behave +similar to Group and are allowed to register commands.

+
+
+all_commands
+

A mapping of command name to Command +objects.

+
+
Type
+

dict

+
+
+
+ +
+
+case_insensitive
+

Whether the commands should be case insensitive. Defaults to True.

+
+
Type
+

bool

+
+
+
+ +
+
+@command(*args, **kwargs)
+

A shortcut decorator that invokes command() and adds it to +the internal command list via add_command().

+
+
Returns
+

A decorator that converts the provided method into a Command, adds it to the bot, then returns it.

+
+
Return type
+

Callable[…, Command]

+
+
+
+ +
+
+@group(*args, **kwargs)
+

A shortcut decorator that invokes group() and adds it to +the internal command list via add_command().

+
+
Returns
+

A decorator that converts the provided method into a Group, adds it to the bot, then returns it.

+
+
Return type
+

Callable[…, Group]

+
+
+
+ +
+
+property commands
+

A unique set of commands without aliases that are registered.

+
+
Type
+

Set[Command]

+
+
+
+ +
+
+add_command(command)
+

Adds a Command into the internal list of commands.

+

This is usually not called, instead the command() or +group() shortcut decorators are used instead.

+
+

Changed in version 1.4: Raise CommandRegistrationError instead of generic ClientException

+
+
+
Parameters
+

command (Command) – The command to add.

+
+
Raises
+
+
+
+
+ +
+
+remove_command(name)
+

Remove a Command from the internal list +of commands.

+

This could also be used as a way to remove aliases.

+
+
Parameters
+

name (str) – The name of the command to remove.

+
+
Returns
+

The command that was removed. If the name is not valid then +None is returned instead.

+
+
Return type
+

Optional[Command]

+
+
+
+ +
+
+for ... in walk_commands()
+

An iterator that recursively walks through all commands and subcommands.

+
+

Changed in version 1.4: Duplicates due to aliases are no longer returned

+
+
+
Yields
+

Union[Command, Group] – A command or group from the internal list of commands.

+
+
+
+ +
+
+get_command(name)
+

Get a Command from the internal list +of commands.

+

This could also be used as a way to get aliases.

+

The name could be fully qualified (e.g. 'foo bar') will get +the subcommand bar of the group command foo. If a +subcommand is not found then None is returned just as usual.

+
+
Parameters
+

name (str) – The name of the command to get.

+
+
Returns
+

The command that was requested. If not found, returns None.

+
+
Return type
+

Optional[Command]

+
+
+
+ +
+ +
+
+
+

Cogs

+
+

Cog

+
+ +Attributes +
+
+class discord.ext.commands.Cog(*args, **kwargs)
+

The base class that all cogs must inherit from.

+

A cog is a collection of commands, listeners, and optional state to +help group commands together. More information on them can be found on +the Cogs page.

+

When inheriting from this class, the options shown in CogMeta +are equally valid here.

+
+
+get_commands()
+
+
Returns
+

A list of Commands that are +defined inside this cog.

+
+

Note

+

This does not include subcommands.

+
+

+
+
Return type
+

List[Command]

+
+
+
+ +
+
+property qualified_name
+

Returns the cog’s specified name, not the class name.

+
+
Type
+

str

+
+
+
+ +
+
+property description
+

Returns the cog’s description, typically the cleaned docstring.

+
+
Type
+

str

+
+
+
+ +
+
+for ... in walk_commands()
+

An iterator that recursively walks through this cog’s commands and subcommands.

+
+
Yields
+

Union[Command, Group] – A command or group from the cog.

+
+
+
+ +
+
+get_listeners()
+

Returns a list of (name, function) listener pairs that are defined in this cog.

+
+
Returns
+

The listeners defined in this cog.

+
+
Return type
+

List[Tuple[str, coroutine]]

+
+
+
+ +
+
+classmethod listener(name=...)
+

A decorator that marks a function as a listener.

+

This is the cog equivalent of Bot.listen().

+
+
Parameters
+

name (str) – The name of the event being listened to. If not provided, it +defaults to the function’s name.

+
+
Raises
+

TypeError – The function is not a coroutine function or a string was not passed as + the name.

+
+
+
+ +
+
+has_error_handler()
+

bool: Checks whether the cog has an error handler.

+
+

New in version 1.7.

+
+
+ +
+
+cog_unload()
+

A special method that is called when the cog gets removed.

+

This function cannot be a coroutine. It must be a regular +function.

+

Subclasses must replace this if they want special unloading behaviour.

+
+ +
+
+bot_check_once(ctx)
+

A special method that registers as a Bot.check_once() +check.

+

This function can be a coroutine and must take a sole parameter, +ctx, to represent the Context.

+
+ +
+
+bot_check(ctx)
+

A special method that registers as a Bot.check() +check.

+

This function can be a coroutine and must take a sole parameter, +ctx, to represent the Context.

+
+ +
+
+cog_check(ctx)
+

A special method that registers as a check() +for every command and subcommand in this cog.

+

This function can be a coroutine and must take a sole parameter, +ctx, to represent the Context.

+
+ +
+
+await cog_command_error(ctx, error)
+

A special method that is called whenever an error +is dispatched inside this cog.

+

This is similar to on_command_error() except only applying +to the commands inside this cog.

+

This must be a coroutine.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context where the error happened.

  • +
  • error (CommandError) – The error that happened.

  • +
+
+
+
+ +
+
+await cog_before_invoke(ctx)
+

A special method that acts as a cog local pre-invoke hook.

+

This is similar to Command.before_invoke().

+

This must be a coroutine.

+
+
Parameters
+

ctx (Context) – The invocation context.

+
+
+
+ +
+
+await cog_after_invoke(ctx)
+

A special method that acts as a cog local post-invoke hook.

+

This is similar to Command.after_invoke().

+

This must be a coroutine.

+
+
Parameters
+

ctx (Context) – The invocation context.

+
+
+
+ +
+ +
+
+

CogMeta

+
+ +Attributes +
+
+class discord.ext.commands.CogMeta(*args, **kwargs)
+

A metaclass for defining a cog.

+

Note that you should probably not use this directly. It is exposed +purely for documentation purposes along with making custom metaclasses to intermix +with other metaclasses such as the abc.ABCMeta metaclass.

+

For example, to create an abstract cog mixin class, the following would be done.

+
import abc
+
+class CogABCMeta(commands.CogMeta, abc.ABCMeta):
+    pass
+
+class SomeMixin(metaclass=abc.ABCMeta):
+    pass
+
+class SomeCogMixin(SomeMixin, commands.Cog, metaclass=CogABCMeta):
+    pass
+
+
+
+

Note

+

When passing an attribute of a metaclass that is documented below, note +that you must pass it as a keyword-only argument to the class creation +like the following example:

+
class MyCog(commands.Cog, name='My Cog'):
+    pass
+
+
+
+
+
+name
+

The cog name. By default, it is the name of the class with no modification.

+
+
Type
+

str

+
+
+
+ +
+
+description
+

The cog description. By default, it is the cleaned docstring of the class.

+
+

New in version 1.6.

+
+
+
Type
+

str

+
+
+
+ +
+
+command_attrs
+

A list of attributes to apply to every command inside this cog. The dictionary +is passed into the Command options at __init__. +If you specify attributes inside the command attribute in the class, it will +override the one specified inside this attribute. For example:

+
class MyCog(commands.Cog, command_attrs=dict(hidden=True)):
+    @commands.command()
+    async def foo(self, ctx):
+        pass # hidden -> True
+
+    @commands.command(hidden=False)
+    async def bar(self, ctx):
+        pass # hidden -> False
+
+
+
+
Type
+

dict

+
+
+
+ +
+ +
+
+
+

Help Commands

+
+

HelpCommand

+
+
+class discord.ext.commands.HelpCommand(*args, **kwargs)
+

The base implementation for help command formatting.

+
+

Note

+

Internally instances of this class are deep copied every time +the command itself is invoked to prevent a race condition +mentioned in GH-2123.

+

This means that relying on the state of this class to be +the same between command invocations would not work as expected.

+
+
+
+context
+

The context that invoked this help formatter. This is generally set after +the help command assigned, command_callback(), has been called.

+
+
Type
+

Optional[Context]

+
+
+
+ +
+
+show_hidden
+

Specifies if hidden commands should be shown in the output. +Defaults to False.

+
+
Type
+

bool

+
+
+
+ +
+
+verify_checks
+

Specifies if commands should have their Command.checks called +and verified. If True, always calls Command.checks. +If None, only calls Command.checks in a guild setting. +If False, never calls Command.checks. Defaults to True.

+
+

Changed in version 1.7.

+
+
+
Type
+

Optional[bool]

+
+
+
+ +
+
+command_attrs
+

A dictionary of options to pass in for the construction of the help command. +This allows you to change the command behaviour without actually changing +the implementation of the command. The attributes will be the same as the +ones passed in the Command constructor.

+
+
Type
+

dict

+
+
+
+ +
+
+add_check(func)
+

Adds a check to the help command.

+
+

New in version 1.4.

+
+
+
Parameters
+

func – The function that will be used as a check.

+
+
+
+ +
+
+remove_check(func)
+

Removes a check from the help command.

+

This function is idempotent and will not raise an exception if +the function is not in the command’s checks.

+
+

New in version 1.4.

+
+
+
Parameters
+

func – The function to remove from the checks.

+
+
+
+ +
+
+get_bot_mapping()
+

Retrieves the bot mapping passed to send_bot_help().

+
+ +
+
+property invoked_with
+

Similar to Context.invoked_with except properly handles +the case where Context.send_help() is used.

+

If the help command was used regularly then this returns +the Context.invoked_with attribute. Otherwise, if +it the help command was called using Context.send_help() +then it returns the internal command name of the help command.

+
+
Returns
+

The command name that triggered this invocation.

+
+
Return type
+

str

+
+
+
+ +
+
+get_command_signature(command)
+

Retrieves the signature portion of the help page.

+
+
Parameters
+

command (Command) – The command to get the signature of.

+
+
Returns
+

The signature for the command.

+
+
Return type
+

str

+
+
+
+ +
+
+remove_mentions(string)
+

Removes mentions from the string to prevent abuse.

+

This includes @everyone, @here, member mentions and role mentions.

+
+
Returns
+

The string with mentions removed.

+
+
Return type
+

str

+
+
+
+ +
+
+property cog
+

A property for retrieving or setting the cog for the help command.

+

When a cog is set for the help command, it is as-if the help command +belongs to that cog. All cog special methods will apply to the help +command and it will be automatically unset on unload.

+

To unbind the cog from the help command, you can set it to None.

+
+
Returns
+

The cog that is currently set for the help command.

+
+
Return type
+

Optional[Cog]

+
+
+
+ +
+
+command_not_found(string)
+

This function could be a coroutine.

+

A method called when a command is not found in the help command. +This is useful to override for i18n.

+

Defaults to No command called {0} found.

+
+
Parameters
+

string (str) – The string that contains the invalid command. Note that this has +had mentions removed to prevent abuse.

+
+
Returns
+

The string to use when a command has not been found.

+
+
Return type
+

str

+
+
+
+ +
+
+subcommand_not_found(command, string)
+

This function could be a coroutine.

+

A method called when a command did not have a subcommand requested in the help command. +This is useful to override for i18n.

+

Defaults to either:

+
    +
  • +
    'Command "{command.qualified_name}" has no subcommands.'
      +
    • If there is no subcommand in the command parameter.

    • +
    +
    +
    +
  • +
  • +
    'Command "{command.qualified_name}" has no subcommand named {string}'
      +
    • If the command parameter has subcommands but not one named string.

    • +
    +
    +
    +
  • +
+
+
Parameters
+
    +
  • command (Command) – The command that did not have the subcommand requested.

  • +
  • string (str) – The string that contains the invalid subcommand. Note that this has +had mentions removed to prevent abuse.

  • +
+
+
Returns
+

The string to use when the command did not have the subcommand requested.

+
+
Return type
+

str

+
+
+
+ +
+
+await filter_commands(commands, *, sort=False, key=None)
+

This function is a coroutine.

+

Returns a filtered list of commands and optionally sorts them.

+

This takes into account the verify_checks and show_hidden +attributes.

+
+
Parameters
+
    +
  • commands (Iterable[Command]) – An iterable of commands that are getting filtered.

  • +
  • sort (bool) – Whether to sort the result.

  • +
  • key (Optional[Callable[Command, Any]]) – An optional key function to pass to sorted() that +takes a Command as its sole parameter. If sort is +passed as True then this will default as the command name.

  • +
+
+
Returns
+

A list of commands that passed the filter.

+
+
Return type
+

List[Command]

+
+
+
+ +
+
+get_max_size(commands)
+

Returns the largest name length of the specified command list.

+
+
Parameters
+

commands (Sequence[Command]) – A sequence of commands to check for the largest size.

+
+
Returns
+

The maximum width of the commands.

+
+
Return type
+

int

+
+
+
+ +
+
+get_destination()
+

Returns the Messageable where the help command will be output.

+

You can override this method to customise the behaviour.

+

By default this returns the context’s channel.

+
+
Returns
+

The destination where the help command will be output.

+
+
Return type
+

abc.Messageable

+
+
+
+ +
+
+await send_error_message(error)
+

This function is a coroutine.

+

Handles the implementation when an error happens in the help command. +For example, the result of command_not_found() will be passed here.

+

You can override this method to customise the behaviour.

+

By default, this sends the error message to the destination +specified by get_destination().

+
+

Note

+

You can access the invocation context with HelpCommand.context.

+
+
+
Parameters
+

error (str) – The error message to display to the user. Note that this has +had mentions removed to prevent abuse.

+
+
+
+ +
+
+await on_help_command_error(ctx, error)
+

This function is a coroutine.

+

The help command’s error handler, as specified by Error Handling.

+

Useful to override if you need some specific behaviour when the error handler +is called.

+

By default this method does nothing and just propagates to the default +error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context.

  • +
  • error (CommandError) – The error that was raised.

  • +
+
+
+
+ +
+
+await send_bot_help(mapping)
+

This function is a coroutine.

+

Handles the implementation of the bot command page in the help command. +This function is called when the help command is called with no arguments.

+

It should be noted that this method does not return anything – rather the +actual message sending should be done inside this method. Well behaved subclasses +should use get_destination() to know where to send, as this is a customisation +point for other users.

+

You can override this method to customise the behaviour.

+
+

Note

+

You can access the invocation context with HelpCommand.context.

+

Also, the commands in the mapping are not filtered. To do the filtering +you will have to call filter_commands() yourself.

+
+
+
Parameters
+

mapping (Mapping[Optional[Cog], List[Command]]) – A mapping of cogs to commands that have been requested by the user for help. +The key of the mapping is the Cog that the command belongs to, or +None if there isn’t one, and the value is a list of commands that belongs to that cog.

+
+
+
+ +
+
+await send_cog_help(cog)
+

This function is a coroutine.

+

Handles the implementation of the cog page in the help command. +This function is called when the help command is called with a cog as the argument.

+

It should be noted that this method does not return anything – rather the +actual message sending should be done inside this method. Well behaved subclasses +should use get_destination() to know where to send, as this is a customisation +point for other users.

+

You can override this method to customise the behaviour.

+
+

Note

+

You can access the invocation context with HelpCommand.context.

+

To get the commands that belong to this cog see Cog.get_commands(). +The commands returned not filtered. To do the filtering you will have to call +filter_commands() yourself.

+
+
+
Parameters
+

cog (Cog) – The cog that was requested for help.

+
+
+
+ +
+
+await send_group_help(group)
+

This function is a coroutine.

+

Handles the implementation of the group page in the help command. +This function is called when the help command is called with a group as the argument.

+

It should be noted that this method does not return anything – rather the +actual message sending should be done inside this method. Well behaved subclasses +should use get_destination() to know where to send, as this is a customisation +point for other users.

+

You can override this method to customise the behaviour.

+
+

Note

+

You can access the invocation context with HelpCommand.context.

+

To get the commands that belong to this group without aliases see +Group.commands. The commands returned not filtered. To do the +filtering you will have to call filter_commands() yourself.

+
+
+
Parameters
+

group (Group) – The group that was requested for help.

+
+
+
+ +
+
+await send_command_help(command)
+

This function is a coroutine.

+

Handles the implementation of the single command page in the help command.

+

It should be noted that this method does not return anything – rather the +actual message sending should be done inside this method. Well behaved subclasses +should use get_destination() to know where to send, as this is a customisation +point for other users.

+

You can override this method to customise the behaviour.

+
+

Note

+

You can access the invocation context with HelpCommand.context.

+
+
+

Showing Help

+

There are certain attributes and methods that are helpful for a help command +to show such as the following:

+ +

There are more than just these attributes but feel free to play around with +these to help you get started to get the output that you want.

+
+
+
Parameters
+

command (Command) – The command that was requested for help.

+
+
+
+ +
+
+await prepare_help_command(ctx, command=None)
+

This function is a coroutine.

+

A low level method that can be used to prepare the help command +before it does anything. For example, if you need to prepare +some state in your subclass before the command does its processing +then this would be the place to do it.

+

The default implementation does nothing.

+
+

Note

+

This is called inside the help command callback body. So all +the usual rules that happen inside apply here as well.

+
+
+
Parameters
+
    +
  • ctx (Context) – The invocation context.

  • +
  • command (Optional[str]) – The argument passed to the help command.

  • +
+
+
+
+ +
+
+await command_callback(ctx, *, command=None)
+

This function is a coroutine.

+

The actual implementation of the help command.

+

It is not recommended to override this method and instead change +the behaviour through the methods that actually get dispatched.

+ +
+ +
+ +
+
+

DefaultHelpCommand

+
+
+class discord.ext.commands.DefaultHelpCommand(*args, **kwargs)
+

The implementation of the default help command.

+

This inherits from HelpCommand.

+

It extends it with the following attributes.

+
+
+width
+

The maximum number of characters that fit in a line. +Defaults to 80.

+
+
Type
+

int

+
+
+
+ +
+
+sort_commands
+

Whether to sort the commands in the output alphabetically. Defaults to True.

+
+
Type
+

bool

+
+
+
+ +
+
+dm_help
+

A tribool that indicates if the help command should DM the user instead of +sending it to the channel it received it from. If the boolean is set to +True, then all help output is DM’d. If False, none of the help +output is DM’d. If None, then the bot will only DM when the help +message becomes too long (dictated by more than dm_help_threshold characters). +Defaults to False.

+
+
Type
+

Optional[bool]

+
+
+
+ +
+
+dm_help_threshold
+

The number of characters the paginator must accumulate before getting DM’d to the +user if dm_help is set to None. Defaults to 1000.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+indent
+

How much to indent the commands from a heading. Defaults to 2.

+
+
Type
+

int

+
+
+
+ +
+
+commands_heading
+

The command list’s heading string used when the help command is invoked with a category name. +Useful for i18n. Defaults to "Commands:"

+
+
Type
+

str

+
+
+
+ +
+
+no_category
+

The string used when there is a command which does not belong to any category(cog). +Useful for i18n. Defaults to "No Category"

+
+
Type
+

str

+
+
+
+ +
+
+paginator
+

The paginator used to paginate the help command output.

+
+
Type
+

Paginator

+
+
+
+ +
+
+shorten_text(text)
+

str: Shortens text to fit into the width.

+
+ +
+
+get_ending_note()
+

str: Returns help command’s ending note. This is mainly useful to override for i18n purposes.

+
+ +
+
+add_indented_commands(commands, *, heading, max_size=None)
+

Indents a list of commands after the specified heading.

+

The formatting is added to the paginator.

+

The default implementation is the command name indented by +indent spaces, padded to max_size followed by +the command’s Command.short_doc and then shortened +to fit into the width.

+
+
Parameters
+
    +
  • commands (Sequence[Command]) – A list of commands to indent for output.

  • +
  • heading (str) – The heading to add to the output. This is only added +if the list of commands is greater than 0.

  • +
  • max_size (Optional[int]) – The max size to use for the gap between indents. +If unspecified, calls get_max_size() on the +commands parameter.

  • +
+
+
+
+ +
+
+await send_pages()
+

A helper utility to send the page output from paginator to the destination.

+
+ +
+
+add_command_formatting(command)
+

A utility function to format the non-indented block of commands and groups.

+
+
Parameters
+

command (Command) – The command to format.

+
+
+
+ +
+
+get_destination()
+

Returns the Messageable where the help command will be output.

+

You can override this method to customise the behaviour.

+

By default this returns the context’s channel.

+
+
Returns
+

The destination where the help command will be output.

+
+
Return type
+

abc.Messageable

+
+
+
+ +
+ +
+
+

MinimalHelpCommand

+
+
+class discord.ext.commands.MinimalHelpCommand(*args, **kwargs)
+

An implementation of a help command with minimal output.

+

This inherits from HelpCommand.

+
+
+sort_commands
+

Whether to sort the commands in the output alphabetically. Defaults to True.

+
+
Type
+

bool

+
+
+
+ +
+
+commands_heading
+

The command list’s heading string used when the help command is invoked with a category name. +Useful for i18n. Defaults to "Commands"

+
+
Type
+

str

+
+
+
+ +
+
+aliases_heading
+

The alias list’s heading string used to list the aliases of the command. Useful for i18n. +Defaults to "Aliases:".

+
+
Type
+

str

+
+
+
+ +
+
+dm_help
+

A tribool that indicates if the help command should DM the user instead of +sending it to the channel it received it from. If the boolean is set to +True, then all help output is DM’d. If False, none of the help +output is DM’d. If None, then the bot will only DM when the help +message becomes too long (dictated by more than dm_help_threshold characters). +Defaults to False.

+
+
Type
+

Optional[bool]

+
+
+
+ +
+
+dm_help_threshold
+

The number of characters the paginator must accumulate before getting DM’d to the +user if dm_help is set to None. Defaults to 1000.

+
+
Type
+

Optional[int]

+
+
+
+ +
+
+no_category
+

The string used when there is a command which does not belong to any category(cog). +Useful for i18n. Defaults to "No Category"

+
+
Type
+

str

+
+
+
+ +
+
+paginator
+

The paginator used to paginate the help command output.

+
+
Type
+

Paginator

+
+
+
+ +
+
+await send_pages()
+

A helper utility to send the page output from paginator to the destination.

+
+ +
+
+get_opening_note()
+

Returns help command’s opening note. This is mainly useful to override for i18n purposes.

+

The default implementation returns

+
Use `{prefix}{command_name} [command]` for more info on a command.
+You can also use `{prefix}{command_name} [category]` for more info on a category.
+
+
+
+
Returns
+

The help command opening note.

+
+
Return type
+

str

+
+
+
+ +
+
+get_command_signature(command)
+

Retrieves the signature portion of the help page.

+
+
Parameters
+

command (Command) – The command to get the signature of.

+
+
Returns
+

The signature for the command.

+
+
Return type
+

str

+
+
+
+ +
+
+get_ending_note()
+

Return the help command’s ending note. This is mainly useful to override for i18n purposes.

+

The default implementation does nothing.

+
+
Returns
+

The help command ending note.

+
+
Return type
+

str

+
+
+
+ +
+
+add_bot_commands_formatting(commands, heading)
+

Adds the minified bot heading with commands to the output.

+

The formatting should be added to the paginator.

+

The default implementation is a bold underline heading followed +by commands separated by an EN SPACE (U+2002) in the next line.

+
+
Parameters
+
    +
  • commands (Sequence[Command]) – A list of commands that belong to the heading.

  • +
  • heading (str) – The heading to add to the line.

  • +
+
+
+
+ +
+
+add_subcommand_formatting(command)
+

Adds formatting information on a subcommand.

+

The formatting should be added to the paginator.

+

The default implementation is the prefix and the Command.qualified_name +optionally followed by an En dash and the command’s Command.short_doc.

+
+
Parameters
+

command (Command) – The command to show information of.

+
+
+
+ +
+
+add_aliases_formatting(aliases)
+

Adds the formatting information on a command’s aliases.

+

The formatting should be added to the paginator.

+

The default implementation is the aliases_heading bolded +followed by a comma separated list of aliases.

+

This is not called if there are no aliases to format.

+
+
Parameters
+

aliases (Sequence[str]) – A list of aliases to format.

+
+
+
+ +
+
+add_command_formatting(command)
+

A utility function to format commands and groups.

+
+
Parameters
+

command (Command) – The command to format.

+
+
+
+ +
+
+get_destination()
+

Returns the Messageable where the help command will be output.

+

You can override this method to customise the behaviour.

+

By default this returns the context’s channel.

+
+
Returns
+

The destination where the help command will be output.

+
+
Return type
+

abc.Messageable

+
+
+
+ +
+ +
+
+

Paginator

+
+ +Attributes +
+ +Methods +
+
+class discord.ext.commands.Paginator(prefix='```', suffix='```', max_size=2000, linesep='\n')
+

A class that aids in paginating code blocks for Discord messages.

+
+
+
+len(x)
+

Returns the total number of characters in the paginator.

+
+ +
+
+
+prefix
+

The prefix inserted to every page. e.g. three backticks.

+
+
Type
+

str

+
+
+
+ +
+
+suffix
+

The suffix appended at the end of every page. e.g. three backticks.

+
+
Type
+

str

+
+
+
+ +
+
+max_size
+

The maximum amount of codepoints allowed in a page.

+
+
Type
+

int

+
+
+
+ +
+
+linesep
+
+
The character string inserted between lines. e.g. a newline character.
+

New in version 1.7.

+
+
+
+
+
Type
+

str

+
+
+
+ +
+
+clear()
+

Clears the paginator to have no pages.

+
+ +
+
+add_line(line='', *, empty=False)
+

Adds a line to the current page.

+

If the line exceeds the max_size then an exception +is raised.

+
+
Parameters
+
    +
  • line (str) – The line to add.

  • +
  • empty (bool) – Indicates if another empty line should be added.

  • +
+
+
Raises
+

RuntimeError – The line was too big for the current max_size.

+
+
+
+ +
+
+close_page()
+

Prematurely terminate a page.

+
+ +
+
+property pages
+

Returns the rendered list of pages.

+
+
Type
+

List[str]

+
+
+
+ +
+ +
+
+
+

Enums

+
+
+class discord.ext.commands.BucketType
+

Specifies a type of bucket for, e.g. a cooldown.

+
+
+default
+

The default bucket operates on a global basis.

+
+ +
+
+user
+

The user bucket operates on a per-user basis.

+
+ +
+
+guild
+

The guild bucket operates on a per-guild basis.

+
+ +
+
+channel
+

The channel bucket operates on a per-channel basis.

+
+ +
+
+member
+

The member bucket operates on a per-member basis.

+
+ +
+
+category
+

The category bucket operates on a per-category basis.

+
+ +
+
+role
+

The role bucket operates on a per-role basis.

+
+

New in version 1.3.

+
+
+ +
+ +
+
+

Checks

+
+
+@discord.ext.commands.check(predicate)
+

A decorator that adds a check to the Command or its +subclasses. These checks could be accessed via Command.checks.

+

These checks should be predicates that take in a single parameter taking +a Context. If the check returns a False-like value then +during invocation a CheckFailure exception is raised and sent to +the on_command_error() event.

+

If an exception should be thrown in the predicate then it should be a +subclass of CommandError. Any exception not subclassed from it +will be propagated while those subclassed will be sent to +on_command_error().

+

A special attribute named predicate is bound to the value +returned by this decorator to retrieve the predicate passed to the +decorator. This allows the following introspection and chaining to be done:

+
def owner_or_permissions(**perms):
+    original = commands.has_permissions(**perms).predicate
+    async def extended_check(ctx):
+        if ctx.guild is None:
+            return False
+        return ctx.guild.owner_id == ctx.author.id or await original(ctx)
+    return commands.check(extended_check)
+
+
+
+

Note

+

The function returned by predicate is always a coroutine, +even if the original function was not a coroutine.

+
+
+

Changed in version 1.3: The predicate attribute was added.

+
+

Examples

+

Creating a basic check to see if the command invoker is you.

+
def check_if_it_is_me(ctx):
+    return ctx.message.author.id == 85309593344815104
+
+@bot.command()
+@commands.check(check_if_it_is_me)
+async def only_for_me(ctx):
+    await ctx.send('I know you!')
+
+
+

Transforming common checks into its own decorator:

+
def is_me():
+    def predicate(ctx):
+        return ctx.message.author.id == 85309593344815104
+    return commands.check(predicate)
+
+@bot.command()
+@is_me()
+async def only_me(ctx):
+    await ctx.send('Only you!')
+
+
+
+
Parameters
+
    +
  • predicate (Callable[[Context], bool]) – The predicate to check if the command should be invoked.

  • +
  • **command_attrs (Dict[str, Any]) – key: value pairs to be added to the command’s attributes.

  • +
+
+
+
+ +
+
+@discord.ext.commands.check_any(*checks)
+

A check() that is added that checks if any of the checks passed +will pass, i.e. using logical OR.

+

If all checks fail then CheckAnyFailure is raised to signal the failure. +It inherits from CheckFailure.

+
+

Note

+

The predicate attribute for this function is a coroutine.

+
+
+

New in version 1.3.

+
+
+
Parameters
+

*checks (Callable[[Context], bool]) – An argument list of checks that have been decorated with +the check() decorator.

+
+
Raises
+

TypeError – A check passed has not been decorated with the check() + decorator.

+
+
+

Examples

+

Creating a basic check to see if it’s the bot owner or +the server owner:

+
def is_guild_owner():
+    def predicate(ctx):
+        return ctx.guild is not None and ctx.guild.owner_id == ctx.author.id
+    return commands.check(predicate)
+
+@bot.command()
+@commands.check_any(commands.is_owner(), is_guild_owner())
+async def only_for_owners(ctx):
+    await ctx.send('Hello mister owner!')
+
+
+
+ +
+
+@discord.ext.commands.has_role(item)
+

A check() that is added that checks if the member invoking the +command has the role specified via the name or ID specified.

+

If a string is specified, you must give the exact name of the role, including +caps and spelling.

+

If an integer is specified, you must give the exact snowflake ID of the role.

+

If the message is invoked in a private message context then the check will +return False.

+

This check raises one of two special exceptions, MissingRole if the user +is missing a role, or NoPrivateMessage if it is used in a private message. +Both inherit from CheckFailure.

+
+

Changed in version 1.1: Raise MissingRole or NoPrivateMessage +instead of generic CheckFailure

+
+
+
Parameters
+

item (Union[int, str]) – The name or ID of the role to check.

+
+
+
+ +
+
+@discord.ext.commands.has_permissions(**perms)
+

A check() that is added that checks if the member has all of +the permissions necessary.

+

Note that this check operates on the current channel permissions, not the +guild wide permissions.

+

The permissions passed in must be exactly like the properties shown under +discord.Permissions.

+

This check raises a special exception, MissingPermissions +that is inherited from CheckFailure.

+
+
Parameters
+

perms – An argument list of permissions to check for.

+
+
+

Example

+
@bot.command()
+@commands.has_permissions(manage_messages=True)
+async def test(ctx):
+    await ctx.send('You can manage messages.')
+
+
+
+ +
+
+@discord.ext.commands.has_guild_permissions(**perms)
+

Similar to has_permissions(), but operates on guild wide +permissions instead of the current channel permissions.

+

If this check is called in a DM context, it will raise an +exception, NoPrivateMessage.

+
+

New in version 1.3.

+
+
+ +
+
+@discord.ext.commands.has_any_role(*items)
+

A check() that is added that checks if the member invoking the +command has any of the roles specified. This means that if they have +one out of the three roles specified, then this check will return True.

+

Similar to has_role(), the names or IDs passed in must be exact.

+

This check raises one of two special exceptions, MissingAnyRole if the user +is missing all roles, or NoPrivateMessage if it is used in a private message. +Both inherit from CheckFailure.

+
+

Changed in version 1.1: Raise MissingAnyRole or NoPrivateMessage +instead of generic CheckFailure

+
+
+
Parameters
+

items (List[Union[str, int]]) – An argument list of names or IDs to check that the member has roles wise.

+
+
+

Example

+
@bot.command()
+@commands.has_any_role('Library Devs', 'Moderators', 492212595072434186)
+async def cool(ctx):
+    await ctx.send('You are cool indeed')
+
+
+
+ +
+
+@discord.ext.commands.bot_has_role(item)
+

Similar to has_role() except checks if the bot itself has the +role.

+

This check raises one of two special exceptions, BotMissingRole if the bot +is missing the role, or NoPrivateMessage if it is used in a private message. +Both inherit from CheckFailure.

+
+

Changed in version 1.1: Raise BotMissingRole or NoPrivateMessage +instead of generic CheckFailure

+
+
+ +
+
+@discord.ext.commands.bot_has_permissions(**perms)
+

Similar to has_permissions() except checks if the bot itself has +the permissions listed.

+

This check raises a special exception, BotMissingPermissions +that is inherited from CheckFailure.

+
+ +
+
+@discord.ext.commands.bot_has_guild_permissions(**perms)
+

Similar to has_guild_permissions(), but checks the bot +members guild permissions.

+
+

New in version 1.3.

+
+
+ +
+
+@discord.ext.commands.bot_has_any_role(*items)
+

Similar to has_any_role() except checks if the bot itself has +any of the roles listed.

+

This check raises one of two special exceptions, BotMissingAnyRole if the bot +is missing all roles, or NoPrivateMessage if it is used in a private message. +Both inherit from CheckFailure.

+
+

Changed in version 1.1: Raise BotMissingAnyRole or NoPrivateMessage +instead of generic checkfailure

+
+
+ +
+
+@discord.ext.commands.cooldown(rate, per, type=discord.ext.commands.BucketType.default)
+

A decorator that adds a cooldown to a Command

+

A cooldown allows a command to only be used a specific amount +of times in a specific time frame. These cooldowns can be based +either on a per-guild, per-channel, per-user, per-role or global basis. +Denoted by the third argument of type which must be of enum +type BucketType.

+

If a cooldown is triggered, then CommandOnCooldown is triggered in +on_command_error() and the local error handler.

+

A command can only have a single cooldown.

+
+
Parameters
+
    +
  • rate (int) – The number of times a command can be used before triggering a cooldown.

  • +
  • per (float) – The amount of seconds to wait for a cooldown when it’s been triggered.

  • +
  • type (Union[BucketType, Callable[[Message], Any]]) –

    The type of cooldown to have. If callable, should return a key for the mapping.

    +
    +

    Changed in version 1.7: Callables are now supported for custom bucket types.

    +
    +

  • +
+
+
+
+ +
+
+@discord.ext.commands.dynamic_cooldown(cooldown, type=BucketType.default)
+

A decorator that adds a dynamic cooldown to a Command

+

This differs from cooldown() in that it takes a function that +accepts a single parameter of type discord.Message and must +return a Cooldown or None. If None is returned then +that cooldown is effectively bypassed.

+

A cooldown allows a command to only be used a specific amount +of times in a specific time frame. These cooldowns can be based +either on a per-guild, per-channel, per-user, per-role or global basis. +Denoted by the third argument of type which must be of enum +type BucketType.

+

If a cooldown is triggered, then CommandOnCooldown is triggered in +on_command_error() and the local error handler.

+

A command can only have a single cooldown.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • cooldown (Callable[[discord.Message], Optional[Cooldown]]) – A function that takes a message and returns a cooldown that will +apply to this invocation or None if the cooldown should be bypassed.

  • +
  • type (BucketType) – The type of cooldown to have.

  • +
+
+
+
+ +
+
+@discord.ext.commands.max_concurrency(number, per=discord.ext.commands.BucketType.default, *, wait=False)
+

A decorator that adds a maximum concurrency to a Command or its subclasses.

+

This enables you to only allow a certain number of command invocations at the same time, +for example if a command takes too long or if only one user can use it at a time. This +differs from a cooldown in that there is no set waiting period or token bucket – only +a set number of people can run the command.

+
+

New in version 1.3.

+
+
+
Parameters
+
    +
  • number (int) – The maximum number of invocations of this command that can be running at the same time.

  • +
  • per (BucketType) – The bucket that this concurrency is based on, e.g. BucketType.guild would allow +it to be used up to number times per guild.

  • +
  • wait (bool) – Whether the command should wait for the queue to be over. If this is set to False +then instead of waiting until the command can run again, the command raises +MaxConcurrencyReached to its error handler. If this is set to True +then the command waits until it can be executed.

  • +
+
+
+
+ +
+
+@discord.ext.commands.before_invoke(coro)
+

A decorator that registers a coroutine as a pre-invoke hook.

+

This allows you to refer to one before invoke hook for several commands that +do not have to be within the same cog.

+
+

New in version 1.4.

+
+

Example

+
async def record_usage(ctx):
+    print(ctx.author, 'used', ctx.command, 'at', ctx.message.created_at)
+
+@bot.command()
+@commands.before_invoke(record_usage)
+async def who(ctx): # Output: <User> used who at <Time>
+    await ctx.send('i am a bot')
+
+class What(commands.Cog):
+
+    @commands.before_invoke(record_usage)
+    @commands.command()
+    async def when(self, ctx): # Output: <User> used when at <Time>
+        await ctx.send(f'and i have existed since {ctx.bot.user.created_at}')
+
+    @commands.command()
+    async def where(self, ctx): # Output: <Nothing>
+        await ctx.send('on Discord')
+
+    @commands.command()
+    async def why(self, ctx): # Output: <Nothing>
+        await ctx.send('because someone made me')
+
+bot.add_cog(What())
+
+
+
+ +
+
+@discord.ext.commands.after_invoke(coro)
+

A decorator that registers a coroutine as a post-invoke hook.

+

This allows you to refer to one after invoke hook for several commands that +do not have to be within the same cog.

+
+

New in version 1.4.

+
+
+ +
+
+@discord.ext.commands.guild_only()
+

A check() that indicates this command must only be used in a +guild context only. Basically, no private messages are allowed when +using the command.

+

This check raises a special exception, NoPrivateMessage +that is inherited from CheckFailure.

+
+ +
+
+@discord.ext.commands.dm_only()
+

A check() that indicates this command must only be used in a +DM context. Only private messages are allowed when +using the command.

+

This check raises a special exception, PrivateMessageOnly +that is inherited from CheckFailure.

+
+

New in version 1.1.

+
+
+ +
+
+@discord.ext.commands.is_owner()
+

A check() that checks if the person invoking this command is the +owner of the bot.

+

This is powered by Bot.is_owner().

+

This check raises a special exception, NotOwner that is derived +from CheckFailure.

+
+ +
+
+@discord.ext.commands.is_nsfw()
+

A check() that checks if the channel is a NSFW channel.

+

This check raises a special exception, NSFWChannelRequired +that is derived from CheckFailure.

+
+

Changed in version 1.1: Raise NSFWChannelRequired instead of generic CheckFailure. +DM channels will also now pass this check.

+
+
+ +
+
+

Cooldown

+
+ +Attributes +
+ +Methods +
+
+class discord.ext.commands.Cooldown(rate, per)
+

Represents a cooldown for a command.

+
+
+rate
+

The total number of tokens available per per seconds.

+
+
Type
+

int

+
+
+
+ +
+
+per
+

The length of the cooldown period in seconds.

+
+
Type
+

float

+
+
+
+ +
+
+get_tokens(current=None)
+

Returns the number of available tokens before rate limiting is applied.

+
+
Parameters
+

current (Optional[float]) – The time in seconds since Unix epoch to calculate tokens at. +If not supplied then time.time() is used.

+
+
Returns
+

The number of tokens available before the cooldown is to be applied.

+
+
Return type
+

int

+
+
+
+ +
+
+get_retry_after(current=None)
+

Returns the time in seconds until the cooldown will be reset.

+
+
Parameters
+

current (Optional[float]) – The current time in seconds since Unix epoch. +If not supplied, then time.time() is used.

+
+
Returns
+

The number of seconds to wait before this cooldown will be reset.

+
+
Return type
+

float

+
+
+
+ +
+
+update_rate_limit(current=None)
+

Updates the cooldown rate limit.

+
+
Parameters
+

current (Optional[float]) – The time in seconds since Unix epoch to update the rate limit at. +If not supplied, then time.time() is used.

+
+
Returns
+

The retry-after time in seconds if rate limited.

+
+
Return type
+

Optional[float]

+
+
+
+ +
+
+reset()
+

Reset the cooldown to its initial state.

+
+ +
+
+copy()
+

Creates a copy of this cooldown.

+
+
Returns
+

A new instance of this cooldown.

+
+
Return type
+

Cooldown

+
+
+
+ +
+ +
+
+

Context

+
+
+class discord.ext.commands.Context(*, message, bot, view, args=..., kwargs=..., prefix=None, command=None, invoked_with=None, invoked_parents=..., invoked_subcommand=None, subcommand_passed=None, command_failed=False, current_parameter=None)
+

Represents the context in which a command is being invoked under.

+

This class contains a lot of meta data to help you understand more about +the invocation context. This class is not created manually and is instead +passed around to commands as the first parameter.

+

This class implements the Messageable ABC.

+
+
+message
+

The message that triggered the command being executed.

+
+
Type
+

Message

+
+
+
+ +
+
+bot
+

The bot that contains the command being executed.

+
+
Type
+

Bot

+
+
+
+ +
+
+args
+

The list of transformed arguments that were passed into the command. +If this is accessed during the on_command_error() event +then this list could be incomplete.

+
+
Type
+

list

+
+
+
+ +
+
+kwargs
+

A dictionary of transformed arguments that were passed into the command. +Similar to args, if this is accessed in the +on_command_error() event then this dict could be incomplete.

+
+
Type
+

dict

+
+
+
+ +
+
+current_parameter
+

The parameter that is currently being inspected and converted. +This is only of use for within converters.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[inspect.Parameter]

+
+
+
+ +
+
+prefix
+

The prefix that was used to invoke the command.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+command
+

The command that is being invoked currently.

+
+
Type
+

Optional[Command]

+
+
+
+ +
+
+invoked_with
+

The command name that triggered this invocation. Useful for finding out +which alias called the command.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+invoked_parents
+

The command names of the parents that triggered this invocation. Useful for +finding out which aliases called the command.

+

For example in commands ?a b c test, the invoked parents are ['a', 'b', 'c'].

+
+

New in version 1.7.

+
+
+
Type
+

List[str]

+
+
+
+ +
+
+invoked_subcommand
+

The subcommand that was invoked. +If no valid subcommand was invoked then this is equal to None.

+
+
Type
+

Optional[Command]

+
+
+
+ +
+
+subcommand_passed
+

The string that was attempted to call a subcommand. This does not have +to point to a valid registered subcommand and could just point to a +nonsense string. If nothing was passed to attempt a call to a +subcommand then this is set to None.

+
+
Type
+

Optional[str]

+
+
+
+ +
+
+command_failed
+

A boolean that indicates if the command failed to be parsed, checked, +or invoked.

+
+
Type
+

bool

+
+
+
+ +
+
+async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
+

Returns an AsyncIterator that enables receiving the destination’s message history.

+

You must have read_message_history permissions to use this.

+

Examples

+

Usage

+
counter = 0
+async for message in channel.history(limit=200):
+    if message.author == client.user:
+        counter += 1
+
+
+

Flattening into a list:

+
messages = await channel.history(limit=123).flatten()
+# messages is now a list of Message...
+
+
+

All parameters are optional.

+
+
Parameters
+
    +
  • limit (Optional[int]) – The number of messages to retrieve. +If None, retrieves every message in the channel. Note, however, +that this would make it a slow operation.

  • +
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time.

  • +
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. +If a datetime is provided, it is recommended to use a UTC aware datetime. +If the datetime is naive, it is assumed to be local time. +When using this argument, the maximum limit is 101. Note that if the limit is an +even number then this will return at most limit + 1 messages.

  • +
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if +after is specified, otherwise False.

  • +
+
+
Raises
+
    +
  • Forbidden – You do not have permissions to get channel message history.

  • +
  • HTTPException – The request to get message history failed.

  • +
+
+
Yields
+

Message – The message with the message data parsed.

+
+
+
+ +
+
+async with typing()
+

Returns a context manager that allows you to type for an indefinite period of time.

+

This is useful for denoting long computations in your bot.

+
+

Note

+

This is both a regular context manager and an async context manager. +This means that both with and async with work with this.

+
+

Example Usage:

+
async with channel.typing():
+    # simulate something heavy
+    await asyncio.sleep(10)
+
+await channel.send('done!')
+
+
+
+ +
+
+await invoke(command, /, *args, **kwargs)
+

This function is a coroutine.

+

Calls a command with the arguments given.

+

This is useful if you want to just call the callback that a +Command holds internally.

+
+

Note

+

This does not handle converters, checks, cooldowns, pre-invoke, +or after-invoke hooks in any matter. It calls the internal callback +directly as-if it was a regular function.

+

You must take care in passing the proper arguments when +using this function.

+
+
+
Parameters
+
    +
  • command (Command) – The command that is going to be called.

  • +
  • *args – The arguments to use.

  • +
  • **kwargs – The keyword arguments to use.

  • +
+
+
Raises
+

TypeError – The command argument to invoke is missing.

+
+
+
+ +
+
+await reinvoke(*, call_hooks=False, restart=True)
+

This function is a coroutine.

+

Calls the command again.

+

This is similar to invoke() except that it bypasses +checks, cooldowns, and error handlers.

+
+

Note

+

If you want to bypass UserInputError derived exceptions, +it is recommended to use the regular invoke() +as it will work more naturally. After all, this will end up +using the old arguments the user has used and will thus just +fail again.

+
+
+
Parameters
+
    +
  • call_hooks (bool) – Whether to call the before and after invoke hooks.

  • +
  • restart (bool) – Whether to start the call chain from the very beginning +or where we left off (i.e. the command that caused the error). +The default is to start where we left off.

  • +
+
+
Raises
+

ValueError – The context to reinvoke is not valid.

+
+
+
+ +
+
+property valid
+

Checks if the invocation context is valid to be invoked with.

+
+
Type
+

bool

+
+
+
+ +
+
+property clean_prefix
+

The cleaned up invoke prefix. i.e. mentions are @name instead of <@id>.

+
+

New in version 2.0.

+
+
+
Type
+

str

+
+
+
+ +
+
+property cog
+

Returns the cog associated with this context’s command. None if it does not exist.

+
+
Type
+

Optional[Cog]

+
+
+
+ +
+
+guild
+

Returns the guild associated with this context’s command. None if not available.

+
+
Type
+

Optional[Guild]

+
+
+
+ +
+
+channel
+

Returns the channel associated with this context’s command. +Shorthand for Message.channel.

+
+
Type
+

Union[abc.Messageable]

+
+
+
+ +
+
+author
+

Union[User, Member]: +Returns the author associated with this context’s command. Shorthand for Message.author

+
+ +
+
+me
+

Union[Member, ClientUser]: +Similar to Guild.me except it may return the ClientUser in private message contexts.

+
+ +
+
+property voice_client
+

A shortcut to Guild.voice_client, if applicable.

+
+
Type
+

Optional[VoiceProtocol]

+
+
+
+ +
+
+author_permissions()
+

Returns the author permissions in the given channel.

+
+

New in version 2.0.

+
+
+ +
+
+await send_help(entity=<bot>)
+

This function is a coroutine.

+

Shows the help command for the specified entity if given. +The entity can be a command or a cog.

+

If no entity is given, then it’ll show help for the +entire bot.

+

If the entity is a string, then it looks up whether it’s a +Cog or a Command.

+
+

Note

+

Due to the way this function works, instead of returning +something similar to command_not_found() +this returns None on bad input or no help command.

+
+
+
Parameters
+

entity (Optional[Union[Command, Cog, str]]) – The entity to show help for.

+
+
Returns
+

The result of the help command, if any.

+
+
Return type
+

Any

+
+
+
+ +
+
+await fetch_message(id, /)
+

This function is a coroutine.

+

Retrieves a single Message from the destination.

+
+
Parameters
+

id (int) – The message ID to look for.

+
+
Raises
+
    +
  • NotFound – The specified message was not found.

  • +
  • Forbidden – You do not have the permissions required to get a message.

  • +
  • HTTPException – Retrieving the message failed.

  • +
+
+
Returns
+

The message asked for.

+
+
Return type
+

Message

+
+
+
+ +
+
+await pins()
+

This function is a coroutine.

+

Retrieves all messages that are currently pinned in the channel.

+
+

Note

+

Due to a limitation with the Discord API, the Message +objects returned by this method do not contain complete +Message.reactions data.

+
+
+
Raises
+

HTTPException – Retrieving the pinned messages failed.

+
+
Returns
+

The messages that are currently pinned.

+
+
Return type
+

List[Message]

+
+
+
+ +
+
+await trigger_typing()
+

This function is a coroutine.

+

Triggers a typing indicator to the destination.

+

Typing indicator will go away after 10 seconds, or after a message is sent.

+
+ +
+
+await send(content=None, return_message=True, ephemeral=False, **kwargs)
+

This function is a coroutine.

+

A shortcut method to abc.Messageable.send() with interaction helpers.

+

This function takes all the parameters of abc.Messageable.send() plus the following:

+
+
Parameters
+
    +
  • return_message (bool) – Ignored if not in a slash command context. +If this is set to False more native interaction methods will be used.

  • +
  • ephemeral (bool) – Ignored if not in a slash command context. +Indicates if the message should only be visible to the user who started the interaction. +If a view is sent with an ephemeral message and it has no timeout set then the timeout +is set to 15 minutes.

  • +
+
+
Returns
+

In a slash command context, the message that was sent if return_message is True.

+

In a normal context, it always returns a Message

+

+
+
Return type
+

Optional[Union[Message, WebhookMessage]]

+
+
+
+ +
+
+await reply(content=None, **kwargs)
+

This function is a coroutine.

+

A shortcut method to abc.Messageable.send() to reply to the +Message.

+
+

New in version 1.6.

+
+
+
Raises
+
    +
  • HTTPException – Sending the message failed.

  • +
  • Forbidden – You do not have the proper permissions to send the message.

  • +
  • InvalidArgument – The files list is not of the appropriate size or + you specified both file and files.

  • +
+
+
Returns
+

The message that was sent.

+
+
Return type
+

Message

+
+
+
+ +
+ +
+
+

Converters

+
+
+class discord.ext.commands.Converter(*args, **kwargs)
+

The base class of custom converters that require the Context +to be passed to be useful.

+

This allows you to implement converters that function similar to the +special cased discord classes.

+

Classes that derive from this should override the convert() +method to do its conversion logic. This method must be a coroutine.

+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.ObjectConverter(*args, **kwargs)
+

Converts to a Object.

+

The argument must follow the valid ID or mention formats (e.g. <@80088516616269824>).

+
+

New in version 2.0.

+
+

The lookup strategy is as follows (in order):

+
    +
  1. Lookup by ID.

  2. +
  3. Lookup by member, role, or channel mention.

  4. +
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.MemberConverter(*args, **kwargs)
+

Converts to a Member.

+

All lookups are via the local guild. If in a DM context, then the lookup +is done by the global cache.

+

The lookup strategy is as follows (in order):

+
    +
  1. Lookup by ID.

  2. +
  3. Lookup by mention.

  4. +
  5. Lookup by name#discrim

  6. +
  7. Lookup by name

  8. +
  9. Lookup by nickname

  10. +
+
+

Changed in version 1.5: Raise MemberNotFound instead of generic BadArgument

+
+
+

Changed in version 1.5.1: This converter now lazily fetches members from the gateway and HTTP APIs, +optionally caching the result if MemberCacheFlags.joined is enabled.

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.UserConverter(*args, **kwargs)
+

Converts to a User.

+

All lookups are via the global user cache.

+

The lookup strategy is as follows (in order):

+
    +
  1. Lookup by ID.

  2. +
  3. Lookup by mention.

  4. +
  5. Lookup by name#discrim

  6. +
  7. Lookup by name

  8. +
+
+

Changed in version 1.5: Raise UserNotFound instead of generic BadArgument

+
+
+

Changed in version 1.6: This converter now lazily fetches users from the HTTP APIs if an ID is passed +and it’s not available in cache.

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.MessageConverter(*args, **kwargs)
+

Converts to a discord.Message.

+
+

New in version 1.1.

+
+

The lookup strategy is as follows (in order):

+
    +
  1. Lookup by “{channel ID}-{message ID}” (retrieved by shift-clicking on “Copy ID”)

  2. +
  3. Lookup by message ID (the message must be in the context channel)

  4. +
  5. Lookup by message URL

  6. +
+
+

Changed in version 1.5: Raise ChannelNotFound, MessageNotFound or ChannelNotReadable instead of generic BadArgument

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.PartialMessageConverter(*args, **kwargs)
+

Converts to a discord.PartialMessage.

+
+

New in version 1.7.

+
+

The creation strategy is as follows (in order):

+
    +
  1. By “{channel ID}-{message ID}” (retrieved by shift-clicking on “Copy ID”)

  2. +
  3. By message ID (The message is assumed to be in the context channel.)

  4. +
  5. By message URL

  6. +
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.GuildChannelConverter(*args, **kwargs)
+

Converts to a GuildChannel.

+

All lookups are via the local guild. If in a DM context, then the lookup +is done by the global cache.

+

The lookup strategy is as follows (in order):

+
    +
  1. Lookup by ID.

  2. +
  3. Lookup by mention.

  4. +
  5. Lookup by name.

  6. +
+
+

New in version 2.0.

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.TextChannelConverter(*args, **kwargs)
+

Converts to a TextChannel.

+

All lookups are via the local guild. If in a DM context, then the lookup +is done by the global cache.

+

The lookup strategy is as follows (in order):

+
    +
  1. Lookup by ID.

  2. +
  3. Lookup by mention.

  4. +
  5. Lookup by name

  6. +
+
+

Changed in version 1.5: Raise ChannelNotFound instead of generic BadArgument

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.VoiceChannelConverter(*args, **kwargs)
+

Converts to a VoiceChannel.

+

All lookups are via the local guild. If in a DM context, then the lookup +is done by the global cache.

+

The lookup strategy is as follows (in order):

+
    +
  1. Lookup by ID.

  2. +
  3. Lookup by mention.

  4. +
  5. Lookup by name

  6. +
+
+

Changed in version 1.5: Raise ChannelNotFound instead of generic BadArgument

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.StoreChannelConverter(*args, **kwargs)
+

Converts to a StoreChannel.

+

All lookups are via the local guild. If in a DM context, then the lookup +is done by the global cache.

+

The lookup strategy is as follows (in order):

+
    +
  1. Lookup by ID.

  2. +
  3. Lookup by mention.

  4. +
  5. Lookup by name.

  6. +
+
+

New in version 1.7.

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.StageChannelConverter(*args, **kwargs)
+

Converts to a StageChannel.

+
+

New in version 1.7.

+
+

All lookups are via the local guild. If in a DM context, then the lookup +is done by the global cache.

+

The lookup strategy is as follows (in order):

+
    +
  1. Lookup by ID.

  2. +
  3. Lookup by mention.

  4. +
  5. Lookup by name

  6. +
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.CategoryChannelConverter(*args, **kwargs)
+

Converts to a CategoryChannel.

+

All lookups are via the local guild. If in a DM context, then the lookup +is done by the global cache.

+

The lookup strategy is as follows (in order):

+
    +
  1. Lookup by ID.

  2. +
  3. Lookup by mention.

  4. +
  5. Lookup by name

  6. +
+
+

Changed in version 1.5: Raise ChannelNotFound instead of generic BadArgument

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.InviteConverter(*args, **kwargs)
+

Converts to a Invite.

+

This is done via an HTTP request using Bot.fetch_invite().

+
+

Changed in version 1.5: Raise BadInviteArgument instead of generic BadArgument

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.GuildConverter(*args, **kwargs)
+

Converts to a Guild.

+

The lookup strategy is as follows (in order):

+
    +
  1. Lookup by ID.

  2. +
  3. Lookup by name. (There is no disambiguation for Guilds with multiple matching names).

  4. +
+
+

New in version 1.7.

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.RoleConverter(*args, **kwargs)
+

Converts to a Role.

+

All lookups are via the local guild. If in a DM context, the converter raises +NoPrivateMessage exception.

+

The lookup strategy is as follows (in order):

+
    +
  1. Lookup by ID.

  2. +
  3. Lookup by mention.

  4. +
  5. Lookup by name

  6. +
+
+

Changed in version 1.5: Raise RoleNotFound instead of generic BadArgument

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.GameConverter(*args, **kwargs)
+

Converts to Game.

+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.ColourConverter(*args, **kwargs)
+

Converts to a Colour.

+
+

Changed in version 1.5: Add an alias named ColorConverter

+
+

The following formats are accepted:

+
    +
  • 0x<hex>

  • +
  • #<hex>

  • +
  • 0x#<hex>

  • +
  • rgb(<number>, <number>, <number>)

  • +
  • Any of the classmethod in Colour

    +
    +
      +
    • The _ in the name can be optionally replaced with spaces.

    • +
    +
    +
  • +
+

Like CSS, <number> can be either 0-255 or 0-100% and <hex> can be +either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff).

+
+

Changed in version 1.5: Raise BadColourArgument instead of generic BadArgument

+
+
+

Changed in version 1.7: Added support for rgb function and 3-digit hex shortcuts

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.EmojiConverter(*args, **kwargs)
+

Converts to a Emoji.

+

All lookups are done for the local guild first, if available. If that lookup +fails, then it checks the client’s global cache.

+

The lookup strategy is as follows (in order):

+
    +
  1. Lookup by ID.

  2. +
  3. Lookup by extracting ID from the emoji.

  4. +
  5. Lookup by name

  6. +
+
+

Changed in version 1.5: Raise EmojiNotFound instead of generic BadArgument

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.PartialEmojiConverter(*args, **kwargs)
+

Converts to a PartialEmoji.

+

This is done by extracting the animated flag, name and ID from the emoji.

+
+

Changed in version 1.5: Raise PartialEmojiConversionFailure instead of generic BadArgument

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.ThreadConverter(*args, **kwargs)
+

Coverts to a Thread.

+

All lookups are via the local guild.

+

The lookup strategy is as follows (in order):

+
    +
  1. Lookup by ID.

  2. +
  3. Lookup by mention.

  4. +
  5. Lookup by name.

  6. +
+
+

New in version 2.0.

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.GuildStickerConverter(*args, **kwargs)
+

Converts to a GuildSticker.

+

All lookups are done for the local guild first, if available. If that lookup +fails, then it checks the client’s global cache.

+

The lookup strategy is as follows (in order):

+

1. Lookup by ID. +3. Lookup by name

+
+

New in version 2.0.

+
+
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.clean_content(*, fix_channel_mentions=False, use_nicknames=True, escape_markdown=False, remove_markdown=False)
+

Converts the argument to mention scrubbed version of +said content.

+

This behaves similarly to clean_content.

+
+
+fix_channel_mentions
+

Whether to clean channel mentions.

+
+
Type
+

bool

+
+
+
+ +
+
+use_nicknames
+

Whether to use nicknames when transforming mentions.

+
+
Type
+

bool

+
+
+
+ +
+
+escape_markdown
+

Whether to also escape special markdown characters.

+
+
Type
+

bool

+
+
+
+ +
+
+remove_markdown
+

Whether to also remove special markdown characters. This option is not supported with escape_markdown

+
+

New in version 1.7.

+
+
+
Type
+

bool

+
+
+
+ +
+
+await convert(ctx, argument)
+

This function is a coroutine.

+

The method to override to do conversion logic.

+

If an error is found while converting, it is recommended to +raise a CommandError derived exception as it will +properly propagate to the error handlers.

+
+
Parameters
+
    +
  • ctx (Context) – The invocation context that the argument is being used in.

  • +
  • argument (str) – The argument that is being converted.

  • +
+
+
Raises
+
    +
  • CommandError – A generic exception occurred when converting the argument.

  • +
  • BadArgument – The converter failed to convert the argument.

  • +
+
+
+
+ +
+ +
+
+class discord.ext.commands.Greedy
+

A special converter that greedily consumes arguments until it can’t. +As a consequence of this behaviour, most input errors are silently discarded, +since it is used as an indicator of when to stop parsing.

+

When a parser error is met the greedy converter stops converting, undoes the +internal string parsing routine, and continues parsing regularly.

+

For example, in the following code:

+
@commands.command()
+async def test(ctx, numbers: Greedy[int], reason: str):
+    await ctx.send("numbers: {}, reason: {}".format(numbers, reason))
+
+
+

An invocation of [p]test 1 2 3 4 5 6 hello would pass numbers with +[1, 2, 3, 4, 5, 6] and reason with hello.

+

For more information, check Special Converters.

+
+ +
+
+await discord.ext.commands.run_converters(ctx, converter, argument, param)
+

This function is a coroutine.

+

Runs converters for a given converter, argument, and parameter.

+

This function does the same work that the library does under the hood.

+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • ctx (Context) – The invocation context to run the converters under.

  • +
  • converter (Any) – The converter to run, this corresponds to the annotation in the function.

  • +
  • argument (str) – The argument to convert to.

  • +
  • param (inspect.Parameter) – The parameter being converted. This is mainly for error reporting.

  • +
+
+
Raises
+

CommandError – The converter failed to convert.

+
+
Returns
+

The resulting conversion.

+
+
Return type
+

Any

+
+
+
+ +
+

Option

+
+
+class discord.ext.commands.Option(default, *, description)
+

A special ‘converter’ to apply a description to slash command options.

+

For example in the following code:

+
@bot.command()
+async def ban(ctx,
+    member: discord.Member, *,
+    reason: str = commands.Option('no reason', description='the reason to ban this member')
+):
+    await member.ban(reason=reason)
+
+
+

The description would be the reason to ban this member and the default would be no reason

+
+

New in version 2.0.

+
+
+
+default
+

The default for this option, overwrites Option during parsing.

+
+
Type
+

Optional[Any]

+
+
+
+ +
+
+description
+

The description for this option, is unpacked to Command.option_descriptions

+
+
Type
+

str

+
+
+
+ +
+ +
+
+

Flag Converter

+
+
+class discord.ext.commands.FlagConverter
+

A converter that allows for a user-friendly flag syntax.

+

The flags are defined using PEP 526 type annotations similar +to the dataclasses Python module. For more information on +how this converter works, check the appropriate +documentation.

+
+
+
+iter(x)
+

Returns an iterator of (flag_name, flag_value) pairs. This allows it +to be, for example, constructed as a dict or a list of pairs. +Note that aliases are not shown.

+
+ +
+
+

New in version 2.0.

+
+
+
Parameters
+
    +
  • case_insensitive (bool) – A class parameter to toggle case insensitivity of the flag parsing. +If True then flags are parsed in a case insensitive manner. +Defaults to False.

  • +
  • prefix (str) – The prefix that all flags must be prefixed with. By default +there is no prefix.

  • +
  • delimiter (str) – The delimiter that separates a flag’s argument from the flag’s name. +By default this is :.

  • +
+
+
+
+
+classmethod get_flags()
+

Dict[str, Flag]: A mapping of flag name to flag object this converter has.

+
+ +
+
+classmethod await convert(ctx, argument)
+

This function is a coroutine.

+

The method that actually converters an argument to the flag mapping.

+
+
Parameters
+
    +
  • cls (Type[FlagConverter]) – The flag converter class.

  • +
  • ctx (Context) – The invocation context.

  • +
  • argument (str) – The argument to convert from.

  • +
+
+
Raises
+
+
+
Returns
+

The flag converter instance with all flags parsed.

+
+
Return type
+

FlagConverter

+
+
+
+ +
+ +
+
+class discord.ext.commands.Flag
+

Represents a flag parameter for FlagConverter.

+

The flag() function helps +create these flag objects, but it is not necessary to +do so. These cannot be constructed manually.

+
+
+name
+

The name of the flag.

+
+
Type
+

str

+
+
+
+ +
+
+aliases
+

The aliases of the flag name.

+
+
Type
+

List[str]

+
+
+
+ +
+
+attribute
+

The attribute in the class that corresponds to this flag.

+
+
Type
+

str

+
+
+
+ +
+
+default
+

The default value of the flag, if available.

+
+
Type
+

Any

+
+
+
+ +
+
+annotation
+

The underlying evaluated annotation of the flag.

+
+
Type
+

Any

+
+
+
+ +
+
+max_args
+

The maximum number of arguments the flag can accept. +A negative value indicates an unlimited amount of arguments.

+
+
Type
+

int

+
+
+
+ +
+
+override
+

Whether multiple given values overrides the previous value.

+
+
Type
+

bool

+
+
+
+ +
+
+property required
+

Whether the flag is required.

+

A required flag has no default value.

+
+
Type
+

bool

+
+
+
+ +
+ +
+
+discord.ext.commands.flag(*, name=..., aliases=..., default=..., max_args=..., override=...)
+

Override default functionality and parameters of the underlying FlagConverter +class attributes.

+
+
Parameters
+
    +
  • name (str) – The flag name. If not given, defaults to the attribute name.

  • +
  • aliases (List[str]) – Aliases to the flag name. If not given no aliases are set.

  • +
  • default (Any) – The default parameter. This could be either a value or a callable that takes +Context as its sole parameter. If not given then it defaults to +the default value given to the attribute.

  • +
  • max_args (int) – The maximum number of arguments the flag can accept. +A negative value indicates an unlimited amount of arguments. +The default value depends on the annotation given.

  • +
  • override (bool) – Whether multiple given values overrides the previous value. The default +value depends on the annotation given.

  • +
+
+
+
+ +
+
+
+

Exceptions

+
+
+exception discord.ext.commands.CommandError(message=None, *args)
+

The base exception type for all command related errors.

+

This inherits from discord.DiscordException.

+

This exception and exceptions inherited from it are handled +in a special way as they are caught and passed into a special event +from Bot, on_command_error().

+
+ +
+
+exception discord.ext.commands.ConversionError(converter, original)
+

Exception raised when a Converter class raises non-CommandError.

+

This inherits from CommandError.

+
+
+converter
+

The converter that failed.

+
+
Type
+

discord.ext.commands.Converter

+
+
+
+ +
+
+original
+

The original exception that was raised. You can also get this via +the __cause__ attribute.

+
+
Type
+

Exception

+
+
+
+ +
+ +
+
+exception discord.ext.commands.MissingRequiredArgument(param)
+

Exception raised when parsing a command and a parameter +that is required is not encountered.

+

This inherits from UserInputError

+
+
+param
+

The argument that is missing.

+
+
Type
+

inspect.Parameter

+
+
+
+ +
+ +
+
+exception discord.ext.commands.ArgumentParsingError(message=None, *args)
+

An exception raised when the parser fails to parse a user’s input.

+

This inherits from UserInputError.

+

There are child classes that implement more granular parsing errors for +i18n purposes.

+
+ +
+
+exception discord.ext.commands.UnexpectedQuoteError(quote)
+

An exception raised when the parser encounters a quote mark inside a non-quoted string.

+

This inherits from ArgumentParsingError.

+
+
+quote
+

The quote mark that was found inside the non-quoted string.

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.InvalidEndOfQuotedStringError(char)
+

An exception raised when a space is expected after the closing quote in a string +but a different character is found.

+

This inherits from ArgumentParsingError.

+
+
+char
+

The character found instead of the expected string.

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.ExpectedClosingQuoteError(close_quote)
+

An exception raised when a quote character is expected but not found.

+

This inherits from ArgumentParsingError.

+
+
+close_quote
+

The quote character expected.

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.BadArgument(message=None, *args)
+

Exception raised when a parsing or conversion failure is encountered +on an argument to pass into a command.

+

This inherits from UserInputError

+
+ +
+
+exception discord.ext.commands.BadUnionArgument(param, converters, errors)
+

Exception raised when a typing.Union converter fails for all +its associated types.

+

This inherits from UserInputError

+
+
+param
+

The parameter that failed being converted.

+
+
Type
+

inspect.Parameter

+
+
+
+ +
+
+converters
+

A tuple of converters attempted in conversion, in order of failure.

+
+
Type
+

Tuple[Type, ...]

+
+
+
+ +
+
+errors
+

A list of errors that were caught from failing the conversion.

+
+
Type
+

List[CommandError]

+
+
+
+ +
+ +
+
+exception discord.ext.commands.BadLiteralArgument(param, literals, errors)
+

Exception raised when a typing.Literal converter fails for all +its associated values.

+

This inherits from UserInputError

+
+

New in version 2.0.

+
+
+
+param
+

The parameter that failed being converted.

+
+
Type
+

inspect.Parameter

+
+
+
+ +
+
+literals
+

A tuple of values compared against in conversion, in order of failure.

+
+
Type
+

Tuple[Any, ...]

+
+
+
+ +
+
+errors
+

A list of errors that were caught from failing the conversion.

+
+
Type
+

List[CommandError]

+
+
+
+ +
+ +
+
+exception discord.ext.commands.PrivateMessageOnly(message=None)
+

Exception raised when an operation does not work outside of private +message contexts.

+

This inherits from CheckFailure

+
+ +
+
+exception discord.ext.commands.NoPrivateMessage(message=None)
+

Exception raised when an operation does not work in private message +contexts.

+

This inherits from CheckFailure

+
+ +
+
+exception discord.ext.commands.CheckFailure(message=None, *args)
+

Exception raised when the predicates in Command.checks have failed.

+

This inherits from CommandError

+
+ +
+
+exception discord.ext.commands.CheckAnyFailure(checks, errors)
+

Exception raised when all predicates in check_any() fail.

+

This inherits from CheckFailure.

+
+

New in version 1.3.

+
+
+
+errors
+

A list of errors that were caught during execution.

+
+
Type
+

List[CheckFailure]

+
+
+
+ +
+
+checks
+

A list of check predicates that failed.

+
+
Type
+

List[Callable[[Context], bool]]

+
+
+
+ +
+ +
+
+exception discord.ext.commands.CommandNotFound(message=None, *args)
+

Exception raised when a command is attempted to be invoked +but no command under that name is found.

+

This is not raised for invalid subcommands, rather just the +initial main command that is attempted to be invoked.

+

This inherits from CommandError.

+
+ +
+
+exception discord.ext.commands.DisabledCommand(message=None, *args)
+

Exception raised when the command being invoked is disabled.

+

This inherits from CommandError

+
+ +
+
+exception discord.ext.commands.CommandInvokeError(e)
+

Exception raised when the command being invoked raised an exception.

+

This inherits from CommandError

+
+
+original
+

The original exception that was raised. You can also get this via +the __cause__ attribute.

+
+
Type
+

Exception

+
+
+
+ +
+ +
+
+exception discord.ext.commands.TooManyArguments(message=None, *args)
+

Exception raised when the command was passed too many arguments and its +Command.ignore_extra attribute was not set to True.

+

This inherits from UserInputError

+
+ +
+
+exception discord.ext.commands.UserInputError(message=None, *args)
+

The base exception type for errors that involve errors +regarding user input.

+

This inherits from CommandError.

+
+ +
+
+exception discord.ext.commands.CommandOnCooldown(cooldown, retry_after, type)
+

Exception raised when the command being invoked is on cooldown.

+

This inherits from CommandError

+
+
+cooldown
+

A class with attributes rate and per similar to the +cooldown() decorator.

+
+
Type
+

Cooldown

+
+
+
+ +
+
+type
+

The type associated with the cooldown.

+
+
Type
+

BucketType

+
+
+
+ +
+
+retry_after
+

The amount of seconds to wait before you can retry again.

+
+
Type
+

float

+
+
+
+ +
+ +
+
+exception discord.ext.commands.MaxConcurrencyReached(number, per)
+

Exception raised when the command being invoked has reached its maximum concurrency.

+

This inherits from CommandError.

+
+
+number
+

The maximum number of concurrent invokers allowed.

+
+
Type
+

int

+
+
+
+ +
+
+per
+

The bucket type passed to the max_concurrency() decorator.

+
+
Type
+

BucketType

+
+
+
+ +
+ +
+
+exception discord.ext.commands.NotOwner(message=None, *args)
+

Exception raised when the message author is not the owner of the bot.

+

This inherits from CheckFailure

+
+ +
+
+exception discord.ext.commands.MessageNotFound(argument)
+

Exception raised when the message provided was not found in the channel.

+

This inherits from BadArgument

+
+

New in version 1.5.

+
+
+
+argument
+

The message supplied by the caller that was not found

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.MemberNotFound(argument)
+

Exception raised when the member provided was not found in the bot’s +cache.

+

This inherits from BadArgument

+
+

New in version 1.5.

+
+
+
+argument
+

The member supplied by the caller that was not found

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.GuildNotFound(argument)
+

Exception raised when the guild provided was not found in the bot’s cache.

+

This inherits from BadArgument

+
+

New in version 1.7.

+
+
+
+argument
+

The guild supplied by the called that was not found

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.UserNotFound(argument)
+

Exception raised when the user provided was not found in the bot’s +cache.

+

This inherits from BadArgument

+
+

New in version 1.5.

+
+
+
+argument
+

The user supplied by the caller that was not found

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.ChannelNotFound(argument)
+

Exception raised when the bot can not find the channel.

+

This inherits from BadArgument

+
+

New in version 1.5.

+
+
+
+argument
+

The channel supplied by the caller that was not found

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.ChannelNotReadable(argument)
+

Exception raised when the bot does not have permission to read messages +in the channel.

+

This inherits from BadArgument

+
+

New in version 1.5.

+
+
+
+argument
+

The channel supplied by the caller that was not readable

+
+
Type
+

Union[abc.GuildChannel, Thread]

+
+
+
+ +
+ +
+
+exception discord.ext.commands.ThreadNotFound(argument)
+

Exception raised when the bot can not find the thread.

+

This inherits from BadArgument

+
+

New in version 2.0.

+
+
+
+argument
+

The thread supplied by the caller that was not found

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.BadColourArgument(argument)
+

Exception raised when the colour is not valid.

+

This inherits from BadArgument

+
+

New in version 1.5.

+
+
+
+argument
+

The colour supplied by the caller that was not valid

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.RoleNotFound(argument)
+

Exception raised when the bot can not find the role.

+

This inherits from BadArgument

+
+

New in version 1.5.

+
+
+
+argument
+

The role supplied by the caller that was not found

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.BadInviteArgument(argument)
+

Exception raised when the invite is invalid or expired.

+

This inherits from BadArgument

+
+

New in version 1.5.

+
+
+
+argument
+

The invite supplied by the caller that was not found

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.EmojiNotFound(argument)
+

Exception raised when the bot can not find the emoji.

+

This inherits from BadArgument

+
+

New in version 1.5.

+
+
+
+argument
+

The emoji supplied by the caller that was not found

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.PartialEmojiConversionFailure(argument)
+

Exception raised when the emoji provided does not match the correct +format.

+

This inherits from BadArgument

+
+

New in version 1.5.

+
+
+
+argument
+

The emoji supplied by the caller that did not match the regex

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.GuildStickerNotFound(argument)
+

Exception raised when the bot can not find the sticker.

+

This inherits from BadArgument

+
+

New in version 2.0.

+
+
+
+argument
+

The sticker supplied by the caller that was not found

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.BadBoolArgument(argument)
+

Exception raised when a boolean argument was not convertable.

+

This inherits from BadArgument

+
+

New in version 1.5.

+
+
+
+argument
+

The boolean argument supplied by the caller that is not in the predefined list

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.MissingPermissions(missing_permissions, *args)
+

Exception raised when the command invoker lacks permissions to run a +command.

+

This inherits from CheckFailure

+
+
+missing_permissions
+

The required permissions that are missing.

+
+
Type
+

List[str]

+
+
+
+ +
+ +
+
+exception discord.ext.commands.BotMissingPermissions(missing_permissions, *args)
+

Exception raised when the bot’s member lacks permissions to run a +command.

+

This inherits from CheckFailure

+
+
+missing_permissions
+

The required permissions that are missing.

+
+
Type
+

List[str]

+
+
+
+ +
+ +
+
+exception discord.ext.commands.MissingRole(missing_role)
+

Exception raised when the command invoker lacks a role to run a command.

+

This inherits from CheckFailure

+
+

New in version 1.1.

+
+
+
+missing_role
+

The required role that is missing. +This is the parameter passed to has_role().

+
+
Type
+

Union[str, int]

+
+
+
+ +
+ +
+
+exception discord.ext.commands.BotMissingRole(missing_role)
+

Exception raised when the bot’s member lacks a role to run a command.

+

This inherits from CheckFailure

+
+

New in version 1.1.

+
+
+
+missing_role
+

The required role that is missing. +This is the parameter passed to has_role().

+
+
Type
+

Union[str, int]

+
+
+
+ +
+ +
+
+exception discord.ext.commands.MissingAnyRole(missing_roles)
+

Exception raised when the command invoker lacks any of +the roles specified to run a command.

+

This inherits from CheckFailure

+
+

New in version 1.1.

+
+
+
+missing_roles
+

The roles that the invoker is missing. +These are the parameters passed to has_any_role().

+
+
Type
+

List[Union[str, int]]

+
+
+
+ +
+ +
+
+exception discord.ext.commands.BotMissingAnyRole(missing_roles)
+

Exception raised when the bot’s member lacks any of +the roles specified to run a command.

+

This inherits from CheckFailure

+
+

New in version 1.1.

+
+
+
+missing_roles
+

The roles that the bot’s member is missing. +These are the parameters passed to has_any_role().

+
+
Type
+

List[Union[str, int]]

+
+
+
+ +
+ +
+
+exception discord.ext.commands.NSFWChannelRequired(channel)
+

Exception raised when a channel does not have the required NSFW setting.

+

This inherits from CheckFailure.

+
+

New in version 1.1.

+
+
+
Parameters
+

channel (Union[abc.GuildChannel, Thread]) – The channel that does not have NSFW enabled.

+
+
+
+ +
+
+exception discord.ext.commands.FlagError(message=None, *args)
+

The base exception type for all flag parsing related errors.

+

This inherits from BadArgument.

+
+

New in version 2.0.

+
+
+ +
+
+exception discord.ext.commands.BadFlagArgument(flag)
+

An exception raised when a flag failed to convert a value.

+

This inherits from FlagError

+
+

New in version 2.0.

+
+
+
+flag
+

The flag that failed to convert.

+
+
Type
+

Flag

+
+
+
+ +
+ +
+
+exception discord.ext.commands.MissingFlagArgument(flag)
+

An exception raised when a flag did not get a value.

+

This inherits from FlagError

+
+

New in version 2.0.

+
+
+
+flag
+

The flag that did not get a value.

+
+
Type
+

Flag

+
+
+
+ +
+ +
+
+exception discord.ext.commands.TooManyFlags(flag, values)
+

An exception raised when a flag has received too many values.

+

This inherits from FlagError.

+
+

New in version 2.0.

+
+
+
+flag
+

The flag that received too many values.

+
+
Type
+

Flag

+
+
+
+ +
+
+values
+

The values that were passed.

+
+
Type
+

List[str]

+
+
+
+ +
+ +
+
+exception discord.ext.commands.MissingRequiredFlag(flag)
+

An exception raised when a required flag was not given.

+

This inherits from FlagError

+
+

New in version 2.0.

+
+
+
+flag
+

The required flag that was not found.

+
+
Type
+

Flag

+
+
+
+ +
+ +
+
+exception discord.ext.commands.ExtensionError(message=None, *args, name)
+

Base exception for extension related errors.

+

This inherits from DiscordException.

+
+
+name
+

The extension that had an error.

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.ExtensionAlreadyLoaded(name)
+

An exception raised when an extension has already been loaded.

+

This inherits from ExtensionError

+
+ +
+
+exception discord.ext.commands.ExtensionNotLoaded(name)
+

An exception raised when an extension was not loaded.

+

This inherits from ExtensionError

+
+ +
+
+exception discord.ext.commands.NoEntryPointError(name)
+

An exception raised when an extension does not have a setup entry point function.

+

This inherits from ExtensionError

+
+ +
+
+exception discord.ext.commands.ExtensionFailed(name, original)
+

An exception raised when an extension failed to load during execution of the module or setup entry point.

+

This inherits from ExtensionError

+
+
+name
+

The extension that had the error.

+
+
Type
+

str

+
+
+
+ +
+
+original
+

The original exception that was raised. You can also get this via +the __cause__ attribute.

+
+
Type
+

Exception

+
+
+
+ +
+ +
+
+exception discord.ext.commands.ExtensionNotFound(name)
+

An exception raised when an extension is not found.

+

This inherits from ExtensionError

+
+

Changed in version 1.3: Made the original attribute always None.

+
+
+
+name
+

The extension that had the error.

+
+
Type
+

str

+
+
+
+ +
+ +
+
+exception discord.ext.commands.CommandRegistrationError(name, *, alias_conflict=False)
+

An exception raised when the command can’t be added +because the name is already taken by a different command.

+

This inherits from discord.ClientException

+
+

New in version 1.4.

+
+
+
+name
+

The command name that had the error.

+
+
Type
+

str

+
+
+
+ +
+
+alias_conflict
+

Whether the name that conflicts is an alias of the command we try to add.

+
+
Type
+

bool

+
+
+
+ +
+ +
+

Exception Hierarchy

+ +
+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/ext/commands/cogs.html b/docs/Python/html/ext/commands/cogs.html new file mode 100644 index 00000000..8a9dfe30 --- /dev/null +++ b/docs/Python/html/ext/commands/cogs.html @@ -0,0 +1,282 @@ + + + + + + Cogs + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

Cogs

+

There comes a point in your bot’s development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that.

+

The gist:

+ +

It should be noted that cogs are typically used alongside with Extensions.

+
+

Quick Example

+

This example cog defines a Greetings category for your commands, with a single command named hello as well as a listener to listen to an Event.

+
class Greetings(commands.Cog):
+    def __init__(self, bot):
+        self.bot = bot
+        self._last_member = None
+
+    @commands.Cog.listener()
+    async def on_member_join(self, member):
+        channel = member.guild.system_channel
+        if channel is not None:
+            await channel.send(f'Welcome {member.mention}.')
+
+    @commands.command()
+    async def hello(self, ctx, *, member: discord.Member = None):
+        """Says hello"""
+        member = member or ctx.author
+        if self._last_member is None or self._last_member.id != member.id:
+            await ctx.send(f'Hello {member.name}~')
+        else:
+            await ctx.send(f'Hello {member.name}... This feels familiar.')
+        self._last_member = member
+
+
+

A couple of technical notes to take into consideration:

+
    +
  • All listeners must be explicitly marked via decorator, listener().

  • +
  • The name of the cog is automatically derived from the class name but can be overridden. See Meta Options.

  • +
  • All commands must now take a self parameter to allow usage of instance attributes that can be used to maintain state.

  • +
+
+
+

Cog Registration

+

Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the add_cog() method.

+
bot.add_cog(Greetings(bot))
+
+
+

This binds the cog to the bot, adding all commands and listeners to the bot automatically.

+

Note that we reference the cog by name, which we can override through Meta Options. So if we ever want to remove the cog eventually, we would have to do the following.

+
bot.remove_cog('Greetings')
+
+
+
+
+

Using Cogs

+

Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:

+
class Economy(commands.Cog):
+    ...
+
+    async def withdraw_money(self, member, money):
+        # implementation here
+        ...
+
+    async def deposit_money(self, member, money):
+        # implementation here
+        ...
+
+class Gambling(commands.Cog):
+    def __init__(self, bot):
+        self.bot = bot
+
+    def coinflip(self):
+        return random.randint(0, 1)
+
+    @commands.command()
+    async def gamble(self, ctx, money: int):
+        """Gambles some money."""
+        economy = self.bot.get_cog('Economy')
+        if economy is not None:
+            await economy.withdraw_money(ctx.author, money)
+            if self.coinflip() == 1:
+                await economy.deposit_money(ctx.author, money * 1.5)
+
+
+
+
+

Special Methods

+

As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot.

+

They are as follows:

+ +

You can visit the reference to get more detail.

+
+
+

Meta Options

+

At the heart of a cog resides a metaclass, commands.CogMeta, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the name keyword argument as follows:

+
class MyCog(commands.Cog, name='My Cog'):
+    pass
+
+
+

To see more options that you can set, see the documentation of commands.CogMeta.

+
+
+

Inspection

+

Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog.

+

To get a list of commands, we can use Cog.get_commands().

+
>>> cog = bot.get_cog('Greetings')
+>>> commands = cog.get_commands()
+>>> print([c.name for c in commands])
+
+
+

If we want to get the subcommands as well, we can use the Cog.walk_commands() generator.

+
>>> print([c.qualified_name for c in cog.walk_commands()])
+
+
+

To do the same with listeners, we can query them with Cog.get_listeners(). This returns a list of tuples – the first element being the listener name and the second one being the actual function itself.

+
>>> for name, func in cog.get_listeners():
+...     print(name, '->', func)
+
+
+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/ext/commands/commands.html b/docs/Python/html/ext/commands/commands.html new file mode 100644 index 00000000..508a8a0b --- /dev/null +++ b/docs/Python/html/ext/commands/commands.html @@ -0,0 +1,1021 @@ + + + + + + Commands + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

Commands

+

One of the most appealing aspects of the command extension is how easy it is to define commands and +how you can arbitrarily nest groups and commands to have a rich sub-command system.

+

Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar +signature to the Python function.

+

For example, in the given command definition:

+
@bot.command()
+async def foo(ctx, arg):
+    await ctx.send(arg)
+
+
+

With the following prefix ($), it would be invoked by the user via:

+
$foo abc
+
+
+

A command must always have at least one parameter, ctx, which is the Context as the first one.

+

There are two ways of registering a command. The first one is by using Bot.command() decorator, +as seen in the example above. The second is using the command() decorator followed by +Bot.add_command() on the instance.

+

Essentially, these two are equivalent:

+
from discord.ext import commands
+
+bot = commands.Bot(command_prefix='$')
+
+@bot.command()
+async def test(ctx):
+    pass
+
+# or:
+
+@commands.command()
+async def test(ctx):
+    pass
+
+bot.add_command(test)
+
+
+

Since the Bot.command() decorator is shorter and easier to comprehend, it will be the one used throughout the +documentation here.

+

Any parameter that is accepted by the Command constructor can be passed into the decorator. For example, to change +the name to something other than the function would be as simple as doing this:

+
@bot.command(name='list')
+async def _list(ctx, arg):
+    pass
+
+
+
+

Parameters

+

Since we define commands by making Python functions, we also define the argument passing behaviour by the function +parameters.

+

Certain parameter types do different things in the user side and most forms of parameter types are supported.

+
+

Positional

+

The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:

+
@bot.command()
+async def test(ctx, arg):
+    await ctx.send(arg)
+
+
+

On the bot using side, you can provide positional arguments by just passing a regular string:

+../../_images/positional1.png +

To make use of a word with spaces in between, you should quote it:

+../../_images/positional2.png +

As a note of warning, if you omit the quotes, you will only get the first word:

+../../_images/positional3.png +

Since positional arguments are just regular Python arguments, you can have as many as you want:

+
@bot.command()
+async def test(ctx, arg1, arg2):
+    await ctx.send(f'You passed {arg1} and {arg2}')
+
+
+
+
+

Variable

+

Sometimes you want users to pass in an undetermined number of parameters. The library supports this +similar to how variable list parameters are done in Python:

+
@bot.command()
+async def test(ctx, *args):
+    arguments = ', '.join(args)
+    await ctx.send(f'{len(args)} arguments: {arguments}')
+
+
+

This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, +so multi-word parameters should be quoted.

+

For example, on the bot side:

+../../_images/variable1.png +

If the user wants to input a multi-word argument, they have to quote it like earlier:

+../../_images/variable2.png +

Do note that similar to the Python function behaviour, a user can technically pass no arguments +at all:

+../../_images/variable3.png +

Since the args variable is a tuple, +you can do anything you would usually do with one.

+
+

Slash Command Only

+

This functionally is currently not supported by the slash command API, so is turned into +a single STRING parameter on discord’s end which we do our own parsing on.

+
+
+
+

Keyword-Only Arguments

+

When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into +quotes, you can ask the library to give you the rest as a single argument. We do this by using a keyword-only argument, +seen below:

+
@bot.command()
+async def test(ctx, *, arg):
+    await ctx.send(arg)
+
+
+
+

Warning

+

You can only have one keyword-only argument due to parsing ambiguities.

+
+

On the bot side, we do not need to quote input with spaces:

+../../_images/keyword1.png +

Do keep in mind that wrapping it in quotes leaves it as-is:

+../../_images/keyword2.png +

By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be +toggled by the Command.rest_is_raw argument in the decorator.

+
+
+
+

Invocation Context

+

As seen earlier, every command must take at least a single parameter, called the Context.

+

This parameter gives you access to something called the “invocation context”. Essentially all the information you need to +know how the command was executed. It contains a lot of useful information:

+ +

The context implements the abc.Messageable interface, so anything you can do on a abc.Messageable you +can do on the Context.

+
+

Slash Command Only

+

Context.message will be fake if in a slash command, it is not +recommended to access if Context.interaction is not None as most +methods will error due to the message not actually existing.

+
+
+
+

Converters

+

Adding bot arguments with function parameters is only the first step in defining your bot’s command interface. To actually +make use of the arguments, we usually want to convert the data into a target type. We call these +Converters.

+

Converters come in a few flavours:

+
    +
  • A regular callable object that takes an argument as a sole parameter and returns a different type.

    +
    +
      +
    • These range from your own function, to something like bool or int.

    • +
    +
    +
  • +
  • A custom class that inherits from Converter.

  • +
+
+

Basic Converters

+

At its core, a basic converter is a callable that takes in an argument and turns it into something else.

+

For example, if we wanted to add two numbers together, we could request that they are turned into integers +for us by specifying the converter:

+
@bot.command()
+async def add(ctx, a: int, b: int):
+    await ctx.send(a + b)
+
+
+

We specify converters by using something called a function annotation. This is a Python 3 exclusive feature that was +introduced in PEP 3107.

+

This works with any callable, such as a function that would convert a string to all upper-case:

+
def to_upper(argument):
+    return argument.upper()
+
+@bot.command()
+async def up(ctx, *, content: to_upper):
+    await ctx.send(content)
+
+
+
+

bool

+

Unlike the other basic converters, the bool converter is treated slightly different. Instead of casting directly to the bool type, which would result in any non-empty argument returning True, it instead evaluates the argument as True or False based on its given content:

+
if lowered in ('yes', 'y', 'true', 't', '1', 'enable', 'on'):
+    return True
+elif lowered in ('no', 'n', 'false', 'f', '0', 'disable', 'off'):
+    return False
+
+
+
+
+
+

Advanced Converters

+

Sometimes a basic converter doesn’t have enough information that we need. For example, sometimes we want to get some +information from the Message that called the command or we want to do some asynchronous processing.

+

For this, the library provides the Converter interface. This allows you to have access to the +Context and have the callable be asynchronous. Defining a custom converter using this interface requires +overriding a single method, Converter.convert().

+

An example converter:

+
import random
+
+class Slapper(commands.Converter):
+    async def convert(self, ctx, argument):
+        to_slap = random.choice(ctx.guild.members)
+        return f'{ctx.author} slapped {to_slap} because *{argument}*'
+
+@bot.command()
+async def slap(ctx, *, reason: Slapper):
+    await ctx.send(reason)
+
+
+

The converter provided can either be constructed or not. Essentially these two are equivalent:

+
@bot.command()
+async def slap(ctx, *, reason: Slapper):
+    await ctx.send(reason)
+
+# is the same as...
+
+@bot.command()
+async def slap(ctx, *, reason: Slapper()):
+    await ctx.send(reason)
+
+
+

Having the possibility of the converter be constructed allows you to set up some state in the converter’s __init__ for +fine tuning the converter. An example of this is actually in the library, clean_content.

+
@bot.command()
+async def clean(ctx, *, content: commands.clean_content):
+    await ctx.send(content)
+
+# or for fine-tuning
+
+@bot.command()
+async def clean(ctx, *, content: commands.clean_content(use_nicknames=False)):
+    await ctx.send(content)
+
+
+

If a converter fails to convert an argument to its designated target type, the BadArgument exception must be +raised.

+
+
+

Inline Advanced Converters

+

If we don’t want to inherit from Converter, we can still provide a converter that has the +advanced functionalities of an advanced converter and save us from specifying two types.

+

For example, a common idiom would be to have a class and a converter for that class:

+
class JoinDistance:
+    def __init__(self, joined, created):
+        self.joined = joined
+        self.created = created
+
+    @property
+    def delta(self):
+        return self.joined - self.created
+
+class JoinDistanceConverter(commands.MemberConverter):
+    async def convert(self, ctx, argument):
+        member = await super().convert(ctx, argument)
+        return JoinDistance(member.joined_at, member.created_at)
+
+@bot.command()
+async def delta(ctx, *, member: JoinDistanceConverter):
+    is_new = member.delta.days < 100
+    if is_new:
+        await ctx.send("Hey you're pretty new!")
+    else:
+        await ctx.send("Hm you're not so new.")
+
+
+

This can get tedious, so an inline advanced converter is possible through a classmethod() inside the type:

+
class JoinDistance:
+    def __init__(self, joined, created):
+        self.joined = joined
+        self.created = created
+
+    @classmethod
+    async def convert(cls, ctx, argument):
+        member = await commands.MemberConverter().convert(ctx, argument)
+        return cls(member.joined_at, member.created_at)
+
+    @property
+    def delta(self):
+        return self.joined - self.created
+
+@bot.command()
+async def delta(ctx, *, member: JoinDistance):
+    is_new = member.delta.days < 100
+    if is_new:
+        await ctx.send("Hey you're pretty new!")
+    else:
+        await ctx.send("Hm you're not so new.")
+
+
+
+
+

Discord Converters

+

Working with Discord Models is a fairly common thing when defining commands, as a result the library makes +working with them easy.

+

For example, to receive a Member you can just pass it as a converter:

+
@bot.command()
+async def joined(ctx, *, member: discord.Member):
+    await ctx.send(f'{member} joined on {member.joined_at}')
+
+
+

When this command is executed, it attempts to convert the string given into a Member and then passes it as a +parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, +or just a regular username. The default set of converters have been written to be as easy to use as possible.

+

A lot of discord models work out of the gate as a parameter:

+ +

Having any of these set as the converter will intelligently convert the argument to the appropriate target type you +specify.

+

Under the hood, these are implemented by the Advanced Converters interface. A table of the equivalent +converter is given below:

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Discord Class

Converter

Supported By Slash Commands

Object

ObjectConverter

Not currently

Member

MemberConverter

Yes, as type 6 (USER)

User

UserConverter

Yes, as type 6 (USER)

Message

MessageConverter

Not currently

PartialMessage

PartialMessageConverter

Not currently

GuildChannel

GuildChannelConverter

Yes, as type 7 (CHANNEL)

TextChannel

TextChannelConverter

Yes, as type 7 (CHANNEL)

VoiceChannel

VoiceChannelConverter

Yes, as type 7 (CHANNEL)

StageChannel

StageChannelConverter

Yes, as type 7 (CHANNEL)

StoreChannel

StoreChannelConverter

Yes, as type 7 (CHANNEL)

CategoryChannel

CategoryChannelConverter

Yes, as type 7 (CHANNEL)

Thread

ThreadConverter

Yes, as type 7 (CHANNEL)

Invite

InviteConverter

Not currently

Guild

GuildConverter

Not currently

Role

RoleConverter

Yes, as type 8 (ROLE)

Game

GameConverter

Not currently

Colour

ColourConverter

Not currently

Emoji

EmojiConverter

Not currently

PartialEmoji

PartialEmojiConverter

Not currently

+
+

Slash Command Only

+

If a slash command is not marked on the table above as supported, it will be sent as type 3 (STRING) +and parsed by normal content parsing, see +the discord documentation +for all supported types by the API.

+
+

By providing the converter it allows us to use them as building blocks for another converter:

+
class MemberRoles(commands.MemberConverter):
+    async def convert(self, ctx, argument):
+        member = await super().convert(ctx, argument)
+        return [role.name for role in member.roles[1:]] # Remove everyone role!
+
+@bot.command()
+async def roles(ctx, *, member: MemberRoles):
+    """Tells you a member's roles."""
+    await ctx.send('I see the following roles: ' + ', '.join(member))
+
+
+
+
+

Special Converters

+

The command extension also has support for certain converters to allow for more advanced and intricate use cases that go +beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your +commands in an easy to use manner.

+
+

typing.Union

+

A typing.Union is a special type hint that allows for the command to take in any of the specific types instead of +a singular type. For example, given the following:

+
import typing
+
+@bot.command()
+async def union(ctx, what: typing.Union[discord.TextChannel, discord.Member]):
+    await ctx.send(what)
+
+
+

The what parameter would either take a discord.TextChannel converter or a discord.Member converter. +The way this works is through a left-to-right order. It first attempts to convert the input to a +discord.TextChannel, and if it fails it tries to convert it to a discord.Member. If all converters fail, +then a special error is raised, BadUnionArgument.

+

Note that any valid converter discussed above can be passed in to the argument list of a typing.Union.

+
+

Slash Command Only

+

These are not currently supported by the Discord API and will be sent as type 3 (STRING)

+
+
+
+

typing.Optional

+

A typing.Optional is a special type hint that allows for “back-referencing” behaviour. If the converter fails to +parse into the specified type, the parser will skip the parameter and then either None or the specified default will be +passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any.

+

Consider the following example:

+
import typing
+
+@bot.command()
+async def bottles(ctx, amount: typing.Optional[int] = 99, *, liquid="beer"):
+    await ctx.send(f'{amount} bottles of {liquid} on the wall!')
+
+
+../../_images/optional1.png +

In this example, since the argument could not be converted into an int, the default of 99 is passed and the parser +resumes handling, which in this case would be to pass it into the liquid parameter.

+
+

Note

+

This converter only works in regular positional parameters, not variable parameters or keyword-only parameters.

+
+
+
+

typing.Literal

+

A typing.Literal is a special type hint that requires the passed parameter to be equal to one of the listed values +after being converted to the same type. For example, given the following:

+
from typing import Literal
+
+@bot.command()
+async def shop(ctx, buy_sell: Literal['buy', 'sell'], amount: Literal[1, 2], *, item: str):
+    await ctx.send(f'{buy_sell.capitalize()}ing {amount} {item}(s)!')
+
+
+

The buy_sell parameter must be either the literal string "buy" or "sell" and amount must convert to the +int 1 or 2. If buy_sell or amount don’t match any value, then a special error is raised, +BadLiteralArgument. Any literal values can be mixed and matched within the same typing.Literal converter.

+

Note that typing.Literal[True] and typing.Literal[False] still follow the bool converter rules.

+
+
+

Greedy

+

The Greedy converter is a generalisation of the typing.Optional converter, except applied +to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can’t convert +any further.

+

Consider the following example:

+
@bot.command()
+async def slap(ctx, members: commands.Greedy[discord.Member], *, reason='no reason'):
+    slapped = ", ".join(x.name for x in members)
+    await ctx.send(f'{slapped} just got slapped for {reason}')
+
+
+

When invoked, it allows for any number of members to be passed in:

+../../_images/greedy1.png +

The type passed when using this converter depends on the parameter type that it is being attached to:

+
    +
  • Positional parameter types will receive either the default parameter or a list of the converted values.

  • +
  • Variable parameter types will be a tuple as usual.

  • +
  • Keyword-only parameter types will be the same as if Greedy was not passed at all.

  • +
+

Greedy parameters can also be made optional by specifying an optional value.

+

When mixed with the typing.Optional converter you can provide simple and expressive command invocation syntaxes:

+
import typing
+
+@bot.command()
+async def ban(ctx, members: commands.Greedy[discord.Member],
+                   delete_days: typing.Optional[int] = 0, *,
+                   reason: str):
+    """Mass bans members with an optional delete_days parameter"""
+    for member in members:
+        await member.ban(delete_message_days=delete_days, reason=reason)
+
+
+

This command can be invoked any of the following ways:

+
$ban @Member @Member2 spam bot
+$ban @Member @Member2 7 spam bot
+$ban @Member spam
+
+
+
+

Warning

+

The usage of Greedy and typing.Optional are powerful and useful, however as a +price, they open you up to some parsing ambiguities that might surprise some people.

+

For example, a signature expecting a typing.Optional of a discord.Member followed by a +int could catch a member named after a number due to the different ways a +MemberConverter decides to fetch members. You should take care to not introduce +unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes +allowed through custom converters or reordering the parameters to minimise clashes.

+

To help aid with some parsing ambiguities, str, None, typing.Optional and +Greedy are forbidden as parameters for the Greedy converter.

+
+
+
+
+

FlagConverter

+
+

New in version 2.0.

+
+

A FlagConverter allows the user to specify user-friendly “flags” using PEP 526 type annotations +or a syntax more reminiscent of the dataclasses module.

+

For example, the following code:

+
from discord.ext import commands
+import discord
+
+class BanFlags(commands.FlagConverter):
+    member: discord.Member
+    reason: str
+    days: int = 1
+
+@commands.command()
+async def ban(ctx, *, flags: BanFlags):
+    plural = f'{flags.days} days' if flags.days != 1 else f'{flags.days} day'
+    await ctx.send(f'Banned {flags.member} for {flags.reason!r} (deleted {plural} worth of messages)')
+
+
+

Allows the user to invoke the command using a simple flag-like syntax:

+../../_images/flags1.png +

Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the +flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have +multiple knobs to turn or simulating keyword-only parameters in your external command interface. It is recommended to use +keyword-only parameters with the flag converter. This ensures proper parsing and behaviour with quoting.

+

Internally, the FlagConverter class examines the class to find flags. A flag can either be a +class variable with a type annotation or a class variable that’s been assigned the result of the flag() +function. These flags are then used to define the interface that your users will use. The annotations correspond to +the converters that the flag arguments must adhere to.

+

For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name +or the default value then the flag() function can come in handy:

+
from typing import List
+
+class BanFlags(commands.FlagConverter):
+    members: List[discord.Member] = commands.flag(name='member', default=lambda ctx: [])
+
+
+

This tells the parser that the members attribute is mapped to a flag named member and that +the default value is an empty list. For greater customisability, the default can either be a value or a callable +that takes the Context as a sole parameter. This callable can either be a function or a coroutine.

+

In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:

+
# --hello world syntax
+class PosixLikeFlags(commands.FlagConverter, delimiter=' ', prefix='--'):
+    hello: str
+
+
+# /make food
+class WindowsLikeFlags(commands.FlagConverter, prefix='/', delimiter=''):
+    make: str
+
+# TOPIC: not allowed nsfw: yes Slowmode: 100
+class Settings(commands.FlagConverter, case_insensitive=True):
+    topic: Optional[str]
+    nsfw: Optional[bool]
+    slowmode: Optional[int]
+
+
+
+

Note

+

Despite the similarities in these examples to command like arguments, the syntax and parser is not +a command line parser. The syntax is mainly inspired by Discord’s search bar input and as a result +all flags need a corresponding value.

+
+
+

Slash Command Only

+

As these are built very similar to slash command options, they are converted into options and parsed +back into flags when the slash command is executed.

+
+

The flag converter is similar to regular commands and allows you to use most types of converters +(with the exception of Greedy) as the type annotation. Some extra support is added for specific +annotations as described below.

+
+

typing.List

+

If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times.

+

For example, augmenting the example above:

+
from discord.ext import commands
+from typing import List
+import discord
+
+class BanFlags(commands.FlagConverter):
+    members: List[discord.Member] = commands.flag(name='member')
+    reason: str
+    days: int = 1
+
+@commands.command()
+async def ban(ctx, *, flags: BanFlags):
+    for member in flags.members:
+        await member.ban(reason=flags.reason, delete_message_days=flags.days)
+
+    members = ', '.join(str(member) for member in flags.members)
+    plural = f'{flags.days} days' if flags.days != 1 else f'{flags.days} day'
+    await ctx.send(f'Banned {members} for {flags.reason!r} (deleted {plural} worth of messages)')
+
+
+

This is called by repeatedly specifying the flag:

+../../_images/flags2.png +
+
+

typing.Tuple

+

Since the above syntax can be a bit repetitive when specifying a flag many times, the tuple type annotation +allows for “greedy-like” semantics using a variadic tuple:

+
from discord.ext import commands
+from typing import Tuple
+import discord
+
+class BanFlags(commands.FlagConverter):
+    members: Tuple[discord.Member, ...]
+    reason: str
+    days: int = 1
+
+
+

This allows the previous ban command to be called like this:

+../../_images/flags3.png +

The tuple annotation also allows for parsing of pairs. For example, given the following code:

+
# point: 10 11 point: 12 13
+class Coordinates(commands.FlagConverter):
+    point: Tuple[int, int]
+
+
+
+

Warning

+

Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted +if they require spaces. So if one of the inner types is str and the argument requires spaces +then quotes should be used to disambiguate it from the other element of the tuple.

+
+
+
+

typing.Dict

+

A dict annotation is functionally equivalent to List[Tuple[K, V]] except with the return type +given as a dict rather than a list.

+
+
+
+
+

Error Handling

+

When our commands fail to parse we will, by default, receive a noisy error in stderr of our console that tells us +that an error has happened and has been silently ignored.

+

In order to handle our errors, we must use something called an error handler. There is a global error handler, called +on_command_error() which works like any other event in the Event Reference. This global error handler is +called for every error reached.

+

Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error +handlers that allow us to do just that. First we decorate an error handler function with Command.error():

+
@bot.command()
+async def info(ctx, *, member: discord.Member):
+    """Tells you some info about the member."""
+    msg = f'{member} joined on {member.joined_at} and has {len(member.roles)} roles.'
+    await ctx.send(msg)
+
+@info.error
+async def info_error(ctx, error):
+    if isinstance(error, commands.BadArgument):
+        await ctx.send('I could not find that member...')
+
+
+

The first parameter of the error handler is the Context while the second one is an exception that is derived from +CommandError. A list of errors is found in the Exceptions page of the documentation.

+
+
+

Checks

+

There are cases when we don’t want a user to use our commands. They don’t have permissions to do so or maybe we blocked +them from using our bot earlier. The commands extension comes with full support for these things in a concept called a +Checks.

+

A check is a basic predicate that can take in a Context as its sole parameter. Within it, you have the following +options:

+
    +
  • Return True to signal that the person can run the command.

  • +
  • Return False to signal that the person cannot run the command.

  • +
  • Raise a CommandError derived exception to signal the person cannot run the command.

    +
    +
      +
    • This allows you to have custom error messages for you to handle in the +error handlers.

    • +
    +
    +
  • +
+

To register a check for a command, we would have two ways of doing so. The first is using the check() +decorator. For example:

+
async def is_owner(ctx):
+    return ctx.author.id == 316026178463072268
+
+@bot.command(name='eval')
+@commands.check(is_owner)
+async def _eval(ctx, *, code):
+    """A bad example of an eval command"""
+    await ctx.send(eval(code))
+
+
+

This would only evaluate the command if the function is_owner returns True. Sometimes we re-use a check often and +want to split it into its own decorator. To do that we can just add another level of depth:

+
def is_owner():
+    async def predicate(ctx):
+        return ctx.author.id == 316026178463072268
+    return commands.check(predicate)
+
+@bot.command(name='eval')
+@is_owner()
+async def _eval(ctx, *, code):
+    """A bad example of an eval command"""
+    await ctx.send(eval(code))
+
+
+

Since an owner check is so common, the library provides it for you (is_owner()):

+
@bot.command(name='eval')
+@commands.is_owner()
+async def _eval(ctx, *, code):
+    """A bad example of an eval command"""
+    await ctx.send(eval(code))
+
+
+

When multiple checks are specified, all of them must be True:

+
def is_in_guild(guild_id):
+    async def predicate(ctx):
+        return ctx.guild and ctx.guild.id == guild_id
+    return commands.check(predicate)
+
+@bot.command()
+@commands.is_owner()
+@is_in_guild(41771983423143937)
+async def secretguilddata(ctx):
+    """super secret stuff"""
+    await ctx.send('secret stuff')
+
+
+

If any of those checks fail in the example above, then the command will not be run.

+

When an error happens, the error is propagated to the error handlers. If you do not +raise a custom CommandError derived exception, then it will get wrapped up into a +CheckFailure exception as so:

+
@bot.command()
+@commands.is_owner()
+@is_in_guild(41771983423143937)
+async def secretguilddata(ctx):
+    """super secret stuff"""
+    await ctx.send('secret stuff')
+
+@secretguilddata.error
+async def secretguilddata_error(ctx, error):
+    if isinstance(error, commands.CheckFailure):
+        await ctx.send('nothing to see here comrade.')
+
+
+

If you want a more robust error system, you can derive from the exception and raise it instead of returning False:

+
class NoPrivateMessages(commands.CheckFailure):
+    pass
+
+def guild_only():
+    async def predicate(ctx):
+        if ctx.guild is None:
+            raise NoPrivateMessages('Hey no DMs!')
+        return True
+    return commands.check(predicate)
+
+@guild_only()
+async def test(ctx):
+    await ctx.send('Hey this is not a DM! Nice.')
+
+@test.error
+async def test_error(ctx, error):
+    if isinstance(error, NoPrivateMessages):
+        await ctx.send(error)
+
+
+
+

Note

+

Since having a guild_only decorator is pretty common, it comes built-in via guild_only().

+
+
+

Global Checks

+

Sometimes we want to apply a check to every command, not just certain commands. The library supports this as well +using the global check concept.

+

Global checks work similarly to regular checks except they are registered with the Bot.check() decorator.

+

For example, to block all DMs we could do the following:

+
@bot.check
+async def globally_block_dms(ctx):
+    return ctx.guild is not None
+
+
+
+

Warning

+

Be careful on how you write your global checks, as it could also lock you out of your own bot.

+
+
+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/ext/commands/extensions.html b/docs/Python/html/ext/commands/extensions.html new file mode 100644 index 00000000..836a7fd4 --- /dev/null +++ b/docs/Python/html/ext/commands/extensions.html @@ -0,0 +1,200 @@ + + + + + + Extensions + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

Extensions

+

There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called extensions.

+
+

Primer

+

An extension at its core is a python file with an entry point called setup. This setup must be a plain Python function (not a coroutine). It takes a single parameter – the Bot that loads the extension.

+

An example extension looks like this:

+
+
hello.py
+
from discord.ext import commands
+
+@commands.command()
+async def hello(ctx):
+    await ctx.send(f'Hello {ctx.author.display_name}.')
+
+def setup(bot):
+    bot.add_command(hello)
+
+
+
+

In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling Bot.load_extension(). To load this extension we call bot.load_extension('hello').

+
+

Cogs

+

Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, Cogs.

+
+
+

Note

+

Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in plugins/hello.py then we use the string plugins.hello.

+
+
+
+

Reloading

+

When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, Bot.reload_extension().

+
>>> bot.reload_extension('hello')
+
+
+

Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened.

+
+
+

Cleaning Up

+

Although rare, sometimes an extension needs to clean-up or know when it’s being unloaded. For cases like these, there is another entry point named teardown which is similar to setup except called when the extension is unloaded.

+
+
basic_ext.py
+
def setup(bot):
+    print('I am being loaded!')
+
+def teardown(bot):
+    print('I am being unloaded!')
+
+
+
+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/ext/commands/index.html b/docs/Python/html/ext/commands/index.html new file mode 100644 index 00000000..1c0ebe52 --- /dev/null +++ b/docs/Python/html/ext/commands/index.html @@ -0,0 +1,184 @@ + + + + + + discord.ext.commands – Bot commands framework + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

discord.ext.commands – Bot commands framework

+

discord.py offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of +bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in +creating a bot command framework that is extensible, flexible, and powerful. For this reason, discord.py comes with an +extension library that handles this for you.

+ +
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/ext/commands/slash-commands.html b/docs/Python/html/ext/commands/slash-commands.html new file mode 100644 index 00000000..f62624f5 --- /dev/null +++ b/docs/Python/html/ext/commands/slash-commands.html @@ -0,0 +1,149 @@ + + + + + + Slash Commands + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

Slash Commands

+

Slash Commands are currently supported in enhanced-discord.py using a system on top of ext.commands.

+

This system is very simple to use, and can be enabled via Bot.slash_commands globally, +or only for specific commands via Command.slash_command.

+

There is also the parameter slash_command_guilds which can be passed to either Bot or the command +decorator in order to only upload the commands as guild commands to these specific guild IDs, however this +should only be used for testing or small (<10 guilds) bots.

+

If you want to add option descriptions to your commands, you should use Option

+

For troubleshooting, see the FAQ

+
+

Slash Command Only

+

For parts of the docs specific to slash commands, look for this box!

+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/ext/tasks/index.html b/docs/Python/html/ext/tasks/index.html new file mode 100644 index 00000000..9f93ec21 --- /dev/null +++ b/docs/Python/html/ext/tasks/index.html @@ -0,0 +1,704 @@ + + + + + + discord.ext.tasks – asyncio.Task helpers + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

discord.ext.tasks – asyncio.Task helpers

+
+

New in version 1.1.0.

+
+

One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:

+
    +
  • How do I handle asyncio.CancelledError?

  • +
  • What do I do if the internet goes out?

  • +
  • What is the maximum number of seconds I can sleep anyway?

  • +
+

The goal of this discord.py extension is to abstract all these worries away from you.

+
+

Recipes

+

A simple background task in a Cog:

+
from discord.ext import tasks, commands
+
+class MyCog(commands.Cog):
+    def __init__(self):
+        self.index = 0
+        self.printer.start()
+
+    def cog_unload(self):
+        self.printer.cancel()
+
+    @tasks.loop(seconds=5.0)
+    async def printer(self):
+        print(self.index)
+        self.index += 1
+
+
+

Adding an exception to handle during reconnect:

+
import asyncpg
+from discord.ext import tasks, commands
+
+class MyCog(commands.Cog):
+    def __init__(self, bot):
+        self.bot = bot
+        self.data = []
+        self.batch_update.add_exception_type(asyncpg.PostgresConnectionError)
+        self.batch_update.start()
+
+    def cog_unload(self):
+        self.batch_update.cancel()
+
+    @tasks.loop(minutes=5.0)
+    async def batch_update(self):
+        async with self.bot.pool.acquire() as con:
+            # batch update here...
+            pass
+
+
+

Looping a certain amount of times before exiting:

+
from discord.ext import tasks
+
+@tasks.loop(seconds=5.0, count=5)
+async def slow_count():
+    print(slow_count.current_loop)
+
+@slow_count.after_loop
+async def after_slow_count():
+    print('done!')
+
+slow_count.start()
+
+
+

Waiting until the bot is ready before the loop starts:

+
from discord.ext import tasks, commands
+
+class MyCog(commands.Cog):
+    def __init__(self, bot):
+        self.index = 0
+        self.bot = bot
+        self.printer.start()
+
+    def cog_unload(self):
+        self.printer.cancel()
+
+    @tasks.loop(seconds=5.0)
+    async def printer(self):
+        print(self.index)
+        self.index += 1
+
+    @printer.before_loop
+    async def before_printer(self):
+        print('waiting...')
+        await self.bot.wait_until_ready()
+
+
+

Doing something during cancellation:

+
from discord.ext import tasks, commands
+import asyncio
+
+class MyCog(commands.Cog):
+    def __init__(self, bot):
+        self.bot= bot
+        self._batch = []
+        self.lock = asyncio.Lock()
+        self.bulker.start()
+
+    async def do_bulk(self):
+        # bulk insert data here
+        ...
+
+    @tasks.loop(seconds=10.0)
+    async def bulker(self):
+        async with self.lock:
+            await self.do_bulk()
+
+    @bulker.after_loop
+    async def on_bulker_cancel(self):
+        if self.bulker.is_being_cancelled() and len(self._batch) != 0:
+            # if we're cancelled and we have some data left...
+            # let's insert it to our database
+            await self.do_bulk()
+
+
+
+
+

API Reference

+
+ +Methods +
+
+class discord.ext.tasks.Loop
+

A background task helper that abstracts the loop and reconnection logic for you.

+

The main interface to create this is through loop().

+
+
+@after_loop
+

A decorator that register a coroutine to be called after the loop finished running.

+

The coroutine must take no arguments (except self in a class context).

+
+

Note

+

This coroutine is called even during cancellation. If it is desirable +to tell apart whether something was cancelled or not, check to see +whether is_being_cancelled() is True or not.

+
+
+
Parameters
+

coro (coroutine) – The coroutine to register after the loop finishes.

+
+
Raises
+

TypeError – The function was not a coroutine.

+
+
+
+ +
+
+@before_loop
+

A decorator that registers a coroutine to be called before the loop starts running.

+

This is useful if you want to wait for some bot state before the loop starts, +such as discord.Client.wait_until_ready().

+

The coroutine must take no arguments (except self in a class context).

+
+
Parameters
+

coro (coroutine) – The coroutine to register before the loop runs.

+
+
Raises
+

TypeError – The function was not a coroutine.

+
+
+
+ +
+
+@error
+

A decorator that registers a coroutine to be called if the task encounters an unhandled exception.

+

The coroutine must take only one argument the exception raised (except self in a class context).

+

By default this prints to sys.stderr however it could be +overridden to have a different implementation.

+
+

New in version 1.4.

+
+
+
Parameters
+

coro (coroutine) – The coroutine to register in the event of an unhandled exception.

+
+
Raises
+

TypeError – The function was not a coroutine.

+
+
+
+ +
+
+property seconds
+

Read-only value for the number of seconds +between each iteration. None if an explicit time value was passed instead.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[float]

+
+
+
+ +
+
+property minutes
+

Read-only value for the number of minutes +between each iteration. None if an explicit time value was passed instead.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[float]

+
+
+
+ +
+
+property hours
+

Read-only value for the number of hours +between each iteration. None if an explicit time value was passed instead.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[float]

+
+
+
+ +
+
+property time
+

Read-only list for the exact times this loop runs at. +None if relative times were passed instead.

+
+

New in version 2.0.

+
+
+
Type
+

Optional[List[datetime.time]]

+
+
+
+ +
+
+property current_loop
+

The current iteration of the loop.

+
+
Type
+

int

+
+
+
+ +
+
+property next_iteration
+

When the next iteration of the loop will occur.

+
+

New in version 1.3.

+
+
+
Type
+

Optional[datetime.datetime]

+
+
+
+ +
+
+await __call__(*args, **kwargs)
+

This function is a coroutine.

+

Calls the internal callback that the task holds.

+
+

New in version 1.6.

+
+
+
Parameters
+
    +
  • *args – The arguments to use.

  • +
  • **kwargs – The keyword arguments to use.

  • +
+
+
+
+ +
+
+start(*args, **kwargs)
+

Starts the internal task in the event loop.

+
+
Parameters
+
    +
  • *args – The arguments to use.

  • +
  • **kwargs – The keyword arguments to use.

  • +
+
+
Raises
+

RuntimeError – A task has already been launched and is running.

+
+
Returns
+

The task that has been created.

+
+
Return type
+

asyncio.Task

+
+
+
+ +
+
+stop()
+

Gracefully stops the task from running.

+

Unlike cancel(), this allows the task to finish its +current iteration before gracefully exiting.

+
+

Note

+

If the internal function raises an error that can be +handled before finishing then it will retry until +it succeeds.

+

If this is undesirable, either remove the error handling +before stopping via clear_exception_types() or +use cancel() instead.

+
+
+

New in version 1.2.

+
+
+ +
+
+cancel()
+

Cancels the internal task, if it is running.

+
+ +
+
+restart(*args, **kwargs)
+

A convenience method to restart the internal task.

+
+

Note

+

Due to the way this function works, the task is not +returned like start().

+
+
+
Parameters
+
    +
  • *args – The arguments to use.

  • +
  • **kwargs – The keyword arguments to use.

  • +
+
+
+
+ +
+
+add_exception_type(*exceptions)
+

Adds exception types to be handled during the reconnect logic.

+

By default the exception types handled are those handled by +discord.Client.connect(), which includes a lot of internet disconnection +errors.

+

This function is useful if you’re interacting with a 3rd party library that +raises its own set of exceptions.

+
+
Parameters
+

*exceptions (Type[BaseException]) – An argument list of exception classes to handle.

+
+
Raises
+

TypeError – An exception passed is either not a class or not inherited from BaseException.

+
+
+
+ +
+
+clear_exception_types()
+

Removes all exception types that are handled.

+
+

Note

+

This operation obviously cannot be undone!

+
+
+ +
+
+remove_exception_type(*exceptions)
+

Removes exception types from being handled during the reconnect logic.

+
+
Parameters
+

*exceptions (Type[BaseException]) – An argument list of exception classes to handle.

+
+
Returns
+

Whether all exceptions were successfully removed.

+
+
Return type
+

bool

+
+
+
+ +
+
+get_task()
+

Optional[asyncio.Task]: Fetches the internal task or None if there isn’t one running.

+
+ +
+
+is_being_cancelled()
+

Whether the task is being cancelled.

+
+ +
+
+failed()
+

bool: Whether the internal task has failed.

+
+

New in version 1.2.

+
+
+ +
+
+is_running()
+

bool: Check if the task is currently running.

+
+

New in version 1.4.

+
+
+ +
+
+change_interval(*, seconds=0, minutes=0, hours=0, time=...)
+

Changes the interval for the sleep time.

+
+

New in version 1.2.

+
+
+
Parameters
+
    +
  • seconds (float) – The number of seconds between every iteration.

  • +
  • minutes (float) – The number of minutes between every iteration.

  • +
  • hours (float) – The number of hours between every iteration.

  • +
  • time (Union[datetime.time, Sequence[datetime.time]]) –

    The exact times to run this loop at. Either a non-empty list or a single +value of datetime.time should be passed. +This cannot be used in conjunction with the relative time parameters.

    +
    +

    New in version 2.0.

    +
    +
    +

    Note

    +

    Duplicate times will be ignored, and only run once.

    +
    +

  • +
+
+
Raises
+
    +
  • ValueError – An invalid value was given.

  • +
  • TypeError – An invalid value for the time parameter was passed, or the + time parameter was passed in conjunction with relative time parameters.

  • +
+
+
+
+ +
+ +
+
+discord.ext.tasks.loop(*, seconds=..., minutes=..., hours=..., time=..., count=None, reconnect=True, loop=...)
+

A decorator that schedules a task in the background for you with +optional reconnect logic. The decorator returns a Loop.

+
+
Parameters
+
    +
  • seconds (float) – The number of seconds between every iteration.

  • +
  • minutes (float) – The number of minutes between every iteration.

  • +
  • hours (float) – The number of hours between every iteration.

  • +
  • time (Union[datetime.time, Sequence[datetime.time]]) –

    The exact times to run this loop at. Either a non-empty list or a single +value of datetime.time should be passed. Timezones are supported. +If no timezone is given for the times, it is assumed to represent UTC time.

    +

    This cannot be used in conjunction with the relative time parameters.

    +
    +

    Note

    +

    Duplicate times will be ignored, and only run once.

    +
    +
    +

    New in version 2.0.

    +
    +

  • +
  • count (Optional[int]) – The number of loops to do, None if it should be an +infinite loop.

  • +
  • reconnect (bool) – Whether to handle errors and restart the task +using an exponential back-off algorithm similar to the +one used in discord.Client.connect().

  • +
  • loop (asyncio.AbstractEventLoop) – The loop to use to register the task, if not given +defaults to asyncio.get_event_loop().

  • +
+
+
Raises
+
    +
  • ValueError – An invalid value was given.

  • +
  • TypeError – The function was not a coroutine, an invalid value for the time parameter was passed, + or time parameter was passed in conjunction with relative time parameters.

  • +
+
+
+
+ +
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/faq.html b/docs/Python/html/faq.html new file mode 100644 index 00000000..0d0120d8 --- /dev/null +++ b/docs/Python/html/faq.html @@ -0,0 +1,601 @@ + + + + + + Frequently Asked Questions + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

Frequently Asked Questions

+

This is a list of Frequently Asked Questions regarding using discord.py and its extension modules. Feel free to suggest a +new question or submit one via pull requests.

+ +
+

Coroutines

+

Questions regarding coroutines and asyncio belong here.

+
+

What is a coroutine?

+

A coroutine is a function that must be invoked with await or yield from. When Python encounters an await it stops +the function’s execution at that point and works on other things until it comes back to that point and finishes off its work. +This allows for your program to be doing multiple things at the same time without using threads or complicated +multiprocessing.

+

If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.

+
+
+

Where can I use await?

+

You can only use await inside async def functions and nowhere else.

+
+
+

What does “blocking” mean?

+

In asynchronous programming a blocking call is essentially all the parts of the function that are not await. Do not +despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make +sure that you don’t excessively block functions. Remember, if you block for too long then your bot will freeze since it has +not stopped the function’s execution at that point to do other things.

+

If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: +Heartbeat blocked for more than N seconds. +See Setting Up Logging for details on enabling logging.

+

A common source of blocking for too long is something like time.sleep(). Don’t do that. Use asyncio.sleep() +instead. Similar to this example:

+
# bad
+time.sleep(10)
+
+# good
+await asyncio.sleep(10)
+
+
+

Another common source of blocking for too long is using HTTP requests with the famous module Requests: HTTP for Humans™. +While Requests: HTTP for Humans™ is an amazing module for non-asynchronous programming, it is not a good choice for +asyncio because certain requests can block the event loop too long. Instead, use the aiohttp library which +is installed on the side with this library.

+

Consider the following example:

+
# bad
+r = requests.get('http://aws.random.cat/meow')
+if r.status_code == 200:
+    js = r.json()
+    await channel.send(js['file'])
+
+# good
+async with aiohttp.ClientSession() as session:
+    async with session.get('http://aws.random.cat/meow') as r:
+        if r.status == 200:
+            js = await r.json()
+            await channel.send(js['file'])
+
+
+
+
+
+

General

+

General questions regarding library usage belong here.

+
+

Where can I find usage examples?

+

Example code can be found in the examples folder +in the repository.

+
+
+

How do I set the “Playing” status?

+

The activity keyword argument may be passed in the Client constructor or Client.change_presence(), given an Activity object.

+

The constructor may be used for static activities, while Client.change_presence() may be used to update the activity at runtime.

+
+

Warning

+

It is highly discouraged to use Client.change_presence() or API calls in on_ready() as this event may be called many times while running, not just once.

+

There is a high chance of disconnecting if presences are changed right after connecting.

+
+

The status type (playing, listening, streaming, watching) can be set using the ActivityType enum. +For memory optimisation purposes, some activities are offered in slimmed-down versions:

+ +

Putting both of these pieces of info together, you get the following:

+
client = discord.Client(activity=discord.Game(name='my game'))
+
+# or, for watching:
+activity = discord.Activity(name='my activity', type=discord.ActivityType.watching)
+client = discord.Client(activity=activity)
+
+
+
+
+

How do I send a message to a specific channel?

+

You must fetch the channel directly and then call the appropriate method. Example:

+
channel = client.get_channel(12324234183172)
+await channel.send('hello')
+
+
+
+
+

How do I send a DM?

+

Get the User or Member object and call abc.Messageable.send(). For example:

+
user = client.get_user(381870129706958858)
+await user.send('👀')
+
+
+

If you are responding to an event, such as on_message(), you already have the User object via Message.author:

+
await message.author.send('👋')
+
+
+
+
+

How do I get the ID of a sent message?

+

abc.Messageable.send() returns the Message that was sent. +The ID of a message can be accessed via Message.id:

+
message = await channel.send('hmm…')
+message_id = message.id
+
+
+
+
+

How do I upload an image?

+

To upload something to Discord you have to use the File object.

+

A File accepts two parameters, the file-like object (or file path) and the filename +to pass to Discord when uploading.

+

If you want to upload an image it’s as simple as:

+
await channel.send(file=discord.File('my_file.png'))
+
+
+

If you have a file-like object you can do as follows:

+
with open('my_file.png', 'rb') as fp:
+    await channel.send(file=discord.File(fp, 'new_filename.png'))
+
+
+

To upload multiple files, you can use the files keyword argument instead of file:

+
my_files = [
+    discord.File('result.zip'),
+    discord.File('teaser_graph.png'),
+]
+await channel.send(files=my_files)
+
+
+

If you want to upload something from a URL, you will have to use an HTTP request using aiohttp +and then pass an io.BytesIO instance to File like so:

+
import io
+import aiohttp
+
+async with aiohttp.ClientSession() as session:
+    async with session.get(my_url) as resp:
+        if resp.status != 200:
+            return await channel.send('Could not download file...')
+        data = io.BytesIO(await resp.read())
+        await channel.send(file=discord.File(data, 'cool_image.png'))
+
+
+
+
+

How can I add a reaction to a message?

+

You use the Message.add_reaction() method.

+

If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:

+
    +
  • '👍'

  • +
  • '\U0001F44D'

  • +
  • '\N{THUMBS UP SIGN}'

  • +
+

Quick example:

+
emoji = '\N{THUMBS UP SIGN}'
+# or '\U0001f44d' or '👍'
+await message.add_reaction(emoji)
+
+
+

In case you want to use emoji that come from a message, you already get their code points in the content without needing +to do anything special. You cannot send ':thumbsup:' style shorthands.

+

For custom emoji, you should pass an instance of Emoji. You can also pass a '<:name:id>' string, but if you +can use said emoji, you should be able to use Client.get_emoji() to get an emoji via ID or use utils.find()/ +utils.get() on Client.emojis or Guild.emojis collections.

+

The name and ID of a custom emoji can be found with the client by prefixing :custom_emoji: with a backslash. +For example, sending the message \:python3: with the client will result in <:python3:232720527448342530>.

+

Quick example:

+
# if you have the ID already
+emoji = client.get_emoji(310177266011340803)
+await message.add_reaction(emoji)
+
+# no ID, do a lookup
+emoji = discord.utils.get(guild.emojis, name='LUL')
+if emoji:
+    await message.add_reaction(emoji)
+
+# if you have the name and ID of a custom emoji:
+emoji = '<:python3:232720527448342530>'
+await message.add_reaction(emoji)
+
+
+
+
+

How do I pass a coroutine to the player’s “after” function?

+

The library’s music player launches on a separate thread, ergo it does not execute inside a coroutine. +This does not mean that it is not possible to call a coroutine in the after parameter. To do so you must pass a callable +that wraps up a couple of aspects.

+

The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are +technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for +us, asyncio comes with a asyncio.run_coroutine_threadsafe() function that allows us to call +a coroutine from another thread.

+

However, this function returns a Future and to actually call it we have to fetch its result. Putting all of +this together we can do the following:

+
def my_after(error):
+    coro = some_channel.send('Song is done!')
+    fut = asyncio.run_coroutine_threadsafe(coro, client.loop)
+    try:
+        fut.result()
+    except:
+        # an error happened sending the message
+        pass
+
+voice.play(discord.FFmpegPCMAudio(url), after=my_after)
+
+
+
+
+

How do I run something in the background?

+

Check the background_task.py example.

+
+
+

How do I get a specific model?

+

There are multiple ways of doing this. If you have a specific model’s ID then you can use +one of the following functions:

+ +

The following use an HTTP request:

+ +

If the functions above do not help you, then use of utils.find() or utils.get() would serve some use in finding +specific models.

+

Quick example:

+
# find a guild by name
+guild = discord.utils.get(client.guilds, name='My Server')
+
+# make sure to check if it's found
+if guild is not None:
+    # find a channel by name
+    channel = discord.utils.get(guild.text_channels, name='cool-channel')
+
+
+
+
+

How do I make a web request?

+

To make a request, you should use a non-blocking library. +This library already uses and requires a 3rd party library for making requests, aiohttp.

+

Quick example:

+
async with aiohttp.ClientSession() as session:
+    async with session.get('http://aws.random.cat/meow') as r:
+        if r.status == 200:
+            js = await r.json()
+
+
+

See aiohttp’s full documentation for more information.

+
+
+

How do I use a local image file for an embed image?

+

Discord special-cases uploading an image attachment and using it within an embed so that it will not +display separately, but instead in the embed’s thumbnail, image, footer or author icon.

+

To do so, upload the image normally with abc.Messageable.send(), +and set the embed’s image URL to attachment://image.png, +where image.png is the filename of the image you will send.

+

Quick example:

+
file = discord.File("path/to/my/image.png", filename="image.png")
+embed = discord.Embed()
+embed.set_image(url="attachment://image.png")
+await channel.send(file=file, embed=embed)
+
+
+
+

Note

+

Due to a Discord limitation, filenames may not include underscores.

+
+
+
+

Is there an event for audit log entries being created?

+

Since Discord does not dispatch this information in the gateway, the library cannot provide this information. +This is currently a Discord limitation.

+
+
+
+

Commands Extension

+

Questions regarding discord.ext.commands belong here.

+
+

Why does on_message make my commands stop working?

+

Overriding the default provided on_message forbids any extra commands from running. To fix this, add a +bot.process_commands(message) line at the end of your on_message. For example:

+
@bot.event
+async def on_message(message):
+    # do some extra stuff here
+
+    await bot.process_commands(message)
+
+
+

Alternatively, you can place your on_message logic into a listener. In this setup, you should not +manually call bot.process_commands(). This also allows you to do multiple things asynchronously in response +to a message. Example:

+
@bot.listen('on_message')
+async def whatever_you_want_to_call_it(message):
+    # do stuff here
+    # do not process commands here
+
+
+
+
+

Why do my arguments require quotes?

+

In a simple command defined as:

+
@bot.command()
+async def echo(ctx, message: str):
+    await ctx.send(message)
+
+
+

Calling it via ?echo a b c will only fetch the first argument and disregard the rest. To fix this you should either call +it via ?echo "a b c" or change the signature to have “consume rest” behaviour. Example:

+
@bot.command()
+async def echo(ctx, *, message: str):
+    await ctx.send(message)
+
+
+

This will allow you to use ?echo a b c without needing the quotes.

+
+
+

How do I get the original message?

+

The Context contains an attribute, message to get the original +message.

+

Example:

+
@bot.command()
+async def length(ctx):
+    await ctx.send(f'Your message is {len(ctx.message.content)} characters long.')
+
+
+
+
+

How do I make a subcommand?

+

Use the group() decorator. This will transform the callback into a Group which will allow you to add commands into +the group operating as “subcommands”. These groups can be arbitrarily nested as well.

+

Example:

+
@bot.group()
+async def git(ctx):
+    if ctx.invoked_subcommand is None:
+        await ctx.send('Invalid git command passed...')
+
+@git.command()
+async def push(ctx, remote: str, branch: str):
+    await ctx.send(f'Pushing to {remote} {branch}')
+
+
+

This could then be used as ?git push origin master.

+
+
+

How do I make slash commands?

+

See Slash Commands

+
+
+

My slash commands aren’t showing up!

+

You need to invite your bot with the application.commands scope on each guild and +you need the Permissions.use_slash_commands permission in order to see slash commands.

+The scopes checkbox with "bot" and "applications.commands" ticked. +

Global slash commands (created by not specifying slash_command_guilds) will also take up an +hour to refresh on discord’s end, so it is recommended to set slash_command_guilds for development.

+

If none of this works, make sure you are actually running enhanced-discord.py by doing print(bot.slash_commands)

+
+
+

My bot won’t start after enabling slash commands!

+

This means some of your command metadata is invalid for slash commands. +Make sure your command names and option names are lowercase, and they have to match the regex ^[\w-]{1,32}$

+

If you cannot figure out the problem, you should disable slash commands globally (slash_commands=False) +then go through commands, enabling them specifically with slash_command=True until it +errors, then you can debug the problem with that command specifically.

+
+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/genindex.html b/docs/Python/html/genindex.html new file mode 100644 index 00000000..86f34031 --- /dev/null +++ b/docs/Python/html/genindex.html @@ -0,0 +1,5392 @@ + + + + + + Index + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ + + +

Index

+ +
+ _ + | A + | B + | C + | D + | E + | F + | G + | H + | I + | J + | K + | L + | M + | N + | O + | P + | Q + | R + | S + | T + | U + | V + | W + | Y + +
+

_

+ + + +
+ +

A

+ + + +
+ +

B

+ + + +
+ +

C

+ + + +
+ +

D

+ + + +
+ +

E

+ + + +
+ +

F

+ + + +
+ +

G

+ + + +
+ +

H

+ + + +
+ +

I

+ + + +
+ +

J

+ + + +
+ +

K

+ + + +
+ +

L

+ + + +
+ +

M

+ + + +
+ +

N

+ + + +
+ +

O

+ + + +
+ +

P

+ + + +
+ +

Q

+ + + +
+ +

R

+ + + +
+ +

S

+ + + +
+ +

T

+ + + +
+ +

U

+ + + +
+ +

V

+ + + +
+ +

W

+ + + +
+ +

Y

+ + +
+ + + + + + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/index.html b/docs/Python/html/index.html new file mode 100644 index 00000000..5bbd6577 --- /dev/null +++ b/docs/Python/html/index.html @@ -0,0 +1,213 @@ + + + + + + Welcome to discord.py + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

Welcome to discord.py

+_images/snake.svg_images/snake_dark.svg

discord.py is a modern, easy to use, feature-rich, and async ready API wrapper +for Discord.

+

Features:

+
    +
  • Modern Pythonic API using async/await syntax

  • +
  • Sane rate limit handling that prevents 429s

  • +
  • Command extension to aid with bot creation

  • +
  • Easy to use with an object oriented design

  • +
  • Optimised for both speed and memory

  • +
+
+

Getting started

+

Is this your first time using the library? This is the place to get started!

+ +
+
+

Getting help

+

If you’re having trouble with something, these resources might help.

+ +
+
+

Extensions

+

These extensions help you during development when it comes to common tasks.

+ +
+
+

Manuals

+

These pages go into great detail about everything the API can do.

+ +
+
+

Meta

+

If you’re looking for something related to the project itself, it’s here.

+ +
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/intents.html b/docs/Python/html/intents.html new file mode 100644 index 00000000..f62fd39a --- /dev/null +++ b/docs/Python/html/intents.html @@ -0,0 +1,331 @@ + + + + + + A Primer to Gateway Intents + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

New in version 1.5.

+
+
+

A Primer to Gateway Intents

+

In version 1.5 comes the introduction of Intents. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the Intents documentation.

+

These intents are passed to the constructor of Client or its subclasses (AutoShardedClient, AutoShardedBot, Bot) with the intents argument.

+

If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently Intents.members and Intents.presences.

+
+

What intents are needed?

+

The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the Intents class documents what events it corresponds to and what kind of cache it enables.

+

For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:

+
 import discord
+ intents = discord.Intents.default()
+ intents.typing = False
+ intents.presences = False
+
+ # Somewhere else:
+ # client = discord.Client(intents=intents)
+ # or
+ # from discord.ext import commands
+ # bot = commands.Bot(command_prefix='!', intents=intents)
+
+
+

Note that this doesn’t enable Intents.members since it’s a privileged intent.

+

Another example showing a bot that only deals with messages and guild information:

+
 import discord
+ intents = discord.Intents(messages=True, guilds=True)
+ # If you also want reaction events enable the following:
+ # intents.reactions = True
+
+ # Somewhere else:
+ # client = discord.Client(intents=intents)
+ # or
+ # from discord.ext import commands
+ # bot = commands.Bot(command_prefix='!', intents=intents)
+
+
+
+
+

Privileged Intents

+

With the API change requiring bot authors to specify intents, some intents were restricted further and require more manual steps. These intents are called privileged intents.

+

A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:

+
    +
  1. Make sure you’re logged on to the Discord website.

  2. +
  3. Navigate to the application page.

  4. +
  5. Click on the bot you want to enable privileged intents for.

  6. +
  7. Navigate to the bot tab on the left side of the screen.

    +
    +
    The bot tab in the application page. +
    +
  8. +
  9. Scroll down to the “Privileged Gateway Intents” section and enable the ones you want.

    +
    +
    The privileged gateway intents selector. +
    +
  10. +
+
+

Warning

+

Enabling privileged intents when your bot is in over 100 guilds requires going through bot verification. If your bot is already verified and you would like to enable a privileged intent you must go through Discord support and talk to them about it.

+
+
+

Note

+

Even if you enable intents through the developer portal, you still have to enable the intents +through code as well.

+
+
+

Do I need privileged intents?

+

This is a quick checklist to see if you need specific privileged intents.

+
+

Presence Intent

+ +
+
+

Member Intent

+
    +
  • Whether you track member joins or member leaves, corresponds to on_member_join() and on_member_remove() events.

  • +
  • Whether you want to track member updates such as nickname or role changes.

  • +
  • Whether you want to track user updates such as usernames, avatars, discriminators, etc.

  • +
  • Whether you want to request the guild member list through Guild.chunk() or Guild.fetch_members().

  • +
  • Whether you want high accuracy member cache under Guild.members.

  • +
+
+
+
+
+

Member Cache

+

Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the Intents.members intent is required in order to track the members who left and properly evict them.

+

To aid with member cache where we don’t need members to be cached, the library now has a MemberCacheFlags flag to control the member cache. The documentation page for the class goes over the specific policies that are possible.

+

It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:

+
    +
  • on_message() will have Message.author be a member even if cache is disabled.

  • +
  • on_voice_state_update() will have the member parameter be a member even if cache is disabled.

  • +
  • on_reaction_add() will have the user parameter be a member when in a guild even if cache is disabled.

  • +
  • on_raw_reaction_add() will have RawReactionActionEvent.member be a member when in a guild even if cache is disabled.

  • +
  • The reaction add events do not contain additional information when in direct messages. This is a Discord limitation.

  • +
  • The reaction removal events do not have member information. This is a Discord limitation.

  • +
+

Other events that take a Member will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the Intents.members intent enabled.

+
+
+

Retrieving Members

+

If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:

+
    +
  • +
    Guild.query_members()
      +
    • Used to query members by a prefix matching nickname or username.

    • +
    • This can also be used to query members by their user ID.

    • +
    • This uses the gateway and not the HTTP.

    • +
    +
    +
    +
  • +
  • +
    Guild.chunk()
      +
    • This can be used to fetch the entire member list through the gateway.

    • +
    +
    +
    +
  • +
  • +
    Guild.fetch_member()
      +
    • Used to fetch a member by ID through the HTTP API.

    • +
    +
    +
    +
  • +
  • +
    Guild.fetch_members()
      +
    • used to fetch a large number of members through the HTTP API.

    • +
    +
    +
    +
  • +
+

It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds.

+
+
+

Troubleshooting

+

Some common issues relating to the mandatory intent change.

+
+

Where’d my members go?

+

Due to an API change Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the members privileged intent and change the Intents.members attribute to true.

+

For example:

+
 import discord
+ intents = discord.Intents.default()
+ intents.members = True
+
+ # Somewhere else:
+ # client = discord.Client(intents=intents)
+ # or
+ # from discord.ext import commands
+ # bot = commands.Bot(command_prefix='!', intents=intents)
+
+
+
+
+

Why does on_ready take so long to fire?

+

As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the Guild.large attribute set to True. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that all guilds, not just large guilds are being requested.

+

There are a few solutions to fix this.

+

The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we’re still limited to 1 guild per request but the number of guilds we request is significantly reduced.

+

The second solution is to disable member chunking by setting chunk_guilds_at_startup to False when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to retrieve members.

+

To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are “large” (over 250 members).

+

Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With Intents.members but not Intents.presences this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both Intents.members and Intents.presences we mostly get the old behaviour so we’re only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it’s close to the original timing to fetch the member list.

+

Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this.

+

If you truly dislike the direction Discord is going with their API, you can contact them via support.

+
+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/intro.html b/docs/Python/html/intro.html new file mode 100644 index 00000000..e05f9cf1 --- /dev/null +++ b/docs/Python/html/intro.html @@ -0,0 +1,242 @@ + + + + + + Introduction + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

Introduction

+

This is the documentation for discord.py, a library for Python to aid +in creating applications that utilise the Discord API.

+
+

Prerequisites

+

discord.py works with Python 3.8 or higher. Support for earlier versions of Python +is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported.

+
+
+

Installing

+

You can get the library directly from PyPI:

+
python3 -m pip install -U discord.py
+
+
+

If you are using Windows, then the following should be used instead:

+
py -3 -m pip install -U discord.py
+
+
+

To get voice support, you should use discord.py[voice] instead of discord.py, e.g.

+
python3 -m pip install -U discord.py[voice]
+
+
+

On Linux environments, installing voice requires getting the following dependencies:

+ +

For a Debian-based system, the following command will get these dependencies:

+
$ apt install libffi-dev libnacl-dev python3-dev
+
+
+

Remember to check your permissions!

+
+

Virtual Environments

+

Sometimes you want to keep libraries from polluting system installs or use a different version of +libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. +For this purpose, the standard library as of Python 3.3 comes with a concept called “Virtual Environment”s to +help maintain these separate versions.

+

A more in-depth tutorial is found on Virtual Environments and Packages.

+

However, for the quick and dirty:

+
    +
  1. Go to your project’s working directory:

    +
    +
    $ cd your-bot-source
    +$ python3 -m venv bot-env
    +
    +
    +
    +
  2. +
  3. Activate the virtual environment:

    +
    +
    $ source bot-env/bin/activate
    +
    +
    +

    On Windows you activate it with:

    +
    $ bot-env\Scripts\activate.bat
    +
    +
    +
    +
  4. +
  5. Use pip like usual:

    +
    +
    $ pip install -U discord.py
    +
    +
    +
    +
  6. +
+

Congratulations. You now have a virtual environment all set up.

+
+
+
+

Basic Concepts

+

discord.py revolves around the concept of events. +An event is something you listen to and then respond to. For example, when a message +happens, you will receive an event about it that you can respond to.

+

A quick example to showcase how events work:

+
import discord
+
+class MyClient(discord.Client):
+    async def on_ready(self):
+        print(f'Logged on as {self.user}!')
+
+    async def on_message(self, message):
+        print(f'Message from {messsage.author}: {message.content}')
+
+client = MyClient()
+client.run('my token goes here')
+
+
+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/logging.html b/docs/Python/html/logging.html new file mode 100644 index 00000000..8665e20a --- /dev/null +++ b/docs/Python/html/logging.html @@ -0,0 +1,171 @@ + + + + + + Setting Up Logging + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

New in version 0.6.0.

+
+
+

Setting Up Logging

+

discord.py logs errors and debug information via the logging python +module. It is strongly recommended that the logging module is +configured, as no errors or warnings will be output if it is not set up. +Configuration of the logging module can be as simple as:

+
import logging
+
+logging.basicConfig(level=logging.INFO)
+
+
+

Placed at the start of the application. This will output the logs from +discord as well as other libraries that use the logging module +directly to the console.

+

The optional level argument specifies what level of events to log +out and can be any of CRITICAL, ERROR, WARNING, INFO, and +DEBUG and if not specified defaults to WARNING.

+

More advanced setups are possible with the logging module. For +example to write the logs to a file called discord.log instead of +outputting them to the console the following snippet can be used:

+
import discord
+import logging
+
+logger = logging.getLogger('discord')
+logger.setLevel(logging.DEBUG)
+handler = logging.FileHandler(filename='discord.log', encoding='utf-8', mode='w')
+handler.setFormatter(logging.Formatter('%(asctime)s:%(levelname)s:%(name)s: %(message)s'))
+logger.addHandler(handler)
+
+
+

This is recommended, especially at verbose levels such as INFO +and DEBUG, as there are a lot of events logged and it would clog the +stdout of your program.

+

For more information, check the documentation and tutorial of the +logging module.

+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/migrating.html b/docs/Python/html/migrating.html new file mode 100644 index 00000000..b7eda147 --- /dev/null +++ b/docs/Python/html/migrating.html @@ -0,0 +1,1462 @@ + + + + + + Migrating to v1.0 + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

Migrating to v1.0

+

v1.0 is one of the biggest breaking changes in the library due to a complete +redesign.

+

The amount of changes are so massive and long that for all intents and purposes, it is a completely +new library.

+

Part of the redesign involves making things more easy to use and natural. Things are done on the +models instead of requiring a Client instance to do any work.

+
+

Python Version Change

+

In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, +the library had to remove support for Python versions lower than 3.5.3, which essentially means that support for Python 3.4 +is dropped.

+
+
+

Major Model Changes

+

Below are major model changes that have happened in v1.0

+
+

Snowflakes are int

+

Before v1.0, all snowflakes (the id attribute) were strings. This has been changed to int.

+

Quick example:

+
# before
+ch = client.get_channel('84319995256905728')
+if message.author.id == '80528701850124288':
+    ...
+
+# after
+ch = client.get_channel(84319995256905728)
+if message.author.id == 80528701850124288:
+    ...
+
+
+

This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have +to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally.

+
+
+

Server is now Guild

+

The official API documentation calls the “Server” concept a “Guild” instead. In order to be more consistent with the +API documentation when necessary, the model has been renamed to Guild and all instances referring to it has +been changed as well.

+

A list of changes is as follows:

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Before

After

Message.server

Message.guild

Channel.server

GuildChannel.guild

Client.servers

Client.guilds

Client.get_server

Client.get_guild()

Emoji.server

Emoji.guild

Role.server

Role.guild

Invite.server

Invite.guild

Member.server

Member.guild

Permissions.manage_server

Permissions.manage_guild

VoiceClient.server

VoiceClient.guild

Client.create_server

Client.create_guild()

+
+
+

Models are Stateful

+

As mentioned earlier, a lot of functionality was moved out of Client and +put into their respective model.

+

A list of these changes is enumerated below.

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Before

After

Client.add_reaction

Message.add_reaction()

Client.add_roles

Member.add_roles()

Client.ban

Member.ban() or Guild.ban()

Client.change_nickname

Member.edit()

Client.clear_reactions

Message.clear_reactions()

Client.create_channel

Guild.create_text_channel() and Guild.create_voice_channel()

Client.create_custom_emoji

Guild.create_custom_emoji()

Client.create_invite

abc.GuildChannel.create_invite()

Client.create_role

Guild.create_role()

Client.delete_channel

abc.GuildChannel.delete()

Client.delete_channel_permissions

abc.GuildChannel.set_permissions() with overwrite set to None

Client.delete_custom_emoji

Emoji.delete()

Client.delete_invite

Invite.delete() or Client.delete_invite()

Client.delete_message

Message.delete()

Client.delete_messages

TextChannel.delete_messages()

Client.delete_role

Role.delete()

Client.delete_server

Guild.delete()

Client.edit_channel

TextChannel.edit() or VoiceChannel.edit()

Client.edit_channel_permissions

abc.GuildChannel.set_permissions()

Client.edit_custom_emoji

Emoji.edit()

Client.edit_message

Message.edit()

Client.edit_profile

ClientUser.edit() (you get this from Client.user)

Client.edit_role

Role.edit()

Client.edit_server

Guild.edit()

Client.estimate_pruned_members

Guild.estimate_pruned_members()

Client.get_all_emojis

Client.emojis

Client.get_bans

Guild.bans()

Client.get_invite

Client.fetch_invite()

Client.get_message

abc.Messageable.fetch_message()

Client.get_reaction_users

Reaction.users()

Client.get_user_info

Client.fetch_user()

Client.invites_from

abc.GuildChannel.invites() or Guild.invites()

Client.join_voice_channel

VoiceChannel.connect() (see Voice Changes)

Client.kick

Guild.kick() or Member.kick()

Client.leave_server

Guild.leave()

Client.logs_from

abc.Messageable.history() (see Asynchronous Iterators)

Client.move_channel

TextChannel.edit() or VoiceChannel.edit()

Client.move_member

Member.edit()

Client.move_role

Role.edit()

Client.pin_message

Message.pin()

Client.pins_from

abc.Messageable.pins()

Client.prune_members

Guild.prune_members()

Client.purge_from

TextChannel.purge()

Client.remove_reaction

Message.remove_reaction()

Client.remove_roles

Member.remove_roles()

Client.replace_roles

Member.edit()

Client.send_file

abc.Messageable.send() (see Sending Messages)

Client.send_message

abc.Messageable.send() (see Sending Messages)

Client.send_typing

abc.Messageable.trigger_typing() (use abc.Messageable.typing())

Client.server_voice_state

Member.edit()

Client.start_private_message

User.create_dm()

Client.unban

Guild.unban() or Member.unban()

Client.unpin_message

Message.unpin()

Client.wait_for_message

Client.wait_for() (see Waiting For Events)

Client.wait_for_reaction

Client.wait_for() (see Waiting For Events)

Client.wait_until_login

Removed

Client.wait_until_ready

No change

+
+
+

Property Changes

+

In order to be a bit more consistent, certain things that were properties were changed to methods instead.

+

The following are now methods instead of properties (requires parentheses):

+ +
+
+

Dict Value Change

+

Prior to v1.0 some aggregating properties that retrieved models would return “dict view” objects.

+

As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would +be raised and crash the task. To alleviate this, the “dict view” objects were changed into lists.

+

The following views were changed to a list:

+ +
+
+

Voice State Changes

+

Earlier, in v0.11.0 a VoiceState class was added to refer to voice states along with a +Member.voice attribute to refer to it.

+

However, it was transparent to the user. In an effort to make the library save more memory, the +voice state change is now more visible.

+

The only way to access voice attributes is via the Member.voice attribute. Note that if +the member does not have a voice state this attribute can be None.

+

Quick example:

+
# before
+member.deaf
+member.voice.voice_channel
+
+# after
+if member.voice: # can be None
+    member.voice.deaf
+    member.voice.channel
+
+
+
+
+

User and Member Type Split

+

In v1.0 to save memory, User and Member are no longer inherited. Instead, they are “flattened” +by having equivalent properties that map out to the functional underlying User. Thus, there is no functional +change in how they are used. However this breaks isinstance() checks and thus is something to keep in mind.

+

These memory savings were accomplished by having a global User cache, and as a positive consequence you +can now easily fetch a User by their ID by using the new Client.get_user(). You can also get a list +of all User your client can see with Client.users.

+
+
+

Channel Type Split

+

Prior to v1.0, channels were two different types, Channel and PrivateChannel with a is_private +property to help differentiate between them.

+

In order to save memory the channels have been split into 4 different types:

+ +

With this split came the removal of the is_private attribute. You should now use isinstance().

+

The types are split into two different Abstract Base Classes:

+ +

So to check if something is a guild channel you would do:

+
isinstance(channel, discord.abc.GuildChannel)
+
+
+

And to check if it’s a private channel you would do:

+
isinstance(channel, discord.abc.PrivateChannel)
+
+
+

Of course, if you’re looking for only a specific type you can pass that too, e.g.

+
isinstance(channel, discord.TextChannel)
+
+
+

With this type split also came event changes, which are enumerated in Event Changes.

+
+
+

Miscellaneous Model Changes

+

There were lots of other things added or removed in the models in general.

+

They will be enumerated here.

+

Removed

+
    +
  • Client.login() no longer accepts email and password logins.

    +
    +
      +
    • Use a token and bot=False.

    • +
    +
    +
  • +
  • Client.get_all_emojis

    +
    +
    +
    +
  • +
  • Client.messages

    +
    +
    +
    +
  • +
  • Client.wait_for_message and Client.wait_for_reaction are gone.

    +
    +
    +
    +
  • +
  • Channel.voice_members

    +
    +
    +
    +
  • +
  • Channel.is_private

    +
    +
      +
    • Use isinstance instead with one of the Abstract Base Classes instead.

    • +
    • e.g. isinstance(channel, discord.abc.GuildChannel) will check if it isn’t a private channel.

    • +
    +
    +
  • +
  • Client.accept_invite

    +
    +
      +
    • There is no replacement for this one. This functionality is deprecated API wise.

    • +
    +
    +
  • +
  • Guild.default_channel / Server.default_channel and Channel.is_default

    +
    +
      +
    • The concept of a default channel was removed from Discord. +See #329.

    • +
    +
    +
  • +
  • Message.edited_timestamp

    +
    +
    +
    +
  • +
  • Message.timestamp

    +
    +
    +
    +
  • +
  • Colour.to_tuple()

    +
    +
    +
    +
  • +
  • Permissions.view_audit_logs

    +
    +
    +
    +
  • +
  • Member.game

    +
    +
    +
    +
  • +
  • Guild.role_hierarchy / Server.role_hierarchy

    +
    +
      +
    • Use Guild.roles instead. Note that while sorted, it is in the opposite order +of what the old Guild.role_hierarchy used to be.

    • +
    +
    +
  • +
+

Changed

+ +

Added

+ +
+
+
+

Sending Messages

+

One of the changes that were done was the merger of the previous Client.send_message and Client.send_file +functionality into a single method, send().

+

Basically:

+
# before
+await client.send_message(channel, 'Hello')
+
+# after
+await channel.send('Hello')
+
+
+

This supports everything that the old send_message supported such as embeds:

+
e = discord.Embed(title='foo')
+await channel.send('Hello', embed=e)
+
+
+

There is a caveat with sending files however, as this functionality was expanded to support multiple +file attachments, you must now use a File pseudo-namedtuple to upload a single file.

+
# before
+await client.send_file(channel, 'cool.png', filename='testing.png', content='Hello')
+
+# after
+await channel.send('Hello', file=discord.File('cool.png', 'testing.png'))
+
+
+

This change was to facilitate multiple file uploads:

+
my_files = [
+    discord.File('cool.png', 'testing.png'),
+    discord.File(some_fp, 'cool_filename.png'),
+]
+
+await channel.send('Your images:', files=my_files)
+
+
+
+
+

Asynchronous Iterators

+

Prior to v1.0, certain functions like Client.logs_from would return a different type if done in Python 3.4 or 3.5+.

+

In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called +AsyncIterator.

+

This allows you to iterate over it like normal:

+
async for message in channel.history():
+    print(message)
+
+
+

Or turn it into a list:

+
messages = await channel.history().flatten()
+for message in messages:
+    print(message)
+
+
+

A handy aspect of returning AsyncIterator is that it allows you to chain functions together such as +AsyncIterator.map() or AsyncIterator.filter():

+
async for m_id in channel.history().filter(lambda m: m.author == client.user).map(lambda m: m.id):
+    print(m_id)
+
+
+

The functions passed to AsyncIterator.map() or AsyncIterator.filter() can be either coroutines or regular +functions.

+

You can also get single elements a la discord.utils.find() or discord.utils.get() via +AsyncIterator.get() or AsyncIterator.find():

+
my_last_message = await channel.history().get(author=client.user)
+
+
+

The following return AsyncIterator:

+ +
+
+

Event Changes

+

A lot of events have gone through some changes.

+

Many events with server in the name were changed to use guild instead.

+

Before:

+
    +
  • on_server_join

  • +
  • on_server_remove

  • +
  • on_server_update

  • +
  • on_server_role_create

  • +
  • on_server_role_delete

  • +
  • on_server_role_update

  • +
  • on_server_emojis_update

  • +
  • on_server_available

  • +
  • on_server_unavailable

  • +
+

After:

+ +

The on_voice_state_update() event has received an argument change.

+

Before:

+
async def on_voice_state_update(before, after)
+
+
+

After:

+
async def on_voice_state_update(member, before, after)
+
+
+

Instead of two Member objects, the new event takes one Member object and two VoiceState objects.

+

The on_guild_emojis_update() event has received an argument change.

+

Before:

+
async def on_guild_emojis_update(before, after)
+
+
+

After:

+
async def on_guild_emojis_update(guild, before, after)
+
+
+

The first argument is now the Guild that the emojis were updated from.

+

The on_member_ban() event has received an argument change as well:

+

Before:

+
async def on_member_ban(member)
+
+
+

After:

+
async def on_member_ban(guild, user)
+
+
+

As part of the change, the event can either receive a User or Member. To help in the cases that have +User, the Guild is provided as the first parameter.

+

The on_channel_ events have received a type level split (see Channel Type Split).

+

Before:

+
    +
  • on_channel_delete

  • +
  • on_channel_create

  • +
  • on_channel_update

  • +
+

After:

+ +

The on_guild_channel_ events correspond to abc.GuildChannel being updated (i.e. TextChannel +and VoiceChannel) and the on_private_channel_ events correspond to abc.PrivateChannel being +updated (i.e. DMChannel and GroupChannel).

+
+
+

Voice Changes

+

Voice sending has gone through a complete redesign.

+

In particular:

+
    +
  • Connection is done through VoiceChannel.connect() instead of Client.join_voice_channel.

  • +
  • You no longer create players and operate on them (you no longer store them).

  • +
  • You instead request VoiceClient to play an AudioSource via VoiceClient.play().

  • +
  • There are different built-in AudioSources.

    + +
  • +
  • create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed.

    + +
  • +
  • Using VoiceClient.play() will not return an AudioPlayer.

    +
      +
    • Instead, it’s “flattened” like User -> Member is.

    • +
    +
  • +
  • The after parameter now takes a single parameter (the error).

  • +
+

Basically:

+

Before:

+
vc = await client.join_voice_channel(channel)
+player = vc.create_ffmpeg_player('testing.mp3', after=lambda: print('done'))
+player.start()
+
+player.is_playing()
+player.pause()
+player.resume()
+player.stop()
+# ...
+
+
+

After:

+
vc = await channel.connect()
+vc.play(discord.FFmpegPCMAudio('testing.mp3'), after=lambda e: print('done', e))
+vc.is_playing()
+vc.pause()
+vc.resume()
+vc.stop()
+# ...
+
+
+

With the changed AudioSource design, you can now change the source that the VoiceClient is +playing at runtime via VoiceClient.source.

+

For example, you can add a PCMVolumeTransformer to allow changing the volume:

+
vc.source = discord.PCMVolumeTransformer(vc.source)
+vc.source.volume = 0.6
+
+
+

An added benefit of the redesign is that it will be much more resilient towards reconnections:

+
    +
  • The voice websocket will now automatically re-connect and re-do the handshake when disconnected.

  • +
  • The initial connect handshake will now retry up to 5 times so you no longer get as many asyncio.TimeoutError.

  • +
  • Audio will now stop and resume when a disconnect is found.

    +
      +
    • This includes changing voice regions etc.

    • +
    +
  • +
+
+
+

Waiting For Events

+

Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different +functions, Client.wait_for_message and Client.wait_for_reaction. One problem with one such approach is that it did +not allow you to wait for events outside of the ones provided by the library.

+

In v1.0 the concept of waiting for another event has been generalised to work with any event as Client.wait_for().

+

For example, to wait for a message:

+
# before
+msg = await client.wait_for_message(author=message.author, channel=message.channel)
+
+# after
+def pred(m):
+    return m.author == message.author and m.channel == message.channel
+
+msg = await client.wait_for('message', check=pred)
+
+
+

To facilitate multiple returns, Client.wait_for() returns either a single argument, no arguments, or a tuple of +arguments.

+

For example, to wait for a reaction:

+
reaction, user = await client.wait_for('reaction_add', check=lambda r, u: u.id == 176995180300206080)
+
+# use user and reaction
+
+
+

Since this function now can return multiple arguments, the timeout parameter will now raise a asyncio.TimeoutError +when reached instead of setting the return to None. For example:

+
def pred(m):
+    return m.author == message.author and m.channel == message.channel
+
+try:
+
+    msg = await client.wait_for('message', check=pred, timeout=60.0)
+except asyncio.TimeoutError:
+    await channel.send('You took too long...')
+else:
+    await channel.send('You said {0.content}, {0.author}.'.format(msg))
+
+
+
+
+

Upgraded Dependencies

+

Following v1.0 of the library, we’ve updated our requirements to aiohttp v2.0 or higher.

+

Since this is a backwards incompatible change, it is recommended that you see the +changes +and the Migration to 2.x pages for details on the breaking changes in +aiohttp.

+

Of the most significant for common users is the removal of helper functions such as:

+
    +
  • aiohttp.get

  • +
  • aiohttp.post

  • +
  • aiohttp.delete

  • +
  • aiohttp.patch

  • +
  • aiohttp.head

  • +
  • aiohttp.put

  • +
  • aiohttp.request

  • +
+

It is recommended that you create a session instead:

+
async with aiohttp.ClientSession() as sess:
+    async with sess.get('url') as resp:
+        # work with resp
+
+
+

Since it is better to not create a session for every request, you should store it in a variable and then call +session.close on it when it needs to be disposed.

+
+
+

Sharding

+

The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen.

+

If using a Bot account and you want to shard your bot in a single process then you can use the AutoShardedClient.

+

This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC.

+

It should be noted that the sharded client does not support user accounts. This is due to the changes in connection +logic and state handling.

+

Usage is as simple as doing:

+
client = discord.AutoShardedClient()
+
+
+

instead of using Client.

+

This will launch as many shards as your bot needs using the /gateway/bot endpoint, which allocates about 1000 guilds +per shard.

+

If you want more control over the sharding you can specify shard_count and shard_ids.

+
# launch 10 shards regardless
+client = discord.AutoShardedClient(shard_count=10)
+
+# launch specific shard IDs in this process
+client = discord.AutoShardedClient(shard_count=10, shard_ids=(1, 2, 5, 6))
+
+
+

For users of the command extension, there is also AutoShardedBot which behaves similarly.

+
+
+

Connection Improvements

+

In v1.0, the auto reconnection logic has been powered up significantly.

+

Client.connect() has gained a new keyword argument, reconnect that defaults to True which controls +the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going +offline or Discord going offline with exponential back-off.

+

Client.run() and Client.start() gains this keyword argument as well, but for most cases you will not +need to specify it unless turning it off.

+
+
+

Command Extension Changes

+

Due to the Models are Stateful changes, some of the design of the extension module had to +undergo some design changes as well.

+
+

Context Changes

+

In v1.0, the Context has received a lot of changes with how it’s retrieved and used.

+

The biggest change is that pass_context=True no longer exists, Context is always passed. Ergo:

+
# before
+@bot.command()
+async def foo():
+    await bot.say('Hello')
+
+# after
+@bot.command()
+async def foo(ctx):
+    await ctx.send('Hello')
+
+
+

The reason for this is because Context now meets the requirements of abc.Messageable. This +makes it have similar functionality to TextChannel or DMChannel. Using send() +will either DM the user in a DM context or send a message in the channel it was in, similar to the old bot.say +functionality. The old helpers have been removed in favour of the new abc.Messageable interface. See +Removed Helpers for more information.

+

Since the Context is now passed by default, several shortcuts have been added:

+

New Shortcuts

+
    +
  • ctx.author is a shortcut for ctx.message.author.

  • +
  • ctx.guild is a shortcut for ctx.message.guild.

  • +
  • ctx.channel is a shortcut for ctx.message.channel.

  • +
  • ctx.me is a shortcut for ctx.message.guild.me or ctx.bot.user.

  • +
  • ctx.voice_client is a shortcut for ctx.message.guild.voice_client.

  • +
+

New Functionality

+ +
+

Subclassing Context

+

In v1.0, there is now the ability to subclass Context and use it instead of the default +provided one.

+

For example, if you want to add some functionality to the context:

+
class MyContext(commands.Context):
+    @property
+    def secret(self):
+        return 'my secret here'
+
+
+

Then you can use get_context() inside on_message() with combination with +invoke() to use your custom context:

+
class MyBot(commands.Bot):
+    async def on_message(self, message):
+        ctx = await self.get_context(message, cls=MyContext)
+        await self.invoke(ctx)
+
+
+

Now inside your commands you will have access to your custom context:

+
@bot.command()
+async def secret(ctx):
+    await ctx.send(ctx.secret)
+
+
+
+
+

Removed Helpers

+

With the new Context changes, a lot of message sending helpers have been removed.

+

For a full list of changes, see below:

+
++++ + + + + + + + + + + + + + + + + + + + + +

Before

After

Bot.say

Context.send()

Bot.upload

Context.send()

Bot.whisper

ctx.author.send

Bot.type

Context.typing() or Context.trigger_typing()

Bot.reply

No replacement.

+
+
+
+

Command Changes

+

As mentioned earlier, the first command change is that pass_context=True no longer +exists, so there is no need to pass this as a parameter.

+

Another change is the removal of no_pm=True. Instead, use the new guild_only() built-in +check.

+

The commands attribute of Bot and Group have been changed from a +dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use all_commands instead.

+

Command instances have gained new attributes and properties:

+
    +
  1. signature to get the signature of the command.

  2. +
  3. usage, an attribute to override the default signature.

  4. +
  5. root_parent to get the root parent group of a subcommand.

  6. +
+

For Group and Bot the following changed:

+ +
+
+

Check Changes

+

Prior to v1.0, check()s could only be synchronous. As of v1.0 checks can now be coroutines.

+

Along with this change, a couple new checks were added.

+ +
+
+

Event Changes

+

All command extension events have changed.

+

Before:

+
on_command(command, ctx)
+on_command_completion(command, ctx)
+on_command_error(error, ctx)
+
+
+

After:

+
on_command(ctx)
+on_command_completion(ctx)
+on_command_error(ctx, error)
+
+
+

The extraneous command parameter in on_command() and on_command_completion() +have been removed. The Command instance was not kept up-to date so it was incorrect. In order to get +the up to date Command instance, use the Context.command +attribute.

+

The error handlers, either Command.error() or on_command_error(), +have been re-ordered to use the Context as its first parameter to be consistent with other events +and commands.

+
+
+

HelpFormatter and Help Command Changes

+

The HelpFormatter class has been removed. It has been replaced with a HelpCommand class. This class now stores all the command handling and processing of the help command.

+

The help command is now stored in the Bot.help_command attribute. As an added extension, you can disable the help command completely by assigning the attribute to None or passing it at __init__ as help_command=None.

+

The new interface allows the help command to be customised through special methods that can be overridden.

+ +

Certain subclasses can implement more customisable methods.

+

The old HelpFormatter was replaced with DefaultHelpCommand, which implements all of the logic of the old help command. The customisable methods can be found in the accompanying documentation.

+

The library now provides a new more minimalistic HelpCommand implementation that doesn’t take as much space, MinimalHelpCommand. The customisable methods can also be found in the accompanying documentation.

+

A frequent request was if you could associate a help command with a cog. The new design allows for dynamically changing of cog through binding it to the HelpCommand.cog attribute. After this assignment the help command will pretend to be part of the cog and everything should work as expected. When the cog is unloaded then the help command will be “unbound” from the cog.

+

For example, to implement a HelpCommand in a cog, the following snippet can be used.

+
class MyHelpCommand(commands.MinimalHelpCommand):
+    def get_command_signature(self, command):
+        return '{0.clean_prefix}{1.qualified_name} {1.signature}'.format(self, command)
+
+class MyCog(commands.Cog):
+    def __init__(self, bot):
+        self._original_help_command = bot.help_command
+        bot.help_command = MyHelpCommand()
+        bot.help_command.cog = self
+
+    def cog_unload(self):
+        self.bot.help_command = self._original_help_command
+
+
+

For more information, check out the relevant documentation.

+
+
+

Cog Changes

+

Cogs have completely been revamped. They are documented in Cogs as well.

+

Cogs are now required to have a base class, Cog for future proofing purposes. This comes with special methods to customise some behaviour.

+ +

Those that were using listeners, such as on_message inside a cog will now have to explicitly mark them as such using the commands.Cog.listener() decorator.

+

Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, commands.CogMeta.

+

An example cog with every special method registered and a custom name is as follows:

+
class MyCog(commands.Cog, name='Example Cog'):
+    def cog_unload(self):
+        print('cleanup goes here')
+
+    def bot_check(self, ctx):
+        print('bot check')
+        return True
+
+    def bot_check_once(self, ctx):
+        print('bot check once')
+        return True
+
+    async def cog_check(self, ctx):
+        print('cog local check')
+        return await ctx.bot.is_owner(ctx.author)
+
+    async def cog_command_error(self, ctx, error):
+        print('Error in {0.command.qualified_name}: {1}'.format(ctx, error))
+
+    async def cog_before_invoke(self, ctx):
+        print('cog local before: {0.command.qualified_name}'.format(ctx))
+
+    async def cog_after_invoke(self, ctx):
+        print('cog local after: {0.command.qualified_name}'.format(ctx))
+
+    @commands.Cog.listener()
+    async def on_message(self, message):
+        pass
+
+
+
+
+

Before and After Invocation Hooks

+

Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is +run.

+

They take a single parameter, Context and they must be a coroutine.

+

They are on a global, per-cog, or per-command basis.

+

Basically:

+
# global hooks:
+
+@bot.before_invoke
+async def before_any_command(ctx):
+    # do something before a command is called
+    pass
+
+@bot.after_invoke
+async def after_any_command(ctx):
+    # do something after a command is called
+    pass
+
+
+

The after invocation is hook always called, regardless of an error in the command. This makes it ideal for some error +handling or clean up of certain resources such a database connection.

+

The per-command registration is as follows:

+
@bot.command()
+async def foo(ctx):
+    await ctx.send('foo')
+
+@foo.before_invoke
+async def before_foo_command(ctx):
+    # do something before the foo command is called
+    pass
+
+@foo.after_invoke
+async def after_foo_command(ctx):
+    # do something after the foo command is called
+    pass
+
+
+

The special cog method for these is Cog.cog_before_invoke() and Cog.cog_after_invoke(), e.g.:

+
class MyCog(commands.Cog):
+    async def cog_before_invoke(self, ctx):
+        ctx.secret_cog_data = 'foo'
+
+    async def cog_after_invoke(self, ctx):
+        print('{0.command} is done...'.format(ctx))
+
+    @commands.command()
+    async def foo(self, ctx):
+        await ctx.send(ctx.secret_cog_data)
+
+
+

To check if a command failed in the after invocation hook, you can use +Context.command_failed.

+

The invocation order is as follows:

+
    +
  1. Command local before invocation hook

  2. +
  3. Cog local before invocation hook

  4. +
  5. Global before invocation hook

  6. +
  7. The actual command

  8. +
  9. Command local after invocation hook

  10. +
  11. Cog local after invocation hook

  12. +
  13. Global after invocation hook

  14. +
+
+
+

Converter Changes

+

Prior to v1.0, a converter was a type hint that could be a callable that could be invoked +with a singular argument denoting the argument passed by the user as a string.

+

This system was eventually expanded to support a Converter system to +allow plugging in the Context and do more complicated conversions such +as the built-in “discord” converters.

+

In v1.0 this converter system was revamped to allow instances of Converter derived +classes to be passed. For consistency, the convert() method was changed to +always be a coroutine and will now take the two arguments as parameters.

+

Essentially, before:

+
class MyConverter(commands.Converter):
+    def convert(self):
+        return self.ctx.message.server.me
+
+
+

After:

+
class MyConverter(commands.Converter):
+    async def convert(self, ctx, argument):
+        return ctx.me
+
+
+

The command framework also got a couple new converters:

+ +
+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/migrating_to_async.html b/docs/Python/html/migrating_to_async.html new file mode 100644 index 00000000..b9b57e42 --- /dev/null +++ b/docs/Python/html/migrating_to_async.html @@ -0,0 +1,457 @@ + + + + + + Migrating to v0.10.0 + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

Migrating to v0.10.0

+

v0.10.0 is one of the biggest breaking changes in the library due to massive +fundamental changes in how the library operates.

+

The biggest major change is that the library has dropped support to all versions prior to +Python 3.4.2. This was made to support asyncio, in which more detail can be seen +in the corresponding issue. To reiterate this, the implication is that +python version 2.7 and 3.3 are no longer supported.

+

Below are all the other major changes from v0.9.0 to v0.10.0.

+
+

Event Registration

+

All events before were registered using Client.event(). While this is still +possible, the events must be decorated with @asyncio.coroutine.

+

Before:

+
@client.event
+def on_message(message):
+    pass
+
+
+

After:

+
@client.event
+@asyncio.coroutine
+def on_message(message):
+    pass
+
+
+

Or in Python 3.5+:

+
@client.event
+async def on_message(message):
+    pass
+
+
+

Because there is a lot of typing, a utility decorator (Client.async_event()) is provided +for easier registration. For example:

+
@client.async_event
+def on_message(message):
+    pass
+
+
+

Be aware however, that this is still a coroutine and your other functions that are coroutines must +be decorated with @asyncio.coroutine or be async def.

+
+
+

Event Changes

+

Some events in v0.9.0 were considered pretty useless due to having no separate states. The main +events that were changed were the _update events since previously they had no context on what +was changed.

+

Before:

+
def on_channel_update(channel): pass
+def on_member_update(member): pass
+def on_status(member): pass
+def on_server_role_update(role): pass
+def on_voice_state_update(member): pass
+def on_socket_raw_send(payload, is_binary): pass
+
+
+

After:

+
def on_channel_update(before, after): pass
+def on_member_update(before, after): pass
+def on_server_role_update(before, after): pass
+def on_voice_state_update(before, after): pass
+def on_socket_raw_send(payload): pass
+
+
+

Note that on_status was removed. If you want its functionality, use on_member_update(). +See Event Reference for more information. Other removed events include on_socket_closed, on_socket_receive, and on_socket_opened.

+
+
+

Coroutines

+

The biggest change that the library went through is that almost every function in Client +was changed to be a coroutine. Functions +that are marked as a coroutine in the documentation must be awaited from or yielded from in order +for the computation to be done. For example…

+

Before:

+
client.send_message(message.channel, 'Hello')
+
+
+

After:

+
yield from client.send_message(message.channel, 'Hello')
+
+# or in python 3.5+
+await client.send_message(message.channel, 'Hello')
+
+
+

In order for you to yield from or await a coroutine then your function must be decorated +with @asyncio.coroutine or async def.

+
+
+

Iterables

+

For performance reasons, many of the internal data structures were changed into a dictionary to support faster +lookup. As a consequence, this meant that some lists that were exposed via the API have changed into iterables +and not sequences. In short, this means that certain attributes now only support iteration and not any of the +sequence functions.

+

The affected attributes are as follows:

+ +

Some examples of previously valid behaviour that is now invalid

+
if client.servers[0].name == "test":
+    # do something
+
+
+

Since they are no longer lists, they no longer support indexing or any operation other than iterating. +In order to get the old behaviour you should explicitly cast it to a list.

+
servers = list(client.servers)
+# work with servers
+
+
+
+

Warning

+

Due to internal changes of the structure, the order you receive the data in +is not in a guaranteed order.

+
+
+
+

Enumerations

+

Due to dropping support for versions lower than Python 3.4.2, the library can now use +enum — Support for enumerations in places where it makes sense.

+

The common places where this was changed was in the server region, member status, and channel type.

+

Before:

+
server.region == 'us-west'
+member.status == 'online'
+channel.type == 'text'
+
+
+

After:

+
server.region == discord.ServerRegion.us_west
+member.status = discord.Status.online
+channel.type == discord.ChannelType.text
+
+
+

The main reason for this change was to reduce the use of finicky strings in the API as this +could give users a false sense of power. More information can be found in the Enumerations page.

+
+
+

Properties

+

A lot of function calls that returned constant values were changed into Python properties for ease of use +in format strings.

+

The following functions were changed into properties:

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Before

After

User.avatar_url()

User.avatar_url

User.mention()

User.mention

Channel.mention()

Channel.mention

Channel.is_default_channel()

Channel.is_default

Role.is_everyone()

Role.is_everyone

Server.get_default_role()

Server.default_role

Server.icon_url()

Server.icon_url

Server.get_default_channel()

Server.default_channel

Message.get_raw_mentions()

Message.raw_mentions

Message.get_raw_channel_mentions()

Message.raw_channel_mentions

+
+
+

Member Management

+

Functions that involved banning and kicking were changed.

+
++++ + + + + + + + + + + + +

Before

After

Client.ban(server, user)

Client.ban(member)

Client.kick(server, user)

Client.kick(member)

+
+
+

Renamed Functions

+

Functions have been renamed.

+
++++ + + + + + + + + +

Before

After

Client.set_channel_permissions

Client.edit_channel_permissions()

+

All the Permissions related attributes have been renamed and the can_ prefix has been +dropped. So for example, can_manage_messages has become manage_messages.

+
+
+

Forced Keyword Arguments

+

Since 3.0+ of Python, we can now force questions to take in forced keyword arguments. A keyword argument is when you +explicitly specify the name of the variable and assign to it, for example: foo(name='test'). Due to this support, +some functions in the library were changed to force things to take said keyword arguments. This is to reduce errors of +knowing the argument order and the issues that could arise from them.

+

The following parameters are now exclusively keyword arguments:

+
    +
  • +
    Client.send_message()
      +
    • tts

    • +
    +
    +
    +
  • +
  • +
    Client.logs_from()
      +
    • before

    • +
    • after

    • +
    +
    +
    +
  • +
  • +
    Client.edit_channel_permissions()
      +
    • allow

    • +
    • deny

    • +
    +
    +
    +
  • +
+

In the documentation you can tell if a function parameter is a forced keyword argument if it is after \*, +in the function signature.

+
+
+

Running the Client

+

In earlier versions of discord.py, client.run() was a blocking call to the main thread +that called it. In v0.10.0 it is still a blocking call but it handles the event loop for you. +However, in order to do that you must pass in your credentials to Client.run().

+

Basically, before:

+
client.login('token')
+client.run()
+
+
+

After:

+
client.run('token')
+
+
+
+

Warning

+

Like in the older Client.run function, the newer one must be the one of +the last functions to call. This is because the function is blocking. Registering +events or doing anything after Client.run() will not execute until the function +returns.

+
+

This is a utility function that abstracts the event loop for you. There’s no need for +the run call to be blocking and out of your control. Indeed, if you want control of the +event loop then doing so is quite straightforward:

+
import discord
+import asyncio
+
+client = discord.Client()
+
+@asyncio.coroutine
+def main_task():
+    yield from client.login('token')
+    yield from client.connect()
+
+loop = asyncio.get_event_loop()
+try:
+    loop.run_until_complete(main_task())
+except:
+    loop.run_until_complete(client.logout())
+finally:
+    loop.close()
+
+
+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/objects.inv b/docs/Python/html/objects.inv new file mode 100644 index 0000000000000000000000000000000000000000..d5b57e08d2ca600369addec481a71549123a1721 GIT binary patch literal 18639 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�hH)!3$SQ+S%AX63m1ZLt7d>vv*LwXC2Y^}G5G%Gqws0krm!rgImmv* z5RGyr29VyHDCvd8c@zT()u|YQvEzCK!fA4L>+KN@Qs!2ayO1W4+~j=11B#MJ*rFf{ zQdWv1x^y;gH&PTCwb;w!i(&He4$s0NRR~;otd+iI{$)!{xvV@gN0G&ti&rLww}1Q? zrHv4!?GUJk&^%$>Jz@(mm#N5&7Q*nCK0>(33xmA<5kPsEc!+>>`vC%kn4@8YMc(}g zQ22{TBN!zOL;xiwfAFzr%SU74lQxHV_Z_iXac&V`n$|HbhWNdy&TEUBNgs`C2b{xa zkTtLExEuqL1jXJ~vk?8<6>)VKE@&cKj;Zeht~>JzQGvhVX5kysXB&ot8ZlkNBnbkW z1i~^-yjMB{k~9=)pm-3X8uPJYFhoVYlMN3cj{5+FSH)Gi_JG}G*MRcn46pflGX~R?wnTyOAoy@H_`=R3h~S(bZ0}SEHdKGPm7T)A?qu? zs#sTo7KViQlqj_UOqG2-&@OxDpm zZE)3~IcqdTb%6tG8f6#|ZdmnDlk%W@1e4CaRERI`lt4yBm4(sGhXqfII5 zLc9EQ0ItG+cVPY!l@gNvTLAX7&5Dm72f)E3D-XoZ;s^aA5yYJWJ+qgObE_)}XmW)R zZ5!W)LVnfhV+cr90S?@y{+&r;*&Zk$-6RuB3vI1Oz>m$5Oi#R z05cC=(Q)_`qf;2kXmQ9G49#kDD0J+{zrK9=M2n~m5cmr-O<45Gik4lUml@&iKCB6r`A3hcK^IAwmTR3D)liY_7DWD5G zz{s=s0uB0Uza@OJ1--HDcCtI86UZ-6kouWD)L;ExN)B%A;RZhly8~TpDR#vNNl-O>-JLRNS|X_^SB3<~?EvYM_P%*3XL9>eRFU3z zp25YaEb=y|gUn&FX!wy=l-smEi9UqgMsX03c>tM%+y|mB3rs*UZ5#pdnuCPf)}EtW z`;^8ZZEAdAE1p>*gxD%;w zLTbtEIm{-`gjDXkQwXRZ%p|7q%!$2Fo4Bfo(YxFGnRm!&f>o#NIbPg1$L?&EA*LdY z`N^6g7{3@lznZCv* ziApG*Hx1xO>&yu2zZwcZ1V-RzsUCuUzuRIOb`ejERCDv>a7KMZG(;23BOgXEkPM9U z?79UZ?{PY5T8n?_A8bZU4@P(g^FmR;z=>*e%OYDf{LXY-S3OnY8K>|UNDKcy=VfQ! z_gS4SKlbOQH=DzVkuz9NVI2*pvrKX12M$qJilU;x#!NZ{Iw!LQppK3QS!AG)1BjL& zP5pf2??!kNCqQ5W@hym+nY#zdr&iP%K5xGRj?;PLal}mCBOo@5w}X*_Lo5ilrL@At zi=P&Sk9Ktcv{~Q-=hqVKU)VdFO{gD7z)v$q> z4nn;6>|iu;WbB-k?jMar*5R2wk~`L0c((Ap>%j=?cL3ndq$eny|HON_iU>EeI$@Z4 zSlpT51cpC-n?lj=eqtTy&h_ov_gHdc;j_Vcz19#GMcnW8xVBX-aYiRE=y81}I5dRf zHX3KQ^xrkbgCSjzyFW-qHW6PT#7P3sc{PbOjH#Qwz>K_L6~gfQ9@@DP?Xbv~CKpM& zNNCO6TMuXiWjEmGPQ{DEL*{PD#kJO7-MP+?9xI2j<1S-x1=`Nc=rTqPS~dUEW@9iU z@r|H_@k^71fC*{tbKrD<@wjQ?0)l9uzD6F0CWXojD4PbDh%&Y^d5UdVU0w;|(XBxW zMe9NK-b%#03{PA5O^K^tOI$I~-gF1(D$@9}p-CBSI>Q>bgRokUgp@Tr!9v%xV>P^J z)Z`@{ddj7@cG9r$vg?*&OVKrZ)}JJs#WjYftKsxdX7sht5OmFv*uCjix`uuBM+ByG z^nlT0?}SCqqoBp2P4I`DEARmluw?8jm$b3!@xXSB;K3ZhNx@zdbcES3fL&LORjzue zC@-`=jtWokWTQh9e2%@{XwyLMdZUj0%hb*CXyu`ouc#G`V?q+F? z7|~^BK}bspoynV+i@O&m%>4@UhbX%<`_klM_nm-UH-{Bm=v3aY;up&ko`l{v#S2z5U@2^=c)C_gau#bq0SekloZ`8;b zIOU$`2&z_$v&_UHldQSG4Xwx;=oA^(?1_;|fqNXq7pA?D5+G?aQ~=d`QZ-2+2AmJ$ z5v2sT2`PW=7~NGI0+6HN)KNfrpd^6c-VX^N$X&U`m{3h@-u*dHTz?5EXdNKL5@LB~ z@zie_qS3C?0FBFuK7|lMD`&tPK2%(`+!+c|{?!>gaj^@aMXb`eE<(-wH3N=JsAQS2 zkqMzVG1g!Nrkv-Gp~Um`n{Y|T$BYi@k@g6NJJ}wAbnGe_g+F{A0eKXP;vgPDQAbN- z4E8v7gd?9gPVlIM#}SHlsy6~7&)!0m%PU5h2LM8ilb&ISdX##G2OXw7gN^FK8i|WX zodMzkD`$Yzc*Z#jqD?ZwQq=xwPIig*V~8Sto)MV3Hd{E!0`oCc3nauAu|*}+v%dxK zn=&7s8_aFe8H|1IF6Wrd+zgz^W1w+PB znCzDN3LO4gnooic77kFHJ!k#Xt#NRYXL}5G0eF%hPZ3Lhe;aY7>!`he+C?2%VUvP> zR+ABLkV*3v(ZOpc>*dxviQgq_Z~^=ydE~}(1bXa_*{Q3rNs^Y~=9C2)mN%xczt8rp zX?37xI4P0&Sl*OZu()f{#8%C4n1du$phwYW1ym87S5btgYt0}Wx7dcx9`iECUJ$y$ z(&S(nZD!$R$)k${{_QHVIo0BIIK(0QtA1o?tCl=`GORJ0Fb9v3UN_uKKBTJn~cc6!cH= z*`9^m>p#)oVg?q`hI1_VcczvI;7@#p$pseb$C%?F+?QEoNbo&%UhxQuw-Aw|gA&Qz zVg%jLHO5R)-D6A=`*FuS@t?;q#Wib^7ERC&kxlSLhbW-y?ukcK+DB7s>tks{*+&uw zpAUULAzvQ&%#d$^I6)I_x4usw5d>yilEdGY}}+4#zjkNQT!p97C#9tTf8_YP{Wy_l>At^5IjWb z6$bXV=FF+UgS=aVH~CW`10sSS2YM7Dx#%{Iav)x zNRD=nYeb7pMFrAdFkV?F2)UUvLVwqom<@7|jp+LhNbb%K7}KR6)YP?aKeDP@ZOlP* zXO|~rt9U^5EBvFN9uBhlYlodABY72x6g56N&V$uuzGo*<&oNjh{g4GN&;ZAmIs z+vNKvVyO&<*dLw4Z&e1V(7gccZLT+> z<<;GgA(fuAQxA|fOq5s0AX1d1y=nJZ!;VqzgH>lV-yf1OW3^VfOE2!EM}#`~|}GV+HojAdmq9Uh9cjG41Oa5lT&`Uf3kcljl6bKJbC{=Fa{zscxD<5^L>sB z)CSA!vnYC33)U^f-G>?%`;9j)#aI5_C&bIc>x{VC^Pf>&vnMxpriCNlgv)EAos z>Skkt5IX;_5iZc$ca%J98i1aZw6u6ex_$@gj8OcK{RPL>CN!d+F+)(W!)6ZgAn>b( ztL~0Y#N&aaGr=EJJn6GqOpDE7HejHD53YR3Z`NbL%fM>v^Fnh3#*K%?pTYLW zl++0B_SlG>0bv}p{W5raCLY1id(RMu?u{0NU0^%_?dYTj;?|>H9PS?SroGaX5IVX= zkZqL#iE=IU;wD)i{j(yCltErH?1cZd#U8MDvb((5pZG=9#LEM@)&>JwO|}wOp8-QT z(V4^H7ab2vJNmS-n5YL*#so3li86~0DD*ol0jN9Y6?tGrOa$n|!2l$) ziakewPzQ=WNX^=T?}*YGJ~n2KBwSnwVdx{!0ERjN^$`SXzyo2=KYbAG_;VhKJHPa? zlGr12eJWJ&C(FmpQ)uKzmhBH*;15GfDh*m zP{aqJ0xa?bV}v2=@zdh3p!$XCwh61n^kX~DiHG5J=5E$4+gH)0~mG? z{VowL4?_BULk&)J{+KbSBcRYhJz5-phr@^?&&#wht-8c|TK8pfUhjyWJl18YA-%7X z)}-_ULI|Eq26WB{VO$zQw0AWIZGdWN!l!=YmPih`qoCc~ixP{S(;@|(!^3=u9fC$34h?M9@dp1AUlkTCOZBO)g zFVN&N>ngp1fyq_1w5LR3ALZHl9M9H=coICpGf`y}WekkIDeCZEkm8ys`HZASp@vW!x-J9H&3EcFk_n1hXS@P$dK^#UNpk2(v) zZaqRUHC`b^;{p~!3^ui1h@!<+A6@L>~@K>KjYtqmVXNv7@N)b_F#ylTk`(HDb!5ai-E zrNms+86oSulQFO|zoNFRJ}&a>l|t0ymek&IV@u%+s2hU_vCeWlqG7T-6Se4f!r^IU zkwG3L)>7emN}^d&7OI1Rsh>=?=9A%zh`;0HqujO&Rklx!XvJP2jb10MA7QFGY;^`0 zY2xT%tajW@fxK7YBOjamzj;Z9 z72RXb$tc!kaOlwFWeoHgz2gmV(5K0;Lz7oehpwS3Jc;V~B#;;MeITz2o|933<#k?> zQEF3G2s*6k)C5Q`qf|>=UW}-bpKXRmPhn& zh0_&{0Y(j|3$L^I=?2iTRkc`Jsd2Z)2GL!9cp|dX?P3EfSbm^l&K<>ZWH2^;H{7eS z*}Jia-X4i$w`MTA z`(Zcda*+QS%x&x{ItGy9Zl+*r_{@|67eX_|(E?%?@Yv~Y0>|3z6Ci$XG=ZWcS0+fp z#4*L9B2gwV^b9aT(jroBz;SUU69RH%%1s7*bjp;5VgXLju=`8&)Z@uheMVzA z`ohB)h`R_dM&W!SV-z)Ve}X6AKAFq7l!-lr>j_FQZo#1a>;Nkf#eL++fI$_ zGmdK{JHz&~ZHr|NEir?%?~C6CJE1xJH1+!|LoeoW)N0%x#O}VXKd8S~zKRu^!ao_$ zFN$R(>ybe=`rSSJxl#@-;sHB2dML$F?(X5Azlh_zs%_T#SRgvE*^TP%t+hWV^W1Fr z7zt15e)@% zv4YD%@w|h-ZnvNj@sZ*$u70cjTmyoL2ZVx3J5Jtxg%rcKJy`$4^1vDZQ%2+5Q2+O~ zf8}_Ea*UX8{$ze66mx=D;(X9?lJDGSL$Ugp3GaK+Jo2Joh(Zpc6PBOVI{2Jle--U} z(N%~>90Mkd|N8Rf6QKb^@d+C|t<&UYmSa-Q1O?_x&!T3yFL}v}`{vl4?Hsp88v>RX ze*(W8mQ4#!n3SEvtM@rCI};Chn<|i=aQ!Mis$~~mBbDn^zVHkawwo;X57=7rk{wwA zUrEjDpV{9XZ!n*A8R}{ACrtOHlsyE|l{2FcHERZxT`L|=d82yN8xb5B6N%pB3q3D} z>5UNOw_)4m9<9G^q|+LECtWc^zJvvZd(Y{L>9g(NaAA7^KWGPTx*~>r30v|P4ij<0 zt~nyKlS=Y}?n?9XH(;*wW*VwVr~SQBO_;7-13EYbR)$B*QnYNyoa%dptV!B*+iWh{ zAPm9t$i*-faQ@ErVMh2^B5_PZ({GZtQk7h)<$ILAERyTO+4E+e1LU3I)kQq9&0IQK zt;no*Rwn2SLlE8U+4M%rN$S|GeAc13r4b+5K^dW{XwZmGG+b%AmEr0iV{G~UNm)H`!#`0mWver5SL*Ks z6TIWp#Y{uidXLU+XPab4j%J#B{wbcUzsazL3vvuAQ#SK&I;7y6%kUpbmuTc`s_k1O zLz83;H&j)t{v!nybB8utiIU8YGmkI0^X$#Ez0I?gDeX*V7?aFnK$T+NIYPX_W|FzA zyb(MnR@VO5*=X=^b2hNOTxqt7kT9t~pxj8*KYFl{2h!7C6YxAMDz%>KoM784IG?d8 zhDiIDHWx?aMb;av+u4qMGs*C}#;_^dI9ldn3bqtc@ulHec&}pvRf^`S;r<2mu2y>< z6U;KTs5|KSW^iw|jO@!hf#J5XfQ{IzeiwAQZ6!2(vdrZv8EeDRj#v8xN)oS^&eap+I`>sG=xZ#G-_!@aX@qud&(NthZ)ex%P- zlDQ$<=9*}N1f~=wbXTRFaAvX#MzSRMh9)bYiGxi*_nh-~as?`ur>k0CrZHik^YSUx z3iJ`~M^(rB>iSufZ0m{qm~VGBKMofpw+$%E{wciIm88TTXJ6{k{jnrvPuk3rHr`sy z4icx16Q)Fy1ea@*6l*CRTRfq?f}f6X_J(Ub-SA{u8os2xWHwC@k!^IR<*f_i+0X-* zC|!immO0aM&c~E)WlI&qHqd@n3y$+tCMl;QOjlI3RZ+{uY}D{pHgj?>(-tvJG?*q$ zRB3VCGFZeBZjNr>GX_MPqa}b%Z9TJ8QBIC8SwM{=Oww+eD3wFY5gJ>6E7Ry)Ki;GU zGVi=eZY>yaIVZqoGI#(@H+-gMx}s#8KR^oi1n}s`C-g&BGgqx6_>yfN6xl~+Zj8jw zJiyRL|G;dzd0Mrc>7r2_Wyq%l2?+o+T(vnwa9A zEZJIO`AVKkw!O<5wuCE_C2Tl5Bq|(y(Z_t6pDLQJ$~HP)d#WTRo+E>YEHWLKFSpLM zmQfs2l}#<_Db@hTCdxuQSI*^W?wTblYJE-dZBx$ThLKgUc_~t{Z8y~{(bu-gQ*~l^ z<`6z89QUQ`FvfJVou*;nkk(x%MfDR~UzU`Wb)ptM^;eb?knv*$^Su7#sVMcDQDm}v zOcRmP6U$5=wVThL;;W2;0TPuniE(DAgr06PZ|X@kF3pfkN|tDmO1sH0oT-kY2R?mk zI=kd*wX&(<@-k6t!flf_X+KwtZ3aP0`E#l=3ejdmAKLzf{t_8vrmWM^h3$_?KdiX8XKgKpO5yz zXa+c)k!cD8@2#Iilay>RGixO4Oy!obJc&M2k$Ibr1XcY8yVj8SnNQzN zjHG;ePB^2cS|@g1A5OqF$s`@ilOlZ5ku@w`H*Q#6CK*|i?AaT5GUun-Ox6!0HBO~W zHVxlM`W?%dj7jIBOS2&Q!K0fQ?SmI-tlEHW$a1v(^9H=h_FySaH+q+2%PE3eCQshen?Ozp{o=0Ft;7eTb7KANtUEPSdWdq3Yh7;fLmC9GGV0uQgiwC zgY+qxpUVnD($A_XH%_4oN_Yk7i&&8)Mr1~Z`#-hp<;C_B#~BU9IZJT#vrL?|C)Ej0 zVzbFVqXNco!DI_hGHkq^vB0h@4hR;n#5QN;47=$$>D#0dS)w@d8S*+m&Od*#omv}r zwM(>>u%Wfzo>ke_R10&|a3YZCve*p$GcPvp$bRBdAK`n`>;~&fC;m=hvxGz`3>VFq z$d?^(r3&4C_qEoKE<#>%HK+W$Q*%lRi+7RNWIoIO?!;z$;+?wycVFr|S-*&UlA}AG zG)*h`WGTGMJ>&b{OP8X2hV2^^Fx8f%r%g4O#(YWZu1J$~#`iX7bL4ym@I(QQhN@B~ zN1h;(%dqwM1Y~KhfN838{xwVBDAZgDI+f;u7XceyB;jhjtoQK_5}-=4<_0_|mfVmK z%;i3H?H0-u%K^OVm7>i8o)m5NbHiA1-BKc#)oBYpO`y0(wLMpbB})`@ZrGB=h#R^D zVc3o+X(C`tnk*RG@+AqNc3g@2N19Bvj%%BH(y(j}YBn@!qmT_}qI88mS=xYR%e*yD zouNq@6>TWZ#GwyHMb{>ZuCvt1LWK=qk^omjl`_25Fs2G_4cSul>~ztrmM>N0si8|0 zcWTMfM4cM4?LnM|C)p)SP4|(1<<(XLNs}ZsZ7d_C+fCyz^jN=zJz<%X);{6tZ3t7Y zaF#L2Vq~}yPgI69-C*(Fe^0Vin&V5dWzxjSN|?N8iTq>%S1PBoCVenz-;y=qm@ipN zTH=%qI-*R~u4zuLCr8#>4W#hscw_AA%sF(Dqyuxj{)Oo@l{dVVfSh#Qw%Io%?qkjq zHNkwIN$VOnFeX!xCpym`(}Js6^8Zd&)N#;knqj84gnpv* z?a6I|!~2H8t|S|$Vo$-HYKJ$&=|8fTf>s9_z{uDdNjf0~kJ&dMHC-V&vGJ88i0hv) zYa2RkfluN&OLDC|U>!n$ldluX9)d^hlBCin30Rea{=%>MeB=@a!P+xuKxH zig#7pTt5k3wJA2?zlu-hMX!&8H)a!E`zy^VaO)4t5p;B*jKn{FRNy+L|jlc6x4U!P{ z=2HB5fk&1ibHqR=yF&^({p_!IzsucF+5U3FP3}~Fh^dlobKfjqiW$%nC-glnFeWK% zu)h6PnZzO+`T`gUDe4^Xq^KznCi1lTRH?f61H5{jFzRQPFGV{(s3|FJL1*|<6!eSw zDPcM1=#muk1UEO6lrUsUSGYvOCL~KWaJ~rfF|V#}kGFN#Yw6y*3sZ@xQf%k~zDr(q zo1GiKSIk~gPIl{gj&hgcs`KwM%}H3mlVXej;fJd3lI%EvEYWcDsZtHLKOnnQ!bx?O zFU3b0-&Z?y)jqBnCwJ90P>FVT-?if5ls5${-Uu&6>fI9CEYpbPhQ19-ZZl_auSZQs zy(ef>yJ$9@fO70y+)kUEaC?pWc&v>S@Buc`=-Y`pda~M*u{YpJF@i%vCii*GvUA=% zB}g?La;wdCW)tQHL2bztxPZBDQTR@>tm6A8xDvLx)Z!Sv!bqDh0D7A_d})o$uHlOs z`q+dGgTW?IoFuTO7S+I)wb+Gj{n1#W;w8TIk}SRHMy+{BgV4KKBU;yz>xias#ImY& zA>#o}X-KlJbCk@0sLY_(wcNg_L{vIUhAcxG|tI)w>vz zNYgu}LFirbr&1MI`~S%Zgu}rgWYRTZUAhc!_Sc91G5C zn)Z-nRp*N1m!^B33{i%gK3!@V=EzpdaNAu=E5a<-dI^?1u|(w~npM3Eo-LZzkYrWo ziX(@nd!B5y3=3ONn(mNfQRk3DV$1Hpu*@anrW&mlzo@BU)0d2?It=`lic!ugs+kDj zRr*odhX@^pVL?%G&V)U+jQ_I5Rc)X7K13%D}0&kWgn4Yl`n?+#umUQ#1zPqym~yTa<;F`#G45!IRDAOh0Gi@4)osN$lJZA*!;#$$nP{I_ zfJM@^!mMY`r_!H(h~o)l1Ft6wi$5Ac7J-nHgM3hOgZOr#5a}$4hZwVjD}}g`uOa5_2Khm5COL>Y zy1^<=wnZcD&sHytM(HLv1=8*g$y-Czjn1etOejeOnO@Y~R0vInD?pmwhv<5%7bE$P5G_MnpE8*t~J$j7dxpcEyrzDgnL|Dk8XY9l|rrDA|jS#%641* z^3@*t$t`kmxpgrj=C}~6_U2^=qT(?ZO7+aeh$yv&=eElA>j}g&(mB4BBHRe>rytOI zOzUb>bgqDBL8ZHy5`W;OUl$s^)J5Obtg~-Es18XM^!1s>;~T^TvTr|^Oc!GR4Z`b_ zhSsMEtA~V4H{UQO`qZXOw-hJPh*fnfDI3+goG{%|Jd^)`YGycs1vOk|l{`Fe>j?0Q zi!;dLSs=^6e%NMjBWpSxrefxvjicrH#42}HffXsaG7;BiZ7!eW?iV2@PoU}l`A>LN z`Rf{Vm+5@tSvI*hLLq^q8vS~iwbz<$qtiFZN?WsN8hedwGtWM+_N?4Sq4sn~xY4F6 zcF8w#LC%p;bIWavdbG8DON|n8P^jj!bW<1(y?Z>G0+Q6hkDEwNqHE;F)=+ceBZJgU zrVDMYm!eZsS~Zt+l0tLlRoAkubyJ3Yo9XZo7c#wp%wE?@IEOS$w)xC;I0}bkYV|0# zHdKOgv>Ruzmd`$3hNN)Q!f1uMi9V=7ynD}$b=ey&6FWsqcqqN^xUcJy?{&B8x4z31 z6X`MC2OX!n!s3L+V0&i*oc)NhOr)oD+QEXN@+8MJpSnj?XV_^Xn8w0mvWKf|+1Yv> z5qvZ91Et>Zm_wx7EJkDi!qRv&bBT^n`Y`-_n`k7vz=)=!aoz9tYMJ;3LN*iCz% zYmG?DOt97kY_EiwF|{(B=McAf5yNpte&9UoY0b`Vm>F=2)%O)1+I+2@JUO4k+z{X0 zm!)`S#YgYP_>F~OB<%C)Ub4GyTQyam+1dd1;=8s99G7|R@q}$KDqZ=vO>4z$U>RjHtT0*)qpW7 z5z_jf6hOcKLCBi7Vg3@lA_0u8jD=_iWPVYbDi=bFM!5tHd$k6%aZu8y386KwWHvmj zO2$V(863n#DfQRb7(AsDXh1|K0AFv+x74_Z52?x0tRX7mV~>ycfgp($oevAXaef8dSq8 z-fHcp)ulEe02}7tF#`$Q1bKmof)?N5>nC;ty+U2+qMQqsft68DkRkE-)8Ir zClbyLjK`VYx@Y_n0fc8KEgS`8nwhy z`u?xF%&)B3-FF2S529<t!cg zIF_6EKSZe(z%NZ+Nq9GK&4)UR7A zj42_Z_x)i-*ZLmF>7K{!z*+4I8nHjAHM(IHYNOwSv|AMvNxY^*qdJ^-qJl$tM`Kz4 z!~+s4!3SFBt*YZFq;?H=;1!prQ8@1!sD}HU(q-Pn!TgW{Gy=jsMMuzL!*6LlV-l5m zQ`##Nx*I*`99N0Qeo0^R_w>ROGhoh$7_5bW0orM|ZV0+XD!|Hqu|O2n2u~K61!Yz& zV1S8aG({|+wUCFE@Kk`_c0lOpZMY{lVpzwHQ7uA4 zpqc~P8kQ(p-ssUh;-AdhNbV6$^s6fY&?35EIcMs|h zRM~vNbuLs1XXHI*UZ}}t_ox1ArKUz^0gLJ@q38k=W|JRC-hHS3|AlOe|0=}Z7k_d8 z>BEaYqSa~hB^{rZehWvrU=Zdn;5jxMvhQGbiuEq<3f|t8;wUwX*-YOB;~q`}+84iw zE>@Zp&Z*z^p$&Zfnnf>Vf1+GuR^>ekr^$Kl(;G-(ma-SIb4hY|Yu)b9Qo#cOs zu7O(hj2+LOc)Ri;I(`R2&>Fvgc=11Z``!40v_F<-FHeuAfIw#NhVdK${HL83)W60+ z@6*qN-93IoV15com`iE6Of!fWqCN}ah)RF%MV6s6kULz!Bh`31-L2L=6f=4s;CEp= zcpY_2HSWWd9_x?HEH5s88i3`28kF`Q{usSe9CseaeQ|-)kK#q2+GMO#%`%g5GJmf> z)T1UHz^N}W!>An`GK$nfbyny(=E+)yyJ;bCQiqc@A?_3bg9Q%yHfMqw(u}u-Ec+91Kzhm3L(ky;^y@6jWw%STR z?WgNd$wDWEU#oq8n`h1=9L0PG6nBn7znJ;k+&9tcWX<*vaAbU1u^KJQonv`0KZA1k zd8~KUM7i;Sdi4BITpxxvxeXW+x7&NG_94$uiSF!~+AkEPGW4TVX^J~XVPf9?1wSdf zWTY%yk>@py*5r|{fgxP02PJUzdKf!#RRWG-2WkhEx_C+HR5 z{g|nZL-$xRsrH-N^b52e^1o*k1t!DYnBeY)wp(9n#t^xoR?ZkHo>Dt_w@!L)_@ZRcdp#Jz3f_qIJu;UkMzwYYCzxexH-eZ&6l)FfYCU);+lWzhV)W75oB4l?~} z|8Wa;WYu8K^;q{?qxA#)^Sg=F=Slp@O4VBIMJsxvE{YDvUWUc^^p9%1_uZH z-a#_S+O7`u_|SjYAMT9Y4AGhEfWc6E|4XC)V=tqcI!wMW#0l zuHK)mczXhO1GrN?u2$S>VJul#u7B=c{?jj7_A>kD0+S&a6u-Rt=dDTtlhLdb@Zd>J zb?!9i9{zc1L?t@;;)BlPqYTQC5}QKHB;?ZGNW3nCz0=q`jeVnk^8(h9d-$!t?*9wI z*GJmjMKW2JV<*8)%@%iOaL&*81@4kOz^}$?W*3p$8b(IZu+D3BM>ejCxz1wJfKe1_ z+?~T2dwgDlc2$|X0|b7Jx-%%_-FlI$Poy(29J+F(!yFhDncZd+^jPGbLw+_tYkPuC zx*goZfq&a*0E!|Dz3ZV5<`*xl(|fE+pQI4@jl4cbS@;leYMrT$P9O!y9YFrfjic-$&r~^nQkmyAZ?dGd1s~V zB50N@!`I(X#SuDj$N0(q>^R}#DKFWP6`8-{&od6fcTV_I|Eqps^%`ZRwLV?dma7UI z?eC87pG@8_?^_MOHOPPWKaT;uwh=_FF&?O4ZNu5c3>4kuH>y1dyYHjMp!=2mM)Et! z@@9VuY0U53%CGN8~kB@|KjKV_e(^52^OgS zVSj(;;pW(DU8~oqTD>;nKcE`;2WVg;{t_kr(un_vV*k;x|A=D$abW)uCH|ulS6zC& zEUHKAqJZ#AjPOe>{1U_b(lWoqFu%0SuQ1H7Eb}W2^Q)fu6-M}#6@HBoer<)n#|VFK zg@3>Z|Dc6mV_M_2ZH?EM)_84O<29x=Ufb4qjcJY7wl!X3TI02CjqfoP{N7gZdrSqt zw-x*zQ^D_T1%JR4;|E)eA27xE!4~634D*kc`F~)9|3@$U5+nT53ctb#zp}!wF~ab< mUtuPhS9+4^fA6m(p|CYu)lPgQy+p2myaTBL`Tqb?yIF + + + + + Quickstart + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

Quickstart

+

This page gives a brief introduction to the library. It assumes you have the library installed, +if you don’t check the Installing portion.

+
+

A Minimal Bot

+

Let’s make a bot that responds to a specific message and walk you through it.

+

It looks something like this:

+
import discord
+
+client = discord.Client()
+
+@client.event
+async def on_ready():
+    print(f'We have logged in as {client.user}')
+
+@client.event
+async def on_message(message):
+    if message.author == client.user:
+        return
+
+    if message.content.startswith('$hello'):
+        await message.channel.send('Hello!')
+
+client.run('your token here')
+
+
+

Let’s name this file example_bot.py. Make sure not to name it discord.py as that’ll conflict +with the library.

+

There’s a lot going on here, so let’s walk you through it step by step.

+
    +
  1. The first line just imports the library, if this raises a ModuleNotFoundError or ImportError +then head on over to Installing section to properly install.

  2. +
  3. Next, we create an instance of a Client. This client is our connection to Discord.

  4. +
  5. We then use the Client.event() decorator to register an event. This library has many events. +Since this library is asynchronous, we do things in a “callback” style manner.

    +

    A callback is essentially a function that is called when something happens. In our case, +the on_ready() event is called when the bot has finished logging in and setting things +up and the on_message() event is called when the bot has received a message.

    +
  6. +
  7. Since the on_message() event triggers for every message received, we have to make +sure that we ignore messages from ourselves. We do this by checking if the Message.author +is the same as the Client.user.

  8. +
  9. Afterwards, we check if the Message.content starts with '$hello'. If it does, +then we send a message in the channel it was used in with 'Hello!'. This is a basic way of +handling commands, which can be later automated with the discord.ext.commands – Bot commands framework framework.

  10. +
  11. Finally, we run the bot with our login token. If you need help getting your token or creating a bot, +look in the Creating a Bot Account section.

  12. +
+

Now that we’ve made a bot, we have to run the bot. Luckily, this is simple since this is just a +Python script, we can run it directly.

+

On Windows:

+
$ py -3 example_bot.py
+
+
+

On other systems:

+
$ python3 example_bot.py
+
+
+

Now you can try playing around with your basic bot.

+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/search.html b/docs/Python/html/search.html new file mode 100644 index 00000000..8ccd1291 --- /dev/null +++ b/docs/Python/html/search.html @@ -0,0 +1,167 @@ + + + + + + Search + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +

Search

+ + + + +

+ Searching for multiple words only shows matches that contain + all words. +

+ + +
+ + + +
+ + + +
+ +
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/searchindex.js b/docs/Python/html/searchindex.js new file mode 100644 index 00000000..91211e34 --- /dev/null +++ b/docs/Python/html/searchindex.js @@ -0,0 +1 @@ +Search.setIndex({docnames:["api","discord","ext/commands/api","ext/commands/cogs","ext/commands/commands","ext/commands/extensions","ext/commands/index","ext/commands/slash-commands","ext/tasks/index","faq","index","intents","intro","logging","migrating","migrating_to_async","quickstart","version_guarantees","whats_new"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,sphinx:56},filenames:["api.rst","discord.rst","ext\\commands\\api.rst","ext\\commands\\cogs.rst","ext\\commands\\commands.rst","ext\\commands\\extensions.rst","ext\\commands\\index.rst","ext\\commands\\slash-commands.rst","ext\\tasks\\index.rst","faq.rst","index.rst","intents.rst","intro.rst","logging.rst","migrating.rst","migrating_to_async.rst","quickstart.rst","version_guarantees.rst","whats_new.rst"],objects:{"discord.ActionRow":{children:[0,1,1,""],type:[0,1,1,""]},"discord.Activity":{application_id:[0,1,1,""],assets:[0,1,1,""],buttons:[0,1,1,""],details:[0,1,1,""],emoji:[0,1,1,""],end:[0,2,1,""],large_image_text:[0,2,1,""],large_image_url:[0,2,1,""],name:[0,1,1,""],party:[0,1,1,""],small_image_text:[0,2,1,""],small_image_url:[0,2,1,""],start:[0,2,1,""],state:[0,1,1,""],timestamps:[0,1,1,""],type:[0,1,1,""],url:[0,1,1,""]},"discord.ActivityType":{competing:[0,1,1,""],custom:[0,1,1,""],listening:[0,1,1,""],playing:[0,1,1,""],streaming:[0,1,1,""],unknown:[0,1,1,""],watching:[0,1,1,""]},"discord.AllowedMentions":{all:[0,3,1,""],everyone:[0,1,1,""],none:[0,3,1,""],replied_user:[0,1,1,""],roles:[0,1,1,""],users:[0,1,1,""]},"discord.AppInfo":{bot_public:[0,1,1,""],bot_require_code_grant:[0,1,1,""],cover_image:[0,2,1,""],description:[0,1,1,""],guild:[0,2,1,""],guild_id:[0,1,1,""],icon:[0,2,1,""],id:[0,1,1,""],name:[0,1,1,""],owner:[0,1,1,""],primary_sku_id:[0,1,1,""],privacy_policy_url:[0,1,1,""],rpc_origins:[0,1,1,""],slug:[0,1,1,""],summary:[0,1,1,""],team:[0,1,1,""],terms_of_service_url:[0,1,1,""],verify_key:[0,1,1,""]},"discord.ApplicationFlags":{embedded:[0,1,1,""],gateway_guild_members:[0,1,1,""],gateway_guild_members_limited:[0,1,1,""],gateway_presence:[0,1,1,""],gateway_presence_limited:[0,1,1,""],value:[0,1,1,""],verification_pending_guild_limit:[0,1,1,""]},"discord.Asset":{is_animated:[0,3,1,""],key:[0,2,1,""],read:[0,3,1,""],replace:[0,3,1,""],save:[0,3,1,""],url:[0,2,1,""],with_format:[0,3,1,""],with_size:[0,3,1,""],with_static_format:[0,3,1,""]},"discord.AsyncIterator":{chunk:[0,3,1,""],filter:[0,3,1,""],find:[0,3,1,""],flatten:[0,3,1,""],get:[0,3,1,""],map:[0,3,1,""],next:[0,3,1,""]},"discord.Attachment":{content_type:[0,1,1,""],ephemeral:[0,1,1,""],filename:[0,1,1,""],height:[0,1,1,""],id:[0,1,1,""],is_spoiler:[0,3,1,""],proxy_url:[0,1,1,""],read:[0,3,1,""],save:[0,3,1,""],size:[0,1,1,""],to_file:[0,3,1,""],url:[0,1,1,""],width:[0,1,1,""]},"discord.AudioSource":{cleanup:[0,3,1,""],is_opus:[0,3,1,""],read:[0,3,1,""]},"discord.AuditLogAction":{ban:[0,1,1,""],bot_add:[0,1,1,""],channel_create:[0,1,1,""],channel_delete:[0,1,1,""],channel_update:[0,1,1,""],emoji_create:[0,1,1,""],emoji_delete:[0,1,1,""],emoji_update:[0,1,1,""],guild_update:[0,1,1,""],integration_create:[0,1,1,""],integration_delete:[0,1,1,""],integration_update:[0,1,1,""],invite_create:[0,1,1,""],invite_delete:[0,1,1,""],invite_update:[0,1,1,""],kick:[0,1,1,""],member_disconnect:[0,1,1,""],member_move:[0,1,1,""],member_prune:[0,1,1,""],member_role_update:[0,1,1,""],member_update:[0,1,1,""],message_bulk_delete:[0,1,1,""],message_delete:[0,1,1,""],message_pin:[0,1,1,""],message_unpin:[0,1,1,""],overwrite_create:[0,1,1,""],overwrite_delete:[0,1,1,""],overwrite_update:[0,1,1,""],role_create:[0,1,1,""],role_delete:[0,1,1,""],role_update:[0,1,1,""],stage_instance_create:[0,1,1,""],stage_instance_delete:[0,1,1,""],stage_instance_update:[0,1,1,""],sticker_create:[0,1,1,""],sticker_delete:[0,1,1,""],sticker_update:[0,1,1,""],thread_create:[0,1,1,""],thread_delete:[0,1,1,""],thread_update:[0,1,1,""],unban:[0,1,1,""],webhook_create:[0,1,1,""],webhook_delete:[0,1,1,""],webhook_update:[0,1,1,""]},"discord.AuditLogActionCategory":{"delete":[0,1,1,""],create:[0,1,1,""],update:[0,1,1,""]},"discord.AuditLogChanges":{after:[0,1,1,""],before:[0,1,1,""]},"discord.AuditLogDiff":{afk_channel:[0,1,1,""],afk_timeout:[0,1,1,""],allow:[0,1,1,""],archived:[0,1,1,""],auto_archive_duration:[0,1,1,""],available:[0,1,1,""],avatar:[0,1,1,""],banner:[0,1,1,""],bitrate:[0,1,1,""],channel:[0,1,1,""],code:[0,1,1,""],color:[0,1,1,""],colour:[0,1,1,""],deaf:[0,1,1,""],default_auto_archive_duration:[0,1,1,""],default_message_notifications:[0,1,1,""],default_notifications:[0,1,1,""],deny:[0,1,1,""],description:[0,1,1,""],discovery_splash:[0,1,1,""],emoji:[0,1,1,""],explicit_content_filter:[0,1,1,""],format_type:[0,1,1,""],hoist:[0,1,1,""],icon:[0,1,1,""],id:[0,1,1,""],inviter:[0,1,1,""],locked:[0,1,1,""],max_age:[0,1,1,""],max_uses:[0,1,1,""],mentionable:[0,1,1,""],mfa_level:[0,1,1,""],mute:[0,1,1,""],name:[0,1,1,""],nick:[0,1,1,""],overwrites:[0,1,1,""],owner:[0,1,1,""],permissions:[0,1,1,""],position:[0,1,1,""],privacy_level:[0,1,1,""],public_updates_channel:[0,1,1,""],region:[0,1,1,""],roles:[0,1,1,""],rtc_region:[0,1,1,""],rules_channel:[0,1,1,""],slowmode_delay:[0,1,1,""],splash:[0,1,1,""],system_channel:[0,1,1,""],temporary:[0,1,1,""],topic:[0,1,1,""],type:[0,1,1,""],uses:[0,1,1,""],vanity_url_code:[0,1,1,""],verification_level:[0,1,1,""],video_quality_mode:[0,1,1,""],widget_channel:[0,1,1,""],widget_enabled:[0,1,1,""]},"discord.AuditLogEntry":{action:[0,1,1,""],after:[0,1,1,""],before:[0,1,1,""],category:[0,1,1,""],changes:[0,1,1,""],created_at:[0,1,1,""],extra:[0,1,1,""],id:[0,1,1,""],reason:[0,1,1,""],target:[0,1,1,""],user:[0,1,1,""]},"discord.AutoShardedClient":{change_presence:[0,3,1,""],close:[0,3,1,""],connect:[0,3,1,""],get_shard:[0,3,1,""],is_ws_ratelimited:[0,3,1,""],latencies:[0,2,1,""],latency:[0,2,1,""],shard_ids:[0,1,1,""],shards:[0,2,1,""]},"discord.BanEntry":{reason:[0,1,1,""],user:[0,1,1,""]},"discord.BaseActivity":{created_at:[0,2,1,""]},"discord.BotIntegration":{account:[0,1,1,""],application:[0,1,1,""],enabled:[0,1,1,""],guild:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],type:[0,1,1,""],user:[0,1,1,""]},"discord.Button":{custom_id:[0,1,1,""],disabled:[0,1,1,""],emoji:[0,1,1,""],label:[0,1,1,""],style:[0,1,1,""],url:[0,1,1,""]},"discord.ButtonStyle":{blurple:[0,1,1,""],danger:[0,1,1,""],gray:[0,1,1,""],green:[0,1,1,""],grey:[0,1,1,""],link:[0,1,1,""],primary:[0,1,1,""],red:[0,1,1,""],secondary:[0,1,1,""],success:[0,1,1,""],url:[0,1,1,""]},"discord.CategoryChannel":{"delete":[0,3,1,""],category:[0,2,1,""],changed_roles:[0,2,1,""],channels:[0,2,1,""],clone:[0,3,1,""],create_invite:[0,3,1,""],create_stage_channel:[0,3,1,""],create_text_channel:[0,3,1,""],create_voice_channel:[0,3,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],guild:[0,1,1,""],id:[0,1,1,""],invites:[0,3,1,""],is_nsfw:[0,3,1,""],mention:[0,2,1,""],move:[0,3,1,""],name:[0,1,1,""],nsfw:[0,1,1,""],overwrites:[0,2,1,""],overwrites_for:[0,3,1,""],permissions_for:[0,3,1,""],permissions_synced:[0,2,1,""],position:[0,1,1,""],set_permissions:[0,3,1,""],stage_channels:[0,2,1,""],text_channels:[0,2,1,""],type:[0,2,1,""],voice_channels:[0,2,1,""]},"discord.ChannelType":{"private":[0,1,1,""],category:[0,1,1,""],group:[0,1,1,""],news:[0,1,1,""],news_thread:[0,1,1,""],private_thread:[0,1,1,""],public_thread:[0,1,1,""],stage_voice:[0,1,1,""],store:[0,1,1,""],text:[0,1,1,""],voice:[0,1,1,""]},"discord.Client":{activity:[0,2,1,""],add_view:[0,3,1,""],allowed_mentions:[0,2,1,""],application_flags:[0,2,1,""],application_id:[0,2,1,""],application_info:[0,3,1,""],before_identify_hook:[0,3,1,""],cached_messages:[0,2,1,""],change_presence:[0,3,1,""],clear:[0,3,1,""],close:[0,3,1,""],connect:[0,3,1,""],create_dm:[0,3,1,""],create_guild:[0,3,1,""],delete_invite:[0,3,1,""],emojis:[0,2,1,""],event:[0,3,1,""],fetch_channel:[0,3,1,""],fetch_guild:[0,3,1,""],fetch_guilds:[0,3,1,""],fetch_invite:[0,3,1,""],fetch_premium_sticker_packs:[0,3,1,""],fetch_stage_instance:[0,3,1,""],fetch_sticker:[0,3,1,""],fetch_template:[0,3,1,""],fetch_user:[0,3,1,""],fetch_webhook:[0,3,1,""],fetch_widget:[0,3,1,""],get_all_channels:[0,3,1,""],get_all_members:[0,3,1,""],get_channel:[0,3,1,""],get_emoji:[0,3,1,""],get_guild:[0,3,1,""],get_partial_messageable:[0,3,1,""],get_stage_instance:[0,3,1,""],get_sticker:[0,3,1,""],get_user:[0,3,1,""],guilds:[0,2,1,""],intents:[0,2,1,""],is_closed:[0,3,1,""],is_ready:[0,3,1,""],is_ws_ratelimited:[0,3,1,""],latency:[0,2,1,""],login:[0,3,1,""],loop:[0,1,1,""],on_error:[0,3,1,""],persistent_views:[0,2,1,""],private_channels:[0,2,1,""],run:[0,3,1,""],setup:[0,3,1,""],start:[0,3,1,""],status:[0,2,1,""],stickers:[0,2,1,""],try_user:[0,3,1,""],user:[0,2,1,""],users:[0,2,1,""],voice_clients:[0,2,1,""],wait_for:[0,3,1,""],wait_until_ready:[0,3,1,""],ws:[0,1,1,""]},"discord.ClientUser":{accent_color:[0,2,1,""],accent_colour:[0,2,1,""],avatar:[0,2,1,""],banner:[0,2,1,""],bot:[0,1,1,""],color:[0,2,1,""],colour:[0,2,1,""],created_at:[0,2,1,""],default_avatar:[0,2,1,""],discriminator:[0,1,1,""],display_avatar:[0,2,1,""],display_name:[0,2,1,""],edit:[0,3,1,""],id:[0,1,1,""],locale:[0,1,1,""],mention:[0,2,1,""],mentioned_in:[0,3,1,""],mfa_enabled:[0,1,1,""],name:[0,1,1,""],public_flags:[0,2,1,""],system:[0,1,1,""],verified:[0,1,1,""]},"discord.Colour":{"default":[0,3,1,""],b:[0,2,1,""],blue:[0,3,1,""],blurple:[0,3,1,""],brand_green:[0,3,1,""],brand_red:[0,3,1,""],dark_blue:[0,3,1,""],dark_blurple:[0,3,1,""],dark_gold:[0,3,1,""],dark_gray:[0,3,1,""],dark_green:[0,3,1,""],dark_grey:[0,3,1,""],dark_magenta:[0,3,1,""],dark_orange:[0,3,1,""],dark_purple:[0,3,1,""],dark_red:[0,3,1,""],dark_teal:[0,3,1,""],dark_theme:[0,3,1,""],darker_gray:[0,3,1,""],darker_grey:[0,3,1,""],from_hsv:[0,3,1,""],from_rgb:[0,3,1,""],fuchsia:[0,3,1,""],g:[0,2,1,""],gold:[0,3,1,""],green:[0,3,1,""],greyple:[0,3,1,""],light_gray:[0,3,1,""],light_grey:[0,3,1,""],lighter_gray:[0,3,1,""],lighter_grey:[0,3,1,""],magenta:[0,3,1,""],nitro_booster:[0,3,1,""],og_blurple:[0,3,1,""],orange:[0,3,1,""],purple:[0,3,1,""],r:[0,2,1,""],random:[0,3,1,""],red:[0,3,1,""],teal:[0,3,1,""],to_rgb:[0,3,1,""],value:[0,1,1,""],yellow:[0,3,1,""]},"discord.Component":{type:[0,1,1,""]},"discord.ComponentType":{action_row:[0,1,1,""],button:[0,1,1,""],select:[0,1,1,""]},"discord.ConnectionClosed":{code:[0,1,1,""],reason:[0,1,1,""],shard_id:[0,1,1,""]},"discord.ContentFilter":{all_members:[0,1,1,""],disabled:[0,1,1,""],no_role:[0,1,1,""]},"discord.CustomActivity":{emoji:[0,1,1,""],name:[0,1,1,""],type:[0,2,1,""]},"discord.DMChannel":{created_at:[0,2,1,""],fetch_message:[0,3,1,""],get_partial_message:[0,3,1,""],history:[0,3,1,""],id:[0,1,1,""],me:[0,1,1,""],permissions_for:[0,3,1,""],pins:[0,3,1,""],recipient:[0,1,1,""],send:[0,3,1,""],trigger_typing:[0,3,1,""],type:[0,2,1,""],typing:[0,3,1,""]},"discord.DefaultAvatar":{blurple:[0,1,1,""],gray:[0,1,1,""],green:[0,1,1,""],grey:[0,1,1,""],orange:[0,1,1,""],red:[0,1,1,""]},"discord.DeletedReferencedMessage":{channel_id:[0,2,1,""],guild_id:[0,2,1,""],id:[0,2,1,""]},"discord.Embed":{Empty:[0,1,1,""],add_field:[0,3,1,""],author:[0,2,1,""],clear_fields:[0,3,1,""],colour:[0,1,1,""],copy:[0,3,1,""],description:[0,1,1,""],fields:[0,2,1,""],footer:[0,2,1,""],from_dict:[0,3,1,""],image:[0,2,1,""],insert_field_at:[0,3,1,""],provider:[0,2,1,""],remove_author:[0,3,1,""],remove_field:[0,3,1,""],remove_footer:[0,3,1,""],set_author:[0,3,1,""],set_field_at:[0,3,1,""],set_footer:[0,3,1,""],set_image:[0,3,1,""],set_thumbnail:[0,3,1,""],thumbnail:[0,2,1,""],timestamp:[0,1,1,""],title:[0,1,1,""],to_dict:[0,3,1,""],type:[0,1,1,""],url:[0,1,1,""],video:[0,2,1,""]},"discord.Emoji":{"delete":[0,3,1,""],animated:[0,1,1,""],available:[0,1,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],guild:[0,2,1,""],guild_id:[0,1,1,""],id:[0,1,1,""],is_usable:[0,3,1,""],managed:[0,1,1,""],name:[0,1,1,""],read:[0,3,1,""],require_colons:[0,1,1,""],roles:[0,2,1,""],save:[0,3,1,""],url:[0,2,1,""],user:[0,1,1,""]},"discord.ExpireBehaviour":{kick:[0,1,1,""],remove_role:[0,1,1,""]},"discord.FFmpegAudio":{cleanup:[0,3,1,""]},"discord.FFmpegOpusAudio":{from_probe:[0,3,1,""],is_opus:[0,3,1,""],probe:[0,3,1,""],read:[0,3,1,""]},"discord.FFmpegPCMAudio":{is_opus:[0,3,1,""],read:[0,3,1,""]},"discord.File":{filename:[0,1,1,""],fp:[0,1,1,""],spoiler:[0,1,1,""]},"discord.Game":{end:[0,2,1,""],name:[0,1,1,""],start:[0,2,1,""],type:[0,2,1,""]},"discord.GroupChannel":{created_at:[0,2,1,""],fetch_message:[0,3,1,""],history:[0,3,1,""],icon:[0,2,1,""],id:[0,1,1,""],leave:[0,3,1,""],me:[0,1,1,""],name:[0,1,1,""],owner:[0,1,1,""],owner_id:[0,1,1,""],permissions_for:[0,3,1,""],pins:[0,3,1,""],recipients:[0,1,1,""],send:[0,3,1,""],trigger_typing:[0,3,1,""],type:[0,2,1,""],typing:[0,3,1,""]},"discord.Guild":{"delete":[0,3,1,""],active_threads:[0,3,1,""],afk_channel:[0,1,1,""],afk_timeout:[0,1,1,""],audit_logs:[0,3,1,""],ban:[0,3,1,""],banner:[0,2,1,""],bans:[0,3,1,""],bitrate_limit:[0,2,1,""],bots:[0,2,1,""],by_category:[0,3,1,""],categories:[0,2,1,""],change_voice_state:[0,3,1,""],channels:[0,2,1,""],chunk:[0,3,1,""],chunked:[0,2,1,""],create_category:[0,3,1,""],create_category_channel:[0,3,1,""],create_custom_emoji:[0,3,1,""],create_integration:[0,3,1,""],create_role:[0,3,1,""],create_stage_channel:[0,3,1,""],create_sticker:[0,3,1,""],create_template:[0,3,1,""],create_text_channel:[0,3,1,""],create_voice_channel:[0,3,1,""],created_at:[0,2,1,""],default_notifications:[0,1,1,""],default_role:[0,2,1,""],delete_emoji:[0,3,1,""],delete_sticker:[0,3,1,""],description:[0,1,1,""],discovery_splash:[0,2,1,""],edit:[0,3,1,""],edit_role_positions:[0,3,1,""],edit_widget:[0,3,1,""],emoji_limit:[0,2,1,""],emojis:[0,1,1,""],estimate_pruned_members:[0,3,1,""],explicit_content_filter:[0,1,1,""],features:[0,1,1,""],fetch_ban:[0,3,1,""],fetch_channel:[0,3,1,""],fetch_channels:[0,3,1,""],fetch_emoji:[0,3,1,""],fetch_emojis:[0,3,1,""],fetch_member:[0,3,1,""],fetch_members:[0,3,1,""],fetch_roles:[0,3,1,""],fetch_sticker:[0,3,1,""],fetch_stickers:[0,3,1,""],filesize_limit:[0,2,1,""],get_channel:[0,3,1,""],get_channel_or_thread:[0,3,1,""],get_member:[0,3,1,""],get_member_named:[0,3,1,""],get_role:[0,3,1,""],get_stage_instance:[0,3,1,""],get_thread:[0,3,1,""],humans:[0,2,1,""],icon:[0,2,1,""],id:[0,1,1,""],integrations:[0,3,1,""],invites:[0,3,1,""],kick:[0,3,1,""],large:[0,2,1,""],leave:[0,3,1,""],max_members:[0,1,1,""],max_presences:[0,1,1,""],max_video_channel_users:[0,1,1,""],me:[0,2,1,""],member_count:[0,2,1,""],members:[0,2,1,""],mfa_level:[0,1,1,""],name:[0,1,1,""],nsfw_level:[0,1,1,""],owner:[0,2,1,""],owner_id:[0,1,1,""],preferred_locale:[0,1,1,""],premium_subscriber_role:[0,2,1,""],premium_subscribers:[0,2,1,""],premium_subscription_count:[0,1,1,""],premium_tier:[0,1,1,""],prune_members:[0,3,1,""],public_updates_channel:[0,2,1,""],query_members:[0,3,1,""],region:[0,1,1,""],roles:[0,2,1,""],rules_channel:[0,2,1,""],self_role:[0,2,1,""],shard_id:[0,2,1,""],splash:[0,2,1,""],stage_channels:[0,2,1,""],stage_instances:[0,2,1,""],sticker_limit:[0,2,1,""],stickers:[0,1,1,""],system_channel:[0,2,1,""],system_channel_flags:[0,2,1,""],templates:[0,3,1,""],text_channels:[0,2,1,""],threads:[0,2,1,""],try_member:[0,3,1,""],unavailable:[0,1,1,""],unban:[0,3,1,""],vanity_invite:[0,3,1,""],verification_level:[0,1,1,""],voice_channels:[0,2,1,""],voice_client:[0,2,1,""],webhooks:[0,3,1,""],widget:[0,3,1,""]},"discord.GuildSticker":{"delete":[0,3,1,""],available:[0,1,1,""],description:[0,1,1,""],edit:[0,3,1,""],emoji:[0,1,1,""],format:[0,1,1,""],guild:[0,1,1,""],guild_id:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],user:[0,1,1,""]},"discord.HTTPException":{code:[0,1,1,""],response:[0,1,1,""],status:[0,1,1,""],text:[0,1,1,""]},"discord.Integration":{"delete":[0,3,1,""],account:[0,1,1,""],enabled:[0,1,1,""],guild:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],type:[0,1,1,""],user:[0,1,1,""]},"discord.IntegrationAccount":{id:[0,1,1,""],name:[0,1,1,""]},"discord.IntegrationApplication":{description:[0,1,1,""],icon:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],summary:[0,1,1,""],user:[0,1,1,""]},"discord.Intents":{all:[0,3,1,""],bans:[0,1,1,""],dm_messages:[0,1,1,""],dm_reactions:[0,1,1,""],dm_typing:[0,1,1,""],emojis:[0,1,1,""],emojis_and_stickers:[0,1,1,""],guild_messages:[0,1,1,""],guild_reactions:[0,1,1,""],guild_typing:[0,1,1,""],guilds:[0,1,1,""],integrations:[0,1,1,""],invites:[0,1,1,""],members:[0,1,1,""],messages:[0,1,1,""],none:[0,3,1,""],presences:[0,1,1,""],reactions:[0,1,1,""],typing:[0,1,1,""],value:[0,1,1,""],voice_states:[0,1,1,""],webhooks:[0,1,1,""]},"discord.Interaction":{application_id:[0,1,1,""],channel:[0,1,1,""],channel_id:[0,1,1,""],data:[0,1,1,""],delete_original_message:[0,3,1,""],edit_original_message:[0,3,1,""],followup:[0,1,1,""],guild:[0,2,1,""],guild_id:[0,1,1,""],id:[0,1,1,""],message:[0,1,1,""],original_message:[0,3,1,""],permissions:[0,2,1,""],response:[0,1,1,""],token:[0,1,1,""],type:[0,1,1,""],user:[0,1,1,""]},"discord.InteractionMessage":{"delete":[0,3,1,""],edit:[0,3,1,""]},"discord.InteractionResponded":{interaction:[0,1,1,""]},"discord.InteractionResponse":{defer:[0,3,1,""],edit_message:[0,3,1,""],is_done:[0,3,1,""],pong:[0,3,1,""],send_message:[0,3,1,""]},"discord.InteractionResponseType":{channel_message:[0,1,1,""],deferred_channel_message:[0,1,1,""],deferred_message_update:[0,1,1,""],message_update:[0,1,1,""],pong:[0,1,1,""]},"discord.InteractionType":{application_command:[0,1,1,""],component:[0,1,1,""],ping:[0,1,1,""]},"discord.Invite":{"delete":[0,3,1,""],approximate_member_count:[0,1,1,""],approximate_presence_count:[0,1,1,""],channel:[0,1,1,""],code:[0,1,1,""],created_at:[0,1,1,""],expires_at:[0,1,1,""],guild:[0,1,1,""],id:[0,2,1,""],inviter:[0,1,1,""],max_age:[0,1,1,""],max_uses:[0,1,1,""],revoked:[0,1,1,""],target_application:[0,1,1,""],target_type:[0,1,1,""],target_user:[0,1,1,""],temporary:[0,1,1,""],url:[0,2,1,""],uses:[0,1,1,""]},"discord.InviteTarget":{embedded_application:[0,1,1,""],stream:[0,1,1,""],unknown:[0,1,1,""]},"discord.Member":{accent_color:[0,2,1,""],accent_colour:[0,2,1,""],activities:[0,1,1,""],activity:[0,2,1,""],add_roles:[0,3,1,""],avatar:[0,2,1,""],ban:[0,3,1,""],banner:[0,2,1,""],bot:[0,2,1,""],color:[0,2,1,""],colour:[0,2,1,""],create_dm:[0,3,1,""],created_at:[0,2,1,""],default_avatar:[0,2,1,""],desktop_status:[0,2,1,""],discriminator:[0,2,1,""],display_avatar:[0,2,1,""],display_name:[0,2,1,""],dm_channel:[0,2,1,""],edit:[0,3,1,""],fetch_message:[0,3,1,""],get_role:[0,3,1,""],guild:[0,1,1,""],guild_avatar:[0,2,1,""],guild_permissions:[0,2,1,""],history:[0,3,1,""],id:[0,2,1,""],is_on_mobile:[0,3,1,""],joined_at:[0,1,1,""],kick:[0,3,1,""],mention:[0,2,1,""],mentioned_in:[0,3,1,""],mobile_status:[0,2,1,""],move_to:[0,3,1,""],mutual_guilds:[0,2,1,""],name:[0,2,1,""],nick:[0,1,1,""],pending:[0,1,1,""],pins:[0,3,1,""],premium_since:[0,1,1,""],public_flags:[0,2,1,""],raw_status:[0,2,1,""],remove_roles:[0,3,1,""],request_to_speak:[0,3,1,""],roles:[0,2,1,""],send:[0,3,1,""],status:[0,2,1,""],system:[0,2,1,""],top_role:[0,2,1,""],trigger_typing:[0,3,1,""],typing:[0,3,1,""],unban:[0,3,1,""],voice:[0,2,1,""],web_status:[0,2,1,""]},"discord.MemberCacheFlags":{all:[0,3,1,""],from_intents:[0,3,1,""],joined:[0,1,1,""],none:[0,3,1,""],value:[0,1,1,""],voice:[0,1,1,""]},"discord.Message":{"delete":[0,3,1,""],activity:[0,1,1,""],add_reaction:[0,3,1,""],application:[0,1,1,""],attachments:[0,1,1,""],author:[0,1,1,""],channel:[0,1,1,""],channel_mentions:[0,1,1,""],clean_content:[0,1,1,""],clear_reaction:[0,3,1,""],clear_reactions:[0,3,1,""],components:[0,1,1,""],content:[0,1,1,""],create_thread:[0,3,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],edited_at:[0,2,1,""],embeds:[0,1,1,""],flags:[0,1,1,""],guild:[0,1,1,""],id:[0,1,1,""],is_system:[0,3,1,""],jump_url:[0,2,1,""],mention_everyone:[0,1,1,""],mentions:[0,1,1,""],nonce:[0,1,1,""],pin:[0,3,1,""],pinned:[0,1,1,""],publish:[0,3,1,""],raw_channel_mentions:[0,1,1,""],raw_mentions:[0,1,1,""],raw_role_mentions:[0,1,1,""],reactions:[0,1,1,""],reference:[0,1,1,""],remove_reaction:[0,3,1,""],reply:[0,3,1,""],role_mentions:[0,1,1,""],stickers:[0,1,1,""],system_content:[0,1,1,""],to_reference:[0,3,1,""],tts:[0,1,1,""],type:[0,1,1,""],unpin:[0,3,1,""],webhook_id:[0,1,1,""]},"discord.MessageFlags":{crossposted:[0,1,1,""],ephemeral:[0,1,1,""],has_thread:[0,1,1,""],is_crossposted:[0,1,1,""],source_message_deleted:[0,1,1,""],suppress_embeds:[0,1,1,""],urgent:[0,1,1,""],value:[0,1,1,""]},"discord.MessageReference":{cached_message:[0,2,1,""],channel_id:[0,1,1,""],fail_if_not_exists:[0,1,1,""],from_message:[0,3,1,""],guild_id:[0,1,1,""],jump_url:[0,2,1,""],message_id:[0,1,1,""],resolved:[0,1,1,""]},"discord.MessageType":{"default":[0,1,1,""],application_command:[0,1,1,""],call:[0,1,1,""],channel_follow_add:[0,1,1,""],channel_icon_change:[0,1,1,""],channel_name_change:[0,1,1,""],guild_discovery_disqualified:[0,1,1,""],guild_discovery_grace_period_final_warning:[0,1,1,""],guild_discovery_grace_period_initial_warning:[0,1,1,""],guild_discovery_requalified:[0,1,1,""],guild_invite_reminder:[0,1,1,""],guild_stream:[0,1,1,""],new_member:[0,1,1,""],pins_add:[0,1,1,""],premium_guild_subscription:[0,1,1,""],premium_guild_tier_1:[0,1,1,""],premium_guild_tier_2:[0,1,1,""],premium_guild_tier_3:[0,1,1,""],recipient_add:[0,1,1,""],recipient_remove:[0,1,1,""],reply:[0,1,1,""],thread_created:[0,1,1,""],thread_starter_message:[0,1,1,""]},"discord.NSFWLevel":{"default":[0,1,1,""],age_restricted:[0,1,1,""],explicit:[0,1,1,""],safe:[0,1,1,""]},"discord.NotificationLevel":{all_messages:[0,1,1,""],only_mentions:[0,1,1,""]},"discord.Object":{created_at:[0,2,1,""],id:[0,1,1,""]},"discord.PCMAudio":{read:[0,3,1,""],stream:[0,1,1,""]},"discord.PCMVolumeTransformer":{cleanup:[0,3,1,""],read:[0,3,1,""],volume:[0,2,1,""]},"discord.PartialAppInfo":{description:[0,1,1,""],icon:[0,2,1,""],id:[0,1,1,""],name:[0,1,1,""],privacy_policy_url:[0,1,1,""],rpc_origins:[0,1,1,""],summary:[0,1,1,""],terms_of_service_url:[0,1,1,""],verify_key:[0,1,1,""]},"discord.PartialEmoji":{animated:[0,1,1,""],created_at:[0,2,1,""],from_str:[0,3,1,""],id:[0,1,1,""],is_custom_emoji:[0,3,1,""],is_unicode_emoji:[0,3,1,""],name:[0,1,1,""],read:[0,3,1,""],save:[0,3,1,""],url:[0,2,1,""]},"discord.PartialInviteChannel":{created_at:[0,2,1,""],id:[0,1,1,""],mention:[0,2,1,""],name:[0,1,1,""],type:[0,1,1,""]},"discord.PartialInviteGuild":{banner:[0,2,1,""],created_at:[0,2,1,""],description:[0,1,1,""],features:[0,1,1,""],icon:[0,2,1,""],id:[0,1,1,""],name:[0,1,1,""],splash:[0,2,1,""],verification_level:[0,1,1,""]},"discord.PartialMessage":{"delete":[0,3,1,""],add_reaction:[0,3,1,""],channel:[0,1,1,""],clear_reaction:[0,3,1,""],clear_reactions:[0,3,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],fetch:[0,3,1,""],guild:[0,1,1,""],id:[0,1,1,""],jump_url:[0,2,1,""],pin:[0,3,1,""],publish:[0,3,1,""],remove_reaction:[0,3,1,""],reply:[0,3,1,""],to_reference:[0,3,1,""],unpin:[0,3,1,""]},"discord.PartialMessageable":{fetch_message:[0,3,1,""],get_partial_message:[0,3,1,""],history:[0,3,1,""],id:[0,1,1,""],pins:[0,3,1,""],send:[0,3,1,""],trigger_typing:[0,3,1,""],type:[0,1,1,""],typing:[0,3,1,""]},"discord.PartialWebhookChannel":{id:[0,1,1,""],name:[0,1,1,""]},"discord.PartialWebhookGuild":{icon:[0,2,1,""],id:[0,1,1,""],name:[0,1,1,""]},"discord.PermissionOverwrite":{from_pair:[0,3,1,""],is_empty:[0,3,1,""],pair:[0,3,1,""],update:[0,3,1,""]},"discord.Permissions":{add_reactions:[0,1,1,""],admin:[0,1,1,""],administrator:[0,1,1,""],advanced:[0,3,1,""],all:[0,3,1,""],all_channel:[0,3,1,""],attach_files:[0,1,1,""],ban_members:[0,1,1,""],change_nickname:[0,1,1,""],connect:[0,1,1,""],create_instant_invite:[0,1,1,""],create_private_threads:[0,1,1,""],create_public_threads:[0,1,1,""],deafen_members:[0,1,1,""],embed_links:[0,1,1,""],external_emojis:[0,1,1,""],external_stickers:[0,1,1,""],general:[0,3,1,""],is_strict_subset:[0,3,1,""],is_strict_superset:[0,3,1,""],is_subset:[0,3,1,""],is_superset:[0,3,1,""],kick_members:[0,1,1,""],manage_channels:[0,1,1,""],manage_emojis:[0,1,1,""],manage_emojis_and_stickers:[0,1,1,""],manage_events:[0,1,1,""],manage_guild:[0,1,1,""],manage_messages:[0,1,1,""],manage_nicknames:[0,1,1,""],manage_permissions:[0,1,1,""],manage_roles:[0,1,1,""],manage_threads:[0,1,1,""],manage_webhooks:[0,1,1,""],membership:[0,3,1,""],mention_everyone:[0,1,1,""],move_members:[0,1,1,""],mute_members:[0,1,1,""],none:[0,3,1,""],priority_speaker:[0,1,1,""],read_message_history:[0,1,1,""],read_messages:[0,1,1,""],request_to_speak:[0,1,1,""],send_messages:[0,1,1,""],send_messages_in_threads:[0,1,1,""],send_tts_messages:[0,1,1,""],speak:[0,1,1,""],stage:[0,3,1,""],stage_moderator:[0,3,1,""],stream:[0,1,1,""],text:[0,3,1,""],update:[0,3,1,""],use_external_emojis:[0,1,1,""],use_external_stickers:[0,1,1,""],use_slash_commands:[0,1,1,""],use_voice_activation:[0,1,1,""],value:[0,1,1,""],view_audit_log:[0,1,1,""],view_channel:[0,1,1,""],view_guild_insights:[0,1,1,""],voice:[0,3,1,""]},"discord.PrivilegedIntentsRequired":{shard_id:[0,1,1,""]},"discord.PublicUserFlags":{all:[0,3,1,""],bug_hunter:[0,1,1,""],bug_hunter_level_2:[0,1,1,""],discord_certified_moderator:[0,1,1,""],early_supporter:[0,1,1,""],early_verified_bot_developer:[0,1,1,""],hypesquad:[0,1,1,""],hypesquad_balance:[0,1,1,""],hypesquad_bravery:[0,1,1,""],hypesquad_brilliance:[0,1,1,""],partner:[0,1,1,""],staff:[0,1,1,""],system:[0,1,1,""],team_user:[0,1,1,""],value:[0,1,1,""],verified_bot:[0,1,1,""],verified_bot_developer:[0,1,1,""]},"discord.RawBulkMessageDeleteEvent":{cached_messages:[0,1,1,""],channel_id:[0,1,1,""],guild_id:[0,1,1,""],message_ids:[0,1,1,""]},"discord.RawIntegrationDeleteEvent":{application_id:[0,1,1,""],guild_id:[0,1,1,""],integration_id:[0,1,1,""]},"discord.RawMessageDeleteEvent":{cached_message:[0,1,1,""],channel_id:[0,1,1,""],guild_id:[0,1,1,""],message_id:[0,1,1,""]},"discord.RawMessageUpdateEvent":{cached_message:[0,1,1,""],channel_id:[0,1,1,""],data:[0,1,1,""],guild_id:[0,1,1,""],message_id:[0,1,1,""]},"discord.RawReactionActionEvent":{channel_id:[0,1,1,""],emoji:[0,1,1,""],event_type:[0,1,1,""],guild_id:[0,1,1,""],member:[0,1,1,""],message_id:[0,1,1,""],user_id:[0,1,1,""]},"discord.RawReactionClearEmojiEvent":{channel_id:[0,1,1,""],emoji:[0,1,1,""],guild_id:[0,1,1,""],message_id:[0,1,1,""]},"discord.RawReactionClearEvent":{channel_id:[0,1,1,""],guild_id:[0,1,1,""],message_id:[0,1,1,""]},"discord.RawTypingEvent":{channel_id:[0,1,1,""],guild_id:[0,1,1,""],member:[0,1,1,""],user_id:[0,1,1,""],when:[0,1,1,""]},"discord.Reaction":{clear:[0,3,1,""],count:[0,1,1,""],emoji:[0,1,1,""],is_custom_emoji:[0,3,1,""],me:[0,1,1,""],message:[0,1,1,""],remove:[0,3,1,""],users:[0,3,1,""]},"discord.Role":{"delete":[0,3,1,""],color:[0,2,1,""],colour:[0,2,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],guild:[0,1,1,""],hoist:[0,1,1,""],id:[0,1,1,""],is_assignable:[0,3,1,""],is_bot_managed:[0,3,1,""],is_default:[0,3,1,""],is_integration:[0,3,1,""],is_premium_subscriber:[0,3,1,""],managed:[0,1,1,""],members:[0,2,1,""],mention:[0,2,1,""],mentionable:[0,1,1,""],name:[0,1,1,""],permissions:[0,2,1,""],position:[0,1,1,""],tags:[0,1,1,""]},"discord.RoleTags":{bot_id:[0,1,1,""],integration_id:[0,1,1,""],is_bot_managed:[0,3,1,""],is_integration:[0,3,1,""],is_premium_subscriber:[0,3,1,""]},"discord.SelectMenu":{custom_id:[0,1,1,""],disabled:[0,1,1,""],max_values:[0,1,1,""],min_values:[0,1,1,""],options:[0,1,1,""],placeholder:[0,1,1,""]},"discord.SelectOption":{"default":[0,1,1,""],description:[0,1,1,""],emoji:[0,1,1,""],label:[0,1,1,""],value:[0,1,1,""]},"discord.ShardInfo":{connect:[0,3,1,""],disconnect:[0,3,1,""],id:[0,1,1,""],is_closed:[0,3,1,""],is_ws_ratelimited:[0,3,1,""],latency:[0,2,1,""],reconnect:[0,3,1,""],shard_count:[0,1,1,""]},"discord.Spotify":{album:[0,2,1,""],album_cover_url:[0,2,1,""],artist:[0,2,1,""],artists:[0,2,1,""],color:[0,2,1,""],colour:[0,2,1,""],created_at:[0,2,1,""],duration:[0,2,1,""],end:[0,2,1,""],name:[0,2,1,""],party_id:[0,2,1,""],start:[0,2,1,""],title:[0,2,1,""],track_id:[0,2,1,""],track_url:[0,2,1,""],type:[0,2,1,""]},"discord.StageChannel":{"delete":[0,3,1,""],bitrate:[0,1,1,""],category:[0,2,1,""],category_id:[0,1,1,""],changed_roles:[0,2,1,""],clone:[0,3,1,""],connect:[0,3,1,""],create_instance:[0,3,1,""],create_invite:[0,3,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],fetch_instance:[0,3,1,""],guild:[0,1,1,""],id:[0,1,1,""],instance:[0,2,1,""],invites:[0,3,1,""],listeners:[0,2,1,""],members:[0,2,1,""],mention:[0,2,1,""],moderators:[0,2,1,""],move:[0,3,1,""],name:[0,1,1,""],overwrites:[0,2,1,""],overwrites_for:[0,3,1,""],permissions_for:[0,3,1,""],permissions_synced:[0,2,1,""],position:[0,1,1,""],requesting_to_speak:[0,2,1,""],rtc_region:[0,1,1,""],set_permissions:[0,3,1,""],speakers:[0,2,1,""],topic:[0,1,1,""],type:[0,2,1,""],user_limit:[0,1,1,""],video_quality_mode:[0,1,1,""],voice_states:[0,2,1,""]},"discord.StageInstance":{"delete":[0,3,1,""],channel:[0,1,1,""],channel_id:[0,1,1,""],discoverable_disabled:[0,1,1,""],edit:[0,3,1,""],guild:[0,1,1,""],id:[0,1,1,""],privacy_level:[0,1,1,""],topic:[0,1,1,""]},"discord.StagePrivacyLevel":{"public":[0,1,1,""],closed:[0,1,1,""],guild_only:[0,1,1,""]},"discord.StandardSticker":{description:[0,1,1,""],format:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],pack:[0,3,1,""],pack_id:[0,1,1,""],sort_value:[0,1,1,""],tags:[0,1,1,""]},"discord.Status":{dnd:[0,1,1,""],do_not_disturb:[0,1,1,""],idle:[0,1,1,""],invisible:[0,1,1,""],offline:[0,1,1,""],online:[0,1,1,""]},"discord.Sticker":{created_at:[0,2,1,""],description:[0,1,1,""],format:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],pack_id:[0,1,1,""],url:[0,1,1,""]},"discord.StickerFormatType":{apng:[0,1,1,""],lottie:[0,1,1,""],png:[0,1,1,""]},"discord.StickerItem":{fetch:[0,3,1,""],format:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],url:[0,1,1,""]},"discord.StickerPack":{banner:[0,2,1,""],cover_sticker:[0,1,1,""],cover_sticker_id:[0,1,1,""],description:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],sku_id:[0,1,1,""],stickers:[0,1,1,""]},"discord.StickerType":{guild:[0,1,1,""],standard:[0,1,1,""]},"discord.StoreChannel":{"delete":[0,3,1,""],category:[0,2,1,""],category_id:[0,1,1,""],changed_roles:[0,2,1,""],clone:[0,3,1,""],create_invite:[0,3,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],guild:[0,1,1,""],id:[0,1,1,""],invites:[0,3,1,""],is_nsfw:[0,3,1,""],mention:[0,2,1,""],move:[0,3,1,""],name:[0,1,1,""],nsfw:[0,1,1,""],overwrites:[0,2,1,""],overwrites_for:[0,3,1,""],permissions_for:[0,3,1,""],permissions_synced:[0,2,1,""],position:[0,1,1,""],set_permissions:[0,3,1,""],type:[0,2,1,""]},"discord.StreamIntegration":{account:[0,1,1,""],edit:[0,3,1,""],enable_emoticons:[0,1,1,""],enabled:[0,1,1,""],expire_behavior:[0,2,1,""],expire_behaviour:[0,1,1,""],expire_grace_period:[0,1,1,""],guild:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],role:[0,2,1,""],sync:[0,3,1,""],synced_at:[0,1,1,""],syncing:[0,1,1,""],type:[0,1,1,""],user:[0,1,1,""]},"discord.Streaming":{assets:[0,1,1,""],details:[0,1,1,""],game:[0,1,1,""],name:[0,1,1,""],platform:[0,1,1,""],twitch_name:[0,2,1,""],type:[0,2,1,""],url:[0,1,1,""]},"discord.SyncWebhook":{"delete":[0,3,1,""],avatar:[0,2,1,""],channel:[0,2,1,""],channel_id:[0,1,1,""],created_at:[0,2,1,""],delete_message:[0,3,1,""],edit:[0,3,1,""],edit_message:[0,3,1,""],fetch:[0,3,1,""],fetch_message:[0,3,1,""],from_url:[0,3,1,""],guild:[0,2,1,""],guild_id:[0,1,1,""],id:[0,1,1,""],is_authenticated:[0,3,1,""],is_partial:[0,3,1,""],name:[0,1,1,""],partial:[0,3,1,""],send:[0,3,1,""],source_channel:[0,1,1,""],source_guild:[0,1,1,""],token:[0,1,1,""],type:[0,1,1,""],url:[0,2,1,""],user:[0,1,1,""]},"discord.SyncWebhookMessage":{"delete":[0,3,1,""],edit:[0,3,1,""]},"discord.SystemChannelFlags":{guild_reminder_notifications:[0,1,1,""],join_notifications:[0,1,1,""],premium_subscriptions:[0,1,1,""],value:[0,1,1,""]},"discord.Team":{icon:[0,2,1,""],id:[0,1,1,""],members:[0,1,1,""],name:[0,1,1,""],owner:[0,2,1,""],owner_id:[0,1,1,""]},"discord.TeamMember":{avatar:[0,1,1,""],bot:[0,1,1,""],discriminator:[0,1,1,""],id:[0,1,1,""],membership_state:[0,1,1,""],name:[0,1,1,""],team:[0,1,1,""]},"discord.TeamMembershipState":{accepted:[0,1,1,""],invited:[0,1,1,""]},"discord.Template":{"delete":[0,3,1,""],code:[0,1,1,""],create_guild:[0,3,1,""],created_at:[0,1,1,""],creator:[0,1,1,""],description:[0,1,1,""],edit:[0,3,1,""],is_dirty:[0,1,1,""],name:[0,1,1,""],source_guild:[0,1,1,""],sync:[0,3,1,""],updated_at:[0,1,1,""],url:[0,2,1,""],uses:[0,1,1,""]},"discord.TextChannel":{"delete":[0,3,1,""],archived_threads:[0,3,1,""],bots:[0,2,1,""],category:[0,2,1,""],category_id:[0,1,1,""],changed_roles:[0,2,1,""],clone:[0,3,1,""],create_invite:[0,3,1,""],create_thread:[0,3,1,""],create_webhook:[0,3,1,""],created_at:[0,2,1,""],default_auto_archive_duration:[0,1,1,""],delete_messages:[0,3,1,""],edit:[0,3,1,""],fetch_message:[0,3,1,""],follow:[0,3,1,""],get_partial_message:[0,3,1,""],get_thread:[0,3,1,""],guild:[0,1,1,""],history:[0,3,1,""],humans:[0,2,1,""],id:[0,1,1,""],invites:[0,3,1,""],is_news:[0,3,1,""],is_nsfw:[0,3,1,""],last_message:[0,2,1,""],last_message_id:[0,1,1,""],members:[0,2,1,""],mention:[0,2,1,""],move:[0,3,1,""],name:[0,1,1,""],nsfw:[0,1,1,""],overwrites:[0,2,1,""],overwrites_for:[0,3,1,""],permissions_for:[0,3,1,""],permissions_synced:[0,2,1,""],pins:[0,3,1,""],position:[0,1,1,""],purge:[0,3,1,""],send:[0,3,1,""],set_permissions:[0,3,1,""],slowmode_delay:[0,1,1,""],threads:[0,2,1,""],topic:[0,1,1,""],trigger_typing:[0,3,1,""],type:[0,2,1,""],typing:[0,3,1,""],webhooks:[0,3,1,""]},"discord.Thread":{"delete":[0,3,1,""],add_user:[0,3,1,""],archive_timestamp:[0,1,1,""],archived:[0,1,1,""],archiver_id:[0,1,1,""],auto_archive_duration:[0,1,1,""],category:[0,2,1,""],category_id:[0,2,1,""],delete_messages:[0,3,1,""],edit:[0,3,1,""],fetch_members:[0,3,1,""],fetch_message:[0,3,1,""],get_partial_message:[0,3,1,""],guild:[0,1,1,""],history:[0,3,1,""],id:[0,1,1,""],invitable:[0,1,1,""],is_news:[0,3,1,""],is_nsfw:[0,3,1,""],is_private:[0,3,1,""],join:[0,3,1,""],last_message:[0,2,1,""],last_message_id:[0,1,1,""],leave:[0,3,1,""],locked:[0,1,1,""],me:[0,1,1,""],member_count:[0,1,1,""],members:[0,2,1,""],mention:[0,2,1,""],message_count:[0,1,1,""],name:[0,1,1,""],owner:[0,2,1,""],owner_id:[0,1,1,""],parent:[0,2,1,""],parent_id:[0,1,1,""],permissions_for:[0,3,1,""],pins:[0,3,1,""],purge:[0,3,1,""],remove_user:[0,3,1,""],send:[0,3,1,""],slowmode_delay:[0,1,1,""],trigger_typing:[0,3,1,""],type:[0,2,1,""],typing:[0,3,1,""]},"discord.ThreadMember":{fetch_member:[0,3,1,""],get_member:[0,3,1,""],id:[0,1,1,""],joined_at:[0,1,1,""],thread:[0,2,1,""],thread_id:[0,1,1,""]},"discord.User":{accent_color:[0,2,1,""],accent_colour:[0,2,1,""],avatar:[0,2,1,""],banner:[0,2,1,""],bot:[0,1,1,""],color:[0,2,1,""],colour:[0,2,1,""],create_dm:[0,3,1,""],created_at:[0,2,1,""],default_avatar:[0,2,1,""],discriminator:[0,1,1,""],display_avatar:[0,2,1,""],display_name:[0,2,1,""],dm_channel:[0,2,1,""],fetch_message:[0,3,1,""],history:[0,3,1,""],id:[0,1,1,""],mention:[0,2,1,""],mentioned_in:[0,3,1,""],mutual_guilds:[0,2,1,""],name:[0,1,1,""],pins:[0,3,1,""],public_flags:[0,2,1,""],send:[0,3,1,""],system:[0,1,1,""],trigger_typing:[0,3,1,""],typing:[0,3,1,""]},"discord.UserFlags":{bug_hunter:[0,1,1,""],bug_hunter_level_2:[0,1,1,""],discord_certified_moderator:[0,1,1,""],early_supporter:[0,1,1,""],has_unread_urgent_messages:[0,1,1,""],hypesquad:[0,1,1,""],hypesquad_balance:[0,1,1,""],hypesquad_bravery:[0,1,1,""],hypesquad_brilliance:[0,1,1,""],mfa_sms:[0,1,1,""],partner:[0,1,1,""],premium_promo_dismissed:[0,1,1,""],staff:[0,1,1,""],system:[0,1,1,""],team_user:[0,1,1,""],verified_bot:[0,1,1,""],verified_bot_developer:[0,1,1,""]},"discord.VerificationLevel":{high:[0,1,1,""],highest:[0,1,1,""],low:[0,1,1,""],medium:[0,1,1,""],none:[0,1,1,""]},"discord.VideoQualityMode":{auto:[0,1,1,""],full:[0,1,1,""]},"discord.VoiceChannel":{"delete":[0,3,1,""],bitrate:[0,1,1,""],category:[0,2,1,""],category_id:[0,1,1,""],changed_roles:[0,2,1,""],clone:[0,3,1,""],connect:[0,3,1,""],create_invite:[0,3,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],guild:[0,1,1,""],id:[0,1,1,""],invites:[0,3,1,""],members:[0,2,1,""],mention:[0,2,1,""],move:[0,3,1,""],name:[0,1,1,""],overwrites:[0,2,1,""],overwrites_for:[0,3,1,""],permissions_for:[0,3,1,""],permissions_synced:[0,2,1,""],position:[0,1,1,""],rtc_region:[0,1,1,""],set_permissions:[0,3,1,""],type:[0,2,1,""],user_limit:[0,1,1,""],video_quality_mode:[0,1,1,""],voice_states:[0,2,1,""]},"discord.VoiceClient":{average_latency:[0,2,1,""],channel:[0,1,1,""],disconnect:[0,3,1,""],endpoint:[0,1,1,""],guild:[0,2,1,""],is_connected:[0,3,1,""],is_paused:[0,3,1,""],is_playing:[0,3,1,""],latency:[0,2,1,""],loop:[0,1,1,""],move_to:[0,3,1,""],pause:[0,3,1,""],play:[0,3,1,""],resume:[0,3,1,""],send_audio_packet:[0,3,1,""],session_id:[0,1,1,""],source:[0,2,1,""],stop:[0,3,1,""],token:[0,1,1,""],user:[0,2,1,""]},"discord.VoiceProtocol":{cleanup:[0,3,1,""],connect:[0,3,1,""],disconnect:[0,3,1,""],on_voice_server_update:[0,3,1,""],on_voice_state_update:[0,3,1,""]},"discord.VoiceRegion":{amsterdam:[0,1,1,""],brazil:[0,1,1,""],dubai:[0,1,1,""],eu_central:[0,1,1,""],eu_west:[0,1,1,""],europe:[0,1,1,""],frankfurt:[0,1,1,""],hongkong:[0,1,1,""],india:[0,1,1,""],japan:[0,1,1,""],london:[0,1,1,""],russia:[0,1,1,""],singapore:[0,1,1,""],south_korea:[0,1,1,""],southafrica:[0,1,1,""],sydney:[0,1,1,""],us_central:[0,1,1,""],us_east:[0,1,1,""],us_south:[0,1,1,""],us_west:[0,1,1,""],vip_amsterdam:[0,1,1,""],vip_us_east:[0,1,1,""],vip_us_west:[0,1,1,""]},"discord.VoiceState":{afk:[0,1,1,""],channel:[0,1,1,""],deaf:[0,1,1,""],mute:[0,1,1,""],requested_to_speak_at:[0,1,1,""],self_deaf:[0,1,1,""],self_mute:[0,1,1,""],self_stream:[0,1,1,""],self_video:[0,1,1,""],suppress:[0,1,1,""]},"discord.Webhook":{"delete":[0,3,1,""],avatar:[0,2,1,""],channel:[0,2,1,""],channel_id:[0,1,1,""],created_at:[0,2,1,""],delete_message:[0,3,1,""],edit:[0,3,1,""],edit_message:[0,3,1,""],fetch:[0,3,1,""],fetch_message:[0,3,1,""],from_url:[0,3,1,""],guild:[0,2,1,""],guild_id:[0,1,1,""],id:[0,1,1,""],is_authenticated:[0,3,1,""],is_partial:[0,3,1,""],name:[0,1,1,""],partial:[0,3,1,""],send:[0,3,1,""],source_channel:[0,1,1,""],source_guild:[0,1,1,""],token:[0,1,1,""],type:[0,1,1,""],url:[0,2,1,""],user:[0,1,1,""]},"discord.WebhookMessage":{"delete":[0,3,1,""],edit:[0,3,1,""]},"discord.WebhookType":{application:[0,1,1,""],channel_follower:[0,1,1,""],incoming:[0,1,1,""]},"discord.Widget":{channels:[0,1,1,""],created_at:[0,2,1,""],fetch_invite:[0,3,1,""],id:[0,1,1,""],invite_url:[0,2,1,""],json_url:[0,2,1,""],members:[0,1,1,""],name:[0,1,1,""]},"discord.WidgetChannel":{created_at:[0,2,1,""],id:[0,1,1,""],mention:[0,2,1,""],name:[0,1,1,""],position:[0,1,1,""]},"discord.WidgetMember":{accent_color:[0,2,1,""],accent_colour:[0,2,1,""],activity:[0,1,1,""],avatar:[0,1,1,""],banner:[0,2,1,""],bot:[0,1,1,""],color:[0,2,1,""],colour:[0,2,1,""],connected_channel:[0,1,1,""],created_at:[0,2,1,""],deafened:[0,1,1,""],default_avatar:[0,2,1,""],discriminator:[0,1,1,""],display_avatar:[0,2,1,""],display_name:[0,2,1,""],id:[0,1,1,""],mention:[0,2,1,""],mentioned_in:[0,3,1,""],muted:[0,1,1,""],name:[0,1,1,""],nick:[0,1,1,""],public_flags:[0,2,1,""],status:[0,1,1,""],suppress:[0,1,1,""]},"discord.abc":{Connectable:[0,0,1,""],GuildChannel:[0,0,1,""],Messageable:[0,0,1,""],PrivateChannel:[0,0,1,""],Snowflake:[0,0,1,""],User:[0,0,1,""]},"discord.abc.GuildChannel":{"delete":[0,3,1,""],category:[0,2,1,""],changed_roles:[0,2,1,""],clone:[0,3,1,""],create_invite:[0,3,1,""],created_at:[0,2,1,""],guild:[0,1,1,""],invites:[0,3,1,""],mention:[0,2,1,""],move:[0,3,1,""],name:[0,1,1,""],overwrites:[0,2,1,""],overwrites_for:[0,3,1,""],permissions_for:[0,3,1,""],permissions_synced:[0,2,1,""],position:[0,1,1,""],set_permissions:[0,3,1,""]},"discord.abc.Messageable":{fetch_message:[0,3,1,""],history:[0,3,1,""],pins:[0,3,1,""],send:[0,3,1,""],trigger_typing:[0,3,1,""],typing:[0,3,1,""]},"discord.abc.PrivateChannel":{me:[0,1,1,""]},"discord.abc.Snowflake":{id:[0,1,1,""]},"discord.abc.User":{avatar:[0,1,1,""],bot:[0,1,1,""],discriminator:[0,1,1,""],display_name:[0,2,1,""],mention:[0,2,1,""],name:[0,1,1,""]},"discord.discord.ext.commands":{on_command:[2,6,1,""],on_command_completion:[2,6,1,""],on_command_error:[2,6,1,""]},"discord.ext.commands":{ArgumentParsingError:[2,4,1,""],AutoShardedBot:[2,0,1,""],BadArgument:[2,4,1,""],BadBoolArgument:[2,4,1,""],BadColourArgument:[2,4,1,""],BadFlagArgument:[2,4,1,""],BadInviteArgument:[2,4,1,""],BadLiteralArgument:[2,4,1,""],BadUnionArgument:[2,4,1,""],Bot:[2,0,1,""],BotMissingAnyRole:[2,4,1,""],BotMissingPermissions:[2,4,1,""],BotMissingRole:[2,4,1,""],BucketType:[2,0,1,""],CategoryChannelConverter:[2,0,1,""],ChannelNotFound:[2,4,1,""],ChannelNotReadable:[2,4,1,""],CheckAnyFailure:[2,4,1,""],CheckFailure:[2,4,1,""],Cog:[2,0,1,""],CogMeta:[2,0,1,""],ColourConverter:[2,0,1,""],Command:[2,0,1,""],CommandError:[2,4,1,""],CommandInvokeError:[2,4,1,""],CommandNotFound:[2,4,1,""],CommandOnCooldown:[2,4,1,""],CommandRegistrationError:[2,4,1,""],Context:[2,0,1,""],ConversionError:[2,4,1,""],Converter:[2,0,1,""],Cooldown:[2,0,1,""],DefaultHelpCommand:[2,0,1,""],DisabledCommand:[2,4,1,""],EmojiConverter:[2,0,1,""],EmojiNotFound:[2,4,1,""],ExpectedClosingQuoteError:[2,4,1,""],ExtensionAlreadyLoaded:[2,4,1,""],ExtensionError:[2,4,1,""],ExtensionFailed:[2,4,1,""],ExtensionNotFound:[2,4,1,""],ExtensionNotLoaded:[2,4,1,""],Flag:[2,0,1,""],FlagConverter:[2,0,1,""],FlagError:[2,4,1,""],GameConverter:[2,0,1,""],Greedy:[2,0,1,""],Group:[2,0,1,""],GroupMixin:[2,0,1,""],GuildChannelConverter:[2,0,1,""],GuildConverter:[2,0,1,""],GuildNotFound:[2,4,1,""],GuildStickerConverter:[2,0,1,""],GuildStickerNotFound:[2,4,1,""],HelpCommand:[2,0,1,""],InvalidEndOfQuotedStringError:[2,4,1,""],InviteConverter:[2,0,1,""],MaxConcurrencyReached:[2,4,1,""],MemberConverter:[2,0,1,""],MemberNotFound:[2,4,1,""],MessageConverter:[2,0,1,""],MessageNotFound:[2,4,1,""],MinimalHelpCommand:[2,0,1,""],MissingAnyRole:[2,4,1,""],MissingFlagArgument:[2,4,1,""],MissingPermissions:[2,4,1,""],MissingRequiredArgument:[2,4,1,""],MissingRequiredFlag:[2,4,1,""],MissingRole:[2,4,1,""],NSFWChannelRequired:[2,4,1,""],NoEntryPointError:[2,4,1,""],NoPrivateMessage:[2,4,1,""],NotOwner:[2,4,1,""],ObjectConverter:[2,0,1,""],Option:[2,0,1,""],Paginator:[2,0,1,""],PartialEmojiConversionFailure:[2,4,1,""],PartialEmojiConverter:[2,0,1,""],PartialMessageConverter:[2,0,1,""],PrivateMessageOnly:[2,4,1,""],RoleConverter:[2,0,1,""],RoleNotFound:[2,4,1,""],StageChannelConverter:[2,0,1,""],StoreChannelConverter:[2,0,1,""],TextChannelConverter:[2,0,1,""],ThreadConverter:[2,0,1,""],ThreadNotFound:[2,4,1,""],TooManyArguments:[2,4,1,""],TooManyFlags:[2,4,1,""],UnexpectedQuoteError:[2,4,1,""],UserConverter:[2,0,1,""],UserInputError:[2,4,1,""],UserNotFound:[2,4,1,""],VoiceChannelConverter:[2,0,1,""],after_invoke:[2,6,1,""],before_invoke:[2,6,1,""],bot_has_any_role:[2,6,1,""],bot_has_guild_permissions:[2,6,1,""],bot_has_permissions:[2,6,1,""],bot_has_role:[2,6,1,""],check:[2,6,1,""],check_any:[2,6,1,""],clean_content:[2,0,1,""],command:[2,6,1,""],cooldown:[2,6,1,""],dm_only:[2,6,1,""],dynamic_cooldown:[2,6,1,""],flag:[2,6,1,""],group:[2,6,1,""],guild_only:[2,6,1,""],has_any_role:[2,6,1,""],has_guild_permissions:[2,6,1,""],has_permissions:[2,6,1,""],has_role:[2,6,1,""],is_nsfw:[2,6,1,""],is_owner:[2,6,1,""],max_concurrency:[2,6,1,""],run_converters:[2,6,1,""],when_mentioned:[2,6,1,""],when_mentioned_or:[2,6,1,""]},"discord.ext.commands.BadBoolArgument":{argument:[2,1,1,""]},"discord.ext.commands.BadColourArgument":{argument:[2,1,1,""]},"discord.ext.commands.BadFlagArgument":{flag:[2,1,1,""]},"discord.ext.commands.BadInviteArgument":{argument:[2,1,1,""]},"discord.ext.commands.BadLiteralArgument":{errors:[2,1,1,""],literals:[2,1,1,""],param:[2,1,1,""]},"discord.ext.commands.BadUnionArgument":{converters:[2,1,1,""],errors:[2,1,1,""],param:[2,1,1,""]},"discord.ext.commands.Bot":{activity:[2,2,1,""],add_check:[2,3,1,""],add_cog:[2,3,1,""],add_command:[2,3,1,""],add_listener:[2,3,1,""],add_view:[2,3,1,""],after_invoke:[2,3,1,""],allowed_mentions:[2,2,1,""],application_flags:[2,2,1,""],application_id:[2,2,1,""],application_info:[2,3,1,""],before_identify_hook:[2,3,1,""],before_invoke:[2,3,1,""],cached_messages:[2,2,1,""],case_insensitive:[2,1,1,""],change_presence:[2,3,1,""],check:[2,3,1,""],check_once:[2,3,1,""],clear:[2,3,1,""],close:[2,3,1,""],cogs:[2,2,1,""],command:[2,3,1,""],command_prefix:[2,1,1,""],commands:[2,2,1,""],connect:[2,3,1,""],create_dm:[2,3,1,""],create_guild:[2,3,1,""],delete_invite:[2,3,1,""],description:[2,1,1,""],emojis:[2,2,1,""],event:[2,3,1,""],extensions:[2,2,1,""],fetch_channel:[2,3,1,""],fetch_guild:[2,3,1,""],fetch_guilds:[2,3,1,""],fetch_invite:[2,3,1,""],fetch_premium_sticker_packs:[2,3,1,""],fetch_stage_instance:[2,3,1,""],fetch_sticker:[2,3,1,""],fetch_template:[2,3,1,""],fetch_user:[2,3,1,""],fetch_webhook:[2,3,1,""],fetch_widget:[2,3,1,""],get_all_channels:[2,3,1,""],get_all_members:[2,3,1,""],get_channel:[2,3,1,""],get_cog:[2,3,1,""],get_command:[2,3,1,""],get_context:[2,3,1,""],get_emoji:[2,3,1,""],get_guild:[2,3,1,""],get_partial_messageable:[2,3,1,""],get_prefix:[2,3,1,""],get_stage_instance:[2,3,1,""],get_sticker:[2,3,1,""],get_user:[2,3,1,""],group:[2,3,1,""],guilds:[2,2,1,""],help_command:[2,1,1,""],intents:[2,2,1,""],invoke:[2,3,1,""],is_closed:[2,3,1,""],is_owner:[2,3,1,""],is_ready:[2,3,1,""],is_ws_ratelimited:[2,3,1,""],latency:[2,2,1,""],listen:[2,3,1,""],load_extension:[2,3,1,""],login:[2,3,1,""],message_commands:[2,1,1,""],on_command_error:[2,3,1,""],on_error:[2,3,1,""],owner_id:[2,1,1,""],owner_ids:[2,1,1,""],persistent_views:[2,2,1,""],populate_owners:[2,3,1,""],private_channels:[2,2,1,""],process_commands:[2,3,1,""],process_slash_commands:[2,3,1,""],reload_extension:[2,3,1,""],remove_check:[2,3,1,""],remove_cog:[2,3,1,""],remove_command:[2,3,1,""],remove_listener:[2,3,1,""],run:[2,3,1,""],setup:[2,3,1,""],slash_command_guilds:[2,1,1,""],slash_commands:[2,1,1,""],start:[2,3,1,""],status:[2,2,1,""],stickers:[2,2,1,""],strip_after_prefix:[2,1,1,""],try_owners:[2,3,1,""],try_user:[2,3,1,""],unload_extension:[2,3,1,""],user:[2,2,1,""],users:[2,2,1,""],voice_clients:[2,2,1,""],wait_for:[2,3,1,""],wait_until_ready:[2,3,1,""],walk_commands:[2,3,1,""]},"discord.ext.commands.BotMissingAnyRole":{missing_roles:[2,1,1,""]},"discord.ext.commands.BotMissingPermissions":{missing_permissions:[2,1,1,""]},"discord.ext.commands.BotMissingRole":{missing_role:[2,1,1,""]},"discord.ext.commands.BucketType":{"default":[2,1,1,""],category:[2,1,1,""],channel:[2,1,1,""],guild:[2,1,1,""],member:[2,1,1,""],role:[2,1,1,""],user:[2,1,1,""]},"discord.ext.commands.CategoryChannelConverter":{convert:[2,3,1,""]},"discord.ext.commands.ChannelNotFound":{argument:[2,1,1,""]},"discord.ext.commands.ChannelNotReadable":{argument:[2,1,1,""]},"discord.ext.commands.CheckAnyFailure":{checks:[2,1,1,""],errors:[2,1,1,""]},"discord.ext.commands.Cog":{bot_check:[2,3,1,""],bot_check_once:[2,3,1,""],cog_after_invoke:[2,3,1,""],cog_before_invoke:[2,3,1,""],cog_check:[2,3,1,""],cog_command_error:[2,3,1,""],cog_unload:[2,3,1,""],description:[2,2,1,""],get_commands:[2,3,1,""],get_listeners:[2,3,1,""],has_error_handler:[2,3,1,""],listener:[2,3,1,""],qualified_name:[2,2,1,""],walk_commands:[2,3,1,""]},"discord.ext.commands.CogMeta":{command_attrs:[2,1,1,""],description:[2,1,1,""],name:[2,1,1,""]},"discord.ext.commands.ColourConverter":{convert:[2,3,1,""]},"discord.ext.commands.Command":{__call__:[2,3,1,""],add_check:[2,3,1,""],after_invoke:[2,3,1,""],aliases:[2,1,1,""],before_invoke:[2,3,1,""],brief:[2,1,1,""],callback:[2,1,1,""],can_run:[2,3,1,""],checks:[2,1,1,""],clean_params:[2,2,1,""],cog:[2,1,1,""],cog_name:[2,2,1,""],cooldown_after_parsing:[2,1,1,""],copy:[2,3,1,""],description:[2,1,1,""],enabled:[2,1,1,""],error:[2,3,1,""],extras:[2,1,1,""],full_parent_name:[2,2,1,""],get_cooldown_retry_after:[2,3,1,""],has_error_handler:[2,3,1,""],help:[2,1,1,""],hidden:[2,1,1,""],ignore_extra:[2,1,1,""],invoked_subcommand:[2,1,1,""],is_on_cooldown:[2,3,1,""],message_command:[2,1,1,""],name:[2,1,1,""],option_descriptions:[2,1,1,""],parent:[2,1,1,""],parents:[2,2,1,""],qualified_name:[2,2,1,""],remove_check:[2,3,1,""],require_var_positional:[2,1,1,""],reset_cooldown:[2,3,1,""],rest_is_raw:[2,1,1,""],root_parent:[2,2,1,""],short_doc:[2,2,1,""],signature:[2,2,1,""],slash_command:[2,1,1,""],slash_command_guilds:[2,1,1,""],update:[2,3,1,""],usage:[2,1,1,""]},"discord.ext.commands.CommandInvokeError":{original:[2,1,1,""]},"discord.ext.commands.CommandOnCooldown":{cooldown:[2,1,1,""],retry_after:[2,1,1,""],type:[2,1,1,""]},"discord.ext.commands.CommandRegistrationError":{alias_conflict:[2,1,1,""],name:[2,1,1,""]},"discord.ext.commands.Context":{args:[2,1,1,""],author:[2,1,1,""],author_permissions:[2,3,1,""],bot:[2,1,1,""],channel:[2,1,1,""],clean_prefix:[2,2,1,""],cog:[2,2,1,""],command:[2,1,1,""],command_failed:[2,1,1,""],current_parameter:[2,1,1,""],fetch_message:[2,3,1,""],guild:[2,1,1,""],history:[2,3,1,""],invoke:[2,3,1,""],invoked_parents:[2,1,1,""],invoked_subcommand:[2,1,1,""],invoked_with:[2,1,1,""],kwargs:[2,1,1,""],me:[2,1,1,""],message:[2,1,1,""],pins:[2,3,1,""],prefix:[2,1,1,""],reinvoke:[2,3,1,""],reply:[2,3,1,""],send:[2,3,1,""],send_help:[2,3,1,""],subcommand_passed:[2,1,1,""],trigger_typing:[2,3,1,""],typing:[2,3,1,""],valid:[2,2,1,""],voice_client:[2,2,1,""]},"discord.ext.commands.ConversionError":{converter:[2,1,1,""],original:[2,1,1,""]},"discord.ext.commands.Converter":{convert:[2,3,1,""]},"discord.ext.commands.Cooldown":{copy:[2,3,1,""],get_retry_after:[2,3,1,""],get_tokens:[2,3,1,""],per:[2,1,1,""],rate:[2,1,1,""],reset:[2,3,1,""],update_rate_limit:[2,3,1,""]},"discord.ext.commands.DefaultHelpCommand":{add_command_formatting:[2,3,1,""],add_indented_commands:[2,3,1,""],commands_heading:[2,1,1,""],dm_help:[2,1,1,""],dm_help_threshold:[2,1,1,""],get_destination:[2,3,1,""],get_ending_note:[2,3,1,""],indent:[2,1,1,""],no_category:[2,1,1,""],paginator:[2,1,1,""],send_pages:[2,3,1,""],shorten_text:[2,3,1,""],sort_commands:[2,1,1,""],width:[2,1,1,""]},"discord.ext.commands.EmojiConverter":{convert:[2,3,1,""]},"discord.ext.commands.EmojiNotFound":{argument:[2,1,1,""]},"discord.ext.commands.ExpectedClosingQuoteError":{close_quote:[2,1,1,""]},"discord.ext.commands.ExtensionError":{name:[2,1,1,""]},"discord.ext.commands.ExtensionFailed":{name:[2,1,1,""],original:[2,1,1,""]},"discord.ext.commands.ExtensionNotFound":{name:[2,1,1,""]},"discord.ext.commands.Flag":{"default":[2,1,1,""],aliases:[2,1,1,""],annotation:[2,1,1,""],attribute:[2,1,1,""],max_args:[2,1,1,""],name:[2,1,1,""],override:[2,1,1,""],required:[2,2,1,""]},"discord.ext.commands.FlagConverter":{convert:[2,3,1,""],get_flags:[2,3,1,""]},"discord.ext.commands.GameConverter":{convert:[2,3,1,""]},"discord.ext.commands.Group":{add_check:[2,3,1,""],add_command:[2,3,1,""],after_invoke:[2,3,1,""],before_invoke:[2,3,1,""],can_run:[2,3,1,""],case_insensitive:[2,1,1,""],clean_params:[2,2,1,""],cog_name:[2,2,1,""],command:[2,3,1,""],commands:[2,2,1,""],copy:[2,3,1,""],error:[2,3,1,""],full_parent_name:[2,2,1,""],get_command:[2,3,1,""],get_cooldown_retry_after:[2,3,1,""],group:[2,3,1,""],has_error_handler:[2,3,1,""],invoke_without_command:[2,1,1,""],is_on_cooldown:[2,3,1,""],parents:[2,2,1,""],qualified_name:[2,2,1,""],remove_check:[2,3,1,""],remove_command:[2,3,1,""],reset_cooldown:[2,3,1,""],root_parent:[2,2,1,""],short_doc:[2,2,1,""],signature:[2,2,1,""],update:[2,3,1,""],walk_commands:[2,3,1,""]},"discord.ext.commands.GroupMixin":{add_command:[2,3,1,""],all_commands:[2,1,1,""],case_insensitive:[2,1,1,""],command:[2,3,1,""],commands:[2,2,1,""],get_command:[2,3,1,""],group:[2,3,1,""],remove_command:[2,3,1,""],walk_commands:[2,3,1,""]},"discord.ext.commands.GuildChannelConverter":{convert:[2,3,1,""]},"discord.ext.commands.GuildConverter":{convert:[2,3,1,""]},"discord.ext.commands.GuildNotFound":{argument:[2,1,1,""]},"discord.ext.commands.GuildStickerConverter":{convert:[2,3,1,""]},"discord.ext.commands.GuildStickerNotFound":{argument:[2,1,1,""]},"discord.ext.commands.HelpCommand":{add_check:[2,3,1,""],cog:[2,2,1,""],command_attrs:[2,1,1,""],command_callback:[2,3,1,""],command_not_found:[2,3,1,""],context:[2,1,1,""],filter_commands:[2,3,1,""],get_bot_mapping:[2,3,1,""],get_command_signature:[2,3,1,""],get_destination:[2,3,1,""],get_max_size:[2,3,1,""],invoked_with:[2,2,1,""],on_help_command_error:[2,3,1,""],prepare_help_command:[2,3,1,""],remove_check:[2,3,1,""],remove_mentions:[2,3,1,""],send_bot_help:[2,3,1,""],send_cog_help:[2,3,1,""],send_command_help:[2,3,1,""],send_error_message:[2,3,1,""],send_group_help:[2,3,1,""],show_hidden:[2,1,1,""],subcommand_not_found:[2,3,1,""],verify_checks:[2,1,1,""]},"discord.ext.commands.InvalidEndOfQuotedStringError":{"char":[2,1,1,""]},"discord.ext.commands.InviteConverter":{convert:[2,3,1,""]},"discord.ext.commands.MaxConcurrencyReached":{number:[2,1,1,""],per:[2,1,1,""]},"discord.ext.commands.MemberConverter":{convert:[2,3,1,""]},"discord.ext.commands.MemberNotFound":{argument:[2,1,1,""]},"discord.ext.commands.MessageConverter":{convert:[2,3,1,""]},"discord.ext.commands.MessageNotFound":{argument:[2,1,1,""]},"discord.ext.commands.MinimalHelpCommand":{add_aliases_formatting:[2,3,1,""],add_bot_commands_formatting:[2,3,1,""],add_command_formatting:[2,3,1,""],add_subcommand_formatting:[2,3,1,""],aliases_heading:[2,1,1,""],commands_heading:[2,1,1,""],dm_help:[2,1,1,""],dm_help_threshold:[2,1,1,""],get_command_signature:[2,3,1,""],get_destination:[2,3,1,""],get_ending_note:[2,3,1,""],get_opening_note:[2,3,1,""],no_category:[2,1,1,""],paginator:[2,1,1,""],send_pages:[2,3,1,""],sort_commands:[2,1,1,""]},"discord.ext.commands.MissingAnyRole":{missing_roles:[2,1,1,""]},"discord.ext.commands.MissingFlagArgument":{flag:[2,1,1,""]},"discord.ext.commands.MissingPermissions":{missing_permissions:[2,1,1,""]},"discord.ext.commands.MissingRequiredArgument":{param:[2,1,1,""]},"discord.ext.commands.MissingRequiredFlag":{flag:[2,1,1,""]},"discord.ext.commands.MissingRole":{missing_role:[2,1,1,""]},"discord.ext.commands.ObjectConverter":{convert:[2,3,1,""]},"discord.ext.commands.Option":{"default":[2,1,1,""],description:[2,1,1,""]},"discord.ext.commands.Paginator":{add_line:[2,3,1,""],clear:[2,3,1,""],close_page:[2,3,1,""],linesep:[2,1,1,""],max_size:[2,1,1,""],pages:[2,2,1,""],prefix:[2,1,1,""],suffix:[2,1,1,""]},"discord.ext.commands.PartialEmojiConversionFailure":{argument:[2,1,1,""]},"discord.ext.commands.PartialEmojiConverter":{convert:[2,3,1,""]},"discord.ext.commands.PartialMessageConverter":{convert:[2,3,1,""]},"discord.ext.commands.RoleConverter":{convert:[2,3,1,""]},"discord.ext.commands.RoleNotFound":{argument:[2,1,1,""]},"discord.ext.commands.StageChannelConverter":{convert:[2,3,1,""]},"discord.ext.commands.StoreChannelConverter":{convert:[2,3,1,""]},"discord.ext.commands.TextChannelConverter":{convert:[2,3,1,""]},"discord.ext.commands.ThreadConverter":{convert:[2,3,1,""]},"discord.ext.commands.ThreadNotFound":{argument:[2,1,1,""]},"discord.ext.commands.TooManyFlags":{flag:[2,1,1,""],values:[2,1,1,""]},"discord.ext.commands.UnexpectedQuoteError":{quote:[2,1,1,""]},"discord.ext.commands.UserConverter":{convert:[2,3,1,""]},"discord.ext.commands.UserNotFound":{argument:[2,1,1,""]},"discord.ext.commands.VoiceChannelConverter":{convert:[2,3,1,""]},"discord.ext.commands.clean_content":{convert:[2,3,1,""],escape_markdown:[2,1,1,""],fix_channel_mentions:[2,1,1,""],remove_markdown:[2,1,1,""],use_nicknames:[2,1,1,""]},"discord.ext.tasks":{Loop:[8,0,1,""],loop:[8,6,1,""]},"discord.ext.tasks.Loop":{__call__:[8,3,1,""],add_exception_type:[8,3,1,""],after_loop:[8,3,1,""],before_loop:[8,3,1,""],cancel:[8,3,1,""],change_interval:[8,3,1,""],clear_exception_types:[8,3,1,""],current_loop:[8,2,1,""],error:[8,3,1,""],failed:[8,3,1,""],get_task:[8,3,1,""],hours:[8,2,1,""],is_being_cancelled:[8,3,1,""],is_running:[8,3,1,""],minutes:[8,2,1,""],next_iteration:[8,2,1,""],remove_exception_type:[8,3,1,""],restart:[8,3,1,""],seconds:[8,2,1,""],start:[8,3,1,""],stop:[8,3,1,""],time:[8,2,1,""]},"discord.opus":{OpusError:[0,4,1,""],OpusNotLoaded:[0,4,1,""],is_loaded:[0,6,1,""],load_opus:[0,6,1,""]},"discord.opus.OpusError":{code:[0,1,1,""]},"discord.ui":{Button:[0,0,1,""],Item:[0,0,1,""],Select:[0,0,1,""],View:[0,0,1,""],button:[0,6,1,""],select:[0,6,1,""]},"discord.ui.Button":{callback:[0,3,1,""],custom_id:[0,2,1,""],disabled:[0,2,1,""],emoji:[0,2,1,""],label:[0,2,1,""],style:[0,2,1,""],url:[0,2,1,""],view:[0,2,1,""]},"discord.ui.Item":{callback:[0,3,1,""],view:[0,2,1,""]},"discord.ui.Select":{add_option:[0,3,1,""],append_option:[0,3,1,""],callback:[0,3,1,""],custom_id:[0,2,1,""],disabled:[0,2,1,""],max_values:[0,2,1,""],min_values:[0,2,1,""],options:[0,2,1,""],placeholder:[0,2,1,""],values:[0,2,1,""],view:[0,2,1,""]},"discord.ui.View":{add_item:[0,3,1,""],children:[0,1,1,""],clear_items:[0,3,1,""],from_message:[0,3,1,""],interaction_check:[0,3,1,""],is_dispatching:[0,3,1,""],is_finished:[0,3,1,""],is_persistent:[0,3,1,""],on_error:[0,3,1,""],on_timeout:[0,3,1,""],remove_item:[0,3,1,""],stop:[0,3,1,""],timeout:[0,1,1,""],wait:[0,3,1,""]},"discord.utils":{as_chunks:[0,6,1,""],escape_markdown:[0,6,1,""],escape_mentions:[0,6,1,""],find:[0,6,1,""],format_dt:[0,6,1,""],get:[0,6,1,""],oauth_url:[0,6,1,""],remove_markdown:[0,6,1,""],resolve_invite:[0,6,1,""],resolve_template:[0,6,1,""],sleep_until:[0,6,1,""],snowflake_time:[0,6,1,""],utcnow:[0,6,1,""]},discord:{ActionRow:[0,0,1,""],Activity:[0,0,1,""],ActivityType:[0,0,1,""],AllowedMentions:[0,0,1,""],AppInfo:[0,0,1,""],ApplicationFlags:[0,0,1,""],Asset:[0,0,1,""],AsyncIterator:[0,0,1,""],Attachment:[0,0,1,""],AudioSource:[0,0,1,""],AuditLogAction:[0,0,1,""],AuditLogActionCategory:[0,0,1,""],AuditLogChanges:[0,0,1,""],AuditLogDiff:[0,0,1,""],AuditLogEntry:[0,0,1,""],AutoShardedClient:[0,0,1,""],BanEntry:[0,0,1,""],BaseActivity:[0,0,1,""],BotIntegration:[0,0,1,""],Button:[0,0,1,""],ButtonStyle:[0,0,1,""],CategoryChannel:[0,0,1,""],ChannelType:[0,0,1,""],Client:[0,0,1,""],ClientException:[0,4,1,""],ClientUser:[0,0,1,""],Colour:[0,0,1,""],Component:[0,0,1,""],ComponentType:[0,0,1,""],ConnectionClosed:[0,4,1,""],ContentFilter:[0,0,1,""],CustomActivity:[0,0,1,""],DMChannel:[0,0,1,""],DefaultAvatar:[0,0,1,""],DeletedReferencedMessage:[0,0,1,""],DiscordException:[0,4,1,""],DiscordServerError:[0,4,1,""],Embed:[0,0,1,""],Emoji:[0,0,1,""],ExpireBehaviour:[0,0,1,""],FFmpegAudio:[0,0,1,""],FFmpegOpusAudio:[0,0,1,""],FFmpegPCMAudio:[0,0,1,""],File:[0,0,1,""],Forbidden:[0,4,1,""],Game:[0,0,1,""],GatewayNotFound:[0,4,1,""],GroupChannel:[0,0,1,""],Guild:[0,0,1,""],GuildSticker:[0,0,1,""],HTTPException:[0,4,1,""],Integration:[0,0,1,""],IntegrationAccount:[0,0,1,""],IntegrationApplication:[0,0,1,""],Intents:[0,0,1,""],Interaction:[0,0,1,""],InteractionMessage:[0,0,1,""],InteractionResponded:[0,4,1,""],InteractionResponse:[0,0,1,""],InteractionResponseType:[0,0,1,""],InteractionType:[0,0,1,""],InvalidArgument:[0,4,1,""],InvalidData:[0,4,1,""],Invite:[0,0,1,""],InviteTarget:[0,0,1,""],LoginFailure:[0,4,1,""],Member:[0,0,1,""],MemberCacheFlags:[0,0,1,""],Message:[0,0,1,""],MessageFlags:[0,0,1,""],MessageReference:[0,0,1,""],MessageType:[0,0,1,""],NSFWLevel:[0,0,1,""],NoMoreItems:[0,4,1,""],NotFound:[0,4,1,""],NotificationLevel:[0,0,1,""],Object:[0,0,1,""],PCMAudio:[0,0,1,""],PCMVolumeTransformer:[0,0,1,""],PartialAppInfo:[0,0,1,""],PartialEmoji:[0,0,1,""],PartialInviteChannel:[0,0,1,""],PartialInviteGuild:[0,0,1,""],PartialMessage:[0,0,1,""],PartialMessageable:[0,0,1,""],PartialWebhookChannel:[0,0,1,""],PartialWebhookGuild:[0,0,1,""],PermissionOverwrite:[0,0,1,""],Permissions:[0,0,1,""],PrivilegedIntentsRequired:[0,4,1,""],PublicUserFlags:[0,0,1,""],RawBulkMessageDeleteEvent:[0,0,1,""],RawIntegrationDeleteEvent:[0,0,1,""],RawMessageDeleteEvent:[0,0,1,""],RawMessageUpdateEvent:[0,0,1,""],RawReactionActionEvent:[0,0,1,""],RawReactionClearEmojiEvent:[0,0,1,""],RawReactionClearEvent:[0,0,1,""],RawTypingEvent:[0,0,1,""],Reaction:[0,0,1,""],Role:[0,0,1,""],RoleTags:[0,0,1,""],SelectMenu:[0,0,1,""],SelectOption:[0,0,1,""],ShardInfo:[0,0,1,""],Spotify:[0,0,1,""],StageChannel:[0,0,1,""],StageInstance:[0,0,1,""],StagePrivacyLevel:[0,0,1,""],StandardSticker:[0,0,1,""],Status:[0,0,1,""],Sticker:[0,0,1,""],StickerFormatType:[0,0,1,""],StickerItem:[0,0,1,""],StickerPack:[0,0,1,""],StickerType:[0,0,1,""],StoreChannel:[0,0,1,""],StreamIntegration:[0,0,1,""],Streaming:[0,0,1,""],SyncWebhook:[0,0,1,""],SyncWebhookMessage:[0,0,1,""],SystemChannelFlags:[0,0,1,""],Team:[0,0,1,""],TeamMember:[0,0,1,""],TeamMembershipState:[0,0,1,""],Template:[0,0,1,""],TextChannel:[0,0,1,""],Thread:[0,0,1,""],ThreadMember:[0,0,1,""],User:[0,0,1,""],UserFlags:[0,0,1,""],VerificationLevel:[0,0,1,""],VideoQualityMode:[0,0,1,""],VoiceChannel:[0,0,1,""],VoiceClient:[0,0,1,""],VoiceProtocol:[0,0,1,""],VoiceRegion:[0,0,1,""],VoiceState:[0,0,1,""],Webhook:[0,0,1,""],WebhookMessage:[0,0,1,""],WebhookType:[0,0,1,""],Widget:[0,0,1,""],WidgetChannel:[0,0,1,""],WidgetMember:[0,0,1,""],__version__:[0,5,1,""],on_bulk_message_delete:[0,6,1,""],on_connect:[0,6,1,""],on_disconnect:[0,6,1,""],on_error:[0,6,1,""],on_group_join:[0,6,1,""],on_group_remove:[0,6,1,""],on_guild_available:[0,6,1,""],on_guild_channel_create:[0,6,1,""],on_guild_channel_delete:[0,6,1,""],on_guild_channel_pins_update:[0,6,1,""],on_guild_channel_update:[0,6,1,""],on_guild_emojis_update:[0,6,1,""],on_guild_integrations_update:[0,6,1,""],on_guild_join:[0,6,1,""],on_guild_remove:[0,6,1,""],on_guild_role_create:[0,6,1,""],on_guild_role_delete:[0,6,1,""],on_guild_role_update:[0,6,1,""],on_guild_stickers_update:[0,6,1,""],on_guild_unavailable:[0,6,1,""],on_guild_update:[0,6,1,""],on_integration_create:[0,6,1,""],on_integration_update:[0,6,1,""],on_interaction:[0,6,1,""],on_invite_create:[0,6,1,""],on_invite_delete:[0,6,1,""],on_member_ban:[0,6,1,""],on_member_join:[0,6,1,""],on_member_remove:[0,6,1,""],on_member_unban:[0,6,1,""],on_member_update:[0,6,1,""],on_message:[0,6,1,""],on_message_delete:[0,6,1,""],on_message_edit:[0,6,1,""],on_presence_update:[0,6,1,""],on_private_channel_pins_update:[0,6,1,""],on_private_channel_update:[0,6,1,""],on_raw_bulk_message_delete:[0,6,1,""],on_raw_integration_delete:[0,6,1,""],on_raw_message_delete:[0,6,1,""],on_raw_message_edit:[0,6,1,""],on_raw_reaction_add:[0,6,1,""],on_raw_reaction_clear:[0,6,1,""],on_raw_reaction_clear_emoji:[0,6,1,""],on_raw_reaction_remove:[0,6,1,""],on_raw_typing:[0,6,1,""],on_reaction_add:[0,6,1,""],on_reaction_clear:[0,6,1,""],on_reaction_clear_emoji:[0,6,1,""],on_reaction_remove:[0,6,1,""],on_ready:[0,6,1,""],on_resumed:[0,6,1,""],on_shard_connect:[0,6,1,""],on_shard_disconnect:[0,6,1,""],on_shard_ready:[0,6,1,""],on_shard_resumed:[0,6,1,""],on_socket_event_type:[0,6,1,""],on_socket_raw_receive:[0,6,1,""],on_socket_raw_send:[0,6,1,""],on_stage_instance_create:[0,6,1,""],on_stage_instance_delete:[0,6,1,""],on_stage_instance_update:[0,6,1,""],on_thread_delete:[0,6,1,""],on_thread_join:[0,6,1,""],on_thread_member_join:[0,6,1,""],on_thread_member_remove:[0,6,1,""],on_thread_remove:[0,6,1,""],on_thread_update:[0,6,1,""],on_typing:[0,6,1,""],on_user_update:[0,6,1,""],on_voice_state_update:[0,6,1,""],on_webhooks_update:[0,6,1,""],version_info:[0,5,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","attribute","Python attribute"],"2":["py","property","Python property"],"3":["py","method","Python method"],"4":["py","exception","Python exception"],"5":["py","data","Python data"],"6":["py","function","Python function"]},objtypes:{"0":"py:class","1":"py:attribute","2":"py:property","3":"py:method","4":"py:exception","5":"py:data","6":"py:function"},terms:{"0":[0,2,3,4,8,10,13],"0001":0,"05":0,"0rc1":0,"0x":2,"0x11806a":0,"0x1abc9c":0,"0x1f8b4c":0,"0x206694":0,"0x2ecc71":0,"0x3498db":0,"0x36393f":0,"0x4e5d94":0,"0x546e7a":0,"0x57f287":0,"0x5865f2":0,"0x607d8b":0,"0x71368a":0,"0x7289da":0,"0x95a5a6":0,"0x979c9f":0,"0x992d22":0,"0x99aab5":0,"0x9b59b6":0,"0xa84300":0,"0xad1457":0,"0xc27c0e":0,"0xe67e22":0,"0xe74c3c":0,"0xe91e63":0,"0xeb459":0,"0xed4245":0,"0xf1c40f":0,"0xf47fff":0,"0xfee75c":0,"1":[0,2,3,4,8,9,11,14],"10":[0,2,4,7,8,9,14],"100":[0,2,4,11,18],"1000":[0,2,14,18],"10080":0,"101":[0,2],"106k":18,"1083":18,"109":18,"11":[4,14],"12":4,"120":11,"123":[0,2],"12324234183172":9,"128":[0,2],"13":4,"14":0,"1440":0,"15":[0,2],"150":[0,2],"1584":18,"16":0,"17":0,"1738":0,"176995180300206080":14,"180":0,"1874":18,"1986":18,"2":[0,2,4,8,11,12,14,15],"20":[0,11,18],"200":[0,2,9],"2000":2,"2002":2,"2008":18,"2016":0,"2051":18,"2056":18,"2061":18,"2063":18,"2077":18,"2085":18,"2086":18,"2093":18,"2094":18,"2095":18,"20m":0,"2101":18,"2104":18,"2107":18,"2113":18,"2117":18,"2118":18,"2123":[2,18],"2135":18,"2139":18,"2140":18,"2143":18,"2145":18,"2154":18,"2158":18,"21600":0,"2162":18,"2169":18,"2170":18,"2178":18,"2185":18,"2198":18,"22":0,"2201":18,"2204":18,"2208":18,"2213":18,"2218":18,"2232":18,"2237":18,"2239":18,"2244":18,"2251":18,"2253":18,"2258":18,"2265":18,"2272":18,"2274":18,"2275":18,"2287":18,"2291":18,"2294":18,"2300":18,"2301":18,"2305":18,"2314":18,"2324":18,"232720527448342530":9,"2331":18,"2333":18,"2343":18,"2349":18,"2354":18,"2358":18,"2360":18,"2364":18,"2367":18,"2368":18,"2369":18,"2372":18,"2373":18,"2374":18,"2375":18,"2376":18,"2377":18,"2380":18,"2400":18,"2411":18,"2415":18,"2420":18,"2427":18,"2433":18,"2441":18,"2443":18,"2445":18,"2446":18,"2453":18,"2460":18,"2463":18,"2465":18,"2470":18,"2471":18,"2482":18,"2489":18,"2490":18,"2496":18,"2498":18,"25":0,"250":[0,11],"2501":18,"2502":18,"2504":18,"2516":18,"2517":18,"2519":18,"2531":18,"2535":18,"2539":18,"2540":18,"2544":18,"255":2,"2570":18,"2572":18,"2577":18,"2591":18,"2619":18,"2621":18,"2623":18,"2650":18,"2652":18,"2654":18,"27k":18,"2fa":[0,1,18],"2x":18,"3":[0,2,4,8,12,14,15,16],"303":18,"309":18,"3090":18,"310177266011340803":9,"3107":4,"316026178463072268":4,"32":[9,18],"329":14,"3300":18,"340":18,"381870129706958858":9,"3996":18,"3999":18,"3rd":[8,9],"4":[0,2,8,14,15],"4000":18,"4002":18,"4015":18,"4016":18,"4019":18,"4021":18,"403":0,"4036":18,"404":[0,18],"4043":18,"4047":18,"4049":18,"4053":18,"4057":18,"4058":18,"4068":18,"4071":18,"4074":18,"4082":18,"4087":18,"4095":18,"4112":18,"4114":18,"4115":18,"4120":18,"4121":18,"4152":18,"4153":18,"4157":18,"41771983423143937":4,"4180":18,"4181":18,"4182":18,"4186":18,"42":18,"420":18,"4206":18,"4207":18,"4210":18,"4217":18,"429":[10,18],"4320":0,"440":0,"477":18,"48k":18,"48khz":0,"492212595072434186":2,"4x":18,"5":[0,2,3,8,11,14,15],"50":0,"500":[0,18],"5000":18,"502":18,"503":18,"504":18,"5068":18,"5086":18,"5088":18,"5109":18,"5124":18,"512kbp":18,"5130":18,"5133":18,"5143":18,"5154":18,"5181":18,"5188":18,"5191":18,"5193":18,"5195":18,"5197":18,"5198":18,"5207":18,"5210":18,"5212":18,"5213":18,"5221":18,"5233":18,"526":[2,4],"53":0,"57":[0,18],"5748":18,"5754":18,"5756":18,"5757":18,"5762":18,"5763":18,"5772":18,"5773":18,"5785":18,"5789":18,"5793":18,"5797":18,"5798":18,"5799":18,"58":0,"5800":18,"5804":18,"5808":18,"5819":18,"5823":18,"5832":18,"5834":18,"5835":18,"5849":18,"5866":18,"5888":18,"5897":18,"5901":18,"5904":18,"5905":18,"5923":18,"5929":18,"5930":18,"5945":18,"5946":18,"5949":18,"5953":18,"5970":18,"5975":18,"5984":18,"5986":18,"5x":18,"6":[0,2,4,8,13,14],"60":[0,2,11,14],"6000":0,"6002":18,"6016":18,"6028":18,"6038":18,"6039":18,"6044":18,"6058":18,"6061":18,"6067":18,"6082":18,"6093":18,"6095":18,"6100":18,"6113":18,"6128":18,"6153":18,"6161":18,"6162":18,"6172":18,"6192":18,"6195":18,"6217":18,"6308":18,"6309":18,"6313":18,"6315":18,"6316":18,"6317":18,"6318":18,"6341":18,"6365":18,"6374":18,"639":0,"6390":18,"64":0,"64000":0,"6430":18,"6431":18,"6436":18,"6444":18,"6445":18,"6446":18,"6451":18,"6458":18,"6462":18,"6476":18,"6478":18,"6483":18,"6484":18,"6489":18,"6495":18,"6529":18,"6530":18,"6531":18,"6538":18,"6562":18,"6563":18,"6568":18,"6573":18,"6574":18,"6602":18,"6603":18,"6606":18,"6608":18,"6618":18,"67":18,"6726":18,"6730":18,"6744":18,"6x":18,"7":[0,2,4,11,12,14,15],"735":18,"75":11,"75x":11,"7th":18,"8":[2,4,12,13,18],"80":2,"80088516616269824":2,"80528701850124288":14,"840":[0,11],"84319995256905728":14,"85309593344815104":2,"9":[15,18],"95":11,"953":18,"99":4,"abstract":[2,8,14,15],"boolean":[0,2],"break":[14,15],"byte":[0,2,18],"case":[0,2,4,5,9,14,16,18],"catch":[2,4],"char":2,"class":[2,3,4,8,11,12,14,17,18],"default":[0,2,4,8,9,11,13,14,17,18],"do":[0,1,2,3,4,5,8,10,14,15,16,18],"enum":[0,6,9,15,18],"final":[0,2,5,15,16,18],"float":[0,2,8],"function":[1,2,3,4,5,6,7,8,10,11,12,13,14,16,17,18],"import":[0,2,4,5,8,9,11,12,13,15,16,18],"int":[0,2,3,4,8,18],"long":[0,2,9,14,18],"new":[0,1,2,4,8,9,11,13,14,17],"null":18,"public":[0,1,17,18],"return":[0,2,3,4,8,9,14,15,16,18],"short":[0,2,15],"static":[0,9],"super":4,"switch":18,"throw":[0,18],"true":[0,2,4,8,9,11,14,18],"try":[0,2,9,10,14,15,16],"while":[0,2,4,9,14,15,18],A:[0,2,3,4,8,9,10,12,14,15,18],AND:0,And:[1,14],As:[0,2,3,4,11,14,15,18],At:[3,4],Be:[4,15],But:14,By:[0,2,4,8,14,18],For:[0,2,3,4,5,6,7,9,11,12,13,15,18],If:[0,1,2,3,4,5,7,8,9,10,11,12,14,15,16,17,18],In:[0,1,2,4,5,9,11,14,15,16],Is:10,It:[0,1,2,3,4,5,9,11,13,14,16,18],Its:0,No:[0,2,14,18],Not:[0,4,18],OR:[0,2,18],Of:14,On:[0,4,12,16],One:[0,4,8,14],Or:[14,15],That:[0,2],The:[0,1,2,3,4,5,8,9,11,13,14,15,16,17,18],Then:[11,14],There:[0,2,3,4,5,7,9,11,14,15,16,18],These:[0,2,4,9,10,11,14,18],To:[0,2,3,4,5,9,11,12,14,15,18],With:[4,11,14],_:[0,2,18],__call__:[2,8,18],__cause__:2,__eq__:18,__init__:[0,2,3,4,8,14,18],__iter__:18,__name__:2,__path__:18,__repr__:18,__slots__:[0,17,18],__str__:18,__version__:0,_batch:8,_eval:4,_last_memb:3,_list:4,_original_help_command:14,_updat:15,abc:[0,2,4,9,14,18],abcmeta:2,abil:[5,11,14,18],abl:[0,9,18],about:[0,2,4,5,10,11,12,14,18],abov:[0,4,9],absolut:11,abstracteventloop:[0,8],abus:[0,2],accent:0,accent_color:0,accent_colour:[0,18],accept:[0,2,4,9,14,18],accept_invit:14,access:[0,2,4,9,14,18],accident:1,accommod:18,accompani:14,accomplish:[0,14],accord:0,account:[0,2,10,14,16,18],accumul:2,accur:0,accuraci:11,achiev:0,ack:18,acknowledg:0,acquir:8,act:[0,2,18],action:[0,1,14],action_row:0,activ:[2,9,11,12,14,18],active_thread:[0,18],activitytyp:[0,9,18],actual:[0,1,2,3,4,9,14,18],ad:[0,1,2,3,4,5,8,14,17,18],add:[0,1,2,4,5,7,8,11,14,18],add_aliases_format:2,add_bot_commands_format:2,add_check:[2,18],add_cog:[2,3],add_command:[2,4,5],add_command_format:2,add_exception_typ:[8,18],add_field:0,add_indented_command:2,add_item:0,add_lin:2,add_listen:2,add_opt:0,add_react:[0,9,14,18],add_rol:[0,14],add_subcommand_format:2,add_us:0,add_view:[0,2],addhandl:13,addit:[0,11,18],adher:4,admin:0,admin_rol:0,administr:[0,1],advanc:[0,13],advis:[0,11],affect:[0,15],afk:[0,2,18],afk_channel:0,afk_timeout:0,africa:0,after:[0,2,4,8,15,18],after_any_command:14,after_foo_command:14,after_invok:[2,14,18],after_loop:8,after_slow_count:8,afterward:[2,16],ag:0,again:[0,2,14,18],against:2,age_restrict:0,aggreg:14,ago:0,aid:[0,2,4,10,11,12,18],aiohttp:[0,9,14,18],aka:0,akin:14,album:0,album_cover_url:0,algorithm:[0,8],alia:[0,2,17,18],alias:[0,2,14,18],alias_conflict:2,aliases_head:2,aliv:[0,18],all:[0,1,2,3,4,8,9,10,11,12,14,15,18],all_channel:0,all_command:[2,14],all_memb:0,all_messag:0,allevi:14,alloc:14,allow:[0,2,3,4,8,9,11,14,15,18],allowed_command:2,allowed_ment:[0,2,18],allowedment:[2,18],almost:[0,15,18],alon:[0,18],along:[0,2,11,14,17,18],alongsid:3,alpha:[0,18],alphabet:2,alreadi:[0,2,8,9,11,18],also:[0,1,2,3,4,5,7,9,11,12,14,18],altern:[0,2,9],although:[0,5],alwai:[0,2,4,14,18],am:[2,5],amaz:9,ambigu:4,amount:[0,2,4,8,14,18],amsterdam:0,an:[0,1,2,3,4,5,6,8,10,11,12,14,16,17,18],analog:0,analogu:0,analysi:0,ani:[0,1,2,4,5,9,13,14,15,18],anim:[0,2,18],animated_icon:0,annot:[2,4],announc:[0,18],anonym:0,anoth:[0,2,4,5,9,11,14,18],answer:10,anticip:18,anymor:[0,18],anyon:0,anyth:[0,2,4,9,15],anywai:8,anywher:0,apart:[8,18],api:[1,4,6,9,10,11,12,14,15,17],apng:0,appeal:4,appear:[0,18],append:[0,2],append_opt:0,appinfo:[2,18],appli:[0,2,4,5,14,17,18],applic:[1,2,9,11,12,13,14],application_command:0,application_flag:[0,2],application_id:[0,2],application_info:[0,2,14,18],applicationflag:2,approach:14,appropri:[0,2,4,9,14,18],approxim:0,approximate_member_count:[0,2],approximate_presence_count:[0,2],apt:12,ar:[0,1,2,3,4,5,7,8,9,10,12,13,15,17,18],arbitrari:0,arbitrarili:[4,9],archiv:0,archive_timestamp:0,archived_thread:0,archiver_id:0,aren:[0,18],arg1:4,arg2:4,arg:[0,2,4,8],argument:[0,2,3,8,11,13,14,18],argumentparsingerror:2,aris:15,around:[0,2,11,12,16,18],arrai:0,arrang:0,artist:0,as_chunk:0,as_need:0,asctim:13,ask:[0,2,4,10],aspect:[0,2,4,6,9,14],asset:18,assign:[0,2,4,14,15],associ:[0,2,14],assum:[0,2,8,16],assume_synced_clock:18,assume_unsync_clock:0,async:[2,3,4,5,8,9,10,12,14,15,16],async_ev:15,asynchron:[0,2,4,9,16],asyncio:[0,2,9,10,14,15,18],asynciter:[0,2,14,18],asyncpg:8,atom:[0,2],attach:[2,4,9,14,18],attach_fil:0,attempt:[0,2,4,9,18],attr:[0,2],attribut:[0,2,3,4,8,9,11,14,15,17,18],attributeerror:[0,18],audio:[0,14,18],audioplay:14,audiosourc:14,audit:[14,18],audit_log:[0,14],auditlogact:0,auditlogactioncategori:0,auditlogentri:18,augment:4,authent:[0,2],author:[0,1,2,3,4,5,9,11,12,14,16,18],author__nam:0,author_permiss:2,authoris:0,auto:[0,14],auto_archive_dur:0,autom:16,automat:[0,2,3,14,18],autoshardedbot:[11,14,18],autoshardedcli:[2,11,14,18],avail:[0,2,10,18],avatar:[0,11,14,18],avatar_url:[0,14,15,18],avatar_url_a:14,avconv:0,averag:0,average_lat:[0,18],avoid:[0,2,18],avprob:0,aw:9,awai:[0,2,8],await:[0,2,3,4,5,8,10,14,15,16],awar:[0,1,2,9,15],b:[0,2,4,9],back:[0,2,4,8,9,11,14,18],background:[0,8,18],background_task:9,backport:18,backslash:9,backtick:2,backward:[14,18],bad:[0,2,4,9],badargu:[2,4,18],badboolargu:2,badcolourargu:2,badflagargu:2,badinviteargu:2,badliteralargu:[2,4],badunionargu:[2,4],balanc:0,ban:[0,1,2,4,14,15,18],ban_memb:[0,18],banentri:0,banflag:4,banner:[0,18],bar:[2,4],base:[2,4,12,14,18],baseact:2,baseconnector:0,baseexcept:8,basi:[0,2,14,18],basic:[0,2,11,14,15,16],basic_ext:5,basicauth:0,basicconfig:13,bat:12,batch:8,batch_upd:8,becaus:[0,2,4,9,14,15],becom:[0,2,15],been:[0,2,4,8,14,15,18],beer:4,befor:[0,2,8,15,18],before_any_command:14,before_foo_command:14,before_identify_hook:[0,2,18],before_invok:[2,14,18],before_loop:[8,18],before_opt:0,before_print:8,beforehand:0,begin:[0,2,11],behav:[2,14],behaviour:[0,2,3,4,9,11,14,15,17,18],being:[0,2,3,4,5,8,11,14,18],belong:[0,2,9,14],below:[0,2,4,14,15,17,18],benefit:14,best:[0,18],beta:0,better:[14,18],between:[0,2,4,8,14,18],beyond:4,big:[2,18],biggest:[14,15],bin:12,binari:[0,18],bind:[3,14],bit:[0,4,14,18],bitrat:[0,18],bitrate_limit:[0,18],blank:[0,2],block:[0,2,4,15,18],blue:0,blurpl:0,bodi:[0,2,18],bold:2,bool:[0,2,8],boost:[0,18],booster:18,boot:18,bot:[3,4,5,7,8,10,11,12,14,18],bot_add:0,bot_check:[2,3,14],bot_check_onc:[2,3,14],bot_has_any_rol:2,bot_has_guild_permiss:[2,18],bot_has_permiss:2,bot_has_rol:2,bot_id:0,bot_publ:0,bot_require_code_gr:0,bot_token:0,both:[0,2,9,10,11,18],botintegr:0,botmissinganyrol:2,botmissingpermiss:2,botmissingrol:2,bots_rol:0,bottl:4,bottom:0,bound:[0,2,17],box:7,branch:9,brand:0,brand_green:[0,18],brand_r:[0,18],braveri:0,brazil:[0,18],brief:[2,16],brillianc:0,bring:[0,18],broadcast:0,browser:1,bucket:[0,2,11,18],buckettyp:[2,18],buffer:0,bufferediobas:0,bug:[0,9,10,17],bug_hunt:0,bug_hunter_level_2:0,bui:4,build:[4,18],built:[0,2,4,5,14,18],bulk:[0,8,18],bulker:8,bump:18,button:[1,18],buttonstyl:[0,18],buy_sel:4,by_categori:[0,14,18],bypass:[0,2,11,14],bytearrai:0,bytesio:[0,9,18],c:[2,3,9],cach:[0,2,14,18],cache_auth:18,cached_messag:[0,2,14,18],calcul:[0,2,18],call:[0,2,3,4,5,8,9,11,12,13,14,15,16,18],call_hook:2,call_onc:2,callabl:[0,2,4,9,14,18],callback:[0,2,8,9,16],caller:[0,2],callmessag:18,came:[14,18],camera:0,can:[0,1,2,3,4,6,7,8,10,11,12,13,14,15,16,17,18],can_:15,can_manage_messag:15,can_run:[2,18],cancel:[0,2,8,14,18],cancellederror:[8,18],candid:[0,2],cannot:[0,2,4,8,9,18],cap:[0,2],capabl:0,capit:4,care:[0,2,4],carri:2,case_insensit:[2,4],cast:[0,4,15,18],cat:9,categori:[0,2,3,14,18],categoris:0,category_id:0,categorychannel:[2,4,14],categorychannelconvert:[2,4],caught:[0,2],caus:[0,2,11,18],caution:9,caveat:[14,18],cd:12,cdn:[0,18],central:0,certain:[0,1,2,3,4,8,9,11,14,15,18],certifi:0,ch:14,chain:[0,2,14],chanc:[0,9],chang:[0,2,3,4,5,8,9,11],change_interv:[8,18],change_nicknam:[0,14,18],change_pres:[0,2,9,18],change_statu:18,change_voice_st:[0,18],changed_rol:0,changelog:10,changeset:18,channel:[0,2,3,4,15,16,18],channel_cr:0,channel_delet:0,channel_follow:0,channel_follow_add:[0,18],channel_icon_chang:0,channel_id:[0,2,18],channel_ment:0,channel_messag:0,channel_name_chang:0,channel_upd:0,channelconvert:14,channelnotfound:2,channelnotread:2,channeltyp:[0,2,15,18],charact:[0,2,9,18],check:[0,1,5,6,8,9,11,12,13,16,18],check_ani:[2,18],check_command:2,check_if_it_is_m:2,check_onc:[2,14],checkanyfailur:2,checkbox:1,checkfailur:[2,4],checklist:11,child:2,children:0,choic:[0,4,9],choos:[0,1,2],chosen:0,chunk:[0,11,14,18],chunk_guilds_at_startup:[0,11],circumst:0,citizen:14,cl:[0,2,4,14,18],clamp:4,clash:4,classmethod:[0,2,4],clean:[0,2,4,6,14],clean_cont:[0,2,4,14,18],clean_param:2,clean_prefix:[2,14,18],cleandoc:2,cleanup:[0,14,18],clear:[0,2,18],clear_exception_typ:8,clear_field:0,clear_item:0,clear_react:[0,14,18],clever:0,click:[0,1,2,11],client:[1,2,8,9,11,12,14,16,18],client_id:0,clientexcept:[0,2,18],clientrespons:0,clientsess:[0,9,14],clientus:[2,14],clock:[0,18],clog:13,clone:[0,18],close:[0,2,11,14,15,18],close_pag:2,close_quot:2,closur:0,cloudflar:18,cluster:[0,18],cn:0,co:[0,2],code:[0,1,2,4,5,9,11,18],codec:0,codepoint:[0,2],cog:[6,8,18],cog_after_invok:[2,3,14],cog_before_invok:[2,3,14],cog_check:[2,3,14],cog_command_error:[2,3,14],cog_nam:2,cog_unload:[2,3,8,14],cogabcmeta:2,cogmeta:[3,14],coincid:0,coinflip:3,collect:[0,2,3,9],colon:0,color:0,colorconvert:[2,18],colour:[2,4,14,18],colourconvert:[2,4,18],com:[0,18],combin:[0,14],combo:0,come:[0,3,4,5,6,9,10,11,12,14,17,18],comma:2,command:[0,3,5,8,10,11,12,16],command_attr:[2,18],command_callback:2,command_fail:[2,14],command_nam:2,command_not_found:[2,14],command_prefix:[2,4,11,18],commanderror:[2,4],commandinvokeerror:2,commandnotfound:2,commandoncooldown:[2,18],commandregistrationerror:[2,18],commands_head:2,commerc:0,common:[0,2,4,8,9,10,11,14,15],commun:[0,2,3],compar:[0,2,18],comparison:[0,18],compart:0,compat:[0,18],compet:[0,18],complet:[0,2,14,18],complic:[0,3,4,9,14],compon:[2,18],componenttyp:0,compos:0,compound:11,comprehend:4,compress:18,compris:[0,2],comput:[0,2,15,18],compute_prune_count:0,compute_prune_memb:18,comrad:4,con:8,concept:[0,4,5,14],concret:[0,18],concurr:[2,18],condit:[2,18],configur:[0,2,13],conflict:[0,2,16,18],confus:[2,6],congratul:12,conjunct:[5,8],connect:[2,8,9,15,16,18],connected_channel:0,connectionclos:[0,2],connector:0,consequ:[0,1,2,14,15,18],consid:[0,2,4,9,15,17,18],consider:[0,3,18],consist:[0,14,18],consol:[4,13],constant:15,constraint:18,construct:[0,2,4,11,14,18],constructor:[0,2,4,9,11,18],consum:[2,9],contact:11,contain:[0,2,4,9,11,18],content:[0,2,4,9,12,14,16,18],content_typ:[0,18],contentfilt:0,context:[0,6,8,9,15,18],continu:[0,1,2,4],contribut:18,contributor:18,control:[0,2,4,11,14,15,18],conveni:[0,8],convers:[0,2,14],conversionerror:2,convert:[0,6,18],cool:[0,2,9,14],cool_filenam:14,cool_imag:9,cooldown:[6,14,18],cooldown_after_pars:2,coordin:4,copi:[0,1,2,14,18],core:[4,5,18],coro:[2,8,9],coroutin:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,16,17,18],correct:[0,2,18],correctli:[2,6],correspond:[0,2,4,11,14,15],cost:0,could:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],count:[0,2,8,18],counter:[0,2],counterpart:[0,18],coupl:[0,3,9,14,18],cours:14,cover:0,cover_imag:0,cover_image_url_a:18,cover_stick:0,cover_sticker_id:0,covert:2,cpu:18,crash:[14,18],creat:[0,2,4,6,8,10,12,14,16,18],create_categori:[0,18],create_category_channel:0,create_channel:14,create_custom_emoji:[0,14,18],create_dm:[0,2,14],create_ffmpeg_play:[14,18],create_guild:[0,2,14,18],create_inst:0,create_instant_invit:0,create_integr:[0,18],create_invit:[0,14],create_private_thread:0,create_public_thread:0,create_rol:[0,14,18],create_serv:[14,18],create_stage_channel:0,create_stick:0,create_stream_play:14,create_templ:0,create_text_channel:[0,14],create_thread:[0,18],create_voice_channel:[0,14],create_webhook:0,create_ytdl_play:14,created_at:[0,2,4,14,18],creation:[0,2,6,10,18],creator:0,credenti:[0,2,15,18],criteria:0,critic:13,crosspost:0,css:[2,18],ctx:[2,3,4,5,9,14],ctype:0,cumul:18,current:[0,2,4,7,8,9,11,18],current_loop:8,current_paramet:2,current_s:0,custom:[0,2,4,9,14,18],custom_emoji:9,custom_id:[0,2],custom_prob:0,customact:18,customis:[2,3,4,14],d:[0,2,18],dai:[0,4],danger:0,danni:18,dark:[0,18],dark_blu:0,dark_blurpl:0,dark_gold:0,dark_grai:0,dark_green:0,dark_grei:0,dark_magenta:0,dark_orang:0,dark_purpl:0,dark_r:0,dark_teal:0,dark_them:[0,18],darker_grai:0,darker_grei:0,dash:2,data:[2,3,4,8,9,15,17,18],databas:[2,8,14],dataclass:[2,4],date:[0,2,14,18],datetim:[0,2,8,18],daunt:6,dave:0,deaf:[0,14],deafen:[0,18],deafen_memb:0,deal:[0,2,11,14,18],dealloc:18,debian:12,debug:[0,9,13,18],decid:[0,2,4,14,18],decod:2,decompress:18,decor:[0,3,4,7,8,9,14,15,16,18],dedic:18,deep:2,def:[0,2,3,4,5,8,9,12,14,15,16],default_auto_archive_dur:[0,18],default_avatar:0,default_channel:[14,15],default_message_notif:0,default_notif:0,default_rol:[0,15,18],defaultavatar:0,defaulthelpcommand:14,defer:0,deferred_channel_messag:0,deferred_message_upd:0,defin:[0,2,3,4,5,9],definit:[3,4,14],delai:[0,18],delet:[0,4,14,18],delete_aft:0,delete_channel:14,delete_channel_permiss:14,delete_custom_emoji:[14,18],delete_dai:4,delete_emoji:0,delete_invit:[0,2,14,18],delete_members_dai:0,delete_messag:[0,14],delete_message_dai:[0,4],delete_original_messag:[0,18],delete_rol:14,delete_serv:14,delete_stick:0,delimit:[2,4],delta:4,deni:[0,15],denot:[0,2,14,18],departur:18,depend:[0,2,4,12,17,18],deposit_monei:3,deprec:[14,18],depth:[4,12],deriv:[2,3,4,14],describ:4,descript:[0,2,7,18],design:[4,10,14],desir:[8,11,18],desktop:0,desktop_statu:0,despair:9,despit:[4,18],destin:[0,2],detail:[0,2,3,9,10,14,15,18],detect:0,determin:0,dev:[2,12],develop:[0,1,3,5,9,10,11,14,18],devic:0,diagnost:0,dict:[0,2,18],dictat:[0,2,11],dictionari:[0,2,14,15,18],did:[0,2,5,14,18],diff:0,differ:[0,2,4,8,9,12,14],differenti:[0,14],digit:[0,2],direct:[0,11],directli:[0,2,4,9,12,13,16],directori:12,dirti:12,disabl:[0,2,4,9,11,14,18],disable_guild_select:0,disabledcommand:2,disallow:[0,18],disambigu:[2,4,18],discard:[2,18],discern:17,disconnect:[0,2,8,9,14,18],discord:[1,2,3,5,7,9,11,12,13,14,15,16,17],discord_certified_moder:0,discordapp:18,discordexcept:[0,2],discordservererror:[0,18],discourag:9,discover:0,discoverable_dis:0,discoverable_en:18,discoveri:[0,18],discovery_splash:0,discovery_splash_url:18,discrim:2,discrimin:[0,4,11,18],discuss:[4,10],dislik:11,dismiss:0,dispatch:[0,2,9,18],displai:[0,2,9,18],display_avatar:[0,18],display_nam:[0,5],dispos:14,disregard:9,disturb:[0,18],dll:0,dm:[0,2,4,14,18],dm_channel:0,dm_help:2,dm_help_threshold:2,dm_messag:0,dm_onli:[2,18],dm_reaction:0,dm_type:0,dmchannel:[2,14,18],dnd:[0,18],do_bulk:8,do_not_disturb:[0,18],doc:[0,7,18],docstr:[2,18],document:[0,2,3,4,5,9,11,12,13,14,15,17,18],doe:[0,2,14,16],doesn:[0,2,4,11,14,18],domain:18,don:[0,2,4,9,11,16,18],done:[0,2,4,8,9,14,15,18],dot:[0,2,5],down:[0,4,9,11,18],download:[0,9,18],drive:0,drop:[0,14,15,18],dropdown:0,dt:0,dubai:[0,18],duck:18,due:[0,2,4,8,9,11,14,15,17,18],duplic:[2,8,18],durat:0,dure:[0,2,5,8,10,18],dy:18,dynam:[0,1,2,4,14,17,18],dynamic_cooldown:2,e:[0,2,12,14,18],each:[0,3,8,9,11],earli:0,earlier:[4,12,14,15],early_support:0,early_verified_bot_develop:[0,18],eas:[0,2,15],easi:[0,4,10,14,18],easier:[0,4,14,15,18],easili:[0,14,18],east:0,echo:9,economi:3,edit:[0,2,14,18],edit_channel:14,edit_channel_permiss:[14,15],edit_custom_emoji:[14,18],edit_messag:[0,14,18],edit_original_messag:[0,18],edit_profil:14,edit_rol:14,edit_role_posit:[0,18],edit_serv:[14,18],edit_widget:0,edited_at:[0,14,18],edited_timestamp:14,effect:2,effort:[14,18],either:[0,2,4,7,8,9,14,18],eject:[2,18],elaps:0,elem:0,element:[0,3,4,14,17],elif:4,elig:0,els:[0,1,2,3,4,9,11,14,17],email:[0,14,18],emb:[14,18],embed:0,embed_link:0,embedded_appl:0,embedproxi:0,emoji:[2,4,9,14,18],emoji_cr:0,emoji_delet:0,emoji_id:0,emoji_limit:[0,18],emoji_upd:0,emojiconvert:[2,4],emojinotfound:2,emojis_and_stick:0,emoticon:0,employe:0,empti:[0,2,4,8,18],emptiv:18,en:[0,2],enabl:[0,1,2,4,7,11,14,18],enable_debug_ev:[0,18],enable_emoticon:0,encod:[0,2,13,18],encount:[0,2,8,9,18],encrypt:18,end:[0,2,4,9,18],endian:18,endless:1,endpoint:[0,14,18],english:0,enhanc:[7,9,18],enough:[2,4],ensur:[0,2,4,18],entir:[0,2,3,11,14,18],entiti:[2,14],entri:[0,2,5],enumer:[14,18],env:12,environ:0,ephemer:[0,2,18],epoch:[0,2],equal:[0,2,4,18],equival:[0,2,4,14,18],ergo:[9,14],error:[0,2,5,6,8,9,13,14,15,18],escap:[0,2,18],escape_markdown:[0,2,18],escape_ment:0,especi:[2,13],essenti:[0,1,4,9,14,16],establish:0,estim:0,estimate_pruned_memb:[0,14,18],etc:[0,2,11,14,18],etf:14,eu:0,eu_centr:[0,18],eu_west:[0,18],europ:[0,18],eval:[4,18],evalu:[2,4],even:[0,2,8,11,18],event:[3,4,6,8,11,12,13,16,17,18],event_method:[0,2],event_typ:[0,18],eventu:[0,3,14],ever:3,everi:[0,2,3,4,8,11,14,15,16,17],everyon:[0,1,2,4,14,18],everyth:[0,10,14],evict:[11,18],exact:[0,2,8],exactli:2,examin:4,exampl:[0,2,4,5,6,10,11,12,13,14,15,18],example_bot:16,exc_info:0,exce:[0,2,18],exceed:0,except:[4,5,6,8,9,11,14,15,18],excess:9,exclud:0,exclus:[0,4,15],execut:[0,2,4,9,15,18],exercis:18,exhaust:[0,17,18],exist:[0,2,4,14,18],exit:8,expand:14,expect:[0,2,4,11,14,18],expectedclosingquoteerror:2,experi:[0,18],experienc:18,expir:[0,2],expire_behavior:0,expire_behaviour:0,expire_grace_period:0,expirebehavior:0,expirebehaviour:0,expires_at:[0,2],explicit:[0,8],explicit_content_filt:[0,14],explicitli:[0,2,3,11,14,15,18],exponenti:[8,14],expos:[2,15,18],express:[0,4],ext:[2,4,5,7,9,10,11,16],extend:[0,2,5,18],extended_check:2,extens:[0,2,3,4,6,8,18],extensionalreadyload:2,extensionerror:2,extensionfail:2,extensionnotfound:[2,18],extensionnotload:2,extern:[0,2,4],external_emoji:[0,18],external_stick:0,extra:[0,2,4,9,18],extract:2,extran:[0,2,14],extrem:[0,18],f:[0,2,3,4,5,9,12,16],face:18,facil:18,facilit:[2,14,18],fact:[0,2,11,18],factor:0,factori:[0,2,18],fail:[0,2,4,8,14,18],fail_if_not_exist:[0,18],failur:[0,2,18],fairli:[4,17],fake:4,fall:0,fallback:[0,18],fals:[0,2,4,9,11,14,15,18],falsei:18,familiar:3,famou:9,faq:7,far:0,fast:18,faster:[15,18],favour:[14,18],featur:[0,4,10,14],feel:[2,3,4,9,18],fetch:[2,4,8,9,11,14,18],fetch_ban:0,fetch_channel:[0,2,18],fetch_emoji:[0,9],fetch_guild:[0,2,9],fetch_inst:0,fetch_invit:[0,2,14,18],fetch_memb:[0,9,11,18],fetch_messag:[0,2,9,14],fetch_offline_memb:18,fetch_premium_sticker_pack:[0,2],fetch_rol:[0,18],fetch_stage_inst:[0,2],fetch_stick:[0,2],fetch_templ:[0,2,18],fetch_us:[0,2,9,14,18],fetch_webhook:[0,2],fetch_widget:[0,2],few:[0,4,9,11,18],fewer:[0,14],fff:2,ffmpeg:[0,18],ffmpegopusaudio:18,ffmpegpcmaudio:[9,14,18],ffprobe:0,field:[0,2,18],figur:[0,9,18],file:[2,5,13,14,16,18],filehandl:13,filenam:[0,9,13,14],filesize_limit:[0,18],fill:[0,2],filter:[0,2,14,18],filter_command:2,find:[0,2,4,14],find_librari:0,fine:[0,2,4],finer:0,finicki:15,finish:[0,8,9,16],fire:[0,2,18],first:[0,1,2,3,4,6,9,10,11,14,16,17],fit:2,five:0,fix:[9,11,17],fix_channel_ment:2,flag:[0,4,11,18],flag_nam:2,flag_valu:2,flagconvert:2,flagerror:2,flatten:[0,2,14],flavour:4,flexibl:6,flip:18,flow:[0,18],fluent:0,folder:[5,9],follow:[0,2,3,4,9,11,12,13,14,15,17,18],followup:0,foo:[0,2,4,14,15],food:4,footer:[0,9],forbid:9,forbidden:[0,2,4,18],forc:[0,11,18],forget:9,form:[0,4,9],format:[0,2,14,15,18],format_dt:0,format_typ:0,formatt:[2,13],former:0,found:[0,2,4,9,12,14,15,18],fp:[0,9],fragment:[0,18],frame:[0,2],framework:[5,10,14,16],frankfurt:0,free:[2,9,18],freez:9,frequenc:18,frequent:[10,14],friendli:[0,2,4,18],from:[0,2,3,4,5,8,9,11,12,13,14,15,16,18],from_dict:0,from_hsv:0,from_int:0,from_messag:[0,18],from_pair:0,from_prob:0,from_rgb:[0,14],from_str:0,from_url:0,fuchsia:0,full:[0,2,4,9,11,14,18],full_parent_nam:2,fulli:[0,2,18],func:[0,2,3],fundament:15,further:[4,11],fut:9,futur:[0,9,14,18],g:[0,2,12,14,18],gain:[0,14],gambl:3,game:[2,4,9,14,18],gameconvert:[2,4],gamesdk:0,gap:[0,2,18],gate:[4,18],gatewai:[0,2,9,10,14,18],gateway_guild_memb:0,gateway_guild_members_limit:0,gateway_pres:0,gateway_presence_limit:0,gatewaynotfound:[0,2],gather:0,gb:0,gc:18,gener:[0,1,2,3,4,14,18],generalis:[4,14],get:[0,2,3,4,6,11,12,14,15,16,18],get_:18,get_all_channel:[0,2],get_all_emoji:[14,18],get_all_memb:[0,2],get_ban:[14,18],get_bot_map:[2,18],get_channel:[0,2,9,14],get_channel_or_thread:[0,18],get_cog:[2,3],get_command:[2,3,18],get_command_signatur:[2,14],get_context:[2,14],get_cooldown_retry_aft:[2,18],get_default_channel:15,get_default_rol:15,get_destin:[2,14],get_emoji:[0,2,9],get_ending_not:2,get_event_loop:[0,8,15],get_flag:2,get_guild:[0,2,9,14],get_invit:14,get_listen:[2,3],get_max_s:2,get_memb:[0,9],get_member_nam:0,get_messag:14,get_opening_not:2,get_partial_messag:[0,2,18],get_prefix:2,get_raw_channel_ment:15,get_raw_ment:15,get_reaction_us:[14,18],get_retry_aft:2,get_rol:[0,9,14],get_serv:14,get_shard:[0,18],get_stage_inst:[0,2],get_stick:[0,2],get_task:8,get_thread:[0,18],get_token:2,get_us:[0,2,9,14],get_user_info:[14,18],getlogg:13,getticket:0,gg:[0,2],gh:[0,2,18],gib:18,gif:0,gigant:18,gist:3,git:9,github:10,give:[0,1,2,4,15,16],given:[0,2,4,8,9],global:[2,7,9,14,18],globally_block_dm:4,go:[0,1,2,4,9,10,12,14,16,18],goal:[0,4,8,14],goe:[0,8,11,12,14],gold:0,gone:[0,14,18],good:[4,9],googl:0,got:[0,4,10,14,18],gotcha:9,grab:0,grace:0,gracefulli:[8,18],grai:[0,18],grain:[0,2],grammar:4,grant:[0,1],granular:[0,2,18],great:10,greater:[0,2,4],greatli:18,greedi:[2,18],greedili:2,green:0,greet:[0,2,3],grei:[0,18],greypl:0,ground:18,group:[0,4,9,14,18],groupcal:18,groupchannel:[14,18],guarante:[0,2,10,15],guild:[2,3,4,7,9,11,18],guild__nam:0,guild_avatar:[0,18],guild_creat:[0,18],guild_discovery_disqualifi:0,guild_discovery_grace_period_final_warn:0,guild_discovery_grace_period_initial_warn:0,guild_discovery_requalifi:0,guild_id:[0,2,4,18],guild_invite_remind:0,guild_member_upd:18,guild_messag:0,guild_onli:[0,2,4,14],guild_permiss:0,guild_react:0,guild_ready_timeout:[0,18],guild_reminder_notif:0,guild_stream:0,guild_typ:0,guild_upd:0,guildchannel:[2,4,14,18],guildchannelconvert:[2,4],guildconvert:[2,4,18],guildnotfound:2,guildstick:2,guildstickerconvert:2,guildstickernotfound:2,h:0,ha:[0,2,4,8,9,11,14,15,16,18],had:[0,2,14,15,18],handi:[4,14],handl:[0,2,6,8,10,14,15,16,17,18],handler:[0,2,4,13,14,18],handshak:[0,14,18],hang:[10,18],happen:[0,2,4,5,9,12,14,16,18],hard:[0,17],has_any_rol:2,has_error_handl:[2,18],has_guild_permiss:[2,18],has_permiss:2,has_rol:2,has_thread:0,has_unread_urgent_messag:0,hash:[0,18],hashabl:[0,18],have:[0,1,2,3,4,8,9,10,11,12,14,15,16,18],head:[2,14,16],header:18,heard:0,heart:3,heartbeat:[0,2,9,18],heartbeat_ack:[0,2,18],heartbeat_timeout:0,heavi:[0,2],hei:4,height:0,held:18,hello:[0,2,3,4,5,9,14,15,16],help:[0,3,4,6,9,12,16,18],help_command:[2,14],helpcommand:[14,18],helper:[0,6,10,18],helpformatt:18,here:[0,2,3,4,8,9,10,12,14,16,17,18],hex:[0,2],hidden:[2,18],hierarchi:[14,18],high:[0,9,11],higher:[0,12,14,18],highest:0,highli:[0,9,18],hint:[4,14,18],histori:[0,2,14,18],hit:[0,18],hm:4,hmm:9,hoist:0,hold:[0,2,8],hong:0,hongkong:0,hood:[2,4],hook:[0,2,18],hot:5,hour:[8,9],hover:0,how:[0,2,4,8,11,12,14,15,18],howev:[0,2,4,6,7,8,9,11,12,14,15,17,18],hsv:0,http:[0,2,9,11,17,18],httpexcept:[0,2,18],hue:0,human:[0,9,18],hunter:0,hypesquad:0,hypesquad_bal:0,hypesquad_braveri:0,hypesquad_brilli:0,i18n:2,i:[0,2,4,5,8,14,18],icon:[0,2,9,18],icon_url:[0,15,18],icon_url_a:18,id:[0,2,3,4,7,11,14,18],ideal:[0,2,14],idempot:2,ident:0,identifi:[0,2,18],idiom:4,idl:[0,2],ie:0,ietf:0,ignor:[0,2,4,8,16,18],ignore_extra:2,ignore_link:0,illustr:[0,11],imag:[0,2,14,18],immedi:18,implement:[0,2,3,4,8,14,18],impli:0,implic:[0,15],implicit:[0,18],implicitli:[0,18],importerror:[16,18],imposs:0,improp:0,improperli:18,inaccess:0,inact:0,includ:[0,2,8,9,14,15,17,18],inclus:0,incom:0,incompat:[14,17],incomplet:[2,18],incorrect:[0,2,14,18],increas:0,incred:0,incur:18,inde:[2,15],indefinit:[0,2],indent:2,independ:0,index:[0,8,10,15],indexerror:0,india:[0,18],indic:[0,2,18],individu:[0,11],inevit:9,infinit:8,info:[2,4,9,13,18],info_error:4,inform:[0,1,2,4,9,11,13,14,15,18],infrastructur:0,ing:4,inher:0,inherit:[0,2,4,8,14],initi:[0,2,11,14],initialis:[0,2],inject:18,inlin:0,inner:[4,18],input:[0,2,4,18],insensit:2,insert:[0,2,8],insert_field_at:[0,18],insid:[0,1,2,4,9,14,18],insight:0,inspect:[2,6],inspir:4,instal:[0,9,16],instanc:[0,2,3,4,9,14,16,18],instant:0,instanti:0,instantli:0,instead:[0,2,4,8,9,12,13,14,18],integ:[0,2,4],integr:18,integration_cr:0,integration_delet:0,integration_id:0,integration_upd:0,integrationaccount:[0,18],integrationappl:0,intellig:4,intend:[0,18],intent:[2,10,14,18],intention:0,inter:3,interact:[2,4,6,8,18],interaction_check:0,interactionmessag:18,interactionrespond:[0,18],interactionresponsetyp:0,interactiontyp:0,interfac:[0,1,2,4,8,14,18],intermix:2,intern:[0,2,4,8,14,15,17,18],internet:[0,2,8,14],interpret:0,intersect:18,interv:[8,18],intric:4,introduc:[4,18],introduct:[10,11,16],introspect:2,invalid:[0,2,8,9,15,18],invalidargu:[0,2],invaliddata:[0,2],invalidendofquotedstringerror:2,invis:[0,18],invit:[2,4,9,14,18],invite_cr:0,invite_delet:0,invite_splash:0,invite_upd:0,invite_url:0,inviteconvert:[2,4],invites_from:[14,18],invitetarget:0,invoc:[0,2,6],invok:[0,2,4,9,14,18],invoke_without_command:2,invoked_par:[2,18],invoked_subcommand:[2,9,18],invoked_with:[2,18],involv:[0,2,14,15,18],io:[0,9,18],ipc:[0,14],irrelev:18,is_anim:0,is_assign:0,is_authent:0,is_being_cancel:8,is_binari:15,is_bot_manag:[0,18],is_clos:[0,2,14],is_connect:0,is_crosspost:0,is_custom_emoji:0,is_default:[0,14,15],is_default_channel:15,is_dirti:0,is_dispatch:0,is_don:0,is_empti:[0,18],is_everyon:[15,18],is_finish:0,is_guild_own:2,is_icon_anim:18,is_in_guild:4,is_integr:[0,18],is_load:[0,18],is_m:[0,2],is_new:[0,4],is_nsfw:[0,2,14,18],is_on_cooldown:2,is_on_mobil:0,is_opu:0,is_own:[2,4,14],is_parti:0,is_paus:0,is_persist:0,is_plai:[0,14],is_premium_subscrib:[0,18],is_priv:[0,14],is_readi:[0,2,14],is_run:[8,18],is_spoil:0,is_strict_subset:0,is_strict_superset:0,is_subset:0,is_superset:0,is_system:[0,18],is_unicode_emoji:0,is_us:[0,18],is_ws_ratelimit:[0,2,18],isinst:[0,4,14],isn:[0,2,8,14,17],iso:0,issu:[2,10,11,15,18],issubclass:0,item:[2,4,18],iter:[2,8,18],its:[0,2,3,4,5,8,9,11,14,15,18],itself:[0,2,3,4,10,14],ja:0,jake:0,japan:0,japanes:18,join:[0,2,4,11,18],join_notif:0,join_voice_channel:14,joindist:4,joindistanceconvert:4,joined_at:[0,4],jpeg:[0,18],jpg:[0,2],js:9,json:[0,9,14],json_url:0,jump:0,jump_url:[0,18],just:[0,2,3,4,9,11,14,16,18],k:4,kbp:0,keep:[0,4,12,14,17,18],kei:[0,2,18],kept:[0,14,18],keyboardinterrupt:[0,2],keyword:[0,2,3,8,9,14,18],kick:[0,14,15,18],kick_memb:[0,18],kind:11,knob:4,know:[0,2,4,5,14,15,18],known:[0,2],kong:0,korea:0,kwarg:[0,2,8],la:[0,14],label:[0,18],lack:[2,17],lambda:[0,4,14,18],languag:0,laps:0,larg:[0,11,18],large_imag:0,large_image_text:0,large_image_url:0,large_text:0,large_threshold:0,largest:2,last:[0,2,15,18],last_messag:0,last_message_id:0,last_pin:0,latenc:[0,2,18],later:[0,2,16],latest:[0,18],launch:[0,8,9,14,18],lavalink:0,layer:18,lazili:[2,18],lead:[0,2,18],leader:0,leak:[1,18],learn:0,least:[0,2,4],leav:[0,1,4,11,14],leave_serv:14,led:0,left:[0,2,4,8,11,18],legaci:18,len:[0,2,4,8,9],length:[0,2,9],less:[0,2,11,18],let:[0,2,8,16],level:[0,2,4,6,13,14,18],levelnam:13,lib:0,libffi:12,libnacl:12,libopu:0,librari:[1,2,4,5,6,8,9,10,11,12,13,14,15,16,17,18],lifecycl:[0,2],light_grai:0,light_grei:0,lighter_grai:0,lighter_grei:0,like:[0,2,4,5,8,9,11,12,14,15,16,18],likewis:[0,18],limit:[0,2,9,10,11,18],line:[0,2,3,4,9,14,16,18],linear:[0,4],linesep:[2,18],linger:[0,2,18],link:[0,18],linter:18,linux:[0,12,18],liquid:4,list:[0,2,3,8,9,11,14,15,17,18],listen:[0,2,3,9,12,14],liter:2,littl:[11,18],live:[0,18],ll:[0,2,16],load:[0,2,5,11,18],load_extens:[2,5],load_opu:0,local:[0,2,4,14],locat:0,lock:[0,4,8,18],log:[1,2,10,11,12,14,16,18],logger:13,logic:[0,2,8,9,14,18],login:[0,1,2,14,15,16,18],loginfailur:[0,2],logout:15,logs_from:[14,15,18],london:0,longer:[0,2,14,15,18],look:[0,2,5,7,8,10,14,16],lookup:[0,2,9,15,18],loop:[0,2,8,9,15,18],lose:0,lost:0,lot:[0,2,4,8,13,14,15,16,18],lotti:0,low:[0,2],lower:[0,4,6,12,14,15,18],lowercas:9,lowest:0,luckili:[4,9,16],lul:9,m:[0,2,12,14,18],m_id:14,machin:[0,18],machineri:[0,14],made:[0,1,2,4,15,16,18],magenta:0,magic:18,mai:[0,2,9,18],main:[0,2,8,15,18],main_task:15,mainli:[0,2,4,18],maintain:[3,11,12],mainten:18,major:[15,17,18],make:[0,1,2,4,5,8,11,14,15,16,18],malici:1,manag:[0,1,2,18],manage_channel:[0,2],manage_emoji:[0,18],manage_emojis_and_stick:0,manage_ev:0,manage_guild:[0,14],manage_messag:[0,2,15],manage_nicknam:0,manage_permiss:[0,18],manage_rol:0,manage_serv:14,manage_thread:0,manage_webhook:[0,18],mandat:11,mandatori:11,mani:[0,2,4,6,9,10,14,15,16,18],manner:[0,2,4,16],manual:[0,2,9,11,18],map:[0,2,4,14],mark:[0,2,3,4,14,15],markdown:[0,2,18],mask:18,mass:[0,4],massiv:[14,15],master:9,match:[0,2,4,9,11,18],mate:[0,2],matter:2,max:[0,2,18],max_ag:0,max_arg:2,max_concurr:[2,18],max_memb:0,max_messag:[0,18],max_pres:0,max_siz:[0,2,18],max_us:0,max_valu:0,max_video_channel_us:[0,18],maxconcurrencyreach:2,maximum:[0,2,8,18],maximum_s:0,mayb:[4,18],me:[0,2,14,18],mean:[0,2,4,5,11,14,15,17,18],meant:[0,2,15,18],measur:[0,2],mechan:[2,5,18],media:0,medium:0,meet:[0,2,14],member2:4,member:[1,2,3,4,9,18],member_cache_flag:0,member_count:[0,18],member_disconnect:0,member_id:0,member_mov:0,member_prun:0,member_role_upd:0,member_upd:0,member_verification_gate_en:0,membercacheflag:[2,11,18],memberconvert:[2,4,18],membernotfound:2,memberrol:4,members_remov:0,membership:[0,18],membership_st:0,memori:[0,9,10,14,18],mention:[0,2,3,4,14,15,18],mention_author:[0,18],mention_everyon:0,mentioned_in:[0,18],menu:0,meow:9,merg:0,merger:14,messag:[2,4,11,12,13,15,16,18],message_bulk_delet:0,message_command:2,message_count:0,message_delet:0,message_id:[0,2,9,18],message_length:0,message_pin:0,message_reaction_remov:18,message_reaction_remove_al:18,message_unpin:0,message_upd:0,messageconvert:[2,4,18],messageflag:18,messagenotfound:2,messagerefer:18,messagetyp:[0,18],messsag:12,met:2,meta:[2,6],metaclass:[2,3,14],metadata:[0,9],method:[0,2,4,6,8,9,14,18],mfa:0,mfa_en:0,mfa_level:[0,18],mfa_sm:0,mid:2,might:[0,4,10,11,12,18],mighti:0,migrat:[10,18],millisecond:[0,18],mimic:0,min_valu:0,mind:[0,4,14,17],miniatur:0,minifi:2,minim:2,minimalhelpcommand:[14,18],minimalist:14,minimis:4,minimum:0,minor:18,minut:[0,2,8,11],mirror:[0,2,18],misc:0,miscellan:[0,2],mismatch:[0,18],miss:[0,2,18],missing_permiss:2,missing_rol:2,missinganyrol:2,missingflagargu:2,missingpermiss:2,missingrequiredargu:2,missingrequiredflag:2,missingrol:2,mister:2,misus:14,mitig:11,mix:[0,4],mixin:2,mobil:0,mobile_statu:0,mode:[0,13,18],model:4,moder:[0,2],modern:10,modif:2,modifi:[0,17],modul:[0,2,4,9,13,14,18],modulenotfounderror:16,moduletyp:2,moment:0,monei:3,monet:0,monetization_en:0,month:18,more:[0,1,2,3,4,5,9,11,12,13,14,15,18],more_emoji:0,more_stick:0,most:[0,2,4,8,14,18],mostli:11,move:[0,14,18],move_channel:14,move_memb:[0,14,18],move_rol:14,move_to:[0,18],movement:0,mp3:14,msg:[0,2,4,14],much:[0,2,4,14,18],multi:[0,4,18],multipl:[0,2,4,9,14,18],multiprocess:9,music:9,must:[0,1,2,3,4,5,8,9,11,14,15],mute:[0,18],mute_memb:0,mutual:[0,18],mutual_guild:[0,18],my:[2,3,12,14],my_aft:9,my_fil:[9,14],my_last_messag:14,my_messag:2,my_url:9,my_whitelist:2,mybot:14,myclient:[0,12],mycog:[2,3,8,14],mycontext:14,myconvert:14,myhelpcommand:14,n:[2,4,9,18],naiv:[0,2],name:[0,1,2,3,4,5,9,13,14,15,16,18],namedtupl:[0,14,18],namespac:0,nan:0,nativ:[0,2],natur:[0,2,14,17],navig:[1,11,18],nearli:0,necessari:[0,2,11,14],need:[0,1,2,3,4,5,8,9,14,15,16,18],neg:[0,2],nest:[0,4,9],never:[0,1,2,5,9],new_filenam:9,new_memb:0,newer:[15,18],newest:[0,2],newli:0,newlin:2,news_thread:0,next:[0,2,4,8,16,18],next_iter:[8,18],nice:4,nicer:0,nick:0,nicknam:[0,2,4,11,18],nitro:[0,18],nitro_boost:0,no_categori:2,no_pm:14,no_rol:0,nobodi:0,noentrypointerror:2,nois:18,noisi:4,nomoreitem:0,non:[0,2,4,8,9,18],nonc:[0,18],none:[0,2,3,4,8,9,14,18],nonsens:2,noprivatemessag:[2,4],nor:0,normal:[0,2,4,9,14,18],note:[0,1,2,3,4,11,14,15,18],notfound:[0,2,18],noth:[0,2,4,11],notic:0,notif:[0,18],notifi:0,notificationlevel:0,notown:2,now:[0,1,2,3,5,11,12,15,16,18],nowher:9,nsfw:[0,2,4,14,18],nsfw_level:0,nsfwchannelrequir:2,nsfwlevel:0,ntp:0,number:[0,2,4,8,11,18],o:18,oauth2:[0,1],oauth_url:[0,1,18],obj:[0,18],object:[2,4,9,10,14,18],objectconvert:[2,4],obtain:0,obvious:8,occur:[0,2,5,8,9,18],octob:18,off:[0,2,4,8,9,14,18],offer:[0,6,9,11],offici:[0,14,18],offlin:[0,14,18],offset:0,often:[0,4,6,18],og_blurpl:0,okai:18,old:[0,1,2,11,14,15,17,18],older:[0,15],oldest:[0,2],oldest_first:[0,2],omit:[0,4],on_:[0,2],on_bulk_message_delet:0,on_bulker_cancel:8,on_channel_:14,on_channel_cr:14,on_channel_delet:14,on_channel_upd:[14,15],on_command:[2,14],on_command_complet:[2,14],on_command_error:[2,4,14,18],on_connect:[0,2],on_disconnect:0,on_error:[0,2],on_group_join:0,on_group_remov:0,on_guild_avail:[0,14],on_guild_channel_:14,on_guild_channel_cr:[0,14],on_guild_channel_delet:[0,14],on_guild_channel_pins_upd:0,on_guild_channel_upd:[0,14],on_guild_emojis_upd:[0,14],on_guild_integrations_upd:0,on_guild_join:[0,14],on_guild_remov:[0,14],on_guild_role_cr:[0,14],on_guild_role_delet:[0,14],on_guild_role_upd:[0,14],on_guild_stickers_upd:0,on_guild_unavail:[0,14],on_guild_upd:[0,14],on_help_command_error:[2,14,18],on_integration_cr:0,on_integration_upd:0,on_interact:[0,2],on_invite_cr:[0,18],on_invite_delet:[0,18],on_member_ban:[0,14,18],on_member_join:[0,3,11],on_member_remov:[0,11],on_member_unban:[0,18],on_member_upd:[0,15,18],on_messag:[0,2,11,12,14,15,16],on_message_delet:0,on_message_edit:0,on_presence_upd:[0,18],on_private_channel_:14,on_private_channel_cr:14,on_private_channel_delet:14,on_private_channel_pins_upd:0,on_private_channel_upd:[0,14],on_raw_bulk_message_delet:0,on_raw_integration_delet:0,on_raw_message_delet:0,on_raw_message_edit:0,on_raw_reaction_add:[0,11],on_raw_reaction_clear:0,on_raw_reaction_clear_emoji:[0,18],on_raw_reaction_remov:0,on_raw_typ:0,on_reaction_add:[0,11,18],on_reaction_clear:[0,18],on_reaction_clear_emoji:[0,18],on_reaction_remov:[0,18],on_readi:[0,2,9,12,16,18],on_resum:[0,18],on_server_avail:14,on_server_emojis_upd:[14,18],on_server_join:14,on_server_remov:14,on_server_role_cr:14,on_server_role_delet:14,on_server_role_upd:[14,15],on_server_unavail:14,on_server_upd:14,on_shard_connect:[0,18],on_shard_disconnect:[0,18],on_shard_readi:[0,18],on_shard_resum:[0,18],on_socket_clos:15,on_socket_event_typ:[0,18],on_socket_open:15,on_socket_raw_rec:[0,18],on_socket_raw_send:[0,15,18],on_socket_rec:15,on_socket_respons:18,on_stage_instance_cr:0,on_stage_instance_delet:0,on_stage_instance_upd:0,on_statu:15,on_thread_delet:0,on_thread_join:[0,18],on_thread_member_join:0,on_thread_member_remov:[0,18],on_thread_remov:0,on_thread_upd:0,on_timeout:0,on_typ:[0,18],on_user_upd:[0,18],on_voice_server_upd:0,on_voice_state_upd:[0,11,14,15,18],on_webhooks_upd:0,onc:[0,2,3,5,8,9,11,14,18],one:[0,1,2,3,4,8,9,11,14,15,18],ones:[0,2,11,12,14],onli:[0,2,8,9,11,14,15,17,18],onlin:[0,2,11,15],only_for_m:2,only_for_own:2,only_m:2,only_ment:0,onto:[0,2],opcod:18,open:[0,2,4,9,18],oper:[0,2,8,9,14,15],opportun:14,opportunist:0,opposit:14,opt:[0,11,18],optim:18,optimis:[0,9,10,14],option:[0,6,7,8,9,13,14,18],option_descript:2,opu:18,opuserror:0,opusnotload:0,orang:0,order:[0,1,2,4,7,9,11,14,15,18],organ:3,orient:10,origin:[0,2,11,18],original_messag:[0,18],os:0,other:[0,1,2,4,9,11,13,14,15,16,18],otherwis:[0,2,17,18],our:[0,4,5,8,10,11,14,16],ourselv:[0,16],out:[0,2,4,5,8,9,10,13,14,15,18],outag:[0,2],outlin:[0,2],output:[0,2,13,18],outsid:[0,2,14],over:[0,2,11,14,16,18],overal:0,overrid:[0,2,3,4,9,14],overridden:[0,2,3,8,14],overriden:0,overwrit:[0,2,14,18],overwrite_cr:0,overwrite_delet:0,overwrite_upd:0,overwrites_for:0,overwritten:[2,18],own:[0,2,4,8,18],owner:[0,1,2,4,14,18],owner_id:[0,2,14,18],owner_or_permiss:2,ownership:0,p:[2,18],pack:[0,2],pack_id:0,packag:[2,12,18],packet:0,pad:2,page:[0,1,2,4,10,11,14,15,16,18],pagin:[0,18],pair:[0,2,4],param:2,paramet:[0,2,3,5,6,7,8,9,11,14,15,17,18],parent:[0,2,14,18],parent_id:0,parenthes:[14,18],pars:[0,2,4,18],parser:[2,4],part:[0,2,7,9,11,14,17],parti:[0,8,9],partial:[0,2],partialemoji:[2,4,18],partialemojiconversionfailur:2,partialemojiconvert:[2,4],partialinvitechannel:2,partialinviteguild:[2,18],partialmessag:[2,4,18],partialmessageconvert:[2,4,18],particip:[0,2],particular:[0,14],partli:18,partner:[0,18],party_id:0,pass:[0,2,3,4,7,8,11,14,15,18],pass_context:14,password:[1,14],past:[0,1],patch:14,path:[0,2,5,9,18],pathlik:0,patienc:18,pattern:8,paus:[0,14],payload:[0,2,15,18],pcm:0,pcmvolumetransform:14,pend:[0,18],penultim:0,peopl:[0,2,4],pep:[0,2,4],per:[0,2,11,14,18],percentag:0,perform:[0,2,15],period:[0,2],perm:[0,2],permiss:[1,2,4,9,12,14,15,18],permissionoverwrit:18,permissions_for:[0,2,18],permissions_in:18,permissions_sync:[0,18],permit:0,persist:[0,2,18],persistent_view:[0,2],person:[1,2,4],perspect:0,phone:0,piec:[0,9],pin:[0,2,14,18],pin_messag:14,ping:[0,1],pins_add:[0,18],pins_from:14,pip:12,pipe:0,pixel:0,pjsalt:0,place:[0,2,9,10,13,15,18],placehold:0,plai:[0,2,14,16,18],plain:5,plan:18,platform:[0,18],player:[0,14,18],pleas:[0,1,2,4,18],plu:2,plug:14,plugin:5,plural:4,png:[0,2,9,14],po:18,point:[0,2,3,4,5,9],pointless:0,pointlessli:0,polici:[0,11,18],pollut:12,pong:0,pool:[0,2,8],popen:0,popul:2,populate_own:2,pornographi:0,port:18,portal:[0,11],portion:[0,2,16],posit:[0,2,14,18],posix:2,posixlikeflag:4,possibl:[0,1,4,9,11,13,15,18],post:[0,2,14],postgresconnectionerror:8,potenti:[0,4,18],power:[2,4,6,14,15,18],pre:[0,2,18],precis:[0,18],pred:14,predefin:2,predic:[0,2,4,18],prefer:0,prefer_auth:0,preferred_local:0,prefix:[0,4,6,9,11,15,18],prefixes_for:2,prematur:2,premium:[0,2,18],premium_guild_subscript:0,premium_guild_tier_1:0,premium_guild_tier_2:0,premium_guild_tier_3:0,premium_promo_dismiss:0,premium_sinc:[0,18],premium_subscrib:[0,18],premium_subscriber_rol:[0,18],premium_subscript:0,premium_subscription_count:[0,18],premium_ti:[0,18],prepar:[0,2,18],prepare_help_command:[2,14],presenc:[0,2,9,14,18],present:[0,14],press:0,pretend:[5,14],pretti:[1,4,15],prevent:[0,2,10,18],preview_en:0,previou:[0,2,4,14,18],previous:[0,2,15,18],price:4,primari:0,primary_sku_id:0,primer:[6,10,18],principl:17,print:[0,2,3,5,8,9,12,14,16],printer:8,prior:[0,2,14,15],priority_speak:0,privaci:0,privacy_level:0,privacy_policy_url:0,privat:[0,2,14,17,18],private_channel:[0,2,15],private_thread:0,privatechannel:[2,14],privatemessageonli:2,privileg:[0,18],privilegedintentsrequir:0,probabl:[0,2],probe:0,problem:[0,9,14],procedur:2,process:[0,1,2,4,5,9,14,18],process_command:[2,9],process_slash_command:2,produc:0,profil:[0,18],program:[0,2,9,13],project:[10,12],promis:0,promot:0,prone:0,proof:14,propag:[0,2,4,18],proper:[0,2,4,18],properli:[0,2,11,16,18],properti:[0,2,3,4,8,18],protocol:[0,2,3],provid:[0,2,4,9,11,12,14,15,18],proxi:0,proxy_auth:0,proxy_url:0,prune:[0,18],prune_memb:[0,14,18],pseudo:14,public_flag:[0,18],public_thread:0,public_updates_channel:[0,18],publicli:[0,17,18],publicuserflag:18,publish:0,pull:9,pure:[0,2],purg:[0,14],purge_from:14,purpl:0,purpos:[0,2,9,12,14],push:9,put:[9,14],py:[0,2,5,6,7,8,9,12,13,15,16,18],pypi:12,pyright:18,python3:[9,12,16],python:[0,2,3,4,5,9,10,12,13,15,16,17,18],qualifi:[2,5],qualified_nam:[2,3,14],qualiti:0,queri:[0,2,3,11,18],query_memb:[0,11,18],question:[10,15],queue:2,quick:[6,9,11,12,14],quickli:[5,18],quickstart:10,quirk:0,quit:15,quot:[2,4,14,18],r:[0,4,9,14],race:[2,18],radic:11,raffl:0,rais:[0,2,4,8,14,16,18],ram:18,randint:3,random:[0,3,4,9,18],randomli:18,rang:[0,4],rare:[0,2,5],rate:[0,2,10,11,18],ratelimit:0,rather:[0,2,4,18],raw:[0,2,18],raw_channel_ment:[0,15],raw_ment:[0,15],raw_role_ment:0,raw_statu:0,rawmessageupdateev:18,rawreactionactionev:[11,18],rb:[0,9],re:[0,1,2,4,8,10,11,14,18],reach:[0,2,4,14,18],react:[0,2,18],reaction:[2,11,14,18],reaction_add:[0,2,14],reaction_remov:0,read:[0,2,5,8,9,14,18],read_messag:[0,18],read_message_histori:[0,2],readabl:2,reader:18,readi:[0,2,8,10,18],realiti:0,realli:0,reason:[0,2,4,6,14,15,18],reassign:18,receiv:[0,2,4,12,14,15,16,18],recent:[0,2],recipi:0,recipient_add:0,recipient_remov:0,recognis:[0,18],recommend:[0,2,4,9,13,14,18],reconnect:[0,2,8,14,18],record_usag:2,recoveri:0,recurs:[0,2],red:0,redesign:[14,18],redirect:[0,18],redirect_uri:0,reduc:[11,15,18],refer:[3,4,5,6,10,14,15,18],referenc:[0,4],refresh:[0,2,9],regard:[2,9,11,18],regardless:[0,2,14],regener:1,regex:[2,9,18],region:[0,2,14,15,18],regist:[0,2,3,4,8,14,15,16,18],registr:[0,2,6,14],regress:18,regular:[0,2,4,14,18],regularli:2,reinvok:[2,14,18],reiter:15,rejoin:0,rel:[0,2,8,18],relat:[2,10,11,14,15,18],relationship:0,relax:4,releas:18,releaselevel:0,relev:14,reli:[0,2,18],reliabl:18,reload:[2,6],reload_extens:[2,5],remain:[0,18],rememb:[9,12],remind:0,reminisc:4,remot:9,remov:[0,2,3,4,5,8,11,15,17,18],remove_author:[0,18],remove_check:[2,18],remove_cog:[2,3],remove_command:[2,18],remove_exception_typ:8,remove_field:0,remove_foot:0,remove_item:0,remove_listen:2,remove_markdown:[0,2,18],remove_ment:2,remove_react:[0,14,18],remove_rol:[0,14],remove_us:0,renam:[14,17,18],render:[0,2,18],reorder:4,repeat:0,repeatedli:[4,18],repetit:[4,6],replac:[0,2,14,18],replace_rol:14,repli:[0,2,14,18],replied_us:[0,18],report:[0,2,10],repositori:[9,10],repres:[0,2,8,14,18],represent:[0,18],request:[0,2,4,11,14,18],request_to_speak:[0,18],requested_to_speak_at:0,requesting_to_speak:0,requestswebhookadapt:18,requir:[0,1,2,4,11,12,14,18],require_colon:0,require_var_posit:[2,18],resend:18,reset:[0,2,18],reset_cooldown:2,resid:3,resili:14,resolut:[0,18],resolv:[0,2,18],resolve_invit:0,resolve_templ:0,resourc:[0,10,14],resp:[9,14],respect:[0,2,14],respond:[0,9,12,16,18],respons:[0,9,18],rest:[2,4,9],rest_is_raw:[2,4],restart:[0,2,5,8,18],restrict:[11,18],result:[0,1,2,4,9,11,14,18],resum:[0,2,4,14,18],retri:[2,8,14,18],retriev:[0,2,3,14,18],retry_aft:[2,18],return_messag:2,reus:0,revamp:14,revert:[14,18],revok:[0,1,2,18],revolv:12,rework:18,rewritten:18,rgb:[0,2,14,18],rich:[0,4,10,14,18],right:[0,4,9,14],rng:0,robust:4,role:[2,4,11,14,15,18],role_a:18,role_b:18,role_cr:0,role_delet:0,role_hierarchi:[14,18],role_id:0,role_ment:0,role_upd:0,roleconvert:[2,4],rolenotfound:2,roll:2,root:[2,14],root_par:[2,14],roughli:[0,2,11],routin:2,row:0,rpc:0,rpc_origin:0,rtc_region:[0,18],rule:[0,2,4,18],rules_channel:[0,18],run:[0,1,2,4,5,8,12,14,16,18],run_convert:2,run_coroutine_threadsaf:9,run_until_complet:[0,2,15],runtim:[2,9,14,18],runtime_check:0,runtimeerror:[2,8,14],russia:0,s:[0,1,2,3,4,5,8,10,11,12,13,14,15,16,17,18],safe:[0,9],safeti:[0,18],sai:[0,2,3,14],said:[0,2,9,14,15],same:[0,2,3,4,9,16,18],san:2,sane:10,satur:0,save:[0,4,14,18],scenario:[0,2],schedul:8,scheme:18,scope:[0,1,9,18],screen:[0,11,18],script:[12,16,18],scroll:11,scrub:[2,14],search:[0,2,4,10],second:[0,2,3,4,8,9,11,18],secondari:0,secret:[0,1,4,14],secret_cog_data:14,secretguilddata:4,secretguilddata_error:4,section:[0,2,11,16],see:[0,2,3,4,7,8,9,11,14,15,18],seed:[0,18],seek:0,seek_begin:0,seem:18,seemingli:18,seen:[0,4,15],selectopt:18,self:[0,2,3,4,8,12,14],self_deaf:0,self_mut:0,self_rol:[0,18],self_stream:[0,18],self_video:0,sell:[0,4],semant:[4,17],send:[0,2,3,4,5,11,16,18],send_audio_packet:0,send_bot_help:[2,14],send_cog_help:[2,14],send_command_help:[2,14],send_error_messag:[2,14],send_fil:[14,18],send_group_help:[2,14],send_help:[2,14,18],send_messag:[0,14,15,18],send_messages_in_thread:0,send_pag:2,send_tts_messag:0,send_typ:14,sens:15,sent:[0,2,4,18],sentinel:0,separ:[0,2,9,12,15,18],seq:0,sequenc:[0,2,8,15,18],seri:18,serialis:18,serv:9,server:[0,1,2,9,10,15,18],server_permiss:18,server_voice_st:[14,18],serverregion:[15,18],servic:[0,1],sess:14,session:[0,2,9,14,18],session_id:0,set:[0,2,3,4,8,10,11,12,14,16,18],set_author:0,set_channel_permiss:15,set_field_at:0,set_foot:0,set_imag:[0,9],set_permiss:[0,14],set_thumbnail:0,setformatt:13,setlevel:13,settabl:0,setup:[0,2,5,9,13],seven:0,seven_day_thread_arch:0,sever:[2,14],shallow:0,shard:[0,2,18],shard_count:[0,14],shard_id:[0,2,14],shardinfo:18,share:[0,1,2,3],shift:[0,2],shim:18,shop:4,short_doc:2,shortcut:[0,2,14,18],shorten:2,shorten_text:2,shorter:4,shorthand:[0,2,9],should:[0,1,2,3,4,7,8,9,11,12,14,15,18],shouldn:18,show:[0,11,14,18],show_hidden:2,showcas:12,shown:[0,2,18],side:[4,9,11,17],sidestep:18,sign:9,signal:[0,2,4,18],signatur:[2,4,9,14,15,18],signific:14,significantli:[11,14,18],silent:[0,2,4],similar:[0,2,4,5,8,9,14,18],similarli:[0,2,4,14],simpl:[4,5,7,8,9,13,14,16,18],simplifi:18,simul:[0,2,4],sinc:[0,2,3,4,9,11,14,15,16,18],singapor:0,singl:[0,2,3,4,5,8,14,18],singular:[4,14],situat:0,size:[0,2,14,18],skip:[0,4],sku:0,sku_id:0,slap:4,slapper:4,slash:[0,2,6],slash_command:[2,7,9],slash_command_guild:[2,7,9],slate:18,sleep:[0,2,8,9,18],sleep_until:[0,18],slightli:[0,4,11],slim:[0,9],slot:[0,18],slow:[0,2],slow_count:8,slowdown:11,slowmod:[0,4],slowmode_delai:[0,18],slug:0,sm:0,small:[0,7,18],small_imag:0,small_image_text:0,small_image_url:0,small_text:0,snippet:[13,14],snowflak:2,snowflake_tim:0,so:[0,1,2,3,4,9,14,15,16,18],socket:0,sold:0,sole:[0,2,4],solut:11,some:[0,2,3,4,8,9,11,14,15,18],some_channel:9,some_filenam:0,some_fp:14,somecogmixin:2,somehow:[0,2,18],somemixin:2,someon:[0,1,2,18],someth:[0,2,4,8,10,12,14,15,16,17,18],sometim:[0,4,5,12,18],somewhat:18,somewher:11,song:[0,9],soon:[0,1],sort:[0,2,14],sort_command:2,sort_valu:0,sourc:[0,9,12,14,18],source_channel:0,source_guild:0,source_message_delet:0,south:0,south_korea:[0,18],southafrica:0,space:[2,4,14],spam:[4,18],spammi:11,spawn:18,speak:[0,18],speaker:0,special:[0,2,6,9,14],specif:[0,2,4,7,10,11,14,16,18],specifi:[0,2,4,8,9,11,13,14,15,18],spectat:0,speech:0,speed:10,spell:2,spent:18,spike:18,splash:[0,18],split:[0,4],spoiler:[0,18],spotifi:18,stack:18,staff:0,stage:[0,2,18],stage_channel:0,stage_inst:0,stage_instance_cr:0,stage_instance_delet:0,stage_instance_id:0,stage_instance_upd:0,stage_moder:0,stage_voic:0,stagechannel:[2,4,18],stagechannelconvert:[2,4],stageinst:2,stageprivacylevel:0,stale:18,stand:[0,18],standard:[0,2,12,18],standardstick:2,start:[0,2,8,13,14,16,17,18],start_private_messag:14,start_thread:18,starter:18,startswith:[0,2,16],startup:11,state:[0,2,3,4,8,15,18],statement:0,static_format:[0,18],statu:[0,2,11,14,15,18],status:[11,18],status_cod:9,stderr:[0,2,4,8,18],stdin:[0,18],stdout:13,step:[0,4,5,10,11,16],stereo:0,sticker:[2,18],sticker_cr:0,sticker_delet:0,sticker_id:[0,2],sticker_limit:0,sticker_upd:0,stickerformattyp:0,stickerpack:2,stickertyp:0,still:[0,2,4,11,15,18],stop:[0,2,8,14,18],store:[0,14,18],storechannel:[2,4,18],storechannelconvert:[2,4,18],str:[0,2,4,9,18],straightforward:[1,15],strang:[0,18],strategi:2,stream:[9,18],streamintegr:0,streamplay:18,strict:[0,11],string:[0,2,4,5,9,14,15,18],stringli:0,strip:[2,4,18],strip_after_prefix:[2,18],strongli:13,structur:[15,18],stuff:[0,4,9],style:[0,9,16,18],sub:[0,2,4],subclass:[0,2,3,11,18],subcommand:[2,3,14],subcommand_not_found:[2,14],subcommand_pass:[2,18],subject:[0,18],submit:9,subprocess:0,subprocess_kwarg:0,subscrib:[0,11],subscript:[0,18],subsequ:[0,3],subset:0,substitut:0,subtl:0,succe:[2,8],succeed:2,success:[0,18],successfulli:[0,8],suffix:[2,18],suggest:9,suit:[0,18],suitabl:0,summari:0,superset:0,suppli:[0,2],support:[1,2,4,7,8,11,12,14,15,18],suppress:[0,18],suppress_emb:0,sure:[1,2,9,11,16],surpass:0,surpris:[4,18],swallow:0,sy:[0,2,8],sydnei:0,sync:[0,18],sync_permiss:0,synced_at:0,synchron:[0,2,14],syncwebhook:18,syntax:[0,2,4,10],syntaxerror:18,system:[0,2,4,7,11,12,14,16,18],system_channel:[0,3,18],system_channel_flag:[0,18],system_cont:[0,18],systemchannelflag:18,t:[0,2,4,8,11,14,16,17,18],tab:[1,11],tabl:[0,4],tag:[0,18],take:[0,2,3,4,5,8,9,14,15,18],taken:[0,2,18],talk:[0,11],target:[0,4],target_appl:0,target_application_id:0,target_typ:0,target_us:0,targettyp:0,task:[0,2,6,10,14,18],teal:0,team:[2,18],team_us:[0,18],teammembershipst:0,teardown:[2,5],teaser_graph:9,technic:[0,3,4,9,18],techniqu:[4,11],tediou:4,tell:[2,3,4,8,15,18],templat:[2,18],temporari:[0,18],ten:0,term:[0,2,4],termin:[0,2,18],terms_of_service_url:0,test:[2,4,7,14,15],test_error:4,tester_rol:0,text:[0,2,14,15,18],text_channel:[0,9,14],textchannel:[2,4,14,18],textchannelconvert:[2,4,14],than:[0,2,4,9,11,12,14,15,18],thank:18,thei:[0,2,3,4,9,14,15,18],them:[0,2,3,4,5,9,11,13,14,15,18],theme:[0,18],themselv:0,thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],thing:[0,1,4,8,9,11,14,15,16,17,18],third:2,those:[0,2,4,8,14,18],though:[0,18],thousand:18,thread:[2,4,9,15,18],thread_creat:0,thread_delet:0,thread_id:0,thread_starter_messag:0,thread_upd:0,threadconvert:[2,4],threadmemb:18,threadnotfound:2,three:[0,2],three_day_thread_arch:0,through:[0,2,3,4,8,9,11,14,15,16,18],throughout:4,thrown:[0,2],thu:[0,2,14,17],thumb:[0,2,9],thumbnail:[0,9,18],thumbsup:9,ti:0,tick:[0,1],ticket:0,ticketed_events_en:0,tier:0,tighten:18,time:[0,1,2,4,5,6,8,9,10,11,14,17,18],timedelta:0,timeout:[0,2,14,18],timeouterror:[0,2,14],timestamp:[0,14,18],timezon:[0,8],tip:0,titl:[0,14],to_dict:0,to_fil:[0,18],to_refer:[0,18],to_rgb:[0,14],to_slap:4,to_tupl:14,to_upp:4,togeth:[2,4,9,14],toggl:[2,4,18],token:[0,1,2,12,14,15,16,18],too:[0,2,9,14,18],took:[0,14],tool:[2,3,18],toomanyargu:2,toomanyflag:2,top:[0,7],top_rol:[0,18],topic:[0,4],total:[0,2,11],toward:14,trace:18,traceback:0,track:[0,11],track_id:0,track_url:0,tracker:10,tradit:0,traffic:0,trait:0,transfer:0,transform:[0,2,9],transmit:0,transpar:[0,2,14],trap:18,treat:4,tri:[0,2,4,18],tribool:2,trigger:[0,2,16,18],trigger_typ:[0,2,14],trim:0,troubl:10,troubleshoot:7,truli:11,trust:[0,18],try_memb:0,try_own:2,try_us:[0,2],tt:[0,15],tuesdai:0,tune:4,tupl:[0,2,3,14,18],turn:[0,4,14],tutori:[12,13],twice:18,twitch:0,twitch_nam:0,two:[0,2,4,9,14,18],type:[0,2,8,9,11,15,18],typeerror:[0,2,8,18],typic:[0,2,3],u0001f44d:9,u:[2,12,14],ui:[2,18],ultim:[3,5],un:[0,2],unabl:0,unarch:0,unarchiv:[0,18],unauthent:0,unavail:[0,18],unban:[0,14,18],unbind:2,unbound:14,unboundlocalerror:18,uncaught:0,unchang:2,uncheck:1,uncondition:18,under:[0,1,2,4,11,18],undergo:14,underli:[0,2,14],underlin:2,underscor:[9,17],understand:2,undesir:8,undetermin:4,undo:[0,2],undocu:18,undon:[0,8],unexpect:[0,2,18],unexpectedquoteerror:2,unfortun:11,unhandl:8,unicod:[0,9,18],uninitialis:18,unintend:[2,4],union:[0,2,8],uniqu:[0,2],unix:[0,2],unknown:[0,2,18],unless:[0,1,2,14],unlik:[0,2,4,8],unlimit:[0,2],unload:[2,5,14,18],unload_extens:2,unlock:0,unnecessari:[0,18],unpack:[2,18],unpin:[0,14,18],unpin_messag:14,unread:0,unrestrict:0,unset:2,unspecifi:[0,2],unsuppress:0,unsur:1,unsync:0,until:[0,2,4,8,9,15,18],unus:18,up:[0,2,4,6,10,12,14,16,18],updat:[0,2,8,9,11,14,17,18],update_rate_limit:2,updated_at:0,upgrad:[17,18],upload:[0,2,7,14,18],upon:[0,2,18],upper:4,urgent:0,uri:0,url:[0,1,2,9,14,18],url_a:18,us:[0,1,2,4,5,6,7,8,10,11,12,13,14,15,16,18],us_centr:0,us_east:0,us_south:0,us_west:[0,2,15],usabl:[0,2,18],usag:[0,2,3,4,14,18],use_cach:[0,18],use_external_emoji:[0,18],use_external_stick:0,use_nicknam:[2,4],use_private_thread:0,use_slash_command:[0,9,18],use_thread:0,use_voice_activ:0,useless:15,user:[1,2,4,9,11,12,15,16,18],user_id:[0,2,18],user_limit:0,userbot:18,userconvert:[2,4,14,18],userflag:0,userinputerror:[2,18],usernam:[0,4,11,18],usernotfound:2,usual:[0,2,4,5,12],utc:[0,2,8],utcnow:0,utf:[2,13],util:[1,2,9,14,15,18],utilis:12,v0:14,v1:[4,10],v2:[4,14],v5:18,v6:18,v:[0,4],valid:[0,2,4,9,14,15,18],valu:[0,2,4,8,15,17,18],valueerror:[0,2,8,18],vaniti:[0,14],vanity_cod:0,vanity_invit:[0,14],vanity_url:0,vanity_url_cod:0,variabl:[0,14,15],variad:[2,4],variou:[3,11,18],vc:14,ve:[0,1,14,16],venv:12,verbos:13,veri:[0,2,4,7,8],verif:[0,11,18],verifi:[0,2,11,18],verification_level:[0,18],verification_pending_guild_limit:0,verificationlevel:[0,18],verified_bot:0,verified_bot_develop:[0,18],verify_check:[2,18],verify_kei:0,version:[2,4,8,9,10,11,12,13,15,18],version_info:[0,18],versionad:0,very_high:18,via:[0,2,3,4,7,8,9,11,13,14,15,18],video:0,video_quality_mod:0,videoqualitymod:0,view:[2,14,18],view_audit_log:[0,14],view_channel:[0,18],view_guild_insight:[0,18],viewabl:0,vip:[0,18],vip_amsterdam:0,vip_region:0,vip_us_east:0,vip_us_west:0,visibl:[0,2,14,18],visit:3,voic:[2,9,12,18],voice_channel:[0,14],voice_cli:[0,2,14,18],voice_client_in:18,voice_memb:14,voice_server_upd:0,voice_st:[0,18],voice_state_upd:0,voicechannel:[2,4,14,18],voicechannelconvert:[2,4,14],voicecli:[2,14,18],voiceprotocol:[2,18],voiceregion:[0,2,18],voicest:[14,18],volum:[0,14],vs:0,w:[9,13],wa:[0,2,4,8,9,14,15,16,18],wai:[0,2,4,8,9,11,14,16,18],wait:[0,2,8,11,18],wait_for:[0,2,14],wait_for_messag:[14,18],wait_for_react:[14,18],wait_until_login:[14,18],wait_until_readi:[0,2,8,14,18],walk:[2,16],walk_command:[2,3,18],wall:4,want:[0,1,2,3,4,5,7,8,9,11,12,14,15,18],warn:[0,4,9,13,18],watch:[0,9],we:[0,1,2,3,4,5,8,9,11,14,15,16,18],web:0,web_statu:0,webhook:[2,14,18],webhook_cr:0,webhook_delet:0,webhook_id:[0,2,14],webhook_upd:0,webhookmessag:[2,18],webhooktyp:[0,18],webm:0,webp:0,websit:[1,11],websocket:[0,2,14,18],week:0,welcom:[0,3],welcome_screen_en:0,well:[0,2,3,4,9,11,13,14,18],went:15,were:[0,2,8,11,14,15,18],west:[0,2,15],what:[0,2,4,5,8,13,14,15,17,18],whatev:[0,18],whatever_you_want_to_call_it:9,when:[0,1,2,3,4,5,8,9,10,11,12,14,15,16,17,18],when_ment:2,when_mentioned_or:2,whenev:[0,2,14],where:[0,2,3,4,14,15,18],whether:[0,2,8,11,14,18],which:[0,2,3,4,5,7,8,9,11,14,15,16,17,18],whisper:14,white:4,whitelist:2,whitespac:[2,18],who:[0,2,11,18],whose:0,why:2,wide:[0,1,2,12],widget:[2,18],widget_channel:0,widget_en:0,width:[0,2,18],window:[0,12,16,18],windowslikeflag:4,winner:0,wise:[0,2,14,18],wish:[0,2],with_:18,with_count:[0,2],with_expir:[0,2],with_format:0,with_siz:0,with_static_format:0,withdraw_monei:3,within:[0,2,4,9,18],without:[0,2,5,9,11,14,17,18],won:0,word:4,work:[0,1,2,4,8,10,12,14,15,18],world:[0,4],worri:8,worth:[0,1,4],would:[0,2,3,4,9,11,13,14,18],wrap:[0,4,9,14,18],wrapper:10,write:[4,9,13,18],written:[0,4,11],wrong:[0,2],ws:[0,18],www:18,x:[0,2,4,14,18],x__y:0,xsalsa20_poly1305_lit:18,y:[0,4],ye:[1,4],year:0,yellow:0,yet:[0,18],yield:[0,2,9,15,18],you:[0,1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,18],your:[0,2,3,4,7,9,10,11,12,13,14,15,16,18],yourself:[0,2,4,11,14],youtub:[0,18],zero:0,zerodivisionerror:18,zh:0,zip:9},titles:["API Reference","Creating a Bot Account","API Reference","Cogs","Commands","Extensions","discord.ext.commands \u2013 Bot commands framework","Slash Commands","discord.ext.tasks \u2013 asyncio.Task helpers","Frequently Asked Questions","Welcome to discord.py","A Primer to Gateway Intents","Introduction","Setting Up Logging","Migrating to v1.0","Migrating to v0.10.0","Quickstart","Version Guarantees","Changelog"],titleterms:{"0":[14,15,18],"1":18,"10":[15,18],"11":18,"12":18,"13":18,"14":18,"15":18,"16":18,"2":18,"3":18,"4":18,"5":18,"6":18,"7":18,"abstract":0,"break":[17,18],"class":0,"do":[9,11],"enum":2,"function":[0,9,15],"int":14,"long":11,"new":18,A:[11,16],For:14,Is:9,account:1,actionrow:0,activ:0,add:9,advanc:4,after:[9,14],allowedment:0,an:9,api:[0,2,8,18],appinfo:0,applic:0,applicationflag:0,ar:[11,14],aren:9,argument:[4,9,15],ask:9,asset:0,async:0,asynchron:14,asyncio:8,attach:0,audiosourc:0,audit:[0,9],auditlogchang:0,auditlogdiff:0,auditlogentri:0,autoshardedbot:2,autoshardedcli:0,await:9,background:9,base:0,baseact:0,basic:[4,12],befor:14,being:9,block:9,bool:4,bot:[0,1,2,6,9,16],bug:18,button:0,cach:11,can:9,categorychannel:0,chang:[14,15,17,18],changelog:18,channel:[9,14],check:[2,4,14],clean:5,client:[0,15],clientus:0,cog:[2,3,5,14],cogmeta:2,colour:0,command:[2,4,6,7,9,14,18],compon:0,concept:12,connect:[0,14],context:[2,4,14],convert:[2,4,14],cooldown:2,coroutin:[9,15],creat:[1,9],customact:0,d:11,data:0,decor:2,defaulthelpcommand:2,deletedreferencedmessag:0,depend:14,dict:[4,14],discord:[0,4,6,8,10,18],dm:9,dmchannel:0,doe:[9,11],emb:[0,9],emoji:0,enabl:9,entri:9,enumer:[0,15],environ:12,error:4,event:[0,2,9,14,15],exampl:[3,9,17],except:[0,2],ext:[6,8,18],extens:[5,9,10,14],featur:18,fetch:0,ffmpegaudio:0,ffmpegopusaudio:0,ffmpegpcmaudio:0,file:[0,9],find:9,fire:11,fix:18,flag:2,flagconvert:4,forc:15,framework:6,frequent:9,game:0,gatewai:11,gener:9,get:[9,10],global:4,go:11,greedi:4,group:2,groupchannel:0,groupmixin:2,guarante:17,guild:[0,14],guildchannel:0,guildstick:0,handl:4,help:[2,10,14],helpcommand:2,helper:[2,8,14],helpformatt:14,hierarchi:[0,2],hook:14,how:9,i:[9,11],id:9,imag:9,improv:[14,18],info:0,inlin:4,inspect:3,instal:12,integr:0,intent:[0,11],interact:0,interactionmessag:0,interactionrespons:0,introduct:12,invit:[0,1],invoc:[4,14],item:0,iter:[0,14,15],keyword:[4,15],kit:0,librari:0,list:4,liter:4,local:9,log:[0,9,13],major:14,make:9,manag:15,manual:10,mean:9,member:[0,11,14,15],membercacheflag:0,messag:[0,9,14],messageflag:0,messagerefer:0,meta:[3,10],method:3,migrat:[14,15],minim:16,minimalhelpcommand:2,miscellan:[14,18],model:[0,9,14],my:[9,11],need:11,network:0,non:17,now:14,object:0,on_messag:9,on_readi:11,onli:[4,7],option:[2,3,4],opu:0,origin:9,pagin:2,paramet:4,partialappinfo:0,partialemoji:0,partialinvitechannel:0,partialinviteguild:0,partialmessag:0,partialwebhookchannel:0,partialwebhookguild:0,pass:9,pcmaudio:0,pcmvolumetransform:0,perform:18,permiss:0,permissionoverwrit:0,plai:9,player:9,posit:4,prefix:2,prerequisit:12,presenc:11,primer:[5,11],privatechannel:0,privileg:11,properti:[14,15],publicuserflag:0,py:10,python:14,question:9,quick:3,quickstart:16,quot:9,rawbulkmessagedeleteev:0,rawintegrationdeleteev:0,rawmessagedeleteev:0,rawmessageupdateev:0,rawreactionactionev:0,rawreactionclearemojiev:0,rawreactionclearev:0,rawtypingev:0,reaction:[0,9],recip:8,refer:[0,2,8],registr:[3,15],relat:0,reliabl:0,reload:5,remov:14,renam:15,request:9,requir:9,retriev:11,role:0,roletag:0,run:[9,15],s:9,select:0,selectmenu:0,selectopt:0,send:[9,14],sent:9,server:14,set:[9,13],shard:14,shardinfo:0,show:[2,9],slash:[4,7,9],snowflak:[0,14],so:11,someth:9,special:[3,4],specif:9,split:14,spotifi:0,stagechannel:0,stageinst:0,standardstick:0,start:[9,10],state:14,statu:9,sticker:0,stickeritem:0,stickerpack:0,stop:9,storechannel:0,stream:0,subclass:14,subcommand:9,support:0,syncwebhook:0,syncwebhookmessag:0,systemchannelflag:0,t:9,take:11,task:8,team:0,teammemb:0,templat:0,textchannel:0,thread:0,threadmemb:0,troubleshoot:11,tupl:4,type:[4,14],ui:0,union:4,up:[5,9,13],upgrad:14,upload:9,us:[3,9],usag:9,user:[0,14],util:0,v0:[15,18],v1:[14,18],v2:18,valu:14,variabl:4,version:[0,14,17],view:0,virtual:12,voic:[0,14],voicechannel:0,voicecli:0,voiceprotocol:0,voicest:0,wait:14,web:9,webhook:0,webhookmessag:0,welcom:10,what:[9,11],where:[9,11],why:[9,11],widget:0,widgetchannel:0,widgetmemb:0,won:9,work:9,your:1}}) \ No newline at end of file diff --git a/docs/Python/html/version_guarantees.html b/docs/Python/html/version_guarantees.html new file mode 100644 index 00000000..9861d93a --- /dev/null +++ b/docs/Python/html/version_guarantees.html @@ -0,0 +1,174 @@ + + + + + + Version Guarantees + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

Version Guarantees

+

The library follows a semantic versioning principle which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn’t.

+

The first thing to keep in mind is that breaking changes only apply to publicly documented functions and classes. If it’s not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented.

+
+

Note

+

The examples below are non-exhaustive.

+
+
+

Examples of Breaking Changes

+
    +
  • Changing the default parameter value to something else.

  • +
  • Renaming a function without an alias to an old function.

  • +
  • Adding or removing parameters to an event.

  • +
+
+
+

Examples of Non-Breaking Changes

+
    +
  • Adding or removing private underscored attributes.

  • +
  • Adding an element into the __slots__ of a data class.

  • +
  • Changing the behaviour of a function to fix a bug.

  • +
  • Changes in the documentation.

  • +
  • Modifying the internal HTTP handling.

  • +
  • Upgrading the dependencies to a new version, major or otherwise.

  • +
+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/Python/html/whats_new.html b/docs/Python/html/whats_new.html new file mode 100644 index 00000000..dc637d88 --- /dev/null +++ b/docs/Python/html/whats_new.html @@ -0,0 +1,1885 @@ + + + + + + Changelog + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + settings +
+ +
+ +
+

Changelog

+

This page keeps a detailed human friendly rendering of what’s new and changed +in specific versions.

+
+

v2.0.0

+

This version was partly developed by Danny, and partly by the enhanced-discord.py contributors. +The library has been updated with breaking changes, and as such the major version was changed.

+
    +
  • +
    Performance of the library has improved significantly (all times with 1 process and 1 AutoShardedBot):
      +
    • 735 guilds boot up time (with chunking): 57s/1.7 GiB RAM -> 42s/1.4 GiB RAM

    • +
    • 27k guilds boot up time (with chunking): 477s/8 GiB RAM -> 303s/7.2 GiB RAM

    • +
    • 48k guilds boot up time (without chunking): 109s -> 67s

    • +
    • 106k guilds boot up time (without chunking): 3300s -> 3090s

    • +
    +
    +
    +
  • +
  • +
    The entire public API of the library is now completely type hinted.
      +
    • There may still be bugs however.

    • +
    • For best type hinting experience consider using Pyright.

    • +
    +
    +
    +
  • +
  • Almost all edit methods now return their updated counterpart rather than doing an in-place edit.

  • +
  • Japanese docs were removed, as we are no longer able to keep them in sync.

  • +
+
+

Breaking Changes

+ +
+
+

New Features

+ +
+
+

Bug Fixes

+ +
+
+
+

v1.7.3

+
+

Bug Fixes

+ +
+
+
+

v1.7.2

+
+

Bug Fixes

+ +
+
+
+

v1.7.1

+
+

Bug Fixes

+ +
+
+
+

v1.7.0

+

This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. +Work after this will be spent on v2.0. As a result, this is the last version to support Python 3.5. +Likewise, this is the last version to support user bots.

+

Development of v2.0 will have breaking changes and support for newer API features.

+
+

New Features

+ +
+
+

Bug Fixes

+ +
+
+

Miscellaneous

+
    +
  • User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library.

  • +
  • Permission class methods were updated to match the UI of the Discord client (GH-6476)

  • +
  • _ and - characters are now stripped when making a new cog using the discord package (GH-6313)

  • +
+
+
+
+

v1.6.0

+

This version comes with support for replies and stickers.

+
+

New Features

+ +
+
+

Bug Fixes

+ +
+
+

Miscellaneous

+ +
+
+
+

v1.5.1

+
+

Bug Fixes

+
    +
  • Fix utils.escape_markdown() not escaping quotes properly (GH-5897)

  • +
  • Fix Message not being hashable (GH-5901, GH-5866)

  • +
  • Fix moving channels to the end of the channel list (GH-5923)

  • +
  • Fix seemingly strange behaviour in __eq__ for PermissionOverwrite (GH-5929)

  • +
  • Fix aliases showing up in __iter__ for Intents (GH-5945)

  • +
  • Fix the bot disconnecting from voice when moving them to another channel (GH-5904)

  • +
  • Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching.

  • +
  • Ensure that the bot’s own member is not evicted from the cache (GH-5949)

  • +
+
+
+

Miscellaneous

+
    +
  • Members are now loaded during GUILD_MEMBER_UPDATE events if MemberCacheFlags.joined is set. (GH-5930)

  • +
  • +
    [ext.commands] MemberConverter now properly lazily fetches members if not available from cache.
      +
    • This is the same as having discord.Member as the type-hint.

    • +
    +
    +
    +
  • +
  • Guild.chunk() now allows concurrent calls without spamming the gateway with requests.

  • +
+
+
+
+

v1.5.0

+

This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, A Primer to Gateway Intents.

+
+

API Changes

+
    +
  • Members and presences will no longer be retrieved due to an API change. See Privileged Intents for more info.

  • +
  • As a consequence, fetching offline members is disabled if the members intent is not enabled.

  • +
+
+
+

New Features

+ +
+
+

Bug Fixes

+ +
+
+

Miscellaneous

+
    +
  • Webhook requests are now logged (GH-5798)

  • +
  • Remove caching layer from AutoShardedClient.shards. This was causing issues if queried before launching shards.

  • +
  • Gateway rate limits are now handled.

  • +
  • Warnings logged due to missed caches are now changed to DEBUG log level.

  • +
  • Some strings are now explicitly interned to reduce memory usage.

  • +
  • Usage of namedtuples has been reduced to avoid potential breaking changes in the future (GH-5834)

  • +
  • [ext.commands] All BadArgument exceptions from the built-in converters now raise concrete exceptions to better tell them apart (GH-5748)

  • +
  • [ext.tasks] Lazily fetch the event loop to prevent surprises when changing event loop policy (GH-5808)

  • +
+
+
+
+

v1.4.2

+

This is a maintenance release with backports from v1.5.0.

+
+

Bug Fixes

+ +
+
+

Miscellaneous

+
    +
  • Remove caching layer from AutoShardedClient.shards. This was causing issues if queried before launching shards.

  • +
  • [ext.tasks] Lazily fetch the event loop to prevent surprises when changing event loop policy (GH-5808)

  • +
+
+
+
+

v1.4.1

+
+

Bug Fixes

+
    +
  • Properly terminate the connection when Client.close() is called (GH-5207)

  • +
  • Fix error being raised when clearing embed author or image when it was already cleared (GH-5210, GH-5212)

  • +
  • Fix __path__ to allow editable extensions (GH-5213)

  • +
+
+
+
+

v1.4.0

+

Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!

+
+

New Features

+ +
+
+

Bug Fixes

+ +
+
+

Miscellaneous

+ +
+
+
+

v1.3.4

+
+

Bug Fixes

+
    +
  • Fix an issue with channel overwrites causing multiple issues including crashes (GH-5109)

  • +
+
+
+
+

v1.3.3

+
+

Bug Fixes

+
    +
  • +
    Change default WS close to 4000 instead of 1000.
      +
    • The previous close code caused sessions to be invalidated at a higher frequency than desired.

    • +
    +
    +
    +
  • +
  • Fix None appearing in Member.activities. (GH-2619)

  • +
+
+
+
+

v1.3.2

+

Another minor bug fix release.

+
+

Bug Fixes

+ +
+
+
+

v1.3.1

+

Minor bug fix release.

+
+

Bug Fixes

+
    +
  • Fix fetching invites in guilds that the user is not in.

  • +
  • Fix the channel returned from Client.fetch_channel() raising when sending messages. (GH-2531)

  • +
+
+
+

Miscellaneous

+
    +
  • Fix compatibility warnings when using the Python 3.9 alpha.

  • +
  • Change the unknown event logging from WARNING to DEBUG to reduce noise.

  • +
+
+
+
+

v1.3.0

+

This version comes with a lot of bug fixes and new features. It’s been in development for a lot longer than was anticipated!

+
+

New Features

+ +
+
+

Bug Fixes

+ +
+
+

Miscellaneous

+
    +
  • The library now fully supports Python 3.8 without warnings.

  • +
  • Bump the dependency of websockets to 8.0 for those who can use it. (GH-2453)

  • +
  • Due to Discord providing Member data in mentions, users will now be upgraded to Member more often if mentioned.

  • +
  • utils.escape_markdown() now properly escapes new quote markdown.

  • +
  • The message cache can now be disabled by passing None to max_messages in Client.

  • +
  • The default message cache size has changed from 5000 to 1000 to accommodate small bots.

  • +
  • Lower memory usage by only creating certain objects as needed in Role.

  • +
  • There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation.

  • +
  • +
    The rate limiting code now uses millisecond precision to have more granular rate limit handling.
      +
    • Along with that, the rate limiting code now uses Discord’s response to wait. If you need to use the system clock again for whatever reason, consider passing assume_synced_clock in Client.

    • +
    +
    +
    +
  • +
  • The performance of Guild.default_role has been improved from O(N) to O(1). (GH-2375)

  • +
  • The performance of Member.roles has improved due to usage of caching to avoid surprising performance traps.

  • +
  • The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation.

  • +
  • There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those.

  • +
  • The loading of the opus module has been delayed which would make the result of opus.is_loaded() somewhat surprising.

  • +
  • [ext.commands] Usernames prefixed with @ inside DMs will properly convert using the User converter. (GH-2498)

  • +
  • [ext.tasks] The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (GH-2516)

  • +
+
+
+
+

v1.2.5

+
+

Bug Fixes

+
    +
  • Fix a bug that caused crashes due to missing animated field in Emoji structures in reactions.

  • +
+
+
+
+

v1.2.4

+
+

Bug Fixes

+ +
+
+
+

v1.2.3

+
+

Bug Fixes

+ +
+
+
+

v1.2.2

+
+

Bug Fixes

+
    +
  • Audit log related attribute access have been fixed to not error out when they shouldn’t have.

  • +
+
+
+
+

v1.2.1

+
+

Bug Fixes

+
    +
  • User.avatar_url and related attributes no longer raise an error.

  • +
  • More compatibility shims with the enum.Enum code.

  • +
+
+
+
+

v1.2.0

+

This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as “premium guilds”).

+
+

New Features

+ +
+
+

Bug Fixes

+ +
+
+

Miscellaneous

+
    +
  • +
    Improve performance of all Enum related code significantly.
      +
    • This was done by replacing the enum.Enum code with an API compatible one.

    • +
    • This should not be a breaking change for most users due to duck-typing.

    • +
    +
    +
    +
  • +
  • Improve performance of message creation by about 1.5x.

  • +
  • Improve performance of message editing by about 1.5-4x depending on payload size.

  • +
  • Improve performance of attribute access on Member about by 2x.

  • +
  • Improve performance of utils.get() by around 4-6x depending on usage.

  • +
  • Improve performance of event parsing lookup by around 2.5x.

  • +
  • Keyword arguments in Client.start() and Client.run() are now validated (GH-953, GH-2170)

  • +
  • The Discord error code is now shown in the exception message for HTTPException.

  • +
  • Internal tasks launched by the library will now have their own custom __repr__.

  • +
  • All public facing types should now have a proper and more detailed __repr__.

  • +
  • [ext.tasks] Errors are now logged via the standard logging module.

  • +
+
+
+
+

v1.1.1

+
+

Bug Fixes

+
    +
  • Webhooks do not overwrite data on retrying their HTTP requests (GH-2140)

  • +
+
+
+

Miscellaneous

+
    +
  • Add back signal handling to Client.run() due to issues some users had with proper cleanup.

  • +
+
+
+
+

v1.1.0

+
+

New Features

+ +
+

discord.ext.commands

+ +
+
+
+

Bug Fixes

+ +
+

discord.ext.commands

+
    +
  • Fix lambda converters in a non-module context (e.g. eval).

  • +
  • +
    Use message creation time for reference time when computing cooldowns.
      +
    • This prevents cooldowns from triggering during e.g. a RESUME session.

    • +
    +
    +
    +
  • +
  • Fix the default on_command_error() to work with new-style cogs (GH-2094)

  • +
  • DM channels are now recognised as NSFW in is_nsfw() check.

  • +
  • Fix race condition with help commands (GH-2123)

  • +
  • Fix cog descriptions not showing in MinimalHelpCommand (GH-2139)

  • +
+
+
+
+

Miscellaneous

+
    +
  • Improve the performance of internal enum creation in the library by about 5x.

  • +
  • Make the output of python -m discord --version a bit more useful.

  • +
  • The loop cleanup facility has been rewritten again.

  • +
  • The signal handling in Client.run() has been removed.

  • +
+
+

discord.ext.commands

+
    +
  • Custom exception classes are now used for all default checks in the library (GH-2101)

  • +
+
+
+
+
+

v1.0.1

+
+

Bug Fixes

+
    +
  • Fix issue with speaking state being cast to int when it was invalid.

  • +
  • Fix some issues with loop cleanup that some users experienced on Linux machines.

  • +
  • Fix voice handshake race condition (GH-2056, GH-2063)

  • +
+
+
+
+

v1.0.0

+

The changeset for this version are too big to be listed here, for more information please +see the migrating page.

+
+
+

v0.16.6

+
+

Bug Fixes

+
    +
  • Fix issue with Client.create_server() that made it stop working.

  • +
  • Fix main thread being blocked upon calling StreamPlayer.stop.

  • +
  • Handle HEARTBEAT_ACK and resume gracefully when it occurs.

  • +
  • Fix race condition when pre-emptively rate limiting that caused releasing an already released lock.

  • +
  • Fix invalid state errors when immediately cancelling a coroutine.

  • +
+
+
+
+

v0.16.1

+

This release is just a bug fix release with some better rate limit implementation.

+
+

Bug Fixes

+
    +
  • Servers are now properly chunked for user bots.

  • +
  • The CDN URL is now used instead of the API URL for assets.

  • +
  • Rate limit implementation now tries to use header information if possible.

  • +
  • Event loop is now properly propagated (GH-420)

  • +
  • Allow falsey values in Client.send_message() and Client.send_file().

  • +
+
+
+
+

v0.16.0

+
+

New Features

+
    +
  • Add Channel.overwrites to get all the permission overwrites of a channel.

  • +
  • Add Server.features to get information about partnered servers.

  • +
+
+
+

Bug Fixes

+
    +
  • Timeout when waiting for offline members while triggering on_ready().

    +
    +
      +
    • The fact that we did not timeout caused a gigantic memory leak in the library that caused +thousands of duplicate Member instances causing big memory spikes.

    • +
    +
    +
  • +
  • Discard null sequences in the gateway.

    +
    +
      +
    • The fact these were not discarded meant that on_ready() kept being called instead of +on_resumed(). Since this has been corrected, in most cases on_ready() will be +called once or twice with on_resumed() being called much more often.

    • +
    +
    +
  • +
+
+
+
+

v0.15.1

+
    +
  • Fix crash on duplicate or out of order reactions.

  • +
+
+
+

v0.15.0

+
+

New Features

+
    +
  • Rich Embeds for messages are now supported.

    +
    +
      +
    • To do so, create your own Embed and pass the instance to the embed keyword argument to Client.send_message() or Client.edit_message().

    • +
    +
    +
  • +
  • Add Client.clear_reactions() to remove all reactions from a message.

  • +
  • Add support for MESSAGE_REACTION_REMOVE_ALL event, under on_reaction_clear().

  • +
  • Add Permissions.update() and PermissionOverwrite.update() for bulk permission updates.

    +
    +
      +
    • This allows you to use e.g. p.update(read_messages=True, send_messages=False) in a single line.

    • +
    +
    +
  • +
  • Add PermissionOverwrite.is_empty() to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false).

  • +
+

For the command extension, the following changed:

+
    +
  • Context is no longer slotted to facilitate setting dynamic attributes.

  • +
+
+
+
+

v0.14.3

+
+

Bug Fixes

+
    +
  • Fix crash when dealing with MESSAGE_REACTION_REMOVE

  • +
  • Fix incorrect buckets for reactions.

  • +
+
+
+
+

v0.14.2

+
+

New Features

+
    +
  • +
    Client.wait_for_reaction() now returns a namedtuple with reaction and user attributes.
      +
    • This is for better support in the case that None is returned since tuple unpacking can lead to issues.

    • +
    +
    +
    +
  • +
+
+
+

Bug Fixes

+
    +
  • Fix bug that disallowed None to be passed for emoji parameter in Client.wait_for_reaction().

  • +
+
+
+
+

v0.14.1

+
+

Bug fixes

+
    +
  • +
    Fix bug with Reaction not being visible at import.
      +
    • This was also breaking the documentation.

    • +
    +
    +
    +
  • +
+
+
+
+

v0.14.0

+

This update adds new API features and a couple of bug fixes.

+
+

New Features

+
    +
  • Add support for Manage Webhooks permission under Permissions.manage_webhooks

  • +
  • Add support for around argument in 3.5+ Client.logs_from().

  • +
  • +
    Add support for reactions.
    +
    +
    +
  • +
+
+
+

Bug Fixes

+ +
+
+
+

v0.13.0

+

This is a backwards compatible update with new features.

+
+

New Features

+
    +
  • Add the ability to manage emojis.

    +
    +
      +
    • Client.create_custom_emoji() to create new emoji.

    • +
    • Client.edit_custom_emoji() to edit an old emoji.

    • +
    • Client.delete_custom_emoji() to delete a custom emoji.

    • +
    +
    +
  • +
  • Add new Permissions.manage_emojis toggle.

    +
    +
    +
    +
  • +
  • Add new statuses for Status.

    +
    +
    +
    +
  • +
  • Deprecate Client.change_status()

    +
    +
      +
    • Use Client.change_presence() instead for better more up to date functionality.

    • +
    • This method is subject for removal in a future API version.

    • +
    +
    +
  • +
  • Add Client.change_presence() for changing your status with the new Discord API change.

    +
    +
      +
    • This is the only method that allows changing your status to invisible or do not disturb.

    • +
    +
    +
  • +
+
+
+

Bug Fixes

+
    +
  • Paginator pages do not exceed their max_size anymore (GH-340)

  • +
  • Do Not Disturb users no longer show up offline due to the new Status changes.

  • +
+
+
+
+

v0.12.0

+

This is a bug fix update that also comes with new features.

+
+

New Features

+
    +
  • Add custom emoji support.

    +
    +
      +
    • Adds a new class to represent a custom Emoji named Emoji

    • +
    • Adds a utility generator function, Client.get_all_emojis().

    • +
    • Adds a list of emojis on a server, Server.emojis.

    • +
    • Adds a new event, on_server_emojis_update().

    • +
    +
    +
  • +
  • Add new server regions to ServerRegion

    +
    +
      +
    • ServerRegion.eu_central and ServerRegion.eu_west.

    • +
    +
    +
  • +
  • Add support for new pinned system message under MessageType.pins_add.

  • +
  • Add order comparisons for Role to allow it to be compared with regards to hierarchy.

    +
    +
      +
    • This means that you can now do role_a > role_b etc to check if role_b is lower in the hierarchy.

    • +
    +
    +
  • +
  • Add Server.role_hierarchy to get the server’s role hierarchy.

  • +
  • Add Member.server_permissions to get a member’s server permissions without their channel specific overwrites.

  • +
  • Add Client.get_user_info() to retrieve a user’s info from their ID.

  • +
  • Add a new Player property, Player.error to fetch the error that stopped the player.

    +
    +
      +
    • To help with this change, a player’s after function can now take a single parameter denoting the current player.

    • +
    +
    +
  • +
  • Add support for server verification levels.

    +
    +
      +
    • Adds a new enum called VerificationLevel.

    • +
    • This enum can be used in Client.edit_server() under the verification_level keyword argument.

    • +
    • Adds a new attribute in the server, Server.verification_level.

    • +
    +
    +
  • +
  • Add Server.voice_client shortcut property for Client.voice_client_in().

    +
    +
      +
    • This is technically old (was added in v0.10.0) but was undocumented until v0.12.0.

    • +
    +
    +
  • +
+

For the command extension, the following are new:

+
    +
  • Add custom emoji converter.

  • +
  • All default converters that can take IDs can now convert via ID.

  • +
  • Add coroutine support for Bot.command_prefix.

  • +
  • Add a method to reset command cooldown.

  • +
+
+
+

Bug Fixes

+
    +
  • Fix bug that caused the library to not work with the latest websockets library.

  • +
  • Fix bug that leaked keep alive threads (GH-309)

  • +
  • Fix bug that disallowed ServerRegion from being used in Client.edit_server().

  • +
  • Fix bug in Channel.permissions_for() that caused permission resolution to happen out of order.

  • +
  • Fix bug in Member.top_role that did not account for same-position roles.

  • +
+
+
+
+

v0.11.0

+

This is a minor bug fix update that comes with a gateway update (v5 -> v6).

+
+

Breaking Changes

+ +
+
+

New Features

+
    +
  • Add the ability to prune members via Client.prune_members().

  • +
  • Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls.

  • +
  • Add AppInfo.owner attribute.

  • +
  • Add CallMessage for group voice call messages.

  • +
  • Add GroupCall for group voice call information.

  • +
  • Add Message.system_content to get the system message.

  • +
  • Add the remaining VIP servers and the Brazil servers into ServerRegion enum.

  • +
  • Add stderr argument to VoiceClient.create_ffmpeg_player() to redirect stderr.

  • +
  • The library now handles implicit permission resolution in Channel.permissions_for().

  • +
  • Add Server.mfa_level to query a server’s 2FA requirement.

  • +
  • Add Permissions.external_emojis permission.

  • +
  • Add Member.voice attribute that refers to a VoiceState.

    +
    +
      +
    • For backwards compatibility, the member object will have properties mirroring the old behaviour.

    • +
    +
    +
  • +
+

For the command extension, the following are new:

+
    +
  • Command cooldown system with the cooldown decorator.

  • +
  • UserInputError exception for the hierarchy for user input related errors.

  • +
+
+
+

Bug Fixes

+
    +
  • Client.email is now saved when using a token for user accounts.

  • +
  • Fix issue when removing roles out of order.

  • +
  • Fix bug where discriminators would not update.

  • +
  • Handle cases where HEARTBEAT opcode is received. This caused bots to disconnect seemingly randomly.

  • +
+

For the command extension, the following bug fixes apply:

+
    +
  • Bot.check decorator is actually a decorator not requiring parentheses.

  • +
  • Bot.remove_command and Group.remove_command no longer throw if the command doesn’t exist.

  • +
  • Command names are no longer forced to be lower().

  • +
  • Fix a bug where Member and User converters failed to work in private message contexts.

  • +
  • HelpFormatter now ignores hidden commands when deciding the maximum width.

  • +
+
+
+
+

v0.10.0

+

For breaking changes, see Migrating to v0.10.0. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive.

+
+

New Features

+
    +
  • The library is now fully asyncio compatible, allowing you to write non-blocking code a lot more easily.

  • +
  • The library now fully handles 429s and unconditionally retries on 502s.

  • +
  • A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader.

  • +
  • Two new exception types, Forbidden and NotFound to denote permission errors or 404 errors.

  • +
  • Added Client.delete_invite() to revoke invites.

  • +
  • Added support for sending voice. Check VoiceClient for more details.

  • +
  • Added Client.wait_for_message() coroutine to aid with follow up commands.

  • +
  • Added version_info named tuple to check version info of the library.

  • +
  • Login credentials are now cached to have a faster login experience. You can disable this by passing in cache_auth=False +when constructing a Client.

  • +
  • New utility function, discord.utils.get() to simplify retrieval of items based on attributes.

  • +
  • All data classes now support !=, ==, hash(obj) and str(obj).

  • +
  • Added Client.get_bans() to get banned members from a server.

  • +
  • Added Client.invites_from() to get currently active invites in a server.

  • +
  • Added Server.me attribute to get the Member version of Client.user.

  • +
  • Most data classes now support a hash(obj) function to allow you to use them in set or dict classes or subclasses.

  • +
  • Add Message.clean_content() to get a text version of the content with the user and channel mentioned changed into their names.

  • +
  • Added a way to remove the messages of the user that just got banned in Client.ban().

  • +
  • Added Client.wait_until_ready() to facilitate easy creation of tasks that require the client cache to be ready.

  • +
  • Added Client.wait_until_login() to facilitate easy creation of tasks that require the client to be logged in.

  • +
  • Add discord.Game to represent any game with custom text to send to Client.change_status().

  • +
  • Add Message.nonce attribute.

  • +
  • Add Member.permissions_in() as another way of doing Channel.permissions_for().

  • +
  • Add Client.move_member() to move a member to another voice channel.

  • +
  • You can now create a server via Client.create_server().

  • +
  • Added Client.edit_server() to edit existing servers.

  • +
  • Added Client.server_voice_state() to server mute or server deafen a member.

  • +
  • If you are being rate limited, the library will now handle it for you.

  • +
  • Add on_member_ban() and on_member_unban() events that trigger when a member is banned/unbanned.

  • +
+
+
+

Performance Improvements

+
    +
  • All data classes now use __slots__ which greatly reduce the memory usage of things kept in cache.

  • +
  • Due to the usage of asyncio, the CPU usage of the library has gone down significantly.

  • +
  • A lot of the internal cache lists were changed into dictionaries to change the O(n) lookup into O(1).

  • +
  • Compressed READY is now on by default. This means if you’re on a lot of servers (or maybe even a few) you would +receive performance improvements by having to download and process less data.

  • +
  • While minor, change regex from \d+ to [0-9]+ to avoid unnecessary unicode character lookups.

  • +
+
+
+

Bug Fixes

+
    +
  • Fix bug where guilds being updated did not edit the items in cache.

  • +
  • Fix bug where member.roles were empty upon joining instead of having the @everyone role.

  • +
  • Fix bug where Role.is_everyone() was not being set properly when the role was being edited.

  • +
  • Client.logs_from() now handles cases where limit > 100 to sidestep the discord API limitation.

  • +
  • Fix bug where a role being deleted would trigger a ValueError.

  • +
  • Fix bug where Permissions.kick_members() and Permissions.ban_members() were flipped.

  • +
  • Mentions are now triggered normally. This was changed due to the way discord handles it internally.

  • +
  • Fix issue when a Message would attempt to upgrade a Message.server when the channel is +a Object.

  • +
  • Unavailable servers were not being added into cache, this has been corrected.

  • +
+
+
+
+ + +
+
+ © Copyright 2015-present, Rapptz. + Created using Sphinx 4.2.0. +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/api.rst b/docs/api.rst index 5fc56af1..beec9a97 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -197,6 +197,428 @@ to handle it, which defaults to print a traceback and ignoring the exception. errors. In order to turn a function into a coroutine they must be ``async def`` functions. +Channels +~~~~~~~~~ + +.. function:: on_guild_channel_delete(channel) + on_guild_channel_create(channel) + + Called whenever a guild channel is deleted or created. + + Note that you can get the guild from :attr:`~abc.GuildChannel.guild`. + + This requires :attr:`Intents.guilds` to be enabled. + + :param channel: The guild channel that got created or deleted. + :type channel: :class:`abc.GuildChannel` + +.. function:: on_guild_channel_update(before, after) + + Called whenever a guild channel is updated. e.g. changed name, topic, permissions. + + This requires :attr:`Intents.guilds` to be enabled. + + :param before: The updated guild channel's old info. + :type before: :class:`abc.GuildChannel` + :param after: The updated guild channel's new info. + :type after: :class:`abc.GuildChannel` + +.. function:: on_private_channel_update(before, after) + + Called whenever a private group DM is updated. e.g. changed name or topic. + + This requires :attr:`Intents.messages` to be enabled. + + :param before: The updated group channel's old info. + :type before: :class:`GroupChannel` + :param after: The updated group channel's new info. + :type after: :class:`GroupChannel` + +.. function:: on_guild_channel_pins_update(channel, last_pin) + + Called whenever a message is pinned or unpinned from a guild channel. + + This requires :attr:`Intents.guilds` to be enabled. + + :param channel: The guild channel that had its pins updated. + :type channel: Union[:class:`abc.GuildChannel`, :class:`Thread`] + :param last_pin: The latest message that was pinned as an aware datetime in UTC. Could be ``None``. + :type last_pin: Optional[:class:`datetime.datetime`] + +.. function:: on_private_channel_pins_update(channel, last_pin) + + Called whenever a message is pinned or unpinned from a private channel. + + :param channel: The private channel that had its pins updated. + :type channel: :class:`abc.PrivateChannel` + :param last_pin: The latest message that was pinned as an aware datetime in UTC. Could be ``None``. + :type last_pin: Optional[:class:`datetime.datetime`] + +Guilds +~~~~~~~ + +.. function:: on_guild_available(guild) + on_guild_unavailable(guild) + + Called when a guild becomes available or unavailable. The guild must have + existed in the :attr:`Client.guilds` cache. + + This requires :attr:`Intents.guilds` to be enabled. + + :param guild: The :class:`Guild` that has changed availability. + +.. function:: on_guild_join(guild) + + Called when a :class:`Guild` is either created by the :class:`Client` or when the + :class:`Client` joins a guild. + + This requires :attr:`Intents.guilds` to be enabled. + + :param guild: The guild that was joined. + :type guild: :class:`Guild` + +.. function:: on_guild_remove(guild) + + Called when a :class:`Guild` is removed from the :class:`Client`. + + This happens through, but not limited to, these circumstances: + + - The client got banned. + - The client got kicked. + - The client left the guild. + - The client or the guild owner deleted the guild. + + In order for this event to be invoked then the :class:`Client` must have + been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`) + + This requires :attr:`Intents.guilds` to be enabled. + + :param guild: The guild that got removed. + :type guild: :class:`Guild` + +.. function:: on_guild_update(before, after) + + Called when a :class:`Guild` updates, for example: + + - Changed name + - Changed AFK channel + - Changed AFK timeout + - etc + + This requires :attr:`Intents.guilds` to be enabled. + + :param before: The guild prior to being updated. + :type before: :class:`Guild` + :param after: The guild after being updated. + :type after: :class:`Guild` + +.. function:: on_guild_emojis_update(guild, before, after) + + Called when a :class:`Guild` adds or removes :class:`Emoji`. + + This requires :attr:`Intents.emojis_and_stickers` to be enabled. + + :param guild: The guild who got their emojis updated. + :type guild: :class:`Guild` + :param before: A list of emojis before the update. + :type before: Sequence[:class:`Emoji`] + :param after: A list of emojis after the update. + :type after: Sequence[:class:`Emoji`] + +.. function:: on_guild_stickers_update(guild, before, after) + + Called when a :class:`Guild` updates its stickers. + + This requires :attr:`Intents.emojis_and_stickers` to be enabled. + + .. versionadded:: 2.0 + + :param guild: The guild who got their stickers updated. + :type guild: :class:`Guild` + :param before: A list of stickers before the update. + :type before: Sequence[:class:`GuildSticker`] + :param after: A list of stickers after the update. + :type after: Sequence[:class:`GuildSticker`] + +integrations +~~~~~~~~~~~~~ + +.. function:: on_integration_create(integration) + + Called when an integration is created. + + This requires :attr:`Intents.integrations` to be enabled. + + .. versionadded:: 2.0 + + :param integration: The integration that was created. + :type integration: :class:`Integration` + +.. function:: on_integration_update(integration) + + Called when an integration is updated. + + This requires :attr:`Intents.integrations` to be enabled. + + .. versionadded:: 2.0 + + :param integration: The integration that was created. + :type integration: :class:`Integration` + +.. function:: on_guild_integrations_update(guild) + + Called whenever an integration is created, modified, or removed from a guild. + + This requires :attr:`Intents.integrations` to be enabled. + + .. versionadded:: 1.4 + + :param guild: The guild that had its integrations updated. + :type guild: :class:`Guild` + +.. function:: on_webhooks_update(channel) + + Called whenever a webhook is created, modified, or removed from a guild channel. + + This requires :attr:`Intents.webhooks` to be enabled. + + :param channel: The channel that had its webhooks updated. + :type channel: :class:`abc.GuildChannel` + +.. function:: on_raw_integration_delete(payload) + + Called when an integration is deleted. + + This requires :attr:`Intents.integrations` to be enabled. + + .. versionadded:: 2.0 + + :param payload: The raw event payload data. + :type payload: :class:`RawIntegrationDeleteEvent` + +Members +~~~~~~~~ + +.. function:: on_member_join(member) + on_member_remove(member) + + Called when a :class:`Member` leaves or joins a :class:`Guild`. + + This requires :attr:`Intents.members` to be enabled. + + :param member: The member who joined or left. + :type member: :class:`Member` + +.. function:: on_member_update(before, after) + + Called when a :class:`Member` updates their profile. + + This is called when one or more of the following things change: + + - nickname + - roles + - pending + + This requires :attr:`Intents.members` to be enabled. + + :param before: The updated member's old info. + :type before: :class:`Member` + :param after: The updated member's updated info. + :type after: :class:`Member` + +.. function:: on_user_update(before, after) + + Called when a :class:`User` updates their profile. + + This is called when one or more of the following things change: + + - avatar + - username + - discriminator + + This requires :attr:`Intents.members` to be enabled. + + :param before: The updated user's old info. + :type before: :class:`User` + :param after: The updated user's updated info. + :type after: :class:`User` + +.. function:: on_member_ban(guild, user) + + Called when user gets banned from a :class:`Guild`. + + This requires :attr:`Intents.bans` to be enabled. + + :param guild: The guild the user got banned from. + :type guild: :class:`Guild` + :param user: The user that got banned. + Can be either :class:`User` or :class:`Member` depending if + the user was in the guild or not at the time of removal. + :type user: Union[:class:`User`, :class:`Member`] + +.. function:: on_member_unban(guild, user) + + Called when a :class:`User` gets unbanned from a :class:`Guild`. + + This requires :attr:`Intents.bans` to be enabled. + + :param guild: The guild the user got unbanned from. + :type guild: :class:`Guild` + :param user: The user that got unbanned. + :type user: :class:`User` + +.. function:: on_presence_update(before, after) + + Called when a :class:`Member` updates their presence. + + This is called when one or more of the following things change: + + - status + - activity + + This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled. + + .. versionadded:: 2.0 + + :param before: The updated member's old info. + :type before: :class:`Member` + :param after: The updated member's updated info. + :type after: :class:`Member` + +Messages +~~~~~~~~~ + +.. function:: on_message(message) + + Called when a :class:`Message` is created and sent. + + This requires :attr:`Intents.messages` to be enabled. + + .. warning:: + + Your bot's own messages and private messages are sent through this + event. This can lead cases of 'recursion' depending on how your bot was + programmed. If you want the bot to not reply to itself, consider + checking the user IDs. Note that :class:`~ext.commands.Bot` does not + have this problem. + + :param message: The current message. + :type message: :class:`Message` + +.. function:: on_message_edit(before, after) + + Called when a :class:`Message` receives an update event. If the message is not found + in the internal message cache, then these events will not be called. + Messages might not be in cache if the message is too old + or the client is participating in high traffic guilds. + + If this occurs increase the :class:`max_messages ` parameter + or use the :func:`on_raw_message_edit` event instead. + + The following non-exhaustive cases trigger this event: + + - A message has been pinned or unpinned. + - The message content has been changed. + - The message has received an embed. + + - For performance reasons, the embed server does not do this in a "consistent" manner. + + - The message's embeds were suppressed or unsuppressed. + - A call message has received an update to its participants or ending time. + + This requires :attr:`Intents.messages` to be enabled. + + :param before: The previous version of the message. + :type before: :class:`Message` + :param after: The current version of the message. + :type after: :class:`Message` + +.. function:: on_message_delete(message) + + Called when a message is deleted. If the message is not found in the + internal message cache, then this event will not be called. + Messages might not be in cache if the message is too old + or the client is participating in high traffic guilds. + + If this occurs increase the :class:`max_messages ` parameter + or use the :func:`on_raw_message_delete` event instead. + + This requires :attr:`Intents.messages` to be enabled. + + :param message: The deleted message. + :type message: :class:`Message` + +.. function:: on_bulk_message_delete(messages) + + Called when messages are bulk deleted. If none of the messages deleted + are found in the internal message cache, then this event will not be called. + If individual messages were not found in the internal message cache, + this event will still be called, but the messages not found will not be included in + the messages list. Messages might not be in cache if the message is too old + or the client is participating in high traffic guilds. + + If this occurs increase the :class:`max_messages ` parameter + or use the :func:`on_raw_bulk_message_delete` event instead. + + This requires :attr:`Intents.messages` to be enabled. + + :param messages: The messages that have been deleted. + :type messages: List[:class:`Message`] + +.. function:: on_raw_message_edit(payload) + + Called when a message is edited. Unlike :func:`on_message_edit`, this is called + regardless of the state of the internal message cache. + + If the message is found in the message cache, + it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents + the message before it has been edited. For example, if the content of a message is modified and + triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` + will return a :class:`Message` object that represents the message before the content was modified. + + Due to the inherently raw nature of this event, the data parameter coincides with + the raw data given by the `gateway `_. + + Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. + One example of a common case of partial data is when the ``'content'`` key is inaccessible. This + denotes an "embed" only edit, which is an edit in which only the embeds are updated by the Discord + embed server. + + This requires :attr:`Intents.messages` to be enabled. + + :param payload: The raw event payload data. + :type payload: :class:`RawMessageUpdateEvent` + + +.. function:: on_raw_message_delete(payload) + + Called when a message is deleted. Unlike :func:`on_message_delete`, this is + called regardless of the message being in the internal message cache or not. + + If the message is found in the message cache, + it can be accessed via :attr:`RawMessageDeleteEvent.cached_message` + + This requires :attr:`Intents.messages` to be enabled. + + :param payload: The raw event payload data. + :type payload: :class:`RawMessageDeleteEvent` + +.. function:: on_raw_bulk_message_delete(payload) + + Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is + called regardless of the messages being in the internal message cache or not. + + If the messages are found in the message cache, + they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages` + + This requires :attr:`Intents.messages` to be enabled. + + :param payload: The raw event payload data. + :type payload: :class:`RawBulkMessageDeleteEvent` + +Networking +~~~~~~~~~~~ + .. function:: on_connect() Called when the client has successfully connected to Discord. This is not @@ -204,16 +626,6 @@ to handle it, which defaults to print a traceback and ignoring the exception. The warnings on :func:`on_ready` also apply. -.. function:: on_shard_connect(shard_id) - - Similar to :func:`on_connect` except used by :class:`AutoShardedClient` - to denote when a particular shard ID has connected to Discord. - - .. versionadded:: 1.4 - - :param shard_id: The shard ID that has connected. - :type shard_id: :class:`int` - .. function:: on_disconnect() Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. @@ -222,16 +634,6 @@ to handle it, which defaults to print a traceback and ignoring the exception. This function can be called many times without a corresponding :func:`on_connect` call. -.. function:: on_shard_disconnect(shard_id) - - Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` - to denote when a particular shard ID has disconnected from Discord. - - .. versionadded:: 1.4 - - :param shard_id: The shard ID that has disconnected. - :type shard_id: :class:`int` - .. function:: on_ready() Called when the client is done preparing the data received from Discord. Usually after login is successful @@ -244,6 +646,31 @@ to handle it, which defaults to print a traceback and ignoring the exception. once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails. +.. function:: on_resumed() + + Called when the client has resumed a session. + +.. function:: on_shard_connect(shard_id) + + Similar to :func:`on_connect` except used by :class:`AutoShardedClient` + to denote when a particular shard ID has connected to Discord. + + .. versionadded:: 1.4 + + :param shard_id: The shard ID that has connected. + :type shard_id: :class:`int` + + +.. function:: on_shard_disconnect(shard_id) + + Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` + to denote when a particular shard ID has disconnected from Discord. + + .. versionadded:: 1.4 + + :param shard_id: The shard ID that has disconnected. + :type shard_id: :class:`int` + .. function:: on_shard_ready(shard_id) Similar to :func:`on_ready` except used by :class:`AutoShardedClient` @@ -252,9 +679,6 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param shard_id: The shard ID that is ready. :type shard_id: :class:`int` -.. function:: on_resumed() - - Called when the client has resumed a session. .. function:: on_shard_resumed(shard_id) @@ -266,38 +690,6 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param shard_id: The shard ID that has resumed. :type shard_id: :class:`int` -.. function:: on_error(event, *args, **kwargs) - - Usually when an event raises an uncaught exception, a traceback is - printed to stderr and the exception is ignored. If you want to - change this behaviour and handle the exception for whatever reason - yourself, this event can be overridden. Which, when done, will - suppress the default action of printing the traceback. - - The information of the exception raised and the exception itself can - be retrieved with a standard call to :func:`sys.exc_info`. - - If you want exception to propagate out of the :class:`Client` class - you can define an ``on_error`` handler consisting of a single empty - :ref:`raise statement `. Exceptions raised by ``on_error`` will not be - handled in any way by :class:`Client`. - - .. note:: - - ``on_error`` will only be dispatched to :meth:`Client.event`. - - It will not be received by :meth:`Client.wait_for`, or, if used, - :ref:`ext_commands_api_bot` listeners such as - :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`. - - :param event: The name of the event that raised the exception. - :type event: :class:`str` - - :param args: The positional arguments for the event that raised the - exception. - :param kwargs: The keyword arguments for the event that raised the - exception. - .. function:: on_socket_event_type(event_type) Called whenever a websocket event is received from the WebSocket. @@ -349,163 +741,8 @@ to handle it, which defaults to print a traceback and ignoring the exception. WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message. -.. function:: on_typing(channel, user, when) - - Called when someone begins typing a message. - - The ``channel`` parameter can be a :class:`abc.Messageable` instance. - Which could either be :class:`TextChannel`, :class:`GroupChannel`, or - :class:`DMChannel`. - - If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter - is a :class:`Member`, otherwise it is a :class:`User`. - - This requires :attr:`Intents.typing` to be enabled. - - :param channel: The location where the typing originated from. - :type channel: :class:`abc.Messageable` - :param user: The user that started typing. - :type user: Union[:class:`User`, :class:`Member`] - :param when: When the typing started as an aware datetime in UTC. - :type when: :class:`datetime.datetime` - -.. function:: on_raw_typing(payload) - - Called when someone begins typing a message. Unlike :func:`on_typing`, this is - called regardless if the user can be found or not. This most often happens - when a user types in DMs. - - This requires :attr:`Intents.typing` to be enabled. - - :param payload: The raw typing payload. - :type payload: :class:`RawTypingEvent` - -.. function:: on_message(message) - - Called when a :class:`Message` is created and sent. - - This requires :attr:`Intents.messages` to be enabled. - - .. warning:: - - Your bot's own messages and private messages are sent through this - event. This can lead cases of 'recursion' depending on how your bot was - programmed. If you want the bot to not reply to itself, consider - checking the user IDs. Note that :class:`~ext.commands.Bot` does not - have this problem. - - :param message: The current message. - :type message: :class:`Message` - -.. function:: on_message_delete(message) - - Called when a message is deleted. If the message is not found in the - internal message cache, then this event will not be called. - Messages might not be in cache if the message is too old - or the client is participating in high traffic guilds. - - If this occurs increase the :class:`max_messages ` parameter - or use the :func:`on_raw_message_delete` event instead. - - This requires :attr:`Intents.messages` to be enabled. - - :param message: The deleted message. - :type message: :class:`Message` - -.. function:: on_bulk_message_delete(messages) - - Called when messages are bulk deleted. If none of the messages deleted - are found in the internal message cache, then this event will not be called. - If individual messages were not found in the internal message cache, - this event will still be called, but the messages not found will not be included in - the messages list. Messages might not be in cache if the message is too old - or the client is participating in high traffic guilds. - - If this occurs increase the :class:`max_messages ` parameter - or use the :func:`on_raw_bulk_message_delete` event instead. - - This requires :attr:`Intents.messages` to be enabled. - - :param messages: The messages that have been deleted. - :type messages: List[:class:`Message`] - -.. function:: on_raw_message_delete(payload) - - Called when a message is deleted. Unlike :func:`on_message_delete`, this is - called regardless of the message being in the internal message cache or not. - - If the message is found in the message cache, - it can be accessed via :attr:`RawMessageDeleteEvent.cached_message` - - This requires :attr:`Intents.messages` to be enabled. - - :param payload: The raw event payload data. - :type payload: :class:`RawMessageDeleteEvent` - -.. function:: on_raw_bulk_message_delete(payload) - - Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is - called regardless of the messages being in the internal message cache or not. - - If the messages are found in the message cache, - they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages` - - This requires :attr:`Intents.messages` to be enabled. - - :param payload: The raw event payload data. - :type payload: :class:`RawBulkMessageDeleteEvent` - -.. function:: on_message_edit(before, after) - - Called when a :class:`Message` receives an update event. If the message is not found - in the internal message cache, then these events will not be called. - Messages might not be in cache if the message is too old - or the client is participating in high traffic guilds. - - If this occurs increase the :class:`max_messages ` parameter - or use the :func:`on_raw_message_edit` event instead. - - The following non-exhaustive cases trigger this event: - - - A message has been pinned or unpinned. - - The message content has been changed. - - The message has received an embed. - - - For performance reasons, the embed server does not do this in a "consistent" manner. - - - The message's embeds were suppressed or unsuppressed. - - A call message has received an update to its participants or ending time. - - This requires :attr:`Intents.messages` to be enabled. - - :param before: The previous version of the message. - :type before: :class:`Message` - :param after: The current version of the message. - :type after: :class:`Message` - -.. function:: on_raw_message_edit(payload) - - Called when a message is edited. Unlike :func:`on_message_edit`, this is called - regardless of the state of the internal message cache. - - If the message is found in the message cache, - it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents - the message before it has been edited. For example, if the content of a message is modified and - triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` - will return a :class:`Message` object that represents the message before the content was modified. - - Due to the inherently raw nature of this event, the data parameter coincides with - the raw data given by the `gateway `_. - - Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. - One example of a common case of partial data is when the ``'content'`` key is inaccessible. This - denotes an "embed" only edit, which is an edit in which only the embeds are updated by the Discord - embed server. - - This requires :attr:`Intents.messages` to be enabled. - - :param payload: The raw event payload data. - :type payload: :class:`RawMessageUpdateEvent` +Reactions +~~~~~~~~~~ .. function:: on_reaction_add(reaction, user) @@ -532,16 +769,6 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param user: The user who added the reaction. :type user: Union[:class:`Member`, :class:`User`] -.. function:: on_raw_reaction_add(payload) - - Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is - called regardless of the state of the internal message cache. - - This requires :attr:`Intents.reactions` to be enabled. - - :param payload: The raw event payload data. - :type payload: :class:`RawReactionActionEvent` - .. function:: on_reaction_remove(reaction, user) Called when a message has a reaction removed from it. Similar to on_message_edit, @@ -564,16 +791,6 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param user: The user who added the reaction. :type user: Union[:class:`Member`, :class:`User`] -.. function:: on_raw_reaction_remove(payload) - - Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is - called regardless of the state of the internal message cache. - - This requires :attr:`Intents.reactions` to be enabled. - - :param payload: The raw event payload data. - :type payload: :class:`RawReactionActionEvent` - .. function:: on_reaction_clear(message, reactions) Called when a message has all its reactions removed from it. Similar to :func:`on_message_edit`, @@ -587,16 +804,6 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param reactions: The reactions that were removed. :type reactions: List[:class:`Reaction`] -.. function:: on_raw_reaction_clear(payload) - - Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, - this is called regardless of the state of the internal message cache. - - This requires :attr:`Intents.reactions` to be enabled. - - :param payload: The raw event payload data. - :type payload: :class:`RawReactionClearEvent` - .. function:: on_reaction_clear_emoji(reaction) Called when a message has a specific reaction removed from it. Similar to :func:`on_message_edit`, @@ -610,6 +817,37 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param reaction: The reaction that got cleared. :type reaction: :class:`Reaction` + +.. function:: on_raw_reaction_add(payload) + + Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is + called regardless of the state of the internal message cache. + + This requires :attr:`Intents.reactions` to be enabled. + + :param payload: The raw event payload data. + :type payload: :class:`RawReactionActionEvent` + +.. function:: on_raw_reaction_remove(payload) + + Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is + called regardless of the state of the internal message cache. + + This requires :attr:`Intents.reactions` to be enabled. + + :param payload: The raw event payload data. + :type payload: :class:`RawReactionActionEvent` + +.. function:: on_raw_reaction_clear(payload) + + Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, + this is called regardless of the state of the internal message cache. + + This requires :attr:`Intents.reactions` to be enabled. + + :param payload: The raw event payload data. + :type payload: :class:`RawReactionClearEvent` + .. function:: on_raw_reaction_clear_emoji(payload) Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called @@ -622,76 +860,66 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param payload: The raw event payload data. :type payload: :class:`RawReactionClearEmojiEvent` -.. function:: on_interaction(interaction) - Called when an interaction happened. +Roles +~~~~~~ - This currently happens due to slash command invocations or components being used. +.. function:: on_guild_role_create(role) + on_guild_role_delete(role) - .. warning:: + Called when a :class:`Guild` creates or deletes a new :class:`Role`. - This is a low level function that is not generally meant to be used. - If you are working with components, consider using the callbacks associated - with the :class:`~discord.ui.View` instead as it provides a nicer user experience. + To get the guild it belongs to, use :attr:`Role.guild`. + + This requires :attr:`Intents.guilds` to be enabled. + + :param role: The role that was created or deleted. + :type role: :class:`Role` + +.. function:: on_guild_role_update(before, after) + + Called when a :class:`Role` is changed guild-wide. + + This requires :attr:`Intents.guilds` to be enabled. + + :param before: The updated role's old info. + :type before: :class:`Role` + :param after: The updated role's updated info. + :type after: :class:`Role` + + +Stages +~~~~~~~ + +.. function:: on_stage_instance_create(stage_instance) + on_stage_instance_delete(stage_instance) + + Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`. .. versionadded:: 2.0 - :param interaction: The interaction data. - :type interaction: :class:`Interaction` + :param stage_instance: The stage instance that was created or deleted. + :type stage_instance: :class:`StageInstance` -.. function:: on_private_channel_update(before, after) +.. function:: on_stage_instance_update(before, after) - Called whenever a private group DM is updated. e.g. changed name or topic. + Called when a :class:`StageInstance` is updated. - This requires :attr:`Intents.messages` to be enabled. + The following, but not limited to, examples illustrate when this event is called: - :param before: The updated group channel's old info. - :type before: :class:`GroupChannel` - :param after: The updated group channel's new info. - :type after: :class:`GroupChannel` + - The topic is changed. + - The privacy level is changed. -.. function:: on_private_channel_pins_update(channel, last_pin) + .. versionadded:: 2.0 - Called whenever a message is pinned or unpinned from a private channel. + :param before: The stage instance before the update. + :type before: :class:`StageInstance` + :param after: The stage instance after the update. + :type after: :class:`StageInstance` - :param channel: The private channel that had its pins updated. - :type channel: :class:`abc.PrivateChannel` - :param last_pin: The latest message that was pinned as an aware datetime in UTC. Could be ``None``. - :type last_pin: Optional[:class:`datetime.datetime`] +Threads +~~~~~~~~ -.. function:: on_guild_channel_delete(channel) - on_guild_channel_create(channel) - - Called whenever a guild channel is deleted or created. - - Note that you can get the guild from :attr:`~abc.GuildChannel.guild`. - - This requires :attr:`Intents.guilds` to be enabled. - - :param channel: The guild channel that got created or deleted. - :type channel: :class:`abc.GuildChannel` - -.. function:: on_guild_channel_update(before, after) - - Called whenever a guild channel is updated. e.g. changed name, topic, permissions. - - This requires :attr:`Intents.guilds` to be enabled. - - :param before: The updated guild channel's old info. - :type before: :class:`abc.GuildChannel` - :param after: The updated guild channel's new info. - :type after: :class:`abc.GuildChannel` - -.. function:: on_guild_channel_pins_update(channel, last_pin) - - Called whenever a message is pinned or unpinned from a guild channel. - - This requires :attr:`Intents.guilds` to be enabled. - - :param channel: The guild channel that had its pins updated. - :type channel: Union[:class:`abc.GuildChannel`, :class:`Thread`] - :param last_pin: The latest message that was pinned as an aware datetime in UTC. Could be ``None``. - :type last_pin: Optional[:class:`datetime.datetime`] .. function:: on_thread_join(thread) @@ -707,6 +935,19 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param thread: The thread that got joined. :type thread: :class:`Thread` +.. function:: on_thread_update(before, after) + + Called whenever a thread is updated. + + This requires :attr:`Intents.guilds` to be enabled. + + .. versionadded:: 2.0 + + :param before: The updated thread's old info. + :type before: :class:`Thread` + :param after: The updated thread's new info. + :type after: :class:`Thread` + .. function:: on_thread_remove(thread) Called whenever a thread is removed. This is different from a thread being deleted. @@ -754,239 +995,8 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param member: The member who joined or left. :type member: :class:`ThreadMember` -.. function:: on_thread_update(before, after) - - Called whenever a thread is updated. - - This requires :attr:`Intents.guilds` to be enabled. - - .. versionadded:: 2.0 - - :param before: The updated thread's old info. - :type before: :class:`Thread` - :param after: The updated thread's new info. - :type after: :class:`Thread` - -.. function:: on_guild_integrations_update(guild) - - Called whenever an integration is created, modified, or removed from a guild. - - This requires :attr:`Intents.integrations` to be enabled. - - .. versionadded:: 1.4 - - :param guild: The guild that had its integrations updated. - :type guild: :class:`Guild` - -.. function:: on_integration_create(integration) - - Called when an integration is created. - - This requires :attr:`Intents.integrations` to be enabled. - - .. versionadded:: 2.0 - - :param integration: The integration that was created. - :type integration: :class:`Integration` - -.. function:: on_integration_update(integration) - - Called when an integration is updated. - - This requires :attr:`Intents.integrations` to be enabled. - - .. versionadded:: 2.0 - - :param integration: The integration that was created. - :type integration: :class:`Integration` - -.. function:: on_raw_integration_delete(payload) - - Called when an integration is deleted. - - This requires :attr:`Intents.integrations` to be enabled. - - .. versionadded:: 2.0 - - :param payload: The raw event payload data. - :type payload: :class:`RawIntegrationDeleteEvent` - -.. function:: on_webhooks_update(channel) - - Called whenever a webhook is created, modified, or removed from a guild channel. - - This requires :attr:`Intents.webhooks` to be enabled. - - :param channel: The channel that had its webhooks updated. - :type channel: :class:`abc.GuildChannel` - -.. function:: on_member_join(member) - on_member_remove(member) - - Called when a :class:`Member` leaves or joins a :class:`Guild`. - - This requires :attr:`Intents.members` to be enabled. - - :param member: The member who joined or left. - :type member: :class:`Member` - -.. function:: on_member_update(before, after) - - Called when a :class:`Member` updates their profile. - - This is called when one or more of the following things change: - - - nickname - - roles - - pending - - This requires :attr:`Intents.members` to be enabled. - - :param before: The updated member's old info. - :type before: :class:`Member` - :param after: The updated member's updated info. - :type after: :class:`Member` - -.. function:: on_presence_update(before, after) - - Called when a :class:`Member` updates their presence. - - This is called when one or more of the following things change: - - - status - - activity - - This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled. - - .. versionadded:: 2.0 - - :param before: The updated member's old info. - :type before: :class:`Member` - :param after: The updated member's updated info. - :type after: :class:`Member` - -.. function:: on_user_update(before, after) - - Called when a :class:`User` updates their profile. - - This is called when one or more of the following things change: - - - avatar - - username - - discriminator - - This requires :attr:`Intents.members` to be enabled. - - :param before: The updated user's old info. - :type before: :class:`User` - :param after: The updated user's updated info. - :type after: :class:`User` - -.. function:: on_guild_join(guild) - - Called when a :class:`Guild` is either created by the :class:`Client` or when the - :class:`Client` joins a guild. - - This requires :attr:`Intents.guilds` to be enabled. - - :param guild: The guild that was joined. - :type guild: :class:`Guild` - -.. function:: on_guild_remove(guild) - - Called when a :class:`Guild` is removed from the :class:`Client`. - - This happens through, but not limited to, these circumstances: - - - The client got banned. - - The client got kicked. - - The client left the guild. - - The client or the guild owner deleted the guild. - - In order for this event to be invoked then the :class:`Client` must have - been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`) - - This requires :attr:`Intents.guilds` to be enabled. - - :param guild: The guild that got removed. - :type guild: :class:`Guild` - -.. function:: on_guild_update(before, after) - - Called when a :class:`Guild` updates, for example: - - - Changed name - - Changed AFK channel - - Changed AFK timeout - - etc - - This requires :attr:`Intents.guilds` to be enabled. - - :param before: The guild prior to being updated. - :type before: :class:`Guild` - :param after: The guild after being updated. - :type after: :class:`Guild` - -.. function:: on_guild_role_create(role) - on_guild_role_delete(role) - - Called when a :class:`Guild` creates or deletes a new :class:`Role`. - - To get the guild it belongs to, use :attr:`Role.guild`. - - This requires :attr:`Intents.guilds` to be enabled. - - :param role: The role that was created or deleted. - :type role: :class:`Role` - -.. function:: on_guild_role_update(before, after) - - Called when a :class:`Role` is changed guild-wide. - - This requires :attr:`Intents.guilds` to be enabled. - - :param before: The updated role's old info. - :type before: :class:`Role` - :param after: The updated role's updated info. - :type after: :class:`Role` - -.. function:: on_guild_emojis_update(guild, before, after) - - Called when a :class:`Guild` adds or removes :class:`Emoji`. - - This requires :attr:`Intents.emojis_and_stickers` to be enabled. - - :param guild: The guild who got their emojis updated. - :type guild: :class:`Guild` - :param before: A list of emojis before the update. - :type before: Sequence[:class:`Emoji`] - :param after: A list of emojis after the update. - :type after: Sequence[:class:`Emoji`] - -.. function:: on_guild_stickers_update(guild, before, after) - - Called when a :class:`Guild` updates its stickers. - - This requires :attr:`Intents.emojis_and_stickers` to be enabled. - - .. versionadded:: 2.0 - - :param guild: The guild who got their stickers updated. - :type guild: :class:`Guild` - :param before: A list of stickers before the update. - :type before: Sequence[:class:`GuildSticker`] - :param after: A list of stickers after the update. - :type after: Sequence[:class:`GuildSticker`] - -.. function:: on_guild_available(guild) - on_guild_unavailable(guild) - - Called when a guild becomes available or unavailable. The guild must have - existed in the :attr:`Client.guilds` cache. - - This requires :attr:`Intents.guilds` to be enabled. - - :param guild: The :class:`Guild` that has changed availability. +Voice +~~~~~~ .. function:: on_voice_state_update(member, before, after) @@ -1008,56 +1018,70 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param after: The voice state after the changes. :type after: :class:`VoiceState` -.. function:: on_stage_instance_create(stage_instance) - on_stage_instance_delete(stage_instance) - Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`. +Others? +~~~~~~~~ - .. versionadded:: 2.0 +.. function:: on_error(event, *args, **kwargs) - :param stage_instance: The stage instance that was created or deleted. - :type stage_instance: :class:`StageInstance` + Usually when an event raises an uncaught exception, a traceback is + printed to stderr and the exception is ignored. If you want to + change this behaviour and handle the exception for whatever reason + yourself, this event can be overridden. Which, when done, will + suppress the default action of printing the traceback. -.. function:: on_stage_instance_update(before, after) + The information of the exception raised and the exception itself can + be retrieved with a standard call to :func:`sys.exc_info`. - Called when a :class:`StageInstance` is updated. + If you want exception to propagate out of the :class:`Client` class + you can define an ``on_error`` handler consisting of a single empty + :ref:`raise statement `. Exceptions raised by ``on_error`` will not be + handled in any way by :class:`Client`. - The following, but not limited to, examples illustrate when this event is called: + .. note:: - - The topic is changed. - - The privacy level is changed. + ``on_error`` will only be dispatched to :meth:`Client.event`. - .. versionadded:: 2.0 + It will not be received by :meth:`Client.wait_for`, or, if used, + :ref:`ext_commands_api_bot` listeners such as + :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`. - :param before: The stage instance before the update. - :type before: :class:`StageInstance` - :param after: The stage instance after the update. - :type after: :class:`StageInstance` + :param event: The name of the event that raised the exception. + :type event: :class:`str` -.. function:: on_member_ban(guild, user) + :param args: The positional arguments for the event that raised the + exception. + :param kwargs: The keyword arguments for the event that raised the + exception. - Called when user gets banned from a :class:`Guild`. - This requires :attr:`Intents.bans` to be enabled. +.. function:: on_group_join(channel, user) + on_group_remove(channel, user) - :param guild: The guild the user got banned from. - :type guild: :class:`Guild` - :param user: The user that got banned. - Can be either :class:`User` or :class:`Member` depending if - the user was in the guild or not at the time of removal. - :type user: Union[:class:`User`, :class:`Member`] + Called when someone joins or leaves a :class:`GroupChannel`. -.. function:: on_member_unban(guild, user) - - Called when a :class:`User` gets unbanned from a :class:`Guild`. - - This requires :attr:`Intents.bans` to be enabled. - - :param guild: The guild the user got unbanned from. - :type guild: :class:`Guild` - :param user: The user that got unbanned. + :param channel: The group that the user joined or left. + :type channel: :class:`GroupChannel` + :param user: The user that joined or left. :type user: :class:`User` +.. function:: on_interaction(interaction) + + Called when an interaction happened. + + This currently happens due to slash command invocations or components being used. + + .. warning:: + + This is a low level function that is not generally meant to be used. + If you are working with components, consider using the callbacks associated + with the :class:`~discord.ui.View` instead as it provides a nicer user experience. + + .. versionadded:: 2.0 + + :param interaction: The interaction data. + :type interaction: :class:`Interaction` + .. function:: on_invite_create(invite) Called when an :class:`Invite` is created. @@ -1095,15 +1119,36 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param invite: The invite that was deleted. :type invite: :class:`Invite` -.. function:: on_group_join(channel, user) - on_group_remove(channel, user) +.. function:: on_typing(channel, user, when) - Called when someone joins or leaves a :class:`GroupChannel`. + Called when someone begins typing a message. - :param channel: The group that the user joined or left. - :type channel: :class:`GroupChannel` - :param user: The user that joined or left. - :type user: :class:`User` + The ``channel`` parameter can be a :class:`abc.Messageable` instance. + Which could either be :class:`TextChannel`, :class:`GroupChannel`, or + :class:`DMChannel`. + + If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter + is a :class:`Member`, otherwise it is a :class:`User`. + + This requires :attr:`Intents.typing` to be enabled. + + :param channel: The location where the typing originated from. + :type channel: :class:`abc.Messageable` + :param user: The user that started typing. + :type user: Union[:class:`User`, :class:`Member`] + :param when: When the typing started as an aware datetime in UTC. + :type when: :class:`datetime.datetime` + +.. function:: on_raw_typing(payload) + + Called when someone begins typing a message. Unlike :func:`on_typing`, this is + called regardless if the user can be found or not. This most often happens + when a user types in DMs. + + This requires :attr:`Intents.typing` to be enabled. + + :param payload: The raw typing payload. + :type payload: :class:`RawTypingEvent` .. _discord-api-utils: -- 2.47.2 From 212b27edf3a12a0a36103b8c8dbd6dc30baa146f Mon Sep 17 00:00:00 2001 From: Chiggy-Playz Date: Sun, 3 Oct 2021 17:36:47 +0530 Subject: [PATCH 2/3] Revised Categories --- docs/api.rst | 271 ++++++++++++++++++++++++++------------------------- 1 file changed, 138 insertions(+), 133 deletions(-) diff --git a/docs/api.rst b/docs/api.rst index beec9a97..e513eb0a 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -223,6 +223,16 @@ Channels :param after: The updated guild channel's new info. :type after: :class:`abc.GuildChannel` +.. function:: on_group_join(channel, user) + on_group_remove(channel, user) + + Called when someone joins or leaves a :class:`GroupChannel`. + + :param channel: The group that the user joined or left. + :type channel: :class:`GroupChannel` + :param user: The user that joined or left. + :type user: :class:`User` + .. function:: on_private_channel_update(before, after) Called whenever a private group DM is updated. e.g. changed name or topic. @@ -254,6 +264,37 @@ Channels :param last_pin: The latest message that was pinned as an aware datetime in UTC. Could be ``None``. :type last_pin: Optional[:class:`datetime.datetime`] +.. function:: on_typing(channel, user, when) + + Called when someone begins typing a message. + + The ``channel`` parameter can be a :class:`abc.Messageable` instance. + Which could either be :class:`TextChannel`, :class:`GroupChannel`, or + :class:`DMChannel`. + + If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter + is a :class:`Member`, otherwise it is a :class:`User`. + + This requires :attr:`Intents.typing` to be enabled. + + :param channel: The location where the typing originated from. + :type channel: :class:`abc.Messageable` + :param user: The user that started typing. + :type user: Union[:class:`User`, :class:`Member`] + :param when: When the typing started as an aware datetime in UTC. + :type when: :class:`datetime.datetime` + +.. function:: on_raw_typing(payload) + + Called when someone begins typing a message. Unlike :func:`on_typing`, this is + called regardless if the user can be found or not. This most often happens + when a user types in DMs. + + This requires :attr:`Intents.typing` to be enabled. + + :param payload: The raw typing payload. + :type payload: :class:`RawTypingEvent` + Guilds ~~~~~~~ @@ -340,7 +381,45 @@ Guilds :param after: A list of stickers after the update. :type after: Sequence[:class:`GuildSticker`] -integrations + .. function:: on_invite_create(invite) + + Called when an :class:`Invite` is created. + You must have the :attr:`~Permissions.manage_channels` permission to receive this. + + .. versionadded:: 1.3 + + .. note:: + + There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` + attributes will be of :class:`Object` rather than the respective models. + + This requires :attr:`Intents.invites` to be enabled. + + :param invite: The invite that was created. + :type invite: :class:`Invite` + +.. function:: on_invite_delete(invite) + + Called when an :class:`Invite` is deleted. + You must have the :attr:`~Permissions.manage_channels` permission to receive this. + + .. versionadded:: 1.3 + + .. note:: + + There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` + attributes will be of :class:`Object` rather than the respective models. + + Outside of those two attributes, the only other attribute guaranteed to be + filled by the Discord gateway for this event is :attr:`Invite.code`. + + This requires :attr:`Intents.invites` to be enabled. + + :param invite: The invite that was deleted. + :type invite: :class:`Invite` + + +Integrations ~~~~~~~~~~~~~ .. function:: on_integration_create(integration) @@ -396,6 +475,28 @@ integrations :param payload: The raw event payload data. :type payload: :class:`RawIntegrationDeleteEvent` +Interactions +~~~~~~~~~~~~~ + +.. function:: on_interaction(interaction) + + Called when an interaction happened. + + This currently happens due to slash command invocations or components being used. + + .. warning:: + + This is a low level function that is not generally meant to be used. + If you are working with components, consider using the callbacks associated + with the :class:`~discord.ui.View` instead as it provides a nicer user experience. + + .. versionadded:: 2.0 + + :param interaction: The interaction data. + :type interaction: :class:`Interaction` + + + Members ~~~~~~~~ @@ -616,6 +717,42 @@ Messages :param payload: The raw event payload data. :type payload: :class:`RawBulkMessageDeleteEvent` +Meta +~~~~~ + +.. function:: on_error(event, *args, **kwargs) + + Usually when an event raises an uncaught exception, a traceback is + printed to stderr and the exception is ignored. If you want to + change this behaviour and handle the exception for whatever reason + yourself, this event can be overridden. Which, when done, will + suppress the default action of printing the traceback. + + The information of the exception raised and the exception itself can + be retrieved with a standard call to :func:`sys.exc_info`. + + If you want exception to propagate out of the :class:`Client` class + you can define an ``on_error`` handler consisting of a single empty + :ref:`raise statement `. Exceptions raised by ``on_error`` will not be + handled in any way by :class:`Client`. + + .. note:: + + ``on_error`` will only be dispatched to :meth:`Client.event`. + + It will not be received by :meth:`Client.wait_for`, or, if used, + :ref:`ext_commands_api_bot` listeners such as + :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`. + + :param event: The name of the event that raised the exception. + :type event: :class:`str` + + :param args: The positional arguments for the event that raised the + exception. + :param kwargs: The keyword arguments for the event that raised the + exception. + + Networking ~~~~~~~~~~~ @@ -1018,138 +1155,6 @@ Voice :param after: The voice state after the changes. :type after: :class:`VoiceState` - -Others? -~~~~~~~~ - -.. function:: on_error(event, *args, **kwargs) - - Usually when an event raises an uncaught exception, a traceback is - printed to stderr and the exception is ignored. If you want to - change this behaviour and handle the exception for whatever reason - yourself, this event can be overridden. Which, when done, will - suppress the default action of printing the traceback. - - The information of the exception raised and the exception itself can - be retrieved with a standard call to :func:`sys.exc_info`. - - If you want exception to propagate out of the :class:`Client` class - you can define an ``on_error`` handler consisting of a single empty - :ref:`raise statement `. Exceptions raised by ``on_error`` will not be - handled in any way by :class:`Client`. - - .. note:: - - ``on_error`` will only be dispatched to :meth:`Client.event`. - - It will not be received by :meth:`Client.wait_for`, or, if used, - :ref:`ext_commands_api_bot` listeners such as - :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`. - - :param event: The name of the event that raised the exception. - :type event: :class:`str` - - :param args: The positional arguments for the event that raised the - exception. - :param kwargs: The keyword arguments for the event that raised the - exception. - - -.. function:: on_group_join(channel, user) - on_group_remove(channel, user) - - Called when someone joins or leaves a :class:`GroupChannel`. - - :param channel: The group that the user joined or left. - :type channel: :class:`GroupChannel` - :param user: The user that joined or left. - :type user: :class:`User` - -.. function:: on_interaction(interaction) - - Called when an interaction happened. - - This currently happens due to slash command invocations or components being used. - - .. warning:: - - This is a low level function that is not generally meant to be used. - If you are working with components, consider using the callbacks associated - with the :class:`~discord.ui.View` instead as it provides a nicer user experience. - - .. versionadded:: 2.0 - - :param interaction: The interaction data. - :type interaction: :class:`Interaction` - -.. function:: on_invite_create(invite) - - Called when an :class:`Invite` is created. - You must have the :attr:`~Permissions.manage_channels` permission to receive this. - - .. versionadded:: 1.3 - - .. note:: - - There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` - attributes will be of :class:`Object` rather than the respective models. - - This requires :attr:`Intents.invites` to be enabled. - - :param invite: The invite that was created. - :type invite: :class:`Invite` - -.. function:: on_invite_delete(invite) - - Called when an :class:`Invite` is deleted. - You must have the :attr:`~Permissions.manage_channels` permission to receive this. - - .. versionadded:: 1.3 - - .. note:: - - There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` - attributes will be of :class:`Object` rather than the respective models. - - Outside of those two attributes, the only other attribute guaranteed to be - filled by the Discord gateway for this event is :attr:`Invite.code`. - - This requires :attr:`Intents.invites` to be enabled. - - :param invite: The invite that was deleted. - :type invite: :class:`Invite` - -.. function:: on_typing(channel, user, when) - - Called when someone begins typing a message. - - The ``channel`` parameter can be a :class:`abc.Messageable` instance. - Which could either be :class:`TextChannel`, :class:`GroupChannel`, or - :class:`DMChannel`. - - If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter - is a :class:`Member`, otherwise it is a :class:`User`. - - This requires :attr:`Intents.typing` to be enabled. - - :param channel: The location where the typing originated from. - :type channel: :class:`abc.Messageable` - :param user: The user that started typing. - :type user: Union[:class:`User`, :class:`Member`] - :param when: When the typing started as an aware datetime in UTC. - :type when: :class:`datetime.datetime` - -.. function:: on_raw_typing(payload) - - Called when someone begins typing a message. Unlike :func:`on_typing`, this is - called regardless if the user can be found or not. This most often happens - when a user types in DMs. - - This requires :attr:`Intents.typing` to be enabled. - - :param payload: The raw typing payload. - :type payload: :class:`RawTypingEvent` - .. _discord-api-utils: Utility Functions -- 2.47.2 From 85e4ba8be69c033315d7b971bc650f1cc37afa45 Mon Sep 17 00:00:00 2001 From: Chiggy-Playz Date: Thu, 7 Oct 2021 01:28:47 +0530 Subject: [PATCH 3/3] Remove built docs --- docs/Python/doctrees/api.doctree | Bin 7461039 -> 0 bytes docs/Python/doctrees/discord.doctree | Bin 26317 -> 0 bytes docs/Python/doctrees/environment.pickle | Bin 2471857 -> 0 bytes docs/Python/doctrees/ext/commands/api.doctree | Bin 2078459 -> 0 bytes .../Python/doctrees/ext/commands/cogs.doctree | Bin 32844 -> 0 bytes .../doctrees/ext/commands/commands.doctree | Bin 184097 -> 0 bytes .../doctrees/ext/commands/extensions.doctree | Bin 15313 -> 0 bytes .../doctrees/ext/commands/index.doctree | Bin 6738 -> 0 bytes .../ext/commands/slash-commands.doctree | Bin 9140 -> 0 bytes docs/Python/doctrees/ext/tasks/index.doctree | Bin 113317 -> 0 bytes docs/Python/doctrees/faq.doctree | Bin 97713 -> 0 bytes docs/Python/doctrees/index.doctree | Bin 16860 -> 0 bytes docs/Python/doctrees/intents.doctree | Bin 60760 -> 0 bytes docs/Python/doctrees/intro.doctree | Bin 17563 -> 0 bytes docs/Python/doctrees/logging.doctree | Bin 12130 -> 0 bytes docs/Python/doctrees/migrating.doctree | Bin 333580 -> 0 bytes .../doctrees/migrating_to_async.doctree | Bin 55534 -> 0 bytes docs/Python/doctrees/quickstart.doctree | Bin 19894 -> 0 bytes .../doctrees/version_guarantees.doctree | Bin 11114 -> 0 bytes docs/Python/doctrees/whats_new.doctree | Bin 702489 -> 0 bytes docs/Python/html/_images/snake.svg | 17 - docs/Python/html/_images/snake_dark.svg | 17 - docs/Python/html/_sources/api.rst.txt | 4242 -- docs/Python/html/_sources/discord.rst.txt | 96 - .../html/_sources/ext/commands/api.rst.txt | 681 - .../html/_sources/ext/commands/cogs.rst.txt | 159 - .../_sources/ext/commands/commands.rst.txt | 962 - .../_sources/ext/commands/extensions.rst.txt | 64 - .../html/_sources/ext/commands/index.rst.txt | 19 - .../ext/commands/slash-commands.rst.txt | 23 - .../html/_sources/ext/tasks/index.rst.txt | 154 - docs/Python/html/_sources/faq.rst.txt | 443 - docs/Python/html/_sources/index.rst.txt | 76 - docs/Python/html/_sources/intents.rst.txt | 192 - docs/Python/html/_sources/intro.rst.txt | 113 - docs/Python/html/_sources/logging.rst.txt | 46 - docs/Python/html/_sources/migrating.rst.txt | 1172 - .../html/_sources/migrating_to_async.rst.txt | 322 - docs/Python/html/_sources/quickstart.rst.txt | 79 - .../html/_sources/version_guarantees.rst.txt | 30 - docs/Python/html/_sources/whats_new.rst.txt | 1315 - docs/Python/html/_static/basic.css | 904 - docs/Python/html/_static/codeblocks.css | 143 - docs/Python/html/_static/copy.js | 34 - docs/Python/html/_static/custom.js | 97 - docs/Python/html/_static/discord_py_logo.ico | Bin 270398 -> 0 bytes docs/Python/html/_static/doctools.js | 323 - .../html/_static/documentation_options.js | 12 - docs/Python/html/_static/icons.css | 10 - docs/Python/html/_static/icons.woff | Bin 2608 -> 0 bytes docs/Python/html/_static/jquery-3.5.1.js | 10872 ----- docs/Python/html/_static/jquery.js | 2 - docs/Python/html/_static/language_data.js | 382 - docs/Python/html/_static/pygments.css | 69 - docs/Python/html/_static/scorer.js | 83 - docs/Python/html/_static/searchtools.js | 528 - docs/Python/html/_static/settings.js | 106 - docs/Python/html/_static/sidebar.js | 127 - docs/Python/html/_static/style.css | 1326 - docs/Python/html/_static/underscore-1.13.1.js | 2042 - docs/Python/html/_static/underscore.js | 6 - docs/Python/html/api.html | 34431 ---------------- docs/Python/html/discord.html | 234 - docs/Python/html/ext/commands/api.html | 8921 ---- docs/Python/html/ext/commands/cogs.html | 282 - docs/Python/html/ext/commands/commands.html | 1021 - docs/Python/html/ext/commands/extensions.html | 200 - docs/Python/html/ext/commands/index.html | 184 - .../html/ext/commands/slash-commands.html | 149 - docs/Python/html/ext/tasks/index.html | 704 - docs/Python/html/faq.html | 601 - docs/Python/html/genindex.html | 5392 --- docs/Python/html/index.html | 213 - docs/Python/html/intents.html | 331 - docs/Python/html/intro.html | 242 - docs/Python/html/logging.html | 171 - docs/Python/html/migrating.html | 1462 - docs/Python/html/migrating_to_async.html | 457 - docs/Python/html/objects.inv | Bin 18639 -> 0 bytes docs/Python/html/quickstart.html | 205 - docs/Python/html/search.html | 167 - docs/Python/html/searchindex.js | 1 - docs/Python/html/version_guarantees.html | 174 - docs/Python/html/whats_new.html | 1885 - 84 files changed, 84715 deletions(-) delete mode 100644 docs/Python/doctrees/api.doctree delete mode 100644 docs/Python/doctrees/discord.doctree delete mode 100644 docs/Python/doctrees/environment.pickle delete mode 100644 docs/Python/doctrees/ext/commands/api.doctree delete mode 100644 docs/Python/doctrees/ext/commands/cogs.doctree delete mode 100644 docs/Python/doctrees/ext/commands/commands.doctree delete mode 100644 docs/Python/doctrees/ext/commands/extensions.doctree delete mode 100644 docs/Python/doctrees/ext/commands/index.doctree delete mode 100644 docs/Python/doctrees/ext/commands/slash-commands.doctree delete mode 100644 docs/Python/doctrees/ext/tasks/index.doctree delete mode 100644 docs/Python/doctrees/faq.doctree delete mode 100644 docs/Python/doctrees/index.doctree delete mode 100644 docs/Python/doctrees/intents.doctree delete mode 100644 docs/Python/doctrees/intro.doctree delete mode 100644 docs/Python/doctrees/logging.doctree delete mode 100644 docs/Python/doctrees/migrating.doctree delete mode 100644 docs/Python/doctrees/migrating_to_async.doctree delete mode 100644 docs/Python/doctrees/quickstart.doctree delete mode 100644 docs/Python/doctrees/version_guarantees.doctree delete mode 100644 docs/Python/doctrees/whats_new.doctree delete mode 100644 docs/Python/html/_images/snake.svg delete mode 100644 docs/Python/html/_images/snake_dark.svg delete mode 100644 docs/Python/html/_sources/api.rst.txt delete mode 100644 docs/Python/html/_sources/discord.rst.txt delete mode 100644 docs/Python/html/_sources/ext/commands/api.rst.txt delete mode 100644 docs/Python/html/_sources/ext/commands/cogs.rst.txt delete mode 100644 docs/Python/html/_sources/ext/commands/commands.rst.txt delete mode 100644 docs/Python/html/_sources/ext/commands/extensions.rst.txt delete mode 100644 docs/Python/html/_sources/ext/commands/index.rst.txt delete mode 100644 docs/Python/html/_sources/ext/commands/slash-commands.rst.txt delete mode 100644 docs/Python/html/_sources/ext/tasks/index.rst.txt delete mode 100644 docs/Python/html/_sources/faq.rst.txt delete mode 100644 docs/Python/html/_sources/index.rst.txt delete mode 100644 docs/Python/html/_sources/intents.rst.txt delete mode 100644 docs/Python/html/_sources/intro.rst.txt delete mode 100644 docs/Python/html/_sources/logging.rst.txt delete mode 100644 docs/Python/html/_sources/migrating.rst.txt delete mode 100644 docs/Python/html/_sources/migrating_to_async.rst.txt delete mode 100644 docs/Python/html/_sources/quickstart.rst.txt delete mode 100644 docs/Python/html/_sources/version_guarantees.rst.txt delete mode 100644 docs/Python/html/_sources/whats_new.rst.txt delete mode 100644 docs/Python/html/_static/basic.css delete mode 100644 docs/Python/html/_static/codeblocks.css delete mode 100644 docs/Python/html/_static/copy.js delete mode 100644 docs/Python/html/_static/custom.js delete mode 100644 docs/Python/html/_static/discord_py_logo.ico delete mode 100644 docs/Python/html/_static/doctools.js delete mode 100644 docs/Python/html/_static/documentation_options.js delete mode 100644 docs/Python/html/_static/icons.css delete mode 100644 docs/Python/html/_static/icons.woff delete mode 100644 docs/Python/html/_static/jquery-3.5.1.js delete mode 100644 docs/Python/html/_static/jquery.js delete mode 100644 docs/Python/html/_static/language_data.js delete mode 100644 docs/Python/html/_static/pygments.css delete mode 100644 docs/Python/html/_static/scorer.js delete mode 100644 docs/Python/html/_static/searchtools.js delete mode 100644 docs/Python/html/_static/settings.js delete mode 100644 docs/Python/html/_static/sidebar.js delete mode 100644 docs/Python/html/_static/style.css delete mode 100644 docs/Python/html/_static/underscore-1.13.1.js delete mode 100644 docs/Python/html/_static/underscore.js delete mode 100644 docs/Python/html/api.html delete mode 100644 docs/Python/html/discord.html delete mode 100644 docs/Python/html/ext/commands/api.html delete mode 100644 docs/Python/html/ext/commands/cogs.html delete mode 100644 docs/Python/html/ext/commands/commands.html delete mode 100644 docs/Python/html/ext/commands/extensions.html delete mode 100644 docs/Python/html/ext/commands/index.html delete mode 100644 docs/Python/html/ext/commands/slash-commands.html delete mode 100644 docs/Python/html/ext/tasks/index.html delete mode 100644 docs/Python/html/faq.html delete mode 100644 docs/Python/html/genindex.html delete mode 100644 docs/Python/html/index.html delete mode 100644 docs/Python/html/intents.html delete mode 100644 docs/Python/html/intro.html delete mode 100644 docs/Python/html/logging.html delete mode 100644 docs/Python/html/migrating.html delete mode 100644 docs/Python/html/migrating_to_async.html delete mode 100644 docs/Python/html/objects.inv delete mode 100644 docs/Python/html/quickstart.html delete mode 100644 docs/Python/html/search.html delete mode 100644 docs/Python/html/searchindex.js delete mode 100644 docs/Python/html/version_guarantees.html delete mode 100644 docs/Python/html/whats_new.html diff --git a/docs/Python/doctrees/api.doctree b/docs/Python/doctrees/api.doctree deleted file mode 100644 index d6d2bfac9c12417de1b0076e9eefc9222d947c6e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7461039 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%0AdI-i|2gYpW^Jm!&acD4l6E$FcV`B$;j?X|* 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%0A09n>$5&Dx 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 FxH;u`Cj>0zhj8y^NiNPw^dVfAQpSgH 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

tY1^wNLFg8sP<7Na3EduqVqV)$vl^*;PL(;5 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

Px?ZZ5+E9o4-qI203X5fi?N zSNT;W;=xdB_f@qL*&(<O z7UKJMgYU#tbFnBW#M2O^s`|t`I88LRT0=JKRaFW1ZZ(CbxS8(Q%@BZq^~4Bb4_elmAO15fsYR z82{H{FUH35@OVXRgx7q-J3nBj2<)4O!#Q!igtro7_HHcA)tM={v~mK%0Kc!PEQ}bN z>rbf{*-`W(*oTk`yHcXnjV#m8p&92PPE6;BqJQQA=L(t4{ZXhm?Qao0L2BVNqY=pCzZK$HipzQKaZtI)9H7hQxOE44Wq5st)U|o=oUa& zbqccO%9OpvqEFwj1a}T@=~{uZxuWk16&1*tVYO}q4zj~8@t!pcj8Mz*SdLLZ7 zC@xvXH6=4*Xff&Zyabxw%5}93+R57Wb|65LH_WytWuW zY9IfK##?UZI?@B3ktHVqC}YVa`cCF+iRVU?S|8q29e|6ePw7FnP6Akv!VSdM zc6&NB-qXLvaO#N`dwyFM`;FP*9o1SpwPwcrp!pMB1E|9YUL6ojR99vBe}wA#$}m9G zE2wjopiU~TJFTHxp6EaVg|79R!T2VD@eN@FY>eL?2Cy+smAYt=7~Bnc}D+gfZM_VN<40*rctUu@4sqz*xa=sZuNsiu+*%Z{n#Yv7@F*n z+}JQOwG|BD_W~;}7}>TXKa*kP(tn9>0LHN(QoKo38Lf^)@5eKIRT>aM@6^6Kt&Rhg z;Yza-Q^y5!ed?%wMRgQ_hKr<*ivcV#unPte3q8;o)$uR@?Wj7+;i7h_?BgNSuKfcz zb9MYF0+hl4N*(v6rs?W&0I*w5FY9On()gaQoo{d2tY?UF87Q*yRX{ffzGHLuL97HDu)~{SB{5K z*2e=lbLIFM0*r+Llz7ysX+g?C1Ax3fzj7EzqZ}Uq)L<|-hXL^|HDhMQ_4J%S=~XBa>c>5J4fT}0-bUiU;ZS`Lz48)p9s zJ_2a{GK`izjz_})_Be7dJH6>uBET29U2@abB*+OHTTj^zv^07SQcf7h_fYe~``{DJ3)7Qt+Lem+RQkh0{lumf7SR%q zY_kfnJt(R)E|-ZEFsZv^}NJ3vb(; zQqY?{Y`UQ^iIWECd%r-Nagf9z+l)f3vZ=Tkh0L9qU_s0%WCw%+p00`9{*1zf*oUy` zcEw%WItuYGf@X;!e)!zN^F81h!(+r-Dg zLmTS!6zKGS@r=S%a(KneD73IQA&a`IYu87Nx{y@9o>*q)Ds#?ry~YF1xtTK0bv=L< zBb7-bMNv{Y=dV#dk=FTV6jC{qdq&~ofP>^v(u~3?{5LY_l%P&(0oIy5kSb{Xru}s^XHUX-H~7bO*<6)k7|#d;*chiuoho7eNeu4!no&3$ z2Oq1_s9&*4%qaX3<@2xr&RjhHfB*-F0hD<3 zQq%Ml{J^9VW}PNy1()O^A2o%R3&tqK5TFAC7z__UC+jrg{xE<&;(w?@B-He;#=*xF zLj9Up(|?_3?AaCKH6G}U3h`C|?WjU{YWjad`F>RZXRZ+cg8;7x11RyhlA5L~#D2*N zVV%NT*bLjP0;&8nY+uYUa9QXR-$>O9t#d@w|IE<0oJSKxP3^nWPDqr%V^amcf3K9!+B5Zj8G7XhH1256y~rKSg@3ZfXEgRXVE}vV9aW9AiGrhWgd&mmO%$xmFc7uE zEZkJvkEc*T4i5t;A{|Oi(*-1HCP0oZ>9t|@Meq?o>%uTv_BhT91K8up!R+*=a-u*a zTFFg)69qrakn_li0+oj5nYPK zQmNStwY@?jiThq`xZnn|cWMN0&6yHELoi=X3zKwo)AP^PY5#^TWRr)3} z+^LneiOjAXOWm-4G#YUW3<)&iBlu6^WP?N6A>2OpK@CAQ{=WcH#cUt5F%^5qc60ZR z(SZxdWw~+8!RGIX&BUgW=BYJd_$lwMF+WnVEn@~XF)t9_hhkFz8Q9K#u^(v$`L=0s zmU{P#eNTfEfA5$E6m4(6*spX?K16cu7xN)y?HBt2eoOc|n~GZEsZ{+`0Hqw8#XKk( z`x4y`AIdYgrZ$V=I8eOVEZTGEP#=(p2WQbfadu^NtkQt}s<1qe?;G1sSfKq%_4QGu zzu8+_rM8lZA860cz?NEhq}p$GJjjb-#C?`uYBhV5PdCT(e%B^sP2sa zWHzd51@yK%0iU}hC|G)ZSz0SPz21bqRCxJlxxc^CXdu0jxr&veHw9;RNJ97pkL%KG>%{isvN_haeVs%j&8>^4$wHMFlCk_4f7WCV*E&5GPqTdBQ zFb%o3UfKXFWy|_7K}|d<;&jK*`bq_EF{(6|l(y8z;l$q>++$Q3gLP=7I$Uwo1^X37 zV5?gln!x$LrYoT7XdT!B2LKzU$bS3l8b--W1FfCIHEWKe0^oOz6o!EDV6O7#6qUvOf!YP5CAN0 zeChvxikW%J{}rPF^RUR#47PVH$4yCxVK2g2y7vfaT_ksTI5c#VV_gafuQxcv1J2`* zl!E+m0Lp41xz`(@AB|`SqdP(@W~dq69noYUO=(8=jG|RZ6SGx#*B)6g(MQ@2OB%BA zGSNZTZ=?4!wJz!HEe+6~ne~+wE6Dc2f%=1ki@Lf>@SnQYLz_h~C}I&pwhB|ybQ6436e;M*R|61o>Ga)IAH@g)0_BF?JF;~dXdetn>7!b})2@#6M57=) ztpyOodyXlkgjQ=RoUJg|mtFTFaQuk37>dCIP$r3vz|YuvcL#D$cpuS3iw0@j7gFUS zm&ScgcSRbvyQOi_XW(s~6fGj3LMJNB;57n4Fh@yep`3nJe&4I4Jxoh?TU8>Kfw{yh zG~s+}wjAF7QWGuu0e+=B`ko$a9(|gPcs^k8?8tFwzk&W;W5@LjX(zAUdkj&b1;O!a zkm7ef8xlr;K|qu$v#nA6WG|mrzk*To+zh?_K53xR@g=KD z8^)`{18^WFb|!8)E)O^ACAlyABz)V8@A^!ly{Ckt^D!Mbmch2Tyay3O_kut&9Mr4<~wiV%nz)n>~k2EuHJlh)RNU-9;a# z(||&iTuY%#kkNl3sO?_WPquqizk++6yb8N=MCeN%bhQYDOA4R&fOGPv$k5jTl*!Np zN(ypdTz>XO`T1M`IW8LnaBCPqxme_#>%I8Eke!vNop<^tBj*`v1pua z<;dh>p94&Vi`{0Pa-Nu4fhK0BHZj0)m6;Vb^}GEWmb)B zS34IQ6ys`V>#oSv&bM9duJE=^SF4Yp=43;eWfNWVP={tp41&(~$hELKNW0tGMyU0a z1Pzn?u6WBl?*Y0C;d>K0F&3;fUqhgePihatI7kyR=8t!?{INvJ$px)qPPSkd%I}>=M~FJbW13@=~Wuq0>%! zrZ9l=%E&v{;qieZo0(Up?)w2IhgVjTn#(IID=NJ*+HqSsGI`}Y08`SFYPh z0bx#kk?xP2x^5Zok@@w78VLM)8VHQ+cbdvE*S?SC+I2q)Nsp6%7CRGyGDkRh7s_Bs zDfnLjpnZ4$vv$A6p$-5id8r3ajkHbtIZ0-zmp z{EJY2Rs@javOxfchXIu1N8Y(Ul@AhMRgT(?bjg}g~e8lY={0< z$!5j32{`m?bywuj53(Kl>)~yi4&6@2nHxV4b?A)}gPY$RDW>x)0Ln~f`>xm?9oj?XfR`fkk(7Q1>=N0wF?<-@$Wo^tf=)Z>fPWdF zD@wV{ydOnW+RMD3LQvZQtDkHKtbR>$z|VQm)j|}mhyT?B&dHx5MN{{+q^Q`;dl|~l zGXdndY!JYcVF2ZTk$0|d;{!)FGY3rF{|sPqIAA5I%8;iDxpKhDU`hv!CfkO~>uU{s$oBmzO-yNo+UqFj>erI%uI57&6pC5}`> zC&%l88h_W?EA10o0of5vt(e=LWo5+-1=~_?#vX*%-ASav)YKqBPWLis)xOi+=z-=| zBgI_45p>*mgrp#=QiL^SiXe|W5teM#!*u6M zo-pqY**W$t@G*UptbKtxb>jD-XIk5hZrR!j`{vJiz&R^Zgzakp%7kqKzFCco3)*rN zG)b`;t?ibS%(&?<^HwjWYwfJ)NsRJP^ASVMN!Z5pNwoaAhZs5HoS%8XGt%;Rh0#)s zE18npUSb9v-7eOx2{PLu07snbGx6nPfsvxV4U4`}-vYLR$3WEmI{+p}45X|}t{6x; zE*S%%=d=lsDF!-VKNSNl#3zb@=&8do(896G2He&N8wVQwbtl9z+q+=>w7&=;z>A22 zrl_uBVbC!^5$P*cBRdW{4jU8`2OX`uqB!ViI}SPm-nJPB*+mFBRupd*2pxf@>PU$} zFc5kXk5V?)tNj(Y_6eDp6c35FtQ4_8_dpR*LLWxWTl;GOC`cqVzi!)YU|l}^2ZK3Z zlQR}5+4TvDo5$3y$1X&qBr|wPJX;0^pjrE&QlAH!8?F@ZRRd7wy(V0rkfY;<_ehir zB&EMT;S$+4KYSS6{!*uFq0>&rQ*R8=6%|0nQ?El*65^@dls`TX#r$lN^4O}qo3H~E z6z#_&^^+ZYt6w1$+KF{&j?Sqk@2izLEXOwU~+hCCA+!2wX&|#Tcdrq)g_a+{yAVODi*)M zC-Tovi+1&iil3RAIiYmbUeNPO@I{ z(n&+297k3BMR!FW{3P3h{~6x4>A`omDj9s#D9p@_uSDf~TA~qjq&tbdS~gpWO*}lXtuY@jcSnSRS77%!2TrT7YH&1u!tKK};y-Cid$QkACb&h{p_3;bVxH50j)+h?tJiQ?-}iKP&znKdXfNLhab>(V@%5KyN^2s*RGSZ|jR5as7z=1lZ$gysaatx6lU?BsFZ) zKI8$Gp;aWOp+#Z=NTp;j29a0X9tzoD(Nr`kA@{y*R$OO9OQTORO? zRDG~8s;ZGC)6-Wm6y(gN@5G%O17k&flodnNM>o9ZWWlB^2chm?3otoy5M_N-+?qNN zHEXIuLz#nMglfZO%0Xt&S2@TWd|HjiHqcXtbC6|?EsbVnBu5&uzpu8~Yj;ybCbEm$ zC0I=RG=`->De05l#7giCLROS&7?9lQViTeziL~QIkPb0&N%KsHIL!UV?b9)_DJ4 zNlex{#9}dM26wX#q0*iIm)*Mg-wp4tNZ+e9+CZt`~uePSyM++e@fja zNNPAk`H=@aqp1E0K$)mcAVaZ+$3^rk6j4dQgajo<-V7dNy9L@9D7&g1I3*~Ppuq$@ z#x@@Cj6~f9K#L)&8d)+ueF=&nXEt3Y?%Wp;Ak;;fpr9_gu|FpZHf0G4b$=Vc1O-D@n*f;-loNn+Vv^)Ue4+$}p4LFBat)5H3G>9{&g7wR#hfJ6J2pOC zY2?UH_VeZ^Rxd@QCp$Ym#;J6{KAeX^G1N+c5L-f|}{Hgi!EGYblnNSjw6uE4dYh#_bUki#@HZ#O~P> z;e8o<5+X87BqbJz5n&2SzCt8Ti1dOv$rnA)oO~(bavy*)acMs%@eUICrc#oNP;`*K z{*=U}d^TaAPK_{hCMEepfV}7gWJ>Y`H0?-Avh4vvoPyIP+e1U3aQ>8JXZeNnlw>+} zpCG8=lw>Clct%N`3!qF=JCTxHf+8vjn2?gh$eY1i9AYS|0(b4XN&64;P(@cH!bCmD z1D=tn#}r0XH8QU9Ha&eQi6Cb-U8mlj%b<%gB|%+uqkT>mR9lvkQ1`z<{e^hc_1!L< zJls@So?I!(1@ap*CBZ<|CP1c?WE?mrQj(4ML@5b9bvPwCVsw1{aJ7G(xRWqXZgQYE zH}Q8@M3OQmsq0v_@;acP^wmi~w!*#v0g6dmUaPyJv?a3BmRG^sHq(~#{sKp0LQY>PLjI%yFskJ6^^nS#mJ9?icPo9isJ&xnudK~{JGMZ00 zlwu)31|Ri#gigz7z6cFmtC+(_-R=SBMl~fwy%#`>ar{0XHGramv@0T`ad}|dbv|Bn zlWL-cQ1D9YqF6@b*W)ay&0{b|ZnKzt%(qgTgim;Kod3Zth0yFJavVRblk7Z6)J}*Y zgUQYxJkXr7DU$RYfHFyHKiNqiEf0Y@w%o)~#Ec$D>qvdZpi?@n3IfQKqMJW8JjJR?zSg%MSajH|p&PhZv}$eB&o zskdc;v7#=@tOs?`O(-~7uqn%WsQWzuCP&tzEKjbi=W4Kl!u{wt*Cs%wtmnOesmOZX zhfkFC&{K!A9@?$atd3ObAiB6y0Aeskt4QDx9;`(pJLHOV%r1IyNrP zZk5|~SH$5_JCpe|ylpd+iSJfXqefw7>C2^P$!?Ws1k;xz_|h=kiXwXzdrqy82$#Fd zw=C3hj=zd^VZt8!_^WtBK>NFzda>=L@wNI27f(#~GwesOoh@Wn1hbj{2((R%>4SmT zPd(7w(xiB`#{raiwe|xs&k(sO9zlUX%KD=(m*%!X;$y*1Rk%)_ej7R!CbKiq*Yut^ zYaE1B^fe8dCPiQR>ZNKeemBHC1VmBM#o|c)WbZOnze13-J#=K`n*8`e52`u*_1YbrP+(4VTGJ4*;gZPgn4X{4_mv*iSDW87!|Gu58S-r*t20K~ncngpZ!edW(7J z%aNVJRI_%riM~RzT=8%M{`oT975V3lwtpUnw{808Iaa07j2P5|d*_#-N^O!z1ika2 z+&iCk;wrfO8o285&H8)HGdnA~9dKj6TGsM#w;7;&ou*mLD|cHFg2BS$lW)Ra1f!>m zI*D#>a3NdzE@;`lN4~)Wozawj7(kgRZQmou2FR^y14RI7>i5SkwQa-0N5U;Hb^2!L zw3Gh$n*q|ItjlW1y@*P}=?|&?_(24;{jvJV_Q&d1zd!zk2h|+@_z@2{Cw+=P{yl&) zAu7@zkE7%~6hMtj1p)jx450ima?N#heAvifmN!%PcLPigf2?Fw+45BJR{mHSOzDr& zYTIy`{PF&als}%2Pvnp3sl)zw*{15ihDvi?rB+@)Tp7raI{SB6+1(W3nRju!jJfBd zfKt+GyNzuhy%HN1GaGoM?uvZ$<+hJL4BocsqwO75&e&15SsJ|wb?tD8NzhRr#2vNh zxHMFTGZZSYK2Y%;E*ytoi)26_24PN~rnQZkKsDi`^AJDSBBKeGXMS)Cj_@oq!j9aY zI|Ti^zTCAa(q&W-l?0ce5Aa)GuMfvg3fhd2w$D&M**-)43O-{J_T&T}S9*}m;WS?E z0q0{)aT>1y&|;j17#BJLwdU-fkNxE(MRS==4?L|%iQo+q!7{dk~MuOYiB(rf50V_xGs$X!&(87<{C zRAX(tDAfO+6a&TA31oKP)?Ja;_&3{Yd=uUl={3}F9Ix?m)U|I(OoCoxHhK+V@?r72 z>{7diZu6FWgMP0`82ui<)Ezychn~m&{|n;!8;$G#iS;3Wbtq-3epyZk+F`L4Yc=Pk zc|qbl6&kqSE{6k|>;dP7G{u3;0?=X{h#DDpAy=WOAnl4+AL8=Bw#j_F+$j+XMp`>l za6UZ10MvFFtsDwXlcJRg?Yle?I|kbsobG=yAvaFw@(W;{t&NGcEU%^R9fPdS zFbYripXmYTyiJkie*(~AWZ4=X7wA`_KuZE9O!vpgn_;?tlcB6qBb%sOJXFbHAjUo5 z8HxIe!icIymP}9IbiW{HHeDy~tO<-2bx}_Dqb|C!9VZJmWn~NM{vd$K5r8VoqXL!G zfvB>D3It>TiXn*&m#J*=Ux29yKySk*3P9r{XMMtjcvfc7t}ztW;1x*;Ov}D=6uV z^W1J7L3@d37&!uxlRV&@Eh&<=7C@P#O<~D*R9;Uxpv(fNZ!-;m4~1QxSe#jZYMQ&{K!QkHZHl zgXQtz<~lf|Scf5v43j5|y%C7Fw<3a&*$F+z;*cAWsF-Tje@%Mshq@=My8DyK7h?2lBYFOkAzA{F(M9jT~aF;a&RL+bebq@;d<0= z9&pZ<6k*#JK$);jBvOeFlFQgul(88BM7jJBz|LU+6{#S9-5`Jy0Y!mDD%AZmC==Ot zgDYuPUMp1*RHUNZfs9npKiP1ZB9*m32ob5Ai%%4(&{Kyal^0bukHT*7YI9wGz1FPM zn(GFu!_7=LfiLmKDhd4+5v_D5_8p5?hJlFEB_u*=A4(BR4IzqI0}|=3C}Mf19kEp4 zZJQCxd@Eu}q6R7gi&@@+in&3e6pUG{^^{U1N1&?&mvpX_XP=}6h59`timQGVtD z=j=!kvnK$QiP;2V6K8;2uHJ!i^OM{ zf^)?s%H+$q1ig^0G@0U(eV3}ZWIueOxP+cM9G4uUQn-;yqfy>a$z4e~#2cNY_F6=Y zvUlJMu}I}eAggi?>9E?bQoM2$!W9#*9HG0Sc;(%8ymAPF!CdOio{edKpaQgZByOQX_kR%;t{EMs=5&`eM^Sj~xOEn?UmovkUDC&IZ2 z$9RSrV@DRT4nqHK5aF69>7Du!m4rpCsrw!_BB1S))K9igQon*v^6W#r!h>oKPxQ|o za6Zx$Pjoea7UPLx`w-uSOx_$ojr$)0Xodll|3R*~rkxMl@jujkAHd}BKT1Y(`5&dc z(*K}UX~X~A2AGPx_;dI~{)e7A?0*j0Sguu@Th@(_4MS!;P{~lcpYQcJPCrHXnCY=T zV_xOk$Y9jS8Le1rZN12kd`F6c;_U<~_5ZEAB0usW+mC!5-nQvS_OkqlJ9@`+yayHT zn-Z0v=b(kE8^)`{1Gr*{GRWn5#XDSSi3-XgWqu;McmN-|F$_@dEEde1E0! zWqIz=CeIzIG>2C7$q9HNnbq3HYO~T;D%S=|EBO1$K((1K>3!Bg+~gLmJ*}=K>E)+A zsqW-nEqAj$*!C=Pl8+srz3ZK{$;T8I2e!51+Osd=VeN3zrw5uhO|keh0F+t$N%Wo8 zPGglpm78z9hTd-~kJYwb6a5sv7<~l)_YnT?2YZ1rng&lTd2FslnXPEg)fR^LBY%;? zl-N!teiL2!Re{4@I5nHs_c0ji>nlTq5a&@>pOHJW3w%E1r<+EJSN z$&S+0uNb94M~sS7fQq9YRJHho=Q2h-;GFa+I(r#_GM$}3y?}xbYY3Q?UxJ*@oj{v43O8Y22 zQItkc9gfl#jn*4gT;iD_JloqFo~aIsh|6{~oy7vOuOKf)KxUfh2!bN9uS#|+{!Jhf z`?BteBC(I#k=PyZw#`UvwiSu#@uKvyG z@2RSdme=?9lJQ?H@2eGo8tylk8SlneF7I1F@sOq zg{SFEcyn}sxM)9QcylB)4Td+q!>~?8Ks&rqKiT1p`qf{ATI)eIM|g9V2b_~WMQ#5H zK#LKhSP|-DsI{jDP~%cT051sxsPG24=0*;D*vMcO-ca|415A$aM#-phkE!CV!W-p; zWO##)(1yzt-n>YpY(s! z#13aZB-yL@HGy#EX5AHqGoP`;nRmh4Hp7`2Ryae0KuKkx%qLKD-Xp&s3}tBl33h{F zjNJ2#F0#?A_Fq~V(^aKlJ59>yPW*Ov^d(J#Jhi1yA@-j)*mq=x;k(ek>v&z=m&X0u zh)Ti?!@>52pEAH(3&iYOqT|1F1R?2HsBWV4-LvSbtuKcir<0>!VDIo#aQEqBgfWZt z^zKvsRZlqbNBISC9Xqk6P9*Xt>fVv}?7L5Y?*ZrZOmQK92hd_%h&4R)462;ini^N_duAZ<~0Voe?L&V^R4yyfuFvpwJ$$-6&*7DQe?ykzqFHlqsa+Fp#~ zkG-kjj+pgmK%UUz$<3&!pRR{=`sQw&y8jlywG+936lSm&uL4 z6xb)+_(k|cZk(Pv?8Xmh)<>)T8A=p;`29FS7vab!6COhEwnFV%8_qExhxFvKjrKp3 zS~c-~F>4J*bywudKX1G8OW|#su6(BL%86zu+02*Uil%EsA`tZDRF)8&vuYCTwr8s} zaZVGKsYs{5reCIGS%P(Aj9Dx83ebD4rcbOOp`8@Rz+*+6eH(m5QhOS2Yxqnmbi0RM zIh@vKJ>VJ1{Z#-hhTQh}xYx4j9ji>Zbhd3b9|w0{)alhoURuF#0=?EMGcj6jHpf=< zF*)cZT@#uqUUII;x29^yHcxB)aCTHbB2iEti^YxVVE6d+t14|_etpLMV%{>(Up zL;cy%xP9u+@IYsz{yYFJg!;ZQCX+v=urArNDJ=2SC~Rj+iK_zCg;AR10v>4hFtbJ+azJm4ASs2@O?92GfJdIu`*IRVtT87F`< z!T>4vD`z4!`9b4e)fLsLojd}Z)-kITzmkUC3@KKbJk%-BMXo=X(2jfV_4$wSNGJ=us_8w?X&=kR#0iaAU+K+tw zqvY~&C&~ws*e@S0@w3SXb!z0JGtt+f0s5kilePYXplLAr@=fHfMnF6IQa{O&uZ`+K- zx~)izjTz;b1!H%kUcFsn5e&x0;4-6XqluHeqm{9dYNLTm5OwdR=J@C^aJo5EZkEO> zqhpl@9IViQb#2Y^7+j`7OTf!rs=|1t?&1t3C4HqqoHZ_22PBAb-X|3DZR2!X1$7AY z`>f_-EPmW8ZLpr8;ZE#I2;eLaeGK{(P2L5q6Jv&OH2EbDIJbEzLBqEIv=~$G9VR#Z zUqcZ^5>wDHBQ7CYJ6oQY9`@MwlMk3X5c=$=;j?bodBMRjg@j4QV08?1p)y<<0Vyw4 zQSM>=!}_Sw--J6vV6&x^;mW|0(x#zm|4^yF3>S-3q1jm1dN>19&+eaA8ChQ$vu0J! zZ8$&BYRul!$%F72_?Gxi7d*kiT0oO=*bM_6*Gg4F#q@m!A=C#));EVh0ZS*Zk;uW} z7I?7@Y@_Kam-_l}^+q4;s)4$4b^SOb%&=n==5Hjv&|u*hto2+7O+Z88uMxr-|At0G zmEqB@fl7ZBHjHgT?N@6-;A@1C(c=?~A)V2LR#82Is5~zDtxP)$|Mf}Il35<*eHx*K z@=g)043?y?&yo~7{v!JVi9dV5x%j5&>!d@A(pNPyuA<*S6-C;m7qwHUs}~)U+gA3*+qp>R*b7nx&q~O(YB?jnY4uact%an67Dq~a^y%M zj`M(Lq~__xQIp1%Ow9vx*is{Gtz2LkEs8YJ9;x48_@qv7*WQjSO4UQ^9Gt3nz%z2H zQ5dJx$dY+AFW|ixe}YXtJh8It){e>-5B~a@5e2hN%EO zbs(ySrs^BAhK5xZ8!l4~t@kihLtBPVR70bu4%g6nN5`rg%l%t2-{!HOw~S`>QbZ+f zXQxLn2lkxii9jY9vO8_HRFZ1G7~2)I%5shFit1@UwCicd!rM0MX?s}pG<)PI)~uxV z9aO?q5|Lm@tq0R#*`GKT8>?%O$-~|WSXWu9*5Kb-e?=tFVC%92Xevi##HKr1r>T=? zFU9w8JQthsbYw3@1NwLKH`jDX&o+vvBzQJ`GXpJkI#Vc)|GeW@U^keo>$E9SKUvX? z{uO9HBi5}kuq4W_^$a6NIDWMUoKqns!M_ebi}5m^L4t(qIo=gb2NpmhQqEuRX5wtCBc#*pSQ!x{B4?d9>p{EXekpr-L zmt_*hzZRdMi|`tgWlu40@er~Q^>Ic^w$b*BRO?~MV#PBjl*_aJ{6_$TVh<$(dH+(I38tTF<#F9W5)vHA$qlSNHd zyNWiUHQl4XAf9m7kET~1zwr|s>7VsT*)rw}p@>~B;efDeo~M3|ei2H_c=S`PJOb-{ zu*}{iE7{eW7&#^-^Rs-y81IbjVL&@97nVkep>ZEsE+d_Z&_c*n)k9O8qS6%HhMN_6WcE;ON#N#{VePkBoLKkC)N+s1?y)Z z=sALII!+3gmoJeYfp7Ru2w6uRItD!ZG{{9BaL(2gA+G{xF+v_cA>?5caY?I$4Wcnh z>Pe;K67atoS}MiTYC$IBl^$~BFd0{Rz%x?w^@UMWjf|TNhn~J-hM;FQ1*h)L2n-e# zP!=;#0o@3X(*>KdVg_}86u{&NLzTHvz9e-Zs+gf-2N{N9@M6PdDrVdTn2Ip;tN27= zC_QyJ3|&xz0|7GZ2=$-rfWSorp_4>Mu^9A0Sx0E=n&UPM@&1BiYu!(O+^hYQVBtYu-{EV=GC*0o(G*cE#a zva=IwYWyl0>zU9hF}@3~^4-M)&23VO=i3WFndfVNm9I58Zm%ChE+HLVgTygJ096GP;_oL5vKv*pEQ1 zQwcdHYw_J#wve4C`v;-+oKSfIb>~>6>~Ymv4>;#tigc|9P$pdyS^0|xZ*sBvHHwua z)QpzzUcjH;!6;zK`9p9XHQbJd3Aph8 zSh^9_C|HdJ>v!S$iSl5jRvFOcr+h$~$kEpktM2G)nmBo4g(q-aU)AGcvBJJ?tU#M` zprYTb^dj#0HVS>;!Hya6|Hs~&z}Zz)`Qrhyc0vdt(Cm2xAstAXH7L;_VF@6661IVu ze(8RlewXfk&Fj}$Ko}f17@vbnqk|6PKDdFRbQ&wjx)b;MqEeSo!>d9 zmV2u1xwr0peILaC@9#&=>wD{*TXoK`;UQ?x%SS1L!yD)%l`z`hBBr3p~TKHU)rv(<1OLNo|wkA&>etr z;8T-|@hW5h#$qU%1~6>O-u6Z#d5!onNQri0Ct)J<$OQ=IDbBngC(nvj36(7{S8%*Q z&fA({MyCNOGou+G1l2BXJU>I@IW|x?ZWu(cJWOCv04mN8u)N*Co1*|?zYu5&pa5g0 zCaPpwxIqENe`^$g@x!Idg#w15rV0h@z+Z#{=vTK9#x^Jy@UK=v7uMMdJVC*rI9MqMY#`Yh5huHV|l^XwlgU0idK;5`u5Wx?_1SbBY;{4Fc+l@MAYXQXm>p)W={u?tj@g&p2P5d{W zTgQKl94=k1_4m18uFU+j&BZ2OCVfIncJtG3Pz1g!8U0dU=%8&NS7(DbUuP{5&j z79jBf0S4TPY!nPw;+OYEaDNI#xebi0#1SO0RnFi$QJvR1_Ez^qG>?Do_2ag+=~)d zT73u^xOl)ka`Aw93V2{4W9S*xCxxn8qYCdM|Cm6|Rgqy;{{W=Ss%8KSoaS+h+7~VA zp+FV6wGhDv!UP5#pf>%$%bSmiXXt>~zZqx>paWyOh0uX<+8P~T>~OnFE_5*KOoI;g z!C!<9=vUX!L0>e17Ywc(Y>YOhnmHy2ju4T7B3Gb5vpgQ3<>4qN!4kD%SVN@_LN&p* zdX7@MG|Gvl*csC>c!Pf07v0RBwdb0;B>=_|AY&Z~Od%T+X&iVI7AOZ>9A;S&wpiq1 ziv!_phuGpE2V3a2qQKb9!))x8hv*srtZ?KrM@u>(p3{&3{T?IG-{dn!fJaWy%JO$@6SMl;JGzAcnF;)|VU8KXsjAr#N6}e6P z(Fh46pi7qvA$=ces^(Ar9e)u*qF-G@ND3ewKhnU%xWWr4GMXXkGUiO?XikY}{X0~l zj@GJ-jXH#7{-9NCbT)%El;2oZ6s?!JSmqb-wv=eCT7eeCpv?Z*eSWDc5S$@#mPDF* z4~$BrAns~o4{VCD6D9>HtbC*1bs+oR=wSRO6)t++!n*$hutiHXsT0+Y5a&;*;)R0x zv0lAm=iFY(Cr%h=*ID-?17%x16w{SztN_TsPKH9AhxF9~HJ4b1zg`EV%wKmN(s|ps z%RUe_ghKQ^7Ox<8*+dYlv^x>~+JMBce4ilJIj*1Hy9gpS2eiP6Xh~>si zOFoszB#{;XEL(d7(c{3k6dit$IfG5#a)w!;|ju7&VcqkXYR ze=v5gkLhXzBmGLAE@2`)B4TXaK54~!#pzo}fB>202{g=o_8J=28VCB6L z+pnQ$=K$ar0yURmhKt|t>5hx<8~`L+h|b%rmK=tfL$UhKj#ra=dm@Nc-5nTk3^d-C zx>q3s1CEBGoxy-pkkW+#=80T^(GK+fBmVI$`PX}4g&5oj2v1?t8P zg9uIv6BrnPiVGMWhXKU?2%sqd1B{uP(BX!2E@X7m8U`5etYH8K370Mx4A==ZRWM)| z{vsGazq$+qjvH*i3A*9HTs%CsBc?V z6zZSihWZ!5+YUp$yFHTHiN?cX{889*?$qB8#`vW;_g)|02`AjIoP#c%XR_t~ZP+}Shqsa`n_JoShP0t?g`ee z=lvLRQ1-Hr74>5DC!mxcEvy3$W;A?6pysY2!~cE(NSXibJVrZ>L#JxO^D(F;l%wy2 zcn!H1CW2V4-3ibC6%ZMA2t7*wKTtF+JSX=m##R{p1_|BhY#zBbVxB^D7Irl5`-}|R z2qz}|Z=j_a#<2*#%#33OV{~d3w~AxYDt;HJ8n+4}_*Iy|#Aei5z~XppCidS4ngX%e z*r@UKZjANJ+r(z$RdsAeukO<2ip|di&8XOXHvXd6OuxDuoBIYws^jCe(H!AfzDZ8g zml2`oSzd`CeGLdjJ6&7K1|5pi*I|j&IpIQ!NsdHt8w^L-mpkl^s*{(V>dwX6M(FFRZ+xCUWnMCTu&41nHGnzcE|C*gdvyp=%sq z)n1!aN5^2n9TIrS1l-dAN12aTCL3@d)?js#E?|jS)42`6zdAbEpt6*Ih{qzV%3X;# zVizHT#^2`2jbRA8Y@2@c&7DZC@Pj!Z#%hKv`NdEm6*`2&!;1uR?z%FTHGhPgK*v-P%Qcpjd0!zMbi+@ zDee(l)$N1*7oZ0@SM^%qxGm~iaX*hfhupz}vAfMx+*n^SPe7OtD`ndhh4x|QoQcF& zh5X^K=+D4cmiXo4?@^ce8hywcnwk9JaF_YAK+aX2(PbV1(sH^?vW>j+tj5lx<(YC0 zS3=r3oYAji8JjL^`xHs`w}NQwI3_IFUkcPDn_IlfF+h2U&KvRA3*qvG$VB1F#cpXYSl$5zQ}JbR zYU=p{HFsSZvGV0W%3@{bQ&WEXxMM#RRfYnUx7zrkcHJ9q2r@NmiNrLvgYMwFzYRzh z`>D@-pagey!4(6|DlkSl;(xZ}BYvwl zI?pz{2$Xml)^>xfZS08KiF6bly-mA|VTny%?HHCYM|k-B1>e0DxhODkfLGi@6WgF< z=V;=3ftow43@=^>Qs%`wM-zz#f}PpLu63w3l&K6Sd}+I0jkg4u8aP2rV_WDBoOp3S zwAh<8oVWvurojojAO@G$Cw8H{1_{wjEG&r3BX>c}JOwPUA29N4=#4^E3rsS+P9W!^ z&oH9*u;=_-e?J)5>Ew;N zO;(v|Hu2(eKk@KLI%?12PF7qyj4hvZK{ds`H@UCs1>#W%%PWfRy>;&V#zs zIPR9uK{cTq<$&%>*!5hz72I_b(^&W23Fy}b#EQL02lT6;Xh#8k1PR@MZXUS--8_{8 z`h-x`0s(zYAm^gbFrb@(lo?Q&0sTC*oG4H=ZWTl@940UU9ku4iO5SW#Fbn9!eiP6X z2CjUK`8!zL3ei6Vpf3$X>?vMpeP z`LuNbEsA2{{)b-WSh)Ar1q^#3;{OtvD8n-I=DM^u3i~w_>^$iILZIf(E5m2+cedlR zI}iGP`_LJitkq|s%21$k-1kN8Iyl}C?%|1PYzN(m`^SNJe7$%TGI4(e6zwSPuSG&P z?wdz$+&53hfV4|-{}QyErv|FVt%3+n3lo^Qk6QCXDsMKr zPZsxy{c@lw5ciFZn%I$P-X`uF7p>zyMhTZLSKPlDYO3P?E%=M#KK<%)+&`gJ8=Gh} ztIa(*BLC6iw7um}M(kg}xFw?h%Tb-mNwab`TG60vTC3dXa0c=JrIr=N|Et{i|6+LC zVf;VDnYoW!j3&$wz-8E_UZN`zL;!g0Y0K_N!7Dnd70cSs4ais6N;bM5Ytb9M-Abeg z4!8o_@fO<-h655ua_U)hTkm2>-~(Ru7!oj>OcNgvu)wE~jWV+(et8cKdhhmlSfG=>@@$sf`&reKad*}`x_*p=< z*w^$tz>lG58XmCg_u}0g`)<&d63^_LM=l^RPjQuBxSOK~_@tUqIDc@SK+c7qVMoh= zl-bb?W&)DuQEWlunH{JbHw+?}6(%r{02Sv)Ti$NeF@pre{)eb+n6~uA?bB_VO$R(0 zGd1BP)4~lTFg{yD0t_53T`ov)0SH1tf(!8%K?3^KHArBN%B+r#Hg@H}1M=ZgM6IxZ zW_a9CZ9EUYkXH+kSh1Vg$(wU@#S*Y$JBU~NdtJr`K7tfO_&#-}yU?bY0n3UY#SJc` zxE9`a2r1l?B~?q&{283M8oT3GT>*d-&as=bm6Q{*xf#o=Sg4A)qIr&Oj|2z`iDtKD zC5h&Gc-x_9+@%z1XFxL9XKwc43<^KzTd)A)a+A{$=%C+jZ;2*Yj z)GO`-{vju-1MHiyDr-@#7XwK&#=n#6%8OjowS%bpJE*COy1&O?6m{uW*P^aE(ec>&P>zV(D~`bHLuCxT z_eD178>ZQj!_l&Hbk~FZG*H0pNQdCdaw6kW%Zl9pb~iHa4{tkk{|7jOZD@k${I_C% zIY56sILba2o&QDW;bF@-*lui(YJ)9(87A)N+`;^QuCi93(Mec`-e`>#L=l(24O?+S z+={Na{0+cAr^`PJtCHgKGn1vRL_*iqn@6szH&5j`*6W0-7I5)b3*_9#Ww`i3AT7tm zCz7SAsN~Ios&Us&1eb>ijB7`&`CgMZ+jH&2{^>wdz_lA2E#%rw_tdT(okIt%{gqHt z<=S6`zsR-IuP(dxmDQcqRyEItEBQ79MP7!BpKDkp-24NmMeKI4SydOZo{8YzyR@2( z-exeb`VPyATz%xa`upH*hpyhed_XtDbN7SThu*4d5Onvw=up8rJqxwzh2QG?6ZK6>JIXS5+-GYx-5MW--XN=~A4xFk$)#a!|&z zkQMd7!uOz*A3dx~4$hT+N1*1eDZ?ZG5J;Iv?tHG)X&m}lgSmI0noy4NG^sCP*LU$& zaOX`-W8HUW6t@_>psy6KLS~wDArwsu>5I)SstuEHCPg9x`e-C|gSvU-26gik+|V3i z<=N2jLUpYTg-3433go=C8Afz6kTN5h!9=NU7`LA~+D|1=Ic^(7aAcUk1a{P&A2WHw zfj1ws5&QW-Qy{P#OEm!^)5y(Csd22l4K4nj>;U?0L?@V{9R{pxaHKWP%? zNyp%DwQWPS(Q2L<&SS;#o6Dw*K)={$nF#o|pmvqd_6ytCMS=fTELhGMZ;xd~fq&8s z{4IFfVcM*(Ko0g&+^@ zzj;9$;Rvcc3k#J4RW@2y1XZ5nLX{2hwnM1W>p&IOX0&4lQ(D-s&egRD!jwG-Q?xn( zgwWjd&PILE!VTK4t)Dc;#-_&WgH^nAqQ7TDWoLDC3Z}A$D+2?UHO6ZL1CT8?gzsT5 ze|4(W7=x076-BJSF;r{8yf@NQti?0V&M&13aRe@lA&9YRm8oEl>^oU0q0y)|A`D=!EvUe#on)UH99G7WQmwVGP!-@?qW8 zXi5gx#Wq_E(>>4A0>gC6HKt4ZjsWQX0=X$b*PBA-sqm$w7jNFu9Df%?b8Uf|OEx3= zz8Xkb^z9tYr8X4ftC@@1gK9-t%TUhOLOxp|rm?Mb2g-doAY$~88p?eDil#w1n^8b! zv58__Vn*r<$iRhk=8@waBJ&jd!a~N-v#qZPRWAVT{z)LuX}0JGl)m*{|;yhKs;l+g&>{@zZ&8p2ynYgE{J#F z`3B-G#a{&R=ohqL)}7e476uN)E&4*~wK_}qE81wwtD^qxIIFZ8%Sr1M005p9uM{~jHv=`7{W7YcjbhHCVS%m2vz62YLF~q=_=c3wC2QrNDwd49_-ZErr z0uwQfZK*pj=FWhqv3F}2^Fk<^24n0g&{v}yzfyVeOYKcAaX*OeK`t(qF^^mki`tnKweBdoQB=c@i%Am>WSK+A6jQf6*505r)qaszuF8rW+B_2kAw1g{Dc7*vDG z^#KEy0onmWHN^gTKvMwK7*j5UYD^^2s0QPj+k0}Mn(shO)x_0z@fV>Q`qgDrvl^lp zOh|0Q^yD0HM!qeR@hAhwEOhuK0LUIiKY zI6|Y3)K9ohzYjSn>pMsw@%;V?P`Y!JalAmyg_+^@PX|)w_B%%zVk5cZzZ12H^7Z{5 zuPJx@L=daJJE&n(Ky=u_G-|jUil(84!%ZTNw!MwyEphusVhUtCvT*ej=e61#rU-ft;%)!+=^q$_!`*xIt(nx1SfI{R{;v%I${;2EqgeIG}z5w#k75 zvA+ap3IGRV%_i8m0Dwyz?M~mXY5chc4j5Kkx?I5FKB%bz4sXF<1RUsBmx06awXsH2 z&jA_aU5!Lt23VM*IVE7iM^S~!QR^}`Y!N{CxK^>z*$e=}LzWc*glQKbydU0n2oT(D zh^nP%K@1wa1iQ}%bp?XZfMzr39xJ`$LTRxzQf`h*)}aa>L42}%#@AQMD$Ip zd2jS}E5Raj8FyjZziQjg0K~DG0D>A_2tWLXS3iay4wvu)`-1EIe~OHhRW5blgHo;) z44LT9p>XHu;l~0scSRY_|Mx)3oPX!&L24s+{x3rfqHulR$1BR6KM}+#?+$o4;)0~y zy$Tuda3~Z_0}nO{X0p{xz=ac$(1i=;k!vyLDZmBcTF=vjsulnUCky1fr5QG|9!Qyu z%m5%HuJwEcTE&_`)wopi0K2g7W38<-p1UKO?f&}!d%aCC8P;GLsS)af}h8(~^o=adn%76z89exRra0exchbtKR5x22kOJmK8yTzjC3%bKz}=P{Ex`;H^gcVu0ap>|D>&)d&IxnipW) z)V7^$bWn)KN;-NY)~Ppoy_HZADDWz5)nD6IF({D8zHq`WYg!>d@J_Fm3=mW#K#=&3 z>*PO(?35iInpQt=X!v0u=^PxqU!dkrDZ}x921uFX?;ISYw-kN5S-H3eHH+f*eIc(d z4+caKn?iRW!uJF6!%nB?7aoP89YKWuK|&WIm`ASln5QyC_?=MI0ubTX0y!6bhNaBC z(6N*4W0#WJA?-A`G|3g(W)3QxEH(BCAtzpV6Yk& z88ojtX2j${2E~Z1q@z)+6`X@^B~%0&ycXNF!?ue-gO!=H1XfUmfWdCBjtm$aEdc}X zE3RXI9x_v~;1CBESSk+`yZ{I~2L;a+sJR=;aP@ZqX(^x}t)1x04J3FyY7_J46KTU5B>4=%E-Ocr*5LoezP|^%{ISCxW5l;eR5put{mNT0r2W9r*gcf|{xk;Jx^Zd_Dc@vaeq` z+JH2qJf2=Yy-AUm;pgWXRtYcvx2Q$zcyM}?E@Yh(`S`!nYBqYC!G!R;Ei3Zz?{aOi|`>{0-$F1p#=YJIV=k)yF!K!rR`G1O(uID$8T+eTwrg;8e3zaS4`5za^xd+Vf z{QEttd!GNDsOO&t>c%}k5&SqzU_3u6&UdQ3-Ja(s_TK`U0-oQPsqrAL2lqdw=l)Dj z)t(=Hg-e%f?(Ymxjq?0Y#b4z4=~tIM{~5UXd7H+B+lHo^v|~C48!A`fDByhv9l z7(`Bqg9z-E!Vj2XLdBYdoT7YMOiA0La?x51M0KnoOaxlV6$vfx!8Q)rHnKUyHU1pp z78(Nei=rzulQ`wol+7eQMb9LLzvYID+mWRLHgG*H4%Os(db5gu24sHBvtcB-SL!x_ znmf3RDAEQ}Hh$=QsWH2?7%R-&;(JlkD0<(w@+$M-LIkmCbZ2hyZ2=i#m(+8M_d(G# z)L}D{qGGUPaGs5V@k8f|S8y>SlcajFPCGP#xkL5>Q1Apu2tL9E)b2WV|TBuH`?(v<^A z4z{cal04)>k|prALr8Lh14*(agMN_BV159*?NVK_AT)Uv0u0SR1)0Fsqsn+~*XW+g zAVkj=%wwn-&&iZ+Rb{fYnu|`w7QrN^m3R>-^C6VUnph@X86}?w{C&j0y*P_k8?Y)V zqvXtZwFL>?cx4{B@ya}vjZM%(u{aD45VF(R}Z0*uMSj=$15V(6eck7 z3bp2k0^V#?Fq<4D_GbZ2fp}$Xv{1YD} zdKmweBb6L<9Y2y*M-5i0JMoIV3(WI=o0ARJf*yF8{} zF>Nj}YQxE@uw(=O9h_=5;T`z5vHIjB9=qD2y`*@98UA%+ZO`O7*eOz-gcRTE_)w)f zF)^yoKHF9w>bYp;7_9uXDw9*qT4e;5fN*%Xy)o6Qz^$k)&2Q3Pg!F`e*ZNS3eh+}~ zvbj+KY+n8eqF-2<|?Zjy6O2nmM$_ysyCf3cYV1qH)Wb z>O_5wC7ztFjkq5k`CAqJsVN`oiC(sOpINs~M-QV_T?F5lj9#Ih;0M(c*r@v+V>lp1 zaKL>d?>7(H2V7IzKGJC1SlK)^fhsqLz$KnrO+;T&a{V&?lL|$6A3&kK4}|t5OF`BD zBxr&S%x^T%Z30u1hHK49uu7^Eo!mn48w_%Fr3MP4A860D-L=6fGSpqFA(I&48&f+* zs3(~1pt_XKq(0>ZPwm^%jgQ8o@hTAm^1@*PhL0^jw+RwiSFZDdF z=qM;lXW>LgO_6fnb0&t(VnYn zVSJ|f)0z`?r1PyNLa5&jUr$p)++fMue|Fxw8?M;X8i7!LMY9U$j}F#uIH%E?yy3k1 zuxJohLNhe8^S^i;PomU8iSA>?_4k!EdT&& zm|GTLj4&Pxw+^lYkbSiW{6u96?n}Zf0GMeTff0l`57|im3HVa1ueQ?HpBL3vbSF}r zaWS48Daq^F1<-e3k_cr5|7-1PRPanUxUOOkNeN_7F%s>s;B3-xy*b&!ffWala2)bv zPqQ{yqm;+(dk9&M*0(pS%{_oo2S>n|E9=H;t&w#D{gn3IuMK%}00&(?<{iIz!In@T z#&5tlP5#EN`sip6PKnY{)Ns@89+R5)^_7Czuua@liu&DHpi#$ zjJ}JZWG4_skC>nm-37N1-=QG$Vz-?%*ahTldf8kpTf)wB$gpEUwDp5*`5$HEFZKjM z3!j6^YAqZh(Ij;7upmu4YzgY(GXix^U3>*dOVq_OskNCJxv^|VLW}k(uEchLcD?M+ zX85mU-;VK>nOxx$CJ@rO@k$}0{bF?c>RuxiPV3`48>2hH8=Dyih_l*RoBM9Zs^f4T zC3s=$e2t60tzXBJ{^4e0Y}-_GbO3{_Hv9N39Ti)Jmo$RFe%lyg(-IrYsTAv;WpRZ5 z{Zs6dY%t3F>*0xpS}_Qn`*+Alx!4|4F43X?Aau$69r`x{bAM4-_liKdH2G)`8ajJ7|N1T}rcE|u)`YbfIG>?&5b*lNukIZaKbQN;Z zbC$ZPaqS3*T_czr`U*I(W@x%S5B`4*p7HD>v6081j++JAoaR~uQWpC6!*94K?2Z_P zX{@!t>d3do#adwG2liPPH!-^Mt^44x)|X~(qeITI(M1O>VN+Q@AiL6Y50&~Dt_7H} zQIGyp3%#d@#_qWC4iU4_w`yHa1^%NR?t(#PMHlQpceD;e%gt*1(YFeRNqR7%NRZ5g z*7fFVHgfi@gz&irM{g@v8@lzHeieO^K1+8GYA*da5bj%fVGY*5D%UicqeDQ7BV9Z~ zZT-rPjmAnfkq7W8weXfSqyX@wDmaIQa8cwAyGX z{E8vg634vQti{vN^S}{xY{F*{#;!0%MTd;KtyRpL#bzj^BPBbp{@5HG;*QeJRUB&j z5|BiSU$VET@CpfW^e>Txa!LzX(YP`s@>dHYw;(2*WA{pdJg0AZ6Oc0BlrzW98za(! ziqkxtFk?f*!?iG#&+2EbKTi;IZij_znZr8yFPX#o@BV)9KzM%D_S(92mED!~>nnSD z$Ss^ZQX9MxWpq zE?>g}EY`b|u7wWR__AeXMsdd^;AnIo&Sbm={?Cu5m9ezrIycf4py8#OVaQ02%P`W|QyD|eS=x#zIt8oI8=YjESI}6W0>rCrQ*s%r zX?bj{Aj%Gmbt8OM<$%$zy~0@M=@21U>z|;M^ti^9vU(tMy&+Qxg?#F@mX$HrRh^sb z@u1_YG{ca&9+?#ujg=lP6{2}aik>m9h+6pB-l%DtQ_wv7fVg3+p36K-woFEzuEaUL$& z9bh(ty&%>h0`GW42_(b9ppg!w!}LFN3;2iL!yeyAQWD3$c>bwRXoDbdr;4*tJRzn{&v@R;OKn2$UFqS{b!#2OK=M7qyzz z@ySt0eg*AJ<28?fWP783kt&~VDLAa z-M&LOs_&3Iy3P*1(DJQRTaYZZeX3Q1oU^4S_esC(uMZ{n6D4dvn0B@=vH_u|e7rTqE11lG(^rn{K$2z0eLimQ{2T@`nvIwv7e-^JzeQLR`nL?8eyu z{JF%1wN0~o^en83UF8I-XpB47%ndnLA}xmY|1^#`GLPI`2=f%eps<1TI-#}&CbzB@ z$Q@Ubel_DDkd`yK#W#=|Yg`MO-W;f$@@rQ9NOF0Y#B9nz<@u4CHywM3+LXiV^mL%Y zo*uH0P3RY6V>OXC-D%_J^p+RX3uDs)7vNInI=kYPP**jB@GAU88*}KF1TM%=mUH>9 zx<}2PPA9qUWxngitJlhK-m?{>g!_H~^`?-tD&jiucWJd6J-Jb_5RQI_Wo7Khk^C-4|8>+_@i19$f#0Tf6z{GC| zG~BnOA+)brIU3t}hW}~KMj^CC8lhE(hH67GK07T1pFLfR91Nr@@pIM{NqO-~quJ`y z7k-b;wf;L1KkYJ*Hv28oO>#@%b6y-ZkK8zFo-$>K1HiL0noKU{GUp#I&siXZrmw)`w}M@k)6 zjn6Rt+KrC>=X6{(t}!+_@XRh{uDE&?2t&oytMM1bRr=NCxOz;habt~L79$1LgA;)j zY08MKbLi{B$Y>0NphK%J<2uj=zAtBRbfaZu{NwrDV4`7o-(hUs-^NxF7}}aUK6)lt z>4^S*Fu0CmaCNi$VP^np&kMGdi!k`A{lo(Umq8}_z(5Z~<8dC6D}&W>TvdR)bI7NF zV-zrz{>B=ltluS?g?fLM^n_bs?Vf;huB@5I-+Ap{|7A2XaVJhu^njRno)n zA(zwTRMpYzO@0Vo%?2Y@gwb}gFZu{_fk&9;w!o6ay5$d{{U4+H#iQP~9VOd~-yGYC z9@hME{0l{5#$+^KAa)*Hhpe-GC-zLY!^s_=6Uey&Gvf8vfV7-=&98JbehpJMw5Sej z@3S>-b@Y%LS*n-0O%M5fIM7)1d83LunuZ@6xm=P#96#_DpeispHeI1m5H~J3He3h+ zt{8F!@%^tfL3}a(q99Jcx*WuxvSX?~It0f*#0M%#ar{s}jvKNvLizldSz@4k97sb) z^SGFGnbhZ2Vv%wJ`mvUkG5m{p2#Ah`_Za zXz$YJH$eOzZZz%4IY&t=(dcaaK5XT*k|;QYz7U9?9=D+@L1h#0=X#MsvkoekV^xX- z6z`PuQ~J}j%SeHK%lWKsGw>1zS`sNjSTSvmjG3Ppklg0p`c=X zKy0|+hFme^3MvmmUDe3&-S~@w3jOMGP&pn~=f-QJ!LVZQ7dNAwn6Qk%(!<#$Ld)k- zlkgNe9WQ8IAqAJe*XlO<^Lk-a;7oweT2>~wT*;kS^a*(1VQ^V0$S)aQE&=oXl&(ZD zyc~<+MawS~U~-kUa*e)^b?A-0XXQ~a#9Ri%-;LYRl@Rkd@aNje2r)m$s?0dV%-y7{ zG3U5tJ`{%`r(La!$1N!#W~t^chnQu=&NJ@(AR~8tvI{nUnKM|o@99^Q zjy8bt1E(U*oSqu?pc}pM3H*9IBl5(47PRp~ zYYd&wbpi`+KvJ|bbDdNaq`MExbR5Cy7QY^@H}RYo$L(8y_<6BObtRtPZ(4ZwKC@ut z1^>AfrU*{}^atywUfs-k;M=fH>4E(SJG*EmB&*v8`>z6PPYxg-LRR?)kRPSmvgm$b z;uFFs^7Hy5pq%-pDzRNEI7^J(uu@<>@v{Os7hXo3|0XxM)_}!Ue4?qi5pRd!zMM1_j58*8}moxCLE_ zEms16u91w8av4@7J*4DZc^r^hDiHwxt3O=iT9 zJwRGc43XBjwt}f>QOV&$y>$I1uQ`SzmZ*aKwgno?!Uvj$@0C67UiiQdTntnN!iVV! zg~EsN0I}hM19HWXD}1~Q>Z-bgkmjRSsVZJN&L20etQ(+)3!{i1 zBB`=KDK+^=@S58P20J@~2;L|5Ujj9Eav9G5S3t^~f4=*~q{AyztI%1qu|ri0jna5# zqdhRqsK2wtYOZz5v>!p-2X3+AJ~E3ot`0eXgMh4aH5?#N=TyT{Kw63#vRj*_p2W<9 zZ|!bu;tfN#EJUN$zk~J;NF5wcX1@2S{U_@cb(?II$k&d`r009bWs>>c^v?D48w6E_ z^1as!G+YX4`QB#&of@>5P*C%2jI+te_lAa~*~|ZO7=Na|5c_+;lL0 zd}4m*3OJ&uULDol^a9MBNlx{&kZXQ$zLV<9{PU4!sz>^o;6QHI-vh*OkU--3jX$H$ zd2k{BLeFgiIX8(6|J?>s<~U|>`jFU6&tVLMnQ76=U|zk)qff7w76J9&u&mmQ2(;UoGARI0;~#36>UCvEIUZeIKd^rNro)(6KD4Mg$AlAg%n!@ABt z96R*(Ot^rUeqoKI@E~E=abq5D7_w!91Z4ZO z*rV)?gM_ODRfPr#R|+&-3TcCcOM%WEB#dWu){X`VV_M|h8YJuvv>n5W9wba*bJGV2 zeSty3xhfMfIZU_%`Q{%c{5jQ_4HJ%*hY99;!a!kKe-Q=>2fG6WO%z8Knqqh*ebNIV z`G*QG7sws^N$DGl`;M+3}F3s@d3sF%4t2J(Ahp!sNGda!^d=3{U! zDJ<#^7Vra2peis}Fdoc+%gn}@!GZx&&;kAnJs=@EmonF2;a{MxYOwHi{6&KW`qkyZ z!qI?3lk3J4O+2KkwFl1ZImjO%5ODSHiYtC-kJFxBZ@1C2u2#k^H@eUP7_k7N z|3z8g^>DEXNB;@W!h;g;DmHeCk)vspyB?0HZ_%}A|D{zB9F9mw&%tpqYP*W9BpO3#Nq|&c0ht$3aH3<$^I3%Xt z)D@`e1|tZry?$`jq-9LIona<~Om*r*tJRSPt1BniDzZiZ79#g8xk(r1%M_gC8uSdw|?I z9UVhP8yCQ?MD-(qpre}3)0fAn`Z^MJUO}zx-)`M|t|@36a|MEq z>b}@@YTDMFHY~73=qJ8f5+Z?u&?Yxi6M$CU#-hEvUryX22tzx-NiLpru(1J%F6dac!n zDKSu0Rf(FcCZ=|~637VcF-N%7X3vOo$9l~amN2BRJTBX{enQA zv%h{5NXzN3&T+=tm}he-?&IHKZRI;2O4I6V{B|X(ja6xvLHJ z!`|pU0b!zn>{JHwE-D&jTK7}+>4h+PV+}md33-yq=fLEPu1%svZVI^!e?Bo04PU;elA;yyFz{%UBhCXV@^Qe1v|%E^ysM4CtlxaJB%p?CqTk3Z#)PRFWs~ULBihb z)<}QlG632=I=iM;8Le+`R-1b&Lk)m(c#I_6pk3Vo#2{3|53cj*p?%%>esHt_yz8xg z?*L|-Nb3b4J6rY;I12Sut?-Z zzn0LX0=;%ZAkW!rZv)bDdTmNWy?(q1dWn^Nq95BgVn5bz<1Fqb_Ge>yPmC!W`1fRd z+IEBJ)o5REGZOxjx>uE30BQj^X_+y9W94WB zw9ubC)64cmJJ$Fmk#3ZxR#H-P>0=4xQCyowlJY_`^-qhmqvAf03IpH4jY{#vwqvFCm&w9R*)A++oRfGi^ejQ>Nw7L;BA9dwc4x_bMUk&#w&*9&Qmae7g|H>XomS^NS-;v{0c#Q z1!BQn0y($*j973lkd`w9@MoA!pFD^OkY;z!D@B3U{@Ug6W3@CH0-4X=M`d*%{R|W>&_}K6$;xAZlxO+n5&TqU=lGsb z?*g6UI|6ym&hbMa?QZ8d7>wwfC;?iZ$XqrcgZr02W0=9A4htDvrn#FtbIf8&u0CQC zlFeeFH7O^VljTm$Rar<<=G5{(F_}{p{6(2l^sCF6Q>%uXjj?TzrJ$_H4AVZSRME7l=(V_RtGZiOvecO%<9ra+U0~Pg%WExp`^9@fvXqe+Y;H`XG|!J; zDzU^5T=#i_ZPSeNrDE|!8rLH0(H(9D^+R>Eo;mow7n*@T6YU<2QyV7-DfrRbfuJOD?s7j`k?-U3+ zs(ZOoVfW@E;yHeC{r45e%% z+o{uXk^WQH&cLI1BSAY482&kuXM*8hKndSn7XZUQ709_;$rvgAFOU`o!`}m{U@p>L zh7rilP?I!VT_##dYzgvv!1cZ@#Jx5xY3ac05e(4h{~bQB&Aj_bOUJ@@eWT)5!DeqN zSjDv(wv?8%^b~+Ql|Gmww~G?c74xJm1;EW&frjzr1J_cq$vSaq9WfD?5A>^e#2Z=? z*o5L!9bDKqv_+_HfzEw}K+e^e(Yc=uq~&yOXGuUCG$t-tDJIr^?Hh5{-@fg|*?!3^ z;;xulM1P-;XhOZQH+pJ7oM<9Cb?I~}nw`4z|3Y@gO9LXy)!*90MC@<+Rovf-XJ@<# zxa%I6lC)s$iDu3IMrcxjKKTZLJZGPL7m$|ICsP^<226)3>R#Fdy~N5s(M#&NKEu%(emE%H8E8krpzz0?ow4MGY}}a3-7g|0qPw@Ra%5-dvTdlDL9qkC)~#5j?2P!OpPgafh!H@)jUzzW zX%t#lWwVVv_f=>Rz0qd;rxVYONnR+0z1VZtp?bdi40-OFK;xKlis!CcIU3Ks*#9(V z(~;+1Y^^!$xfcZ5k?`D^EKPRCDLLYSUIE6TbIt|1qo`I}wtX~5+w?I0!-1mh1nyIV^++wcQh=^}%{;`p(!V zM_ZT7nnlH1)#i>`YdZQk@Xic&fU|p}_friZ(uoe#zCFkcbh!v^v)kfp&7J$LO!KA1 zt+@3eFcVMe@w~ z;$=|6ce@2}%o2f|d+m%VrK5o~?lbM2$HBR?a1k9vW7A8#0V`$}83FFynMJ0SW?3NI zH)jU~&-x~seaU^($s*DQ<~(!z=(BQER`<~hplE?UYE@5_un{EJVoDW1mDxE4g?bn0 z9NPr)oSkC~NW0rPFtg}-lt9kRqH6<1ZMZ{n{g&pGcaJ?NRf)4^DO`U*o1D>NdPe8|kX z`G!EieWI&%ogMU5B672XmiYFlo8#m*Eo6nvh{1X0s^k|!#_t2dEo?TE{ zia*a@!JcPYGMoNzn{c4?iK5vn>a*!yIYUW#iFEdgWVtbm=v^S+nPji*?|3n~yGEz3 z>`mT-7WCf@P1Q3)*?B8-pEKBKHlCx*9R`aq-h+YQ@YMKVtKNV+(C{Q3=5!B%IR7*- z3O@83Ic(K)r}3ubIU`4sw_a}lUZK7B0{qBSt3F<1yl|iWxq^Z54vZN5Xyx6Z^x1*Z zBkM=bLW)Bzg{|u|@tz52U*fPATVkzpoUy&6=t zA-ta*4hR^+69QnG1MF^i3T|!JRW@lc=2R!YB{OFfxArF0+D50X#YMHawR`1_VK0ET z`H?m>HTztFhWFL9Ezh@FIT~}A?|+)JDK<5$4GedgqsXBPe8YI3_Uo=0fomKIJK^48 zJZJ(pXHAW>b2-4?v?;Bw)cb4wJ?jt-uN$aO5;lcSQy+u_#fAo8H*#yLIX+n#7}!`H zovaNEz*(ZmAO5dLy^DFp2UiR>##=DQ2jAU;*4>0@O4#T;Rz>fsyJ6gC|2Qg)8`)0p zM6|K*?~opp{5ML;@!0&(G=)(}bI-GR5G_%G=%v1b`}_r{_t2Nz5rrMD<0Y18DDK`7 z9JPJ|&ZmQVzEhy)R-Q4H^$?J<(fVxqPFt8B-c@amPv05QL0G2(k)Qdv#BZZL=|=Y& zTtm_Vg~K1Mg)=>|hqkOE)Aj<}9}JM3L;WLWLL;@W1mwX)XKQp$2|dhu^>!KDtPFxE z!MHjU@f*TzANe|zGcm))P24`x{d~+{hpT6H(>@MGp>}Fmn39jlFi4#Zm@0kS8;w!Q zxCGw;PP2)Do=ybP`|8zUTaBIg1|FHfPmg=xGT!RWYJIf2eYDnJIj=Tcof>TcxM@^y z*rFGG+(jN|Xr{Zp^UT@?S?JoY#mhi-1mw=&fA;eq56T8d8nL|?XJ+&WV>n?qD8!CSGy%V z)4>Wdks4;-i0fMR?PcX!SuFc@*_?H2`H;$WvGWH8(8vdrjev1UL-kA1Sn?(km?(wP z;zYnZF+lRmgj^r2k_0RZ`-@)bLx+-ca`)#{w4_z)R*ov_HH4c`MggB!{NT*h7jD^d z#reAjYZElihSM|8r9luLW=4pW`#?Q9x2^;H6`&Z`+wJc#G_lxw>UzAF=MaMSYj*{T z&SW`z8hB?qS6a?~G1UMJRP6Tl?GagGw9Rj47K09n{CLL*8~q&t38B&J{OuP|(d_)~ zQ{X_njg2WdM8Y+VIy~Xgar++l6J}{HIxmlr%r{((eZ&u}Y$zB$oTD|`G(H z4+=|A7B8BgPG&lM0g8uBo~quqhmNgF^?G~(quGBNj$f*B%|7A zARA#}o3&B>At0Wa7}b7Ijj&PuCex_w+cRhatGJY{WZIo_0JFnd6f?VD2IQJByG+Mt z($fAc2Ui{NF`AYf@NFuOwnF>2l`&c0xjC#)hy1glXei{fVa~EGFkGRa9nS#ixt#;s z@=IH_l=qrA#X-NioW*g> zP;C_M2FOg~IK)rmP&8%aah!aOK6_JF1M&dizKzMoINh98R#wNO+62SPOzzUL&g%HK zC2!xk7i4u9=_e0^nQLAthhzS9{mqYUYi69-5ep{z5pqo?cHp&WnF>|t(9NAFn&mO4 znuLLwSswcc1l(u3R-m&yeh)2#=~L%+FPKBO#;RN5BzVkK@6F)I{OKy>D4{l)X&r|V zLGD9IPL%j(9ZI73^Ry1U#?CZCx(n${=@UiMI@D*=-E?lPbR+j>lhnejOW7_frlbLh zf0mLIf3BoZ?#;OLiK0qUpY2FVd5LuHjpSTn7SY$CJI*BcX0aQ2c=F9&<>V`p9XrhlHPq->lvkoI6R23%NJcJY~;U=!v6R?Q*W%zDZRtF9R z^lCMn@1YE;2!OX3Z%W^3~P02 z2ojD*8$0|vMNa8IU0iQ8a6ykB&7W4OH0*sWASXUCbr+P4*Yr_>dUosw!~`ZhldFvO zRgO)}x~yGRh%dr|vvH&a$+_D>a|)~q=gG{6x4sD!7#YtN$hkAh7#S}G(&8gySG;OH z(%HnU`_g>qh*qr9Cg%91pF?8bh>I5bZJhrDNo+NZzbhSCs_`!~XJoB5Iu(`P8=Z{* z6qt^(t_ZW?u%&8JAv+t+b}crYbC7q>LtN%ZHq$G;3}m!Q^tO4_DK`qH7s`e^N1$=c zHD#mnSyqn5SI_f14QG>)4F`fC81!453n9%|j@Dvh1SV&*_D25^a7gHO^t#o*QPJ#m ztLHpnDIcC%({6flGCs_-B&%e+uurD2GoaR7{<%p^ME|T`#XdKf1@h-;Fv{slSs-np z!UeqU9RfMGzYMSYN+2!A>$+JW+U?@?6IPIkED-xf^sM@A>{+iVHygwxWSG^m14~Z| zu@0(q&LGxzp-C}c-a)#_2Lg73ZbPR+;@9Ndd%qqbZ)Ic30&N?4Vv2PP88Ia;lO9vz zGRc@i@2twmk$giCP$;H+RiJS?V@gcRAs#}G$)EhMd?MTFw zOqOPq@sS*nO0PEH5F_Vm!xvOg3tmlPPP;JZUY~{GD!q3w34yr+vEh0Yvlyg6{^lbav+2z0{ zkYh2M7^E8JN*~H&6K8L1G`H7>hG07jxQy!>Q?P-B?p>v9p@~{^tUfsjJ60&+n&waN zE><>sLIcmf_&gENIY3r7Lvexqh#97`CstZyEpN)vJZ&wn4-}n=wfqh64qMB;RD(2Y zv2Rc7M66aU?T*O7w($GKZ0pqli5B!Xe-x={-^$TuZE#-?6rG8|eH(a(4el#cgEWJ) zZ#zvai*2q`4q$dzi(+Q?PXW0m%q}x>8qj!L4z3zBA|fjU8nY{)Q&h|>yqUt!CVH3J zJ!Te=EI<@eR4DRgq^RI~m7=n02!5Tr@2pu7{pxax%JLe_n`b7dEb|jokfMzAluc%x zg{t7^GK^QpYU}&^`&Z*mA~;J;{T>{tj*r(yOHE)o2L#TIKRr&ni{v_ioisDz;cFZ_+B^F6^IdV;=uAEnfx)qFZlSYcBw+uu5{Ly!2 zddqf!fDam78`0@4&n6t@b?gT&)wF&E?M_@@Q^K=2D75lfVmZPLrWvS&bBFLYYC-Kixi{j7JqEhknM2VP}Cw-!* zV$^3#P)t|y@}w4KDe1CeN*a*(XDLbX=Sm9Z6?swDN_IOOJ8d3zCZrJTH{LqidhcO@qeOoHS68Rg^&=Ecz<41;-2UZAv)lV|Fho|9)v z=CwOx>oM`w9dkV4F>3u5HQ0&Kz7G$ft=exMs~+iAnhQ# z!x68PQwIg0N8s6iKQLkybL#BNL{6P~BW8YBrpI6|owl^^-F}Z`Yqo>8m$SmMS*q%C zCm#pV)YK}fX{ML3sZ~@od*QCC1}CgnZQs+XO>U(#bv9Hc_N=47*NoP0tW_G@quO8# zk_jQzX%bH{g9Feot5xoMinG}J%os@9sQJ^%j%Io;4A@z&9(W!x5qqG0m7@phvT+Yw zY|q(2aY=ctRrs=Q-yD*mmlQTAG_OD}+$NCc?1f`MT23$24a3NUN9{ZW1_%8Rb6c%& zrG6N{^!uTGBlbi4cHa%`{LnW3r9a90QoL~3K5|_PmK)a%Nam~$z_B?x(aU4SEt3d5 zJx&XXKs`d%@6dF6KK%b0{CMI}w~@!7&My^+b87LgT`kV0k4UT5bfViG%5BOG^7M!2 z9-^ofvW32LN@|x+I6>3tZC7reluGP5MMKKIo@;%B@)EJb4e}z`@o3)#!>fkEzfJpIpNPicAO$Y09SGn!%gmx(QZ!2c< zn4b#>A(zMe6fqG!rhS#eW9qW8$2`P%Oh=HC=X?}xPobCnox)zv`!}Jv1w80?1@fGI z?=c`P$Afwe^m-!Z$629Eo-}^xds6#G^rZT2oXdL7%x&3BrJcuES^rS9W5lYC_TK^K z&>Jnpe^`ELCIsRGCCux@_9}Oly;s0?z$Z4Z^B8Db0+C0UgC9LOf7YxTH%l}T3>`-a zG`w8e$+?GFIhuIA(El`Nld)Go%Ij1J01v2CCKd*?9}jfHf}VRc_m(YOTzs;2Y+V^p zUM^34DKQZ}wSAStQ|q#^rw)xSBebB@(dDSnv;tmvL?Gw(m@&HC38dwCWp~GxvgsvY z(^jmKFOFaOzSzDIeX)KU`{HM!17&*)iyEqN#53k&(M9x1RC#YSjsJAwgK^&lwlj|p zj`w24A`$mnkquhhF7L_Gb}G`_<`H;$8&uDCgrVH}zY%C0V@=7ee}k2y@xcf9pXO{b ze6X}%OW7-4ld4QB?1P^bXh%UG{Kvju>ze^__1VbB^B zC!Sl`)7Wl)JsdT(?ac`kor&%B0PnEv?L#$4vpxH^A#W569K}5Y^;nU%pYTsZ55aa9 z>mh$A+CwrOu>l}==HRLU2uAn3dw+6Z6|?sTislxCIiA)es#&lh?EN7}nz8o>->bbp zSEC)%-XHpP9_#|T6Jt;dHyYveP;a#R5~!ul^@@hzxj9w``Xi2G`|xhZ6X3^c_+LN# z?_~JjsavPp^B}JP{Kn+;*6F@z0tnm3m=pzXhYwu$+kjo9tv#!z+lk|86-^oYf9xTF zh9y+LFFJF-xJm5=rY5istp@4riS0Jzi5i|6r#oO__2(%6b40f%nE!d^ zCVkN#tOT2N&<&H5wblTg$<=}hUv1_1Q|HrEMyiuKeFma|KK7gzljGGf_c3(5S9v04 zSr9g7MSYoU)fx3iZ$M&Y!E>lk{2{X5H^F;<^i^P<>2(6R)A`|eyWye6;B+(>JN^Rt zYYc8WoQ@s<(&F<>F9)hPF;AsH=!StpF=ypT?nY!qs4|)xsRWI|cBgi@tY8dr2l4$b ziUX5NKL&My6rO#6cp86Fax+^D-Eq+{Px*@Pq%^prS;ettW4t=5EgE)4LiPjNI<~F{ z?b~E$YLka8|MsrS`uJq4R@JA7fYm=?-?Ng9zKHGajlQ6pZ=zVbr}kur;V+h*keC~u zXP8Zc7u^$QZ^3(PZ2hPsJ_42VJ0kB%=&tk}!?&>=RV-myzWPGa~KFfR?@9yM9en2DUuF;3~^=M&R;tkRBfzr0ZP- zmls>|_AO5axU@n@qD!0brhTIQ+jWc2wk?=3zKn$tZAGpgzT61UW`Zvhnn#bV0jByM z#o!BdgMt8a73K`IYP(x@mW3as1J|IBHpX}0NjnNqLS!vKVTBy+!TR(@yL7dTuShpE z?f9N-gCb$JtT5vM*FKK`4L}h1Z?)px1aI#O##4#vaB+NfbXRqcfh%xpH|`oA7>Ggo z(`Udf4)N_7u>t+O(9@3-s@rh&r>eIZtxDTQ?*bMfgrV2=@N4qgo?nm5m_qpT1z2;n zxhYmxcQDlbIa;VO)Z4IDYa?B`1co~La=LJ{I(oes+iiiKc&<7GWB|Yu0w}u<9X*8H z(9uIL%#oky+ zs0v^=(^ZT=&TNdqZYH*XsDucY7rQOG(O|dz@fTq?`qgFZcHAIj$iW?x+p4Wf7JNHA z0pBcL83=BvMR1I50L0zB&n%eUfd7D301sf0G27BY9rJjQ=M2!?3QOL;?MXp%Odv@> z*AuJHL?QmjA`X(oTHBNv!@5{1(do$5gLOy2vzfp;$s8E6Q=cR-vRt<*i0n=@Q-^G3 z5O&Ux{9vA?(yGIz*!pHPFsPhKzui5ZTe%b_-;H57@^?m^2Yb~ zLrvA(%m?rn#drGE<@jFNF;yQO$_(uX`=Omk%82Uwo2afi1_F9^9RIS`wNYNWGZklL zzG%tYd!CFqu0@ax;d5f)fWy&$*-%1G=22Vs83*oI4ACRV)eGF8hi5Yh+@8i+%vN8c z=<@fvIl-8{0%v1LJkE*6(lkt-qE@KU@301NN4Ks>*rZH+eo{?`g!fA;ym%=5|IOK# z1*6Kj8|^qjI^XQeQeY9n8G7~wzb4PV`1Qz)8Z`SdA8W2=Ut)E2XZGdf94*vHY7N$E zZKNv)jdfSB4o%FyT!5h?Iqz~d@y5n1t!n3sF%4-5c!=I zXf8TwJ0`J>!Gh`p>CO*3yJGO@JyI z=4oyFYKf*M>$#29X9LEKjoydt_JG>!;Mq)o+M%f}V3niqgFP4ynYeZ8p4+BRZ4dUb@EDE(oVA*JU1G1ePH`d0@N{}6?w}V^z{uwKXqx%Ef z(p79#Y4vDfXWXU&ep!YxeJiR`~!&$)bX^Ajlg=68SntV zfi>YXz?lJu0NhWJLZxp#tck(!f5)c665FJoq^)st#ss?#9C@*iK;sy5%GS8wTRBEr zKyYHG>(4oxVq4=3N6;6FJcL5@WemnG0W1)_B!dMR3E3xtI20&YjlT#K(626og5w~h z>V@)5IFML+iRsD!0?Sw=u+@h2`Ca%XC?)-)HKn2VLRO*KbVfmUmB{l@C(WNme&HZf8g zt2L{m=D{#rL8?mOuSxZ@HnzPs#D40>)zQ($E=V95!{HoUL#RsZtk-s_U#$_yV9<2C zs`ZxohM8pG8^EIdm%}(;`S`h2EbHfTJZddhS_t8`?~bYUwy$qn^1b5nCS?W56`|Sc zg${P~hjp6-u6}IWA&H?7xQay*{Rp{IZJggR0MNLS3v;-4ctTw)xkS3`{-zkMfjB@xRS3NJ1T9xn`EHx!d7w<2oi-#rtS-MdCnJ(rKcrs1U zf4PnLy7ZBv`cNM(K_3TrFi+CT0$av3j6HE1_fx5HSsHq*n1=pW;-94<#lM(__HPJ5 zy{LxNhfC1Ve1p3s)y&41Ml0$MS0TqsZOKx|3L?lIT~3$yXDLMSX9@`blyjsH6jg@$ zXbH+#V23`EHs;VoY=49#PnqvB>OZ>C+q4?+5$1dpuMfIURT82LC_*2ve zy|wyKf4Ta2snnb-eYA_|#z|6JvXpTm5#$c| z>m~kK%253CE8}A614WggK3ak@;7k=WQz@xqu6k`0V*YehG98bli(|%Gr83E{|M&A=Se}t>{8qB2TCU| zwY7Ckz0}s0_@lbiRP&9KUcr(ulMCMT;qYOo&X9Ug5rn&v5L zJzF&ICeVIwGzb4Fbc@Jrq)_`3#2R0T`)%}UNM&qlvIRSBp#FG@7Hq(Q9pZy<1{u8H z3CBf3q9(kWghM9j_R3~sYR3qi29EM31v)$~x`=?V0le=^f-r&)r?J#BYg- zGK+Wv<2uo@+>yZ2&q48ek~zm8zb@}K@#_`4PFw}|*io{g)+(m@i(1{jrBRuh7;RLC zP+_31(OLy(FX&VjP#OLn7{D`I;Fe#w{;)C$#|p!qLC`%cY?$QS9!+U-el{YNzRJ|3 z^BmYdD)U>hyg~(`EvIKH2o7IS^)`x;X2jO#R|tNM6w;Sh5UerzX@qvMoiR4anS@I% zbIdZ@gfh|V!dND*0~z2Jp}hr?psoL`vVKoOwv1@6j(O zd97Agc8wrkQ<mJ_32&f+oqLkYljz z1-9m~iYpC7P1gn4?O9)6EH>WQqQhI9~ru3d;sXdmmY_RL46TA{z*gThh$ zbq*DZD?;sljnM7_9rjfMdCm^|W*{x6!|H~4J+?=Sj#PC-ES)1hd!5XvvZu*owx%#CJ>U?Be=cEf^bNNi$w5vd;`JO?;p!wzXd(~4GfNDJY; z4`B<)cAh|^KX*sgZ;gAm05Q2rf7)uB*1+nJ_73c|LP$BFB?+YKO({qIZ=Qd}8 zKeBbF{_(Vc63|!aE#YgSD4;Br`Ik6c2e?7(ikfWOlX}#beKF4IW(e5_gQZoKHEZA+ z?|58^xCs66d*geQ~!Vf$CTB zX2j6Vt~*eyD(ur0sIGqMLUjxDv6?`hvyV*zX*qq&x!F~Nbi66kN-=TCpnW4=4rSjS zo5xhFJlna7>w0mN8tT2h(Io*fqv`BaCm&u!MKk-vwTod3Gi5aQ;l5bv6ntkaWNO2t ziWzxR!R<9T=eURvialhEp`yx70E4 zYWP9j4T{_OL_8jNM-3h{8)Fqbz!V^VPqm^m$uHG&RrO)`GEMSqX->f>^&o&oG{AC~ z+7b=>zYHOsuHIjrm>9(^y>y@&?C*uzKneJ-KJb;Zq)y%EcKG0g{+k0@$<@_gPfWzF zu3yDn-GUX`&MbhH4*)X*R)i}>KO|JRKxcoSK%TR+e;P>3>FmzFV>2YjI}EKL6TRKO z5qrCR`~1D355(TSy?4|{OP2d9chHjS+p^aSm zom$M1S>Yo7W;?r_&?aVG%hy#~t>(G`ZCrlzk*w?#Y@V{R-W0O9awL$`fFjl0=1uHb zgLQCkVqksgB!N1owXFwI=DTOpccj}HcU7C?(|1PS#Y0qFXsd4NNo{Dz>W)MpkruyW zF}1VH2|Db+F1MiKO7LX+^v4w+IZvot7#03?z=NRr^P|G{i_FfEiZfKQPxatPosU9T zN)MZ;hmFI!j^5&j7|YB;LmmrhF1{ehmI6dc08zs?q=I*5ve(68@g^4CY2pVKe^W2n z6R`7Km~4ueh?q>jiZNMe`1KOBm(=0cT|#vWAhH(=y?SeO4=h(fu7FB! zfO2~6$aN=t+m-H|{E@W)aw&fwkZdlO@>yacx)l8?zf1Wp@Je?nj|$Z-;8MOVkmqzM z{|%(wb16qax3E%7xD@+FbSd`jgXmJ2Sq7a7EBoY_aEub#e}t9SI^(X)#a#0!w)$%$HRa71)-fo+W^fnfa+1@G#)9NUS+M09NWRqWV;^H=Ahsuft0&dobt zsBi(-wm~50?adf*Uk;?@xHfVA>L}<)qHuqUZos5Kt2ziYbGYzEc3_6bn`htTxd4AjgfB0q!N3Qa_QPUsxAZv`hJKP6D- z>{?$2Qr5M)KM{GfmNrd&?|QP#*1F>MlU4=6>Ovvirpuxb(et3m?xpA5{Zg>WzQDP) zKNn~mJ5D+8?#EgbaX#^}nHcb)T)V3y2<48T|3fRq;!TA@+^vnC#nYV`x*Z(Z1<1r;pZ(Wozj20I5(3#u}$~!Vy&m_^?=8;hz1#L^f_`vM;VFHa~i7B(&2U|Isx#&~< zPjfaIx3Yn-Qf9YLwFVgWv7ZU_sDeKBKWGKN&s>Q*RqwwVmh|mNlinr(qVb{TEDe=E zfahB1lz<*e_kpE+mI;k{j{3?XJg|+c%;M*KcDN{s9~Y|4~}L zi6Vc*EwG+Gx)UwDH+m8N(@7vZUE4&SKxQ+FG6Gp#=0~fZJAEr$&^{*-tl~1sKt}Iu z^C*zrEA*|YGjwXkRr#UXb38DEU*Q=nDK8yI|{^%?+WCOjixW)J_e-a#EgSQiJ;|j@P8JV ztQB}7a@aRw$(lV<$NXt+TFn3k6o?Ji$LU;)IxGD+oz)j^*>c7Cy9a9% zbgl**r?VLbGV0jX_#B;K$c?r;Iph39XaaarcPrNZ4nx!3y{E1a_T&(PK1gS0peWCV zY41C+N8A93=Zs88TbJnMnO3#Aqt=>^ZUNqz5eghkY*6}?Gd!wzyL2#c((cN z%wk{=$gh||+(-4x&RNpC%JUe+IU5_z?RCgo95-igRi|1bjb{C3eKJquMtEfw=1qIS zZtCN35_z*W*ve%q3+!i%v9KprTx2c(nWKT)TK+vybSBpFU%)$TEss(S(yYb4U5kV8 z;)1n;X?Mr~EDY;V%)-7CkZM7fb1t5@aelK2#|ePX!2@eyOWa_6xQ=sOjg~pj7H84) zau}4Pq%wR&xoP=K%znq3Sp39Fl1yy*o+LKo00~>DP3*`((V3XoF~B=)Vuw-<(oD?0 zJxGvjJPvA$ufaT!o|{KUYk6mTOtQU`&WrWGOf5u}vs%xg$<^s#J#!~cY%Zy$aKdJj zS5*BStY@yYu;G&GsD)=uKiY(hbEus9Tp)>dcS)5@?E3Z1A`FoZhN@%@cMAHeldi6g zPQ?xjJ@;sBdAkipGKz0!# zh>(&uGjB5QlgYecmV~G%?jo4MTkT)1rHgezt*u%W?RU<( z=Wfq)o_p^z^9+pN@AKD^cb>bS{hoX7x$Ti%&Ea;Msnlcp)WXUAWKcxX>7Io3uylG; zr0R5}(_5kMxOBRUW>6-bOzD0;7#$YRmjHoct8$r?%Q_q7DS@YE`pb6+@5QRNw<+a@r2fQ>rH4XI322+~J;4sywK2HJ33#V= z=5B6J1OA6icR~|eyVYp#fM|rBkcLv5glKf5P#hm>+0p3Gi~7*VVoo*^-EudkAlla6 zg}YR^SF7&fCaL`WbF0<7RrqdjMhy0&1eh~}{UB0xIt=y`=sV6}|3Wh;V=zLW2X8@3T-eX9$hSDC>SqPYk zi=yvGXuY6EgI#K`T{~en!CpIbiPh}2n}2C*d}4IOxb4i}22Ugro(_~3Ga=Y-_f#a( zh~LgRcY8Wy7N8Wpuw}+HiYOm3c*{EDC=)M=SWG*xx&b?)*640^0^7~ObO+89)!!*|jHjC%u4#@>r~rRw zDV3U~tQd1CJ6OR#?QlerFRE$91p_;exgZyl5Aq_IN{l<0g^@dIX5mGOg(*X|R`A|8 zpOxR4Fj;2hw;_nrS$V}X$*JBPzUm5<(VFwl!b@A=Htz!tSZHckWV#=LGCquBI!9jC z#oDcq1ozX}i#qkpr-=2T@t^>W3P+!x6q>t^l0dl3SDf*x|uJkNEYN|^wp zpzS=^<3#_#$kI_8GSMR)RU-P}=-H*}U`oFOp_BB68+`!o4g(>j31!?~p2YdSeJ@8a>vCeCy~frV!2a9uW0m}y`3Jm*_?rPy;{8%8H?&raLN zt~FcycmRmv$9YXs_f`OqG(Q|5>9T#fj?Hd^X=JyITQ{t``jR~W zhmpo5qfL1BbD(wgnVs>mt2eaAz#~sS)vM1Q+_~rK)(B+pA7~A((ZGUl{PXJFN`hV8 z9NRN8a83WtJ?r2GI;U*}H-~P))%v-b2$M;L`$-pii*xu;pvispCDm%PL`6(Kg!;0( z5iIw>f4qD4KD6$DVh>u`6R=mJ&8-f;x{qrQ5*o8%@#|}(uOQ#CnLq0@q5r&U%tDU_ zKTT-hN>qPA+ZFoPRcgd<>sp$zP_Qy2I|%xm&fB^N$;5y}y9d#*c2-gC~GSdK>m)ECmH`PMd807fcF@hZA z{bdfgm4#aOi)ufQ00I>x?>`^LwXbFET=JrtBdm^V4>tPRBje^i3tP&K^EP1ao#9Sr zI|gd7B=W_x~G-5oU-vUs3m3lbBXFpsFd&>8wPO$&Nn`m5Q1)539537-a zdRIbUEWGxCDpq=uEq#bE-3k(`S7`38HXyN%fu{9HELs-w4nADWWV!&z)IhNiylYCt zKs8ee0Y}!gm?sP?+Je=19`1f6Cf<6pKP1pS@0XG8^V?Dv14vaIo%tiGT2pl9l@ZK4 zta&+9jj?9+#|}@_5pz1$%0|LyURK9+Rl@L=8mmC}PUZk`Vp%-i?gTh6SC2=ky60aN z12nr!wAMEBc2C0!f`-C1chY=dZ6X(#(xZ_JqQJH6kX9e~0!OIE7ds*lM55yZ-i)e- z12~^y0_k)#)nJEST^MTaqQiv-9Lnx!k6~)zF?ihX+KKikSgW8PASf1$T&6Q^t{R!F zl%cOQ4ltBu2Gyih8ol>{gyk}Ay+2abrLC+BmD6KAyGu1~*_p?Q>)kY=GU76&>oC%4 zicq&CH=SO95OFru2=Sc}a91S66THB1Bu3u%Oe5HQxgj{Ob4_%?sPq3wSRNDJzeTD} zhw#ij9e)LJ;`?WsR2lJ^(!(QAwgeWd2}FdwRwJVCML<`Ph|bCda7-awB}tMM0z%lj zEPOZMBTKV!eb_L@)iO;T7O6T7n#zuZzT*V6l4ejwK&JFWP>odrMVxogy4BkPk>SYI zh-`TTmIWdUTBkY?VOs*}vVn@$U(E)p2|QrRGk^OOw(zL`~%7`QEAvW%3Q z5fbT0$scXfT#QZDor>e{UYtRSYp^|@bo6_uw(Rx!liRY6li%y5j{A7ubWMA3b>sNe4bD)yzQ4bJH3x+| zztv9+qqo1t)KARBp?>A_fvv|NpsAfM@AX1O+nQX;DcnC^>hlkI0wh_+a}`YUD3s@8i|nN8Lks{s>csU;a#=Dh!;x5E?h# z;ZbB?3m-ufJXvVqR!yGiB1Z}^Iy`{S=W;58shhw31#A@N69n}o3Ti%p*6UIBUY`Td z7ODRbfK>lZhO>P@%<1mwx4(d$(g0t{W1zciY+~om&gl3xV>_Co{s3E|^`YWVmYss9i@RR8Jt_(y4gs`yZY)_{)%+BA_E zB>I5Me@SZzA>(J&kg@lR1l1ElhUz~Z8T(5ER7Hjwv<74>r0bTY%t57wIn-Z1bM#5e z3E|^tYLKPsk5i=nL- zgRwbuJ%pE|{_vOZXVMT=ai)fy63$W^ab&8riLzZ}zlQDTbRts^ls52`mWCwYm`+*l%BZXP)ZjO#j-l#$VzX~*vkHB3fVAF)(GSOfdCc>D)Zx0Kj+K_5DQc=L0RV8Ji zxXy$u6^BD{PwGE~T_BcC^P#x5PI)M8wHuy?$J)@57M;*;lV>(Pa<}G=ft2hL6adOu zzgt4|EeQzadQcJle*E6=fFjz!i@!|vJ(lceJ_7wtSW<{_QFZWf_3gO&wS1IO5`kVl z%=HQO7$Ov~j*O~Zv^O|$`QE7ntI_gjuvFnhW8;(L3*>PQXQ93|{9Vdng|Z zUVji_s+7MFy#85Xx<=K<9~1tx(A*Wu0bT#M(A3fOiH`~UAj|fJJ4RhEc%3PHKcH{} z#X|79DG|eVO=+(iqoRV>6_HpOQd)(_cMZ65X@DXSU)O$j1e{1B9Gv@3su~W?-N*+% zjXskI0PfVPm+Ek7x)`EyNvEOG(t2ul8#9cJQq~U)*BuycH9^tI9AZwAn9$7M22f-@ zJnqF|Nsz=Ff1rhnykUwG5+86~fsX)0(j|~XVDg%epo%rD_6+Kp}Y^m6}pXpWEcCKWVj<=Aj~>0JbqWN@Hmrm3nsmBDT)tKnd$>hW+nZn z0R?f>&Imgs35sFrL=+UJDDX-p*RcX3{zC4JNG3|vimz1OBrL0fka(rgJW)v82~Fz} z61f+0Sxg)N6l;Jgi3wYn7ZavL6ceWOc$m`ZFv3k01@LB!XlV4E1OGMm+UXO>+=-pTohCe_ zNP={rIWhu|F8V^0!XccM=3d)0xe@yOi;d9`mkR+4As0%LKs}c_5d|t2Ss}StXB|O6 zNV}oUNEgb~nS*sK;gSKjMVN2}5&0)V^F$Fj3{C41k!oGJ{m@DvQUl0>U%`}!LXbpfY}g#8j>_ekUxdg39={(A*>Od84hZkW_Fon}R4iO-70Xq1k+72Fvc@^L zu0bqyckAmDz|)Z-=%|C4Qf9G^ zx<~+9Oh=t3wDB0YL`R(s?R*_|SO{Z*Fac1uC1C=G8Rm>(sWfnm;A(z*1b*(I=hsA!ZZV*hrF^l#XRhlb7*A4T zd#Dppjd77xQ7iPWCI>-jgL4~_mC{!G=c-$IMF!a&!ZIo-u3LoW9^IEKt~Wu`diFYn zB?6VY$3RB_0~kmbwmqgq)J~@KDbpZQ3-j)@y5V)WYQc%CJB;J%`X!!_sO008N|sA) z3ZZqM6tHcGB^p}yQK5Art$fj^l_`bRsl0o1=6;~G+Wg_+;~i*|YFu6-Rg7Hdmep{2 z(zlA^qIg#XTopy}$MLd-Nj~p?C zjGr-r-NHx@?kuP=g^2Cw?1Bg}iZ|P>l4Cb^OpJ{;C;*k-F>2^Hj8-?s+B@3Aa6CWW z=~2?VKXJ36u8e4_97nf|M#AmCBOpwY(Lbk7L>X<05?uLQ*UIyiTArIcO%v^Y#EQhK zi(h60`W&p2Tj>5!oVObcW5xqv775K0Iddg6tx1aOTm%e;JU<=>Tx0-V*ok8!L6*gc}g=`=~y?OlY0R z^-XB%aQ&3@F=^sCxUM{>AIV@Nv=u2^S7SI=2eK>&6KvD$1=zxNqs1M@ZpHEF4#Lk#Op+5Z%c?P;_O2hzZ;pT&ZK(_ zRjnzL?q?zh#D#N+@h1^ywTBq5_R=e2+Q73Rns^$iCv&+aS%&4l8nc;1**_-$f#Zw6 z7pdyHM=Pe$&He@Y4qAnjIQJiE2B3pQd%~0+5(1-Hem7VR7zq1wwQi8^iIx5#0wIT$ zzCl&Pk+>(Cysw%zz#C)l)6tuIVD{sQGF&wq9n&_7v2_8%pvL@TV<+h?(}(lL0EcK} z<;#oKtt*;vIZPYNBUN46$bJQDm+oib>#LL5rX}oYA8(FAy5Gs{5a>Hj8wbz~%4oxs z9)+|K1ET>$H>o<%3ie-(R`!oTtRk(PX`YEkS`nU6SK%|E2kQA$I7~fe7=6uWq5WdO zM$~gj!UCCkE{as04)t6LeaETiJeoln^_Wue0eZ9S()a1Hy-OX1lW#(fJya0W$6TB1 zBq`7+KQgVb^nLn#ZGWE0;Xf~{X{M#`(}(AobVl>1HO;Z`KK)Cv#z8I-G9l`Te=sPZW zK1(ww6FjCg|G>OiaW`KAw1=(A#Z59B|1{T4lEBH24J+H1-d=C3H{I<{I`>_ecbsxR zL(mIPjITbW7+eF>&*aUo$D0@Bhnj=*kT+cWCI4%ZjaJC$%`{*5ZpeTLzxNe!K4!u{ zFj93ogufE{juZY8nn4-io6<|b+g2shcO3o(X5ISx1|r6pyUZ6S;>8hM6vS_^OT7XA zTEbq0H{iItt$71(GJ`Yan!gS7iDIuzSUPXPFGsjWw%|@o-4W=e_3qM}0})PQp$*uC znr717gvvkzS&jyR0*ZEy+Y$i5*g``NTg#el1jY7 zNs_VS0HFtse-zh*krs4b^P zKUXei`Tj4{ynEX$$nu>BeKF7Xe)%dalX9PZnKbv6idkhKRm$~k0hZ0dUW>WD7u!S^ zs~ab%-I$-u+Ra;mGIbgmxetLk?hJeS**+ai--$(O({?9+YruyU2bDJTjfsgUe;^rzl5GJ~%6RkJ1nR zoCU;8q#wKzFzlN4(@8%#7@-za;WqtXGg7;le$dRdH2t8dk(_>T_G0~V#tfWX+i;S; z4Wv}lQxK*%Frp%R8IIhWy@V$qOKevRAYw5I;ft|_NhXD@jYknBp&k!HJEbr*yVsbEkU@^g z2odC<@MbPDLxQy6y&W`FzVb- zhW^QgG3Ql93E^VY^R!|dj8jaw#zp2VwHr&gwgUQMAtxkUJ6M>m5omEI z#d4v!yV`(6I~tlg5-rh5;e$*_xW>f02#D7}v2a7cl!)OTrgSB``j~w98F@`62I<{E zC7y$8*~J82Z}$5HPGBDiazdhy$9P1j9IIvP+U`pZ`yzs*`pia zv?~D$%+F(ys_vmk)c~jKpzokip#Y~2&7ka1#FQQygrg<;a6O=V?6Df%4@Y2xM8zj= zZK@g$aXQHhaiV3#f^$$x_E~!p#5uYoyxf~kL=($Y=ZgUkDS|&sSPzrOdm~j{^2lz2 z$`xXqJ^4r(k{4(dnn*ID3}&gfUnL7g>{D`&%>XYWb9M$!X5o!`f<5?)CP=@e2_A@p6x3ZXsEcK zPTVv(^u$fH75WRH$**3Z=REYep;IpUJf?sC%T+I)ydH$aTqPX(hVIuNy7{9LmJj*Q zhB>lBU>PvXO8m#Uf)OO?p$|ig<)#Hq>}xQwY#I0`^;Fc{hWc=#$HSUd!~erlhj@M2 zVNjRS4rGVpulK`+|LpPbtFVOZ2>cp&MK(JCDimk*4V=*+belM%?tHi*Jlcl$?mz%% zJ24@`5&nL>(Kj&M9D`R4MjCubv1+n(Vng#T9-nNY02qL-yy>Yt*x5v3ZhhJFoNwJF z{_x-jAmxyq2J6*}>dsSh(#O5}PlI7n1J5wXl9G^nc)1N`klhad!Kw4H#95|!_r}Nm zSb|+DlginDgA1_*`tV4D!+!7qa=BTN1dzV0i%@tC{KuC89&la+#ei1}ob1`yt8hr- z<5AD8lqm^igOM5DjWfI_Ji|N6XK3YK_B0r&vO|4nUiRlWgRRgQDTO`fvx+>(V}3fr zG3qg2eQ66bM1l}-U8?wZW9w*V2gRW4xF@wk2TP?|BSVAPi*Q!G+4Vd*ttG-@7yPQT zi~k6~&ocma{2gbIdzaEQj3MMO$1f!&g#-$N zd$%gsvzxGma%YR{9aQe@5s2o(SAmFN^hI1PlUQzTrW?-<^)3PArs(vrpBv$`xq;Ek z{6PU~Gs13nXLP%ctph)xFq%EzlZ%1cUY}dG-DPx57Kr?0NmzM-(%Cz(8|ARxKUdvO zf@Ijcpk}F~I_}qbo6y|VRRO=webBVJU*|e#rCil0)|6kTutbn{6n(-ZF^>UDPU@uv z+**iqg~BjW^hHi03;_{egh?_Y=3$+}LBZcZg;MxO4+=gnv`z&7-$PRe{AmXT67=Wb zy3DzN1oC`@dY3SjTWkCQh zwDQLY(ysGS0JJqO@@79W4;~LXn6&bARvxG{UM=uYMz8kVw;*R9;_4m-cpNIU@lacG zpt1tmsa;t2=2>HB({pHGY+tZzZ`pSE1FNUxI5i?ZAH2GuGLJjI)lW>jW`B*TpO||@ z{US@MH3$)ODvQ;6OqL?;2eZYGhh2%%&hwhPoA4@^RY9bbFEd0YZGAkPdfOe|3qI2{ zpM^9E4xMZgwk2kFtn>%NL;Ycd7(t_HmLoxKn)y{$JebS0TuOZ*7 zCX)J?_ybb^A(W{8(^2wyX@IIIQG?cil7$3hl(P~>5}tPWXK6Vhe0;YWK7Jf2F_*kHIp@fcTTKMHRRg_l;P=jQ7b+puf2pOvXbYwhH8lWmN)SxvW zV$)tpOhkv`r{72Nr5< zs5ExIF1$fnO9&Y+sD_N2rT#<6Q2nPPk*6_swA7g(d zEjWa+`>J8=GgAK{jH&(|jLpHVh#@-q!(YPJq#>%}Obt6FoTWD6>j#n8rG0n@g8kVhlw{nw7olHfx1Q2! z?_uLeu36$mJfyvc{exT=<#GuLmEXh8j|(JQ;XUkp>vD;TX7A?#O|Og45KfKb+wY{R z;rRB)@;&UuuL(=eBtfx|IuQkhDGEIJ#dWNJh`)z@ER4t^LVORqPgqt3A#t?OJW)tI z5t`N`By#UzvzS;6^k;x7i3wYn7ZavL6ceVj%FEW)(y7vlm*9$uIMdCG;G`nc{onB( z_D}>UN$fjForvsfiW2lZ*R8_FFNTprZ2VGTc@^0BMMCpLHhv8>ok=!c0z6=VE3vUH z%(Jm65!u+3roC@%891#zPupePDQNi*Al_5`7h22X%G^dku+w?T+OB*$y+q-WoJsRD zx#cBUJ_1Y;B3O!%gCZ>p94V}a|m$yypEs86`mN}vDt4E7|z`jbd!jv4POr=%wqz7QcM zlryZFaI`9_DL=cI&@-y(ASR<(teSo#fGwt){#|I}@okA}dI;M2s%b^-s%eGc+!&U6 zvt5yOR8&p>7e9l2@GW7xFG+hXr%pue#YI*#nG2A)cdez2ef`icE2+X8(f$_aL}3{f z^wnyixkvZq`f43Ctw&!KmYCb^9109zAYIt)m=aMtnbK*!Uu|GM?PsuYKCW7DZpiAq zj>*qpUxj@sQzq>h>`el;4Y5S86J9B_PNbD>(A1%owA-4w!@=Zdu-T$Nn5jl-D&Wzw zN3Jb$%W611>5E!%QM@byu8N}gVV1VG1j6TcPOc#K@K zoA?#9Q*@ynU5(mz6Ai<^F)a0Fua2yvpu&P(>g02`Cq#&F@;MAh%V$t?0f`g10s=>2 zO)pfzB+qfeNP$tnI_k?dIp4bTE^W5QAO#nTas8*yT~EC=yg9&eIZf|rP__P;x!Lft z@pBV^z|nA5M5?-(9jhk(yc+rrS_qW*^D>$NmO~*nr2W&J*ISuFB@Zf zmpXhmF`Qx2)p2VJiZ2`gDA!4tbl7E_ADLEI`m%Apwm;A0K#t$nG}F?Tjl=Uya=S0N z%|}UH(99me#rJ06DJC9UA6dsF<7(>@Fy)X5T2XC1)-M~M15k@ChXv1Bk*d=XJm*5+ zal!L+nn9W1F{SzUi>-#rmjLZyt8#IZ%*NYt-6XL{er#A-^2^5gwsFdRDnTziu?kA` ztm(gO%*j8j$5-u7{LJfx7m9hGQuuDrOzwbN6IRQF{hCPC=@9nq(081$Z=@NN5w=hAM7Q|z)OT9rpKSAj71{rssHE)p3OT$cg=5L?k zzMimj-Xeb$;TpMC=3K+1mqxsohxu(1a}PLB!%R{=SW?nWZ}u-aTn7aO?clzjuwcdt zF1Ti_c&`aFX1s4^;Uo|CzCEt!7(0KchMjy)X_||5r&oAkcm>RnSCa44U(CV6Vk)@R zmkZ5ZCsN>6+tJXp9=Cdag&-N+fX?GV{2YMrpoqUXG43B(6AB(CM#OI=VhqbDe!xLr zlutSj(=QC`6c0ui6rV>>9)Q3D4(K6J4>()_Fi`I!&@btI1WK>SSrVq1slQLBXpN_U zJgg)IB&R|xd#ljE6_`HeITc}-8u>HrvDC;5@$y5?rDE-g=fC{9zfYJ-FgN7A zY8uIj2&Mi*$%$0|Rgx2ZUK*lmaw0WsxnvHYB()JICz2@Cc9Cs^)l4TjQTe-^Iz7>B zlpB<-rVUG1`Z>GL$pFizOpXCNg#<-E%)6;5$2tG1E^A`TqiOA5dVYT7#7X^wAN)mXEpao*O( z&e6`U_F!vpbpzo%GO=SzYqZhX+8Ap=qJ}|y*rGw{r?<4WcEC{pofY0j?C-%K60C)f zCPHekL5Qrt=asO>EzN=L+eSMR@E!*Gy;Xb2AhxyH9-e@QS{hC0wY_ZwIv-@`jqj{U zP+(_7faiKkeh9QCCL38#oq%pHCL1wD39(OH*KXEKE&+nO6o~p z2&wMun;WCU6`9s7$)|TxBC|JJ7ojhxr?<%{x)Qg^$5Pdr9+`b}!W7w4^9HCIldjd% zGo9nTAbKUdq%_!RjC95uL(N?+l)*be>cao;XpfCSenk?yBr01ZL_ObJeb0)1GyyE^ z(EjU4Ro9_iHTdM?(05QoQ}D@O(G1EQ+NSihsRP$?<}^A17Q(qyW1+u@Ko?nv&r$xI zs)hqsR$ts1KZjH<=y=r4Oh2HbK{=CI1=@IcwACEklXPIRKzFG3k@kZD8o5OOJ7FPA zQU4jK>QYqpHK<%6WaU>-Jx);%(+tWe%9O?-XkgHd*9H2(o~zNvk7%Yr>$M7f%!((k zpD-D>c$rlCB2}kDDr=zcIH?>>Gbke!QyPBC+LB4Q9*_w3SdB!Eh`^{ILV}82pOU>V zf$-P`j*7FAZVyj@UEq2XruXdOM*N1cb|M%(F1Wx+q6A#vSgu^)dyqotiD3E_bAcz# zP(No0Gc>P_`VFIR7{3Cibtb-M{7N%H`Xx<}p7|{}3cCC8GmWetoTrS7CE*v1@!{am zi^hvC+cPr24t1?Wyl;j%ve&_KfCXNQ|0M6-@h#&!ObdF;_}jI;W$aB_`rNcSGv?S^3c8 zlcst1CAA)Ui~(Wx@7%L)urmNjG0}qo-Vcpk=8t}=9__N1!TV+yj|{kfj?AsXF^n`fE90_{z(|#y-1@!Ze}TrxZTw#G?4Ss8V1JAO z7|pQ1%6q6732bPzGt!wDYiwwbLGt~pxGlIRJYC0s@@ z{k4IqdS=v1&sl9c@r8WRy zFTB%NT{ar6yCgp$QifijZ+0LySN_2HT4fr95|=KA8hLMV1&`nXLUUID2RwoeXjba=IepDvzL98t^eiX)M5HE7v;$kZ#lM?Zlf6Z4f|f1&ZvRTAMlDS~|*3e4X>W z;E((JVOu;lFxuYITDPuoU1RzUwFZhK}DfnFnNdKD<^r+J@^~oA8C%Yyg@9CZ0+-iklDf6gU-~yRSNC zmmtCwo$E?InO}+(N=?8@uR30Ay3z#EQ(&O%U9ht3UieSTbH(Og~2|;b31B>*EVb8*y00@2l>%tq$ zij80^(GR4=n}+NR*r$N*rtQj$U|6-EqF>T>g=yX1N(Kugi|-7g zpc0YZX1dZ4-f!weis{^M<_=>-dQ5;wt)$X~npoR_DSJOoqc?l6SzbkA#gxHnm7-dI&os+$^*H>7;zpf z(H+=q+V%n`vPi!~npnwzBzqDL*_)kYmQs;0F^^oonRXIk>Q!381h7qkFwccymE5FX z<%F5*y9ZA~oA}1um~TR$6?Os`?XVJKipQyqllo6y z*Wj&`GTuizyWu609k5YsZW(S-XbQ?p{6m?@jtN&&kFn>dXp&lbtteZCB@YtkR|RQ< zb7(A?TQq5h9tKEWVOnb@SxMWjRq3!Y)Y`4k$QxP_wND4G@mThZ)Me7-%ZWVrj1<70 z_BQx>ml8l4AiYd*!1hx#NBgp!u%+l8*&eh}?T#z4(Hw`})s~6z)~d%YKp9{I^kvU;zI7jm-N5I}+k@STKvV_;RxsEk;=0{HSQ0#y zY=xUmR~oR7cg1mbBb3Lzff+dx{tT9tkt5;H5wQE^U{&0&VV1I+cmksM?sK?(2?evM zy*7z$&5{Q=1uU#Byt4OV|Gn9}%{nEJxnvE~bT?#}fA5`kj>RX-;-N5e#`o;BPq=Qx zKYV<(nI^vl!`gn8tFtkG17o!k9nbpLqwQ#ur$Km*7R&$|+28aQ_B_Dh)G-7em z^Tv=XAv@qt!Mq@E!ZQ3tr?d1+GBik5)^kDWXk@Xt7+)cYamAhUE*_t3B1G7YR$Y)= zHupvO@c;=H<*JI${Hw9J9^1OlbfszfIG1R$qo90>!hDG<%n4!$D|O7H2WtQ~9K%zH zit`mHwFzr*tmn8<*~(kmEw5nUmz|BH^=4<8bypPbM?&M%?TjCBMQJ|0+DZLSDp;W9 zb;?t)*?x*|4N#d`9_jikVR|kSQ8&a=usvI7K0Jp1Sj|J@C9GN6G!7CrEma)mJ<4v@VMWp6c zmkR>KzprC)fL+k4f{xWPqmqu*qR}o5r1KPX?AKtfO2>X3f02%*Uo)&@j~VZ5Z;iy2 z>`GC|V%s{lOLJ)!!j9>Oh(fhv;yS({{V}6hohvb7P=6f+r7KAUo|CICJ0{(vIf#R$~+nOn_UE5xEPf-WSmJ1M?nKvPbNDK)lktUU*vTTln~b>GI_w2LA^9a-345wSo!Jd{ z&F&d{S0d&!j;kg+hx>=_h4-h=rS5WKW#~8R)Hz7(3)qq}KYIi0-* zNQFTK7wk7#7R^3}UO8QuOnTVglOu~onaAB6O`&~bpHp;ZNiu316LjNoGQ zrdf+%OSqs0{FX_Z<{M$IN}<0Rf006`Uo))G`?gKAhX=1o@qZpF>2%$^4z<3(b_NXW zZ=m0TxKx_mRx_fLc1dqzbZh+OxG<{_9(lLvN-Ou1T~(019?GYv+z)h>yIF8izn=gE z{6?NeRKFjAdX_qaqb#MscPlR`Dss3SYD z`3m&!;zm-_tYE%`Q>mh0(1BV|FyF&o(iP12X@1t-Y88xe&w9p5_9N~e6-?3b`V;Cd zN80HM=0Akyt{@F4m|sEDniLE!E2m(d1f;^Ck`;_9^d+l1bL`LAF=Bt;i7XbGjui}& zMqX~`de7|`ae&W5s|pH6vw{{-!Nq6=qh)|4To6Tm%OnM}<}R&Z`tcVj82UBC3g-9$ zIPx874JWCX!zC4CJE%j+^tjy>)Xdoc8&)%JMI#bP(L4hy)#I%_%XFm`%{o_@Wlw|h zDJq)fuA*@kT~sw|fs{|@i9}V+QK)LTyO^>`s%v1IZN@qDW`AN}Qc>NU3XQL_>zEOB zGYb8?7z(JH4o+p->gFZbOS-yw8O^VPy1AMAm(|U!)ZLWTO;>2{iq(L+c|A0pIdyXy zkP3rJRyV59m$UB7bLs~ByCJezN8KQ4hel9Mw@lx%?3E2Va5JR23uoNUi)B zi|bJzc(3s;2l^YA50P6WF4{CZf#|5}oo z5#7EjVTHVvJQm?uuG{8h7i1#XY(L{ zlLfk-B}Zk|QpZzP^=ApqU3>;q{j;EHJ*wWW4fV4V*K<0M4?|AY_o^_N9I?MsBP(|F zJ(5dajk>_Ws{Vl_4saB-s-W*RdsNc*T1;DF22J6EAxYoA3g)Wx{f+pG^gaEWX?;J^ z+%eUlA8cBSzE>R;^!+`EKi2nD#n<<5W%O!%%LHYbM18`xp~3{suwELHh>f)x!svyb5Dz1d$II8@v^;`P-J z*%i!)digT+?_xz#psZfLh*K$7FNsHC-^E_iHOoKI{G_d8$x+x3xqsX`LY168`7w2u zBkFWd873p0EFnLH^KbzY{9jawtzr%ux*#Hn?72{VmqLFO7bFf;;*7D91_k#0n z_#eg;RyZR&)AXrz&LysN%hp5r6m`yuQjivP&$&R|Pv@ybb3 zI2#`B?1r>6{XNed8Q#;_2D{A>%r~$O1EAM!#?aNxc*4eiJ28Fz+T*&lgMEPEZ}*(f zsA(2f;C5^45}>)sAXX_+Pa`-B7q%Hg*pw|E3J~_mFoR;3MoW-( z2Q%vLFj$XHp&tRxLIwTEl5dfKvhMR=eiDoqgD)ag6V*;vTapQk2 zv~i(O7B~J^3<|6LFV3^N+f5*D92Qa%H+~U=9Kbyz7W(%iYe!+k7W#K_x#br6u>}Xv zC6M;0-5h2%eFjF|6n#NI$6nJd_FvF^9r=8y_613!2?FF19uF+|WkQpj-1q|xH)V_d zw?cE5Bm(k#!5cmKJ$GQZIW{&q6#*_TGbb>f31r5gl`VW#m@Fx#v zjlQUjf26Pp$aPYOmA{`qFU6?dRp2WCPHb4^EBhkSy!p*g|v93VFau)K9pg~<{F`+Hnu`AA~CbwCo!TjVaJ zu&TdxzyW^Bd>CRrY{|(bv;?cPb#z}j(bj=}&G6RY zNU%laurl>P(D)w65Y#Je7s!a6erAdNUE7uVL_a}x+CDb5P4;>h7aKgNKs%+h6tz%)F%o;!5Wq76jSzu~$s*ZV5UY zgm3X}N_Re!%w(3!oK(O!av*O|)OeJBdn+#}x6Yq;9WSCwb|S7pHm7?McQjZ z=J4IQ3KI_}a^s?Rf9{<2i<#766n5j~;d%an!S^71@YIgNba~#Fp1!-pCvSy(yaGBUhPW#SMJqEm@O3h)U!hv zI19aU-xeB7X{L)D`M|{Dfq6ccYlGeV?JwZv!hC|Dela!3d;qQ2qwKvt2cSEo{zCv# z{SVor>U}@}>h9^czks($1AGNGFWy@O-DP7FJ9lW4u= zt3k`vU^3P3=L>2HF$+x}u zN3TQu;V%IM?FMV!z&lI_6f0Z7(UnSpx_{48(PpdNq$IttwBT-I zAem=~d}8f^8hLG5VcRlKXzt4Pz_#T;Xj*;S@@oJ{e%oS}hO!M}$z~%>AtLF3s&E35 zN3rESVP`@oAjcwB!RZI|@mou(#XWdmJe6|KC6E{%tY*j`uSJ^s$)}Z5BgjUn%p3BP zaf)l%CM;~o6(?1HUHnK)tpf=!RyFv&XGqYJOS;DD=LR=|ENCuX8d;S4X0A_sxLkg? z_hRY<&Cy1mWok0ExyU#dtTUn{XUSFsowDDBoFzlTbSv=dpwK*#Uq_*7J^bn=i)Lb; z1H^2gxc4dytOziXK=?KDbE#_h zHS<$d7QsI7Eg1q&$ulUCe8P_7?UC6h5&k{YiAeZdBoMyw!ukHS`=KvQ_(lKP1HyDG z5dMdR=81&=AT+Is@NrqJq%tP_c|dvwiUqna0mKskJBZ3{6O~@z=;J7^vrqy6F4|I zv(&|Ve4J(L#K-_W_(HEL!W8l8ma*|xb5L#e`Z7;zncXY%g!$W`ko3#1B5+P(<6lrG zA{%p&W#g6lh+8kWpAjKtc={hW;77phLf5?vrPPh{}r(6k-~FRn4i?f6)o z0d|4gO^L|uru5~=?V7wEGitZ!>&}u1F>GBq0|GB`p+Xe6I#^*X(Y1m*KP=A|@xP}U{ z%7PS&ZUKl%jiH|Q$ga-tE_}Nj<*jy+O9qhRU}E{{d@@vGnB`!WYL56U26*>r#4t?QS zK&l$|Wz6RX3AH1`{B2-Q?EYZF(%FmgDX1FrVmR)=XP;r*fP6KnzsG)JX@yrBvxzZ~ zeOi7sI$N^Vz&P2b_|Q9SV8P^sa@r5FZ3vRZ>C37r?<n~M~0(gQ`BKfP}TMnq&Q-csBPxKx6ZWga~Us#f4pgLK}1GSsjPI%rx)bGz+4A zG}PekULihrfh|;0$$s#~>1)lJrXBEO!IRyIy%qz0j!M8U@7RU`7G zL6nv`^KznFob|gK;yT6dFuvrZvUQd`Fm15Y*pN zP)m)Q`H|FrC^SR$?}TPV;%5Fw8lY-mh8nb70VUHT;3-&&Cm7E^=dpr*%5{fCgF z`gf2Mjhk5`4N(<6YS<~EC$$mB%}A2ac9FdZh;2G?Gv3=KM$n_t#DO!jOgm9H!i!4kPLEQQM$omUo2vk?f)wG1lmjjzGxLG!;UP;dqF zf0NMM75D-3e>*g-ZvI~kt)js+vysjale9rUP^1z|3355?Wb(9NIkzn8=6V>Dqi&vs zKh?eCnUA`;h1Obb#X5W8F3xK$8)mgd-5d=DUBin?09H(iyNQ@??};qT^}G9&ic99m zn|D$tqTij1>>fYnOaC~6PcgV~!RM30bSp6TM}_8z%>6}ZS`Tx3zH}yNjJz>WEF4Li z64705N_){=E|G<0#nLJ~zAKqy+}NAFEdov?5stmNhpL8SZ~k9+K}mSQBM~?!G3ozM zCnA$_k!8|K;RQ?HW;nKZ^lnIxT#5%k)%-@W0{iYKG*4vTL!oIs>|0zTkU3>fWL{nf zykvk~;AK-H^0FzNC8zlYeX}UM0Ab|HscD24JOxSDIj9LMcn&Yfj}I*Mn1mPP=Mk6J zzl_L{it_r8D7>HEdj5MID_t+b7qM9)JiEj5W=AS|tdOubHMo+wja z0Zr?Xsgg;wFNjeCRw=x|7UshXOo=FCO=;ah09IJm-7|y26;*L=e{KY`1#S;^slyB2 zlpsU+2orZgi6=@oQq_2P!MsbGZ3w#4rCZKDhiGRE=%coZy0E&l}m* z9BvPuF}iJH2RuEmuRx&D4Iu>(8HJ_VLt;1_W(Dl)N0#oN>q;-F@ZDeALkVl+UD-cH zs&*HSwzdv-b~M`~lj;WjBKXj{Zs%}&pglf$qh;-E(~`aRqUz(#(QU2q$?RXD@1V>C zg9u&$pc#O`6#3AUF4OxK7ldZnU9p&Zuf`GIia-Q8f@v2Cqh{JQp)lHir9)-RQi*z3 zzP)H8y8;;}$<(_Xs#c)h*$^6YJWkoMxGK8;)?)LZ`|nf%d==E;lZ56j^aJj{GoY#E znQmfgF5jt=?F)AuyCyyYaP96aFf>L3aCV2r=vgKm`%`GlaS^~fyoqFAGjDofFic?H zH=jp$ButihG=r)Yc+{YtCSf#4(nZsk;ZQ;5c!e z#L$@MM;7A{9OAGN!G$d;PCKU^*hxI1Lu2&ejv=XHXiWBN&|Td?XbhHTXFd*Ig!l|B zOohhKuMO}Ga}#9aAcaUu_h!GIMEX@B3)x`dCiYO@^>7>ec*xuYPhWVnFdyur(Kgs> znAL43inXJ+w#EmB%Hm>74xE)z4jgJ)M>x!}UN{U*2$J6HM9XLN8oa%=e&gswYZV7a zxH+r4b9oYq#rQ8@Fnk99>Z&*2p-?Fu+qXP8e{OYPO&#uB2r(A$3`<&H&+eGEva|J&9 zOxg#pUE%A{ct>Gk#JO#ZuSU1F40Sr&S2x=It^S^Ms8H8!ZjX^x16pbi;M>!i;Ud@g z#OTNvyd8Z`b9k(^c{5#{9YM0|QDwF-dnb3GGcpdI0vLCXdfd7_0(ZoAH1RSmQ>R7G zAIF3-zx2sd0j<4_F~#ic?9?6y`j&ik$lcK zMn67MhJ@mWP@@gVryaY6)~?(LY=~bDO&yzm4viCg@Z@|nbv>AN7aD%hN^mamhwX&iGjEK*!vP(mcxm^{8aT{|nOb@?Ft8diZ@{xc z(838poW<8Z^ew2Tg&1s76oN2ndgg<4J{6yy_MCkjs>1A)VNepJ*OZ<6Jf$eK*h86{)f;!Q9}I+nmQ6H(PifYO}XsUx{zn^9Yq#Pi-8vmAPbQIrbP6P zo6?Kxr7{cqZrwfeYF&HN7qJUAZ$=`w*Z!q##zF4{Vo5bwwU$C?xs8Bu3pu{>bz-8g zH~VUYvXEc+yZ{A?yT1^msd}iOH~R=xt?8`msQ|6~F4-l1oFaQ7PeZ^)WM1`jV5`sF zxbc#+uN!FXL`x74#LgnC9MiIp#p=pH(yV>f=#dV_7JD6PU7Y)Bv?1x_=OzGw<=PdI zs?#|XyBhiq3RgN5yNqT41S+zOzpVOIuyVO2uwBd`Z9k=X(KVeUI-i8z+S)hB>^kF|3*br&lp0FAwjawpBUDC)p zP+2l%>5<^#dFdonkCVntG=nnIFr~*hq!9q40Yo>k0gwxhQH@+)MRWFd7kL3xfn3hZ z9gC|IcAyJwMVTZ~L(N@~ZcE+IZ@}xBoq;y)Z`JM?azmw%QQ@$it(3xd14|;RFC?s) ziR!bFs?#B=FG1gNqWUz=pp2+Y=_%w>dYSWq(eqw;YqIV^$`~^@ort+O_&Vd_YyFyCadVtusv$QK0TJ+21fZRiI5~&6q zodvHH{zF4^htvuG4I3!cO-qvZV8+Xqg|uUhHr(1 zsk34FwP9w@hL0I+4MPUx=;83e(&4abTgU0}$qqa9^OWFx6EcjCbw=n7l*F^*d3sKY z_w=7W+r67fQlGE;gjwmd_#LLJ?v1nHv{lPZCr5;0&G} ze^hATN-*(Q@_uUM&lEx^4XN--ykp~es$7Zlr6?G&x^>EsO8J&Bo8Tq?Z>X81Uh@BU zssGSnvFhJFERMau@ZZu9RS%2Ru;sEZ87nh!qQCgwq8S!M(n4yGe4>Ad)PD#`s(%+r zu@n7O(hyaVq=uaml2RM-iN2L_*@uC=@+bQDz_;m~=pRs&{qB*z8j_Br--@G?DG|A0 zf6xZfYIvj%Ti7eq`K+<1OG=H7$esoG0n6o?_)i4`dhP5|0R*xOc@2-sLC~N;*RC{2 z^NmgNCeCXu(^JVoP<5y14kgyhvaWI|=2#^~sdA}WCr5wdvZ2myc*}BU16-=;C2LL$ zw#OU8oo)RWw|2ulg9aQfjiJBwr2dn|Gb627*!I_d8rmW~^P&ixT<601P}iQzA_UpP z@qFq8{0qfr7feyYtthT*cQ~N!he>D&Gp0vFvE}L> zx9d2c>mutwvBS>f391@Cd-$U|wqNk>qCM&2Fi9BCp-x0$%tcnfMvv_eh0a*QO2_tx z3lpv&Vh{6c%j3&q?_6edz@edHK1oJ``S;00p*P?~GJ+Pv@#$k$pY%9hBJ=4R9OHpv)*UrH2OLXx85i z*8{nRJ-VD8Bz@A!H%DOPaMMjxHLR2S^vQks$!_bq_E_5atv&T;!mu9O!iEX^=1;@M71 zp^4Ma>5Oh^4-P_*JBW-cI};FgP7guR8UN1K=#Dl$<3wSSv}4A{p`87)^0bEIiWZtd z^v1;bVxUFTGXFhcQw&L-sbx;2>U5}OA@m)mmc3{OWz=FypEMP)8nASy)EsCF$FD|P zzpt0J{wM-Uo))1Zhv1$PsX85kJ01Ft6WpmZgEE3MrBe+Du{1Z;9)Rp{7S+h^)< zj*PU1s~j`WQFB&qQ1yr5A5vxS$T5Pivnw4jzr}RbedR1TVpc0J9x!jH1K7%-@Q-$@ z9zuUqkSM`J==+5R?#5X>?))G%@@HDhA@nzd*#yrw|5nW;^$_|YssGUVrt054-;5nX z|6CfP>iMP`wp?x|V`YKndL}L}E?^E8YQt3h;WP5W_ZDr^AUft!gXH7pUa9{OI#mA- zIwFbxkC6tbiVQVq4an%Rf>%PvJXNd_qW|(hyYk zF*6Z8bFZ|*5R%?r4M`u8`VS#V_3t7n7CrNzG(=S-sbQytq|`@Ptt=A&oc z2;Zg?J+mZl^t!P#YCsAEc{7fk5<9c(Y%s@5B4@-hBL%Xb0A^ql_#^zM$|><|vTF%g zKj0NSDp524E6}rRe&P<8PY)i!d97tSsx4~fRJ4K0VrKYe%5m^QJVd|@s(aH7Y$3+K zMD3}A-&eG!+|{~%kbi^aim@-tsS|L86k}gZQ9|qs*R@BpvDlXHSRrA|Z+ zG(`y<$aO6T?x*k95O}1UH8;b^yuP_qDHp_jtFXKZT-X(wCvxHIp=mu_$O}W-#Iy#? zhZuuqfGhE#EzI+wDG~Y5ls@i^hJ|Jq|KcHCUb4qM-9y)n!y(bS%@R2)+*!je`-DZ@ zfl>oIGLh-01VkVnLGTVvb{D{Z*WloV1Uf?x!<;`RG)~0gmwYVFp+Tgx#@)@)k;zvn zu_-SohrhWFFe#1fNf75JvwT4aYNj`=+&!VRahbeO)Z?NuE*3{3fUGDMxA9iek&DeO z1O1ncbarnYZf01U`llN%gBn8 z#N&TbC!%;XMG4}O>ss-+T#H8!YLb}T@BKzhF7_(t*lY>Z%f}v85SRN3%@Y~zU}##8 zxXdju$94;V?F`T*v1tqQV$+m}V$+mva0u3LZe@}+WY|5^>5rMYa&NroYTW+Q2<=zo z_Tl7kd^}WmtfKKRiI8v-!(T|9hzxIv5*VKAT85A9NZK%N`Hp0}u(S%yy-jGI$lMdq zv>xX6qVd@h!Z%6`SS6OWg?W}XB_d06sg1^eI5-U5=o9Y4fGh0b|3YjfkSZJ)i~rU z5lj}OW>64o1LVqtUfBRa?OwA1GGD(Os6EK~Z-X47_k;gD*#zl@sxcG9xdy)yy%BH@ zKfH$+TgVm|s9`4A4O9YLKLO`d!LiVr^(8Erv4RV(87md@2A-ENSvC;QK}bXlL2rP6FG`VQ5;hVqi%J;bp&`EVpIoz>nk7EOpFez z3ghEr>*=MD)s3xiFIs)XUt{WLYsZ$>p!1VIH;0EiyIX_T;5)=%IPur-g zIZj&9pZ59B=lZ!5*RPTU@{t<6QSc>dkbI-yyHfw55M0&2jnwEyZWR1j8lY+bt{Svl zxQf?1KBpkzVWsNzpgA8XT4%xQL3;@eTy2>=(|uieBoWX8T|rZj{oqT8Lxm{?NoWN% zNG74Agzo;5| zu95l=p-1(fj-DOT09DbW2CV@-3yr3hFtZPoYLw7#9~ZBXmJ-6nORC{wQtCg13)R1a z3x4j5t$y+Gv$slvRKYc|f|{dLNFhVn6SLLjBq~94vrKvd=lsIPx;^)WRi;#*Wt5SaTab_nr%5QTHt1 zur#HrA;4@s;0-+dPr-jG95k(+O+HKl<&${@aGS@53_lAG>Dcwx*fB9S-q=D9=Iz;u z+4Gv?jRCl}0_BiO9!}{y0N*hpwJfkDp0 zm7H<`CMp-Px@99gHobGW(;P&E0lJ3a$u`*P(i7u=GW@-Hb7N<76s|_Yow3FkL|F_E zBJRPf$Il}+d$^^(#&Zs~;`^T#&4&fYvheCgD#BW}2N47h1FLy!#7G>P*yZxYs9;c)epLUY$$95`IP6Pi{( zTs;L^*<14bEHZ{p!gy%`}D~Q!eoBR`Y@9)!CA@1~7X@r-2&Svh;jj zyQQ_R`2_I#3&5eP3O$1DE;JC+d^(qwYC9vs{YZrJ&>UdNiQ^HYKEYws7!K@k-Ac`b z^*QWnZhR{c3jF%F2pq+)bE%S@2(A0;!n!Lk>{o>5i46N4Xj%`$^1^Z)i&qy7s!o|2 z)mvb7r`m&nz$p>ve?=fI5$J&qff{CY)+ColXYBC1<|*0tGw&~x%@KpCL+zZ4BE*?{ zxSp^Ehi#0OBT*!9%^@&xt>v(e9haEqFkxL4m}aHWJdtURgQoQ`%^X@+h-c=YjJ7N9 zs=vdKjSHmHEoeo7bfy5D3b1{e&^!^g7uE*b1c9`aO$bNbSzAIV6u_QrRG=iZMn!g+ z^F{-ZGj3et_eXjz(Z;zsFmykexf6eMB1k}4#bJWOP}Od+L9b>z3e&6pmf6XApVtSQ zrBy0xzui}&T?E@qy)*aijqC$b#L_Y2V~TP;mVAE2tCLsTLD6 zaghy)j9qPhGlEsAeIeP>J;HP=@YoxL=7~J^9%x#R{PM0gvyr|S2;D%jaPiKRh<9a7 z=~1o=qKs4w`nyThd0wuS8spyH?4=PfBkAxxi5sYD`0mU{(5>0%!;6^25myYgfD1;6 z6(H6RJSuwIO%=Da-~qK3S>otlfn7ptY$t^5wK$ImxV12d4^A2O^z3NCLtW4j_-Bx@ zMqA?(qwoeG?mY;AU>t9q7#YBjKe|e>4bqQn9qsIBU@}~=_j{W9oym*XTh`tRBa?>* zGaB+%z-P^fiF#o$d{({WwU``9dl@Q%;(O-_5wdN{EtEGiWq;N0sbmv zx6PbeYH3$xbTyKUH1{DN1PV=cE9(t0qR4Fo+%ivbwF55wMVO~!nfGd61;0DX@<3vy z6LG3a#qHn#T4Aod8&#l%x^{nU`2)bN*z(!@T^GlmF>m`@2o+| zu|?V60Eg8GxV$-pzTr5B;5Zmw3_>lb(}9{=_+Tj(a4tt|1!dX~<|{uN+{!FqKltdm zE<(LYN^qPy5tSepStS^=OuI-grIzWZ^t3iM;wcXj%`iN|xz?z-$JJ1r2CQ zL=9+4CpH3g7;<^k$j=Z|_c59P!_Jj5aba+6gcK?YgD==HXI~ts?~P|)dZBh)mkR`^ zZcrp}y)uD-;)R|PgHF<}>#5ENt!82RwMb=}V4_CR|aZaWS%;TTmNKSMpymUhFj znK|80h5|^RelY^sB$4u2>O>SNT$CBJDDG^1ADZLLxibIxBq2kniY)II#X8s5#&p2~MnQwE=r(=I>atYp>g?}{#iwiOC zjtZPtu(M%GHQLT(6={4&O!h|b` zw$p{??s@~K?H5DSdPJM(FgO_a!~n7&+f0cl+f3>D>Cul-dfjPu#A|W6FV0!VMQ~G* zvo69=l|~;%HW+s}eFA~6B6HZS$H)G_T5$5OLvOGq#2Dxk0Fk$%cUNwRtSE`QUO=6Q z+{Hx#cj2lf55gpLrnw92Sk*#y&TEAUSKzMOh31Lebq_SHiMwcBKrECYfZcJ20!11? z7P!llh}>mL`_Xbh!a%b(PC^#8-Ks5lwl4qpIuk-Xa3T%XeGE=by~2F%V2g;xLpR*v#1#<4OzF92 zH0mKwJGX9qeew!jf#8dxq@d6>fF!pIKb?WABaq`c>I@;|HcA&n`Id1(^t}iHRun{o z6mZw*qxdspemGHw+R>p;?O7xRBoNS7>C{ydX95#ssRb^f}hF zsh4OSaW!*eFnC-+;tR3FK>NKu>`S90;|F2rj+`#S@-5>c?7j$%Ruo~K{5|YO-x(?k z+C`iMjVz+GApO;7XBeZX(9fyTqrn9zjJ<-(9RnC{HP~q5(J}bl^+EH+@T??!gV?Px zjIBDU|76iOQ@rxcJYFpDrP#56tZ92hkEBjSDaJ)sLaos8A2}FF?wfT;NlI4jpQ~;; zf{eVU3d^VoQbisBqC8CJpQhN>al&O)UwzQ|( z+z?;31##P(ZN`66?H%_j;;{@3Y&=WfY1t)ERbS+tmQkUNM~Nlxw2T-y>bshKLAHMK z+`abd?#p7OIS3caCbM<;Z66RZ^hh$kC!;W9dNc$Wm$8qJtfQigy-+1lX!M!4@XRig zOSF0DN>6ZH_U8oX6Z=mT1*lHTpiMqb+FLi)@01|?dnF|fDa?5oIQqTA4|K;1P1u0y3$tp|0#9#9D9mef(!C((rg* zXNoj5Ea2SAUslE@PRfb$I!n7^nOPn&&#wfkiAlp>2yHw{E0KmjHE`6jYxNYRApomH z8m=~^6_cLxJGz%`TuBfO-;TqA5Kj1V*#`Zm=4U z<_f$Z-BU92b0ZLPSm|u48oo1g+{K;ob2<|vgX#(y?7Vbv?(U|Fz1xbVY%_#OV}b5V zQ-%FtAVQ+>)d_20f_P=5s!I^rHmF?TxtT6hj}yd8X$EBkVM-72p8UuG&n&+itOf*u z{Z%7~8)$xECj(!iN+F0d&*_YAX@fyLqAwNVQ!t&;_Vb!_yJ@_$9g6gMh9(xEoAwA8 zXrqwdAcwV2Yi7+X*sum&*Q zDRux9hI6P!VIPh_wW7#5b0b`vJ9~5#E(5GtLzy@rplzVN6(1zp(t(5<%0&%HJk+l- ze6onn;_(w5=@ZRFo+DalhA|XozZgIgh5b*$0-3^o8L2uQ3i~be9jCDWq#2Y^m?>R$ zWoM$11FYQ!b;V+!4s7pI$CNyvEC1T>BrKfx_%}Z?tq?Kp%z7>+xoAvA=b3!mw7RC5 zLgs)`ccSX==sc4S)1O|`92t0q^s^^m#|bDWmWzZQJ*$pM#;u>9M%b^SDC)nwIXq!y z5entu*2p%HL2#DFM;NHe+atT0!)s&LPVFpxJC`cOU4;5r_0Ap!oop zxr=7sVRSkI{{Lw zuMi+p;o#~eLUZppq5R8)jN=%gN3PgAnDf(zXQ2? zYioR92p&VE4B^oSA&<~!nhqoMdtKD=GGwE)_r5lympwszmT_@z8j53cUyZ#-%=&!* zwX4^CrCjNu#_yP}y0>mvcl9NEz#}`-xMZ{m8K(wXSD)D#AG>;kIw40F+SO+d?%Z>A zYh~GmhvTn_7k%gjpR@Zfp@A#r#3%WFMveT*?tKC+ zA@_KW`Uq2nVt=Olf262ogO3L;5*j4Vv|M)h%j4GtECpphMPkBNHfCMv`kowYfnU*0`}4&^;6 zo>0@WQS!@#el0q?VlhbLlL2EcQ#*?P=#*(Gg8Gc}vO@NB>@w8?I76VA3Kqb6p}9+N zfvXW0K-20LzzNVQpMLycEntdh)A1{_Qp^$IA_0(1(pyGhMkaJis|bW-nQ>?}n4T)f?$d}l$P?sG-8y5=Ql2Dg6gTex6 zPH3Z(l?VO_p)L$^eD(oB4xWOUPc1tc0R+lZ-u>K$YhTL({Q{g`F}1AY$T+S&*ywAI zjGNFw?Y}s0172|+?sT@}!7e*2{IHLphJJTs%B~B}7YMi*_5;3yIzbDd(PsrQSyEhN z;{r_zE?AAUsrncKMv2sYph~X0PYBbkAVWVQH1{aAd>8cvXj+d9rDXy1XxqeOIuFRy zK(P?)XG+At7E^i%y6?*f!-}?GHJ*p7Cu8Cb!W1K5MN;A28PdILz6cUCV=v>)RJEpP zuHPq2ky-P%P&LMy)w4dIs3UB2Y=%AH)hJW$|8ZdC)UchU#*EUvlaT_PSQfu?$VZEI zuFC-qSFeavb-nu)1G>6Pv>jpQ9TYSa-gO|&2i7KXfhj#2xgZK$%MNMvfiG}`YJ9OY z0zm{e9~|vRRl@;a&oF^EI{IR;Lpj!ln!Cug-PqY0-O(Py>o#MM==j=+_9)oVpdYqD zx?=O%m-cEKnGAv&1g@_%4ltBu2Gyih8tt<&VY#d^o)xL;(pGjNR8Ef#>n_!_WoI5I zu8U|wWyEDl*I{VJ6rpZOZaTdHA>wSR5#sp~a91S66TCoDBu3tmO(QsUxgj{Ob4_%? zDAjJl@|f^$j8vTt;hDI8e+6;kdpS+2jQC9H;SnfX0*loIBEnv)5z$K`psPqkv-}wR z!GzT^O?@g-bs994eHQwT6VS(K24w_fN~<4bTav2Y7KjW-u0~`JL||DUvY>UUkHHru z^vVV*T7NYgsENnm^F9_g&DccU2dc(QRA=|N+}#*7$F_q}U^a_DG-bsW`DHZ##l1L{ z3ip1%j!IZ3BLml2Gcqb3Xs%6|EFysH8((9Wb*JiXy7%SYd@N z_4z_`cS8|yOFjph*0ZHfa7$_*9A=|G2jN3LIN#Cb&Km>`9lxIySsw}{rdA|?O4J&b zU3~J0-Yb{E!j1UkQTyl(J$h#bxasawW_94?5zTIO@^}+0Or1Q^uNgjhJciTw_Gvrb z@ik+*0ode>?^!k3m5|=A+SYN_=<=uO7MQ9pJIy`+TBv6PvCWF*oG(U#k}vG-Om_MV zxt#d?bD$@~ctExHnC9IVJbEXI4)6^W@B}KGbPhtg^EBKQ2=t%+`v1}_;9@$&^4DMK zRMo;F`wQ$fcP91*_%@w0F$wp`=zJKah9r0Xn|MtCknmyHX<)p=!$WWsHe%iuJp=M) zz-yzRi!m@tr@F?UeCE{{YL4mcI^=eAy0Csx|1;3Z-{ipToO7A{UTS2bSTANR`v+{S zkT{nr*@1|LzYXPiCw&EN@lBz*D|G|f;$NU?b#3uEXq7+2;)S7v|H07O$DEmnju2^d zHr0rdgJG&}yskhFLH$8#Dt-xb;nS)w;7`(&jybuFQv6#Y9qhmf?+E1jCqGoPF+SQH zY~ziy<}lOrYNUDyXa+YF5PJ_&xPD=Tg*^l>juL}_ZQ33g8*erF;v(3mkJ@+!ve`Z# zhjsU6d*eS9jN7#t!w!#~EbN4%r?^{t4n9$)b;=yP|CD3JgJ5!bR&;p@1s0p82jDu) z7l&A!(b*6Y;sh*i8d|~g-OPxH^BbTD#6m#QEr-KwS^Lt6&c%_S_Q(=1YJzF zraB&2piQO8mW#IRjK}S@SC+v{m9@DYf1QQj=+_Keo5v17sMSboxDhiq4-w4Ker{Zc zy}8V_v`oLic2hSvU&h$i==2RP4+pn_HJ9BE|3Rt22Imc?dH4Fq#^5wyC|aEJO_{P* z%-=?clf80>S;Mq#P799gcI-80b3PxwO~>XG@sHSGqf?DZ#=`ZysHoAo3LQWA_5{6b ziB#_1B7zKV!<~_B_{y&`GC|i?Xkh@I{Ta@uH+vsXD^6}K3Lks2B5=OjfYU0y?glb) z@Nzsxufg*I_?)P=%UA1*3{becJq%{f@b2awZNfD4V}{mrf66p^vueLPt!@BAAIV|J zQ{UaBM;IT3E@D;(-%`QRR1A2(UBl1@VIDy}LrU`jocSpipj~CrH8XbALkTNnyXv2C zR%?D77<>Cp0>)Yoj9lGVdlw9t-|2bFL!krv zJ&moo7KC!Tcm>~N(!~CL9$7Ssb9NRY=_J~7OkOy^cc4`Tdrq^8mdL@yXnRg;7XX!@ z=ThytGXROoo;wqNkv&JhX4sxvH89%3OS9L&d(SbG?r_nhGwtiJ>Xv&}ozwNS47;lU zq-pz7(UW+EY2LlzF*58NNEB_m9*aZ00d_wbfk+l!W)?GT3(vwOYh$lD3-40+HXRGE zj20XtPYp{}$wppR)W~~+b_+U=!{f#p1Vc=`JKo;W!bH5!-guTV^VSG$9=hSKvQ`G- z*~@WOkn4yirv*#7oY$t_Y#=m(>kSsJ#fab<+%m6&{$mCbn-6#5RMuv<;XkJof`GdR zYkfWl0u8a)uYah(S;us^7rQ`f!n$bmC(p*q^jFaROLcFi+nfdP0bwN-EP(e5&D}j` zzyf#xnpU>}UI?x77J#rwZ3i&e(WHD&WU5TW8dKQho$)4G)gzh{RlPH(+o4qjRjjs{Ub^sZ#Yn#b2cA>DLUa`X{u&&76Eg(cF!5HL}}79qN8}S?7Hm zjV!~2bm?)^jADmum_Gl0VvikB?a;hS zmHARYocqZ~+u;D~yut}yvOHL5;0k8nX56k$pO;f3e-V2hujW4L9*FZtm@@qGXL^b- zaPX4l6NLs-n&~2k-xwVpz~^&0mBG}_-~IwF7UmNK_4x{FK7iKiQTAS+1JKn{|1SjS zHr-XDy?Cv{it69Vbi5A;6x}`j_7{*z1AHYvKzG^L#Lk_a(eZ1>c7WsS+KCRlb31t> zYQcv=^{GM26-+Yy@IzTB*d(Or$7{&2S=!Zq`YU>=w4%H6D?*TU706yx4JEfp{fAJZ z`cFs6-O>P6QKAN|0VNA5by^ul=2EGqFaFEN$NkcBLiqS#HGF(l>OX`J)qgrZz99`z z6(4HQ8t}0|8vzo7M4z>NSXxU689%IsjNeK9hmfKAPe;bWPYJrMDl*idH6UXlrBf_r z4k|Uwq5krj<49>aA$%N84RTow%Js*IQvV@*sQ%OO@ib|Gs`yZY)_{+LL}OUul;T@L ztW=5xKE|$)797IZWz{g&lKKx}O!eXC}efr1?Sdq6}&aN zwK+g9dav8j8XsD>`HI$-A-MQ{kxEh2k2~AV=;$11j6!jD+jypz-%So4;EH8vUtrNxSIrpfDv>F&dx)QbHu zVVDEqEr0KZ_Td_kLv;sC?plvu_tS1r-1SE7y#lnm;3$dI{Ud-nk-A0n9qF*4FqygpS2DTP}JjnQ-;`NTWmBl&6NjsWM7j^!_crXU#Fav*y7f*#eY2ApccL}m3q zQ1zK5^lh#Xx=|yoPuxfTXitoc);)*lPhq5kJ`8yrbpi%1UkgOP;w_3!tQN>wNK>T+ zg<2p_63}Ixw-j{V@ED{V7b?9c3g9kpOO)Pu0O}~c#p*+I(RyAj5G~=$K*E`dxmqCn zMy!IsZ~HOx%XlKHNQ@E^W_hQuiT=LpWW+RLe|B_)oG2o?*1-|fw7k~ARXQM78{ixo zsB)+7SH_{4*HGL5$3^ES%y4I$SOtEHO88>+gW<78eX3S4Lpai>1&#k^LXjGsjtnnp zZcI`q;@sd@35h?ttuT*(L{d$im%(?#Q;;}IFEs65Wo_dg`v%r2@A(U_V5w4O@lPbLM;riUU!Nm3Nw zrcOjf!LLg0R@ZH;g5U!l=Z|l1j7TctH^^~iY8O)@E3!1K{}zT-K}q~d08dmB2Yj?w zNZK4chRJC z>@|szwb<%)k-Z*N)*APnrtms(b=Nq-vlaB-ytnykzCpbK8HFHr!T)su=BcYm1+D8_;T4azE&7s zg=u`10G>FFw*zQzY`r{<4}v+s#FeJ8eHl(;ej`p}eoKYIVp43?W+$z^M%$gbbFlJ% zh|1t)52q)3P1z#E*_^_3`XSGglaH8S8A zg^TVt{zGI$NzTvTQ75AI)UT{YTxn7yanzDu^8gBg@@p1h8!M&c)_hq&xPm_Xq5$p+ zR!I!u+W^`deW=C-!s0G|4hD&2Lgs=9{6^Gx{B{u6H|Zi|Y1^p^sj+pnk*@`p4Gocm z+RJnn)8F=+%1uRfSJi_!UKa>N&zs!Eb3TNO&-wR8B&On=A15Nz)I#S1kZQW)|gt|jq5kyiD2PSs17iUOFt|CqRuJnfbL-5l?|wlvwe8*Qnl4v-#*qDM1=;| z(qQqN@fKX}*PMW#<8;%txcJLwdg$4mf58f$Y|1MmluA-xFQZOG^`&1~)pUe$Y61#M z{>@*Y$SD8jz@WLE9W;!;5{6MhVZBKJPgGd<0%&g(R&I!a*K-6+UZ!-;>)|(|dg8ag z(}j>)ns>VDMvuc&23A0h)yV{d(wvZ_1xY0x{_%3h5C^We*AIcFz29D6=T&OP zLe}TQW?~mrtb;PuS~CYveIh(Dfe1RTct)hDTWGjqMgHt8=)2UC!RoR=!|XKN!Aa;DPbscHEx^ywG0rnWanM&Qy|EgRsS*bG0q zJQfnkFq#7SW>Z|Nk5x5@IT&X@isIDI*Ye>!VdBsP8A}+BmW^hlsVf`VMbKDESD=z( z*$oGQ=3F+_*fCw7f|~<&XA{soE*lNPph!0O?MWybF)}h4I!Voe^VokiS=mnbmPZA3 z#zKm$oQEaa&YzkBe-vZ|?+LJ%P{750qiTx+3gL~I%?fBq3v7I(*3BpnkxS~A@n=l> zlJkVgM$+@9gaK;lc|)XWH`4PL(05#V?j{V1q=(-gA`sSby2RHY9SHAAhrgnO;1b34 zo!}DvZ9675IJr;2W3hRqIf2Uz8~xnri(C*#z9p59mO+gh5X|l z;i!qnqMv;gJ5FFZO*x0G5F2X48SYu)*W<~8V z$_FnSYEIl-AJeybM$}H9?b7HS_YqT{CQ9uS@!@F2b8Mt(H;U&(=sT`>jwB3<6c4{$ z@ny&F4)6_L6Knd+v*p4SOKaI3qpopb|*(%$c7@c%z5>tU77{*$q7nV zFOYHdS!sb>j)1Q0Z%z&*MG8!HE^{7<7sEnje{%0jD*NMmRj}iIC`nte)++tl3cv7} zcQy^d6XH>S_RHPCt_`ZTQZ@q5&B+8%^%!^@z~c^U;YV=yY3Be4@51%J?cKPKJc-em zlXuQEA%iDYmg`8VEEj?HqD04P_W+pg72WPRm-YWrAkW3h&_5WjtE_&G!8_01bEPr_ zBIN6EEwf4z{zugTR^Lp(~24;^1S05Mn9R4u!N^HlLTZ?sDNX$d3LG2V5E z)rL$X2ZQyFP<4*rlOSe)>}hCD@^w_7g8fh=C8>_;X2Q@ptI65Ys(;~l=EeF8s1>P^ zT@H{|yp+21=PPfY#E&LjB!DOGpIif=)%V&SfjJu<$kYQv)q;mAG*_?)sV10QHC4S# z7D4Q9Q)IZPrnMu6B9i2Yc?hooDD-AxGfn$tW=a^nTRIryml>-8q!O%GYALn508{0e zy&Qj$XGXu~*)uz>+1^&4fs`NEs~^Vlsj#yyx@ma6w>1K{FP$toX<;wD@YjxWU6t?y zuyIK<-M@|Kps<+#`^(WQC&7A+`-^T7Mc1)Q7&?#ZNyx6Y@q){iqLjzOg0STdlF7jkRk=LBOHv0Q|=kd#4KU?%YtP z4(c_C>cgR^8ygck-^4K?oR>=73Krx6L=cxxt2>LZO<+L246j3NRl$IKQ2IUR~fC>$W8ke>o`|czldHF0644CnxIg0>mk}moHy@8liiH>Z@{sSS-qG5bW1B2L? z)*?7_@N^}!j*A}FBCu_WYZ2Hs`C0_@j)_9*bmmUG0q$JhBU*c_q!#^0-%?(h-U1lsJY&yxPzq$wUX`x_I@e(gj}uoI0pFb7*d zfmjvW`bl`*g{>bGz&!=I1Tr~BTEn}uB^ZOnypEC9c)dBXJG&J?tK0fvfGW53d!giS zOxj62Mu}8l<L*G|e!q`i*!DH&FGzvf@5Pgzi9`qPMB^H;0 zv;{8LgYc{ym+PqF`R7Jk)Tha=ejTx(_-dp^=D=3cIO$a~(*bxwXJ-K;K#4yQ|4BW8 zMZ0JFpZQQ*(fS zs9X6`s|)uLTM%*y-y0c-n}6rePaL970=$np0rw(b3{$`2lOoY#n4dv%DJ3Tq!~C3p zE-SS7j`ODka8G`Vg9r}-sH4#mi(&dC%jmG4R}51NFBZdOD&|gf@*D9u62CnX6Lqxs zKpkkTWM{;LncgXBq;YV)iI~Fc&)yj!DT;~S)yA0+TW?+ib*BK2yQyhBFT)(T(-LF; zRzk{PvhqIWW8pE;O!i25%Ue$Hn8Bgh7#b@Y|D<=*V>F zq_qce!7o%3mum=P-`fgxkS8vsn%CrZADPgrR=%j&Dkus2@oQ$F6h?NnnjhEGCjlO1@XnokKXh!wfaZ91n@hE&MrsT>>;s=5 z%RW;!2L`eZ^qRd4{^RS3SK{MW!GDmq&xe0O1TAs0rPwP4vUkHfW|1^2wQ-kT`Iz=c zFs+dJCt+%JSN1dDa^>*s=#uOmNR%T1O(cri`rfz1gd&yysbv@x#Jvu4jC!@p`E^$` zu+lFioVw9q{JXYesx?ma6zuM+=3_M==5TfY zA=LQM@{G0ZN6nQLU*MP;Q7g6Y>0k76}YyB4H_@y*kHROOcN7vYaU^ zT)_|+@m%<mLq?TQk4U*%6Rfw+HeiMv!y#2k6wED$K2yl)Vo6UqDbUXgc+8d)iUms$P8inQZA z6lB;s7q|d(2c^xJJ9(@=E#G{xslC=_?|~HIe-hX<5J?gKf&k-Ep;NH=@)>|rE40pC z`;5O$*BC;2=EeJks@xq?wRB}YkujEz?C*N@q~~zyAW>I2ZfF|Mk~M6Qe%Df z;}?LZ2>;8i=ZvhHAW9Zp&+RPu$bc?*jCc30(Y>L)o>jS)zaQe{jx z;dQHG=8;mK+Cr#5cm|VwUh-KZZ_@H`pvvi@{kf}sP;?<`m3haCF6%Az$$SJkO3R&3 z==U#k*YA9-m*x-u?X&1upldkqO7oMBB!D2RXcJ+8Sw)+yLqZ~Os?>j3R*~x8x$bu% zNU-Uie)|JBNBTh3%YM~Ii_MB3z0gTlhbc;oxm52{*RtSDl9*y{P-3qNZzpO8B)dWy zQP~a5mnlT1Ttt8o`Xf1(3`zZ$u|)Ns&XNh~165g~KH3A8EF+c_aU|h}oEJ;ODdWcr zs`2C1QvYTAQ2nR#<4w{Bs`5j9vOY+s zUz0vil^N=zJz&N%ssUFxIaGx>tw_ZCCw?Xkr;Hyzsm71rO8uAdL-n7|kCmSj3}97$ zsE_u5ABTzFmo!uIMcg%;@-KXYd5SdPGLD@{0Ld2riBkV%98>)}99x7Qr!imZ4}S>f zNuQ|7Gxgay@hlZcr!QOIH9Hi(mE+?S7^e_+u{6)m~2}9!mUp#*O4guU1m6G`N2LaRxpeE)p`sCF)jP6CmH{)>6 zx_A*x8YZiBqmF$U-l)TG#B?uyJAes}dIijTKUl(IT;Y=w)6L+D~dr2?h>*(>3D;ric|A)G@x8|f};TAsYNH!mVy^7-XVpjupUN2A3#_QvtL$ zN+P(yRI3Tx+G3(gYQnw@)das0)dat-a-}f)FI6uh#;>_kHa_Wo+uKR^f8!$JdPGo@ zrtb~Zi8y`vRf3(@ZL3Vr5EoLe~vJ`3e)%&0X%UUzX(9*a~k6=3lmqG#`a}6 zjrol@jrr}#XzeMCS7_@8-Kza*?KRr&)SZKse=G96s+Gr)xj-PW-CQATRaZB?MCp-S z#{C1q@caw`S8UO}(B(b_nj~II8bZbu@G}9y9(q0dz(vFlMMjjQJ-3T16=$@)Oh^1>UF|Q+qqmsj9+!Nk*@_4FCsnxsOol-H0Q%FgXksB`4BQb=f4?| zn2IZ%{}mSzKMj~trstBh!WQa8)C&BnWJ#pkRL~qlC`!eeW4kb@3Yz0t0(he47z5DW zcv7O~SOuDcDJnTq_GRcu@f%UC@Y~*98f+C#@A}lkceRMGijuBbdO1o@Rfh~I13K|L{e`?~YI^NqyZ*orvm7zp|={)0Bgog(d&yQz$Y@OXY6q<=H{5 z&S!*SR8Uy=3*dni}-8-yQkxRo zi>?{A%q?o+^klLp<^WmqnVovXPBL;|fI(UIoqLvT-M2P$V1tHtA+zDG>4&9haUD5e7xl!*9i#hOM-SuR%Hx-jxo2MVELH z@ehMe%0)*9l*2F62n#PF4qN+pCWpR%(<4j^FCs3-Giimq>PtRLdPU9b*EskDmQz}3 zWG{@+GUwHoc4-#K7bYlOy+Fp*XO9=i z2VBvZo|&3xn+$XQo2g4n#q?g8O#DfHhZez&+;5a>bR}^sY(H{r8^nz==D*O+Z$2=P{&2 zI(MYfITTB=QNW{3>5Y8my%Z@v`~g5f#Q>$w{ec|;jYA90@xORZ@Sy^DVgT?&0PRh% zSQ;g03U`ZTfniHvHr{P{Pbh0^fZ7tKm%)-&#^^NM|^+=5|-a508QLVf7WJKntC zT6!9s1yc{f-GSFWG5=7QwOQF&u-gRySAB^Gv7bvo{_PiiRu=R?ywmZE>9z3y^j|*i ze{Fz)+o4`9zu;H;v+wAS$$H0~ z187O{wA{X^Q;2TgvUHpO^Ky^C$3lN8pqAOm`WfQ2LCaRbc{#^Tzm;@EZGdlK-!ayz zPv5Ynwtju>q8+u#sn*TSk;ce6x;l4a2F`a()ml4h?FO7n8o|PAwb^=ey0*Qsqczn~ zRq28{--CTrXl?sgYxqWW&~kcos!<$cWu=94f)M#)b;5x%T#^I~cgSd){5;Z<;rYXZ0{DJ3bRg8*9HHTFrY zj?3wR8E^O}D3WJgjF-YQaiz>J`!dY@;y2>HAiv!<-xA9TtuybR(!{D3$=E-_eP;oI zdLnTF@h~;*(d`5~5>V7@+F@uKQ)ShU{$Ajfp1%&tYL2vO6L9JGX#M5}D!fThaq$1+ z&33!lnjjqqN)oQrBOT~PF?v^z{)Gu-(V@TFBTe1VU)62;7eU{p3Y50#pGz1Nh5q>M zIddnjooHQj0#gWasWydfjZhb-kd8RdQq%G+{&knNrY~sCOpKsG#S=b!cDLTvMO;T} z^)WPvyR=2L6-8C*i*F&9nhuR$ZyzwxD0uXNgn?*@dVi#;D^b~Np>c)H{eOVwafy02 zVNfJd{5DQOra>p(7UTnat|lMvB24`Svuj{0%Evx&SIU1Tj7f{ie?*#gBPzduzT=|u z?}R~-sPNnJJ5a2cl(z#B!5*uL$d4j4%85wv5)zx-#*;lsFeJ`bK&Nj zwNL~$Cq6I_Pz(-k1U_WFd;`(2^v9Nf0oZD_0H+`1vZ zEx&vN@3yd{>l~=dkgspgOis3@;8q7S0De`oul%k@|5nX8x-;XWkxM-e+q@kLbkv8Z zYvhjM z+&EM>_-#l0=+cRy+CY7*-KyO<(VCs8fiqB_s0~5G;h~{5wI){2S9eoPkJhJa<1O$& z+qGe6(^Tcr`(Wk0voVb>X>$se-{8D9TQgIGwY6)R81`dOBE3D@ni(4*M|XPzdTCGB zq4a5ex-qhLEiTa;yJ~eLNhfT9yXIEdkJ=O&h5xQccJ21AtpE)?`V+wT4guJ;`y~tOKL$`|VZDexBDqkr z^{I*7cc?YAI37d>PGOR?J&cnZ=}0-{hX~?ihu;xj3w-bs!Vb^^Xdh z$@Wv7WDtQ`&a6E+uN;UFoq`nBWM34Kqt=B ze*sW;rqXu`XX>5VckuQWx{>L-@ar-)bNlSbOig%U!j_cWFHw$`%&cq$GXL5mvuT+l z^J4;`(#iZ^0(2somwcr+WHuu!A@lwV1|4DFA1zbf`dFXEI4GlzHv-!bmVd_NdzSvW z6yY9gZl9`8?SeQG-F?#cN~3E+uSVnt}pAL#t3oA(@i)rEV9Ic)~*@X-0uckKm8{R)xl?ykKW zeoT$=sz`b_X*`x;ep} zF#h(tzF6;t4BnaON#+R(Q_nLv&4DgWoxfcVB3l1<6Rc0c;DX_WW%fv8y559!HmrW3?&kP-Yodm`LG@|c2ZF!q zwXMzeaBB*ZS#d?KOfT@c%U+lP**_xQ{n-aK`Xk?-n!iA3aFzl|u?rpu+HjYOP<}$Q^RF>I^by#Az4M{E->jJIMj`rZww`Yyv zX~)4nx4Vw5h;+K`3Fx-qtH2t^F>(a_AhT95LlB(d?hgr@;HT6Ooa0pzn~8bl|nSofRIX z97jTHJ*@e;S${t2NE{9!bmbL1zFnJ{Xx=o_s9m&`J%l6p^+UJ4)@#6&%j)>8{%jkM zSaJ;AIfMcY(FsEsEXw!$7Tu0t;0xr(Xay5wGue}hY{og;Xshv;~?gI2{O;!%#-+h4Q@;`gYg670EP2DCLwx9 z*$AuAMWs5{95*pD()n_TsNS$$#wybHv$D;&Rr^W6Rc+dS3V+eAGX0V^ZAokDP1__a z%>o3l~?k62@6AZ31Z!!{jNsd z7%bnf4OJPQU)iGqPXvA%6WIDwofFXg+|e2vYt3R{vpGIF*1)@OA=CxACJ+GAnMSKq zT3WJPugG#;RkCE)B7}-7SbU?o+?~UX&-gsE;K8Y$^B%{rci($7k9_aZJcSTmV7zF; zO+!DSD^tOJyh#9eWu(M?d>(*ScONeRD76H}`KNZHS-p``L<@^$yfyvtNXA42O9a71 zh69qtK}?SHPH3u(zwQ9?|GbRp&M`TjZW(KWXo{SDJ$C1F);#h#Yn}pU`)q%~^58Fp zaa7>%n*{Jg{=O4Hd&6H7y&H5!8E_dR5^sp$8gLmw?v8_`bNR>|moLS;E~bY1l=o=U z=6FY!=eTaE8rlWnmjOSN1)uTeDKLJC0t}e`bzxW)nEq7(Jdx?&1JK?ueU(vvdV~SP z4*>2x5WzEGID&jW4pPQ&>pz5x#q99?_FItk!++qbDxcZYC)NZwCTkNVRp8#t_zZ0( zK(eH@TRCy^f@4n1_Sn*HtZZ~54S_xfe9h=G-5DS}hGF3! zq#7>=C`gM>RS=e6Gs&`1{7!$igNG_D{MK0-N* zsIaaDsDcV^e=Iu?*`D` z=r9@!_g z!J64?#gKU!(FA5 zeHY%(QQIGkG!CeU!tASkylvqjjYL%KQ!zQz?4b5NVzTZ(+874X{XrY1Vz&R+fzq%s zjQ*GTJ_`faI^I`xF1>{^_lo){3IF30QfRho{Hvs05Zvf0w*#N8)u&rPK z)(GG({YwnMSpYhJ2H-H@^eGYK0t0{`C&odH0YK)3det3z-T>eSRsmE617L*Js0?3? zho95OI?cSaq6NyqhfFd6O~6$dfDC_;0ia*=YyeKG-&~)r$25OGY6-~pF1=b6d zzr=Kv)AhF_|CFvbjaWUAl7E3_u;Ex2O8)uWl~MA?xQZpa72eNL$uB1*uSc2J?)@OC z&(U9xYWL$%cWaj6*-kq5NbWtJwqO+>YsO^E?#3_oXRqVoS9J4_1mHih*w2fWe>?Q= zGNVMx|23jgtmXT2(TUAS#GJ?f57>>b@XaG%;hU$R@E228fzSU50rd(h|Dyu9tB6We z{ucqXH!7d}ES&smfT+nG@Be5JfDc8`43s~Dd>{^Dlt1z`)Tu5J^2#4S@D_lop!|&t z8&%?~@bGh5`I~8LB@UE^51FL=7ko1o$z64B-eY_5=;}{G)zWP$gmu=%`?-28I}~u5 zqmfxkMh0n`w=l=TbU0iOH)>&yh1A|@9XV3R?@>tV!^2R!XPOO6q!n{5I~%{-pKV}j zSF|t31Mry^_j$1|7eW6nA4=@Y1&B(qec@}8x3}OxVz8l;U5CKFRWXlzt74vlRat~R z1xBSV;9J3{JWBv~66>VsJKZnZc>1W-9DI*(a>R$nd;ROMqdiztV6eNKE|tTL#~Y z#s(7(+zk^tl;;x&6b`0I*oQt9?&o1hTD+3^wG_!dfxTiDn3eYI9q=q}35C3?%xpY?Y8z|%E(tb}D#nK7s(IThCx#78sLg50q|F|}@Aqfl)o8?JOzXhC zC`&}Qf3|d+7rXom=s(de{~S@-kUfn5oRur~+u;;@X?th!Hvz~u%jS`9md#T+y0;R# z39+qUmHPy6SFe;<<$eIIZk4|YviyzL!L%!MGD2SkuFM%e*b7zZ&%8JXwKe#!sR z+dIw&eu}(?wLnO7muNWOb&9O0x6V9 zz8HUzNv2=(Y?4pH#6~!=TW*cLBU5BIHCQhU@e02~m}PUf!6QJt;>DlKcF_h8F?i>u zJ-6UvTISQ758!vGd{%e(Z?+8NdbAnuu8poGK{kcG21fUKc-F1a^%?HiTlGP*8#m|? zMeXhH7&8hdR#hPaI-L&nVOq0oI@t<`T8)t7qIGBU=EektLwTjzRUgcW>@LI^_PI6c zMvD~tfyPGf6gk|`=F|(8oA6r#=I1B=W_E7w%FqZ4iEfilo4Y!&h=rr6CJc8ESdPX7A>RjAW zZoDEGEm}BT*(gA7S@$R89_N3o@T^=Jg1J+37ER?(#1k$L^3mwx{M;7ipybQAJQrQK zr!aV@y+>R)f8e{-S+(v?(p|x0kVsJJB%LKk_IucC-o*^%S?{cbk9lsA!#Nbeu)^s& z2}7&=vW@ViIXRrB?$LJW0B4}imr_(9=jX|K5K$lVX%$b`O)722^^b;?+GBsSXZ6SRLe*>V^o!DuB zQcf(+RCNw-wXvplkZ9mBr9iU-598e(K@~ypFrEYQnmC9#wexCds(cUKLGCbK{v6BG zrdl(ThReCbTF2!wOT6~VE3!wnzK95bRQMubo`MLhaKQs9_=+&l3R3WZ0G=oX-vQ9x zNCD>+c;gHN0T17OK7wr^2nh1&I7pcwSOXPC2F2rBjs#jA;^@46@A%fje>T#uT#)XL zZ>_@KR0ON=_|`$trVG8bLI6*c*rNcnHxla|XySrNTp&)1!BUVvq_2E@E2Mm}s0Ct; z-CF7D^7z)8@bH%J=6X5*-d?TWZcsYTWso#ZN_=&(KX!wv(A}HNE&>{Aslo>A43UR= zF}^HZI#$|;d>VIUOvx%&P_y&kecVOO$k5SIE;4j`a1IBLEI7EF_ zIGL%AbiwUxjW!1Np@adJ?`t>4cCZH;X~m?>M)14+*>)y@v?6imSs;{HK6#tPeO`i$ zH$(p}Lqe5|6xBh-Hlo5F0YLdjyeb{9e-ZZOdu`^CZ?er(Fxkb&>+ccqNmYgt|e@^D84*Fc02&UxF7CubVaCAZ4;X?1ldF0knDkLrVM%Y})*B}(MIDq3P+Q%7Q1T@AQ-vYPV&rlG zNsFSgKXI2~m5V|b;m9Mtoyuu39C;{%@1Y%Kci24%Mn0ZLAesJ3!AMJt>=f)ZAB^;6 zSUY$AL!OJ|=52^zS0NB7VP_Rzb|8Ey?&S&TW+o7MHgtfqP6r|t1t<=-S`Q-X+?`)B z5V=(sVBd)vuBKHfJApmwjTw?X9mmn1U8;v;jAJ|qxo0-OgQ-EJ|6L}%vmBqN5ahEI zd49htd9v#fLWLkLzVQ&`vAKBDRgGJwO?XOKIxZ!YweTapJ8K^K?yPwV?(A}>!(jb2 z3*CiIc?ExVS^#&=YKcF4JAhXAXD1UC&{PK^RR_61WInL?j8=2l?6&5@&2PjGeNLN4KBvu7j5WGF2CROoFqR6e z{!0Nok=6GBXm41}u|{v40k1J|_@)T90k09{o;XN4uTRKL>MgLbzOyy8t7u~X6MQ~k zw|V5V+dKt!9~g8RaQvIXh$?XWYXW#8$Nv>Td&6-)uN)3FU^*82`bq@hfawVGr8r1B z)AKtGS5CuCqlV)NI}Kj@aHnC}ca((q;$WWQ?03NfSy%cu+^ZmWXAaRy1V5{ZWmiVDa50Z>uPl~g$Hh4{KK9#mK7@ecNP8yQDOHUp!{8h(vwC1h_Jph zZXWsO*gOTzCKQglU%+zrf5wD_Wole8{Bzf<@mo`vr^f zm&y&sUs5=pRA!F~$L*xBlUF>#)j*zV_X@|ktp=%={6VAYx_z*GNRwI|agsYIK~{ zDEjS^CFz&r&@u$a0ER%CSn^$ND&SpvAL5KC;qjR4vkTfhZ{)BsV% zJ3+U@K>)6gpcz;N1i2;-Vypu4G*q@O5%N|6Kd=R$Dp&<0!owK!eP|D!d+W z)kPri7g>dS@Yg(Bh4quIb~AtEl=!Rz8lGV|!31Hk-l*GZ&~(%b+pyGjmNO6UL9XJ& zTn*QmYvh9|_daaW8w>Hb+*RlKd*lFvM^jYsI~yb0rdnf-HtZh;)rZ~z$j#9_9p-(9 z>6o`rN5Dk7R}&#>p+<25VmhleCpg+PKaYbL!-&ia?TtJ1ykW!-d>f!D7)B$kl?6Aj_=ylc$3we~Mzk}{!M$Wxx!<9hhV&mxw zmzZMnbOzrS3?^>Qx>?Gdm3dNuP70o~uBY|pb{>(W=qp7NEpf6s_8OFP_+5Awx937q zOJ<{rWrE>YclCKny0}D-FKXRywZ$FKme*Q4YUG$G6FyqMxl!BRfNBn{n;TP8&5;rK zxnrs|-UoFanp3rr#*X^T*mUjY`q)gPZJdLRc+u&`AwHHxVm(OR4q3-j+4}+D)Rpsq zgY_Qgr+d)2&kkhB*;YBGj07sr-n)F~Mc9?{e-|si&==P`;C*QN*_a+MxobUA+%I~A za`6$k;0F+Wp#bg9`4U_DDgbqsn~Uf>o#j)F9gSNi$C|^<>D_nI``P-`#O^z@@4y$c zn*pdW(Zdl2b82H>P%1QQkfXGbv)mO^W<|$)EJ%RAMs!JRJc2jF7tm}1@Gbb0;+xsL zxQp+h!IWl(ndtg`h{}dcBL^h#qwB|90-E9aTvo&tuz(qYH5+7K_Jzg@CiY?i zbf%(y0HgmTVdqSl{9TIFzc5)I&|iQLEW$Rne^TvVrk?$A^IVBvvi(H?+~s7+WcfCL zI+I0bZ_j16@GXfnJ`^4d&1n8CvgBLc+3yBB{Op5x1Gb@UvM^$QAB&6{waJ+39fc*) zJ#`R%CqPwjPtD}0VzHkka12A$6w@}(yw`TPER!@l!~MIj$2B% zikQ0qJin3aSuMG2dUqWeH>}J+^>F^7a>re{qNf2-yKqHMW$@0fJs-Pa+UE1Bxo()Y zo`~6sH|hgKOVDPi z#{0v7sfsLp1b>n7reE`Hya$J;8jvJBvJIl$N%s4s;;<6;)Qgx>zh}ZNmgHB@J)rbW zEfI#r#X3|BC_TvFo#*U%EACPuZ^--H*Ql%DOtJHb%?X+FAM-%EHs_Wm*^jW-z??q- z&$>0|g~H%iboFgAI$zdvX=jiIIwy-H*FThZJ zZW)Tno-O_!5C_UT;6H`?fv!3?R(x+u8qsutMjL24FNXXG=s(erABL!G$X4S&f+0W3 zEci!2u^|Ts&5vAO#Q=8Un|1TZH|ypp%&FC;H}2LhWNB)hE{vptkzX%>yHZhN}bE&Mo={--vK!#4q{9`vN_S@J0Cb0pemSrBi6O8hBe0wF z_(HSq_tp#3U-L}A-~T{sd$vaV0N!58D!-kI?yc^Gk69hlRDH1)7Q=nt8>qCK@&fLv zbK9Qx48p;acd%pOf(2`C-~C(&X)f+81j4D9UW#VI8#~`Fnx7Wj9LuH-47CNZA znhK3`2Off^c%1;?HuasY8x_zWR|0A%Aj^mB)yR^-8+jf)>((1NxRvEq2E&wQXbs> z>IDnn1Moi`&gr^C=6v>X97KQiQ9TxU(zskT4$QtVA&3nhvTVpZF$3AP5GW2-1e-pMoPP(~T)efYL6u^N2}B%H?bDv2cA5l``2+1WdBWnX! zPk@VhJqFs>)$pE#8`jj;uZNVT25p4aKqjzgGi-HEw6M}s-|T3s-LN7ADY~_t4Sgru zKz5ruPF5E3^#4g@WZBE1vpdwD+CM;B>s_Eqcs{%YG5Qg80w37FHV~*6ezio6(Z24O zC$tJhM0 z8Dh{--6*0gP$lRcI#h#69)ExK05y$k>;tqtHR_uGWyuB=w1|F=$#rSFc4L zO*W>+o9#A+6s)I4CVYAna!Em*H-_!)m{mY{7@aCmz?R!^7!|@0aPlvKMw*dGqaHJI zxng8(de@{X_z0H6d&ZO?hQ2-lSe&PugFsxrn18 zM%D8-kpViY2Zf-L#Fi>Pb8DFKH;t=Y4y3E>nY9ATB;*bHfI1ssiCUfe=~LNej3Yb( z!%?w?U*NAT_>6vSgvB86_SB1*f*(P4`^E)Wb`C5a zjpy%Pq znBduy5TE|+ERB{?E-`($VXw;=QS%8*O=m^>HFFYYsxdt?HPINU)$vr$NOKsEgVm>Y z)n-Q(Z1pO1SI~}8cleE5t5uG#s%{b zu8xIwmr^(da(yR8sAozK#%s)>vp!~q!Y$XaV8DhHr!l4Qx_KL+T|3O@M?m1t4+PF8 zLsVFLUyhv=FTJmT*Ig{VFB8CB&!A-K{rdn~-K9ALplo=fZ0WrfTEfyB4K5Or(sh?8 zIdnK^o|KdOh@9|g$yE_vFGYI>zpDtoM76S?BUgEru<^A=1uwEKfG3jtb^z@S$yXUK zQjZWlKwOGTM1Ne;^tMFmBm$JPY|cx9*IE80ED7!wxKV+buMxl#nfaGJV`kElK;rCv zgO+QfTLpgjZnQfv6d0_-=yYohm9XQT5G>|UgPwi-H(PR=exHnx9DNeKQvEnI1st_& z0xHBycZc3^nsY{b=j5xrtcFQmw>m)xc12Ec8k6r)(43J^?Y=+zI-*@E)bP~=n&?mi z(j;6T1&mcSTKcn(P}6wK$O|iI=6TPU2E@Q$CLpUB_y{zuz`((+;Qw6j#`%?cyJ1~T za5jMVz<=~LmOF5EM);3mb}apY&zCvb^Fy$cVtalVyzauDuNJ^v?v~i|;{mic#zhXL zYfXVM2}4M->0&tDv@pK9L+UEF{7IJBvMt{z(5r&_KT7~lB=^>ykvn3`a|B-q)4`E) z`qN>GK=L`;;u|de6KwG|ftnSValHVZ$c$#sm{G+R=Qty6dW16}W|I4}#SuE7fz-wT z^=l<#Q2KQf#WRk8k)(1U9mO+216KD%QM{$*aEuhkdjpJJ#qr*VzbKAJzvelPw{BQh z4lc+cR3dIY;pR4(OWZoQM&;_b_o#^*AOxrcbmUHbnPN@%>7hj^Pt@z>n0Zr96^y)08i!|yN+ou$R#MHJnHh#UmR zCR#NkYZxfQLObvj{%>gLveran$cchIE(y-D=7|76+@A%+^%4>~OARh&BX|*_WftahvkR`UT=8Ugg7P-5li>|`0QWioQ;Sv89 zAE92W90pCncxmKdu-;;`bL!J4DKtBlKVQ8?&!a8s5M2JK^#FFQ*DA}nAB$?oc?g_c zOGrB|b7G-;PXe+h>W{+u=)eF&`(+~1S@b=Ba#rx$&J@61DJogBJQYBzuUY;X0QHsNK@Rm}6bW zbifo4Oj&A<_bgzl{I^^17x{1WYo7hLvuyOHy{)}#Viyz|06@7+n%$oqK*OU;zWC%y9R!5esh zUHg8PR@pt+YvB9c0nfVi{i4F+c!3HB@?c(~2O0GOufJv#&O5-iA?yx9(kyKOI@GlZ zTgEr6g9D^z*DP!}(l#NxLd|K(cbwO6FmtoN$1(S3@7F_*%fInB_Z2xO&b@~@=lGtd zCHas;Ll@M?+I!0R{A569&-LgmV`Pl?xtNd({Eja{CyDMSeouBkLrhAI9l4+PBkpHi zjMY>uy|c&MeDFgqYs}&~NXU1iB*rrapP)Am>~2GGn}<2Grnt@Oj`)rRnjEvA2?QF* zegl|h_by$qpyBFsl;@wokbWY-xa~SCrl;x??XmiFeLIxo!Q3dy9s3bdg*GiRO`rqH zc#}P8@qz`N6`DYGs5dsUJKKoQ76P&8R0!hf_lP$@A<028<&Puuz}r9chjD?@-u`N6 z3a*YGDq=M53cyOU;k>=o8dHgjc1C6=BQTmA&Vb}c-bCQ1;Day1o`MOmPQbT<5Jyu>jyIHGkcrPfosyfHDu? z{Z6A%WK)oO$_80K1bqy@d^W#J_;B_-0M4E9ya^tHf_u9FkcerqBJqc(&v;s~$zBN` z4VN0X!n1Cd8po7PD)*45LV�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
b(>U}BR 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

OKp(_Ze@*j2%%|er$m?5c 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

$#U5;64)1HKcCV5)+TeV#{9zpQMQ6 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

0l{B1Gs<$^7@i!#H-7$Gj6 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�_r~>j@GHW4uE!UrBEv)@6}SDKtODt=@{nvn=A3}MTvK(FzW~l4gW<~mDuaeU2|=0K5mtKkDB0wTxL|&oibAX zD{7etCy8D_Mt;WwZVHMV8Tm7S_D4oq({p6yV+1l;Jp0*s6jCgn=2r6%#}+^4^c^Wo zgZV0vg?TUL#&>pRk|n4!BuO4NF`51XL1am_9@O*mR8vwtUv6rP%BH?0_#TGyZu5BC$?qz(6x^g;2H@Y; zGn$i4+B?y{Nu-=j+S_O-U2f7ICRkeo$WOKgkYD{8;4eL+EuaBD;Q=?rV2%d(5| zjM4y$4@(WOgnls%z<$lK2H1ovJ#G0oPDl}KaJFg=Y(MnDs!W?1wQw#FB-BEtwh~`V zJDf)~`{Rf^M>QoS_LZjKNzO!hm)hYBp&i_rXO+a`!PIAofdrMrVG{b(rn>%#JsT4B zw((g!tHf@D@(a6aD~D%{0Z~3WunA$mn@ZEjdfKKccr3YcSC#Jc9-^E>N6Ix=4f4$< zwkM-KAIo*qL#KMn)_YSx*5!(7VsEM6L0ib?#|BQ)8k5z1Gv?U|Sd+va-NIf!qdwS{ z>!Mg>DJD&$K|FJ@g^VMf%rmYh0QfS^HFKhfN5jaHTd_N6D4iAY8Bd$0JLBcrGv(%= z+@^5Skp5NiQpq&6f=|SB5vgpOY!8=noJ7ZF8#7@zH(|LB%c+@FMA#Dk=4hlzGzC4f07)N_1f z;Hm~)J4H%O+KIM!u7CN^?Oyeib4$LxE3WjnMqxe-9~cG?3q7bKRG%dM35%Rye)cQjP)M@sL7xn10{JXS`)o68|9MX zB-Op9-9UThXsF=}au`7|48wq}o>$hCd{`wOMV8g|co~*fqo#``wdoGNi@e+eZEB<( zO??(X4NV>QF0wCR@$8(%q@F|;@hw-G#HMtH0~#GE|GRsFsFmp<$YZkvk=6AG7(p)c zpfsK!TRqT`1i5l938E$onQjIgSp->=6=_PFrJh0$scf6WoH=z&PfQw|@I$Rh=EUkh z7$64eHxayi09Eziup&DIFZ*I7ngmP6fDT@kpKPfhzxs{#yFH^-j2AZAXFcF1{&PgZ z^8spzg2;DCeX_uJ0P|$9Njoq&hdBsjIt(K1aw48@)WPk5DqxpOW|fv) zE~m=_7-=hM)`HDuLq^%<@4;BPUH)GB#q4tSYmV)5`Ret7F(fB%=bGi~9kX0W91htJ zt9*siV#X-{Ya%E&%ALAOiZKcQc|mwd$sTO-�!PTtiYS-CpuZly_;9pC)W_d)CCt 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/ZHK;eoCdGs5_*!XU+Nid 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 z%0D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 Js1h$q|S&f=Q{+I-0ysI2bfb-LOm zqxp3ZevQ$$BQXD7Cp*E8PJbUxMu$hY(t@RCncE_l=f z6rZg{43OIoQUA{f{mjyC;AQ}qB)+Ed56}2~LuBXq@W7w=^IE&th|dDK_d${)eHt6k zq0LtU;x=gIFvRyE+8%~*KA)z>0#7!kTG-hCMq|$8WB5Xye(8dyt+~e?l;0;Kl_k5V zPrj0C_>k=7?o9_#0q=xV3GU#oz(|x^8D0VA{%#x>nBz(o;*N#qFn1hGzXW%PUmfO- zdb=XD1PD`64EAe=~ppx}@bC_!eRTWV*|@j5H!kh5&~ zN|xe%lN{m>6jW`~EOHt=cbU>6$|8q50|nKVato@mn6*S8Mhi|FZN}t0DzQ5`S69Cz zmz)marx>j}!X?)rf4ebqxa2BQrDZPJM!6K{k^!M#2`(8|`G>irF0yNyOU44?HfH8< z$?XvB9G9F4S5c-4bBTQEf~c*z$0d|sf26V&mym1t5bfpeaS0W0IiyN(33r83T*AHH zI4-cqHA5jTc^JCNamWYgm*5idtHWHfvf5W4+%Z_+U4TuzOX1XfIcLxgKAB}QOEJn< zsWtHw9nU1wU?@1{>#D)I1-*V)<|AES)>$#9oM*#W@;SV3l2g>(XTJH;tnw82@E4RG zQC4xsCTvGN0p;&7G6}Q^lV4Iqn zG_D@O7)6gz&aF<=&QYCW%jyabT&@}$tq*S7z2(N#=w;5i(lKfDGT+P81l{RZu-06N zVl%wnq}n))i*vM)BlJfw-r(;tCW};|D08lz))Xju#9~o^*AI%1Z4M2H+qj#gDdyJr(df z4Lz>E`;zLj+>BIA7P*z-p(Dew!4=SgD_Mx{?|?BR-QP*S1l@~You>Q#T6J4(q?Y

&={CzGFTwk^(7mn- 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

v@(lP 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 diff --git a/docs/Python/doctrees/discord.doctree b/docs/Python/doctrees/discord.doctree deleted file mode 100644 index 9361755b4a690923eb197dfb747884478e142ec2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26317 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

m3JcWQtu5cxwA*ySTGYnk=&;vY0r}R39F|SrN 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

|AT?nF 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

@Ip z;%1w`P+DW_OVbH)+UbTYHn`ipoep53r&B$?eoQwK2pzju4~+#9$C&CY-k?+7-GwY3 z$S9P3RZZzOSDKz)jQ8n3LZ@tt$)DLh0X`I1D2_Rg4tGnsLfhN;n@vxXObr~^s3maN zPWB#uA*Z3U1(l@ISl}UV__~@rU00WpLt3&V&-JI)coGXF6fDJq({=sgmP?A;nKU5i z$aaG6adjyiB3n%DWDEx?M>FnWJi7mH2m9xOEZYnu$s9n?QMH0*l=(+S5VF-O&DP+7 z%rPS+c43)yH)8__DjHXVUi8c_uk5&5QYixl8tS5OPhIzi_)f?1-fC5OqmtS22|f*R zJgt|P^DD>kqqu3}qveK%l7*)XLTqqBOlkht>j^2j9+NEuUDm3zYBOEWSK^jz7YrN} ze);;0Q!*rFCASa1@^ncb3M_Ql-FR<%;9o(MzwFLEd>#k@CG(8$@8*lySHW?!*&{?I zYp3{K6oAw5B;)%px7FsDZbKBN&-Spwi|ZXE;D4L&_a7d3-I46cDirFcycCkk%DS%s z0yNb}wU&0ii0yI7_6;K9bJ}mwz(W;M@*KPfPdUm?HRtF63RY^#C2Po;9W%&rYDh5B zFok4{gzoInNRHAQ|K$qv;9&pp!Qt(EFYX@(2?|l#AXexJitLGy;$9Ak;}Yok3B6FS z4}rh|0Y@!54L}VmMUHdNCXHUy@}R)Nu6D4bDZ|IrbhqBjpH)G8%({2%pq3aYIRBP8 z{W$q~ZvCJv6ZJg+*?aj1UQx8$95i>{xn1~dM7MqxqA!TFG;WftKTciG@9wQ*1Y zPRY&qa7F`sTsX9$bDT11g&TTahx0tgI75!2ksf#_^p3<(+>;2RBi>%@9~buBZ< z4jNb>FmT&XsvW$jrl-^v%wGs2WmA_>2L}lpbjdJt1Xl@VZ}JM!#YIBK`lpM@mdBBV z3_kzAtyo0|%SU0>1VDTlkoA}~);O>mOB2prhB`LmCMQ_QpB zFQ$$XTtR`w_|oai?RCBUvi45q-8K*j zATV&}z&_xKOj>|Noo-R9yLFo5xFBY)<;(!4lgAup3ujIrI+ai&frD%N!)o%Z8agqI zfP#|~!=NvkO++Hy4g~^KjwCd;FjOM#L4k$Kgu<>Z6yXKgK{hUvV9dq?1QjiSmQUFA zC@YcM9bD3pXUBu1T@{PvGbmpj zh(Tk4fg|hV-7@g@qINBG6hHxF`H@z^Q-|} zit6-Bd2CltDux3UO~*K5(3sWH@!mtBSGJ{S(+hy0lSX`S^u>{k1-&%WaG>Hb7+YQs zk4_Hm)AEsj7rJE!E!%Xnkf4;>J$&@_fn4~~OFIn*Dp_viiwBR7_JwY}$_;>^lg2!K zd~|ZYcmJWx!Fw6gLV{8n^XznQU()q5riP1CogbZhn)Ra6aB-?9r>8@@h=v1|>muiL zhTNc4+X8~lEiZaHWYq>-oNCZ|cK#?`&(0sATDZ+;k9uYSUik&j#3JwWk)Xj(=z-IbRa>ZeaOr@q zBUM)r^Ew^TE){jd9NIj3t1Of*-k~f3I%Ij3?4qX^Z@-Ly7FW?$R9-9Pn85)9$M*%t zSKdiq*@Z0`8pZH}DP#1pMz+G*dK=pl6LD z(OnpWz5B0kPydy!sl1>a9sm3P{Nlf8L|9!Keq7Of!fZ2|+>9r4e?M+^9R*KH))#+* zRw+#A7b9Kzx1%GP_1|Cc@GZwNX&DpVqYLKVDfVdHqWsm817YP_1PX{Dkl|87Iydh%xE1B04| zRLvWd$UYN%*<}Wi#!{kzg!cX#k_+;!u?jh~_{X2*&YmUEMi?N2TotM^Zu81+JGt;; zaxdfhz@Vniv#WPR8RR zO!-`B_iPAl(|;O3gPw-w4gIWo7V4ed=GDg9AcBlWXh62RS&gX{%L%$JDRu-BbhZkm zqDHSOb6(4386u6Jy`{fP32vd*~^nHBDAIIG?3WpGQZ(Lukm*7t^Vm%U0hI5(v+QXr1^3~*A2^LIXke~<~#rd6&-J7 zsc41jV!WAO(JD`h`l`yvNR+*xCqo@2fGCck6H8h98QK8_r494*O-)PfJa_FC<{Lzi z*>-hNT}`Gh$It1&miqZ7(yH}pSEJ|=P3e+Lg&kvDp#*4mdyX6h7`w(>RBbXd!Cf6 ztWITD5o`!xTVvHF8VB8!Uahf%2}0|1x(_yF|YsSGN;5&_U(HT3tSM>DsWStf8Nc#7?qv;ZYxd=2O8V* zu6IicC^t9M_=|yyUM;T+3QFrh{FF1wVI4@Ig4EVWeyroPP_tKkbTC0^J$7?lKj)qu zS(kP!3esMVw0-ZCsqmCUc-MrFsSX27{6hAgzg%EUPEFM7PK~(pyzAqB2k^9wp<<6 zA&-CPmB7ZpA%g7_(pdOKy^-~)SDz4opt3H-BaWO%)=QZ&^>Qf}6qL5kK3}tOd5r^~ z7%M!gSDp26L2P?~FJg-J>H#*0Afpq4j_C*k8pFlB9}V|SHq-;8laSO21w!9!FEE%M z%ArFL8YT)~r6%}lE00IYR;2<73@oUr7aUT@_0LXT6tG)l2tZ?0$7%wZZrvH(jCrC# zSUo#(r1J(l=^CJciP8=C*_5UMW%{2@;o7J)9Jt7jU9MRz7x!e>^0zTD7D89Oy(Ijp?k?D4}tJbEN!2_G8 zSFql!mtG1DOrF1Q7PU9B)XU#B9JnYEaBWCw3bkThP0j}IHY+xWV08U)d`7yBSfYXa z(E$XXtD$~OOZRrNwsqIgMFb-aOr7j_i3(b$<;8e%K?9?^t)$I1#6e(A}0LUCX;zy4GLQ7iN2nNty zgMyZp9|gM4m+Dm1@x-f6*-5~>>MnGV2wwFXQUs@({k+8r_g*w+KQL#y4~w<$Se}ecL|{XCR*jqJ7#XT1=+w zKvH?3H9A8W>Z&A7TFXrS_Fa`WWC%c$R>{|Bov^o{Av^R?ZVC+!F@Dk_#+pW)I08v? zWarPyMX>}Br>!2X@3bBnbO_Sstkm!1p)*;f2Xxj3AHw{srI6^14IZxw+P){lRcMz2 zBDJ+eFT4sgU_-#r5FwUT(kV_N0~jF1V@OcOvaPwgZb`5XkZl>%HsVOTG61nb1u?BR z4#Jcl;N6Dy_x;_@hleP!E=&{GT^R=G!Zf&T@pUbaGO) ze&#J)8o`EzYPfYuEzw2rl5Zd>Q_5736W&=4WkhWX9s z0BxAtY|?15-q$!9*B9epk5G2VFmP@k4Z2ApTFxQYRP-WJXdt3dP$L5=#G8PBnQ7wzL|UGWtE zbj;ggz0DulVU-NEj|~B+OOzBqt?m-W&h|rYCxs?}DAX9ZqVRqg-lY&RMz&{`6~hCE z2sD#mMQHXFxG^c)1ZJok&?sfI#&t-_1{9RkwXs@yt6MKO@%0_qv5Jh|Ei@2|;<6RX zS@r1JB0GVa5yOE6t*C;$Tp_gpqi+@Tu_1s6JiG1X@522teFKk01u2cioK=6`(Qb+g zvlE*?tGRPpE+97=-+nBn4H*KE*(0yfvQjz`K*XHeXCY}^kjJ$r@+}R%$fX&BXx|`1 z02=CuNQu$kh!t)>)RD(86J}klXs@d%l0k(r_z;HD;+W*VQ)X*K(CnvBK^%9;$RdtG z9MW6G5hstBeh_lcD{Sj{i5!EHDRp6^JL=aL}-Fv*Dxc$;Q zeI}cyJ&ZY)=jR6bln9fTzqc4~T(Al7Z zn8HDz^TssSg8KI1AdL%hN`mD}!IG|QNXVF40fH{5K>Sp;!F?-`Mg(C{s`Pk14c77W zEmeyO;y_ci=|YreUrjY42!oR3tKS4)-;z{-pbPa2R_OKCPa%SkR)0uOomFA6m5V^Egn1$lx>-?D5#K}+K^GVswGel@xM zxOo&3ltF3o4iypk`j(~wOww^LU{E>*2)dwh%s1n!VY?0*5rl!`@K{ff`1Ez01{AbG zDbgFVhV(5(1qiyBmg`{7WdJQTC}@LFppU1MnQY%s0L&IrbpW1l+Ww>(6Qn`Ib+eYC zr*Ff>cpwX$C)h~P*LlQVf8^c4K?4ffz=`PI4N)WeIuYZ6EXZJK&V9O|U2t9} zx^D*Sz=Aq3Z?nn6owMm{-Ubx3fyU3&#?hd2+gD=;7Syy>QYI|+opGesaQijKIdljT z)MehTL;Fg{+ld^$?OT^!T#yIl&ev=&=+Y=Z?m&5*}m3wBNw^~-bQ3KiVO^T%g&e%1(b@Zaq?ms{zJ z?C%SZhK3Z4{ry+Neq|^7$6>)vizT%E{nwh5*EK=W%wf(14KieCe886>$csApKok|+ zN$azx$V7J#>uXrBQ>#j6wcDjYLC59xt!jt|GV1JpO-lQyfD-af0&WznF4iSJ=Cw%S}z zyp@RA%S=+vrJ=wHefyt?{RNgKT7Amttac3pEYRa@)jQsioUi-eW5iUx)Rc~ zxJHsjqFELi_MKnQ*6v|gBpO&=y-$;)2QQ|TIz*<_F;c2XFmSwnpB6AYrDpHwQK(9X za`E9T&$@nEEl=mGh{?L}cyQqP-hCCMLS0%aY|>&56!2eBR}Xz1IZV8zSxXY|5#qoC z!yEh8^TmwsUZ^&kP>+@YuoO)Q2(EYb>*bRA(^OsdF6emPY8DcqKlgNATv>UTZU-!7IiSec<%v?Bv$%zC3utD zH))x4OYubz!S?NgM~9(KE%%b8I2s%vfB(Rqh88lkG*C$f9}i65iAU9z6e~&5glAyC zen{sr9=xDlM5Ok1@NORtJa6!WlX`ndXCg)%yF;7^0l{_ekPn`qR^qg#i(> zcF-aO1lRW-*7eifDpaIHJ#nEL{Nw7TUPlbo0pEoJ{+s%cu5^rVS%8sp;TRsy zP>0s)&?;IWVBaGx+T6E83lc#D+ne-^;?APtgH>Z`UkA&@Ai?*ykIq87b%^wU0q(1h zXhw$4!+9Q}cW9*~7&zWPt!OA{c@;_d+$6GPPj<@J(!k(;{j^%&%r`uj6>8WaSMuS& zbI)|A+*<4^*TMTDh+uo|F5XXMI(S+H z5p1vWvp7+Q_#nZ+@x8N`l&3`!s1B{13kCdF^^Y*5TP?fjpo9e&I7kP+Pbze-PC8g9 z;D6WP`(23+Ii`aI^lzU}E<({eWMd5ukY72cDp&6!J-QCHPGEuIJ3NOP3g028ut30m zV60au2;v~Yn~nC9kbq0Zb32NV>M%re`q8SyrZ^s&g;?sgwnaiBGzMRSzU(uVNibQ z&y^+6!TuqhA5pa7PSdt}OxlKJ*K*=rsR%I&$nn0FgAQw+&v-j;#PeH@B`KG}CkSMC zNOy~Exx+*k(}b27K!%V2GTeh5e!r`z>ffxk@+8rMNNEs$NoPLnDm`Hz0R`b3;@RQO z+csD*U6JEcn4tR+=+3C)d8r4n_nuAW3%&$7wDtc?A9z<<-f1Gp^cG|iNsQZMob(q% zV1xP9$&T*XsaM^C3qDrC1^*zYr7#78?_JC;M)zkIzu$S|+`r9h#Gfi?7X!erUC^$w z&2&B=g@slS=9{lIfy4sGo6TD`a)|y^L7;CSB#{FMwpZxY>*_^BpMqrDdAaKOn!4=U(WRQ<*o^M0Y3u`audmm%6!?7vP|-(z_lVkLYH5UqmB}N5Oh1W;f3)-? zwp%yf8p!hx5rCCmIAA=>j8dKYr{rG_ zYOypYB>nq{q$a7-o_Ve^tU%7$pmL@dAtl#PI*3f)h&g(&TP@}^t6n`)>usC>rjF}6nTrq3?)dhKqig=_IvSmC{96^DBv>UNb7LjPe^jiBkIeml-vI2 zuvUt&!CF5}%jk{--acwt#WOZ@X&}|lgj7a+ZBGyz%8Se6B!EwjRy`1-WL*_PG}Bgc@-8$%XX7OegO^k?@sI0 z%Si55kSD7zjh!0|;C^Sic@}~FO@T|%hZ?m(0O(uOEe))0Mtke49ZzzGRw`I~U@$aA z3=eFt@O&1rRlxvAL1Jva)hsR!(0?$SY$s+Hp3klU~IgSp6@4_io z_lFoh1bJGq zA~^VvJrpmsrzQh-LpNzp*6H!io-=`rzdyrR_^qB0gt$Ql5} z9fE=9o_w^fw{n+$!30g3NTJ1<=!k^!{X%f`B$Gx1le8U8H?Ib>odN^TJvxequG<}b zq5cS?M}h4Of-0m48kk-&&%!pVpxKXb$d>CJdSgXL7qB9y^d}~f+$dZS{ec2yVvtbi z&8zifbwWxeI0b{+YJvISiR7c1Zo zz#+oN?q~L`$9#UKcSJ$K44MnpA_LGNgeZhB&(BZeDMjBxkjNna)D@Z*J+5mC+tiGh zeLZRxO_W8!IFSn(*dfIMfj)4*wxjGkrzqqoXy9F>P!2I&+01vm<9=kua-TeYD5zUD za~D+y2Nqht>(X-lJFn}9^|JVUjv`(c7sT(m#I#7&6n!O)U9f!9#R-fpfIv_OCeJj4)Th!z;G>g9%a#<0i9snfn;C;*2DKXPTKr6P9i zF~@ycbS-25IlsR7*Uvtq-pFROdPzraEl2hG>a$;eR^$h91_<+^6z1u&e!irMfNeeX z?#eCbXSh&7nLJraYzQDil6grj{h=kMY5@`r>xlZ;HzcJvAdsmev>jkx{b{luJ)}Fs z!^XeZ91V_Rk>)px9b?~&_SKsqdvWWazBk*Tb@7;ATx4*+Ij3{3$)`p~$9t#08BKVX zr!alNFcBb>w)lsOmmt&Wo}13~Bhz>wdq+yb3v`0R01DDaphT2wAVGPLmgx8!oL%(_ zQaVD=Od%3j-lcb*EH}H=O6|yfM9q1)j<{gywL=w!1K)@96o5|+s9ngo!pnvO68;ZUEcJ}BbwY0OKKcz5~#!)nIy`rx-iVOx9 z^ry_Xibdc6{k6qkZYHCL-yH9S!KDPBzt-py2l%h@;MGMPTOLv1`1n{c;2&C05PZ=5 z{6Zh+vQH=5MW*=*vNs?}wh$K7Z{mYPbzV(qz=FsH2*K&%fvnM!ra^Yo>tk)!kh80v z5m->a4IwE#QY*_s)`GRg01=u>L=b+eFZ$Gr5~$f9?d`VL)K}$+_2{mjZ}O>;52?ja zLtE`U5b6^jK_41H8T;9_-#!*h^808}c{~b;@{#|sS+Nn8OTlcij};X}5G2JA>rLE7 zU??#J0mOKFS#8(T5k>3u)EP5%`3owd22sk#@j&;T9BF%fUIn=GR)pQ>Qazex~yE9N~F2`jnv7|=O+J$IfdVlqD%o`qPfQHU7+}D2# zi>_eg%mLD*Nnmh)Pp`}m7xx#;**lB+T@*lnSN|9+yy8UmjtH>gQg5W^k zDYG=+L)6!()2TKWM{o;PkT+i&bb$qqS2opxMk6B(1$`p(t-=>L7X5m+r78W;ZA#Gf zw;J8W0s31T{p%T>%fRD^AxlABHyAF9!~@&C&HRea&>S6YX;WyoXlW2MSBM6tA8c-P zigb2-ewynLoaFr$aGE!R4I$pcS1g1XG!G42u-OJU0lNSN?b~>rX*;Kf00}rPVw5mG zF;x)3lY|yAO88~9h&1loDe|IfY_38+s}Ri_{b38eOQf)faid#bxiw${2V}m`6VidKf(K&cuk9E zl2cFx6OKTOum{i(;gt=YpjmZoVf43}&&2`y>jwR5GOvQwmj#=Q&F3yb0|ky(@lwd} z{}e>uP=#v^1pLDWeWa-@i8%&D z8!L(k!dF2U#+VX~VniAV1n+==HyK>f;kl6>U_r+dC_*I<5|r=bO7#-U!F{MkH1O@f$hPpXQ)b-Pn z4BTUDa6s@12!haC(47+IBVA+#f73wIfiHZSO;|uBuHeZpu%Lr-1)~3YvQ$eVLZ;ig zLI4J;w~bCr^))G^9#?c?=rYu-V4Bot^Wi}E0qscG(y6X= zd+>-CRq4NmlqCsP^SP;B_TN4-*k7Srpmv?RvHDwGm0cX5e@yp1t<1*JeR9Sseg1U8 z5*i0gQ?`Obh7X+2&YCZ}*|+)J*w_BsM+W=*4m+kMUaaW2&08;{a)5m8Jz#KuZ?juY zc9AiJg25pDsUfl`fPRCrp(QQMd^tMd|DJgFMHN(!20(E%|7zgC^xk%|=EEFleG9EY zq{ReXTL9n~z62;}-@@w$FX-y9X=EQ%!IEBJ2ucA6x;OD^YNKGmfD9l6n~MiBDm<+{ zFJucVLO~=2fS|HyAZoOt8*r*g2`#yv^pF{?k3YsE(FO+J)K=Yy6SY%ew zj2@eT#s}4M?p5i6q(nh!I^M0600r~Af*JdoJk}DgWUi3a0R-bmdSg4KuV&l-{mFVw z-Nn#n3cA1+OLMD@`3YzU@aC2;cbNaB8lCfBLf#T}0ikK}F9#58Z|vx%US;I7r}Gut zL-Z&Mf?5NhxSD@8aA5k;ZoS~ea}}q56xpaNw%lTwK&WNGS^)v5*|QXo<{j~|S`8kg zr3Ks81WG7^#Rc!%;tN_!9co@M7b!qO+6ES^-`>TV#DeJt`cA{+dmw)I`Q%v@X=V#H z_^K}zs)GUC??10DF4lD18BH~YrYVS>&i9(b#{<(lFJ^1@NAkqvF0q1f4uhh&5{O`Y z#XJx7D(GHCcr*^s-+FPg7|rUN(St|F@!`sXzyS=cP7Dxq@8Q)4^$q3I6x7ZrW|2rD zeiSqaz>$t9k#o~)XM1t93&hk!>* zx^QLBx!6e9xL^zkKtj_H6~s;1n!Oo&Q*(cg;O$zr0VrsjvNdn)Ur#sRJIPXnzQsoYb!M6Z8fBa^MLYC&3}c zoA`{zZ*kX*P`sdl1BAzH@j%wNlQ&o_2)nwIj|tK@AYOA?jG!y%X8}OyXVE~^IMUZ^ z+8IWN9^mK>!PnK10#ML?#Nz42OSHV}#cHx09q@m{Hoa)Ai$-WvO#*{nm8pEI3i8&1 zGF`oFW!9J=RUu+Cc`-WM`$MnHf-xFh13=LIh)ryslAF;?ZGFZ4p~T@51zS-8=yNB~ zA&3eZRuDTC9zEouFlfYVASzP>4lz_3V8l38CrmW2xI^@XX+VtMLk00Y+9<7tp=ihQ zH<4Y}1)W16D9hs?4qSqYSw%hWN2TCE^%lfPyXHF@XE=U+QHwUtZQDlct=1b2`~x zW75oZ$$~to0n>D?(2(Gh=A&=u{UZ{EDiE4e@8r*u{G5A(CPj#28yWPqtP`Z<>RQ%& z;#SZRd6&EuwxBavp=O&Uz!5|k;m6+QxzQBa@@D*;ri*BFMHG9%HrarkwnjPEnZ_6( z&8z0N9Uk3T%Hu~0Mj?G-2?mbu<7ckUOUhP-eg&CRil)H>(;Gh1=YpyrKIEuAZ?@Ps zT2UuDY|49R)!;#^hUq!&s1K5c9!w1$nBHpAH5%z_tm{UGf)vF!VH6XL_uQuo($90k z4s|br7-iEJKnn-y$z~A2_I+29ZS_Kq&~_-d01r&B+Y3`hd|8H2s-OuDi%ebbLN~c+ zIPl;K3)K#e=-MUfYkRxc3levqjW+T(H+)!7aDLx=EaxISSTVo@)0^T6-M3ClriCR7 zmKwF{W+3ByH0eZ}a0lfxkl@4hExPnJG=(J9>)`#uVj2-_-yM&qlj(Ie8;^xjEkma3 z%3QzonaPk;!|vb!``hC&M<)-tWu`cVY*2tpGSeNevuf=jcaXWk0XE6ZZJ&qSL1u#j z-0zLYH2CwBj*s)8TUITm%wd6mPEu1R`Pzf-Ahkhpa5r@FV1HbL0^GM~(r@yTayb4k zt-ZO~PzO}_UqLw3Un}Q}!bQpW=+G{)H$m3Gf$a4O&4liqosY=%tHn&Fs4Wgk9Rc1t z_Zfe#Rq}8^Kv!;P0y-gO9BCX2*4YLe4isqUo)=9+3#4i5QIx8rjC^%GIM6j(@$*Q6 z(M2l<3N)`ls|ZEGA)$fc3=H7kRq(W)S}OZ5k-u&L;~Y z*#Ej4!9WGMehj&SyNM_jrUPkiyfrNUUw^S$m>?B7>dWPn4zu~ay3FWi@*-&03g*@f zNb*Lc5pY4<+{txT@y?Ht-gqFJo`T_1@K(<#WG(ofAJY(Nojh=me*&HL0xGqXmf{iL zp2uTx!Z`{CNgxDwuP5e=>I?%U`5E5BpU(0|bCSepHJ2Te|19?l2Tj-|!v^VoiTCiQ zg9qu>YH4tgo?P9jkPazi{X58rKO?ekwv>R&)dLgPSz=2d7jUvAfOI@|0`S)X zPX4f^zl*{s7=a4x1RM~&34$9sKsient;Q=0KO@O z^={$0QLYoTr`43(h zFrq*GnXH2O7Xzc~d;&7fsb;j~aB*Kw0}0Mg13l-<>AK>vyvahVEaOkXk>Ra6N8pQO z(Q@CJEP#hBZwGb>777&1-nUvp0fO)2fKQJL(AWU=K1Dz%SP$6BD}ZzSyaMD-_zf`l z>6SU#;i`sQsnT6f=F8*BipGCdvRNwF$Lj)_YL`L=`A6zM zvK_Er&`7+!{gn2B(LYZ0DVO&jJ$iVscQQUZ-#b4z69rc=QZI0gRE111mApP#$aZ$H zf4=|tKnPW2DMy5iP@sS`e4Qz;JbFgf(OWlPY`>xbqM>s_YgDVkEI4!2fUsaR08h zwCbI*qvNBqv!jzQgkcKipk$y3I!zwP3_LPUql(@Ew=1q62Vf0SOHZ z2)=@q5K%q{4s;*5biBTR5=}boX+mwSpe*U}#4PGTf>xBFGH9S=*D|zdAbZo*kstfZ z6H7)AV#)yvL?5|C8`^4?Y89>qJiu^*2z9rE1bBEl4(Ur575;t3J6M7`|KO+z2oIhUiEp~ z+82QX9n7iwVMCeIL$hRh_;yb%gBw!{dqr#bMA?8FrO?3ikzu0l7@cuN zH$acZlV!bpc~kE;(wGHvhmlLoCcQTL07iyYBQWmU*j@Z~o1mlMRqnbdzTvuK_DcDZdO6$Oa+t*evLYINH zpSC~*<9pEdkk;RwZr8k{N)?X?Km|KVVyXt1Nmg1!Ld(ymPlse}Fu@A{9YZcU^^0{C zq}}{CfCOh#qNg=Y(9p81NWkq_q8=g`n-axy)d%qh>pGTbfC*N_r12ST2Ut|PwuarX zZZRnW3f>=2cXVUMX2hLay1Q+3PJi;1Uz{MVRDvgKPsvQPM%2BKJUS$K$4EjmFSGi& z-5cZX$SNu6kljZF;~O*#Sn(0XJRZpZk;8BW?RW#Alx_aiz$KVyq)pVBo=gmvV)9mQ z^<{DvX1yuZ4Hw)LWL*tJ#C{qOdcD`Ys*KAwK`iJZ25%El!S?b7Cqn6x>A&gScsmDQR;uzu9M-u%UhA8xBvFtOG^ zB&Z!^@JFm2ajpTZZBScyw}0WI7DNpmfY+dcHxf63Xgoly5)s)(f8}>UZ0sKWEgtmq zxPqA2lS{-yoB8PaG*~{;z(K3`8_(8{5;3r#FW3OdDiXkg+1JsFecdx5!)TYNztxC_ zM}EvJ$XgqXsCp`jLNi6ZXzJT z_$DnWP}3H4_jh!2dO>eRuHuaWg6&=L@Xx!+f`>o7b;AW2NeiO`3f3RbXlV`KPPgGT z#54tdLl?Hr==ACfwS|`cF8lJ2)9Xwcq|YXNCjOY{^)0egZ1?}6A@_{k) z)uO(Ts+PpaHWO<^5WeFRn$6p8%TrQy+ZYWbDBtoagNccPx(keGX^OdtPw?skZPG)! zt(|8mOp%KqRT3UsH1(mO@dpVJu4=h_yCiEWpl4W6f0&@=x-3*Ln3w@n%;r#C;ez~K zd~u-bEZKZIzS&#};*!=drnHX<(#E6l0*yb?+DyUO)uTPgB;|mW2$WtW3QSwCc=Sw$ zioT`=W>QamVe6o#HISfef(7jGoNgu(gk6J$00iBq@Yp9yI;)gc?l=d4Mk7W`n~R+( zfE3lH4Ije%1YgEqp3>gXOW8{=*jfk70%;5Z#Q7mUjfoS)lY-UHz{`pvg371W4MlKu zF5rePZKNgGG~uxwUDUIeW3@8h&q)e4_en@4kNhdl0?Yg~{xa_lrQ?{QLKQ42=!wL;0qNP>FWWF1d$X81p1j4NW0m(x}sjm`sHYEHlt4F zW;CHc$9$5ND7lMLp*&Q_T;7wA5Ayw8t9;bSSuJQkYmjADcP65sgp{T>CbXhEG-w}- zFyZ*_$?&%V1=x$o@lJ)*D*$TQ5zCn>8_Gj$G!6h(-T< zaKUdS3M~GQZCai4=}L46=Ycuebwt^_P-1acN<^6<^RHWFrsY;%5dN^uVK@Q13 zE0mmDu0ZOie+8)D$QEzO^xGl{bB8mBZ^dHm?1}m_d`(aDLf&{QKpQ`49*LI0@=Y@gV!VNNd{1s< z{xy6nkRgZU@izC2Mp+h>>600$xhF_jxUlu`ZEhPgWHw!B+Jm#9v!zD|JYsZg{t-)V zi@VT3bh@edDM|u?Oy@89Znc^(>ML)5X7NxAAafEmEF~h*{m+vd+CwOca&VCv7Krq* zZVsW+aZ8E)&(b!KPw<;;fBpF{ff_NCPXu{BiObWN(rr}=c4%v~+X&P!Wh81WdFK)} zOpwS_wN<^CPhavJwX!y?v*7qJzN9mXe@N!lgSEm-tanBgSyNLnRYPv&%lS-s>VS!j&!ZfxX}K%#efz034wHF|JxxcB7Y z`S|FIlShxeqfQDYtpTG73IFghLHagcn9bMBP3wRt*d45AlJd=3ix6Ua;B&P%YdVH%Go(F6E||fyfmu$lr&!MsvDH`BL4p zBlRv=p9Y|q-VQ2={nEZ}$N?^|WlTLF=o73XR`EshEY-q5=(KV9hPNRbP9g5s^Bw$U8 zxM@_6kJ$+?X)Os~4T>gi{wY9PNLdV#^bA3&KtcLJsOi({<@0*&EmJQzlhh(5v~7Sv z{`OTx_lwTy0P^{S&->RgDz$ z2(qtjft6dC1u)p(yrK)CM_lnP@yJ{_u)Sv4f`thGnjb!m(TF7mKVgi~bTOwD1$1l2`6*55FR4#SZH+c%V9A0m zuZyX5EFpo)KX5;1ksepHo?*GENKD$QE%#{`EZueCqSE;I5ad($OCiXty4cak=(9@R z5LPfO>O!^)<8VNrAG%))f%J%=On?g35xaQp(trS>eB^#AMDe!<6yzf=R=XGs4iVCR zLK7eUO}2yjiNVhcLKo6*cd}Fl6~y2}kaVH!*3wf4EffZa2x%9MWom=ECdQL~lNplrU zKzXQn*(?(zOOzjNb)ik6GT01SejtDxA9%VL3k7LP!E}m;)M6Epyd)&xo1R5NJE#N- zJ!6C5ddOiV;L9f=fl1(+U|>ptB~T0cLoY3u@+&V7j|WmEd~|&|{rp$|_%EVx2K7-8 zKn~L)`qrT{4QThM5Tm$VZm?Rs)Zjyk4?TODG73+UE13TDpjw2`@Q@)c{snIF+!PtUh>zQfBoz;+CE5Q zYA@;Z_T{KvUw!uL&#))V!;d+7o)gmklZTf6^6}w5oAY==ccclM7OaK#NNy*xAcowZ zd5~$j>4;nZ9PWah6dwHTBsP?gwcN(~!;|_!?d?ywYa0t<$o)Id2ss;{)JyHy!abIZ za)%xb(ZLPre_J5EX%)wl%{Usv3f6aeETxVTV}|4<5oDvhnmPf&#=5(UAd(Z({@SxZ z%uCFd%S}w+`JFjPKnt1GKrVH7(F1OmnKlwTy{^T=y9i?USCBs<0(2>fF4hnX6m$db zF1kdBA-B5CvA7I&OUjohWuN%#cI&@_^#wWPSNBzv$!{`|vA}T?%k5n&5tRU%_&s`_ z{m|*kztQLroh&waxu_?1(W6f>L9(B+T^t+B_b*A#pi^D2pwt76h3o_oH6 z$2FZbKxa14w({6zM7QfTY|KoHRXj=nN#1poXc2JJEeQV&ARd4<#5gQ_1#DsVTI8DTwqiEx!H6w*6VhJ zfeUt_xiqC!EXoVPOPm4Ib#Ci>N6r8$i1%|>;Y1_|QnS)glv`FPF;-hr>**ftZA~{r zM%NYHQLPU+Vad-6EV<^(JZTLAhS}T#FYW)|(x^Tq#HALUvY7TLV7}#D38Eeq97W=y zm)0Yf4r2a;3zYCrnnzJ94rF^e<}ZhDq%0Xk)MKO>OLAH$Y*?BS-nO_E5k&jD0_$l4 zAzSIp*ezu&qP_As!=yEvYV>mz$`hcT`Hnker5 zFOKvw6p8oR*GWQ%*xC>fQh2 z`N9692M6P`Cx?eefAIFj6|4}npq@3_IAE3kVZXMoKRCGmv_9j2xz3h8z$n zS}&c~X=(eI7Oqct-L+^ihN+h+CWx1_7>|p4hb;_lF~b3oau(CCk9h^G>;?^PF~J1! zqAu^4IcNumae1Es;^YcYZ$S~BHFyCUj#80mZ;HPRcW{vm2SoZ88&qtZa!g8l{%%y5 z7;mZx-QC($NjVNsFz9EAlF_S-7ovY=5v}NtPS1~ykG?s0kZIiivquhA#s)E?)#B{Y zlgImsglL#*;WI#-zl&Mzj4n2uQqz>qSqnxZEpW1c<2<($EoeFKNHo!$|I#XFOJ8e4 zTYEQcmMd7NXTdX;i*dnvL-kJ=d` z!$KdSnc-s|F5x(`rnRz7vu@rEZW= zwO|)BP!eWVkf8iAUbd#-=d`9}Go>5DgHkS7W)8#_dI1knBH9P3aDVL;Bq*CwK0~dd zb47nEeYu@1 zrxk74pYkdcZ~uJ3pr_o$9>D|G+w*#Ke|JeIgjchpM?8HuT2G#f%B5C4wolU$h}JR+ z2CmoWHBNSp9*wA5AbXi=(Qq+|ixNQ(YDgz^Q7OJpvK#wEc1{0lLCmuzk~on6En+yQ z`3m#&LKTWA2(@&u*hV21nBI|0(W`h0_V*JC3f;e2J*osEu8pZ&(1c}$BLZ|E>ox^zUg&m|3HgQuOU`DX$if_xGegf>?$ zcwwa|{E~#Q;cXG40f!Jjhzl{_jQL_oZ?8_l-bD-7B85eV7@ykjT&vNG_=!@Jo zR5DsnVi3syaekB*r><8Qlj&1YIwehNsW8BYC_he$a4Y5b$hLyTw-&Lzj4T0! zNz@%O;%YsA=8wM)Rd*bC2$C)!s>8fSR#u+@3#h?|C_l00^jvqRx{2Yo+b0EWZlSxl z6c8v;m-vnyig1_n7qp06xbIMPNism3kK*=OQ6=(9sbng?#4ZLJ0{k>Cz?u$ip=Ipj zRZZ8ObePg8k;LbKNFT>ViY?tMnX)bs1=tYb11Z80+knoiu10gY*rcS>(#9`i}MDn7EClZ+_kf?7o zNl-wbpQZdn$sZ3WB@^|xFp?#KP(PPKooKHaU94$#l3T>+&Vqsq4=ik?WlXa`EU$UQ z2X~ZOM&Kccms;Y@Ci`<2XZ1}j1MrLx(P}l65Dhql@ESu1E7LyL9DN(ZI0MA-@)q}H zBz~?iee;$WK1A^nOXpRa_qnq4O)R4X5GGM`oXpP^rEg;Ch=RNof}{(mN&H+%1}vZk zAEJ0ofg`k=^|{jYZ3+?;5GYZXWZLJ-GgMuY3=qdlq9FV-(nj`8qI_(K;3W{wYn;VI zTcN%QM2Z6?uOKOQg&4|LfDI86 z1tZfySCF9!MlwL0MEF-PFC$fGsPHccAWS0EsdwY9GE}JZC?Jq*kA8c%gM=}72qH7N z=FPjv2wp1dusy z^Oirf=~|>`j+^9wNQp*qGp$$EcrJ(jdyXtLvNYfjBGD3U<}bGOB`qu!L+m{>TPsC_ z4lxq`L8H0VtQIo#9A0l^FwhV{rq<0{NPk_w=$Tpv*bqUEW&hTWXbwA;ErCJq`GF;; zEPCj%Y)1m1LkzE)S}|0H+l-63#nHE#rZ^yy7uvnoW1WniS-oSPXg5QSW&3Z(I~qO5 zveP86k{rwa?a5zbEW3pTVtJ_(#JZcY>_#339)ftm9)jFS4=4c72obGTeOnv|(SSn; zFEhb=cQ%&Yl!|14I9{j26$hOHH`?^gX=C^h#p`r9uij0kBT4{a5;f0paykgV zjEoER&FOq>h~VWj&TDrywBCd}Qd4k1q(mXff$zI0B*_4Ayu=e0il;GsJ0KxC#7Owc zUF81|0@x5CQ84Mucc|zh86ZxgH4-VQ>n1&i)*HVS1phyAZ`vivaa@T~=Y1K8B7sKl zD^?QVmJmsej@Fq6HUJV58tg$gNQqi_M!f1r;~U*B(i=F9bPGk1@$ zjEKbW9HOf#J@374Zoa#lLrkHmvuX3L(svM!QW6vpbmx!sBGc#}pZxZVk1G>F^b->f zkdEIjR(!guxQ%0x>`9FVOz_^yrlF|wY?AzO``Nq}R)Yx6yID?i+FE2*@vvYEtp^2j zKDY8kuKu}=pW(`LZr1$Fe1A@Z81lJTU(h>^7o*SVUlU+ryWUJL(;TE55?0KpdLYjyT&FAnqc$(M%%(`!+_RPj$Ve2o>xv`>3mkC?QExr7FW1K{dY=*sfM9z)%F*s}vf;Ny6}R|`d2(pr zc_Zeb$5H5tH?!W+cWpCx;EG!f3XQWqKc{CkI9;DsBZ36u+e>8bq* zH#F0bn2N>48qjuD^{*v-NO_P;x}!_3^Os3zPQ}`9jaJkVfkVXo`fIgbYoA1eVnwC~ zD{82*At75NAsKbw&zb)XQzRT8QeI!uv7?dwPv%bZ-?tAJ?N?piB@#H^b^)NyUEn$w zqsd3HbDwbkSIn9jpd+_2rkW_A=1sehO|zRR-BC63oyYFS(d4kdl+Rx%HufZ(lVffa zHgG`91Nm);nN4U+!!MU<>>_9zwRj3hd8;I)dO6>lG5D}Wv1oP_eu$Pp_=Vn~izbjj&QGLG>K8pm zpU-y`ZJCx2axao7=ExE{TT)GY5czY7l>3sINRB7dX|>sllb4r@mQPch?W_>|Qz>{k zSxsmmW@q21dE|b{nsqvm)<#0e{DqWBV<|cyGj?O1(G&BViI;2~VU(FKyf|JgXUKX4 zPm&dZ419P@26mTxw7&n=)f)wnK2k`ZJ+hPG5yhZj4fgKaQXUI{aE;CJy`+8r)@;rc zbdjD+Sig1YRsp16SylV(bmabP&Oq>SmSR%qzq(&8-c7MU^G5s;1vlJ^WopF?x4`4U zK=jsXwYS0Ozxd+m{XsRb3Hi21p6BfCcq6+Bl^bhj*igw6?maUXCcb{RJac%>04j zNOOQiI_gvSAg3>#1q9taDErd7(PTkk*jDS@{)6HUKd@LXv%sLggRg{C^apz0ncml6 zCf1azw`!ieh6VL&w7OGKK+7?`=rP@k7-Ncx%U4(=7+7wuH+zcYMsdY{YXj$vK6?0+ zV$(lixl=6A1{j;Y@S6Yy>w8Ip&wu~XzdRW~{g=lS-8Uyev6&q(^Ad6l&~rb0*9(5~ z^tWGrk`plpiX3OF`281eL%@FdrWZN3aLHkbh20^v6d7aRKUry22}7S z9*z{_BsOes|KiY4@Mcgfaz4()r&Wv)0$ig301g#NdpEsY&uO`7*!B*fU`^^4%{@g( ztKN0XL4q;KXD$S7?{*!aV7(R!#g{Ry*Yn*@#leVxku6w@Sme8`7Cf>~Z$66%zQn4u zd_Q?EUJmbVRe*vu@t##uXM1~(g9Kwzj%J0LRgvCywTR$*eZ3ofJl}q@+S8Ll$t+V5 zzLUQ1yhY+<8ImCB9T`{v^!ub?XI@&Nm)N(HC4Sz{>7fV_gIVJtb%q*1k-M9QnGdVDbV7;5Np3S#3k(W8u)P^E$ z4f$Wc`Ocqw$NUchZf686o+V2QiV0BJ&}SYHoVRkE>*+IYXvIEg6Q#uiVuX!-_!a(yv2c{aB(4ofj$ zJ+5!a!1nHXx0@Vhb80!CkLc&I{bfwQ(elP9bAU*3ekO+W z)2nt42%-T;EvnID`_FbXo9}2QN$>CN z&F(yFq7}n34`vP042+VwDw3Vc@al@@tAW+Rf$JxmS9BbDxuK!w=<%!RXRGIv#hgx` z(@RW`$W=#fwfE!kZ$5hR8 zxS9vbeik9*lzsI@(RSnZ0|gPdMxG#p#_O9`)5Y0#^w2zmLpM6+iy6Ig$xNk~CVCLB zBL@h+D~!)fI~bQ@NLu8wVBopRcrsVnG&RJTCe4+&#CDBw(c0hTdd52mMWp zqc)OW31&9zlQRzoE?!zmBipC6SbNG#i^hR;=wPrsc{t?h4OUva13fIms1zM~v8)^# zm~Q!WpB`4UkU+Odv(-znKb7H2F~JIN3@MUI*3BC^9@uWkJZ7qzVhyn=hoZJ6jF~FX zlTp-y#G*+>=xI?_7n1yCszcBGi5l_U?PPUPndN73h4Am%dm(;CAqIkn{2BgO@qHb| zihUlOa1!kGK-h!>?ANx{=#d%JjjGj5-VXkocFWM$ZO9u(ID z5{eor&tfhKykxCiR~Cl^mOl@9k%s!K4u*;^PJcHbi?>Jrdk0{Gfa1DzceI+i;>WGJ zl&*&X{_CXsF|E{A+tnytF;)0}RJI%k4A&zD>pf}VD*ERPO#}w6E0T*3ZxroBiKpHh zGW7vDrOA}BTn|r`NXW_eiN(HZmkH&dc*HQuMvMY<<5lkOnQrhnuVOI3H}%YYAVVY^ zSI=q;ARB*mf6dwcIDh3hV5qhCYa={*6kLI7!e+aepN+nxe@7H5XtLc-_?x+k4ig~0 z(as?vD+%GO`ue~J;e81mA_%WR9CBz56tdc(n4|$Cn?VZ*y4y$!y7TS&n`%XuDH*5Y zj1z#eoHZ(l6T>d(^(%fhwXb0vA_x=1F6d?j%Vb}}TEH^hT68_V=?oy~5_7KimtwZl z*PIR!gjZ4Ca2)9}ih(j9vMyurKz0Ku16kUWE6x!BCC}#|L75nIf1m@~%wPH%)FB2! zdvwH|M4@^9c0}!rXlWECbs#o_c|6d)wyPHA#PZ|M9)B|a)mNXgoc%-lh|7Q7F$pMe zT=$7+U3;@$EOHCmib{}S5`f^l>XTL_HpO~LhK<32>kXgq88ut0{V0jip;%kUP{n9q zy2hE#(=n#TFI*AD#pSs?UWskKpy3&Fj(%(o4{RtgXz6m`pln8d;6QLuc!J|sp2}Pf zu8^-o;vU^R(VNM^fh+ijZ7_0`tYe8WJh0tyCRo!QmM7My*4uxoUZwu8*bJ$WBDc%} zgZy6om6+UCK|W7WoQtlp8t6SV1l+2>6bm@#5#ALSOlq74a)Jf%{rU@xm{!$gkdiO7 zjkhs%6T8QTgd4j{b7RT$`~w)*?Wn_fgvxqQ=-||hqXLFrdWt>p6ww+r3&+<)McR_j`J-o7W9R=n#+TdjthO)ZExD_nX=1$)l%_ zA5w%#iWOo*NU)|yQ`8p4(dPjh2u%!(K?yBj1L67CvtbD>APDcICS6YE3tB4TExO`V zphGH{HGqORQ1Mwd7yLE7a+Ci66SQw;Xsc;8f1Zme`MIKF zX(VUJknmQ61k(xf3alBlt28)hh{)JsS5>R=1+^;__J@xu``UpcL&E*k4(2c8UA3j? z1guhPdiW+I#JHfpSE8pQw7d(}^c(H$78c|WYVs#GyL33hwxHvwIf=wFubDOG=(E5O zaBW9dW-7X9<^DOJEawZpXQ1h~+?QP&lfwhsRnA7i%l15sxMqY}By(`!dV_OyIsNMq zGWlYse}CfAIe)d0l)TBmH2WdDy$|SY&z7+g9V^-un_CYZ3DJ?k7C$U0^bxeinQ~Vg z4P>Z|;sg(L6)i`1$=5IF5+KF+#Y4!avs{i03V+Pp{tG?(fW2nz5<68hCu@c(+-{IB6CXk?j~{quaZbjs%L{ zWM7Xw%3R)Ai|w5 z(TWZs@8El}kllLWCi>~-=l@bvE>B)mBH$tAK}O1!nxbqx8 zgnjjLpVgpQ&}`Abup#2DoCpf`zcA}AbWDy9O%zcsfLAJzJp+e~Tlm_;!{cXFG>uQe zC=#|rPp8-B%foVv@Pu*D!yfb!wn#r;orGS%g8q&$KE==*@99omm#F;(!^e=Iy&-5R zUJ+f-;61x$LSCQ*9O&K=baei4Kc>ONi~{REqiG(6MrX}{W_VSg&Ot-QO)0}HLeLdj z#;sZOC~*T1gg+F7ba>0JZJC-iMvyVauNmPM_)GARb63h)&GQ;Goo-1(j0s}d#E=db z%rUdp)uWC}*amt(JxiC``q493&`Y!XE;&80)Whry6U4G{@rmei5ASsqX9SJsuwK`9 zFfk-(uX#6f0}wivyq$>YlV(R#5OOe3U1e0X>rGDNQRM%+Qm$&9Re#6b)n; z;CeE@M2BG@BkeH2EuextR1%j{PrjowfQ-0HB}oxMD$Kic6_gQnH!sjYb`O;WdTeXp zR;&48H_dEW){-nJsNXWwPd|V1J33ruTA)WC{qtv!zIrr%^3~(Vzy0#*Cm*vcYj%uc z`bOZQgwMV>k%R;o5^UcRiKUwG{Ff}}$M!7=Sc!@fKL7bpR1OSOwnd7B*iXlt?AR75 z1J_LV3zoOubiW9PH1oORrPiD7mx1n%3HwNwSmx8+=!^AsIaz#c9t&Ak6FxN1Y-!g> zZtzq8E|Fo|dnNYST<~l9(VDN3-(o{SDgScRH(dS=GT86t^G_F{*1^sz~@xn;Pjo!>fsX=X#Wr z$7|XbN*zWs4JkWJ1d8&wmT=0a3N^i28)f`F;oXEWa+BB@H6w~P;s_c!zM1f6+)lG> z*v2hjQAtc(LBPiGN9cnfJkXs(DQoQe@5aI%~M z6tvfn9JI-Pqv943FtU^u5Oj%I(@^+*&B~+UC;3ZE+Bbi!6ypkF-R1-pB*BGole{LY zJbm-Z7J3r8&>{n@XG`##%=+#Y$C}3J#U5Y#(Juk8#*gxLaTG*DCR){udF3ThmIeG@5MUK z=P&8_5^Z18Li*U9Y2||crTuh%04@v4(m>g}0U%aJr|b4}I-zbNK#JoEiup)@ENc=3 zQ1c*sHC97s4e9)ZyvC{6?+IvSAvHEM2}_#kJb!Tt>0x8&J!lQVwXk7rq^9GS!>j^kAi> z*rN+rWhFoc|DEuin4ix3i({CYAvZdJGP}bC_pSXU^+4u0JYAREZs)d3NJg>%LE~z+@QzMml0gU{YitD)&i-5DI_TuJHMpcz*Wmv;r+(t#3>HlX<>+^b|jR@^V_ar{u?UK-%0y9<$1# z>9v66_U`FsrG^BeK4?qt4iO4jn&DT_;R-YSn$LTnfv}&q2&4BOHuQk2xy)jZISPfE zf(?>13Nw6=`h!NP)yrvm16b4XA0aPr=p^rbsJOkvsQ|IF;tXsEIbmnQw-$m5SdVr&7 zp&S9kyxl0q^gyh&R4irJfbFGZ@ge0+`%OCIw^&a{AFnB>(TY})O@}zMzjPAf;c6)j z_z>a>D3@@)nl27I8W1oonuQHhKq@UY1?1e1?cyy$MjG3}0H3sLW`s>jQgn#8oe_~K z7R@9_A;2Sp+*M$2KCkiI-)W@h&C}-c2HG}jR=kLYT zPgax7?sB~!**}_bC#@AN=e)_(4lql;SR{cp?v^F-)@kLTy-nZg)MNQ4g| zyp}+5op3xOP0TF4Ye|U&k{+;H!cr%Gq8*F2mXXad+ZJP8S@4yRE;UTwuB^lXyEF)@ z9W3tAh80wEKoD!(pPKe4H~#C}xHDi-->_FjXa zsG+o;fbKKM3E5 zxG50Z-u(K=J@Ne2PHvtl4%-IYqLM5NbUg^)k98d=nqeAcRnhkaw6dBS8yemV--}o#s)J&6FklvyBn+*3zMvk#KLp7=W-vXB0eZOKep&4fi~Z>AaDFZhBlPoI zj@!sh_sr;77gi#JaC=;EbHDKV=zI+Y5UggOx;}%e=vNLU2I#pLe9HK#Pi^|HbBgfC ztf5%)30SFrO5|34>N~j|2IIHL;OA|HS4oR6hsEs4Uc8vxudPV2q2X?@TT}+SXLCA@ z$FHp_W+wrvSOfqDJ0CB2mHRU~07${7coFm)FC@@Vko7^+lI^}c@FNI=_&`7g|NFsc zk^K)V)XFD^skv7y+)=Tz5MYaCkt2bsdQ7>bs2`(`cCS{`N9L!AIg&C?E`A;($Rcu8 zWfBOg%~VWF>y)C^__y|b`e3GGR5>O{dzWKKTct~e#|%QWvK$K})lO}{|Hzaa9ThNv z`^7X!u`I;1mnk>_-z36>luNy5FcCF8M7+(_Td5&c>M@FiAP!hEhv0ymy1lCl#wJa@ zKc>%Vl|b0A!kgTNkBoaR?U3EZ`{V8YF+-3>5sU#+as^^g zGC~F`kO&_#au#uSeaFuy3-O@rU>0EvkWvpytTi8*!Z9(j#ubf^#iQ1WZG2wTB_E9m zAmr|0yD*Q2+d=H;H&35FwpUzf*sVyWrEb+Ggo_}}3K560~F`=7zTY0!% zGc0k|0AMTye={#32omV|snBD5dT-O#!>r$t00ZUN{4pIaEKWJV^w3qmaX# z^~{I%Wv#IZ%tG;4nEn2JNc*K!M@U@KfsMHjxqM=Yj0zHe)^0`nJ$GT6DO9YT1n^cT zv__1XAh5Ynv0vLBR^zn{IX-Bk!f7Dw#>?fxoPHjekccC@(QgjvFe51jEI_f{IDQe3 zpuEC9H%CSpn_?OSfRxRmf#@pISs`@OSe~;|L~H^?O6BoD_6AZ~vUHnBF_i>D%H`ld zbqxtA#PO0A+0&I{Mc^x7Ffs-Ry0?(@OW%Q6H$#N5U=nV6(9 zDbBY7s4Rh1ss~8ViRo3|^ie>?At9hOum@=5J?{yd!`Wg!{fr-z8pIOat&*%!2e`-sBD(Yv1)$43GJ6eG^z zf;{Bd@Qx;k-^-V_y5?A7=1HfQ^M%d!fTR&-p7eaarCS7snYFULavEWRGzLC}^)Exud0IiG>wWBmt7)1Y()cbfwI=y$LNM2)W;`NYC$* z13JB&sD=b3Z;9M72V-BB%U<;}!USm;%G#0~a3~w&f$Sbi93MWPuMfMN$0|-C11t3& z$^`=kJu|Qg(4OmK`WQII1nE1_=}(GK-TZ9j-Yhcj=glVj2`ga5&N2{L&Kuw%(kQxhL7F+|ttT8#!Go9}ABt*Vh9f;^3W_I*Apgh~4n zh{?CZtlVV9;s-0V(m~wYHBe3*jlY<(|2UyC!v$H^ZOfV1)9nqWYkX2&M5Yxc!~UF9 zm?49(ALI-2@npNJ3MU#BamZ>=rJG4U$oo-^6#H3}oZc*_8LwF8JwHLY<~SkKR)>wT z8STNCn85qdC+5Ee3o4EvZeBT=ybqm6a|^@dMlQ`TTIkIgo67}A@AXOaagXtI4sY^+P9*4 zJys#(g2pWXTS4Mj+zzc zijGrd86c>!FukCHzYSTKDH8<#q_r?34~S2zDV}FM&TbJ8#J%4n&fV4>C!tIfTkmRN zF~>2Y=->ihmOX(e%W;e-iW18gbWR}3azNCmsrV>5K}9b17YA(zy`fp{Em`* zIx)B9&&_|6=2S7d;9waE5+5?&3U(? zS#w<}IcuyqMZzI7a`G&YWTs_Jl4NLF#pzy-s8PfM)bg)$^*A*YcPYc$2rRIX@E|U! z!-->_!&U>uCysyNzw1tsjGoNt`R(eTAASDi?p_*`@mwXH0LN)s`4&fPM zb;ppxc2~ZcZ%jDM5rylx9GQh|Hp^G6$pFAA!7nu$h;HJeKg>52D72!3`*zEj(J9vA z0K@1cCP=R%H4@CKvjbmWQLG{ZBunWKL3j&kL6{9Ss#u-}PL?x(g7zws6Rmwz>*1FV znPC;@696F@10KlYlC&QVT#^hEr1v2YIV4hA_N9C8$xuaY57K*?n%iRc4?AHS=Uj`f+5^m#5kU)#b)!4l4$nvk) zb^}nBy+#Fb;(jz0sJ3)i!;W+rd0*pmWC(~`GFw3?*_Ll4^k~T0LX#U0ZF;oh92B%^e(4eF@!5ROM+v?2 z8&E-<__rHljWa8aef^sw7X{$7((o0GBSSz^;?%iR+vj3(-M7R8C}?k>UZ9#iH!GFA zIa6#q10`F#JR~ShS<|?bLh6mePjscW+luU;ey-~BHGBz(OicK}eE_j($ z0z<*wRDoI087CXC8s|1S&F1;AszJeg{hRfwnwtlX|3E+3Chu9ruheLK8z7DszcEP9 zc=*ph-Mso+f7Sl~`F}t7&wD1uLkO2TdNJQ$j>8dp)@>_Xo!-@P&ok|u2^z6sgKJ}V zSlpb5rZ8L6uMc$Xh%qaU*aE{^0KYIm&|PJpnk1qHQ_KVak+OL_kny~2X~UANJzU-Z z2)cWdv+3xgUp;(O?I(0qj2=3)k*_W(4u^<-rSN2fWi!|a3hHZds%>>aXGz3HlA^)L zQU)+keV+pAt|)sGa}G=7tHD+1OggQ+(z*W+Y4_7ijA&!m`>6l~(Rc0NC)34R6k5Zi zzm3JCf#S~`1wG!%*Qgte)yiPOK;ZL0Rc!r&IbNSUI5bdve=3N!%ip&5684ME z(Kt>XpZ7xD@z29Ch1Y^~T4LS%YXwy4zAY>be_m`smVH$;?6>jCx$DtB@^&| zY;4wjgXPVJm*3KylX-!nNiAfq#zXF|Fuvtv%cJTmE*BT5EEHI-B`kFMg5{~9{?HI$ zOB)p*HV_#!aB&N+rgY(URf!m&-7Q$-fsg0Sy$CQ=-hc+KtIUqHMLk(^s)mNH#f%;d zOx%jQ$#Rpvo7>%rH6HjPE7DTT%sML1T1O9w(7^S2ZN+W%g5J_*o~Q`Tkn=>31dgbU zqRTa=jT)-eh~dB%l@@(m*YbGrpkrwmyDRH7u=D>O%6>&Q=)7OjNyjnPJdA;2sW5;wn#@5%!M*S$VW}iE zj$&mzU^NRcL3hCaZupMiKVNT`ll}OzTJS2UxWf@38)d`_IZYQs3 zqs{)8!tjWhu4b{oe%HHo0tTX+F_Ay*Y_?%oL#P?Q=GkIIP+nt{CRF5$3GbFP1M~tP z;6QdICQDyfP=t(h0Er#>YYMEqXfb}c^73HF&-FMz=iBu%jkT$nt>vv(h6mU3pC6Z=M)2Z z%daAIZ#z5~h+d0*aU&k9(yUJ8z0e?mg5_mfE!X1ILHE3PFc4jh^FnvTX<3^4xn}(+ zpC6!QsrKu%0(YkZ8mO50_Uokbb~m2~D-b0Ww+|7kwygcz(^KqerS0DS)p*F)eF{o4 zG7$-WH>V4*^pXQ@xK`Wwbo|`>&Kg3+Nh<^9I+8|IkYAVNDXGR)N~8`AWbaPQ17DYP zr`G;3wm;g$*PPVhL8}9Id;vjaC1W@x{$WByh6zzURCx)sm8EHaJ%iL5mZfz~L zgaLZq$>}lE-+~&=45L+z!2hp@-}#g8nEyf4t(>UMVRy+4qpH8&gNwdnQNjDe67Sd^ zF4}DACGe>@8=_gvYc+^bAvmBZTR>(Ca>@b{_|W27n)!P4(HR9jnM_^yr{7QZ(@S&6 zkXEy8q^hxxyUa>Uvn*@uG++O0v!)Pjuh8(?ziAnv^aERxMWy@wWO_*tR*E5z;=;Jc zJwju|1$C}WOX|{-9GYd3V{ONec{tB6DWXX4RM_$Wsp7ix(blS&V5^@umZTdLHn`n| zV!7s6(`8AEdOvwi7eGHJS9|Q-+BANyn!IoohgFk-^tO{iZ&IgoU!~zSEjK0gWuQ9U z!l+ids$Pu0U8RB%N)w-zIW+C-x9$TeDfG7bfcfgTYgxevrEd5{?UXs6i_4&N-H?tQ zQ3JJJk&lY!z>aC9{GDLl^E5K4buA|%_S?yHStjTTJq^pnW|@4I zieigcpr>FX(~^A~Hex)`^nS3>fnI{8=pCWW^b7rmjkyrXPvwn|7&GNf)j|e!KPalB zD?9Xz;k2SLC)cLgzHDxwq&7wcWpx`RlbfpOY{wkFe;d_61XZ_TuZQc^%!YT%UOLen zmhd(*|M2cEg$BEul~cQ2C&}DF(HxXekc-k(<037 zUkt}>vBCdi@PAB!T`%YWcxXM%{W|l9d?R(H*MpvcS3(6JG=>&F`Hns6lo!~$g>NH+ zx;Lc->pp#QM&m11jEeX+9kMvC>XDCMjFM?uz?kVc2$*zw`o0glpYnFS2(96RNN9psh0>1B-q~IY)Lz% z2t(6G$J(giQ=ih|)UAEK)^5Fo*Y22gwX4Ns-E)UmuUu2lTjW6QX$Q)!m->{`3Edjx zos{ApG7Qil!2^Rg^v{fUAqH_59(nd;>+3UpgWN!DVZkYL94-*E@*XC~ zH8$99igGri(qwt=h|xept^+i*SqYyUEw=^jR8cl74R{`3v5#4deG7 z7`$O@=xt#pVRdQ6Lo@BhS+fy1K2(I!VWc8s0mY+BikfdE2rC5Zy8vjTOsjK5MX(Ev z#+mt;h+`w`p&GJ}Wy7P0!;hS6*yFY*^r)YgVgU5&Q5h;S9ojqlsh=vv&em((5QBn| z=MwXSn6iH^feOwCXye$ZJ3pX3qF>FAxC?JYon} zqFhp{nRhH8QBfROCy#)m_hlX*y;u zW)Hp~USxruFi_+v-L6nhQtw67CL*W`TP!@W8Pd@HQ%+XzEtW9E~n6757o3zk{MSV;kQlX9vR%3oMSA|v5jaV2Q=8j(B_E=3AfGc_#I*L z!swAfgE+Jl{?jngiZgx0l5#V5KnHzfb(?RyYO{SVn~5XlEzJTVd`JkhCvSnBDFL$r zOGtc$_lQANvkFd86hg0C?P+N&HOFv57zKoc6>o15GYYZWnPMg7h)w8bd&C3~5w^l9 zgnBhun%2u4@1vQm2&8w!w2ICP5)_}&<=~;A_Rd%XVesw1Bc`;i3M@GILtn~7nk3ar zIt#bpW9}oSA1WE(fSNGQ?f+IfnHeV>x|lS%Vr_D%{h$S z9Rrkv&332c_a<@#wcV4IJwZ|>u6o2`epyYH1&ZpbYjcCNNm#BUTJ&}$7QI=)Y&#KC ziXjy^bSMZTK2|EG>nWUGIbvzB)fj>Xn!*+o(?q>d?v%(8&3mh!hyq$ftKxkmZiC~# ze~?xs!vQsUk9}dP5^GY1^cRN?1)@EHR-+)P!Gp9X2?Lbmy~L_DEg-)kGNhM86wvY^ z7Mtj`cv>QwQozTs?6jG0XqCO;yyJy_t0TYsq$P#gpS7u-(O!9e)vh{~R!#|}?v4^| zqvf*b>`d(x`5qr*OirPa(?Q|esV(bye0mh|h}N^MtR)Q;)h&AP#X6~JaW`{rt=@C^ zx^Pk=s0s&`%ZaI)>~V^dwPxqT6{i%)IH5HhA}MLzRqTu)u49*F6e~@R-o+)|)qhYoly^Bc|mb6Mk}Ji`XB&82Dfr|T_0Ep@~Zi$YEVY?(EQ zJv!!??q8XHQzh6O$vx zzXcIl3aH_&N9G_y|JI{)fWhY9oNzdSrv+H#vo3LZJRs`7G9?=6`|Cg=*oOp)4D-WPU~>Tgjj=1cjG zPw!!-k`r2gim5}}_mVx(V{UO~uY0H%p|fODQ#-zGo0d4CwNyW>PF6{Wt{;v8I>PW= zSlZc3uFCfwo)=l5Cv+FNl<9Iw?`dk828x1Lp%(1IL}v8Z&9&*4=+efFk|F*t^%KGf zm7SVVvO;Z`-ZXqKnROkp4ADU*n|^7mS(=5N)|xRZtQlIq25aVLWkEq6-?ePKu1p1w5kJnV)S--#Ee zQnJl?#BuvZ4Qz)qOcWfc+XkW7H0JF#3U<6RPonWUa>T-0ql^L-tPvL8m@w0N(gOL0 zm(CH_+%%GE5{TjLsNXE|gX=`iK<#LT1#*OKNH6W~)mvDsNgK*G2?@l6wOdzEE}hvf zvbQ;DWqCsfaJdT|5f!Sjyh>b<7Pez!Y3^bUv(XVJJQR97L8AzJXo@$q!;0_(5D^we zVoR8nBxZ;H3nK|U1c)xsl^lhxd|C3_p}N346J&{s9VO0`&`=dSWr3U!G|bx32js7> zKV`=XM{LqGId7Q^;&^{;R%~X~+2MkD&_Mll4G!{fI>}nbe4dVL;swSH(oMDQx=(}*3wTzf}^2$lBkv)+;Q00u_VTG{lY8xt(V!omVw3;4dY}_L@qMF(% zNdY0ezcs1sAygU!EH{fvoRS-;zs;~fPS}ODb}>s~Nqq4B*K9d9sCjc`*3D1Wo7UhU z=d)k;xqbX6?-T>gezQD~#9I%O^jqoR^F$EEJ9v|pb-rI8b{V!$Uy0 zYvJm?5#XoiOu-Qch8le)#)kyazL+Ew{_Q#AA80saEnvYx9`3u;`8S_aue0X^(j#{H zS}jmBKt`q*OdBtQj15@~z=s4r{;-zHb~6KwKR5wI2w$-Gr1s)b>7jfffP*}o=W@QV z7ZJjbIQY}(0R|V8e7I9@G}+#b)qsJ9JCXuIME?~u#28#tQwA_i?Ak~}1d0cS2E>7z3ESO!JE1BIYJ2SU-AEBAs1B2a-C?&gF=`xLy*hJ9wz0DdJe4~=f$!fN! z`iue^m2h|{aciE!CM>B~p3rszdM!i%HSWkuUQOzt+O-Oe6z->PpkL6DaaV2ctWqMp zw#g>xlet6Mguj~W2KRZJR4+Gt_e9%MYYbw+;UP^b%wiI2MTS&i!J(q5OzgS}lQCqO zICSX9_Fm>8E^(Sv+jBM+hsOoC8^8#EFjktJiMI!}r1fp+NH*Xz0}OnqH}6h4{A}IDi9!TYWMQ$9F)A(_l^JVD(587zf=%?wBa19?Gs&a77RfTG zcqp=*L63*ry&eeH6bV2EUjDldwQvR?P=s>xuiM+(JY#xEN$j?EDYpzHXhZXCwu1|; zOqb?az-8&8IvFoFccqKqKz9Y@X5^$5{O>yyT#W>h(B*`Wcq84V%ZZ>s6P(_B7B``> z?YcOqDxj{BK_ALO2?r9{JR1Cz|UU(RTpT&0C4F3X#>t2 z|6~nMm+l`pAozZye7b+h@c*Wpcmo6YSbz0gT#fFi-{OEE_>S518K&aZNFcceBbkqA z6M`P7I`Dzz|LkBY1_r9o0hmu$6rYBbNS6*E0A(q@K8P1Hx>8smP=uDskY~EgE-h6A z1sY~7npAEEF_r}a1@kWo-7w|l-lc6a8F5Hik~C&jR}vnZs?G^5^N*AHN+*(lgq(z4 z-ez!&ks~XYF5Rwx16{}yy&Shq2fJPJR3m{T8@IdHFD^6gqmNUMiODlx~oy^~? zGDmP8@m8Wo{sJBdW&Ws&B?~M)@&`E3x#?D&|7w-69X;Jj&_H(W?A4y;Jln}DikY{e zm7~S{8*a&u+xywwezt$Lsdj!9Cx-~W*CRff0EsmKMZSt$4h=l7MLhJVI`7jJLx&=b z1p`Zzn^~0v?&*;mj|QGM>fF$(;?6um&T5y!+e;Y=c;JdWf|l871BzA?`J|_ZM?{F= z`+l9bbGgx}Xc9~LvRL4_5^-$T%gc(7x)qhTNaNwa^u3x%vM5GiB^Cn(hRCzYTp}ku zJllbRC9)W`b_-gsV-DBDVt^|!Z7wH6G8wo$({4JS56EQUvP`r2g&6SnvYvy>GA-6G zM1$Ik$-!lr=v;&tmiJ=3he4g2(XZ2{{xmvf^%LyI#Fp&aTtDxAH zD7D%(V1{i&fyM31twXWZfMB~(=gr+V*lerwIq&*D?LN9=m_^PVJ!d;Kr^f_m)K_h* z&0@fo32B^pm|Yafkg@;%0r z5hD0v>+LoR(e?JRo4B0|$U3&+fsFc#|^zb>Jo2ZoR2WIJlH-tS(DMCc9Vm@>B zHl5S-;j0nB7h5qYtUgw>U|@;nX}cGb&2+NkbLk%Qw15Y$C`aiSsYj0Z2r23xZQp1j zZ4A|8)qt5irK7PPdE#TS$a3G%W*gt(>A~W_kQdty?MkaEo!TLW2A)4Ry*z!AuBIr~ zEz_Y(Kmz`EJ$|x^qS&^`!m||=uRgPS(owxwIkDsJ-6*Vb#QjdEad(6T3;B|c);406 zjwKzTf#=U$NhAXg#im}aAlM3tUANec&NHhcoz^XCD5(Ear(Uj#D0Vz^;^P$&@1f~X zsiTMTl@MgZPnKD&=-88ql?pp**^TN&g}5c^G-`>#&=z@?{6wuIOAQ7VJ5Jt>*a||N zolfIqftTgVtVZr|&QizP2Povm`*6DY(9wta%7gde%&J329~LVPP@k+e zbXCt*8vHmcS`&y1pyN0!LPHtAO6hdGtCjd%Jm4o2)z0{Amg-9(mEW-xxO!g-_K)c* zLdQ~w&`=8Cspt9wlr|k;#99P+V6CJux>}2sg`b~<*?pXcj`Nd%C329CIXdQmk2rjf zQBUUMEOhKKYA}(9bX3zZ4}47H%Q#&P=!ni&0`8oB^NZ21{_u;36fK4hvF_INKB51S zEv0CVe-o0sDpQ7p$!?~!=ZnMc=#v8mroid&K={BDeoRLpLQc(m-2KAxs<=rkc}uXM zf8Eo6N*7y3o2ueL0u?1G32PuwyhR6sX(?f{9X-Sk=DEowolm`_*pXtzRB_2K;8_EQ z-%9Av@n&PnSA5}Capf_a$Q1|1JV zaWX%8K~-Wl5zg^N`~F`*YjBQ$jWT&Jd@E?EYY9GM_E5xB!S`Hq6n<-BXxBrY1f&z` zi5Z~hU2xVdiMP+I9X?`m6qoGry%zIC1Py9l(WyY&qycqkH7P->n%I!>C}RNII5jZ= z)Vu=&)Fp+)_=K58aq%DDD-~3N4=rzpZ~o@#qt73r4|3;wt^Y77if|PHkXP;^Je1UJ ze~Z5&NMMVPhCP!=_bhuOQ;ABC3Oj9k`7oxC3NVx zA6$&3+_+H_a}&io1_6xwYZe*`?u9RjWQi3NVF?0OqX3Hx{@c@w`RLPmwU|AjxRvCO zBf6G%KBs+tmV3p9w*hjzMMRL^%8{CQ4UAK9x~Y-V0)q0&^zyKJHhO6Po5p5QOlKW{ z%VB~AnyWDlSu%N{O|iyMAOc#6DtR)i7nMZ=)f;iHXoqOO=aHBdGwDL6JQ#>xkBR7B z01r~3Sf(t{Sg0(?PR_-;lUS%c$un_Aum_2O%98A5__OXL778Rcr;EvMHyTrgU`a0sFMK;uz)grL6r9yCG_k}5@ipWa396mQ zuA({Q8^c*d@cpU#bh+h$9FN|8u3>=u+H^S^J*5BBza~~7D>KEWnEASE@dOSCZUzEc zNHJHPe6&(Vq}atsi3A=9LymGpU2+5*5L`iys^w^-5Bri1*NWKq}^{S#DnY9$f zo-lYAzy~93*1NsL?_wn2fZ%oLHyvVzboNVe;Uz>7+(Ymirx zH;hae20|T9Ne&!Jejsfk67SZBt++s=nXDJBl81+ypERl2U9Mm3Uaj_%mucug#Vbq} zI_t8rCP@NiKWbA(J3-UxOg_7E%Vf&ArT zpW!k#RJ>D8NwYv2g^P2}nk6iij(`p&ZF$au#m z)*ZKWh}T$(HQ>FyLtsNi#vVu+$}e7l?(H23I+SF*18Gm-9UK}O8mtk@?iS^-SppCp~uRj2< z0|oB`W@j(WCP@ogIhPULfHQWA94S~VDw;{rG>VpSC-c>#$!4^wUW})g^97$mtA?vJ zny+Z}A2RTeLDelvXReD-!BdbIGgdhMXhVdRijd%q63pd@XO-AMS50Q>>=Y#ga7dtr zzy8`oFLX(30Td2xNqc>)@@Y05Beqgis}{}Rp+QeG-1Zvf@pwH7uBr#`cRD~6xTtN zkE)-nagy?3z@TRJBu=rY&WEih2{h~RJ zlsF)WhG47dVN1L2`_cJff1ru!=o9}mEnU*%EyKTP=Eez}w@~tTMgu+XHR-|IldQb{ z<20fI7nG4xm$N`a{iO)e@^2^7<(Qy~_Cyj@pW1R9(HrFB8EyC4=(fq;Lp7+pA|-TE z9W3djcSWWZk6!VIQ;73CP()R+SvyoaXRSBwf5c%%@;ByIc#g6azWW&HCxUbdc59_SL^-!{1r8_Nh`KFl_87l zP*3~ztMmB<-B_nt1?{|=Umm+(Os}wWi=(X6b$xpcibkaVOOXbuOb=Q}?$<;3vZ!k8 z6Ct)p3LMZwI}*{inS9zEW7bhE6GvbzQVcv)m^x6f3MD&R(?OsKUnSMG`ZZ>|7_dN7 zLrIaQ^Tm3?%`_;hGjMrD zEYQ?Y-%aXop}xm7P-W&8g;F!CyS%cird<(SOQAUeC^3C=L5V9bu0=H;jR0G;fC6e7 zO3NjEX>LL>7aF*Aj%lFEj5`Z9N_M7IYw;0Ui-9aYbeIumgARHbM64dDPIpC+3NemE ztH```#Y*cGiYy5fHF%J*<#~;lk#0<0!?t=-Oax^gv?|Lr*Sgh&W2J!!+8X+OpOiP01NZxZ19}=pXy%ATyihjq z2+hDlMMFR4jy}XX2JXik0hDmx`Ev5&q4n~Xp?!bfX<~vlUi;-YWO4Pc{W%6`d4uZM zp3Z&Hc0}c&zj3s<6O14;c+1Cn4 z4FW7O*i9dmTEO|7|A-ZfuB8EDSp{c+8rsIrsG&Vb^HMF-p*rImu*y1s4F$Bx7`|1P zhVdUpuiEGfKn?T;7~HhSXuq6U9_>E7+hH~24Qj40Rf|qvgB`?)R(a0-K zHn!0^P_QDm&uJyiEUFow8QFsz@c=+?Xp0kDIt2zbGR#t#Riv0%byUHsZe}*PAcl7_ z;&k?|+QL>)^J#n5;K|X&p$u+;k?*X*Y2EcC1~<4MM&rs1PVe6yL{u)-89{}`J#-WO z?ELN$S)!>kjD*%&93K-A=@nqw*>3X|9&^y7^ zC>=dEj9bfh=LH_}`Td$`Cr^AeT**@KSUAu``PpA?*DqKF>X#pf2ckRE-Sd$-&Ke&K zzqD5?7^fmUp+RyEQ-%cX4U_oEYJN_k3r1!YG(*{7&TyR~rp&;B?n+FzGqfyoipZ)g zb6|2vAhCI(bY@M(_Uh(2Y0$)SSzc7{1~pIR|qYa#Za;C)c!r8%%T)vFo6q*jk}?Z_Q66x_-vpiS8c zU)O+-0u)&{eXbi#p``g~?X0>B8nT?*(zh~>0quHAJx+SgA@H=Cgd6_GKxTR|VhmN}i9o0;% z!)h+*v@5W%;J#nrzL@MU#bdkrwx=oo9vJ*rJ-;g&bFz2JSNAl-<226<4qVq0E(+$x zn-@*E#U?fj2)=6xpQO`_R+{Jx9@u2=_WSKx%%S?_&I5u^=FWV~yXbzob9i9O0-NI(*T{BQW5ykmwMb0NW}m8zrOP)-!cDdqOR6_tEoS=K?EZPe2_+-M%%~-ews(K zs#bJSV+RKbPT{B&2z1B}&%uF96efL0fz}qhk?v*DfCxs>xKPVNwq?%Kt8wvoU=#VH zpsefZrKpR&@)r=nD5_(%N>{RbRYw4VPk0N(OcXoOy_y;a2QHB}+7}tW5Wd+fZvX_J zC_Vc4th#u``-fho7ZAai<}m5k`{s~!?V|KZkFaO2(sOXgo2Ys8A?^ANSMxj`*wV6F zPF@aNb`G)3NK1nQGde^trWPG^_)Zp$hwrJch|Kl%6@o*~1lMH}C94;ggDY^&XHzkJ z>BZ&Xid>6fxeOe*L|Zan(mim&)~hW6Ao#?DWWEwjNv{csMFW%Y4hpj%sQQ(dg#(vp zM~I7t6hn?s0%DnwqEiga=n%muJ!Q2UcG-cl*tG0G9}n7Yc|7DU^%k+D($`y}C60T1 zGCALkP0O`kA1Ek3pPuU%OEXgxfs34Cna8ybBk#6MmxTql=!>Xprv=O5dUuZp zHsP@}A$?vA*|q@?e4=ejc0GEvZEUMUv^UG=nHfs2F=s$T-bDRaK9>`sUiHJlflHLz zih{8&CVUXst4{(T_{99#+!tO}bi{`_X0Q2k4GB(c8Tjh5B04&_Lwo&v*;upXUYxbZ zpx_m@rH#4mptc1d_=IiE$M#sqaJH=>!6{l93QsScwb$(3!f$fE+N(|i5PYHxsbb8(;d{uv%FyE#*mlz`1rTB`+KbKOflYXf z`&4vHy;|>p2u9&Cv@lOewiUmC*vn&TNN~zr(tAU6_<{HK{c;J!CPvwe_h&SSU=&_T zL52n$&v?8to2>Nxy!3Ep@W3X^kJf)_Lz}OH_Om7s!6>aspNm@2FMkfNflVx#_hutJ zu!;6FH^S)EegY7DqQ=|teX>5%tH#%m;1nKX6G#v3qE;f~A?bbrUa!79%BDvpE(96M7Cze!Z^UY99o z@-0Xe-V;Ewqz)2{S3_c}iK2rqd55p49|0o6=K#TWKP0tmCMx!Px5lHJtm{`C+X-M9 zUI`5acf*%r1+I7*zv943fGYEQV6fi~UkU8AgFatP_^?N@1`vP>+<*mhCf}y0>Ftjt z-?1DZ-!(AUMZQaA-ZS4ZESPTwLs^Scl1y1E=6eAqWA7RitfKv(1pWzi=3+hDj|dgK zqW!>G$@n&0&-Me5V7w6wW9>_g%X!j-D0+f`k}+?<1g9ud!)Jr2GUN6v(;5`4qNUug zXUDIOG-cBPf=%XejS3x?W#2poP_PRB$vJIL{{bWz?*)^D9}2y#;<$Q%NWI9EXWWm2 zpSMgtRod(JYnd1`cmUWH`$KavmXrKa+DhxOzrw;;bGGkaNI-nftaiPCD-B z=i3n|Sb0lj6BvJCneEq7)tKPq^~rrM-stXEp8_Np-wt&k{2+%yaSNgd4-;?-l}f@x z$(!Me;Rl~I(*rAxM+cN<9b&}AN1WDNMn$eQ?Kk2~pj+%<(x;=Zf$UI&Lq*08G=4b2 z$lKZ>hK2$@0!6ZnFZ3IM3Sh8jTH9#+6jzA>TH6R2{F#7R+}-RSiFcFo1i6w91NgXF z4Pom5j6COT{f&9QVsKkKRPeqNT7dAwVLvrpc9s`to4Gi`N!Cv79N@OdVdAWp@zv8N204ZC)#)gJWUxtZfT=)a@ zWq<{9UFNnWD9lZ}m$^g*Z#`b{DbhJ<_wfRQ1ml%ZGWO${n5QUK*8>1A+5iWp+Mn%5 z@f6f4dy>7j2A{wh@#-QC>ZvhHcQJxqw#opVqJOK&DdNg7sg^^NB*?ly^F~NB) zxPbk9pY{-nov473aU+iiK2er+;}vJJXIa*uV0|knG`XZ>QWQ62PftB9OhobZYQ_VH zC?1avcxjGv=+MD^$}Ag=WUcMzQvni;bvtZwZa+4)mrTUEf$r^a0t;r|4qN7oclB$B zV^r|+w#ufc9U}I!er=Ti27A5cy#HptI$tN{+kJN~0t8!Bn;cuNY z<=Ug2Vwm8J{Mdb-FVh}=EMdWXV|KP2%?`^m`yca5dI?O^)zTMTW08jg-Svdd+$dy~ zRdGJnfaKXM8pz%-=`L1>(M3LA|Ii*ymoW(_(AYeM&(7!DU2N4PEI^zQoR6yy#U4T!JtjyW6iCOr`Gq_JquGp6 za040=?w2Ik@jG)j%|3uefkTFXw;KhFmlJ+ESTlK0i?HYrlC)k)?7zOP7kkV5R+{h4 ztFdgtG=t0L?0Qh-@?MtK|B)59X8hht4Pelx4GaZX9Iq;hFT$%@?*=Bq1$o-6nnb3q zv5fa_Rs$-C(|S%3Q}@*v)`_Q0z3VxLhJ+s_<<8QL&CG_{dHGj8kp;qT z;QQ$7X7lGVLZD{S-sFlN5|nrHlwU_SU(DW?FeVdaS6~sv+ zN=axjB&F`#h{m`ePdu0st;EBVeLdJif--056}@~n@Nn3$I#duRgF;I3wajeaK_M_f zn#--}qr{!;0o=-?f;gAk-3fAQF+rNE!*t&$Q@jJz;Tjn9xjcVUZP%;@4^YAu6Qpm* z{zqKX)GT*3^*aOys$>mdvA+2EU$ETuT?254AWTNl^zj+v>pP0JfS^m7Li*IqlgBdL zXy2wV#szsYtV5#titZQld)s}7bpjd^lA#RJt$7T+zC)P^7Su)4zZBdtb zcq8Uzea9IF4`fLrK_4a))4q)aFhQE;@c7VgXlJrR^JR3&GR+|cZFL`xIYba9Q|{$qv7c`id`-0PlskZeHmRfbm5emAed}lh3+iMnVbg3D!pwcg z5;ZD_lg7a&*{@$rwtTYFw{eJZL7wK?4(sI3LGN4#R1hbFnHBA8(W8>n#Y8-w(RVPz zfI*-1y-7j$?RzaC=#u)op-Wx7+v!_>9U=&m`up`^vf9gH?OT5XC}@*>ZYQ%j?``_# z(;|9iCN0zMYcW3V z+cH@|&?OB8P5fxPN4y8$x1k82piTBt_G^0Q@*?-jdf&Yijtl|GUJ50nMa}ABOEaSC zr8Gd_y_6IkLUNYaP3I@FM1%|h!2>?_6XnV5kB8k}tf6%EfCLn@Z(+n8Qka!FDgYV; zY$y9UUsurFZOYB_i{Oxv=6*L$uORf!JwQPl`Yi~|FUEH5w^CFPhv`d5GT`Q|!~|*R zEJXtBu*U1pT|3JHG$e#-CesbKd7DRufY9J%lO;3At_@BZ9YRvqTd)3jNOl!_yIw#A zaZ=UHChuU|xOK+GHg1?-u@nRDqvmjt=Zvw3+(%{9c6S!UVNC={hT6)C@rqabvz67i=GLenPO1;dmSKK`HZ5V+G(qzPFcD-W4uKR=`hq+y}=)+_V)H{b_ z7cKE!yCX8(?h^76!NR!7h{C2xHXZtoC~8y?CzZw~8E|)rW!mF{Jk5332Z|l5cdi2} zh?7p9Z34yIeLHyu4EkiI8#YQ}>b{Fg0Ti@J-#gsy3rd;qz9jvT*r|wf+jm_@KqJq| z>|nr6kdSG&uL8=%x!7JsoaesI#ehMd;|z-M+< zK$k2I@;!sNNW1PvfR`gfK+;M_`vt5I?s^6wqQ@>r$bGUh8IcdT6_SzQ(P4!~A`eX(BH{GBO z43NKPkmK<~#f>3`ixxSwDd4QRr63}>Ylg}>))W=QcM{^|u?f$(TbDql|hmv;9B zGAnll4W#`90P;K3W{xkm>%*p+jn|tgy|Trf{|^Ic%kikhS#!Y{Nj`{ei4QqZPws5dSGkR z5hPxp&3B_;z1mYmtQp0nnsZu37jM4rTVDYLgHzuVePXZlnqzO(*<|{R*;=y*nPn50 zAilzgO<*QQrx@bpGiQ-N@-s@aKkVm=-DqkCFVvZDM-Lz3r^#$agNy0nFr$mrbAAr_ z-^(>FfPOgH%<1{JVB#aFpzucltf-I%U|V`=o0+Gf_YHtYssjy_DQxGz@@?2IraDUD z>e+aG_Qy&bDp3GY*`KOhdD|p{$Y#a6+O*K zgGAWCIX$64lMZ^#l9{eyU>^{VX!aNnw6(N*vx>Uo{dh51 zT^uGCydn(Tsz@p*{CUW0wpFQKR?~x>RPKWcY>4ED9qVRtY>wFnD z=rrTyh5;GAX$m>1BL8t3m4OQyf2z}%vE#p;MxkedzIWR6t@tFNVdfr?j%c6FkSff{ zTH0kh{Hog`)@=;jE=wv{OQUdiNfF{`T}_M$PN6WOg2L9iOG8-ywalP-@Vc9@LFaqH zTe3ae^4Vsx=g-YQ9kxDr2IzUeMGw8?o~{%(tl0#(BPzo(kU&*S3+GBOi~;!K!N4tC z!Uc`A+||?yZz$sWc0H}cUFU`vVgc_6(?u-M_16I>>tUHGQm!|<9Mkz+RbfK_l%fGUN4qM=y2Vl`zx>+$d{M0`+GMQ8m(_yD>FhCLSF%CpFGB`L z4d2{*uNu?ap(5_fw0patCxqH)WwhzbWN22tJyu5BXrL@=A@=l8f*rk&p3+aB(mF-v zor@kVL=hia-mc3ulXktSxc4`_gBySf-d}=;l4u<YWAX}%Ny273(WDh#A zYTnR{`?2tcKysVwW!TyXJk8_Dc1K&$=75ohVhS`zdOcuHK?WT{-hpy&gD5FQds)(B zgxqHvibG?I96Y4l%}d!B(=cmjj=i;8!{LJbJwg8EVMU$jh?XPPTWWPD^Tk2DdO59* z+HW|%)Us?4db=Q0j1e^_R~wueB}b?relt(JJJ5iBD?{CVQ66R;VUHRcB7y_|_ORa^ z_75+s=`*TNbdr>g_^s{VSe@?bzzy(_@;>ar(>f7!zQP=3HV0jqo`#uCqg~oKAnKlp z$G0GRnAUASdg%WhkE^f6(Po8ZIF{`J_@4xPs|ea`A2V|dE5gD<#Ql=g^mW#T!7U1f zgEgAM;X}sT{F|`Y*?RVhBCweQcg!FP|KNZPQeqCsd7pn9a?AjsPEIF^nW%E*2{$lPjAYd&;}g$_l!Umy8j&B;jP5tpzhvQ zs%0mRnVL1l>QAdFW`d^ooSpol;d*NinD2h=))47edR2SEwboA!96uttY)bDm|BBI7^onv&0;UM@&TU{SW(WaH(nV1#tu&CVq-G)SIo{BQe=}X zHjGi=Plo*i^0P7jU8XwZKOONauF^251_SWne%1n$4Xt7G#{~wnfX8kufz0r9Fn*5> ze&2>UFWFWXw4b$oHTq~a+tS$^a>cYL8upHOt1mE(m+FU-(T1`EQS6hv9LDx^Sx}3efMDdO(D(7M$ruGeImO7Sei4|J?=vU-8 z`4$bJ%uRnGS3UX_@MSk_AU;a*asxXY9a{pEg|wIEJlaug?}|{EOzxTM*>03MMzVhZ>I=rA_!}? zRNB*?z*2nh^W(}cK4**0tn^G4`)a$Q%WBVgOV)7TrCSk7GFZ$nnUw|Z_mk=6lGdwO zORMf|0o+z0t-hKI@_x`_KiBmzX$?1Vx|`1PKvq))Fge*)G-np?R}9`%#6%G07iD2} z)>P2dCEFV@YpJJ$fNU*Dus~8%|45RkzR1P(!TZOW2BQ3u6*9%_lt$fZxEa^Yr5pvs z_+|dGnCw!YdI<)&Z6#+#1uBSZDn9B%$F#XW;W45HFTR=vq8>Cf3)Fuy4_EAwbF?-) z83G7t>ToC>weJfiX7CONBoNfp0GPC9ON%KQya5O-kkm95b&2WBt_-s<_*j%NX{Gt? zHGVMXB+>#Cq&0OhCNH_w|G~SMmm{hv=TFTAtr3FR#PF`FD>UU#hSw4g&6TbR#P)!ljjyY25%-96QngQ zUeS5-1x3@Nn_1>O8f*IpU%V1rkk@26b3WvZ0(zZ(;=`CAt!Z{)zVNNgE@C1GYpSOv zJsY0Hqm9AqX~G7HO)DbiOW(qZNKFG#ZN3(UCb7*1ucby;V1hJ%KqcD?Wa4M5PlN!l zZQw0JYd3XDFD45fR%h@|$uht)Ldv7YT|@P#(1gsJ?0@--pEVdLrGh50qE#o1w(?>h zQrElVWJPRHCj6*YR&V9S!qi(R#|f*+T6NKUp9V#8Tm3}3YBK2Z$Nk|2wY}0EL-oSZ zakk>ShQ;!uR^!{VQ%%-tr*yyYM0VnPhGO!Aax>dKeFihf6kWsxD~TodpbFbPan)1z zD@SPp6BHF%&w8^bmUNQVv!;S3f7wXZIXBT~gHZL*{U{sR1%V1m{?^kr`~Wl(&rOW==@o+E{3nf`xLP;)kp2R zYK@7ZSDdEF*){A`#A4M4FT08jtWc`(0PIx6LQn1iAcan`4v@2GvNNLIY3gcC%cxLT zTnjjvLdFP%4ee0at%wWxWbII3gR(;ZZyM8dk>VsHq?!tv3ZvVQkgrm!m+Fr7HJktX zy^n@IZZmncSWoyV_>=Wb%Y6{vkGsWc2 zr9P;1jB_~}Xz`a{q?Tm!LwyS87%6N6M66oEDq`t6F0nK1`G;dP2|n1V;OAyN@!K2y zGBzkHvJ8X$)KyybDN~Bmx@dDB>iH-2!(~-$E5$3dY_sKni@(IO>b{&rUb}xbN-n>uuLygjxW?qL z!H=4fNi#m9sKDY0I(6nzV-7dl;Wr^d7D0z(s4K?v>hYlVO53zphfy zwp$;zbmSuyr=HuY#W5Vv2Q^pZvY3k9TN?L{t3c1(E#`RxXPF~WAExl*R8qEG) z-$(^@{z81&eypy<22_t3k1-%)gT~e}j;l;8@g!v&lR+VRVOJ*~yMNM%K>A*|)b=xI zu-~d^341Z}cJ@hfaA%DWJyB@VQ+wtwd}d^^B*@JQ*J7;%zvx;KKgp8>0Sgc!>p?{PDM}tyqH) z8%w>ft27oPg0iMkjN5@&*wCdI^FSBoA*{V|VOHo!d&b-K^N^O7N0LC%b+dmlU2f(>oV){wA#AVe;L6X4bF#Tj&K$ zaDLByZtm(_Rxeq>|3iDh=coV$hCg)-68&$wp&J+=zwVG}L&DpO$^XB*5kzR^H!zW&JwSxnC8o_b;z#Ym#YX_OKXw2Lv%E1%JO5IAT2U$1@VPrhUR z_s4(!|Gx8`{~S-3N=P@yNw$#ofMjFm}7)7(79j#xQXW+cNVyl;BV@=VJ*T)<%p{80QjJwCp8yR359%+~Kbce%_Wxqe zBc&?hD%Kc{5%t5~>8w8C`N?vjJ$iAgsE!`V=sN3@2-vUdDhB!dFOYc)ffjsIEB27;l8_0GV-V@rNNVp(r^=)VSA zwUQVt7GM%`wy%TfBl zJooUX2oZd5L^=VaIw7Y4jWUZoUK>h0wVaLR*Y7LShjk!Vg?Ef zuh-VwR?D>rV}1O-NANz62A&5s&+gT7Sy9yBY3W5tMK4%#%q%uE{GeGwu8t_W!DFO= z0*azOgpNsz_?12S5C;a9sEjj>Y>zVbXf@A%LmkiP)2EL|lQX&ZtLUxH-S=ImF0pbf z>7nTEEDj4SZ+I;xFBHpUCC`p1tX9Yk(7^QlnCS)YjQ+m8?JBVl5*V&T3^Zt}L@%rG zvjT|+15cb2+6QONRrj12Brsf$azZx_UsMaayTr!~4?CMI0tDad5#M4hw+6cVn!^H1 zY`5jJp*+AKf#J0%AIrs#Qz&|pLit;$9LH+0S>#j0obHo${{C$6De>g6-X-@Dh) z2oQYNB9Aa1r?0~*#(xF(uJOPY`@&YZUH2BwAb}z7cg$L-bnfo`4$#1KJF=YFd6`vb zhl@q^yyEL3n$4Abw=F=ydsXmmCcEd%7Zo$GLV+1Z3kR;aX6@vI?%mrY3k8nYW59o z<5l%?FV?mj8mxK+v3j{N&o|n=0z2KvfFgsh)t{yFjRxOWvGG~Q_iHNCTx$zW#bg09 zdD>rY*Dn}T-#j@)P`ydx>OB?H=+|F-_0$a6=xHTucmH=rt(f`)&KFxVHblIIZ%Gl0 zoC?K0Ch!_n1aQcB8(&Lgta3UOdlCR_))CMlq-c+jGTuBK${qn6GK%(CZBA*A8XZE4 z_Q>iO${qn6GD2PXg3hqB%96Ph*|n~eup#0H@TnxBJw!}TBArd9IR5HRy(;$c0LmP- znE`@A;Uvj(5j?sUP7%CaM$T6UlL2tZxDQJvg6FGqe!yR`&keBVVzI~&P%aL7l5{U$ z%o@xN0Edjwb|iKP&2HR=b!|(_=n(P_Y?vku4PLB7aXbZx&84yk@Q_lrNk|$i8O$aD z9YV@BsoUOI$zV3A;UVRH7&9rJ^6GCUCXz@8p5TMAFtbcc@?VChxvC$zCZw`b(8zNR-c=l>0w z6NKOL*wFB1gNE69#h1}EjU8y)L|AaBc&|YPnVB9eorre}vX5r-i%RS{C>DMLL_+29Kz1XfG&<~WB<#I9|{pQg}4^y}N z+x9&p`)xUd$mZSnYmtN`yqRKr5koa8U~$bph`$vHFnumH2Bi$?T*!S`y+Z6cGWW{5bqHmSQ7h zqU`=f(Vhp*gF;it1aTiL#7VDGTv{EXYLyup$jUXVwBjXptB%;LI&et%Ak0HhY=_OW zP5EMDPGIobub6NNA=}KtI3S2zdcURf21|;|)YW+U(SL{W!@ zoNY_Ty!e=2RkIq@E>$57WKkp100>z$mFR56f}^StX)wD)H6)PKR(zDYD!xC+f$_-2 z7qCE7n~SFujqKu}fSh+*iY;1aS4<6sa9t(Fmffi}Ysy;qkC_L}?7>pCW({z+B*p|Q zwRw^ew?EJ}Xdbmk_N0IXqN1YvuCDqMb2-+AuXl}6bP^vzBA50FDNrOT{unNupnx1| zV4DIro)o9$F_SvGG?5&5LXe;rw)a=&_KijK(n|Z<-AX z)Ah9eCT+km>uE#;U3Ir!)QLK|@l;V6)FVQVn6IXs1&V$lJnqZlVs=>VU1hC5p-qV8 zi()Z#4#-;v#bdI9A*E2mdW_=pRXKn5+7(MyDE@O{fmCj(3s!&5V$OV&YTZEyoj=#< z+|UV_+9jCQ%TsC%Nul>I6?#pjYV+UK$wa4^k5w)`D%_iJTIG@%%IjgLk2hxfQ`53X zPs6GwY&~EqJS0e^$0o&hp{L%6`R+gsb+zuaBgHbd0f&Kr`6=QcEkA@ z-F>s+TMdpIOQ&pUpvF$AVvJ zHoPX++2a&YQ_q9e-diV4#}vhh1f4k=c&NC`KCD$F>al9eSrD1BB_itZtrR~s{;b+6 z?p|XsS#kr6obxDF=bREOTpykZ7#_u9eCSA)Kw_KYXeA&vKDvIZtpfDYD>ZL!VZbic z{)VQWSMGpAMUz~#2`~y5+6k_jpedT87-6hm+H!9H)Lh*+-7nWgO74XLP|TShDL3MT zU^jQzE|~Tl)Kjf|bT~VW){qV|f2Odjd(9!W2SYo~I?|||5K`UDSi42tR!LTcwd>YL zYOI+c?pF#s*84bVU4kz1n*RJ}KVv$z$IwR@zI8!|}Lge>#bnp%X} zCGTLLC}f3n$I47O>>JReOP(eL0B|*UtDJS>gd3L~4rMewNr=aw1!XbdafO zrR;aqS&8@Lov4-KgpjIGFR24`c^0E3JOMuW&MDM zzy3PWZC#YpC%-*=%G%eV{eX5Ri2G^SKAkPs+f}MtP5OTQh|ANi#pddK7Z(JwcBt*6 z-#q&KOJ=~K?NBEfBwnX`@$DV1UqAl*$*(4}?UuqMlk%{;0SAU1ci=A!5OjCNuVxGF zh7QQei@?7gMjFC``WmO6Ulrm`lP?BwI=mcNwBdXpnZ*OyTOw!j2=3>@GRAI>7gV&( zN?a~G%w6UV5IGaxnYhb#7@fG!_7=~b`*kJ`E+|f^0wz%(8q7={>8j3i@fzH)Jl24q zy8&^oe$rUwK$m&28vo@We*q#0MZLQy_H%ye-mt3R@IWRUhIaSK;u~hn8W42%xG~MI z8(Idm_nk45{=*=Xa$Jz#jL5$~5I5s}G?dptf>MNU(q(_I%976|4h!E57Stlht(M~O z|F9ru;Xoxkmc~WmiO69d>+nE!pO>QjaXP2RQl{(0U$C-NOwa-=5qJbJ=tYI0R5W+Y zXoppp8W41{6zTZ}MmDe%4IHRM^;o~EmNf0dC;x_34-W}S(SDdqm*ZDohqWIKCP;-z zH>G$tVwg!ST!yNozT$|bXW>94nkl+6z`U!@*oHMzKm?&EJGw;m<*Vp^*kNVYV1iVX zo!PX`vN){lEF7prbuhn~i-Z~7umK^L+LCa=tN~OQz*uO%4i98BD%?)Y4V_=Fx9WO-8r0_C$B~Rfr+3ScxFHmeLY5)_OQuvVaQS)U&O43A%6Oj#Qw;ay_ zNgp;}3rS{cY07&P+wU68c10lt1U+azc7is>g>tT}*n!vJCB;PW5b{a$p%L=+W@ol& z)UH#Ii>HjE*vQ(zCiLW4AWIY&|A3~!=vag(9gPDaqKJXCYuSSmJ$ zH>jOv3P@C<=v2y7Ej7Q^oRLBBZB6{=Uc7-?Hm$6?Bjoz(9 z5chuL2gbYV>gU#cQWa2fD^r7*@T?>O#E95br_IHJp|L3e-!5d8iP$3v3E|s?xIPDM zN!#+RQX>fo;UVPHrc{leJf`vT6FRf`6?K7Hnh(XXnFcrEEiE(CYJ9Tb zPNum0umMi!YvVaaTB7595@|ILq=`l*nVZPrhBh*J7RdUnv3aU6V=oBXK*ff;23}F5 zF&kux9y%RCv7MJX6q}AlG+-FoL(g$^NcxVZ11Pf5OTl}ZBIi|fEJ>0Bl0>jY4(jC8 z^Pzoyai?!+ux+7%FwvC}UzpXRw6vjJnN}j5IGBvOrs9Rck;QQ$h!f4!S?Kn;4$jbK zDoX-UX7(W%?z8mCp^oB=TmzX16ln&?5y2r!yo-H)XidyVb&L@K;TTRx{-suOE~YB>YBv-| z2@V+{_h$`Odv24_c6Ku3dO8UG)iFZ-Bxe|6ij#`OD)`Ulk4Z?kB z+tY~+2q8A;<262Ofd=x z&@KzwX6uSh=d;FobPF~#5SH}2C*5;Q^M2;!1fli!@k?~*hSmh`*ei`U_It#l9? zOi(mc%5|8G-_|n#K|BiU$B+pM9UEjO?HS1oyTGB&aq4j^9fa!axix+7xTAX_dj@Qf z`RA#2I?AB$nuf+y90_Z{vt6}37bO0?L6N?)qNBcnclvHqDD!-jo`jQ`_c#0L zE*>wB)BWvYJYH_5-k(rzzzDg?PH-}>x%xj&C%BUmf`hFWv>#+O`DXUVS9Ku0pi6Jd ziXW^Uvh^Z|4=Eol-TM9Hi}J8pd|q81%Snw)3J@@Tk4ICRHe3>_P8net}R1jaMoAW1h zDLnnBxGbt^WsaM%5?7pz*zFhlSKFe#SuBYNz8{)j&zJitZTh+t)7gL5ZQPhCz+xQM z&gZZ8VvVvFM}P&6|7h|-dmmzkzwMI?j|BYN%X0F?;o_p8i}1hxt-0iBvM~F=k3a2L z*4y=RcwoF4Ge#RrHJd%Nd=?FCx6*7sXRfE&_}ohObHBOtZkmru@n~-+Bp1~qi<%r- zMC9^bo|WfR6IMHEo7^U>`=VNk!_|YV>)?>j(0A&!zUYbQe!df;wXj*=3j4N$*en{@ zLR;2q%V%2QU;ozZ|2?-s zj#Ya_j1KEygaxK+oXOt)$%y_-cc@MiIVkYF5%9#W@i)Cl91a*lo0(rskl_y4&t?r4 znBJtk)a}ibI=`#wlv(UQAC(ya1dbmy9P#6c|EUjyg8{xNkDB_zY%b>!{4;BUJ zK_2$iVH4fN)2qBaQi8=aE#p|qBZ0-l+}agv0~Wj0aWOZ>0+Wfk-_2eGem5ZI3LtQp z-0+`hc*|&x%T0_0rW+Ac)XDy@M^zS1#roIA-x4R><^}9%HIqAu-}Rjw!|hld)XztBKsq8;-M_L;{N$7l_}YHsH9PdI}9}B2Q6_ z?wzM7P6sNYDB7EaMN-qI1uU^^AJ?WuP_Ws3&-44r+}CF28foX~#qyG-|CmQ;jht=~)9FQ7t!I1D@zfj;@OZ9U;{Td~hmeoBkZ+6q zi?VuVUez<==mOsP>L3nIX?B2l`h=Ps2PA!*mNYNdG%;FCH%=n&Z;s{&1j0Z02-(k>o{c4ztenU3KS+R>9WbyY|Cw-c$vOIYf<3AA>!TUvrq&b8>TXu zmKUtXDBkmE;968P=#cSt^Ia^1o8ntVTdQ#kC!#slpDB*rfno^Rf*E40;_%?G!+SY9 zI1#cyG|NajTQvBP!o%5Lo;IAN;30&Ev%f?=Ibk@(&JyU5!NZwIIBGbHupuE+96sWN zh8U|jJUB$~a29B7!cC}SU^q+SL&}?G;+bxxs3y~?`J?ELDdwNWQe6a>V%pHyXGEqN z4oq*GjO@#DwVTYZ=xNc3UDvZ2mA9m7T1^k;nr{Es6gDK>`ooT1{Qift-+ue0ee0^C zRlVp~zT)~83uAe6fMC2AC8%aEQZH>O?*3?D4M4$s+cQ71Z)lmk+RYTKZ=hISPS8q3 za5nZuiuz@(u-^2uuK)yNV_zgN4wYc-XWs-UnE#!*XLPcoBMQu*is@%wH5(Wp-=T{( z>6+3@dnF296pE+n6=O00xffKbdWQi1)of7X@KA6&m84iNc~%uI5^%Z&Sak5;z;`5( zij!^`G5=w9RyZy|Y(>RiI3fs}4BOGK<+OidoC+TT4d;}gpnVU?zY-}Py_^@@JsqZD z{KpvF+!54`4k2&nlAh6~2R_xV7+wOb)d&t50`B7*X^E%u_?P19Twt~GTVT-p@<)B3 zW_Lr|Wcc!1-|~+@L3;~IkzzLg{;)iL<_9n=!x9suKD_t@i-oHd%-Iwh+}de9Du{ip z25}tI`qpZW2*SG%=zpe();(<*7cQ;1;u=Uv3%g@(78cak@d2o#=&5K1fsrI-0rMu3 zf-Vs;6`Nduk|eAlk;AAo3)9{J#VGBh8|GK;tX*?9>t@I?f|6CZ!E)#ndnwxV1m?#e&o0+)-(=JgrvTqKM9r1O3#2nAGJJ`>Kl4Tny(HHZFxK>XuZ+DDKEdHF;KNIyMZ1jUMTCE>m)Gf zeXc1L?Rzz|{fYAKo9hS^w7%(UQq;b|3c7F87o&pMSFAb-T~lga%Hf6Fw_-_5koq>L zPOvD>5B%xkzHJZ#%+bX!@(rYOfS{8uL<>cUF7rSaYCu8jo4wiwiH5dsv&RuZD1Fx4 zxcHEE4~X&5K%WgzK`eci;={wM<%%y<5A<1&3DO6vdhA;pgAzQVZP@eu@_7-5Ma5Jg z@K_s|1&0h-%C50wL1JJj*N7nWUDaCJ)ofQsCO!e%x2u|f1@$$Us7|xoT<|S>ipy{T zk+QPI1DWsMfNb~3K9aPcCYPDFZ}%pJ3-Y%hvra^RWt@s>RUo7?YT!U6YwddWtZ?lt zV;op(15^-817|x^0}ae@K_2!hOtbD1rJC3Qy^0tZ^fF@kUQamvI51*)Opy99LhV#9 zX4Qr!?^rSS9U}-xQ2N;#_xtCI+1AWh(VHZ5>cBDPzOyxHWC(a?RYz%at#w_zlVB7a z+FP+%186QL%4y0B2ekNpK$tEXZ67mr=H74@lcfFrSCM;d5v zTQOUsL?SB;){wx51|N8Mns`<~aT9F2AyNcT@h(2)iKy1Pe_%zTSmXv=+BI_|Q1jF1 zb90pJJNv5K<`TtJnZNTf_Pl%BNCeHAB(JxH5GwyNg35km99>KT+kAdZOSLI=~_$oU7 zRGiL$AtmhiQKa?J|_UWVNbWg`OrEg|qzZ=hnIX2iZZfWB$qHe%=Ep3Jj>V6rOL;Qi6 z=Q0L;NIk(zdH>3@(VS614Aq|IFYL=?x&9s({(-Ofu^{Zz|(HNHxilM#_J^{sg%mLbX5x-%Xl5iKm}#-=)-2@ z8`>FG(51Mv<1RMZc%zRr7qrFom!~gWfljGIwx=Vzd?{+Y`rAPYwHfd8mUJD&QTvZVJS zw|-7Ot`V4tp|xipd>7?+LS-CN z_(xGq7%!$Ih@dJSz462@0LHtw#v8rm`Jge5B>WpQNA+Yme5ft8Kv+yZ zrNWvH3cI{7nn632_p$l2L_~SD`=)J7K3@BOmSAeJ7E67~x*8KfRXpR(^WaX6JgJr? z?atzN{){){-AW0iiKxP|Me~qJnIlG(EFU!fD(aA#9rcS;uOZW=T8%bIpkapYiC%Z) zrWdDIY&oGdo_G8GY)=pWnaz^E!y2g^Z{97(27SMXY?=6?D$M&{UtfG%6pMoI9{a;+ z_Uz_`WF^f;3Ci2??{t@PvEt68*cuC*3~3Dt+P9G0$y&){HlKIbb|54OEgYz>BcY=@ zY$7tnUSnV+$Z9~)y@RBduAa{|o7Sh+1gtC-_hbVtCXS&Y;az;hB+!u7N#I4RI6n=z zyoLZ9A|BwYNW}ByZYfW3w*<`9^1PZ=uRa4_y9$6q#(VgT$#9zu6D6Y9`vt(f4u%dP z=|Z73zLOP7fDIApLNN(pH)SiPFO(1*GCqI}S)m-Z3tG`iDp71k17yBf1U|(0p!@hY z)T+}(s&p!RElzXx4Y~pnls6!jem9ZfqFl)rkQH0T0m5?35kdF{($dfI;;Z74KYTB_ z92jVPR41CnayOqksZ{r_p&iECFP4IvGl>%)d=WFD0@1G)DeCFzB1A6j%viUY0=bs+7Toh-4v{T4#J<{6c7u zAs|@@HrXi(!2`$i^>os7N*4w1=^nM67}xanffO+4@4;;!`&8*smEu?-pm+^P;I@#H zlO~3A!^s<5kT)GBuh3jECXC*@!z4jL+w`Y>3OaTpSbO)U1tv%nrA&@^5<@q*Aa9zK zS{;p|S#ay!qy%^%Yg*>|$2nbe!gu`iZkZWk3t=fPRvAuc5J4C@P-^f#)PaBr(#Wjw zFn(w*b7T41>QsS8bsB?*+}%OsLJ*`M6Hm}7R%rl~41oq@@z${%fCL2m; z0YMkFpj=Z1Zj{4uJDrA*cRE?CX@2%Sr_gDK zw3-YQhK-!a(#GpaL!Bsq1$8s|K_SwJW6LpNu7}J%M8KeDjkZlC7kh@Zq8<=*&0JHR zTTFJvw(dRQmqdmD7XFRAkz1SqGEZq&?ni5JETw}4WizknjL|x?+k0LygWV;N{1y(=ha^kE61FBr^P7G5)nvgTBUd0sMszFOh_+xi#5F5Ou`TFj6tWI0 zlHMywS#((A{WT>q8~23W5DetZx8gp2AVvexpv*&fNXZq9nI%4zlX`53$T_J=7*E2F zc(p+IS&%v-IuVaYPXM6-N7WG@9+Z!q}jJ z$oJ3fPl*Pw?@%_x1DWsNm>&^+?Jh1^%lr0klE9$%9gZ+nI{5ePaHNqTAenzFV64Th zh~EH%-q-0cRTv1v9%kQ$Cx;CY$wFx2PbguGLTHd7AXx}D*(nOa1B3p}wY^8^`LcLH z1M%W}vDT#6=f@wmiQ&NXqu{6cY{w_;72Eu>JQfTrKMYu|ikGa{pxCyRB{5jwcq`z* zz4oD_C}LEW2Y4y2eR=+BFShgz;Q}7GLSNXIX0XT1H^dieI56D^EJ*L2(L>1PX2lQR zDQ2CrMhqaq`01L?sqN{;n%(3v{mEP-vzuHVXjx-Q*J{&)vvhaIjxHPIQ_+gM#~NJM zzthq{*ar=O6y`;-VtA@JP~k;%XlfWB=bgM9V?Cxs)7#T3vEUGKJ0-$+38UA{cy!ZS zSP=g>M?8H&7qFKvcGIf3qg|i&vIZj>{??b>+hyTW0_F&1X6Zt zz>t%-IMa%*J7PqN-awAXVu9z4kY~62BWL;Be!feGKn)T&0`IM&>e17C9S|4-zuFZA zfBdayxm%nRzO+$a{Ln&y{(Z6H_geMDw>Z!rl)wwKNY7lUX9+kUFkEl^$o^pWm@pd6 zFgp=w12k|wSeJ{#sxYoZ7nVJ?fBDM&h3-|8uUl$*93h?yVd1}|7@+0D7A=R(bVsk| zY6g1~X*M=S3RO%f0KtbGHb2KM(=Ue-5sV+n9RAwe zrbU6Odi6Cu7*nlhkrOE{`cD+87my}^9{90O{#&Y>|3q^aEKc_G;}{dH@Z&F+GrHJe za=zS?Cosl-e$4T}=1bYJ(ZwJ0XEZ;__T(ibf>l^`Ph)#l zgoCVV(ZF=amtRHK>e0Q$?&z~zg3xS*NEKrQ3f{&~k>qk!p0iB$^-~52zI#zV>)Gk; zt2txU%tW;1G=K&7gNWN+>q*By*4uI;+fmKzc$)x;4Hb856<^T{x`(QmnCavBp`xeO zxo>IqsK)#$R4~K#-z24S&4P zdythINN|dro}D140VY^QPALWDlwNEa&z~B|R!-R+9%Nm|X&}Lg-eTNCoKR6bspv+q zN?ftmueaDi06jmcD`0!_xQc1UmvJ=Hut3>+d1X(EYA07-G!yMAK>&x2mJ*}lJ#C4F z1ki(Vx9QR+MpOO9!vPq0uGRLpKRtR`%nxElN3qtGi0%vyTr5vt6?BsytM>!)DTWJ(ZKZn`mowB>jw`h@J#-p zT-tX;?LFg@KhWP;RyC`40@1bA;vW+FUwiMI(W6Q7vka15M6Jo0a z4=$RE%#QI9gAWl|SB;-`7~54H1BASnvj&~qTT|>6t)`~qbc{_J76|%O3UZ-;KBK#? zR#W4#)BTlQa17(hbfkcrC4;=kd+INudEv3VC&cd%QLMM3^F6KzhYt~V(*<=wPY1K` zrrAHOaT#X_3l9l*(h@GkS#ix?a=ikB4gpc1cOogtbW^^VE%_YESb;twft;u^yOg;~ zGgf7eSs*A=K-&X1%(w+)&>$HlIvE>wE!U*$InH5@j-_W87Exk`3Hh+x0=zOFuOB)|7_Gdbg=IW6RpG=sa zRAo&FnLp9V+|ol{tcx)_sYpwAq{OP2KYxu9EgdBOOlL*&P2!fD%ahtNAcfq&I94tl z+1hg_UA-pFjv2z0-Wok2bXsp^4+$w~tI!K(fR-XEs zIUUiW(_2?1--cV9qV~j;klG$Q>+dKg+53)8A3G%>Wd2RoqGwn1V)o*(J@EOs4)ylm zX7q@QX)u`R|L=I~?koXa7PvN>!jhvl@3!4ykfHx{e1_^wvi$tN|CjOuEyzy3Ql7oq z%uz0%SJjNKqmEuFV>(F8dwTfI7qhBbiUw`;UP6ixGNZ9U<6MCyzo0Et^aR~mL7R53 z=&UJoim}E9I%WvZ2fZ-6G(V8oq(6GlOH)Fs&RZWvJNr-St&R>7qfU3SFw86_EBdiI z-FY?$)D`!)GrDAzo(JI$deY)+;-}d8S|vY?dXn^Xy=q)pF~FoiMj$$N2HS$ zctZ)Px&r^F+3LXk@}vds=pa#7zZXj}U_EL5wrs}ej?ptdC)0{eVN zt>kybjutn~9YUD7-nH>T0C+bK_geQb01fc)#5VqeWC?thaD37>b{*L`iBI0*-`yWy|1!~TlScP{5MI@-&xLsOg` z$xsSV5MSSH_FHq&#<$--eKMI<#429pRUGIAhRbIP5Oi-MsiiwF#n|HS6&9`GV=jx9 zCR)gS(u0UB8i;PQ94!iWTZ+8cLsM?qjD?_}y_2Km{-QV*44~Mc0q@T5*u0PQwghR^ zI-hN4=X6)gekm?SRNR9Gte9H@Bj3013Fu!GD>{+Qr$!V9WdW091|~?~LTX1ET_m6h z1liJc_Y#1LSCA`tkDv$;v@Q77axAU}76; zceKA~QJfzxS9H@9pXO7%O$4a8v;;25d2QRRMh#UC4pcWF&gGLv!~6Y;`@Z6eA%G-u z2t*Ka=cnQKh$U#z(nK$>79%>pMFSBpt(Q?X8x$KI9H{PW4(oHXNADqB{<11wn*Diy zI9$qJrKY!41Gy5*qJsE`<@q0IA0TaHnw`rBhg@VblF{8 z5*XBPHPkN93(}VUuY%M=g6>*CmwZ#cWgx5J^OzuPq6f7IB5#ADhl2x6V@CS-**@Cc zI>?L-Ba2gUX1gEFh?wC}@9KET0SS8x#ctOb|BC?k><3bc5oBM+8~pftNBc4e~&X29hR9 zP-7{wGbl0hMI#wF7Wgeir8Vg(yvwV&nTT`c(tKHS|Li)v^ep>^Xprb3=X%mGgwqbN05_F9( zF5}+Yu#$6lDWWJ-1Bomih?>5R-4Y?p*AfpE?qT+M5Fn@m<87h|h+%nhcpz#5@6!B0 zFP6H2D6i3jMz#_d)J+e8PUj0_wgg^{F~gYHbgh;fTK14kgSu88F_EXJhdL}ztbZD~ z$F_VSY&Xn393Ju$gs5u#5al637vzgPanyV{yaZ7^J37pO4i7|47h}1v4#mhLi2xIX zfeBwmE;uY_4i7|4hh`-i%qsEWa$jbi-Swi$kuQmje!GAW3ni) z4yr+{X>W?3b~^}%9+VdchrEO|qneEOADY&P9;X>~oLJ)_KOxb$=!cE&Fpu<*2|C{*k4NVr zK^M46T-k=X3U7BqqNw2=NW@y+CiGTOJ2EK3J2)7wnXRDB!BI#YG+O~cPz9zNc{p0} z<|J@+KXx3?_dF!>6$IbZ;CE1OHX;j*IP%!H;$z<+CZ1qOS~Zw3W013vholuBk~THV z?55;XSc7VogF}8A1Db!|&=nnmYfz&SV1lr5d-`$gMXm-iNjLUd6VZvaCT317n}oHx zrRZ9F9z+E=WG(QJXbVUSO?Owo-Itc2iKelJ(O5XpG=9-ky3lZgTK)zSbWMvwzisBi z=?Aqa00dQ2PI1H-WI!G;9+cbtc1GR8$#1vj`sF9)&y{_-l75jVrWAM1dpx_D*8eSs zj_iJxPPtg_%q?u@4q58E(nD#c|7wAI7mO4Z#PAq%$ z7Li#lXv~x-t?y0=|3oDkphL&UJ~zx(P0DHf_^aYN2anofqlg2V-t}Kcnhra<@RfO$ z;(0j_*CED%L&bakvq*&*P01osyanO`J9GdZN;1AeOWh~*l>i+&G8WlZW)eCsnUO3K z!b8ai-ju9tTvC`XY+)47E_uk7(%}RhYU+n^30L~cNNP9%)V%LA!fZpG3_1^VF{2BU zcvx1v$KerMOvCV@B~z14+Sp%4s>uyFRJ>X4CSNYAN1Hue?77^~kq#C?{&V-qJOXf8 zkAT4O7US4W7fXJ2=WlzGI3%!K6D;PD0hX8l(woLYf#;^+*}YmvmkhK_C8M{SG}~?p zG_bu9vYDPR%hKQU%aX+bgUQd6+5YOA<+Fkg1YOWog|v9a2VTeJCxr$!lb;>E>P0?~ zxLV@4{BRsFd|2*wvjaUYy(pef=+9I87pmXSm-AwBez=HU-BCQy6k^uit{{P=kHXI* zN%N~2-O4Ub=_xL)2|>Fxc@~IzKm0xx6}@bxxbi4OR4B3(kn=(KaU>`4M2V)S6?j6o z9`PzkyB|>p?P4uji_!fEB(PDtA8pFb`AS}fI=UZu7Kr+|wctvsaPj>;iU(Xn)b6rt zXdtWIRwn&LRqzI4bX$2AhoN=4v-uunsT$VMcJ zE`5ldNpVkeh}*3!B!aZ|;-ff!+Tt?=kkVd!loDnQXRbyszJLe9ej1uNDn5FgtSZW6 z32J7`kMefG1%Yqc#gA%o_LQyqo zWzQjk@TMf((S)7oXSMA3P%+k!pya`giWf@^VNYsMa0@U&D%^&8NzzG&m17MEI$kAK zaRWH0O4N8D<9Rb{Khyn)RRVyZAUenCvX5w|_K{YMF1SyXwHo;zAK{_a+G?1X=QPcb$Er1S+ znjR5^yn53Ogf!2|n%P0syT$_i#^D9=}204j?0~N2@iT4@?RqYxNWVc!G%T7TjB6Q0gA>IA25EQh$3|)#SMh_~( z028Eld|nS#@x%0kF9omw_vG#F@_}xW!2k6!eJw7z7pv1aBe-X8mMe$^Nope`l13 z1_>m$>O;^^?1gk+P^r@?k81XU^ zEDme_mWrkqmgB79z;$16nPVz6<4)I}PM3UwUo)YZC*`8 z$tgAm2QsR=EN}C2%U?Uz3=p$9vuL1_`LgetFpnLSF9!!QnXg{+cG-NfdApm!gj>N+VZUG_~ne}>Y5y)_{C)^p!rX0@`EEe+e zW@x>wdH#SEl4jXHlNkpF9+sQvJ*NR4$6j+{EET<{$ucv5#bPD%LYG*KR!1#XnuWT( zqvge5f#q&k{-$r8dHzZ>I?p(QKm{`^t7xKhKv}VAQo$m2W)5N@Eac@!p%wSSAr!~U z>d&K~ZJ@xxa&lNM_-JiFPApcMMQ(K&!eX$}Ec=VU9?Q261`90rw)W`hWG*BCD z4GGG7lG3_oBD)&bZsQGcL4Hk=%lSvmD7lT);DIc1CUZ%QoRb{tOuz(bRH7!qp0864 zEzuehly7Wp?VOyMI%@8UVeX^p4l|2NFwop$G-d`b;WS5^Gh_=eLHZ6OrGbs(oYsEC za;j;PvN?^RA>l5Q;Jn(nQ6b*)J~}*vS?92w)O0NF|NO}h{^SSd|H47zSQ-c)8g3`D zZ50cM7DUoE$0FD!3! zhmkgzAbs=uLvbi3|IPj{&0X&K#Gaz->;P;7A7g>$jqs<7gIE<(j5RVW778Rk3Q4Fo zGxt=i+GIEk5-4s8is_~_uV*qQ#WY@?34kDEhBIr$jHiIG!HEQ zw@jr~>dC?rnflyVmUuL*hd+#3>FD_ zXl!JE<2{%@HmYHO|EE3|J1PQJ0)N%RL>2_tjs2;|S8?m~vA;tBy0QNgx-Pew?1pJOaAy%8|QEQ(!4iR?HW zFuWNs?21_>cHAj$j!RI~K;Q^-v7-f3?p^(I;c&oUycbraE4EqHIL>=R6rh`W9sE15 zdB@dj1_OL5gKb4y`6l1de<$WIECY&N1^}pA2#E$Fs)pjHpED-K(l`*(Oh5PS#XHr? zoMSgHZda3s{!jQfMyt3+GemRL?eNI)&E5Q}SkPT{^uLD{Nuf*Y<^^AkQS`qZiY3kf zg7Aj?Jsw;tx>7BC4lhq#%h#4cK!Ws|B&AtE#;2$t zEqn$IRM&U3@nOE7(0w)Aam#oU8pq6A(?f#uj^I3Oe3EbwqnIIV z$z=cv-nZ)HMaD-p^&!q?hz2HFV&w-nUzTdCLMUdcxKR$Ca9Pxc({mPBO zfeZG;kM4da7Qg!0QviYwZBPAkqO$dCdpKT>Ev|0E*m!+I#IgY^QQi7QtPlC6&A6$-##_6qf-ZiToY8+S5~D{=JLeEw8N_H{dXq6lH{oh}l{q4I>Fw>^)v9cjcj) z^Ie~su3nli00iMJMtIm=r5H6WdWJDT1SQX-Nf6s~Kpq>wB%#?zJ1SuSm?U&1cvY6q zSi8_ahXEi6|8%!9Z&A2P$sD;%de38XIIniw2?(Sf0#Jw0CSuvA&!xFQyy1 zz+GG;q3NV#Gnv7Mm>W!td2ov^wc?YvnlP88_lO|mW;VHI-ZRL|77aw)bynr2*rKGF zh{$Hk!GVhBDLRfdC{OG_)*V(_J6irv1{uZaA^^ozkf9=n+)Yf9^=!$fiU+xgM+D(L z2()oVoOud+@QSVAfJ)_+ozMcg$gNp!-;1M8!*UBm5MF~sn_Fr_V7kVc`b|A%sT>@*ZV0ZP z?O>j*1_a;jBp=0UW=q8$+#1JK1xH{1Q{D6$Ot1=1SB@>{+iHE^CxTl=X;U z6zwBDAM%`ejHdIL&7DO9(=DDi^P72yn)kmo^F*z54icQgo`&;+7M@rRHC?GzN{a}_ zdvPw!?{Q8QJD2mth>Y;uie7<9wBGSJtC`Yfbl^ zmFXa_wP?tru&Mb??oAzJQviZbc&z!^wCF5%gFMzFf-#Z9QN6|xhF&9TNd5D4b}?IV zUma9KI4triqPa;V0??qoSB(cY(f2Z=$dmNFBry0z-;0v@Zc;de9n=R3LBT8fB9z1g zic$L_0cM^R{f02JgZd)G3QVwyzQ~Rq2;r4=P+!EsflJ1QtHXXlSJRIe8-NJLk6nbf zcgt3GrT@EvR?l|(-_QvUvs;#K&s*;J&992rx)^HEOX=iM>!P=oNguP!Np#gb(Df0^ znOOlA_971w<4VOFxeQcgE=L1Z?=S$jE^Su|5@S!zWUp#|DAsaGPzSTyz~pU!v@ zJ^f~V>jb5i=7D`a$l1pXYEz;VFF-TMRwIQZQ1l`DJSZ{eZ&SO@%Iu_gxszeGN@6U~ zlr6nFb;?lV)VaF!1dmo1B6ipcoI)3Ppz9N6@1P8^K9@3>;yp+P+ggm02+HCpRac8iBd@#sLI;Qs;Z{5Io+~O7w#}!quNUnL0L9F)E`8X%A>}IkOYdd z@u5x}Pd<+t9~cWXwU!?(fZGBrH+&s@^zsXdpzHywGC@t;p}!Nx2E`lE46n5cdIo68 zMp3s)l5B29jaGsOy6)`0r*n73FX%U;P_#WB3Yp@R6+gbmy+Wm9uwx7i(0 zYqvY5+PS2R;LT|#PDP`{I>Ue7jsqqk;vlaAg(L&Af+gx#EO zBjRf;nk}q45j8ku+)v1`mta;0Awjc}*CC++2K~JhJsqHn9xTvoiRfYnF38_YkhfF_ z%?92M2?8BLQdX!aRGPMu^-M>wg2x4U$_g~ppPCJKWwrdH=(LYu1%VDBpCpRIB&87t zHDR>((2do2wEU;;D<}Y)>pLVlAnGH09du#L2ll0sskxUfDkM!`uftCg3=nkP3$j5z zvE5slX;c5d5w`*g9*|%VBqh{7ZWeJ>guCTgChQOHQ(prDq1VERF`)ple0fcuh0_uK>n{2+l0 z5wZ%Jr1NpBUG_iHEjzZ=OW}b~I-VtT)55H!9T59N zNYGxdO?~FJOF36(gqn_#FfRuK)g3`aH*}eiot%2o>_y7(1&APpS!+p)(hekP7sNBZ z?9;=nDM-*Fmepx&YfmHCO|c>;qSJd~vvQAE)`AQX!r&yrY%Vq}Dl6dr1`iQIdV`m; zd3sIeR1|Fj)`Ip0mb zEvxlx^(FmnGGFkqrl!4bfZRB``MUrH_xovXyVH6%Gq+0ezL#d6uOV#_!5EO!Mv@z64h-q4FHFRj7MxwS2mg0hkUKaOAz_(sg*lXYEbRw^^y}TyC z0>}SjEN|ZYWfNkyK{%tC+73*b}01F(}Bgrh{NN+EX zbTB~v560rl-E6fv@Pk*1tHWcX11Lh@Uh!v-d!rj5iN2dJm&{@MqFW%K|EaUgqL?qK z_r&lu%MMYHS?&M@hT8Uv<>it`nx6U{5YXRn`j-m|Zp(|Mh?ANwZ6XT+8hGkltjZUH zqGv7~5YX#VAn&A8(ep7%0Z?H0k+YM1%PTr{tr`3z%+!E^rM411+8}PG>S-khB+%(? z5^=1eC%OX?=!flgoDz0GK({eJdLyb=%xBL-*_gTd!(qqkRmS4Hvy)8beF)><$+r^3-VHu~C8EWLS+76#xWu>!(%Jo$BSM4hG29Pw9GQFNjiMvx3ei4pGfCcrA!(5yckAC`bG+5wp7K)7D&q5Xk$adtmdokP2=}02$ z;`AE1c_iRl<#FGjmvY`Sux*NMPiQwfm)KYQ9G|ML}R1c}+OsnRf@(BYv}H z8Ix-k``fbJptdtVpREqOa*o05P{DjN$}_dIBARIyN89r25W#pmVtk%(EzP#FHcnuI zm1eT7J3OU_oJ`D{>}D6Vm+o**OD%hO;6iiaAtuj4Lj(M)NtmYZSIQ|=Fw+`Bb)W~9 z&fI^@vw9TOXiUp@*K1ZO9Rg}q1{Az+ao&hf)$_N?6NDBGOeS6hV$5&xl{vb2WneON z{Jxy)oHJoi&E}Y_L2EqZP?Vwjb!x9k3S;u1G7Le%`)5>1>NC&&MY+WjcN=ouKvs1B zLKV-B|Epq7zrl7UZ~l(g>+)Psct241q@?{36LUK7uvyZsK^{LfD>ID(sVK&Vf*X;7 zXR?2yDVHv43!3LN&j7G)=op+96r8c8&E-7P-SToHrdr3abchWFcOy$vEL$%(vZOV= zqAqhc$Y77lIeL$M44Yd}a9-OTHnYRz^WV`a=Gh`~+(i>aEky0lF&e1ua4PDjP(|8C z*DPw<<{V*&*-mTLDw#KrKx;8UORf}}f|Om*K4*GYQ3MTDi5jGYeHkc-$%_Q>dRFn4 zSkrK{nAqZh?sk%{&wlz2Mgs}b*ti?oNN+a(@iEju<2Ilmj&r-Q#mZ?lJ%N_o0urRR zA`?@eSMHhDbfa51YeZ1S1~wZOUMv@45qY428&D7n1Dl{UvVj9gkY48ou8J3Ou~~B? zSkAgNT!xG`Xwxn?7K(tti|1@#h&Eial9kJs1p`rILc4n{(UA1aRR{;N#yj1w zlxfqHL@~XmcgCO~zUR&9)1;%iW{{PzYXY@}x(QEV7kwyog9_@V;r99vqC(=HEog)Z z+9nkEB#F4!GuBE-kS0pF2~uHhhnl%T1$EOEbK;`P+OsPbpn*zOAe$r+X9rcF5ER63 ziwYE^sb()&6x5tM%vK?R3;MgeS8IET`sCqiw%bjp14XZ4&_VnKkH8vkAh~`S{ubkc z`=00is=gV;(qB}CSpLw=K7x*uCxF5JcAEWiRi4j8r%5wErQioN6x>fMFsJW?0L|!1 zA)rPE|GR1aO}R-((CqV6NNB*J;z3%44QvGs3ArC?)&LYT0(9uO?RA{JTA!CI>x@gA7|ewc)Yf_HXMoJz*+ubF268n23JY-nieLY;28o6_*5qM zA*cRzA%zV7CKd&$=%Co;M$q?S!BS*2l2A2L^j8_r6JB^kd|{K?Z*m^QnCNi-~+w z_u!b%p`qYCQQw}LEuFT>n_n$gi%L8XqB(2QR__w{jAOL(W=C#bg&?a)cHWq&JWnisJip6*K$*NmBC5bfa9-MNk#p*F9=3 zfr(t+g+S!8P9QH~Q*?ZRl+0=X3+j9LKu|{|tC;%%R2w%d-8=XKjsjJP{o@x+V z2bZ75@W3Hr_c59&0 zIS!CPf2aB8sViZ7LA>naYnrkSb9-D+UyrEe^OTy1)WI4)P@RpC1>>V=bA2b#V%}>YIUQJ{FQ_P4pcr7Imz(dHp&4-bY z$P*P)whdgD4vU_bVXk~#6z7M_6+H>Zi(~{D0v$4b*2u4|VG^2YO1j#3Q(Tt&rM+Z1 z{iegL`z%L;pEgey9fZdH9=lhFwZ|j$dmJc8$!Y1Dy&WAjrG-}WChKzkl>X(r18rHZ zCe?wDqg54$@M=SJAVb54Ov9ti^JP_T)^rWbKh3INA7<5JLMCKpPsT>us}wn|Ek!-pPTK96VgE(Dbe9n+m(P2+Qt{mUnX3=PzU2}+Ws6dS};J=J8n zNK|nD9pgTKwJ*$NWYeo+MVGrwzNr8HlmtGc!{`&*I!C94zuw>n<~4uN)a9hQ<9VU~ z^FI2&Epu5|pE?Vi8oBuOak(&E{srBwMTN0GU%i^r8W|lKlve@oPM4Rw0OW|es4w^C z?pPXQzTE$w{$TuxhDp3x(#*vIsIJ~Q*mmaV8ryN0Ei9OC?XOIS&>Z#uVpdgj#nxnY zPGO%_5=|BMFfPmfuN<|7mhS!*5q%6=hYH%8ac=t@T5C`;nPrF8?lsBj36q7rSZFev ze}7ntyD~MA+S^qy$H>U@-4s1--dkQAKm6!suYp1SPM$m(`YCoyG-%oEI{_9PB9aAA z6{|vCRWeQi02%bR8`VuIMQ*35+ui18j(0ytY#v}{6O+ozWnI?z*IloJliZ)y~Hp zDKP3cG#{7@UPFw^K#|M9dF=1B^YWS4K{CX7LQGJ~e4-|YCus)f6QCdsTHx=PAwt$6 zO(93k(n8m`v_J)I5R1mWRONPYe01|{j_pbhxnu9B5HJq@Z}-2(sIa}rV2zi;Y=}0r!+=G04eWf3WZXlI~8`+6h}Tnz_x-3 z7$D})@U5w_wU2#8f2=*#H2_oNXyiJqtp2&%Mk$|F@j%^Y?doW&7ab)m4|IBHN{ee7 z9#j9G&##a@d>Mg@&OYqz5*lNLiNu6EOxbb{+Bl`MZ@Jvo6&#s!rfHHPv> z+gwgxV+0S>ecE2qW{tpo$?EbyjagL!4ygKRw<>3A8HoSK*uokbX!9+D@ys{^Uh;kF zJzMH5HdK7vZlUs7B6uiT27SHs3{dobyCRz1=iye-cI(wxbSUZYX&O46+@}K$sOs=( z^F`xqVW1k-r#TI@rDD`K{aHhq^ou)ZO-eU($sBSLT0c z)8au~d8wH`t9ytS27-0V?7xJ_;Jz7i&ncX;Sgn~yQZQRw@Fwy+FE0 zd-kuh*ii8iN;aADu-}&(3WBVmRZIeUq8dya}Jmk^eDZWj-Py&ED3VNqY?i0NFz-zA9kNj_{7Vml|Yss6n_6sy#D64=H& zQNozb2#*!n5%o)>DPV!9Hak(@(RmWnG_su<5=ipP0tq`&YI>?utnVBVnKf4O91zr2 zaP_8m`i2>4gu>bTJb*l4eI+ z-8nW`y#A-aA;Awwm;_lynk8Qqy#a2grg1iNkI|?NaFUufB~!n=q|Hd;a+RUf3>ef+ z4WVN3DT@go0O+bwe0W1>w0@%;a8T)84!2p9g?fsO3H%X&; zzeNT)^L~1P=#rYM-TADV?4o@zL%lynhX~dZ@?-^n{C8+e7=bG!l&6$H;E-@Di~(oc zr5P!ieSORWkC>uM27nN^l~}gKV-bf9F{|}w`&V?unVYqgLyn=fUScEXe$Z@eNeOg+bc$@VG%~%up|MbGy}p&N_>CRF$2O>L(G-%tEBwoQ*4t|Pg$`#c7##D z0IRUD>{PF2ugU|j6hp%@18$@4b@87f`{Lri8{sET98FU&U({^mZtIgbsK~FM&T7hi ze?@g6RTDG^%)8kcJY=v2$*FYd;#x4YL5k5KA`usy2#Q{Nn%mcgSnLiHgDM#Rtzyh>So5SlGxNvoVxB;vN9SvwUcLos17^P zLjgJI_S5g}q(d7~WEidej94J5%SLjR>;yInC(OERv@b8|{xeo;C$Le?0vqLO(ztUp zf%h~kdFj3cS?t7pbH)HWq{G^Nb~!zl59^K=);u~yq#f2IOV6y1=CGUsa?;}!la^i| zVSYN=cm?2)knZBWG_x2?z-Yrq2i;EpO49$IAN=4?eqjFZe~+faaX<&_a@6NY(IsYf z7~18K*buNGL=(Dt4IgZjRCVx*ug9<;hoTXMcDc8Aq| zH#uzS>Qo-AH8(a`EZ4ZU!GipQG`YR0k=j%%g_XZ1Hg##>=#X;FNqK6&PEjkK`gIUN z_Bk4;e#EH6O_P7C*uW-pSkn*^DBcnj^F80!sCZ=DA;g(6FXc9aL~gdj=7N4^B{slp zH5&5tj#YF%qq}*|s4xEP>_7)nt5*}chK>xv8+1*;HdeG~O&;^$5b<_K1Z^6jyD3@D zHL*&ip~i-U2RRA!8pkwx-$c_#*QxOE5aMdDwb@fZJbF1V><|s=>D&H z2FUqEW0!1VbH{_zH>F30`39P~vgW0HMokE@KW!IlZ0)5oulkpfRdOcCd)LZa)5YcG zd~&v#ZE06G-E3B_%}{;1=LZfn3%;ftYq+Mmwcta@ourV(Va-<@HFE(f2^JaT?V*W@@LS0%Eb;JsKTYV?mlf43R{EOvtSpM-Oap@Oo+Errm&DS-GVM=#`N|T{<>5Tdioaw{qk{Tw zhFb19(ipju*?@xheumi04)f}+=@55PJ6MqC4F0Tm#kof@xJ3o^+nIdZ%eFbWX1i5q z#%o;A|Lm|??(J>MU+>BljXf5h?_O=@%d)xRdg1=*A>FUJ5l>wHTX(DI@vY6hgTzDq%Id4@+nLZIh@#t%J8 zPNTd{PSJ1lm^x*K0ear^--fRCa7DLxr(8|Zq4t1WOcowW?)wjU(%9b>ZM?^76XB4- z|B?SD&_9{Gngj3Nk^>D3L060`Mku|L%E|C6_wT%IK z?)q$q)L-+KN70|~NUa7T+-~lp`!Y)Io#)QRiLZBGn@MH5P?H6%(c(ma4?Dc$)yp#2 zeM>_Yrb97f<G+swwEF3wp&%PAZL-J^qeaUG9!gSeybY}1(AgGN z8e_Ea4Knz%mN5KrfEdjZ4Scr}no&5V5)Th0`7$ZRZtC&M#2|zJV_&O89eqq|G0Sh3 z8`uA0-k~@y?NM9ns^I9^(%bj?&Yqa*R z#)gLMsKup=%`w`jB_x2FthdHGM)Ou)CRuMiE9mMa>J7z}cQkM16tGFwTWQ`V7BgBT z@#xTzZF!zn2i`Xut>v-E;Lr9{pC0I*p4bwj^;83VXvzBN@9EAW-ZdJ{PaQNAWUXP7 z#nojrYXtbvlJL;EnPouB#|<)qhYED)xaH$8m?!onQx?t@lkgrU)6_apuqGntqPUn* zcgU!4n^c&B5h7?z05yp|^P&tV2zg=>y(u(IzJV=HxoPkc%G1|l_ z)(=LgV-6JgO!$&bU>%!Pt`U4GKn8yz+R`qAYX4=in^#M_iG-;bA=*ax(2|&`+C5ut zjRP94u>+UPsEcCcs9K-z`D}&G*HHCnd`loE6pB7*Ru|*WfB?uytIN;FSm56saSkP zT^M<*%dpbQb3hZHr)birv<#c4h_RvJo-bHaWKFs=YWkRuD0ZHEsMtpYFxYbzI7>8s zV_5*$-5Ta|IUhfs28Rs|pL)~rQurO6%5?sDc8Jv|j!t>pwjzmHpo@>k>q4Z}tID=c z%s+;W$0KMc;A3E!>^re@e%Kf|g$^CJy(NPZ+U>>NTZ%1N9w%EO78Sh7xM@-t8LR+C ziJKl7{Jf9mE#&y6`G@t<65vq5N8feA7qeYmD=rTFO3GoQ?<72w@OXK4puKyO>6HGr znoe1942zcn80@^a?h;WW8u`Mo-a5wxcPi&KH}B+(k#i3WcJ2XAp_r};7Z-+kKoTBG zcqDL1? zP3VCvu{6UF4~&4p-n7wc^ESBMn)=wj5^k5ornAkf=`4DoT=DvxZxJjmZx*_!Ag<}& zX1*}O#H-@R>_*i~tBD}2*(=*BjE>@n4Kc@T=RH=PV}rzI+i|zV>5Ju_Uu#tyvF*5* zPDcr`T6;!1Pijxg28qoeG;L2hS?wwcZ#ItEd#pBOzy*0f;q@)5$D4BR zWDwX)iVFKx1x=ySJEikyEao0F_tI^+fCPe?UWfhsu?c$9DZNS|x;)2p|8hbYI0Oib zxHSHTv(s24Nzx{W_KMSO)V3Lz)1kT1i^vL+BoNdLlh&qm!n8(=aOGoW#w=c%GoB^9Wj__kt{8lo(-J+;|BD=A8-gE+^;xysa_!p1l z$IMGu$d1BnSYWAU&ODN2B5K0rkD21sXbNZ`s+r6RMA<8&;s|w2Ke=5_KmZ}lSg8@> zZ&!)695cPAWDT9CLxwbVt)$EL4sbn>Yo;G&5R_ZGt8*977(n*w|{903R}% zX&w8eaoCCZpI(ReJ0qijhloErRIAnUd_o7hcg2MLWHu zZ>Q+MIf)<(W#iwD6o7pET_zu2E-xut$7N(cYDTmQkdu!@PN*ab6oRSIiCY3SBh7Bh zXNaKdL5r^WsuYKSG(qn;Nsa?*K50=??=qT}+kzj0(M%Q`CyG%)+n={+3#w85Evxv7 z3o-=^>x^gQ9;{JL^dDNb=SpLPoJPB&`9m^jGpt`h;57d z$cccHGGH4U6#lqd;nU^1kZ%=edb`~|m=Fju==)IU`*OCQ!FqJ@)GRJqO=q`TTABx{ z-WRHZBE6snCaSWUzHYas6blsnOe&(YW3PVq-8V)G&BShLL&kPLrQ7x^3cb7C3%)Pz zVwASxt4>a+m8JR>JvEL}HLn)N796Kk(>zf13t_|GJbn74tq1X|pZ%PLy{l2Is9}ZT zUnUf{w$xJcax}@Ew9x!nLbKi9LAQpOrS!6z*l17vVY(_sG{~BH)b5I8Ox#Kdt+G~S zKHQlr=wh+s)T(YysFk(Ke2H3RO&Z0eacWhX2daLWDDNjG1eMj|@nvPU_qdQme`nQc zHkxl{>7eoF9U3p_>eC>2N~M=4QJNry-oI|w`+Hh`cv3CP%8VHD2Hu=Pb_+Mu%TbQ; zpP-01Lc$8+@Ozw5&an!RlfONt9G0}8LFGZ0KP~6x+8XBU)#=M3;zut2{+L|2`#xK8 z^8EBUNoqiDQg!*eg4Q95`JP2XHx2Mh(TI;%mpe#%>-`0DoY$oH7yi`4(f0l2{|&vr z?63E){%`30E3Y@zr<1N!)&6YeugruOQ#@Xuu9Fr%{Ba_JoQ0Kb7x(BD_frbg)EL)9 z?i3T0$?@%P?Re-*8x5$ZX*wTQv&~{9Ht~-$zHK3cz7Iqm#V0mKvC`EnQFQl!lQhsI zN4FwzDJP`H8QrE>ph(sUd%KS!gQRsm#QBO3x3c9^9K>|HkaKJoQnDnqg94x37$Kn>F*sqHbN@Y#PcV-6yZ9QF0 z$+9P?$w?Y$%9W>Jn1F^VS zbez@zKE!CCNzN)Dv3toTWu|dv71BIVCD(C~+U$MWn(Jp-RU2m=C+2{fw?))!CSIe) zQnRMt9Wey~bjVdVo@`pLQ83etv+9;1f-V_{n&efnua<>)D{Y*5pCExAxi0fNw@!o} zD_hG6XB);@muX{z!lu@_iAB>>U2ZN)ax}BlZmzo)4~Gt|b!|LQ)s$m0wQS*rmSdI# zdfxT*E>3E!#XMcJXQZv>WhkHp`y{IJyxiN(64m58^JlZ@@WgDMsA%)XW_nTV#hbTB z%o7LLY%~=7d!7?YeV?lBt7`UQHKkX4XFQS~vBnXgtF;EKQ0wQ913a0>b-7qxEX9=C z5o-kjv{tI8gw9Xlivd`qb5Coj%qh?HebfL~Ez(8o=vy2DH%Y+qnQx>NPzk8Mu!aIR(gC zsbGXkP2}8B-4xzsd9`?J;Hx2?5MYA$zT~x()9ou7ICC#h zoGZ*{o1udH?KF4F=3fuVwj&2D*rR%I*j`pN8ATlwnv7h~&4AMT2GxTkI<#DWF?(K2 zeoy~Hv+uLTB;Gan_uU4t7&ZbV(ZF?A{7OB4^McGqUSgu~v@BzY*}-cb{$R0g1YU~? z-g|L=FDlAx)RrplxN6IA0}AGwF*Cgx$B$4cB6}OD#RK1+G+$Bi_@%f%tc%h>f;C~^ z&79UhHibBxG0?sZD3}xZ-PlqXHNSua>+RUe)Zv_oNi@Z+aBW7e5y6?T@ou)>zF02A znb3hYZa~2-ZEV8R$Tkij!Fog3xGG-Ahk`#J5D;s)92>P4)KapbG=!~&1KTx`w|yaw z?ETjPIkRA33an_K9ZfVVJ@Xa9fi3V+_cP_&G%Qho@9Cp4D46dz7WIjmXdKS9Df%#} zTA4s?<8C6=nA{C2xPzA5D@3#knR~XV5hi$pnBdbSLSWB!MnZx$Rmx4g3iCU(lp9oV z2mLcAFRHXX`)2_fxT1Pw(LjGyCIuwBv`*d6+MsYJD zKqE1E1_-)?Z)xWuJ%#m0bMucqw8wA$(Kvo>1STRz1@Wzjcu~;v$NVA+O?+vktuaA* zBO=`v1@AU%x>v1~77>JZUlix(Rr$hBr@C_Yg z4cVugf>%40&wIuW1r{AD-fvei-OtWh08lynF-j~0)Lf(fUR7L9p1k_aKR)^&lZVkM zI!(vLK{z8M;J|gAbA1^*xMq-+C9Cnkc8jx3r?huBy24A-bY=+~NO0baIA1RJ;tCB- zjcTKGh+zES#qN^k@Gd6xM!4N1Jb5?0SRHmehA56ad&vEIrNUQ=v8@sF?Qz98e2Dq6 z&xYF~$Sq^GM9nXk)919d$0RBC!+GFN`!E)rFt@Rpj_hp@d}rvW!WavLed05gvY6Qs zw4)P{Vhv2OJHx|v+AH8VLe!on^Z7N-^2nXCI1Qvd@Bk@k@@6;16+<4cQ;-3NjF0?hDH%JOiZ-VgS($0t zUc}!{EuH~_+KbFhrqhzuvJwjfqZS#bfwcF%t?bUs-Q+j*e=}Q26_+u3L}sWwJfytq zKNM+Au%M+QR$z*CD-YME1K1GpD}1$EuIb4fS}&^T>iEg;&wl-Ny|E12kIa{;LQ@>8 z2Z!rO)qZspA>{rNP^zzYaR629YyidaYHL1-{R~K*VqG7H6}aL`Ilvz$wB~}yPk|DP zJafKaU1rN~)K=`F0&a&oL86yM^?N!ywJeZ8*6o*z%3M41WHx_B)x?V!|Ga;hjY<@DWGVGSj_C%gyE3 z%rz>QZzb})qQ_Jjtzz8Vkzor7&XhMN%skwyYS1>`gpr5y3L9VJHnz8iG5acJUGnyI zaLD8JI^pj&rqWO}UdRWb6|*i0GL8o})ENJ3CieHMF)36q-UeL*bmmZ60Pk(TQl4)_PEs@hn=^)Z_ARd zH6~hL#Rj&v66e6keU3lT3Xj7tTH;*U$F1==*5@tqI~nVv{S22U6{`pe^8*?7&nieX z93v?Zt;fBL4Wd?Bv6)X{0M=6Hyf4vOkK=u!#m@03j6V*)u>Gem*DGp4*OM=Q`}k`! z6|kmd1-p~C-cI~wIX{?xW6il@90*)D)X|c_DgO+gcgcDxcL6GnkOBKBX_g4`J_JN8 zj}B6PRnU2;iub4$C+&dQAuAw&oCo+6g;kf`=X>g4pC9&Iief?%cw9>D2@yDCypPXv zGQK@yUZj|01ENX@!9&VB_)tiBSgs>yRy+d*v^E)l?vn7x)iGv?kt6^b5^{b~rxV37 zl3z67kkM3T?m=`JfVpFhhJatwuKDUD_ zxHf0;*bwm%zVafdTV9)T_rBQYuh$&YGftq^Q^2z^6*4jUrgLm6fg3R5U{YymLo6e5d+4j~`lyPOaiMikpx z0I8B<@F6C0PMV-em&?$Q&VWH5IcJzkl*mx$6wr_mg>;rqmc`JJ9)Uwf6w+l%VU3|7 zJpm6Xci>H?&$BRnu*b9Q#9TPTdWV`h*HjxHqk{OhCnnAbEi=+4iicNpx|Z>3rq7eS z5)`yI87-aR+Z0j9Q?o*mC2b%2J5{YD?$bFEoScJ?u;BeDq_uQU)I(ECP=wkZOUqGw}3NW9^_UHBq(_W za!t_46(|G+Eic!q*sf;tBIX@bt_&5#H^OrLhE^5hD5cmR3lP?L8uw@rLFgNc^>VW` z^L8fLgdSI>yNmX(2#A&L5%YAwV;b;}5eek@Fd|Y)AxAV8Kxz|W;3452tcMS+*u!SE z-0-dcNAzLxt`GD z?6h0Zn20%w;w~u(%xu%m27!KFA@hlulrVakJjJf4KJq*l#QCvgMqIoIdc+JBFg1qb zi=$Q+-Az^$le)|PH28DfPhkd|Db{AGDRG#En~}8mUR);~Y-UFj`PB1OG2@$=mA=+X zn`48t4!hC(9`)~Do84+Uh_n6eyxq)I^GurJ7GP5cdYR3VL71J2Y!@cCsVcTt4$@}$ zAkR*)w9DI*shRB*n^gztvxE?6$N71I6m*z2Wo+wJu7(S;Ix2(f3^Qe?3?elh#B~Ib z_^#1Y1`)>wX&v>H67%qO%6e+aAgrSzn6yz4Ib}ugghvQ`tu@sM3~TD))BoL3xO94$ zk4aBixRwmIv;DYy5LwTj6?L=Cs_exH+x?IeGCP8b8>=yerwl4J9mI76Vw!+r%1#-G z4Hsnnq-kmry*b;nGxv8@Wy$qjo~~>;DTKBM82ioZ3@{BL1h!WapI-J>PFP78CuAxL z+}JUSg{LlXPYR*`KW}f^-`H`bdAdqcE>iBBcDr3mSIzVkWTh;X%e{gmm_!K#U;xa; z(>-@U5=_Dg0x$q(CN;nQ27cM~wm<8fSf03XA_CyK7ohyYN&<-gbK=Cl3;anviYQ}V zwLhT=GX?olHSUUh;yQ5dQR<4ao^9Wiq!s&D1-71u*X zv4Dy3Iqa)8k)O<7;zi{?cQt2p55ZNK7%ReyOG-8ikk}e^6(u{R2{V_JY(I#4XO%VE zS5dMfK^Q3TN5=pNb`??7I4m17iP;*v(tkB|-!Ci7J^f=N*rx}>nY z+;6n)Mfp+XeHDcz)Ps3T@?rk-lRjAA-4Ze_#RoX~C{+6B~C8%o$Qb>Ieby=wvtk;PBn9_og zdKqb%k-8+aJSW(+ zQV3C)y|NnVUU4-7K8#t}o1q_57U-YltwwlX&L(>^X*C$SvaO){WVX1hkGRRUVyPg^ zUD>zMp%Xnfzel^tzRfZ{7`w6_)PaK@oNwqR>%o*3jQoC8Y1aXh{WsrK!3?Chs4rI( z8GJxDywEe4$EIj4YhyNP@Nz{MtY_1fRqzM%!7d$C7``6w^mbS!FStop>{YG;!&c5t zygVB%bKfSX00J49rd#KE|9z!feOY^dG?=OpsyY|!{$Rcmw9YDl)#DNp9; z)2p#Lp$dcb1<>E5guA3zG`QYdpU|>dM;Dd1dTP z_pl5q7~hC|x=ahkMak|3P*)f7(E>AZQ^~$s5r#%pk{QEv2J^{C-QrG%$J9T}r_9bx zRY@xaVW!?&?I zv+EKiSf=MgS6Qa#BUoA%@K_PUj1cT{3ArpD(WQlgC4n;jVs{o^>Mi}6+|S`HBLr`` zYB%MrW>@7f<=(A}KdApO`wCQN($tIv3)rbG+`9Pr?DPd;r{3$dtW=oj>0o>Ypg<*8 z%#~IP*6FPftF6=7BbD3*TG?VYGDTSGrUCMNSsx$K5u*WJkh*+pn_%rsR+N{C!M;Q~ z$3db!Z5vDHC0ejfxY`mnzP@pjP`s3j%DKQC6 zSbIr{p^!gciSfnc_PI>#yYWg&G}-6GBe3TPN7IE$iQ;rC?iPwBiMDS;0@&jg9S6LNdEt7PxA= zoDl3vjG}1!e#ea0b#9}LXl@;l^=LLWidrQII}>#t3zpA-F&j5lrz{hLeV6%>&wMc( zuf~soAnZ)E#w=?7ln%3UWBu3Va|MuB0{^}R%e}8)U zzkl(Izg$5T<4MBALVf1^|$p|*69#JL;>t|0beN#-67}q)qltsw@NAIs zgW!Avhb8yQeScAz>-mt1I%K*(Se#Cd`INS-KJwTJ z=UgHOU#U9N10_P8X#@8LBmSVWY}1&Bmf7g3!9+DR;&GOm*riQJ@$*%Jb4i?E#Liq2 z#;VOt%GkMiihBE5T~%rA?ci;4v+XdO4e0&a;6Yc}jx0~ZH@KKAjQ(et(X+v8%CLi3 zc5*(BUp$hX<1S}+tX$S~y1kJO5FPOv@nn_y)SP5>X~1ia|4+2b zY|TViW(Xp-RWM>_bPRh)eTvbNNWJ?xB9$@%5vuYC(Pp$|<(m2ibOYXu_OfKhb~CU( z3C6mcZ#NL1GBzMO>hP171!SmkxP*Q7v&BM7!}xzGV?3Q)4SKBOpUrxs4fEAeTkd<) zKA2XGnhinzk!^qVR1z%&CAv%)hO0rKhg=ap$|HP(G@PE$Vc$x-zc{6vcc@3nyD(dq8wZ5W z()h#YrNxHx?0Cp`<*y}Xc@TTVETJz|G+D#Hy-w5sTp~yP@-TAi$yp%e?z7m@B=eX> z?Z2%PHBE!ir%XugOvvKr?^sn&#%jZt=;*Z0rI-Oq8mvc_} z+`ZuCAAopqh^UC`WBeYn^u|_j`@~MksB$6%U5essx>rJ-I|Vh<@>tt!IKC zgjXsHo(Thq`8R=ubQE7&#T<@LCL4_}m=OI8R>Cl)s3w@0>a#Ty)1QI{dCZ`XCMgF-fnrK-7DdafHw4TRj6VHTp%$h1G7znjds z>c6g;i+nD`qe4Tc6&GX>i|)FW1eg$ws>1j}=5?z=e&KSIk@VN}ggA@lx*5qq5l`3F zQ0}f%y-+!sP0r%}N!hk0rb5`YtN2Nx4_3Ba4Umxh^-seo4W=fuMaBJ#PJXB>4RCQ<3s*K=u)SQNvC=pKw7Z{;##$y?8lSXJb zjQE?}cK0uGnle`PlA|dD!9&-Mvno}X0F3!}c~JK+Ys_44qGmo3JOJn@mziSmml#52 zgs!f86W+YADMLIw3|UfUMic6MUtyW?`7q_lPov=>UH))J??TS!l_UEPmL!rzyFJ%ty`)^Ea*JsIwzy^`6-Lke=RR$U{HFbmFQxV+=oG&B!e{`r;rA% zFG4M~cmMQUBBaALTk=2u*FXN{Mr|}2PUk~DW%MtXC-u=pFZ?a$rc!ViMDe5D{wNp(|4^7}7(jl! zU+e8<+l^|s%gVyO$qo;h#)NO3@(oRq$n2 zd%2x;54Pe0ykg4ea!rnf_~*X(t6r^}R$kGJUZTvIkbU6E?$max2Mu1CtVqYzdVoRb zGhe8_-AhMr#YpfHIfhJ$?p2@HvfX;K+Nl4L=b+M}90^h1rTQ1ocx6%ArGP=`3(uwc zyXUp-UaJ$;*DEFyRy#F>Lf9{pd$nqNb7j)eAmwM92DNk>&NdvG6m2!1ZCaEeA?nvY zs_km+WIMI)cBkH^G-Wkj>Dnj8Lj0bWl{&TR&MPK(X@kG4iZv*R_}NB(Q*S} zM}w4KoAwUcjaoVhOV_3W6S978RfQt0TDrdBNQi#vrQJcZzTMhcqPt>pZ*@HoQ6c?d zZ+5Kn+P(fJy2WHgr3?jx*W(ua z;b4$?h;MrJ{aWjwm+eLoC4$KWMd5MdILQ5de||Bh+e{Y~{g2H2^C%mRv%~X~ z6WTdAAO6IP)xqUGbqBR3NF-pA|8RY0t~ z2#)ELu*eF*ru*u25IxZ_s~q<)vi{*AU)vItBnQyRqlpLCl<>ozrDOTnP4U|mVgM{G~dyTDTA(mYV9-b?*xfvLK<^(3dpx}a<;|C^eblMTuw{E6)44T zY>H1H@b7u{AM|#={ek&Mu$Xm&AORP5x<77fC7>s{_P!I;uOjK7jR$UR_k+nrZ!-h~v5l$U84 z7=-RIq5YljS%OHippHizC53{>LnhMQt3Lgn*Rm_-oLp94qGM@GrM~}`S4rzhDH^11 zAI;xZ{&3Lh)zqk*`Aw4FD6sJwqX2$Chws;$_5CUr5Dd8$AP@ivB6o6;W~<5DR>@*+ zte`Q#KVtai!G5h1EZIr2aZ&^@NPT>CPPc2%E42=vrIjRv329uFQ$W6H$*mt*3QIb> zF_<9Wer~z_`O$Dl`)kyx(vcbw@cARbMg|7*qme*E{fP}UHvi4&q~x5QyQ~`l0 zc{oTt#t+SR+qHTlT>BDKd4MF;K!jirx1H7to?7e0P2(W-5N4UU?KWD$a;2bi3Pd7i zh6gcMYZ$S;YGXHxB3HK72$`!yX$6FPbOWNA3DF?S=$Hl>biFJCA_QG!W!w;Gm94BC z3^I?7hcp#L_fxC!Cv`rK)!rOd?j%ygFnJ{fgVd)?>SQ>ZFR~Hc49e6bxihKe@gVq6 z3D#*ar*`kDr~LXeeqpp=N=G4F)It`7bj*S;XM^c%t(c{F5PXt|+1vhz=}GF86_Hao z$o(>uqaEviIzO9c^gIu3=x4HmMaQK+4X}`pVmmoGp%Y6?cAeN-+;X|8Di@oRGq@FU z(fYz#v755hg)hUj)bCc!>d3j4RC0e zdw<4LNicF{=+hhn{4Iy4dW2;G!MHDmD+th^SoFzkz|9uS@P}m02*H2qAMzn&39x2F z;MsuJHD$nx0WiEgQa2f{>tzE08eWddR0*3|LAt5ZU@|@H^Xx2GsAGv|2(VTcl8Gs? z{sj?53yDPl`zw-MoG*r>xw`4jOxadyFKgRsNU>Yz1ECdX&K%|&+7?ewZn~y%B^*|K z;evZsBn((_YQYgMHNbMA{n_#4NF6q<&~B1;wNvlXe7D}k%yQd`t(k6cW;v!)unY>> zuOYibBkHWWy-ic>*;b?4{EKOu zXiF{d&@ka10@WIgdb?ZaBYa8sGUajygUo%%>{jcIOdW4vk&_HmQ#v^fLcfAg{aLfs zsj2V!>1}bl z^$u;aR(bHC!;@8TZ!Lfl?9>U1pTtUsnxy!5VR|6Qieux0iGmW%qAm)Rs#`#JedBnRv6o1ahVVvwVY%3iO> zJ+NYHGTI{s@GS6=X|?YD#?>?uYLA&|>MOk(?RRSggGC03indD zU~$a^H4+{L=vx-8x=6f(AQ;5OY=Z&(9^gAWoqF@2%WG1>(sn|?p&;_m6KS@3)#qVX zK+pq8>o^*uK6X;iSsoJ%NmB~X-8k$4z`M;>_n@tsb|xU`tR)0I7-Ha(`&l(uxG0z0 z8Uy$p#G+viy!bVapiN1{z=9xvar%(60ymAoi<%wNxIly}!=Sz}h-O_Px@htEBfv?q-wOnyvxrgrthdImQ6$f~i zsJk@4+(4pg4B*b|2VK7ESI+B-0yOO2-m5n@kQogohIfJ^ZKZPh_MXB34yUMNDa_%e zoT4c}qxz-g_hxmAD&HD+O{wbFhoyvQ0*G3~4G94TA+)^8h)#`;i!+avYI$=ML{P+b zX!}5eZ_X)I#4HE+yS8f6AGfx-fMCN)T)8t|?Wb4JL%gcXyP68%zj~&+?ao8w}v6 zi*`5CA=eb3k?Z$b>NrubU!hd4cO*z4*Q+lMsCuYw^KG=Ha=j0O5ZqMX>1?3N))b(T zG3$+PP-aUdufYI*-_|_!X1mjRM)fBj83~rJ_=JR0R zYB~344D7xM_lU2RaU*R#0`&)@_54~HRAu$9YHCrSn99ZpK(%q?Zcb9XC#>DVu zm1p&maD@rsji-A-Pqq}?U;xLUt?{(kebwas@KS>|fFJo%eqH#68P@+ z2C4({zTyDyvSo84W0i)+0FIiSHUaX9sMFo-fsPawJHg>qOOat=DQb=n5NFuu65Ed>DjK zxSH{NW~stuIlv<=nzgu-St>06f&kKjK99$rrP9KYAc0;QeUa+Lmg=Q>EXbh1H8)e> z3?_oNs!iUTDpla<@;|}=?($G;>tL66Vaw$q!vWqornTLzvr1T!ur9iuRS=e9@fOG(>V z1C!gnU)w+@yxCG1*zUoDdG?ZyQPcG?oGPGAZo@UNqV-*8#C02zd5~H;Lj>}DbNjP*UP4W2EqP3@Am@#l+2zA1Gr~BUCYO3?aNxPK@f12!b_T> z@>jCURSJp%G!|!CZ7LLMxu5Y%Ezaa9h#-Tup4U2bc~ya)t{y}jR=l(#naRQ z4|2$|`fGKaAB#_^ESsYs0*7^~&1YPol*0@LaMY%q+Wz()?*^5sO)V#Zr+S=urz~D^ zfJbR2Rr)xnkxG?jM}h=uR2r`Ls=@xFQZ*_-5I|Auw1UBCsiLMSK*K%Vy@Pl@qm+9b z2@)u9s)_4uu)qa8$e}EBquUfql?8(V94XQ51S@}~QbJRJc6N96H!=3@YD@(0RW~vB zN%`En2@3hY+v`L=FO~lRg7xsay1|xJ5T(4XDL^Cts}G~gE=%QqM}h=eWE$h`SDUYB z!wDa9lxmTE7=%z!_g?n4g6&VGYEsJy@dw+DT6F`<3YHV$o7G-WxJp@nU^u{|c+t+G z4)=elYQbOt$5{SF>!7hi7iQ>MY2r?-#v`mr(rQ7aXswVhSm|)LVB%vW--*fCPJ;o8+nDI?aA+3d8HkY`8c*n`iyEbQY?A7`(VCI3Wm@&an8SKT3ch|8?S5uh084 zsvriz<3xg!uYfJn_sB5dR|s=B>c1I0J=7Oo?$n>rup*1reFeuffnz2tW5WoS2>uU$ zti6gYD4PgLFyz04(fAcjZm5&bQT$gNxyGI;ppxby!Rdq^L4O+EbRl@Bma|MbTZM-apYed&nhQFp$Qww(#R8m@Fu+4Y{9zo3 zUs@~4U@VpiUG-6Ze{JA&ey4p)vu#dBb<1hT+pk|QOHqC$&mjl50lGxtRXD32`c@Z zwN&4sVZax|@tmI5QWyEq^Ha1_JbPAa);iS!ukxWs3z89Ej)n9i1R&|{7G0%C#h1^Z z3ho~PBNWYnDYJ1%4N&!c+TF~n&Nbqd z10nYS?xqZb$Bq5&z2MS95W)ll4pL9>LnB4Qs28nHa8cNDfV0PC6wEZy*I(O|? z+k4ec^j@SOH4-Wg1&uq+{FH}0$9 ze7~rmtC@&{;eZYw?PPQXR=_XkBaoo*v9*C(JLVoiUQJl9C?Ma<$yw|j!RkPoZ&^@z zz*J%{2`Z?iI)(-%KR&Te`S@^^+t!-KcJz>nVCg#%6$?TvP=nCNYQdly?2su}gLp9L zpzNuy%Is1~$HbtZfwU)$eL5LjrHO5phs&kCPfID$<1n-@DR_|Z%MatDIAVC2+x!J0{Z1cLeTu!zi@KGK+)t&lF)w-~>FIOIO7F6IT zdj6c2==uK8a()5{3TQ#%I;C6-!s`>{C;e$w-EZ^b80GSl2SY62r&rXLhsj;ePar|z z?pc2}Kc)9s@Yao=Wd+HN;JWLBKfr>>wZy}tPcL7d$=|TF;laD1{|;Xr6)bB8ME}iE z!wg>rEzb1c1--8Ig4a90D;#m}?M`E5_;hD+EB%K%pPbQ)M(S;GHQ9eg&(vo64_5F6 zs|-2C(i6N}k|Tl$ z=0wOnIHTM_E3P}wv+6;QP6RdiIVnk9r3gkSWP8ak`u)2szkTx;lP z7UJXOuV~7yWd70|@V#`|J9t)WQ~#aSsU_p#SSg(s?UuUuej_?yLFZv!Ug&klXSHZY zoS?In%Fa0qN?yrqwxY6MveZ}-G#=%#X||kC{XUmq(36UeM}roNkGjmArBCVjXi`!m zs*_7=Xc9E;=RQ+sYG`qgMMN;=lyVqQQ1QG)2W!H6>`KPOl2RIU(B(NVnPoK$2^wAw zqnpDH=xBXCNcoaE%%ef;NuDy@)^0Cr?e5Znbsj6hDXmoUFdpP(;!yC*#rF(k!TWzKS$T`-&-ezB*`z(J1XJgF-Cs(OZFP zDL%{Qqsd~PWh~3CSZt)Hg9bB|$G=gJFr3lWwUO!YN5EWaUfFK!(6lX8l+A;n(LCYs!A|=CZy_O@t_BU4wTrVYBxL_cb>G@{TL{>9tWUbVRy%Zx zV2vbj3Me7H*QsuR4hraZNxk+m+pacy+jO@m?~DklJI{EA0sofex9BD%evVgg9w2}l z2FNNWlBBvQD161dSZ?tkV1HuR^;Sq09Pr^r8w9x48`Qm}%UoGCP}m!m0kZW*vqd+T z9&mJFZvXN#WPkzyssr-1J4RtM)8yM*1E0rCxF zcksr&U=o;T4)1w;o8ww!DL1unjxz{YYJJe^M)#o=_JL)9Y|~C(3_#0-%)f=x&QSuo z>Nvls1`}6>>5dZ6)nzd1)u{DscNEa?o7_Q%LDlOf(GXwI4d&Uz2SLN;mjkt;$;>aD zUkn1=nXHi< zBbb?nz^MmoQw;&sd!+cRL$AL#ThuEL5B?VG<#7%aRN2tJK?9_{}3n?tH}dU zG7e8S<0FMh^Me?a^wCq#M=YOyr@rxfh$Zu><{$5p8ZWGWcYGL0Y_WAM3(J1LD%|R?!dHY=uhmvWnFyOPa-miA~Qe4RxXbu!uT6g#AyS$ArnGOa74b^v| zV-Yl(4u%}X`c4i3uIfYB;})z86zfBP0IIQetKJMZlohqsBEVH613ICRXc>!*3~~m@ z#t-pyLQy{$0;t9h<~$X1Z&5#31h}e?&{}d%t5_@UQ$RPq*ohXCiu%G3Kvg~9mU>c| z4_%7&fGq$_(X;G(rmp0V~S3DM*qwyeMn_R4BZuV-OI#@_(lBy& z(KKY61x%?{6HKj6*!&kQ)j5S*+@sUWtUWDiu?B!?YULiytA!7q6s?uP0NLc{UWe`- zV&)cYNeuy1liyx+)-KT&0qzsZZ|zpM{*s=hr%irpBUrTLF4($26ul0+ga)<8{QD+t z^`rS}<|e_$qO=%b&{DHEUd-t0a5GM^*_)WPL@807msSeu_0M>mmQ-(o%^ztOdOXA} z$RBPSg+F#Koj)86YI&M<+tn9M)$0$kM;TB0EGRv6o;2U?9JHUZd?;8{kDTbCmg%%; zFt;Hcje?G<&)S`OD{DXN@Xf8o>a&~yvT8}qr=1qP=FX2L6>CWu27G7vnyX(L9<6@0 zqoZfVR=-Sm*s5ybcD6%@rh;2Ii}lwWf^(a#7uBFkT$F1O;A-DePhN5Pee(r#g=28C zy1YFcE)^w%0kZ0!&}B5w>U^2CSZi+qV5)Uc`Y1pa%?T#NhGuVy!#~pqjWx zxu9s=H2_T2qwMr(v&~Me)~2}??$%;GO3s0T>iy|&o;6xq!M4X@y+5AQ`0d*@?M=<0%me?vSEO%^9kuC>gR&_B!_^l z{Y)Q6Z6B;s3 zJqXy!;unc6z{M;Efl+DCBt2HcYLkLgO9-e@$FeY$^(GeB0Y;*0fKMI9VGH8y@(?e#jDUIXMaS;fZ23dS2JT!BeB8{%A2D@N?_MMoAU`rt&mh zSamXA%rbRRYvGGRDLiICIR^^L>Z9}7@o>fxv6$5s0H&&g=ziX5e{ss7#mY4ZoceZr zJ{qk>H3XkJ7{49PCgU}zAb_gsAp6-N!xpQ990FXGT6C&vy*y?CV5-y_4ab8JS}e6d z09BQ)=#uDSyH<5@@KnsF{WbHc1%UZCnz=Zw%+IIlzSDVjJ|3!@mNRujLtNej*DZsH zLZ`~WDm+Y46`uO7Dx`^$UaZ0kK+sSLt-e|>p+Nxk8c{>yZwl>BR-r-rT+xskhZl4? za)z?yH{~miec|F&0wEEW0HOK7*QAOtJ2_@$R&Z7>C1y!bVKEz=oY0xJ;oCtrJmz(J z$(V5IUs6 zEfcZ)30Oj^o!ss`L)y2AR!s2=WH_J&Rsh_HF3G%d@(p< zskyeGCPFaIK<2h1Cb@P7vP_76j)Zp^$owGa?h9_f0w|q>92LT!PKQTtMgw;Tu{%fR zx3!WyWH3f`2{P2&t3TUQ&m?V7GeSc1AwAeO*Voz86|Y%hGq9l5bqEv71Q2TX+)tI- z%YD9vBbXX>;bSR9gU;>gWIlY4aR$qwf=18;HVTXb{D*%&U;BMNjc~vjU8~H@q#oL0 zI{*DQ-yBblsBe0)IGv0uliBNUzWWBF_>LKeos0 zD@HWoLA*&?J1u&3l_$SoVC@-c0bqVeU-38>^I$#CJBsv7ZBE**276fqQ;?p89>lkj zN4l7mc@9@Tq^*qM1GvR}XaT-;{D#hA*6lkV-XiPv59ocB=$;$FgrMiboZ;KZceE6< zvFmL7m~?12#8$XrNiewgECj)~?wu84M*7vF+LNAJ8?9{bmXpm5h zYMoB74Rh^UM**Q0<(f`U?X6_>&f2-gGFNCu$E7x)shLYPyIWCpx3;EbLh}n(mTZaa z)}N{4o#Dj-f_FR}DOoB#F0`Y3+of%+{ABFf`PLwz7?sTKiz?roymrad#HD)Aspe<- zc5OXPgdQ&`S)J~VYSw#vlj3?gC}%>`^QpcOCEKD+Lz{}DM}(f&R+?|O_v($EPOyu8 zjkYqNLN|(Mx7OI*Y&&luk#E-Es0k>Zf`S>Egp^NPqC~Fb zvrbtjgFOAx6wV6D+E~#AK$)}~14ia~Clve@`O4LhR z3@Wvze)jl)E-R(yUV}4OqJAzxY_B?ngBrC>^mV&a+pWJ0-t80h(wK_FfKGXgexM_< z6)qtOmLGNKJQ6u4!H=9&lCL@7-=0s7-V7F%>Motd<$YL5%VYwZ2ry8BPuD}U0#cf< zK;YlW?WboJiuY}j5zr(k+~o>CusBHS!=(~Gq+&s{rwJJp??PF8L5$**#$;lZHu&?cJwO0P7tQX;9%k z9guBp7w^NxG9W<#B}IKsPdN4XaHCvF$yq6tfBp7fzWW#Eu<|N~1(nZi$|(I#^+iTE z!R~gd^oA`{6U>|?ie=1%>X(7)ztV+b8Le$mSD6dfFW>mGLYQHpjl8(GUDvnzt2_Bv zWXt76hJzN$m-^B~k13TaUmgrPkF68bS8B2@qlx_Bkvz$)R-E+%AoTv;>ecDyxkmPU zKT{P{t=G-yhGKQAceRmi2e&nJOQqx`03BJBFv|6;au(v@N~m^hbUvnJ3C&^9L76%2&$Hq5?IuQ_4h4-T^FNPh7UR20 zyV~j2=-sbIGwLHs7CJ4(jNQ^mNPfyCcWT>>-m7+re(7?}oC#4EPa~e;P4?r|ig|6X3{4PSIA}T2eDd&O(kw<|@95qQ@xI&4?=^y6v zQH6Fw(+#XUweEJO-tN`u>J_?@VW+!S{jo+pk9y-Ec^zWD0Kf0xE$#APSzS_hM*@x% zi*)F6;Cd&xVWO0XBSGYI9TUni%^Gd&pgY%Se^(aQK7!py++|53L~p6z?p3?gthRZJ zBsgfmbQ~l?*S2@~W}`A_4FURBu)0ZGU+5la24if0Tq#DTo~|) zGa&Gq;A}zUwI(qlaJR{il9T}}2Ee)ys;G6ljkkP#u4p05DM|Qu%==~G-^G^q8r`>i z?XnEqP+<98B&7a0<9NwJMwoNJSt7taUtYjp7qunWD0Aiw42J{FfCjNob1_QS+Orlt9Iv{Y%)gQul30%OAgF6e%2;Gi+mMf%Ph}Tp+K+?&U7))uVMr$#iY(D+@}*!L%{{_^q6i3qeo+6(2R zr6Rn=T1O;rv!a;r1YbuaPx41L$-C5#Zq%}!y^OXoup%Ov4GEH+!{D?hTuSv-BQeP| zY+B6WAooDYwL7g|i{?ZUB~mh<=t~7C$moWjf5+3QXu}_}AQZ=k>#P-@JVWR@z}Y}W zh-HSNbpQh)Cc0+!zo8lVdbl~iXw97BEf+McK8xB~f|dtCo>p;1S30eDU8f7LAMv-} z2A%Vwg*SpBMky&?>8&Z1*Lx;=oX_ZXhe5^UjI4SP9K|V|S_vNF#sqDDaASf#4}!Ww zO})(e?*xxh3l4B8 zm>aGvr$YS8`J%t5sPo2|x*@f`bPesP(V#UrsJOPzEfczbm-4xqJb%`qlc1`6hfAq#!QA{x*GF{NlJr61-K({I zV42YUhm;SRtsV`Z$q~&S&C~4Av*tVxNVfB=bVEu27X3PHQAVpd2U~j67R!(O>n4dB zOy_7=k*on*ySvdXHfz^_fI|7JRQxF?#t%YD>iw0;;Hc0}`kt<@)(gLF+NZ~xyS07K z(XirIDG$*5Tx#_>x&uS9X=tSrd@w9Xmd5TYYJd6GinU9lWkNUE3gnL}`qK<+*TXp$ z>d8EhGp)Y%+Ib#OD4P^lJG5+G>s6oW$FpD3%73`yy?BbR0I#%QzeP9MXK}t?+X5d9 z3yk*zQ@gMBqxcv1{t_sZ@96SI?=K{tE0;`|@#2+pz`y7CrU%Iz6Ui)7tN;=;?n9%# zzkkqEM~7G|AsGWiA~^~wE+$RN8BxNNiismd8r^2KO^?a)Dz}t|BSGV~@fO|l72VV# zIrJ2G3Ydt#y&1Z}fc^<=ryev*W65%MWVwPw)MJq*C5Rh-d8~gND z8FPnZQ8sdirhx5o$^K^2(O@EaT#!oTL4yI^`6ap*sFYtc1#FiC4}xv(rBYKtK(bj|EDIvQ~-FbeeR|$_~h7z%Nw;KF-S}C@s#O&?8&e}ey?ToJGWeIjb<6KoaGt=dT#lPJ?@rrmMcocR^vTpcqz7~#O(0x;&N<7iP_;b zS>@P@60_<4gbnyaQDXLsmmA219Ysm8c~_#GPhPxClzUR-H=~wi=hvaS{M`*ZSEbmR z68WSXHpu1JsTR53ecs~-eao>GC9?a)M#_$+#O#ffofm%DaW&x!nkVI*&Qdj@!Nitt zq-4HGmduwM@wlc$cE8++$2BEpZ^S1reV>@o|G|bv|2YS?KhPr-`rKP>@h6icyBGL4 zg|ndJ;*nT6C_alp8o_FTnPH&M^JxJ;8pUTA7%GYdz14XToZ>AN3(EoD%wUkTn|JUd zQG9m6CqcudM5|q;tC?BrS}G2f1O6j==x;cFUFpw{hQn+$SS$v!Ia86W-5Z8om`w1X z_JpfV-VJ6){rQ0DNfxx1>N#Rsk>2^*uwqVxBGu^H1INSH!{Bio$$p$TY8C`OCQ^{GO%9Jcx^bbcoCzOjz&VmZnnmWeQ^YPK*yuTO* zFE2`VvBt^b)1XB4npS#uN{9UB)BX{UkYv+MEabtU^Y7>9htt{QXfU5ws#`5Od~TK^ zX=8M~r59Yc8`a=$?3aSYy_{;wa{l)!m6TOmwMOg3m0Pt+1y=o?=PUC%t+`^h`l9-Z zuIOm(XaCyTVl~k7wLG<4V}(U_uZ=mvmPPZA8?h*%0gJwleblVIQ0vxosF*i8k|T9_ zwh6P5b&d~*4S$=qf%dp<)6VnkS*I0TM|rS`WKx!J3E1;x!k$(}m+S4c_;Gs4%I)PI zap;u(PK~Z8-=hsn)>M{V*VB*C(0|~?pJw)(2f=L*l6HD|v_XX0FFiH&s@AHSOtN!i zxpIo0vZ7AsJg&})6dhLlJI@!F*XxoKx68ee=EIV^o+Z&;q>>GK%Z1s6q<`b-(3BXx za70({tZ2)6YZd)v3W)WuJZtFwpH6RA?R=-@!xxFtFL5`T#uy&ZJ~yAhn= z-Bs^s+A@_b-{(DG|t`pPzlCc+!6^&<2#{d%)~(9>t$gLZJe zT36{aH1xmXzRt+mOAKhPRR)v+oDB>7dcXTZjof($V7+=DM5s~kY}`MuR1bD&V};%% zOM4ny`kZ)mr@g(OJ^SaU`~<5gqbsH@YXW=`WB4}ujT@71tfxNyrKW$E@lz#|&4ijN z^^FpMcVq^A&r0bP81%g}h}y}e9%|4Pe7|F+hzhJE-xxH!vcd?eDZ{-pn=-n zUZHH*6r#fv>SJA!K)k$&272=J`JFT5*UJr|hbg0SD{AKic7P3kJc-QMuRg2u-5jE> z&2nu6gy3Czs{U{?qL<{)vglQE$&|MVZmRA81&t^4ynH3g4rhb@o9Tom)lMgqH(ADV zyQJSv6swcOLGGcEJ08xbqy9xgOEQJWwKxkx4~)>@{n22Wij&BFEKUpsnNN)j`E4-k zA1&yy`b3;06XHBhF%N=wjNp86JebXbbds$9aUF*N{^krc(Va)g7Nan<|DR80@_6_CQNaumRCsdVTc4o^n?*PJcc z=H@4Zg8)sn3ZbXNpZr!e^OXmr{i9|wy)MJ>-Mfa}WpcrspO z?`E|8lBu{IO^*2zOwr0a#e<;ETg!5A(Y)nzAfRhl^~HI-I99ZV^)SHSR9QE!k_0bx ztAMV5UiQ{vy7fu&B)*26$a{n9tQ)+}V6_5oDyIRYwGalrCm;gXd`+k)oM3 zrvR?qL`%51+el}S2vuS^E%2Ktc&vOdk#wofT z=1p*6r&tESx*rr7T(lpg0YGX$t4}i3x8>#*^|OZoUN?yPb1J@*8I5VOqyEt;&nrb6 z#1s#Lx;mhd;NoO5J7eiuv^sDQppB~tJsKV!4|%7ju&Z(m@E@z9l;|N!Zm;u8l0^V} zU1R5b0{dyfuJe?_2S7e&R2-Pk3h8QgdZF`0sv};snhj8}Tl?1xPg%Yw>R*chR`+1& zv*DOgi}qj)0Z`aV!%;>pVXHy_t9y%!Q<|AMj+@J(y+xk`0iBetu^bK0hTQ(5Ng1FZ zqbt}{x20$W3kJaVRAI3n#vYRFo%2f~13^Nk!Mpx!oEqjAO#`0;0iAc=4acOuR^G7) zV4qO`f7~CBFDfU)(LhZeW|Q&gf=LL@&pV3lySu+Q6Powj_Y|2!y4{JX3HHpn@LUZv z=uq5d%7O~^C+)U6`@xch;A$mMtXL8WNs5~J9&3#(YJvd-!ZR@kgUkc`>{;_5OT
a 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�ANqAJWYTCPP`_^EhYtyBXIAO1*migHkKsU9u` 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

^@!Yy`J`gf_4|0T7ni7V)HvK$tk9# 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

J%C`CGg>mIiKZr??%4vn4Nu$}&&6C?**+ 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 diff --git a/docs/Python/doctrees/faq.doctree b/docs/Python/doctrees/faq.doctree deleted file mode 100644 index 32560c6ae4520300939462408d68d4a86e564eb8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 97713 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 diff --git a/docs/Python/doctrees/intents.doctree b/docs/Python/doctrees/intents.doctree deleted file mode 100644 index f86e908aebef914d25c7ac933a8fef8465499187..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 60760 zcmeHw3y@rAb*A;!jGiOe8b7deu`wD8&FEpvI1|gU!6+6&V`Iyf07K86?mKh)s$cHg zt-fKXrTly69)8rkn@M&35xar|q?BZrPijc24-!(3$Tx%2e9H z->xWwh8kX}R&AVqur$^4H=tL4BwBmIJ4<7Xc4pM;J>27=qpQr<(fXE)33Ph?=I$IC z8)a=+SR#k2Y@F)uc=l-05#fBuDM}|hxmJ4!>xJN4Q%W`dtwoF-2>sxt^=WMoo_Thoa3lx5G}U)o#|B3%B(A z8;`9<3v2vU{u(sDNzf@Uc7*7v?k>%F)J%Wk0;amPiZkaq?wD%k^I>6p6oL%z67cioR}_2B%gX%zu2eaW+) zKb%7|{*6Ri)j>u5!~QLbEROp>pFs`&?PB~Hv@oJEnIZ`PRiJ@2sF|jL>lAOX7Our* zQj2s5s60AostQT($SM?V)ysrAS@wk1S`!+H)_2_Yf@kUN zXS_wH+HhnM=fKnB0rC5Bl4rEfT^rEe@+N7w)oe@!OwutIUbT$%g2t8I3ELs4Dq++lRx(5Ji;r)u+ z074px(`h=t;C8%4cgZ;_fTK9`z%qso{tw3TLjeF{e}f=Ou=)Xtf7gQ7MhyQm3Rb6X zSas1wM`QHvl$#LtPRIAK5IXHGd;9QW*$(3eZw6`*p5|4khyfW5l z*_rE>PkU$%1M$uR%f9LiV^m6|SE12~`BkcCs+BH= zt+gO(p57(rs;j%C8Y&%dEV`~R^el-vL?wSbSPdN6`1UV~Hn+S+rP^31odx0AbhbS? zZb4k2*IKpXwcVOkIM_xF3n{!o(W0RcTM6{NBjaIjopozDZCYdZ!{3jTr z=Es9A8EwS45b1tE4s=dI8Q1}kGF)la-D;y3T!s4420RelVV&qL+JqWjXR+GxS%A#WN^Ukgi}5Y6J;R8NeM3&bTBAc( z1?)W_)fORfvfrlWE+@<~BTn@#YCur^dQr-Zh&0onjRGqp`bI_z1&RJaR9!jItBECO z9=adHj|IWSS)^k?5oN#6#lYnX0~UStN5-!kWQ?UMn87e!-kkx}iJ_R$yE0lRh?jqJ zUhtAJ$3ZAsz1KEQ(63zZU#7sHTHqN=;j;$%TP^5g`6odC`x$^64)mYSXrUnJ|Kkcl z&-zs;b?@FeAr_MJEsTcXQv@`%j^f;Bs{uZ-&8max;UMfTH-5f)PgXcNvm*_bNu#L;=V$rE}&1A9oJ3+yF1EOvU*bnL(t z;C5?}{IorUU13S>59d7WrW~(9hLDQmoh^GUY(=3+zz}ezTJsio*T}Yvy-vA{ZDyl` zo$EC18}){Gs_xb2U|fR0#||{{u7#Z`S@*+PqXj(pY>wTcpl5d+Ac!kKY5nz+@dPLp zm@`<#i>V>ODz-@-R$;}=mx+5KgSc(Bu>l)f!fxMv?Ta!RuvZ8BG-zL&R?-ims>L^7Wc1DqDdKo}T1u$;o|yu<}UuQosByn?KJ#(XDDdrGH}R5po2o69mrfEjh9 z_y`SuuRIe|HR~#RX8Hq3yiFrmkVIUgD`G}@lv)ssT3g^W@VT4?Q8A{P-?=M%W#2VYQ(Blx(%%X+a0%s?0| zpUeQNV z=#3%c(DD|%rrcCQm^`4-D|Q=Wvkx8tAN9_<^;XT>>s057Wjc#)qoe#R!~j*O z3-}@IRtOw%!j@aFFDb7|t$LbNV5zy1?E^-5(v(@VUL-pk1u;~btSiqq$&rKC(%m)| zJ-dU@SP8yKR6QPigT4w&GG&6iBo5+{Xp8ivl; @@dPXa*C|UPPN`@wmT44>?9r4 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 diff --git a/docs/Python/doctrees/intro.doctree b/docs/Python/doctrees/intro.doctree deleted file mode 100644 index 88dab010bf12398b6e04bc7b540367e53dc71e2f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 17563 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 diff --git a/docs/Python/doctrees/logging.doctree b/docs/Python/doctrees/logging.doctree deleted file mode 100644 index 4d88fc365523699d36c596c15437be0422965e8c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12130 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%0DMaq>&uCN$Y&hBNd}?5|kk9%3QuB*D@W<+pQ# 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

dGGC{Btf3OPkfdGCHasS3RSR!V6){~P@f z45G&gRtk*UPcxV|Tq(RFNh#1yd9pN$%hRRC!NPQ0J46}?H6ecFiyF=8QmIatuLXRe zl|%8}R(YmmhqAYvZ$AJwycKnw7Yn|$b1K^}|9=ikM$%hjbU*WVFKTVnBO#$`?P(s^ z5b5f#T9Y*Js5Sj1MXg0C*uKbCYZ1N+U`&sqy9H!ohZNV;SkXm#jcB~*d#D<&@t)&> z4q20z0j?h!@AQbqi_XYK92 z+K){jMkVsl0ivdg_enGPH9Cu}x?re`B5jP!;+}_N7QiAl3*S~&Od{A8F|%BqF@ZE& zlsr;mel%ApQKfZe$4n3H1?A$VO_8crOXxb(gevw^nA&&)5u!4P-5OR@l?|c-Sty#d zP8PPRY`|x|QI#)QZMJ@ETkmN}En@wmxwP^iNP}U1LjQDHUFwG#h;iEyR6S^fU#BFK zTZPFM)l~Vi@T_=R%g#Tm!yK37Ye!9Q^4XDZ7D|%L-0A5(8>Y@|34$Drj-71MQ>B6z zF)0@_kM=%ZA_lxp@_@u*bW3@>ZZk@c^FW8F?^S@yP~REPoXBKZhaS$Jb|-0TNlj0l zn)qTwWNIBkFp)QOto�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 C6La$b diff --git a/docs/Python/html/_images/snake.svg b/docs/Python/html/_images/snake.svg deleted file mode 100644 index aa741440..00000000 --- a/docs/Python/html/_images/snake.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/docs/Python/html/_images/snake_dark.svg b/docs/Python/html/_images/snake_dark.svg deleted file mode 100644 index 12022af4..00000000 --- a/docs/Python/html/_images/snake_dark.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/docs/Python/html/_sources/api.rst.txt b/docs/Python/html/_sources/api.rst.txt deleted file mode 100644 index 76468601..00000000 --- a/docs/Python/html/_sources/api.rst.txt +++ /dev/null @@ -1,4242 +0,0 @@ -.. currentmodule:: discord - -API Reference -=============== - -The following section outlines the API of discord.py. - -.. note:: - - This module uses the Python logging module to log diagnostic and errors - in an output independent way. If the logging module is not configured, - these logs will not be output anywhere. See :ref:`logging_setup` for - more information on how to set up and use the logging module with - discord.py. - -Version Related Info ---------------------- - -There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`. - -.. data:: version_info - - A named tuple that is similar to :obj:`py:sys.version_info`. - - Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are - 'alpha', 'beta', 'candidate' and 'final'. - -.. data:: __version__ - - A string representation of the version. e.g. ``'1.0.0rc1'``. This is based - off of :pep:`440`. - -Clients --------- - -Client -~~~~~~~ - -.. attributetable:: Client - -.. autoclass:: Client - :members: - :exclude-members: fetch_guilds, event - - .. automethod:: Client.event() - :decorator: - - .. automethod:: Client.fetch_guilds - :async-for: - -AutoShardedClient -~~~~~~~~~~~~~~~~~~ - -.. attributetable:: AutoShardedClient - -.. autoclass:: AutoShardedClient - :members: - -Application Info ------------------- - -AppInfo -~~~~~~~~ - -.. attributetable:: AppInfo - -.. autoclass:: AppInfo() - :members: - -PartialAppInfo -~~~~~~~~~~~~~~~ - -.. attributetable:: PartialAppInfo - -.. autoclass:: PartialAppInfo() - :members: - -Team -~~~~~ - -.. attributetable:: Team - -.. autoclass:: Team() - :members: - -TeamMember -~~~~~~~~~~~ - -.. attributetable:: TeamMember - -.. autoclass:: TeamMember() - :members: - -Voice Related ---------------- - -VoiceClient -~~~~~~~~~~~~ - -.. attributetable:: VoiceClient - -.. autoclass:: VoiceClient() - :members: - :exclude-members: connect, on_voice_state_update, on_voice_server_update - -VoiceProtocol -~~~~~~~~~~~~~~~ - -.. attributetable:: VoiceProtocol - -.. autoclass:: VoiceProtocol - :members: - -AudioSource -~~~~~~~~~~~~ - -.. attributetable:: AudioSource - -.. autoclass:: AudioSource - :members: - -PCMAudio -~~~~~~~~~ - -.. attributetable:: PCMAudio - -.. autoclass:: PCMAudio - :members: - -FFmpegAudio -~~~~~~~~~~~~ - -.. attributetable:: FFmpegAudio - -.. autoclass:: FFmpegAudio - :members: - -FFmpegPCMAudio -~~~~~~~~~~~~~~~ - -.. attributetable:: FFmpegPCMAudio - -.. autoclass:: FFmpegPCMAudio - :members: - -FFmpegOpusAudio -~~~~~~~~~~~~~~~~ - -.. attributetable:: FFmpegOpusAudio - -.. autoclass:: FFmpegOpusAudio - :members: - -PCMVolumeTransformer -~~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: PCMVolumeTransformer - -.. autoclass:: PCMVolumeTransformer - :members: - -Opus Library -~~~~~~~~~~~~~ - -.. autofunction:: discord.opus.load_opus - -.. autofunction:: discord.opus.is_loaded - -.. _discord-api-events: - -Event Reference ---------------- - -This section outlines the different types of events listened by :class:`Client`. - -There are two ways to register an event, the first way is through the use of -:meth:`Client.event`. The second way is through subclassing :class:`Client` and -overriding the specific events. For example: :: - - import discord - - class MyClient(discord.Client): - async def on_message(self, message): - if message.author == self.user: - return - - if message.content.startswith('$hello'): - await message.channel.send('Hello World!') - - -If an event handler raises an exception, :func:`on_error` will be called -to handle it, which defaults to print a traceback and ignoring the exception. - -.. warning:: - - All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected - errors. In order to turn a function into a coroutine they must be ``async def`` - functions. - -Networking -~~~~~~~~~~~ - -.. function:: on_connect() - - Called when the client has successfully connected to Discord. This is not - the same as the client being fully prepared, see :func:`on_ready` for that. - - The warnings on :func:`on_ready` also apply. - -.. function:: on_shard_connect(shard_id) - - Similar to :func:`on_connect` except used by :class:`AutoShardedClient` - to denote when a particular shard ID has connected to Discord. - - .. versionadded:: 1.4 - - :param shard_id: The shard ID that has connected. - :type shard_id: :class:`int` - -.. function:: on_disconnect() - - Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. - This could happen either through the internet being disconnected, explicit calls to close, - or Discord terminating the connection one way or the other. - - This function can be called many times without a corresponding :func:`on_connect` call. - -.. function:: on_shard_disconnect(shard_id) - - Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` - to denote when a particular shard ID has disconnected from Discord. - - .. versionadded:: 1.4 - - :param shard_id: The shard ID that has disconnected. - :type shard_id: :class:`int` - -.. function:: on_ready() - - Called when the client is done preparing the data received from Discord. Usually after login is successful - and the :attr:`Client.guilds` and co. are filled up. - - .. warning:: - - This function is not guaranteed to be the first event called. - Likewise, this function is **not** guaranteed to only be called - once. This library implements reconnection logic and thus will - end up calling this event whenever a RESUME request fails. - -.. function:: on_shard_ready(shard_id) - - Similar to :func:`on_ready` except used by :class:`AutoShardedClient` - to denote when a particular shard ID has become ready. - - :param shard_id: The shard ID that is ready. - :type shard_id: :class:`int` - -.. function:: on_resumed() - - Called when the client has resumed a session. - -.. function:: on_shard_resumed(shard_id) - - Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` - to denote when a particular shard ID has resumed a session. - - .. versionadded:: 1.4 - - :param shard_id: The shard ID that has resumed. - :type shard_id: :class:`int` - -.. function:: on_error(event, *args, **kwargs) - - Usually when an event raises an uncaught exception, a traceback is - printed to stderr and the exception is ignored. If you want to - change this behaviour and handle the exception for whatever reason - yourself, this event can be overridden. Which, when done, will - suppress the default action of printing the traceback. - - The information of the exception raised and the exception itself can - be retrieved with a standard call to :func:`sys.exc_info`. - - If you want exception to propagate out of the :class:`Client` class - you can define an ``on_error`` handler consisting of a single empty - :ref:`raise statement `. Exceptions raised by ``on_error`` will not be - handled in any way by :class:`Client`. - - .. note:: - - ``on_error`` will only be dispatched to :meth:`Client.event`. - - It will not be received by :meth:`Client.wait_for`, or, if used, - :ref:`ext_commands_api_bot` listeners such as - :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`. - - :param event: The name of the event that raised the exception. - :type event: :class:`str` - - :param args: The positional arguments for the event that raised the - exception. - :param kwargs: The keyword arguments for the event that raised the - exception. - -.. function:: on_socket_event_type(event_type) - - Called whenever a websocket event is received from the WebSocket. - - This is mainly useful for logging how many events you are receiving - from the Discord gateway. - - .. versionadded:: 2.0 - - :param event_type: The event type from Discord that is received, e.g. ``'READY'``. - :type event_type: :class:`str` - -.. function:: on_socket_raw_receive(msg) - - Called whenever a message is completely received from the WebSocket, before - it's processed and parsed. This event is always dispatched when a - complete message is received and the passed data is not parsed in any way. - - This is only really useful for grabbing the WebSocket stream and - debugging purposes. - - This requires setting the ``enable_debug_events`` setting in the :class:`Client`. - - .. note:: - - This is only for the messages received from the client - WebSocket. The voice WebSocket will not trigger this event. - - :param msg: The message passed in from the WebSocket library. - :type msg: :class:`str` - -.. function:: on_socket_raw_send(payload) - - Called whenever a send operation is done on the WebSocket before the - message is sent. The passed parameter is the message that is being - sent to the WebSocket. - - This is only really useful for grabbing the WebSocket stream and - debugging purposes. - - This requires setting the ``enable_debug_events`` setting in the :class:`Client`. - - .. note:: - - This is only for the messages sent from the client - WebSocket. The voice WebSocket will not trigger this event. - - :param payload: The message that is about to be passed on to the - WebSocket library. It can be :class:`bytes` to denote a binary - message or :class:`str` to denote a regular text message. - -.. function:: on_typing(channel, user, when) - - Called when someone begins typing a message. - - The ``channel`` parameter can be a :class:`abc.Messageable` instance. - Which could either be :class:`TextChannel`, :class:`GroupChannel`, or - :class:`DMChannel`. - - If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter - is a :class:`Member`, otherwise it is a :class:`User`. - - This requires :attr:`Intents.typing` to be enabled. - - :param channel: The location where the typing originated from. - :type channel: :class:`abc.Messageable` - :param user: The user that started typing. - :type user: Union[:class:`User`, :class:`Member`] - :param when: When the typing started as an aware datetime in UTC. - :type when: :class:`datetime.datetime` - -.. function:: on_raw_typing(payload) - - Called when someone begins typing a message. Unlike :func:`on_typing`, this is - called regardless if the user can be found or not. This most often happens - when a user types in DMs. - - This requires :attr:`Intents.typing` to be enabled. - - :param payload: The raw typing payload. - :type payload: :class:`RawTypingEvent` - -Messages -~~~~~~~~~ - -.. function:: on_message(message) - - Called when a :class:`Message` is created and sent. - - This requires :attr:`Intents.messages` to be enabled. - - .. warning:: - - Your bot's own messages and private messages are sent through this - event. This can lead cases of 'recursion' depending on how your bot was - programmed. If you want the bot to not reply to itself, consider - checking the user IDs. Note that :class:`~ext.commands.Bot` does not - have this problem. - - :param message: The current message. - :type message: :class:`Message` - -.. function:: on_message_delete(message) - - Called when a message is deleted. If the message is not found in the - internal message cache, then this event will not be called. - Messages might not be in cache if the message is too old - or the client is participating in high traffic guilds. - - If this occurs increase the :class:`max_messages ` parameter - or use the :func:`on_raw_message_delete` event instead. - - This requires :attr:`Intents.messages` to be enabled. - - :param message: The deleted message. - :type message: :class:`Message` - -.. function:: on_bulk_message_delete(messages) - - Called when messages are bulk deleted. If none of the messages deleted - are found in the internal message cache, then this event will not be called. - If individual messages were not found in the internal message cache, - this event will still be called, but the messages not found will not be included in - the messages list. Messages might not be in cache if the message is too old - or the client is participating in high traffic guilds. - - If this occurs increase the :class:`max_messages ` parameter - or use the :func:`on_raw_bulk_message_delete` event instead. - - This requires :attr:`Intents.messages` to be enabled. - - :param messages: The messages that have been deleted. - :type messages: List[:class:`Message`] - -.. function:: on_raw_message_delete(payload) - - Called when a message is deleted. Unlike :func:`on_message_delete`, this is - called regardless of the message being in the internal message cache or not. - - If the message is found in the message cache, - it can be accessed via :attr:`RawMessageDeleteEvent.cached_message` - - This requires :attr:`Intents.messages` to be enabled. - - :param payload: The raw event payload data. - :type payload: :class:`RawMessageDeleteEvent` - -.. function:: on_raw_bulk_message_delete(payload) - - Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is - called regardless of the messages being in the internal message cache or not. - - If the messages are found in the message cache, - they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages` - - This requires :attr:`Intents.messages` to be enabled. - - :param payload: The raw event payload data. - :type payload: :class:`RawBulkMessageDeleteEvent` - -.. function:: on_message_edit(before, after) - - Called when a :class:`Message` receives an update event. If the message is not found - in the internal message cache, then these events will not be called. - Messages might not be in cache if the message is too old - or the client is participating in high traffic guilds. - - If this occurs increase the :class:`max_messages ` parameter - or use the :func:`on_raw_message_edit` event instead. - - The following non-exhaustive cases trigger this event: - - - A message has been pinned or unpinned. - - The message content has been changed. - - The message has received an embed. - - - For performance reasons, the embed server does not do this in a "consistent" manner. - - - The message's embeds were suppressed or unsuppressed. - - A call message has received an update to its participants or ending time. - - This requires :attr:`Intents.messages` to be enabled. - - :param before: The previous version of the message. - :type before: :class:`Message` - :param after: The current version of the message. - :type after: :class:`Message` - -.. function:: on_raw_message_edit(payload) - - Called when a message is edited. Unlike :func:`on_message_edit`, this is called - regardless of the state of the internal message cache. - - If the message is found in the message cache, - it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents - the message before it has been edited. For example, if the content of a message is modified and - triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` - will return a :class:`Message` object that represents the message before the content was modified. - - Due to the inherently raw nature of this event, the data parameter coincides with - the raw data given by the `gateway `_. - - Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. - One example of a common case of partial data is when the ``'content'`` key is inaccessible. This - denotes an "embed" only edit, which is an edit in which only the embeds are updated by the Discord - embed server. - - This requires :attr:`Intents.messages` to be enabled. - - :param payload: The raw event payload data. - :type payload: :class:`RawMessageUpdateEvent` - -.. function:: on_reaction_add(reaction, user) - - Called when a message has a reaction added to it. Similar to :func:`on_message_edit`, - if the message is not found in the internal message cache, then this - event will not be called. Consider using :func:`on_raw_reaction_add` instead. - - .. note:: - - To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`. - - This requires :attr:`Intents.reactions` to be enabled. - - .. note:: - - This doesn't require :attr:`Intents.members` within a guild context, - but due to Discord not providing updated user information in a direct message - it's required for direct messages to receive this event. - Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want - to enable the members intent. - - :param reaction: The current state of the reaction. - :type reaction: :class:`Reaction` - :param user: The user who added the reaction. - :type user: Union[:class:`Member`, :class:`User`] - -.. function:: on_raw_reaction_add(payload) - - Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is - called regardless of the state of the internal message cache. - - This requires :attr:`Intents.reactions` to be enabled. - - :param payload: The raw event payload data. - :type payload: :class:`RawReactionActionEvent` - -.. function:: on_reaction_remove(reaction, user) - - Called when a message has a reaction removed from it. Similar to on_message_edit, - if the message is not found in the internal message cache, then this event - will not be called. - - .. note:: - - To get the message being reacted, access it via :attr:`Reaction.message`. - - This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled. - - .. note:: - - Consider using :func:`on_raw_reaction_remove` if you need this and do not want - to enable the members intent. - - :param reaction: The current state of the reaction. - :type reaction: :class:`Reaction` - :param user: The user who added the reaction. - :type user: Union[:class:`Member`, :class:`User`] - -.. function:: on_raw_reaction_remove(payload) - - Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is - called regardless of the state of the internal message cache. - - This requires :attr:`Intents.reactions` to be enabled. - - :param payload: The raw event payload data. - :type payload: :class:`RawReactionActionEvent` - -.. function:: on_reaction_clear(message, reactions) - - Called when a message has all its reactions removed from it. Similar to :func:`on_message_edit`, - if the message is not found in the internal message cache, then this event - will not be called. Consider using :func:`on_raw_reaction_clear` instead. - - This requires :attr:`Intents.reactions` to be enabled. - - :param message: The message that had its reactions cleared. - :type message: :class:`Message` - :param reactions: The reactions that were removed. - :type reactions: List[:class:`Reaction`] - -.. function:: on_raw_reaction_clear(payload) - - Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, - this is called regardless of the state of the internal message cache. - - This requires :attr:`Intents.reactions` to be enabled. - - :param payload: The raw event payload data. - :type payload: :class:`RawReactionClearEvent` - -.. function:: on_reaction_clear_emoji(reaction) - - Called when a message has a specific reaction removed from it. Similar to :func:`on_message_edit`, - if the message is not found in the internal message cache, then this event - will not be called. Consider using :func:`on_raw_reaction_clear_emoji` instead. - - This requires :attr:`Intents.reactions` to be enabled. - - .. versionadded:: 1.3 - - :param reaction: The reaction that got cleared. - :type reaction: :class:`Reaction` - -.. function:: on_raw_reaction_clear_emoji(payload) - - Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called - regardless of the state of the internal message cache. - - This requires :attr:`Intents.reactions` to be enabled. - - .. versionadded:: 1.3 - - :param payload: The raw event payload data. - :type payload: :class:`RawReactionClearEmojiEvent` - -.. function:: on_interaction(interaction) - - Called when an interaction happened. - - This currently happens due to slash command invocations or components being used. - - .. warning:: - - This is a low level function that is not generally meant to be used. - If you are working with components, consider using the callbacks associated - with the :class:`~discord.ui.View` instead as it provides a nicer user experience. - - .. versionadded:: 2.0 - - :param interaction: The interaction data. - :type interaction: :class:`Interaction` - -.. function:: on_private_channel_update(before, after) - - Called whenever a private group DM is updated. e.g. changed name or topic. - - This requires :attr:`Intents.messages` to be enabled. - - :param before: The updated group channel's old info. - :type before: :class:`GroupChannel` - :param after: The updated group channel's new info. - :type after: :class:`GroupChannel` - -.. function:: on_private_channel_pins_update(channel, last_pin) - - Called whenever a message is pinned or unpinned from a private channel. - - :param channel: The private channel that had its pins updated. - :type channel: :class:`abc.PrivateChannel` - :param last_pin: The latest message that was pinned as an aware datetime in UTC. Could be ``None``. - :type last_pin: Optional[:class:`datetime.datetime`] - -.. function:: on_guild_channel_delete(channel) - on_guild_channel_create(channel) - - Called whenever a guild channel is deleted or created. - - Note that you can get the guild from :attr:`~abc.GuildChannel.guild`. - - This requires :attr:`Intents.guilds` to be enabled. - - :param channel: The guild channel that got created or deleted. - :type channel: :class:`abc.GuildChannel` - -.. function:: on_guild_channel_update(before, after) - - Called whenever a guild channel is updated. e.g. changed name, topic, permissions. - - This requires :attr:`Intents.guilds` to be enabled. - - :param before: The updated guild channel's old info. - :type before: :class:`abc.GuildChannel` - :param after: The updated guild channel's new info. - :type after: :class:`abc.GuildChannel` - -.. function:: on_guild_channel_pins_update(channel, last_pin) - - Called whenever a message is pinned or unpinned from a guild channel. - - This requires :attr:`Intents.guilds` to be enabled. - - :param channel: The guild channel that had its pins updated. - :type channel: Union[:class:`abc.GuildChannel`, :class:`Thread`] - :param last_pin: The latest message that was pinned as an aware datetime in UTC. Could be ``None``. - :type last_pin: Optional[:class:`datetime.datetime`] - -.. function:: on_thread_join(thread) - - Called whenever a thread is joined or created. Note that from the API's perspective there is no way to - differentiate between a thread being created or the bot joining a thread. - - Note that you can get the guild from :attr:`Thread.guild`. - - This requires :attr:`Intents.guilds` to be enabled. - - .. versionadded:: 2.0 - - :param thread: The thread that got joined. - :type thread: :class:`Thread` - -.. function:: on_thread_remove(thread) - - Called whenever a thread is removed. This is different from a thread being deleted. - - Note that you can get the guild from :attr:`Thread.guild`. - - This requires :attr:`Intents.guilds` to be enabled. - - .. warning:: - - Due to technical limitations, this event might not be called - as soon as one expects. Since the library tracks thread membership - locally, the API only sends updated thread membership status upon being - synced by joining a thread. - - .. versionadded:: 2.0 - - :param thread: The thread that got removed. - :type thread: :class:`Thread` - -.. function:: on_thread_delete(thread) - - Called whenever a thread is deleted. - - Note that you can get the guild from :attr:`Thread.guild`. - - This requires :attr:`Intents.guilds` to be enabled. - - .. versionadded:: 2.0 - - :param thread: The thread that got deleted. - :type thread: :class:`Thread` - -.. function:: on_thread_member_join(member) - on_thread_member_remove(member) - - Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`. - - You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`. - - This requires :attr:`Intents.members` to be enabled. - - .. versionadded:: 2.0 - - :param member: The member who joined or left. - :type member: :class:`ThreadMember` - -.. function:: on_thread_update(before, after) - - Called whenever a thread is updated. - - This requires :attr:`Intents.guilds` to be enabled. - - .. versionadded:: 2.0 - - :param before: The updated thread's old info. - :type before: :class:`Thread` - :param after: The updated thread's new info. - :type after: :class:`Thread` - -.. function:: on_guild_integrations_update(guild) - - Called whenever an integration is created, modified, or removed from a guild. - - This requires :attr:`Intents.integrations` to be enabled. - - .. versionadded:: 1.4 - - :param guild: The guild that had its integrations updated. - :type guild: :class:`Guild` - -.. function:: on_integration_create(integration) - - Called when an integration is created. - - This requires :attr:`Intents.integrations` to be enabled. - - .. versionadded:: 2.0 - - :param integration: The integration that was created. - :type integration: :class:`Integration` - -.. function:: on_integration_update(integration) - - Called when an integration is updated. - - This requires :attr:`Intents.integrations` to be enabled. - - .. versionadded:: 2.0 - - :param integration: The integration that was created. - :type integration: :class:`Integration` - -.. function:: on_raw_integration_delete(payload) - - Called when an integration is deleted. - - This requires :attr:`Intents.integrations` to be enabled. - - .. versionadded:: 2.0 - - :param payload: The raw event payload data. - :type payload: :class:`RawIntegrationDeleteEvent` - -.. function:: on_webhooks_update(channel) - - Called whenever a webhook is created, modified, or removed from a guild channel. - - This requires :attr:`Intents.webhooks` to be enabled. - - :param channel: The channel that had its webhooks updated. - :type channel: :class:`abc.GuildChannel` - -.. function:: on_member_join(member) - on_member_remove(member) - - Called when a :class:`Member` leaves or joins a :class:`Guild`. - - This requires :attr:`Intents.members` to be enabled. - - :param member: The member who joined or left. - :type member: :class:`Member` - -.. function:: on_member_update(before, after) - - Called when a :class:`Member` updates their profile. - - This is called when one or more of the following things change: - - - nickname - - roles - - pending - - This requires :attr:`Intents.members` to be enabled. - - :param before: The updated member's old info. - :type before: :class:`Member` - :param after: The updated member's updated info. - :type after: :class:`Member` - -.. function:: on_presence_update(before, after) - - Called when a :class:`Member` updates their presence. - - This is called when one or more of the following things change: - - - status - - activity - - This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled. - - .. versionadded:: 2.0 - - :param before: The updated member's old info. - :type before: :class:`Member` - :param after: The updated member's updated info. - :type after: :class:`Member` - -.. function:: on_user_update(before, after) - - Called when a :class:`User` updates their profile. - - This is called when one or more of the following things change: - - - avatar - - username - - discriminator - - This requires :attr:`Intents.members` to be enabled. - - :param before: The updated user's old info. - :type before: :class:`User` - :param after: The updated user's updated info. - :type after: :class:`User` - -.. function:: on_guild_join(guild) - - Called when a :class:`Guild` is either created by the :class:`Client` or when the - :class:`Client` joins a guild. - - This requires :attr:`Intents.guilds` to be enabled. - - :param guild: The guild that was joined. - :type guild: :class:`Guild` - -.. function:: on_guild_remove(guild) - - Called when a :class:`Guild` is removed from the :class:`Client`. - - This happens through, but not limited to, these circumstances: - - - The client got banned. - - The client got kicked. - - The client left the guild. - - The client or the guild owner deleted the guild. - - In order for this event to be invoked then the :class:`Client` must have - been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`) - - This requires :attr:`Intents.guilds` to be enabled. - - :param guild: The guild that got removed. - :type guild: :class:`Guild` - -.. function:: on_guild_update(before, after) - - Called when a :class:`Guild` updates, for example: - - - Changed name - - Changed AFK channel - - Changed AFK timeout - - etc - - This requires :attr:`Intents.guilds` to be enabled. - - :param before: The guild prior to being updated. - :type before: :class:`Guild` - :param after: The guild after being updated. - :type after: :class:`Guild` - -.. function:: on_guild_role_create(role) - on_guild_role_delete(role) - - Called when a :class:`Guild` creates or deletes a new :class:`Role`. - - To get the guild it belongs to, use :attr:`Role.guild`. - - This requires :attr:`Intents.guilds` to be enabled. - - :param role: The role that was created or deleted. - :type role: :class:`Role` - -.. function:: on_guild_role_update(before, after) - - Called when a :class:`Role` is changed guild-wide. - - This requires :attr:`Intents.guilds` to be enabled. - - :param before: The updated role's old info. - :type before: :class:`Role` - :param after: The updated role's updated info. - :type after: :class:`Role` - -.. function:: on_guild_emojis_update(guild, before, after) - - Called when a :class:`Guild` adds or removes :class:`Emoji`. - - This requires :attr:`Intents.emojis_and_stickers` to be enabled. - - :param guild: The guild who got their emojis updated. - :type guild: :class:`Guild` - :param before: A list of emojis before the update. - :type before: Sequence[:class:`Emoji`] - :param after: A list of emojis after the update. - :type after: Sequence[:class:`Emoji`] - -.. function:: on_guild_stickers_update(guild, before, after) - - Called when a :class:`Guild` updates its stickers. - - This requires :attr:`Intents.emojis_and_stickers` to be enabled. - - .. versionadded:: 2.0 - - :param guild: The guild who got their stickers updated. - :type guild: :class:`Guild` - :param before: A list of stickers before the update. - :type before: Sequence[:class:`GuildSticker`] - :param after: A list of stickers after the update. - :type after: Sequence[:class:`GuildSticker`] - -.. function:: on_guild_available(guild) - on_guild_unavailable(guild) - - Called when a guild becomes available or unavailable. The guild must have - existed in the :attr:`Client.guilds` cache. - - This requires :attr:`Intents.guilds` to be enabled. - - :param guild: The :class:`Guild` that has changed availability. - -.. function:: on_voice_state_update(member, before, after) - - Called when a :class:`Member` changes their :class:`VoiceState`. - - The following, but not limited to, examples illustrate when this event is called: - - - A member joins a voice or stage channel. - - A member leaves a voice or stage channel. - - A member is muted or deafened by their own accord. - - A member is muted or deafened by a guild administrator. - - This requires :attr:`Intents.voice_states` to be enabled. - - :param member: The member whose voice states changed. - :type member: :class:`Member` - :param before: The voice state prior to the changes. - :type before: :class:`VoiceState` - :param after: The voice state after the changes. - :type after: :class:`VoiceState` - -.. function:: on_stage_instance_create(stage_instance) - on_stage_instance_delete(stage_instance) - - Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`. - - .. versionadded:: 2.0 - - :param stage_instance: The stage instance that was created or deleted. - :type stage_instance: :class:`StageInstance` - -.. function:: on_stage_instance_update(before, after) - - Called when a :class:`StageInstance` is updated. - - The following, but not limited to, examples illustrate when this event is called: - - - The topic is changed. - - The privacy level is changed. - - .. versionadded:: 2.0 - - :param before: The stage instance before the update. - :type before: :class:`StageInstance` - :param after: The stage instance after the update. - :type after: :class:`StageInstance` - -.. function:: on_member_ban(guild, user) - - Called when user gets banned from a :class:`Guild`. - - This requires :attr:`Intents.bans` to be enabled. - - :param guild: The guild the user got banned from. - :type guild: :class:`Guild` - :param user: The user that got banned. - Can be either :class:`User` or :class:`Member` depending if - the user was in the guild or not at the time of removal. - :type user: Union[:class:`User`, :class:`Member`] - -.. function:: on_member_unban(guild, user) - - Called when a :class:`User` gets unbanned from a :class:`Guild`. - - This requires :attr:`Intents.bans` to be enabled. - - :param guild: The guild the user got unbanned from. - :type guild: :class:`Guild` - :param user: The user that got unbanned. - :type user: :class:`User` - -.. function:: on_invite_create(invite) - - Called when an :class:`Invite` is created. - You must have the :attr:`~Permissions.manage_channels` permission to receive this. - - .. versionadded:: 1.3 - - .. note:: - - There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` - attributes will be of :class:`Object` rather than the respective models. - - This requires :attr:`Intents.invites` to be enabled. - - :param invite: The invite that was created. - :type invite: :class:`Invite` - -.. function:: on_invite_delete(invite) - - Called when an :class:`Invite` is deleted. - You must have the :attr:`~Permissions.manage_channels` permission to receive this. - - .. versionadded:: 1.3 - - .. note:: - - There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` - attributes will be of :class:`Object` rather than the respective models. - - Outside of those two attributes, the only other attribute guaranteed to be - filled by the Discord gateway for this event is :attr:`Invite.code`. - - This requires :attr:`Intents.invites` to be enabled. - - :param invite: The invite that was deleted. - :type invite: :class:`Invite` - -.. function:: on_group_join(channel, user) - on_group_remove(channel, user) - - Called when someone joins or leaves a :class:`GroupChannel`. - - :param channel: The group that the user joined or left. - :type channel: :class:`GroupChannel` - :param user: The user that joined or left. - :type user: :class:`User` - -.. _discord-api-utils: - -Utility Functions ------------------ - -.. autofunction:: discord.utils.find - -.. autofunction:: discord.utils.get - -.. autofunction:: discord.utils.snowflake_time - -.. autofunction:: discord.utils.oauth_url - -.. autofunction:: discord.utils.remove_markdown - -.. autofunction:: discord.utils.escape_markdown - -.. autofunction:: discord.utils.escape_mentions - -.. autofunction:: discord.utils.resolve_invite - -.. autofunction:: discord.utils.resolve_template - -.. autofunction:: discord.utils.sleep_until - -.. autofunction:: discord.utils.utcnow - -.. autofunction:: discord.utils.format_dt - -.. autofunction:: discord.utils.as_chunks - -.. _discord-api-enums: - -Enumerations -------------- - -The API provides some enumerations for certain types of strings to avoid the API -from being stringly typed in case the strings change in the future. - -All enumerations are subclasses of an internal class which mimics the behaviour -of :class:`enum.Enum`. - -.. class:: ChannelType - - Specifies the type of channel. - - .. attribute:: text - - A text channel. - .. attribute:: voice - - A voice channel. - .. attribute:: private - - A private text channel. Also called a direct message. - .. attribute:: group - - A private group text channel. - .. attribute:: category - - A category channel. - .. attribute:: news - - A guild news channel. - - .. attribute:: store - - A guild store channel. - - .. attribute:: stage_voice - - A guild stage voice channel. - - .. versionadded:: 1.7 - - .. attribute:: news_thread - - A news thread - - .. versionadded:: 2.0 - - .. attribute:: public_thread - - A public thread - - .. versionadded:: 2.0 - - .. attribute:: private_thread - - A private thread - - .. versionadded:: 2.0 - -.. class:: MessageType - - Specifies the type of :class:`Message`. This is used to denote if a message - is to be interpreted as a system message or a regular message. - - .. container:: operations - - .. describe:: x == y - - Checks if two messages are equal. - .. describe:: x != y - - Checks if two messages are not equal. - - .. attribute:: default - - The default message type. This is the same as regular messages. - .. attribute:: recipient_add - - The system message when a user is added to a group private - message or a thread. - .. attribute:: recipient_remove - - The system message when a user is removed from a group private - message or a thread. - .. attribute:: call - - The system message denoting call state, e.g. missed call, started call, - etc. - .. attribute:: channel_name_change - - The system message denoting that a channel's name has been changed. - .. attribute:: channel_icon_change - - The system message denoting that a channel's icon has been changed. - .. attribute:: pins_add - - The system message denoting that a pinned message has been added to a channel. - .. attribute:: new_member - - The system message denoting that a new member has joined a Guild. - - .. attribute:: premium_guild_subscription - - The system message denoting that a member has "nitro boosted" a guild. - .. attribute:: premium_guild_tier_1 - - The system message denoting that a member has "nitro boosted" a guild - and it achieved level 1. - .. attribute:: premium_guild_tier_2 - - The system message denoting that a member has "nitro boosted" a guild - and it achieved level 2. - .. attribute:: premium_guild_tier_3 - - The system message denoting that a member has "nitro boosted" a guild - and it achieved level 3. - .. attribute:: channel_follow_add - - The system message denoting that an announcement channel has been followed. - - .. versionadded:: 1.3 - .. attribute:: guild_stream - - The system message denoting that a member is streaming in the guild. - - .. versionadded:: 1.7 - .. attribute:: guild_discovery_disqualified - - The system message denoting that the guild is no longer eligible for Server - Discovery. - - .. versionadded:: 1.7 - .. attribute:: guild_discovery_requalified - - The system message denoting that the guild has become eligible again for Server - Discovery. - - .. versionadded:: 1.7 - .. attribute:: guild_discovery_grace_period_initial_warning - - The system message denoting that the guild has failed to meet the Server - Discovery requirements for one week. - - .. versionadded:: 1.7 - .. attribute:: guild_discovery_grace_period_final_warning - - The system message denoting that the guild has failed to meet the Server - Discovery requirements for 3 weeks in a row. - - .. versionadded:: 1.7 - .. attribute:: thread_created - - The system message denoting that a thread has been created. This is only - sent if the thread has been created from an older message. The period of time - required for a message to be considered old cannot be relied upon and is up to - Discord. - - .. versionadded:: 2.0 - .. attribute:: reply - - The system message denoting that the author is replying to a message. - - .. versionadded:: 2.0 - .. attribute:: application_command - - The system message denoting that an application (or "slash") command was executed. - - .. versionadded:: 2.0 - .. attribute:: guild_invite_reminder - - The system message sent as a reminder to invite people to the guild. - - .. versionadded:: 2.0 - .. attribute:: thread_starter_message - - The system message denoting the message in the thread that is the one that started the - thread's conversation topic. - - .. versionadded:: 2.0 - -.. class:: UserFlags - - Represents Discord User flags. - - .. attribute:: staff - - The user is a Discord Employee. - .. attribute:: partner - - The user is a Discord Partner. - .. attribute:: hypesquad - - The user is a HypeSquad Events member. - .. attribute:: bug_hunter - - The user is a Bug Hunter. - .. attribute:: mfa_sms - - The user has SMS recovery for Multi Factor Authentication enabled. - .. attribute:: premium_promo_dismissed - - The user has dismissed the Discord Nitro promotion. - .. attribute:: hypesquad_bravery - - The user is a HypeSquad Bravery member. - .. attribute:: hypesquad_brilliance - - The user is a HypeSquad Brilliance member. - .. attribute:: hypesquad_balance - - The user is a HypeSquad Balance member. - .. attribute:: early_supporter - - The user is an Early Supporter. - .. attribute:: team_user - - The user is a Team User. - .. attribute:: system - - The user is a system user (i.e. represents Discord officially). - .. attribute:: has_unread_urgent_messages - - The user has an unread system message. - .. attribute:: bug_hunter_level_2 - - The user is a Bug Hunter Level 2. - .. attribute:: verified_bot - - The user is a Verified Bot. - .. attribute:: verified_bot_developer - - The user is an Early Verified Bot Developer. - .. attribute:: discord_certified_moderator - - The user is a Discord Certified Moderator. - -.. class:: ActivityType - - Specifies the type of :class:`Activity`. This is used to check how to - interpret the activity itself. - - .. attribute:: unknown - - An unknown activity type. This should generally not happen. - .. attribute:: playing - - A "Playing" activity type. - .. attribute:: streaming - - A "Streaming" activity type. - .. attribute:: listening - - A "Listening" activity type. - .. attribute:: watching - - A "Watching" activity type. - .. attribute:: custom - - A custom activity type. - .. attribute:: competing - - A competing activity type. - - .. versionadded:: 1.5 - -.. class:: InteractionType - - Specifies the type of :class:`Interaction`. - - .. versionadded:: 2.0 - - .. attribute:: ping - - Represents Discord pinging to see if the interaction response server is alive. - .. attribute:: application_command - - Represents a slash command interaction. - .. attribute:: component - - Represents a component based interaction, i.e. using the Discord Bot UI Kit. - -.. class:: InteractionResponseType - - Specifies the response type for the interaction. - - .. versionadded:: 2.0 - - .. attribute:: pong - - Pongs the interaction when given a ping. - - See also :meth:`InteractionResponse.pong` - .. attribute:: channel_message - - Respond to the interaction with a message. - - See also :meth:`InteractionResponse.send_message` - .. attribute:: deferred_channel_message - - Responds to the interaction with a message at a later time. - - See also :meth:`InteractionResponse.defer` - .. attribute:: deferred_message_update - - Acknowledges the component interaction with a promise that - the message will update later (though there is no need to actually update the message). - - See also :meth:`InteractionResponse.defer` - .. attribute:: message_update - - Responds to the interaction by editing the message. - - See also :meth:`InteractionResponse.edit_message` - -.. class:: ComponentType - - Represents the component type of a component. - - .. versionadded:: 2.0 - - .. attribute:: action_row - - Represents the group component which holds different components in a row. - .. attribute:: button - - Represents a button component. - .. attribute:: select - - Represents a select component. - - -.. class:: ButtonStyle - - Represents the style of the button component. - - .. versionadded:: 2.0 - - .. attribute:: primary - - Represents a blurple button for the primary action. - .. attribute:: secondary - - Represents a grey button for the secondary action. - .. attribute:: success - - Represents a green button for a successful action. - .. attribute:: danger - - Represents a red button for a dangerous action. - .. attribute:: link - - Represents a link button. - - .. attribute:: blurple - - An alias for :attr:`primary`. - .. attribute:: grey - - An alias for :attr:`secondary`. - .. attribute:: gray - - An alias for :attr:`secondary`. - .. attribute:: green - - An alias for :attr:`success`. - .. attribute:: red - - An alias for :attr:`danger`. - .. attribute:: url - - An alias for :attr:`link`. - -.. class:: VoiceRegion - - Specifies the region a voice server belongs to. - - .. attribute:: amsterdam - - The Amsterdam region. - .. attribute:: brazil - - The Brazil region. - .. attribute:: dubai - - The Dubai region. - - .. versionadded:: 1.3 - - .. attribute:: eu_central - - The EU Central region. - .. attribute:: eu_west - - The EU West region. - .. attribute:: europe - - The Europe region. - - .. versionadded:: 1.3 - - .. attribute:: frankfurt - - The Frankfurt region. - .. attribute:: hongkong - - The Hong Kong region. - .. attribute:: india - - The India region. - - .. versionadded:: 1.2 - - .. attribute:: japan - - The Japan region. - .. attribute:: london - - The London region. - .. attribute:: russia - - The Russia region. - .. attribute:: singapore - - The Singapore region. - .. attribute:: southafrica - - The South Africa region. - .. attribute:: south_korea - - The South Korea region. - .. attribute:: sydney - - The Sydney region. - .. attribute:: us_central - - The US Central region. - .. attribute:: us_east - - The US East region. - .. attribute:: us_south - - The US South region. - .. attribute:: us_west - - The US West region. - .. attribute:: vip_amsterdam - - The Amsterdam region for VIP guilds. - .. attribute:: vip_us_east - - The US East region for VIP guilds. - .. attribute:: vip_us_west - - The US West region for VIP guilds. - -.. class:: VerificationLevel - - Specifies a :class:`Guild`\'s verification level, which is the criteria in - which a member must meet before being able to send messages to the guild. - - .. container:: operations - - .. versionadded:: 2.0 - - .. describe:: x == y - - Checks if two verification levels are equal. - .. describe:: x != y - - Checks if two verification levels are not equal. - .. describe:: x > y - - Checks if a verification level is higher than another. - .. describe:: x < y - - Checks if a verification level is lower than another. - .. describe:: x >= y - - Checks if a verification level is higher or equal to another. - .. describe:: x <= y - - Checks if a verification level is lower or equal to another. - - .. attribute:: none - - No criteria set. - .. attribute:: low - - Member must have a verified email on their Discord account. - .. attribute:: medium - - Member must have a verified email and be registered on Discord for more - than five minutes. - .. attribute:: high - - Member must have a verified email, be registered on Discord for more - than five minutes, and be a member of the guild itself for more than - ten minutes. - .. attribute:: highest - - Member must have a verified phone on their Discord account. - -.. class:: NotificationLevel - - Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default. - - .. container:: operations - - .. versionadded:: 2.0 - - .. describe:: x == y - - Checks if two notification levels are equal. - .. describe:: x != y - - Checks if two notification levels are not equal. - .. describe:: x > y - - Checks if a notification level is higher than another. - .. describe:: x < y - - Checks if a notification level is lower than another. - .. describe:: x >= y - - Checks if a notification level is higher or equal to another. - .. describe:: x <= y - - Checks if a notification level is lower or equal to another. - - .. attribute:: all_messages - - Members receive notifications for every message regardless of them being mentioned. - .. attribute:: only_mentions - - Members receive notifications for messages they are mentioned in. - -.. class:: ContentFilter - - Specifies a :class:`Guild`\'s explicit content filter, which is the machine - learning algorithms that Discord uses to detect if an image contains - pornography or otherwise explicit content. - - .. container:: operations - - .. versionadded:: 2.0 - - .. describe:: x == y - - Checks if two content filter levels are equal. - .. describe:: x != y - - Checks if two content filter levels are not equal. - .. describe:: x > y - - Checks if a content filter level is higher than another. - .. describe:: x < y - - Checks if a content filter level is lower than another. - .. describe:: x >= y - - Checks if a content filter level is higher or equal to another. - .. describe:: x <= y - - Checks if a content filter level is lower or equal to another. - - .. attribute:: disabled - - The guild does not have the content filter enabled. - .. attribute:: no_role - - The guild has the content filter enabled for members without a role. - .. attribute:: all_members - - The guild has the content filter enabled for every member. - -.. class:: Status - - Specifies a :class:`Member` 's status. - - .. attribute:: online - - The member is online. - .. attribute:: offline - - The member is offline. - .. attribute:: idle - - The member is idle. - .. attribute:: dnd - - The member is "Do Not Disturb". - .. attribute:: do_not_disturb - - An alias for :attr:`dnd`. - .. attribute:: invisible - - The member is "invisible". In reality, this is only used in sending - a presence a la :meth:`Client.change_presence`. When you receive a - user's presence this will be :attr:`offline` instead. - - -.. class:: AuditLogAction - - Represents the type of action being done for a :class:`AuditLogEntry`\, - which is retrievable via :meth:`Guild.audit_logs`. - - .. attribute:: guild_update - - The guild has updated. Things that trigger this include: - - - Changing the guild vanity URL - - Changing the guild invite splash - - Changing the guild AFK channel or timeout - - Changing the guild voice server region - - Changing the guild icon, banner, or discovery splash - - Changing the guild moderation settings - - Changing things related to the guild widget - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Guild`. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.afk_channel` - - :attr:`~AuditLogDiff.system_channel` - - :attr:`~AuditLogDiff.afk_timeout` - - :attr:`~AuditLogDiff.default_message_notifications` - - :attr:`~AuditLogDiff.explicit_content_filter` - - :attr:`~AuditLogDiff.mfa_level` - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.owner` - - :attr:`~AuditLogDiff.splash` - - :attr:`~AuditLogDiff.discovery_splash` - - :attr:`~AuditLogDiff.icon` - - :attr:`~AuditLogDiff.banner` - - :attr:`~AuditLogDiff.vanity_url_code` - - .. attribute:: channel_create - - A new channel was created. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - either a :class:`abc.GuildChannel` or :class:`Object` with an ID. - - A more filled out object in the :class:`Object` case can be found - by using :attr:`~AuditLogEntry.after`. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.type` - - :attr:`~AuditLogDiff.overwrites` - - .. attribute:: channel_update - - A channel was updated. Things that trigger this include: - - - The channel name or topic was changed - - The channel bitrate was changed - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`abc.GuildChannel` or :class:`Object` with an ID. - - A more filled out object in the :class:`Object` case can be found - by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.type` - - :attr:`~AuditLogDiff.position` - - :attr:`~AuditLogDiff.overwrites` - - :attr:`~AuditLogDiff.topic` - - :attr:`~AuditLogDiff.bitrate` - - :attr:`~AuditLogDiff.rtc_region` - - :attr:`~AuditLogDiff.video_quality_mode` - - :attr:`~AuditLogDiff.default_auto_archive_duration` - - .. attribute:: channel_delete - - A channel was deleted. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - an :class:`Object` with an ID. - - A more filled out object can be found by using the - :attr:`~AuditLogEntry.before` object. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.type` - - :attr:`~AuditLogDiff.overwrites` - - .. attribute:: overwrite_create - - A channel permission overwrite was created. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`abc.GuildChannel` or :class:`Object` with an ID. - - When this is the action, the type of :attr:`~AuditLogEntry.extra` is - either a :class:`Role` or :class:`Member`. If the object is not found - then it is a :class:`Object` with an ID being filled, a name, and a - ``type`` attribute set to either ``'role'`` or ``'member'`` to help - dictate what type of ID it is. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.deny` - - :attr:`~AuditLogDiff.allow` - - :attr:`~AuditLogDiff.id` - - :attr:`~AuditLogDiff.type` - - .. attribute:: overwrite_update - - A channel permission overwrite was changed, this is typically - when the permission values change. - - See :attr:`overwrite_create` for more information on how the - :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields - are set. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.deny` - - :attr:`~AuditLogDiff.allow` - - :attr:`~AuditLogDiff.id` - - :attr:`~AuditLogDiff.type` - - .. attribute:: overwrite_delete - - A channel permission overwrite was deleted. - - See :attr:`overwrite_create` for more information on how the - :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields - are set. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.deny` - - :attr:`~AuditLogDiff.allow` - - :attr:`~AuditLogDiff.id` - - :attr:`~AuditLogDiff.type` - - .. attribute:: kick - - A member was kicked. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`User` who got kicked. - - When this is the action, :attr:`~AuditLogEntry.changes` is empty. - - .. attribute:: member_prune - - A member prune was triggered. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - set to ``None``. - - When this is the action, the type of :attr:`~AuditLogEntry.extra` is - set to an unspecified proxy object with two attributes: - - - ``delete_members_days``: An integer specifying how far the prune was. - - ``members_removed``: An integer specifying how many members were removed. - - When this is the action, :attr:`~AuditLogEntry.changes` is empty. - - .. attribute:: ban - - A member was banned. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`User` who got banned. - - When this is the action, :attr:`~AuditLogEntry.changes` is empty. - - .. attribute:: unban - - A member was unbanned. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`User` who got unbanned. - - When this is the action, :attr:`~AuditLogEntry.changes` is empty. - - .. attribute:: member_update - - A member has updated. This triggers in the following situations: - - - A nickname was changed - - They were server muted or deafened (or it was undo'd) - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Member` or :class:`User` who got updated. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.nick` - - :attr:`~AuditLogDiff.mute` - - :attr:`~AuditLogDiff.deaf` - - .. attribute:: member_role_update - - A member's role has been updated. This triggers when a member - either gains a role or loses a role. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Member` or :class:`User` who got the role. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.roles` - - .. attribute:: member_move - - A member's voice channel has been updated. This triggers when a - member is moved to a different voice channel. - - When this is the action, the type of :attr:`~AuditLogEntry.extra` is - set to an unspecified proxy object with two attributes: - - - ``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved. - - ``count``: An integer specifying how many members were moved. - - .. versionadded:: 1.3 - - .. attribute:: member_disconnect - - A member's voice state has changed. This triggers when a - member is force disconnected from voice. - - When this is the action, the type of :attr:`~AuditLogEntry.extra` is - set to an unspecified proxy object with one attribute: - - - ``count``: An integer specifying how many members were disconnected. - - .. versionadded:: 1.3 - - .. attribute:: bot_add - - A bot was added to the guild. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Member` or :class:`User` which was added to the guild. - - .. versionadded:: 1.3 - - .. attribute:: role_create - - A new role was created. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Role` or a :class:`Object` with the ID. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.colour` - - :attr:`~AuditLogDiff.mentionable` - - :attr:`~AuditLogDiff.hoist` - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.permissions` - - .. attribute:: role_update - - A role was updated. This triggers in the following situations: - - - The name has changed - - The permissions have changed - - The colour has changed - - Its hoist/mentionable state has changed - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Role` or a :class:`Object` with the ID. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.colour` - - :attr:`~AuditLogDiff.mentionable` - - :attr:`~AuditLogDiff.hoist` - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.permissions` - - .. attribute:: role_delete - - A role was deleted. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Role` or a :class:`Object` with the ID. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.colour` - - :attr:`~AuditLogDiff.mentionable` - - :attr:`~AuditLogDiff.hoist` - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.permissions` - - .. attribute:: invite_create - - An invite was created. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Invite` that was created. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.max_age` - - :attr:`~AuditLogDiff.code` - - :attr:`~AuditLogDiff.temporary` - - :attr:`~AuditLogDiff.inviter` - - :attr:`~AuditLogDiff.channel` - - :attr:`~AuditLogDiff.uses` - - :attr:`~AuditLogDiff.max_uses` - - .. attribute:: invite_update - - An invite was updated. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Invite` that was updated. - - .. attribute:: invite_delete - - An invite was deleted. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Invite` that was deleted. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.max_age` - - :attr:`~AuditLogDiff.code` - - :attr:`~AuditLogDiff.temporary` - - :attr:`~AuditLogDiff.inviter` - - :attr:`~AuditLogDiff.channel` - - :attr:`~AuditLogDiff.uses` - - :attr:`~AuditLogDiff.max_uses` - - .. attribute:: webhook_create - - A webhook was created. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Object` with the webhook ID. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.channel` - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.type` (always set to ``1`` if so) - - .. attribute:: webhook_update - - A webhook was updated. This trigger in the following situations: - - - The webhook name changed - - The webhook channel changed - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Object` with the webhook ID. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.channel` - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.avatar` - - .. attribute:: webhook_delete - - A webhook was deleted. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Object` with the webhook ID. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.channel` - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.type` (always set to ``1`` if so) - - .. attribute:: emoji_create - - An emoji was created. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Emoji` or :class:`Object` with the emoji ID. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.name` - - .. attribute:: emoji_update - - An emoji was updated. This triggers when the name has changed. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Emoji` or :class:`Object` with the emoji ID. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.name` - - .. attribute:: emoji_delete - - An emoji was deleted. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Object` with the emoji ID. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.name` - - .. attribute:: message_delete - - A message was deleted by a moderator. Note that this - only triggers if the message was deleted by someone other than the author. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Member` or :class:`User` who had their message deleted. - - When this is the action, the type of :attr:`~AuditLogEntry.extra` is - set to an unspecified proxy object with two attributes: - - - ``count``: An integer specifying how many messages were deleted. - - ``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted. - - .. attribute:: message_bulk_delete - - Messages were bulk deleted by a moderator. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged. - - When this is the action, the type of :attr:`~AuditLogEntry.extra` is - set to an unspecified proxy object with one attribute: - - - ``count``: An integer specifying how many messages were deleted. - - .. versionadded:: 1.3 - - .. attribute:: message_pin - - A message was pinned in a channel. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Member` or :class:`User` who had their message pinned. - - When this is the action, the type of :attr:`~AuditLogEntry.extra` is - set to an unspecified proxy object with two attributes: - - - ``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned. - - ``message_id``: the ID of the message which was pinned. - - .. versionadded:: 1.3 - - .. attribute:: message_unpin - - A message was unpinned in a channel. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Member` or :class:`User` who had their message unpinned. - - When this is the action, the type of :attr:`~AuditLogEntry.extra` is - set to an unspecified proxy object with two attributes: - - - ``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned. - - ``message_id``: the ID of the message which was unpinned. - - .. versionadded:: 1.3 - - .. attribute:: integration_create - - A guild integration was created. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Object` with the integration ID of the integration which was created. - - .. versionadded:: 1.3 - - .. attribute:: integration_update - - A guild integration was updated. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Object` with the integration ID of the integration which was updated. - - .. versionadded:: 1.3 - - .. attribute:: integration_delete - - A guild integration was deleted. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Object` with the integration ID of the integration which was deleted. - - .. versionadded:: 1.3 - - .. attribute:: stage_instance_create - - A stage instance was started. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`StageInstance` or :class:`Object` with the ID of the stage - instance which was created. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.topic` - - :attr:`~AuditLogDiff.privacy_level` - - .. versionadded:: 2.0 - - .. attribute:: stage_instance_update - - A stage instance was updated. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`StageInstance` or :class:`Object` with the ID of the stage - instance which was updated. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.topic` - - :attr:`~AuditLogDiff.privacy_level` - - .. versionadded:: 2.0 - - .. attribute:: stage_instance_delete - - A stage instance was ended. - - .. versionadded:: 2.0 - - .. attribute:: sticker_create - - A sticker was created. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`GuildSticker` or :class:`Object` with the ID of the sticker - which was updated. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.emoji` - - :attr:`~AuditLogDiff.type` - - :attr:`~AuditLogDiff.format_type` - - :attr:`~AuditLogDiff.description` - - :attr:`~AuditLogDiff.available` - - .. versionadded:: 2.0 - - .. attribute:: sticker_update - - A sticker was updated. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`GuildSticker` or :class:`Object` with the ID of the sticker - which was updated. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.emoji` - - :attr:`~AuditLogDiff.type` - - :attr:`~AuditLogDiff.format_type` - - :attr:`~AuditLogDiff.description` - - :attr:`~AuditLogDiff.available` - - .. versionadded:: 2.0 - - .. attribute:: sticker_delete - - A sticker was deleted. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`GuildSticker` or :class:`Object` with the ID of the sticker - which was updated. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.emoji` - - :attr:`~AuditLogDiff.type` - - :attr:`~AuditLogDiff.format_type` - - :attr:`~AuditLogDiff.description` - - :attr:`~AuditLogDiff.available` - - .. versionadded:: 2.0 - - .. attribute:: thread_create - - A thread was created. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Thread` or :class:`Object` with the ID of the thread which - was created. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.archived` - - :attr:`~AuditLogDiff.locked` - - :attr:`~AuditLogDiff.auto_archive_duration` - - .. versionadded:: 2.0 - - .. attribute:: thread_update - - A thread was updated. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Thread` or :class:`Object` with the ID of the thread which - was updated. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.archived` - - :attr:`~AuditLogDiff.locked` - - :attr:`~AuditLogDiff.auto_archive_duration` - - .. versionadded:: 2.0 - - .. attribute:: thread_delete - - A thread was deleted. - - When this is the action, the type of :attr:`~AuditLogEntry.target` is - the :class:`Thread` or :class:`Object` with the ID of the thread which - was deleted. - - Possible attributes for :class:`AuditLogDiff`: - - - :attr:`~AuditLogDiff.name` - - :attr:`~AuditLogDiff.archived` - - :attr:`~AuditLogDiff.locked` - - :attr:`~AuditLogDiff.auto_archive_duration` - - .. versionadded:: 2.0 - -.. class:: AuditLogActionCategory - - Represents the category that the :class:`AuditLogAction` belongs to. - - This can be retrieved via :attr:`AuditLogEntry.category`. - - .. attribute:: create - - The action is the creation of something. - - .. attribute:: delete - - The action is the deletion of something. - - .. attribute:: update - - The action is the update of something. - -.. class:: TeamMembershipState - - Represents the membership state of a team member retrieved through :func:`Client.application_info`. - - .. versionadded:: 1.3 - - .. attribute:: invited - - Represents an invited member. - - .. attribute:: accepted - - Represents a member currently in the team. - -.. class:: WebhookType - - Represents the type of webhook that can be received. - - .. versionadded:: 1.3 - - .. attribute:: incoming - - Represents a webhook that can post messages to channels with a token. - - .. attribute:: channel_follower - - Represents a webhook that is internally managed by Discord, used for following channels. - - .. attribute:: application - - Represents a webhook that is used for interactions or applications. - - .. versionadded:: 2.0 - -.. class:: ExpireBehaviour - - Represents the behaviour the :class:`Integration` should perform - when a user's subscription has finished. - - There is an alias for this called ``ExpireBehavior``. - - .. versionadded:: 1.4 - - .. attribute:: remove_role - - This will remove the :attr:`StreamIntegration.role` from the user - when their subscription is finished. - - .. attribute:: kick - - This will kick the user when their subscription is finished. - -.. class:: DefaultAvatar - - Represents the default avatar of a Discord :class:`User` - - .. attribute:: blurple - - Represents the default avatar with the color blurple. - See also :attr:`Colour.blurple` - .. attribute:: grey - - Represents the default avatar with the color grey. - See also :attr:`Colour.greyple` - .. attribute:: gray - - An alias for :attr:`grey`. - .. attribute:: green - - Represents the default avatar with the color green. - See also :attr:`Colour.green` - .. attribute:: orange - - Represents the default avatar with the color orange. - See also :attr:`Colour.orange` - .. attribute:: red - - Represents the default avatar with the color red. - See also :attr:`Colour.red` - -.. class:: StickerType - - Represents the type of sticker. - - .. versionadded:: 2.0 - - .. attribute:: standard - - Represents a standard sticker that all Nitro users can use. - - .. attribute:: guild - - Represents a custom sticker created in a guild. - -.. class:: StickerFormatType - - Represents the type of sticker images. - - .. versionadded:: 1.6 - - .. attribute:: png - - Represents a sticker with a png image. - - .. attribute:: apng - - Represents a sticker with an apng image. - - .. attribute:: lottie - - Represents a sticker with a lottie image. - -.. class:: InviteTarget - - Represents the invite type for voice channel invites. - - .. versionadded:: 2.0 - - .. attribute:: unknown - - The invite doesn't target anyone or anything. - - .. attribute:: stream - - A stream invite that targets a user. - - .. attribute:: embedded_application - - A stream invite that targets an embedded application. - -.. class:: VideoQualityMode - - Represents the camera video quality mode for voice channel participants. - - .. versionadded:: 2.0 - - .. attribute:: auto - - Represents auto camera video quality. - - .. attribute:: full - - Represents full camera video quality. - -.. class:: StagePrivacyLevel - - Represents a stage instance's privacy level. - - .. versionadded:: 2.0 - - .. attribute:: public - - The stage instance can be joined by external users. - - .. attribute:: closed - - The stage instance can only be joined by members of the guild. - - .. attribute:: guild_only - - Alias for :attr:`.closed` - -.. class:: NSFWLevel - - Represents the NSFW level of a guild. - - .. versionadded:: 2.0 - - .. container:: operations - - .. describe:: x == y - - Checks if two NSFW levels are equal. - .. describe:: x != y - - Checks if two NSFW levels are not equal. - .. describe:: x > y - - Checks if a NSFW level is higher than another. - .. describe:: x < y - - Checks if a NSFW level is lower than another. - .. describe:: x >= y - - Checks if a NSFW level is higher or equal to another. - .. describe:: x <= y - - Checks if a NSFW level is lower or equal to another. - - .. attribute:: default - - The guild has not been categorised yet. - - .. attribute:: explicit - - The guild contains NSFW content. - - .. attribute:: safe - - The guild does not contain any NSFW content. - - .. attribute:: age_restricted - - The guild may contain NSFW content. - -Async Iterator ----------------- - -Some API functions return an "async iterator". An async iterator is something that is -capable of being used in an :ref:`async for statement `. - -These async iterators can be used as follows: :: - - async for elem in channel.history(): - # do stuff with elem here - -Certain utilities make working with async iterators easier, detailed below. - -.. class:: AsyncIterator - - Represents the "AsyncIterator" concept. Note that no such class exists, - it is purely abstract. - - .. container:: operations - - .. describe:: async for x in y - - Iterates over the contents of the async iterator. - - - .. method:: next() - :async: - - |coro| - - Advances the iterator by one, if possible. If no more items are found - then this raises :exc:`NoMoreItems`. - - .. method:: get(**attrs) - :async: - - |coro| - - Similar to :func:`utils.get` except run over the async iterator. - - Getting the last message by a user named 'Dave' or ``None``: :: - - msg = await channel.history().get(author__name='Dave') - - .. method:: find(predicate) - :async: - - |coro| - - Similar to :func:`utils.find` except run over the async iterator. - - Unlike :func:`utils.find`\, the predicate provided can be a - |coroutine_link|_. - - Getting the last audit log with a reason or ``None``: :: - - def predicate(event): - return event.reason is not None - - event = await guild.audit_logs().find(predicate) - - :param predicate: The predicate to use. Could be a |coroutine_link|_. - :return: The first element that returns ``True`` for the predicate or ``None``. - - .. method:: flatten() - :async: - - |coro| - - Flattens the async iterator into a :class:`list` with all the elements. - - :return: A list of every element in the async iterator. - :rtype: list - - .. method:: chunk(max_size) - - Collects items into chunks of up to a given maximum size. - Another :class:`AsyncIterator` is returned which collects items into - :class:`list`\s of a given size. The maximum chunk size must be a positive integer. - - .. versionadded:: 1.6 - - Collecting groups of users: :: - - async for leader, *users in reaction.users().chunk(3): - ... - - .. warning:: - - The last chunk collected may not be as large as ``max_size``. - - :param max_size: The size of individual chunks. - :rtype: :class:`AsyncIterator` - - .. method:: map(func) - - This is similar to the built-in :func:`map ` function. Another - :class:`AsyncIterator` is returned that executes the function on - every element it is iterating over. This function can either be a - regular function or a |coroutine_link|_. - - Creating a content iterator: :: - - def transform(message): - return message.content - - async for content in channel.history().map(transform): - message_length = len(content) - - :param func: The function to call on every element. Could be a |coroutine_link|_. - :rtype: :class:`AsyncIterator` - - .. method:: filter(predicate) - - This is similar to the built-in :func:`filter ` function. Another - :class:`AsyncIterator` is returned that filters over the original - async iterator. This predicate can be a regular function or a |coroutine_link|_. - - Getting messages by non-bot accounts: :: - - def predicate(message): - return not message.author.bot - - async for elem in channel.history().filter(predicate): - ... - - :param predicate: The predicate to call on every element. Could be a |coroutine_link|_. - :rtype: :class:`AsyncIterator` - -.. _discord-api-audit-logs: - -Audit Log Data ----------------- - -Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery -involved. The library attempts to make it easy to use and friendly. In order to accomplish -this goal, it must make use of a couple of data classes that aid in this goal. - -AuditLogEntry -~~~~~~~~~~~~~~~ - -.. attributetable:: AuditLogEntry - -.. autoclass:: AuditLogEntry - :members: - -AuditLogChanges -~~~~~~~~~~~~~~~~~ - -.. attributetable:: AuditLogChanges - -.. class:: AuditLogChanges - - An audit log change set. - - .. attribute:: before - - The old value. The attribute has the type of :class:`AuditLogDiff`. - - Depending on the :class:`AuditLogActionCategory` retrieved by - :attr:`~AuditLogEntry.category`\, the data retrieved by this - attribute differs: - - +----------------------------------------+---------------------------------------------------+ - | Category | Description | - +----------------------------------------+---------------------------------------------------+ - | :attr:`~AuditLogActionCategory.create` | All attributes are set to ``None``. | - +----------------------------------------+---------------------------------------------------+ - | :attr:`~AuditLogActionCategory.delete` | All attributes are set the value before deletion. | - +----------------------------------------+---------------------------------------------------+ - | :attr:`~AuditLogActionCategory.update` | All attributes are set the value before updating. | - +----------------------------------------+---------------------------------------------------+ - | ``None`` | No attributes are set. | - +----------------------------------------+---------------------------------------------------+ - - .. attribute:: after - - The new value. The attribute has the type of :class:`AuditLogDiff`. - - Depending on the :class:`AuditLogActionCategory` retrieved by - :attr:`~AuditLogEntry.category`\, the data retrieved by this - attribute differs: - - +----------------------------------------+--------------------------------------------------+ - | Category | Description | - +----------------------------------------+--------------------------------------------------+ - | :attr:`~AuditLogActionCategory.create` | All attributes are set to the created value | - +----------------------------------------+--------------------------------------------------+ - | :attr:`~AuditLogActionCategory.delete` | All attributes are set to ``None`` | - +----------------------------------------+--------------------------------------------------+ - | :attr:`~AuditLogActionCategory.update` | All attributes are set the value after updating. | - +----------------------------------------+--------------------------------------------------+ - | ``None`` | No attributes are set. | - +----------------------------------------+--------------------------------------------------+ - -AuditLogDiff -~~~~~~~~~~~~~ - -.. attributetable:: AuditLogDiff - -.. class:: AuditLogDiff - - Represents an audit log "change" object. A change object has dynamic - attributes that depend on the type of action being done. Certain actions - map to certain attributes being set. - - Note that accessing an attribute that does not match the specified action - will lead to an attribute error. - - To get a list of attributes that have been set, you can iterate over - them. To see a list of all possible attributes that could be set based - on the action being done, check the documentation for :class:`AuditLogAction`, - otherwise check the documentation below for all attributes that are possible. - - .. container:: operations - - .. describe:: iter(diff) - - Returns an iterator over (attribute, value) tuple of this diff. - - .. attribute:: name - - A name of something. - - :type: :class:`str` - - .. attribute:: icon - - A guild's icon. See also :attr:`Guild.icon`. - - :type: :class:`Asset` - - .. attribute:: splash - - The guild's invite splash. See also :attr:`Guild.splash`. - - :type: :class:`Asset` - - .. attribute:: discovery_splash - - The guild's discovery splash. See also :attr:`Guild.discovery_splash`. - - :type: :class:`Asset` - - .. attribute:: banner - - The guild's banner. See also :attr:`Guild.banner`. - - :type: :class:`Asset` - - .. attribute:: owner - - The guild's owner. See also :attr:`Guild.owner` - - :type: Union[:class:`Member`, :class:`User`] - - .. attribute:: region - - The guild's voice region. See also :attr:`Guild.region`. - - :type: :class:`VoiceRegion` - - .. attribute:: afk_channel - - The guild's AFK channel. - - If this could not be found, then it falls back to a :class:`Object` - with the ID being set. - - See :attr:`Guild.afk_channel`. - - :type: Union[:class:`VoiceChannel`, :class:`Object`] - - .. attribute:: system_channel - - The guild's system channel. - - If this could not be found, then it falls back to a :class:`Object` - with the ID being set. - - See :attr:`Guild.system_channel`. - - :type: Union[:class:`TextChannel`, :class:`Object`] - - - .. attribute:: rules_channel - - The guild's rules channel. - - If this could not be found then it falls back to a :class:`Object` - with the ID being set. - - See :attr:`Guild.rules_channel`. - - :type: Union[:class:`TextChannel`, :class:`Object`] - - - .. attribute:: public_updates_channel - - The guild's public updates channel. - - If this could not be found then it falls back to a :class:`Object` - with the ID being set. - - See :attr:`Guild.public_updates_channel`. - - :type: Union[:class:`TextChannel`, :class:`Object`] - - .. attribute:: afk_timeout - - The guild's AFK timeout. See :attr:`Guild.afk_timeout`. - - :type: :class:`int` - - .. attribute:: mfa_level - - The guild's MFA level. See :attr:`Guild.mfa_level`. - - :type: :class:`int` - - .. attribute:: widget_enabled - - The guild's widget has been enabled or disabled. - - :type: :class:`bool` - - .. attribute:: widget_channel - - The widget's channel. - - If this could not be found then it falls back to a :class:`Object` - with the ID being set. - - :type: Union[:class:`TextChannel`, :class:`Object`] - - .. attribute:: verification_level - - The guild's verification level. - - See also :attr:`Guild.verification_level`. - - :type: :class:`VerificationLevel` - - .. attribute:: default_notifications - - The guild's default notification level. - - See also :attr:`Guild.default_notifications`. - - :type: :class:`NotificationLevel` - - .. attribute:: explicit_content_filter - - The guild's content filter. - - See also :attr:`Guild.explicit_content_filter`. - - :type: :class:`ContentFilter` - - .. attribute:: default_message_notifications - - The guild's default message notification setting. - - :type: :class:`int` - - .. attribute:: vanity_url_code - - The guild's vanity URL. - - See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`. - - :type: :class:`str` - - .. attribute:: position - - The position of a :class:`Role` or :class:`abc.GuildChannel`. - - :type: :class:`int` - - .. attribute:: type - - The type of channel or sticker. - - :type: Union[:class:`ChannelType`, :class:`StickerType`] - - .. attribute:: topic - - The topic of a :class:`TextChannel` or :class:`StageChannel`. - - See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`. - - :type: :class:`str` - - .. attribute:: bitrate - - The bitrate of a :class:`VoiceChannel`. - - See also :attr:`VoiceChannel.bitrate`. - - :type: :class:`int` - - .. attribute:: overwrites - - A list of permission overwrite tuples that represents a target and a - :class:`PermissionOverwrite` for said target. - - The first element is the object being targeted, which can either - be a :class:`Member` or :class:`User` or :class:`Role`. If this object - is not found then it is a :class:`Object` with an ID being filled and - a ``type`` attribute set to either ``'role'`` or ``'member'`` to help - decide what type of ID it is. - - :type: List[Tuple[target, :class:`PermissionOverwrite`]] - - .. attribute:: privacy_level - - The privacy level of the stage instance. - - :type: :class:`StagePrivacyLevel` - - .. attribute:: roles - - A list of roles being added or removed from a member. - - If a role is not found then it is a :class:`Object` with the ID and name being - filled in. - - :type: List[Union[:class:`Role`, :class:`Object`]] - - .. attribute:: nick - - The nickname of a member. - - See also :attr:`Member.nick` - - :type: Optional[:class:`str`] - - .. attribute:: deaf - - Whether the member is being server deafened. - - See also :attr:`VoiceState.deaf`. - - :type: :class:`bool` - - .. attribute:: mute - - Whether the member is being server muted. - - See also :attr:`VoiceState.mute`. - - :type: :class:`bool` - - .. attribute:: permissions - - The permissions of a role. - - See also :attr:`Role.permissions`. - - :type: :class:`Permissions` - - .. attribute:: colour - color - - The colour of a role. - - See also :attr:`Role.colour` - - :type: :class:`Colour` - - .. attribute:: hoist - - Whether the role is being hoisted or not. - - See also :attr:`Role.hoist` - - :type: :class:`bool` - - .. attribute:: mentionable - - Whether the role is mentionable or not. - - See also :attr:`Role.mentionable` - - :type: :class:`bool` - - .. attribute:: code - - The invite's code. - - See also :attr:`Invite.code` - - :type: :class:`str` - - .. attribute:: channel - - A guild channel. - - If the channel is not found then it is a :class:`Object` with the ID - being set. In some cases the channel name is also set. - - :type: Union[:class:`abc.GuildChannel`, :class:`Object`] - - .. attribute:: inviter - - The user who created the invite. - - See also :attr:`Invite.inviter`. - - :type: Optional[:class:`User`] - - .. attribute:: max_uses - - The invite's max uses. - - See also :attr:`Invite.max_uses`. - - :type: :class:`int` - - .. attribute:: uses - - The invite's current uses. - - See also :attr:`Invite.uses`. - - :type: :class:`int` - - .. attribute:: max_age - - The invite's max age in seconds. - - See also :attr:`Invite.max_age`. - - :type: :class:`int` - - .. attribute:: temporary - - If the invite is a temporary invite. - - See also :attr:`Invite.temporary`. - - :type: :class:`bool` - - .. attribute:: allow - deny - - The permissions being allowed or denied. - - :type: :class:`Permissions` - - .. attribute:: id - - The ID of the object being changed. - - :type: :class:`int` - - .. attribute:: avatar - - The avatar of a member. - - See also :attr:`User.avatar`. - - :type: :class:`Asset` - - .. attribute:: slowmode_delay - - The number of seconds members have to wait before - sending another message in the channel. - - See also :attr:`TextChannel.slowmode_delay`. - - :type: :class:`int` - - .. attribute:: rtc_region - - The region for the voice channel’s voice communication. - A value of ``None`` indicates automatic voice region detection. - - See also :attr:`VoiceChannel.rtc_region`. - - :type: :class:`VoiceRegion` - - .. attribute:: video_quality_mode - - The camera video quality for the voice channel's participants. - - See also :attr:`VoiceChannel.video_quality_mode`. - - :type: :class:`VideoQualityMode` - - .. attribute:: format_type - - The format type of a sticker being changed. - - See also :attr:`GuildSticker.format` - - :type: :class:`StickerFormatType` - - .. attribute:: emoji - - The name of the emoji that represents a sticker being changed. - - See also :attr:`GuildSticker.emoji` - - :type: :class:`str` - - .. attribute:: description - - The description of a sticker being changed. - - See also :attr:`GuildSticker.description` - - :type: :class:`str` - - .. attribute:: available - - The availability of a sticker being changed. - - See also :attr:`GuildSticker.available` - - :type: :class:`bool` - - .. attribute:: archived - - The thread is now archived. - - :type: :class:`bool` - - .. attribute:: locked - - The thread is being locked or unlocked. - - :type: :class:`bool` - - .. attribute:: auto_archive_duration - - The thread's auto archive duration being changed. - - See also :attr:`Thread.auto_archive_duration` - - :type: :class:`int` - - .. attribute:: default_auto_archive_duration - - The default auto archive duration for newly created threads being changed. - - :type: :class:`int` - -.. this is currently missing the following keys: reason and application_id - I'm not sure how to about porting these - -Webhook Support ------------------- - -discord.py offers support for creating, editing, and executing webhooks through the :class:`Webhook` class. - -Webhook -~~~~~~~~~ - -.. attributetable:: Webhook - -.. autoclass:: Webhook() - :members: - :inherited-members: - -WebhookMessage -~~~~~~~~~~~~~~~~ - -.. attributetable:: WebhookMessage - -.. autoclass:: WebhookMessage() - :members: - -SyncWebhook -~~~~~~~~~~~~ - -.. attributetable:: SyncWebhook - -.. autoclass:: SyncWebhook() - :members: - :inherited-members: - -SyncWebhookMessage -~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: SyncWebhookMessage - -.. autoclass:: SyncWebhookMessage() - :members: - -.. _discord_api_abcs: - -Abstract Base Classes ------------------------ - -An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit -to get their behaviour. **Abstract base classes should not be instantiated**. -They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\. - -This library has a module related to abstract base classes, in which all the ABCs are subclasses of -:class:`typing.Protocol`. - -Snowflake -~~~~~~~~~~ - -.. attributetable:: discord.abc.Snowflake - -.. autoclass:: discord.abc.Snowflake() - :members: - -User -~~~~~ - -.. attributetable:: discord.abc.User - -.. autoclass:: discord.abc.User() - :members: - -PrivateChannel -~~~~~~~~~~~~~~~ - -.. attributetable:: discord.abc.PrivateChannel - -.. autoclass:: discord.abc.PrivateChannel() - :members: - -GuildChannel -~~~~~~~~~~~~~ - -.. attributetable:: discord.abc.GuildChannel - -.. autoclass:: discord.abc.GuildChannel() - :members: - -Messageable -~~~~~~~~~~~~ - -.. attributetable:: discord.abc.Messageable - -.. autoclass:: discord.abc.Messageable() - :members: - :exclude-members: history, typing - - .. automethod:: discord.abc.Messageable.history - :async-for: - - .. automethod:: discord.abc.Messageable.typing - :async-with: - -Connectable -~~~~~~~~~~~~ - -.. attributetable:: discord.abc.Connectable - -.. autoclass:: discord.abc.Connectable() - -.. _discord_api_models: - -Discord Models ---------------- - -Models are classes that are received from Discord and are not meant to be created by -the user of the library. - -.. danger:: - - The classes listed below are **not intended to be created by users** and are also - **read-only**. - - For example, this means that you should not make your own :class:`User` instances - nor should you modify the :class:`User` instance yourself. - - If you want to get one of these model classes instances they'd have to be through - the cache, and a common way of doing so is through the :func:`utils.find` function - or attributes of model classes that you receive from the events specified in the - :ref:`discord-api-events`. - -.. note:: - - Nearly all classes here have :ref:`py:slots` defined which means that it is - impossible to have dynamic attributes to the data classes. - - -ClientUser -~~~~~~~~~~~~ - -.. attributetable:: ClientUser - -.. autoclass:: ClientUser() - :members: - :inherited-members: - -User -~~~~~ - -.. attributetable:: User - -.. autoclass:: User() - :members: - :inherited-members: - :exclude-members: history, typing - - .. automethod:: history - :async-for: - - .. automethod:: typing - :async-with: - -Attachment -~~~~~~~~~~~ - -.. attributetable:: Attachment - -.. autoclass:: Attachment() - :members: - -Asset -~~~~~ - -.. attributetable:: Asset - -.. autoclass:: Asset() - :members: - :inherited-members: - -Message -~~~~~~~ - -.. attributetable:: Message - -.. autoclass:: Message() - :members: - -Component -~~~~~~~~~~ - -.. attributetable:: Component - -.. autoclass:: Component() - :members: - -ActionRow -~~~~~~~~~~ - -.. attributetable:: ActionRow - -.. autoclass:: ActionRow() - :members: - -Button -~~~~~~~ - -.. attributetable:: Button - -.. autoclass:: Button() - :members: - :inherited-members: - -SelectMenu -~~~~~~~~~~~ - -.. attributetable:: SelectMenu - -.. autoclass:: SelectMenu() - :members: - :inherited-members: - - -DeletedReferencedMessage -~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: DeletedReferencedMessage - -.. autoclass:: DeletedReferencedMessage() - :members: - - -Reaction -~~~~~~~~~ - -.. attributetable:: Reaction - -.. autoclass:: Reaction() - :members: - :exclude-members: users - - .. automethod:: users - :async-for: - -Guild -~~~~~~ - -.. attributetable:: Guild - -.. autoclass:: Guild() - :members: - :exclude-members: fetch_members, audit_logs - - .. automethod:: fetch_members - :async-for: - - .. automethod:: audit_logs - :async-for: - -.. class:: BanEntry - - A namedtuple which represents a ban returned from :meth:`~Guild.bans`. - - .. attribute:: reason - - The reason this user was banned. - - :type: Optional[:class:`str`] - .. attribute:: user - - The :class:`User` that was banned. - - :type: :class:`User` - - -Integration -~~~~~~~~~~~~ - -.. autoclass:: Integration() - :members: - -.. autoclass:: IntegrationAccount() - :members: - -.. autoclass:: BotIntegration() - :members: - -.. autoclass:: IntegrationApplication() - :members: - -.. autoclass:: StreamIntegration() - :members: - -Interaction -~~~~~~~~~~~~ - -.. attributetable:: Interaction - -.. autoclass:: Interaction() - :members: - -InteractionResponse -~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: InteractionResponse - -.. autoclass:: InteractionResponse() - :members: - -InteractionMessage -~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: InteractionMessage - -.. autoclass:: InteractionMessage() - :members: - -Member -~~~~~~ - -.. attributetable:: Member - -.. autoclass:: Member() - :members: - :inherited-members: - :exclude-members: history, typing - - .. automethod:: history - :async-for: - - .. automethod:: typing - :async-with: - -Spotify -~~~~~~~~ - -.. attributetable:: Spotify - -.. autoclass:: Spotify() - :members: - -VoiceState -~~~~~~~~~~~ - -.. attributetable:: VoiceState - -.. autoclass:: VoiceState() - :members: - -Emoji -~~~~~ - -.. attributetable:: Emoji - -.. autoclass:: Emoji() - :members: - :inherited-members: - -PartialEmoji -~~~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: PartialEmoji - -.. autoclass:: PartialEmoji() - :members: - :inherited-members: - -Role -~~~~~ - -.. attributetable:: Role - -.. autoclass:: Role() - :members: - -RoleTags -~~~~~~~~~~ - -.. attributetable:: RoleTags - -.. autoclass:: RoleTags() - :members: - -PartialMessageable -~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: PartialMessageable - -.. autoclass:: PartialMessageable() - :members: - :inherited-members: - -TextChannel -~~~~~~~~~~~~ - -.. attributetable:: TextChannel - -.. autoclass:: TextChannel() - :members: - :inherited-members: - :exclude-members: history, typing - - .. automethod:: history - :async-for: - - .. automethod:: typing - :async-with: - -Thread -~~~~~~~~ - -.. attributetable:: Thread - -.. autoclass:: Thread() - :members: - :inherited-members: - :exclude-members: history, typing - - .. automethod:: history - :async-for: - - .. automethod:: typing - :async-with: - -ThreadMember -~~~~~~~~~~~~~ - -.. attributetable:: ThreadMember - -.. autoclass:: ThreadMember() - :members: - -StoreChannel -~~~~~~~~~~~~~ - -.. attributetable:: StoreChannel - -.. autoclass:: StoreChannel() - :members: - :inherited-members: - -VoiceChannel -~~~~~~~~~~~~~ - -.. attributetable:: VoiceChannel - -.. autoclass:: VoiceChannel() - :members: - :inherited-members: - -StageChannel -~~~~~~~~~~~~~ - -.. attributetable:: StageChannel - -.. autoclass:: StageChannel() - :members: - :inherited-members: - - -StageInstance -~~~~~~~~~~~~~~ - -.. attributetable:: StageInstance - -.. autoclass:: StageInstance() - :members: - -CategoryChannel -~~~~~~~~~~~~~~~~~ - -.. attributetable:: CategoryChannel - -.. autoclass:: CategoryChannel() - :members: - :inherited-members: - -DMChannel -~~~~~~~~~ - -.. attributetable:: DMChannel - -.. autoclass:: DMChannel() - :members: - :inherited-members: - :exclude-members: history, typing - - .. automethod:: history - :async-for: - - .. automethod:: typing - :async-with: - -GroupChannel -~~~~~~~~~~~~ - -.. attributetable:: GroupChannel - -.. autoclass:: GroupChannel() - :members: - :inherited-members: - :exclude-members: history, typing - - .. automethod:: history - :async-for: - - .. automethod:: typing - :async-with: - -PartialInviteGuild -~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: PartialInviteGuild - -.. autoclass:: PartialInviteGuild() - :members: - -PartialInviteChannel -~~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: PartialInviteChannel - -.. autoclass:: PartialInviteChannel() - :members: - -Invite -~~~~~~~ - -.. attributetable:: Invite - -.. autoclass:: Invite() - :members: - -Template -~~~~~~~~~ - -.. attributetable:: Template - -.. autoclass:: Template() - :members: - -WidgetChannel -~~~~~~~~~~~~~~~ - -.. attributetable:: WidgetChannel - -.. autoclass:: WidgetChannel() - :members: - -WidgetMember -~~~~~~~~~~~~~ - -.. attributetable:: WidgetMember - -.. autoclass:: WidgetMember() - :members: - :inherited-members: - -Widget -~~~~~~~ - -.. attributetable:: Widget - -.. autoclass:: Widget() - :members: - -StickerPack -~~~~~~~~~~~~~ - -.. attributetable:: StickerPack - -.. autoclass:: StickerPack() - :members: - -StickerItem -~~~~~~~~~~~~~ - -.. attributetable:: StickerItem - -.. autoclass:: StickerItem() - :members: - -Sticker -~~~~~~~~~~~~~~~ - -.. attributetable:: Sticker - -.. autoclass:: Sticker() - :members: - -StandardSticker -~~~~~~~~~~~~~~~~ - -.. attributetable:: StandardSticker - -.. autoclass:: StandardSticker() - :members: - -GuildSticker -~~~~~~~~~~~~~ - -.. attributetable:: GuildSticker - -.. autoclass:: GuildSticker() - :members: - -RawTypingEvent -~~~~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: RawTypingEvent - -.. autoclass:: RawTypingEvent() - :members: - -RawMessageDeleteEvent -~~~~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: RawMessageDeleteEvent - -.. autoclass:: RawMessageDeleteEvent() - :members: - -RawBulkMessageDeleteEvent -~~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: RawBulkMessageDeleteEvent - -.. autoclass:: RawBulkMessageDeleteEvent() - :members: - -RawMessageUpdateEvent -~~~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: RawMessageUpdateEvent - -.. autoclass:: RawMessageUpdateEvent() - :members: - -RawReactionActionEvent -~~~~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: RawReactionActionEvent - -.. autoclass:: RawReactionActionEvent() - :members: - -RawReactionClearEvent -~~~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: RawReactionClearEvent - -.. autoclass:: RawReactionClearEvent() - :members: - -RawReactionClearEmojiEvent -~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: RawReactionClearEmojiEvent - -.. autoclass:: RawReactionClearEmojiEvent() - :members: - -RawIntegrationDeleteEvent -~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: RawIntegrationDeleteEvent - -.. autoclass:: RawIntegrationDeleteEvent() - :members: - -PartialWebhookGuild -~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: PartialWebhookGuild - -.. autoclass:: PartialWebhookGuild() - :members: - -PartialWebhookChannel -~~~~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: PartialWebhookChannel - -.. autoclass:: PartialWebhookChannel() - :members: - -.. _discord_api_data: - -Data Classes --------------- - -Some classes are just there to be data containers, this lists them. - -Unlike :ref:`models ` you are allowed to create -most of these yourself, even if they can also be used to hold attributes. - -Nearly all classes here have :ref:`py:slots` defined which means that it is -impossible to have dynamic attributes to the data classes. - -The only exception to this rule is :class:`Object`, which is made with -dynamic attributes in mind. - - -Object -~~~~~~~ - -.. attributetable:: Object - -.. autoclass:: Object - :members: - -Embed -~~~~~~ - -.. attributetable:: Embed - -.. autoclass:: Embed - :members: - -AllowedMentions -~~~~~~~~~~~~~~~~~ - -.. attributetable:: AllowedMentions - -.. autoclass:: AllowedMentions - :members: - -MessageReference -~~~~~~~~~~~~~~~~~ - -.. attributetable:: MessageReference - -.. autoclass:: MessageReference - :members: - -PartialMessage -~~~~~~~~~~~~~~~~~ - -.. attributetable:: PartialMessage - -.. autoclass:: PartialMessage - :members: - -SelectOption -~~~~~~~~~~~~~ - -.. attributetable:: SelectOption - -.. autoclass:: SelectOption - :members: - -Intents -~~~~~~~~~~ - -.. attributetable:: Intents - -.. autoclass:: Intents - :members: - -MemberCacheFlags -~~~~~~~~~~~~~~~~~~ - -.. attributetable:: MemberCacheFlags - -.. autoclass:: MemberCacheFlags - :members: - -ApplicationFlags -~~~~~~~~~~~~~~~~~ - -.. attributetable:: ApplicationFlags - -.. autoclass:: ApplicationFlags - :members: - -File -~~~~~ - -.. attributetable:: File - -.. autoclass:: File - :members: - -Colour -~~~~~~ - -.. attributetable:: Colour - -.. autoclass:: Colour - :members: - -BaseActivity -~~~~~~~~~~~~~~ - -.. attributetable:: BaseActivity - -.. autoclass:: BaseActivity - :members: - -Activity -~~~~~~~~~ - -.. attributetable:: Activity - -.. autoclass:: Activity - :members: - -Game -~~~~~ - -.. attributetable:: Game - -.. autoclass:: Game - :members: - -Streaming -~~~~~~~~~~~ - -.. attributetable:: Streaming - -.. autoclass:: Streaming - :members: - -CustomActivity -~~~~~~~~~~~~~~~ - -.. attributetable:: CustomActivity - -.. autoclass:: CustomActivity - :members: - -Permissions -~~~~~~~~~~~~ - -.. attributetable:: Permissions - -.. autoclass:: Permissions - :members: - -PermissionOverwrite -~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: PermissionOverwrite - -.. autoclass:: PermissionOverwrite - :members: - -ShardInfo -~~~~~~~~~~~ - -.. attributetable:: ShardInfo - -.. autoclass:: ShardInfo() - :members: - -SystemChannelFlags -~~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: SystemChannelFlags - -.. autoclass:: SystemChannelFlags() - :members: - -MessageFlags -~~~~~~~~~~~~ - -.. attributetable:: MessageFlags - -.. autoclass:: MessageFlags() - :members: - -PublicUserFlags -~~~~~~~~~~~~~~~ - -.. attributetable:: PublicUserFlags - -.. autoclass:: PublicUserFlags() - :members: - -.. _discord_ui_kit: - -Bot UI Kit -------------- - -The library has helpers to help create component-based UIs. - -View -~~~~~~~ - -.. attributetable:: discord.ui.View - -.. autoclass:: discord.ui.View - :members: - -Item -~~~~~~~ - -.. attributetable:: discord.ui.Item - -.. autoclass:: discord.ui.Item - :members: - -Button -~~~~~~~ - -.. attributetable:: discord.ui.Button - -.. autoclass:: discord.ui.Button - :members: - :inherited-members: - -.. autofunction:: discord.ui.button - -Select -~~~~~~~ - -.. attributetable:: discord.ui.Select - -.. autoclass:: discord.ui.Select - :members: - :inherited-members: - -.. autofunction:: discord.ui.select - - -Exceptions ------------- - -The following exceptions are thrown by the library. - -.. autoexception:: DiscordException - -.. autoexception:: ClientException - -.. autoexception:: LoginFailure - -.. autoexception:: NoMoreItems - -.. autoexception:: HTTPException - :members: - -.. autoexception:: Forbidden - -.. autoexception:: NotFound - -.. autoexception:: DiscordServerError - -.. autoexception:: InvalidData - -.. autoexception:: InvalidArgument - -.. autoexception:: GatewayNotFound - -.. autoexception:: ConnectionClosed - -.. autoexception:: PrivilegedIntentsRequired - -.. autoexception:: InteractionResponded - -.. autoexception:: discord.opus.OpusError - -.. autoexception:: discord.opus.OpusNotLoaded - -Exception Hierarchy -~~~~~~~~~~~~~~~~~~~~~ - -.. exception_hierarchy:: - - - :exc:`Exception` - - :exc:`DiscordException` - - :exc:`ClientException` - - :exc:`InvalidData` - - :exc:`InvalidArgument` - - :exc:`LoginFailure` - - :exc:`ConnectionClosed` - - :exc:`PrivilegedIntentsRequired` - - :exc:`InteractionResponded` - - :exc:`NoMoreItems` - - :exc:`GatewayNotFound` - - :exc:`HTTPException` - - :exc:`Forbidden` - - :exc:`NotFound` - - :exc:`DiscordServerError` diff --git a/docs/Python/html/_sources/discord.rst.txt b/docs/Python/html/_sources/discord.rst.txt deleted file mode 100644 index ac12417f..00000000 --- a/docs/Python/html/_sources/discord.rst.txt +++ /dev/null @@ -1,96 +0,0 @@ -:orphan: - -.. _discord-intro: - -Creating a Bot Account -======================== - -In order to work with the library and the Discord API in general, we must first create a Discord Bot account. - -Creating a Bot account is a pretty straightforward process. - -1. Make sure you're logged on to the `Discord website `_. -2. Navigate to the `application page `_ -3. Click on the "New Application" button. - - .. image:: /images/discord_create_app_button.png - :alt: The new application button. - -4. Give the application a name and click "Create". - - .. image:: /images/discord_create_app_form.png - :alt: The new application form filled in. - -5. Create a Bot User by navigating to the "Bot" tab and clicking "Add Bot". - - - Click "Yes, do it!" to continue. - - .. image:: /images/discord_create_bot_user.png - :alt: The Add Bot button. -6. Make sure that **Public Bot** is ticked if you want others to invite your bot. - - - You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you - are developing a service that needs it. If you're unsure, then **leave it unchecked**. - - .. image:: /images/discord_bot_user_options.png - :alt: How the Bot User options should look like for most people. - -7. Copy the token using the "Copy" button. - - - **This is not the Client Secret at the General Information page.** - - .. warning:: - - It should be worth noting that this token is essentially your bot's - password. You should **never** share this with someone else. In doing so, - someone can log in to your bot and do malicious things, such as leaving - servers, ban all members inside a server, or pinging everyone maliciously. - - The possibilities are endless, so **do not share this token.** - - If you accidentally leaked your token, click the "Regenerate" button as soon - as possible. This revokes your old token and re-generates a new one. - Now you need to use the new token to login. - -And that's it. You now have a bot account and you can login with that token. - -.. _discord_invite_bot: - -Inviting Your Bot -------------------- - -So you've made a Bot User but it's not actually in any server. - -If you want to invite your bot you must create an invite URL for it. - -1. Make sure you're logged on to the `Discord website `_. -2. Navigate to the `application page `_ -3. Click on your bot's page. -4. Go to the "OAuth2" tab. - - .. image:: /images/discord_oauth2.png - :alt: How the OAuth2 page should look like. - -5. Tick the "bot" checkbox under "scopes". - - .. image:: /images/discord_oauth2_scope.png - :alt: The scopes checkbox with "bot" ticked. - -6. Tick the permissions required for your bot to function under "Bot Permissions". - - - Please be aware of the consequences of requiring your bot to have the "Administrator" permission. - - - Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information. - - .. image:: /images/discord_oauth2_perms.png - :alt: The permission checkboxes with some permissions checked. - -7. Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click "Authorize". - - -.. note:: - - The person adding the bot needs "Manage Server" permissions to do so. - -If you want to generate this URL dynamically at run-time inside your bot and using the -:class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`. diff --git a/docs/Python/html/_sources/ext/commands/api.rst.txt b/docs/Python/html/_sources/ext/commands/api.rst.txt deleted file mode 100644 index f70d835c..00000000 --- a/docs/Python/html/_sources/ext/commands/api.rst.txt +++ /dev/null @@ -1,681 +0,0 @@ -.. currentmodule:: discord - -API Reference -=============== - -The following section outlines the API of discord.py's command extension module. - -.. _ext_commands_api_bot: - -Bots ------- - -Bot -~~~~ - -.. attributetable:: discord.ext.commands.Bot - -.. autoclass:: discord.ext.commands.Bot - :members: - :inherited-members: - :exclude-members: after_invoke, before_invoke, check, check_once, command, event, group, listen - - .. automethod:: Bot.after_invoke() - :decorator: - - .. automethod:: Bot.before_invoke() - :decorator: - - .. automethod:: Bot.check() - :decorator: - - .. automethod:: Bot.check_once() - :decorator: - - .. automethod:: Bot.command(*args, **kwargs) - :decorator: - - .. automethod:: Bot.event() - :decorator: - - .. automethod:: Bot.group(*args, **kwargs) - :decorator: - - .. automethod:: Bot.listen(name=None) - :decorator: - -AutoShardedBot -~~~~~~~~~~~~~~~~ - -.. attributetable:: discord.ext.commands.AutoShardedBot - -.. autoclass:: discord.ext.commands.AutoShardedBot - :members: - -Prefix Helpers ----------------- - -.. autofunction:: discord.ext.commands.when_mentioned - -.. autofunction:: discord.ext.commands.when_mentioned_or - -.. _ext_commands_api_events: - -Event Reference ------------------ - -These events function similar to :ref:`the regular events `, except they -are custom to the command extension module. - -.. function:: discord.ext.commands.on_command_error(ctx, error) - - An error handler that is called when an error is raised - inside a command either through user input error, check - failure, or an error in your own code. - - A default one is provided (:meth:`.Bot.on_command_error`). - - :param ctx: The invocation context. - :type ctx: :class:`.Context` - :param error: The error that was raised. - :type error: :class:`.CommandError` derived - -.. function:: discord.ext.commands.on_command(ctx) - - An event that is called when a command is found and is about to be invoked. - - This event is called regardless of whether the command itself succeeds via - error or completes. - - :param ctx: The invocation context. - :type ctx: :class:`.Context` - -.. function:: discord.ext.commands.on_command_completion(ctx) - - An event that is called when a command has completed its invocation. - - This event is called only if the command succeeded, i.e. all checks have - passed and the user input it correctly. - - :param ctx: The invocation context. - :type ctx: :class:`.Context` - -.. _ext_commands_api_command: - -Commands ----------- - -Decorators -~~~~~~~~~~~~ - -.. autofunction:: discord.ext.commands.command - :decorator: - -.. autofunction:: discord.ext.commands.group - :decorator: - -Command -~~~~~~~~~ - -.. attributetable:: discord.ext.commands.Command - -.. autoclass:: discord.ext.commands.Command - :members: - :special-members: __call__ - :exclude-members: after_invoke, before_invoke, error - - .. automethod:: Command.after_invoke() - :decorator: - - .. automethod:: Command.before_invoke() - :decorator: - - .. automethod:: Command.error() - :decorator: - -Group -~~~~~~ - -.. attributetable:: discord.ext.commands.Group - -.. autoclass:: discord.ext.commands.Group - :members: - :inherited-members: - :exclude-members: after_invoke, before_invoke, command, error, group - - .. automethod:: Group.after_invoke() - :decorator: - - .. automethod:: Group.before_invoke() - :decorator: - - .. automethod:: Group.command(*args, **kwargs) - :decorator: - - .. automethod:: Group.error() - :decorator: - - .. automethod:: Group.group(*args, **kwargs) - :decorator: - -GroupMixin -~~~~~~~~~~~ - -.. attributetable:: discord.ext.commands.GroupMixin - -.. autoclass:: discord.ext.commands.GroupMixin - :members: - :exclude-members: command, group - - .. automethod:: GroupMixin.command(*args, **kwargs) - :decorator: - - .. automethod:: GroupMixin.group(*args, **kwargs) - :decorator: - -.. _ext_commands_api_cogs: - -Cogs ------- - -Cog -~~~~ - -.. attributetable:: discord.ext.commands.Cog - -.. autoclass:: discord.ext.commands.Cog - :members: - -CogMeta -~~~~~~~~ - -.. attributetable:: discord.ext.commands.CogMeta - -.. autoclass:: discord.ext.commands.CogMeta - :members: - -.. _ext_commands_help_command: - -Help Commands ---------------- - -HelpCommand -~~~~~~~~~~~~ - -.. attributetable:: discord.ext.commands.HelpCommand - -.. autoclass:: discord.ext.commands.HelpCommand - :members: - -DefaultHelpCommand -~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: discord.ext.commands.DefaultHelpCommand - -.. autoclass:: discord.ext.commands.DefaultHelpCommand - :members: - :exclude-members: send_bot_help, send_cog_help, send_group_help, send_command_help, prepare_help_command - -MinimalHelpCommand -~~~~~~~~~~~~~~~~~~~ - -.. attributetable:: discord.ext.commands.MinimalHelpCommand - -.. autoclass:: discord.ext.commands.MinimalHelpCommand - :members: - :exclude-members: send_bot_help, send_cog_help, send_group_help, send_command_help, prepare_help_command - -Paginator -~~~~~~~~~~ - -.. attributetable:: discord.ext.commands.Paginator - -.. autoclass:: discord.ext.commands.Paginator - :members: - -Enums ------- - -.. class:: BucketType - :module: discord.ext.commands - - Specifies a type of bucket for, e.g. a cooldown. - - .. attribute:: default - - The default bucket operates on a global basis. - .. attribute:: user - - The user bucket operates on a per-user basis. - .. attribute:: guild - - The guild bucket operates on a per-guild basis. - .. attribute:: channel - - The channel bucket operates on a per-channel basis. - .. attribute:: member - - The member bucket operates on a per-member basis. - .. attribute:: category - - The category bucket operates on a per-category basis. - .. attribute:: role - - The role bucket operates on a per-role basis. - - .. versionadded:: 1.3 - - -.. _ext_commands_api_checks: - -Checks -------- - -.. autofunction:: discord.ext.commands.check(predicate) - :decorator: - -.. autofunction:: discord.ext.commands.check_any(*checks) - :decorator: - -.. autofunction:: discord.ext.commands.has_role(item) - :decorator: - -.. autofunction:: discord.ext.commands.has_permissions(**perms) - :decorator: - -.. autofunction:: discord.ext.commands.has_guild_permissions(**perms) - :decorator: - -.. autofunction:: discord.ext.commands.has_any_role(*items) - :decorator: - -.. autofunction:: discord.ext.commands.bot_has_role(item) - :decorator: - -.. autofunction:: discord.ext.commands.bot_has_permissions(**perms) - :decorator: - -.. autofunction:: discord.ext.commands.bot_has_guild_permissions(**perms) - :decorator: - -.. autofunction:: discord.ext.commands.bot_has_any_role(*items) - :decorator: - -.. autofunction:: discord.ext.commands.cooldown(rate, per, type=discord.ext.commands.BucketType.default) - :decorator: - -.. autofunction:: discord.ext.commands.dynamic_cooldown(cooldown, type=BucketType.default) - :decorator: - -.. autofunction:: discord.ext.commands.max_concurrency(number, per=discord.ext.commands.BucketType.default, *, wait=False) - :decorator: - -.. autofunction:: discord.ext.commands.before_invoke(coro) - :decorator: - -.. autofunction:: discord.ext.commands.after_invoke(coro) - :decorator: - -.. autofunction:: discord.ext.commands.guild_only(,) - :decorator: - -.. autofunction:: discord.ext.commands.dm_only(,) - :decorator: - -.. autofunction:: discord.ext.commands.is_owner(,) - :decorator: - -.. autofunction:: discord.ext.commands.is_nsfw(,) - :decorator: - -.. _ext_commands_api_context: - -Cooldown ---------- - -.. attributetable:: discord.ext.commands.Cooldown - -.. autoclass:: discord.ext.commands.Cooldown - :members: - -Context --------- - -.. attributetable:: discord.ext.commands.Context - -.. autoclass:: discord.ext.commands.Context - :members: - :inherited-members: - :exclude-members: history, typing - - .. automethod:: discord.ext.commands.Context.history - :async-for: - - .. automethod:: discord.ext.commands.Context.typing - :async-with: - -.. _ext_commands_api_converters: - -Converters ------------- - -.. autoclass:: discord.ext.commands.Converter - :members: - -.. autoclass:: discord.ext.commands.ObjectConverter - :members: - -.. autoclass:: discord.ext.commands.MemberConverter - :members: - -.. autoclass:: discord.ext.commands.UserConverter - :members: - -.. autoclass:: discord.ext.commands.MessageConverter - :members: - -.. autoclass:: discord.ext.commands.PartialMessageConverter - :members: - -.. autoclass:: discord.ext.commands.GuildChannelConverter - :members: - -.. autoclass:: discord.ext.commands.TextChannelConverter - :members: - -.. autoclass:: discord.ext.commands.VoiceChannelConverter - :members: - -.. autoclass:: discord.ext.commands.StoreChannelConverter - :members: - -.. autoclass:: discord.ext.commands.StageChannelConverter - :members: - -.. autoclass:: discord.ext.commands.CategoryChannelConverter - :members: - -.. autoclass:: discord.ext.commands.InviteConverter - :members: - -.. autoclass:: discord.ext.commands.GuildConverter - :members: - -.. autoclass:: discord.ext.commands.RoleConverter - :members: - -.. autoclass:: discord.ext.commands.GameConverter - :members: - -.. autoclass:: discord.ext.commands.ColourConverter - :members: - -.. autoclass:: discord.ext.commands.EmojiConverter - :members: - -.. autoclass:: discord.ext.commands.PartialEmojiConverter - :members: - -.. autoclass:: discord.ext.commands.ThreadConverter - :members: - -.. autoclass:: discord.ext.commands.GuildStickerConverter - :members: - -.. autoclass:: discord.ext.commands.clean_content - :members: - -.. autoclass:: discord.ext.commands.Greedy() - -.. autofunction:: discord.ext.commands.run_converters - -Option -~~~~~~ - -.. autoclass:: discord.ext.commands.Option - :members: - -Flag Converter -~~~~~~~~~~~~~~~ - -.. autoclass:: discord.ext.commands.FlagConverter - :members: - -.. autoclass:: discord.ext.commands.Flag() - :members: - -.. autofunction:: discord.ext.commands.flag - -.. _ext_commands_api_errors: - -Exceptions ------------ - -.. autoexception:: discord.ext.commands.CommandError - :members: - -.. autoexception:: discord.ext.commands.ConversionError - :members: - -.. autoexception:: discord.ext.commands.MissingRequiredArgument - :members: - -.. autoexception:: discord.ext.commands.ArgumentParsingError - :members: - -.. autoexception:: discord.ext.commands.UnexpectedQuoteError - :members: - -.. autoexception:: discord.ext.commands.InvalidEndOfQuotedStringError - :members: - -.. autoexception:: discord.ext.commands.ExpectedClosingQuoteError - :members: - -.. autoexception:: discord.ext.commands.BadArgument - :members: - -.. autoexception:: discord.ext.commands.BadUnionArgument - :members: - -.. autoexception:: discord.ext.commands.BadLiteralArgument - :members: - -.. autoexception:: discord.ext.commands.PrivateMessageOnly - :members: - -.. autoexception:: discord.ext.commands.NoPrivateMessage - :members: - -.. autoexception:: discord.ext.commands.CheckFailure - :members: - -.. autoexception:: discord.ext.commands.CheckAnyFailure - :members: - -.. autoexception:: discord.ext.commands.CommandNotFound - :members: - -.. autoexception:: discord.ext.commands.DisabledCommand - :members: - -.. autoexception:: discord.ext.commands.CommandInvokeError - :members: - -.. autoexception:: discord.ext.commands.TooManyArguments - :members: - -.. autoexception:: discord.ext.commands.UserInputError - :members: - -.. autoexception:: discord.ext.commands.CommandOnCooldown - :members: - -.. autoexception:: discord.ext.commands.MaxConcurrencyReached - :members: - -.. autoexception:: discord.ext.commands.NotOwner - :members: - -.. autoexception:: discord.ext.commands.MessageNotFound - :members: - -.. autoexception:: discord.ext.commands.MemberNotFound - :members: - -.. autoexception:: discord.ext.commands.GuildNotFound - :members: - -.. autoexception:: discord.ext.commands.UserNotFound - :members: - -.. autoexception:: discord.ext.commands.ChannelNotFound - :members: - -.. autoexception:: discord.ext.commands.ChannelNotReadable - :members: - -.. autoexception:: discord.ext.commands.ThreadNotFound - :members: - -.. autoexception:: discord.ext.commands.BadColourArgument - :members: - -.. autoexception:: discord.ext.commands.RoleNotFound - :members: - -.. autoexception:: discord.ext.commands.BadInviteArgument - :members: - -.. autoexception:: discord.ext.commands.EmojiNotFound - :members: - -.. autoexception:: discord.ext.commands.PartialEmojiConversionFailure - :members: - -.. autoexception:: discord.ext.commands.GuildStickerNotFound - :members: - -.. autoexception:: discord.ext.commands.BadBoolArgument - :members: - -.. autoexception:: discord.ext.commands.MissingPermissions - :members: - -.. autoexception:: discord.ext.commands.BotMissingPermissions - :members: - -.. autoexception:: discord.ext.commands.MissingRole - :members: - -.. autoexception:: discord.ext.commands.BotMissingRole - :members: - -.. autoexception:: discord.ext.commands.MissingAnyRole - :members: - -.. autoexception:: discord.ext.commands.BotMissingAnyRole - :members: - -.. autoexception:: discord.ext.commands.NSFWChannelRequired - :members: - -.. autoexception:: discord.ext.commands.FlagError - :members: - -.. autoexception:: discord.ext.commands.BadFlagArgument - :members: - -.. autoexception:: discord.ext.commands.MissingFlagArgument - :members: - -.. autoexception:: discord.ext.commands.TooManyFlags - :members: - -.. autoexception:: discord.ext.commands.MissingRequiredFlag - :members: - -.. autoexception:: discord.ext.commands.ExtensionError - :members: - -.. autoexception:: discord.ext.commands.ExtensionAlreadyLoaded - :members: - -.. autoexception:: discord.ext.commands.ExtensionNotLoaded - :members: - -.. autoexception:: discord.ext.commands.NoEntryPointError - :members: - -.. autoexception:: discord.ext.commands.ExtensionFailed - :members: - -.. autoexception:: discord.ext.commands.ExtensionNotFound - :members: - -.. autoexception:: discord.ext.commands.CommandRegistrationError - :members: - - -Exception Hierarchy -~~~~~~~~~~~~~~~~~~~~~ - -.. exception_hierarchy:: - - - :exc:`~.DiscordException` - - :exc:`~.commands.CommandError` - - :exc:`~.commands.ConversionError` - - :exc:`~.commands.UserInputError` - - :exc:`~.commands.MissingRequiredArgument` - - :exc:`~.commands.TooManyArguments` - - :exc:`~.commands.BadArgument` - - :exc:`~.commands.MessageNotFound` - - :exc:`~.commands.MemberNotFound` - - :exc:`~.commands.GuildNotFound` - - :exc:`~.commands.UserNotFound` - - :exc:`~.commands.ChannelNotFound` - - :exc:`~.commands.ChannelNotReadable` - - :exc:`~.commands.BadColourArgument` - - :exc:`~.commands.RoleNotFound` - - :exc:`~.commands.BadInviteArgument` - - :exc:`~.commands.EmojiNotFound` - - :exc:`~.commands.GuildStickerNotFound` - - :exc:`~.commands.PartialEmojiConversionFailure` - - :exc:`~.commands.BadBoolArgument` - - :exc:`~.commands.ThreadNotFound` - - :exc:`~.commands.FlagError` - - :exc:`~.commands.BadFlagArgument` - - :exc:`~.commands.MissingFlagArgument` - - :exc:`~.commands.TooManyFlags` - - :exc:`~.commands.MissingRequiredFlag` - - :exc:`~.commands.BadUnionArgument` - - :exc:`~.commands.BadLiteralArgument` - - :exc:`~.commands.ArgumentParsingError` - - :exc:`~.commands.UnexpectedQuoteError` - - :exc:`~.commands.InvalidEndOfQuotedStringError` - - :exc:`~.commands.ExpectedClosingQuoteError` - - :exc:`~.commands.CommandNotFound` - - :exc:`~.commands.CheckFailure` - - :exc:`~.commands.CheckAnyFailure` - - :exc:`~.commands.PrivateMessageOnly` - - :exc:`~.commands.NoPrivateMessage` - - :exc:`~.commands.NotOwner` - - :exc:`~.commands.MissingPermissions` - - :exc:`~.commands.BotMissingPermissions` - - :exc:`~.commands.MissingRole` - - :exc:`~.commands.BotMissingRole` - - :exc:`~.commands.MissingAnyRole` - - :exc:`~.commands.BotMissingAnyRole` - - :exc:`~.commands.NSFWChannelRequired` - - :exc:`~.commands.DisabledCommand` - - :exc:`~.commands.CommandInvokeError` - - :exc:`~.commands.CommandOnCooldown` - - :exc:`~.commands.MaxConcurrencyReached` - - :exc:`~.commands.ExtensionError` - - :exc:`~.commands.ExtensionAlreadyLoaded` - - :exc:`~.commands.ExtensionNotLoaded` - - :exc:`~.commands.NoEntryPointError` - - :exc:`~.commands.ExtensionFailed` - - :exc:`~.commands.ExtensionNotFound` - - :exc:`~.ClientException` - - :exc:`~.commands.CommandRegistrationError` diff --git a/docs/Python/html/_sources/ext/commands/cogs.rst.txt b/docs/Python/html/_sources/ext/commands/cogs.rst.txt deleted file mode 100644 index 25bb1a0b..00000000 --- a/docs/Python/html/_sources/ext/commands/cogs.rst.txt +++ /dev/null @@ -1,159 +0,0 @@ -.. currentmodule:: discord - -.. _ext_commands_cogs: - -Cogs -====== - -There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that. - -The gist: - -- Each cog is a Python class that subclasses :class:`.commands.Cog`. -- Every command is marked with the :func:`.commands.command` decorator. -- Every listener is marked with the :meth:`.commands.Cog.listener` decorator. -- Cogs are then registered with the :meth:`.Bot.add_cog` call. -- Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call. - -It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`. - -Quick Example ---------------- - -This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `. - -.. code-block:: python3 - - class Greetings(commands.Cog): - def __init__(self, bot): - self.bot = bot - self._last_member = None - - @commands.Cog.listener() - async def on_member_join(self, member): - channel = member.guild.system_channel - if channel is not None: - await channel.send(f'Welcome {member.mention}.') - - @commands.command() - async def hello(self, ctx, *, member: discord.Member = None): - """Says hello""" - member = member or ctx.author - if self._last_member is None or self._last_member.id != member.id: - await ctx.send(f'Hello {member.name}~') - else: - await ctx.send(f'Hello {member.name}... This feels familiar.') - self._last_member = member - -A couple of technical notes to take into consideration: - -- All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`. -- The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`. -- All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state. - -Cog Registration -------------------- - -Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method. - -.. code-block:: python3 - - bot.add_cog(Greetings(bot)) - -This binds the cog to the bot, adding all commands and listeners to the bot automatically. - -Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following. - -.. code-block:: python3 - - bot.remove_cog('Greetings') - -Using Cogs -------------- - -Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example: - -.. code-block:: python3 - :emphasize-lines: 22,24 - - class Economy(commands.Cog): - ... - - async def withdraw_money(self, member, money): - # implementation here - ... - - async def deposit_money(self, member, money): - # implementation here - ... - - class Gambling(commands.Cog): - def __init__(self, bot): - self.bot = bot - - def coinflip(self): - return random.randint(0, 1) - - @commands.command() - async def gamble(self, ctx, money: int): - """Gambles some money.""" - economy = self.bot.get_cog('Economy') - if economy is not None: - await economy.withdraw_money(ctx.author, money) - if self.coinflip() == 1: - await economy.deposit_money(ctx.author, money * 1.5) - -.. _ext_commands_cogs_special_methods: - -Special Methods ------------------ - -As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot. - -They are as follows: - -- :meth:`.Cog.cog_unload` -- :meth:`.Cog.cog_check` -- :meth:`.Cog.cog_command_error` -- :meth:`.Cog.cog_before_invoke` -- :meth:`.Cog.cog_after_invoke` -- :meth:`.Cog.bot_check` -- :meth:`.Cog.bot_check_once` - -You can visit the reference to get more detail. - -.. _ext_commands_cogs_meta_options: - -Meta Options --------------- - -At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows: - -.. code-block:: python3 - - class MyCog(commands.Cog, name='My Cog'): - pass - -To see more options that you can set, see the documentation of :class:`.commands.CogMeta`. - -Inspection ------------- - -Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog. - - -To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. :: - - >>> cog = bot.get_cog('Greetings') - >>> commands = cog.get_commands() - >>> print([c.name for c in commands]) - -If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. :: - - >>> print([c.qualified_name for c in cog.walk_commands()]) - -To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. :: - - >>> for name, func in cog.get_listeners(): - ... print(name, '->', func) - diff --git a/docs/Python/html/_sources/ext/commands/commands.rst.txt b/docs/Python/html/_sources/ext/commands/commands.rst.txt deleted file mode 100644 index f29dc70b..00000000 --- a/docs/Python/html/_sources/ext/commands/commands.rst.txt +++ /dev/null @@ -1,962 +0,0 @@ -.. currentmodule:: discord - -.. _ext_commands_commands: - -Commands -========== - -One of the most appealing aspects of the command extension is how easy it is to define commands and -how you can arbitrarily nest groups and commands to have a rich sub-command system. - -Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar -signature to the Python function. - -For example, in the given command definition: - -.. code-block:: python3 - - @bot.command() - async def foo(ctx, arg): - await ctx.send(arg) - -With the following prefix (``$``), it would be invoked by the user via: - -.. code-block:: none - - $foo abc - -A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one. - -There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, -as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by -:meth:`.Bot.add_command` on the instance. - -Essentially, these two are equivalent: :: - - from discord.ext import commands - - bot = commands.Bot(command_prefix='$') - - @bot.command() - async def test(ctx): - pass - - # or: - - @commands.command() - async def test(ctx): - pass - - bot.add_command(test) - -Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the -documentation here. - -Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change -the name to something other than the function would be as simple as doing this: - -.. code-block:: python3 - - @bot.command(name='list') - async def _list(ctx, arg): - pass - - -Parameters ------------- - -Since we define commands by making Python functions, we also define the argument passing behaviour by the function -parameters. - -Certain parameter types do different things in the user side and most forms of parameter types are supported. - -Positional -++++++++++++ - -The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is: - -.. code-block:: python3 - - @bot.command() - async def test(ctx, arg): - await ctx.send(arg) - - -On the bot using side, you can provide positional arguments by just passing a regular string: - -.. image:: /images/commands/positional1.png - -To make use of a word with spaces in between, you should quote it: - -.. image:: /images/commands/positional2.png - -As a note of warning, if you omit the quotes, you will only get the first word: - -.. image:: /images/commands/positional3.png - -Since positional arguments are just regular Python arguments, you can have as many as you want: - -.. code-block:: python3 - - @bot.command() - async def test(ctx, arg1, arg2): - await ctx.send(f'You passed {arg1} and {arg2}') - -Variable -++++++++++ - -Sometimes you want users to pass in an undetermined number of parameters. The library supports this -similar to how variable list parameters are done in Python: - -.. code-block:: python3 - - @bot.command() - async def test(ctx, *args): - arguments = ', '.join(args) - await ctx.send(f'{len(args)} arguments: {arguments}') - -This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, -so multi-word parameters should be quoted. - -For example, on the bot side: - -.. image:: /images/commands/variable1.png - -If the user wants to input a multi-word argument, they have to quote it like earlier: - -.. image:: /images/commands/variable2.png - -Do note that similar to the Python function behaviour, a user can technically pass no arguments -at all: - -.. image:: /images/commands/variable3.png - -Since the ``args`` variable is a :class:`py:tuple`, -you can do anything you would usually do with one. - -.. admonition:: Slash Command Only - - This functionally is currently not supported by the slash command API, so is turned into - a single ``STRING`` parameter on discord's end which we do our own parsing on. - -Keyword-Only Arguments -++++++++++++++++++++++++ - -When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into -quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, -seen below: - -.. code-block:: python3 - - @bot.command() - async def test(ctx, *, arg): - await ctx.send(arg) - -.. warning:: - - You can only have one keyword-only argument due to parsing ambiguities. - -On the bot side, we do not need to quote input with spaces: - -.. image:: /images/commands/keyword1.png - -Do keep in mind that wrapping it in quotes leaves it as-is: - -.. image:: /images/commands/keyword2.png - -By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be -toggled by the :attr:`.Command.rest_is_raw` argument in the decorator. - -.. _ext_commands_context: - -Invocation Context -------------------- - -As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`. - -This parameter gives you access to something called the "invocation context". Essentially all the information you need to -know how the command was executed. It contains a lot of useful information: - -- :attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any. -- :attr:`.Context.message` to fetch the :class:`Message` of the command. -- :attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command. -- :meth:`.Context.send` to send a message to the channel the command was used in. - -The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you -can do on the :class:`~ext.commands.Context`. - -.. admonition:: Slash Command Only - - :attr:`.Context.message` will be fake if in a slash command, it is not - recommended to access if :attr:`.Context.interaction` is not None as most - methods will error due to the message not actually existing. - -Converters ------------- - -Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually -make use of the arguments, we usually want to convert the data into a target type. We call these -:ref:`ext_commands_api_converters`. - -Converters come in a few flavours: - -- A regular callable object that takes an argument as a sole parameter and returns a different type. - - - These range from your own function, to something like :class:`bool` or :class:`int`. - -- A custom class that inherits from :class:`~ext.commands.Converter`. - -.. _ext_commands_basic_converters: - -Basic Converters -++++++++++++++++++ - -At its core, a basic converter is a callable that takes in an argument and turns it into something else. - -For example, if we wanted to add two numbers together, we could request that they are turned into integers -for us by specifying the converter: - -.. code-block:: python3 - - @bot.command() - async def add(ctx, a: int, b: int): - await ctx.send(a + b) - -We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was -introduced in :pep:`3107`. - -This works with any callable, such as a function that would convert a string to all upper-case: - -.. code-block:: python3 - - def to_upper(argument): - return argument.upper() - - @bot.command() - async def up(ctx, *, content: to_upper): - await ctx.send(content) - -bool -^^^^^^ - -Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content: - -.. code-block:: python3 - - if lowered in ('yes', 'y', 'true', 't', '1', 'enable', 'on'): - return True - elif lowered in ('no', 'n', 'false', 'f', '0', 'disable', 'off'): - return False - -.. _ext_commands_adv_converters: - -Advanced Converters -+++++++++++++++++++++ - -Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some -information from the :class:`Message` that called the command or we want to do some asynchronous processing. - -For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the -:class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires -overriding a single method, :meth:`.Converter.convert`. - -An example converter: - -.. code-block:: python3 - - import random - - class Slapper(commands.Converter): - async def convert(self, ctx, argument): - to_slap = random.choice(ctx.guild.members) - return f'{ctx.author} slapped {to_slap} because *{argument}*' - - @bot.command() - async def slap(ctx, *, reason: Slapper): - await ctx.send(reason) - -The converter provided can either be constructed or not. Essentially these two are equivalent: - -.. code-block:: python3 - - @bot.command() - async def slap(ctx, *, reason: Slapper): - await ctx.send(reason) - - # is the same as... - - @bot.command() - async def slap(ctx, *, reason: Slapper()): - await ctx.send(reason) - -Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for -fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`. - -.. code-block:: python3 - - @bot.command() - async def clean(ctx, *, content: commands.clean_content): - await ctx.send(content) - - # or for fine-tuning - - @bot.command() - async def clean(ctx, *, content: commands.clean_content(use_nicknames=False)): - await ctx.send(content) - - -If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be -raised. - -Inline Advanced Converters -+++++++++++++++++++++++++++++ - -If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the -advanced functionalities of an advanced converter and save us from specifying two types. - -For example, a common idiom would be to have a class and a converter for that class: - -.. code-block:: python3 - - class JoinDistance: - def __init__(self, joined, created): - self.joined = joined - self.created = created - - @property - def delta(self): - return self.joined - self.created - - class JoinDistanceConverter(commands.MemberConverter): - async def convert(self, ctx, argument): - member = await super().convert(ctx, argument) - return JoinDistance(member.joined_at, member.created_at) - - @bot.command() - async def delta(ctx, *, member: JoinDistanceConverter): - is_new = member.delta.days < 100 - if is_new: - await ctx.send("Hey you're pretty new!") - else: - await ctx.send("Hm you're not so new.") - -This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type: - -.. code-block:: python3 - - class JoinDistance: - def __init__(self, joined, created): - self.joined = joined - self.created = created - - @classmethod - async def convert(cls, ctx, argument): - member = await commands.MemberConverter().convert(ctx, argument) - return cls(member.joined_at, member.created_at) - - @property - def delta(self): - return self.joined - self.created - - @bot.command() - async def delta(ctx, *, member: JoinDistance): - is_new = member.delta.days < 100 - if is_new: - await ctx.send("Hey you're pretty new!") - else: - await ctx.send("Hm you're not so new.") - -Discord Converters -++++++++++++++++++++ - -Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes -working with them easy. - -For example, to receive a :class:`Member` you can just pass it as a converter: - -.. code-block:: python3 - - @bot.command() - async def joined(ctx, *, member: discord.Member): - await ctx.send(f'{member} joined on {member.joined_at}') - -When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a -parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, -or just a regular username. The default set of converters have been written to be as easy to use as possible. - -A lot of discord models work out of the gate as a parameter: - -- :class:`Object` (since v2.0) -- :class:`Member` -- :class:`User` -- :class:`Message` (since v1.1) -- :class:`PartialMessage` (since v1.7) -- :class:`abc.GuildChannel` (since 2.0) -- :class:`TextChannel` -- :class:`VoiceChannel` -- :class:`StageChannel` (since v1.7) -- :class:`StoreChannel` (since v1.7) -- :class:`CategoryChannel` -- :class:`Invite` -- :class:`Guild` (since v1.7) -- :class:`Role` -- :class:`Game` -- :class:`Colour` -- :class:`Emoji` -- :class:`PartialEmoji` -- :class:`Thread` (since v2.0) - -Having any of these set as the converter will intelligently convert the argument to the appropriate target type you -specify. - -Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent -converter is given below: - -+--------------------------+-------------------------------------------------+-----------------------------+ -| Discord Class | Converter | Supported By Slash Commands | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`Object` | :class:`~ext.commands.ObjectConverter` | Not currently | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`Member` | :class:`~ext.commands.MemberConverter` | Yes, as type 6 (USER) | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`User` | :class:`~ext.commands.UserConverter` | Yes, as type 6 (USER) | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`Message` | :class:`~ext.commands.MessageConverter` | Not currently | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`PartialMessage` | :class:`~ext.commands.PartialMessageConverter` | Not currently | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`.GuildChannel` | :class:`~ext.commands.GuildChannelConverter` | Yes, as type 7 (CHANNEL) | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`TextChannel` | :class:`~ext.commands.TextChannelConverter` | Yes, as type 7 (CHANNEL) | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`VoiceChannel` | :class:`~ext.commands.VoiceChannelConverter` | Yes, as type 7 (CHANNEL) | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`StageChannel` | :class:`~ext.commands.StageChannelConverter` | Yes, as type 7 (CHANNEL) | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`StoreChannel` | :class:`~ext.commands.StoreChannelConverter` | Yes, as type 7 (CHANNEL) | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`CategoryChannel` | :class:`~ext.commands.CategoryChannelConverter` | Yes, as type 7 (CHANNEL) | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`Thread` | :class:`~ext.commands.ThreadConverter` | Yes, as type 7 (CHANNEL) | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`Invite` | :class:`~ext.commands.InviteConverter` | Not currently | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`Guild` | :class:`~ext.commands.GuildConverter` | Not currently | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`Role` | :class:`~ext.commands.RoleConverter` | Yes, as type 8 (ROLE) | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`Game` | :class:`~ext.commands.GameConverter` | Not currently | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`Colour` | :class:`~ext.commands.ColourConverter` | Not currently | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`Emoji` | :class:`~ext.commands.EmojiConverter` | Not currently | -+--------------------------+-------------------------------------------------+-----------------------------+ -| :class:`PartialEmoji` | :class:`~ext.commands.PartialEmojiConverter` | Not currently | -+--------------------------+-------------------------------------------------+-----------------------------+ - -.. admonition:: Slash Command Only - - If a slash command is not marked on the table above as supported, it will be sent as type 3 (STRING) - and parsed by normal content parsing, see - `the discord documentation `_ - for all supported types by the API. - - -By providing the converter it allows us to use them as building blocks for another converter: - -.. code-block:: python3 - - class MemberRoles(commands.MemberConverter): - async def convert(self, ctx, argument): - member = await super().convert(ctx, argument) - return [role.name for role in member.roles[1:]] # Remove everyone role! - - @bot.command() - async def roles(ctx, *, member: MemberRoles): - """Tells you a member's roles.""" - await ctx.send('I see the following roles: ' + ', '.join(member)) - -.. _ext_commands_special_converters: - -Special Converters -++++++++++++++++++++ - -The command extension also has support for certain converters to allow for more advanced and intricate use cases that go -beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your -commands in an easy to use manner. - -typing.Union -^^^^^^^^^^^^^^ - -A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of -a singular type. For example, given the following: - -.. code-block:: python3 - - import typing - - @bot.command() - async def union(ctx, what: typing.Union[discord.TextChannel, discord.Member]): - await ctx.send(what) - - -The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. -The way this works is through a left-to-right order. It first attempts to convert the input to a -:class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, -then a special error is raised, :exc:`~ext.commands.BadUnionArgument`. - -Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`. - -.. admonition:: Slash Command Only - - These are not currently supported by the Discord API and will be sent as type 3 (STRING) - -typing.Optional -^^^^^^^^^^^^^^^^^ - -A :data:`typing.Optional` is a special type hint that allows for "back-referencing" behaviour. If the converter fails to -parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be -passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any. - -Consider the following example: - -.. code-block:: python3 - - import typing - - @bot.command() - async def bottles(ctx, amount: typing.Optional[int] = 99, *, liquid="beer"): - await ctx.send(f'{amount} bottles of {liquid} on the wall!') - - -.. image:: /images/commands/optional1.png - -In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser -resumes handling, which in this case would be to pass it into the ``liquid`` parameter. - -.. note:: - - This converter only works in regular positional parameters, not variable parameters or keyword-only parameters. - -typing.Literal -^^^^^^^^^^^^^^^^ - -A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values -after being converted to the same type. For example, given the following: - -.. code-block:: python3 - - from typing import Literal - - @bot.command() - async def shop(ctx, buy_sell: Literal['buy', 'sell'], amount: Literal[1, 2], *, item: str): - await ctx.send(f'{buy_sell.capitalize()}ing {amount} {item}(s)!') - - -The ``buy_sell`` parameter must be either the literal string ``"buy"`` or ``"sell"`` and ``amount`` must convert to the -``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, -:exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter. - -Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules. - -Greedy -^^^^^^^^ - -The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied -to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert -any further. - -Consider the following example: - -.. code-block:: python3 - - @bot.command() - async def slap(ctx, members: commands.Greedy[discord.Member], *, reason='no reason'): - slapped = ", ".join(x.name for x in members) - await ctx.send(f'{slapped} just got slapped for {reason}') - -When invoked, it allows for any number of members to be passed in: - -.. image:: /images/commands/greedy1.png - -The type passed when using this converter depends on the parameter type that it is being attached to: - -- Positional parameter types will receive either the default parameter or a :class:`list` of the converted values. -- Variable parameter types will be a :class:`tuple` as usual. -- Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all. - -:class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value. - -When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes: - -.. code-block:: python3 - - import typing - - @bot.command() - async def ban(ctx, members: commands.Greedy[discord.Member], - delete_days: typing.Optional[int] = 0, *, - reason: str): - """Mass bans members with an optional delete_days parameter""" - for member in members: - await member.ban(delete_message_days=delete_days, reason=reason) - - -This command can be invoked any of the following ways: - -.. code-block:: none - - $ban @Member @Member2 spam bot - $ban @Member @Member2 7 spam bot - $ban @Member spam - -.. warning:: - - The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a - price, they open you up to some parsing ambiguities that might surprise some people. - - For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a - :class:`int` could catch a member named after a number due to the different ways a - :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce - unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes - allowed through custom converters or reordering the parameters to minimise clashes. - - To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and - :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter. - -.. _ext_commands_flag_converter: - -FlagConverter -++++++++++++++ - -.. versionadded:: 2.0 - -A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly "flags" using :pep:`526` type annotations -or a syntax more reminiscent of the :mod:`py:dataclasses` module. - -For example, the following code: - -.. code-block:: python3 - - from discord.ext import commands - import discord - - class BanFlags(commands.FlagConverter): - member: discord.Member - reason: str - days: int = 1 - - @commands.command() - async def ban(ctx, *, flags: BanFlags): - plural = f'{flags.days} days' if flags.days != 1 else f'{flags.days} day' - await ctx.send(f'Banned {flags.member} for {flags.reason!r} (deleted {plural} worth of messages)') - -Allows the user to invoke the command using a simple flag-like syntax: - -.. image:: /images/commands/flags1.png - -Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the -flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have -multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use -keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting. - -Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a -class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` -function. These flags are then used to define the interface that your users will use. The annotations correspond to -the converters that the flag arguments must adhere to. - -For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name -or the default value then the :func:`~ext.commands.flag` function can come in handy: - -.. code-block:: python3 - - from typing import List - - class BanFlags(commands.FlagConverter): - members: List[discord.Member] = commands.flag(name='member', default=lambda ctx: []) - -This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that -the default value is an empty list. For greater customisability, the default can either be a value or a callable -that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine. - -In order to customise the flag syntax we also have a few options that can be passed to the class parameter list: - -.. code-block:: python3 - - # --hello world syntax - class PosixLikeFlags(commands.FlagConverter, delimiter=' ', prefix='--'): - hello: str - - - # /make food - class WindowsLikeFlags(commands.FlagConverter, prefix='/', delimiter=''): - make: str - - # TOPIC: not allowed nsfw: yes Slowmode: 100 - class Settings(commands.FlagConverter, case_insensitive=True): - topic: Optional[str] - nsfw: Optional[bool] - slowmode: Optional[int] - -.. note:: - - Despite the similarities in these examples to command like arguments, the syntax and parser is not - a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result - all flags need a corresponding value. - -.. admonition:: Slash Command Only - - As these are built very similar to slash command options, they are converted into options and parsed - back into flags when the slash command is executed. - -The flag converter is similar to regular commands and allows you to use most types of converters -(with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific -annotations as described below. - -typing.List -^^^^^^^^^^^^^ - -If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times. - -For example, augmenting the example above: - -.. code-block:: python3 - - from discord.ext import commands - from typing import List - import discord - - class BanFlags(commands.FlagConverter): - members: List[discord.Member] = commands.flag(name='member') - reason: str - days: int = 1 - - @commands.command() - async def ban(ctx, *, flags: BanFlags): - for member in flags.members: - await member.ban(reason=flags.reason, delete_message_days=flags.days) - - members = ', '.join(str(member) for member in flags.members) - plural = f'{flags.days} days' if flags.days != 1 else f'{flags.days} day' - await ctx.send(f'Banned {members} for {flags.reason!r} (deleted {plural} worth of messages)') - -This is called by repeatedly specifying the flag: - -.. image:: /images/commands/flags2.png - -typing.Tuple -^^^^^^^^^^^^^ - -Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation -allows for "greedy-like" semantics using a variadic tuple: - -.. code-block:: python3 - - from discord.ext import commands - from typing import Tuple - import discord - - class BanFlags(commands.FlagConverter): - members: Tuple[discord.Member, ...] - reason: str - days: int = 1 - -This allows the previous ``ban`` command to be called like this: - -.. image:: /images/commands/flags3.png - -The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code: - -.. code-block:: python3 - - # point: 10 11 point: 12 13 - class Coordinates(commands.FlagConverter): - point: Tuple[int, int] - - -.. warning:: - - Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted - if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces - then quotes should be used to disambiguate it from the other element of the tuple. - -typing.Dict -^^^^^^^^^^^^^ - -A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type -given as a :class:`dict` rather than a :class:`list`. - - -.. _ext_commands_error_handler: - -Error Handling ----------------- - -When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us -that an error has happened and has been silently ignored. - -In order to handle our errors, we must use something called an error handler. There is a global error handler, called -:func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is -called for every error reached. - -Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error -handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`: - -.. code-block:: python3 - - @bot.command() - async def info(ctx, *, member: discord.Member): - """Tells you some info about the member.""" - msg = f'{member} joined on {member.joined_at} and has {len(member.roles)} roles.' - await ctx.send(msg) - - @info.error - async def info_error(ctx, error): - if isinstance(error, commands.BadArgument): - await ctx.send('I could not find that member...') - -The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from -:exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation. - -Checks -------- - -There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked -them from using our bot earlier. The commands extension comes with full support for these things in a concept called a -:ref:`ext_commands_api_checks`. - -A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following -options: - -- Return ``True`` to signal that the person can run the command. -- Return ``False`` to signal that the person cannot run the command. -- Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command. - - - This allows you to have custom error messages for you to handle in the - :ref:`error handlers `. - -To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` -decorator. For example: - -.. code-block:: python3 - - async def is_owner(ctx): - return ctx.author.id == 316026178463072268 - - @bot.command(name='eval') - @commands.check(is_owner) - async def _eval(ctx, *, code): - """A bad example of an eval command""" - await ctx.send(eval(code)) - -This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and -want to split it into its own decorator. To do that we can just add another level of depth: - -.. code-block:: python3 - - def is_owner(): - async def predicate(ctx): - return ctx.author.id == 316026178463072268 - return commands.check(predicate) - - @bot.command(name='eval') - @is_owner() - async def _eval(ctx, *, code): - """A bad example of an eval command""" - await ctx.send(eval(code)) - - -Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`): - -.. code-block:: python3 - - @bot.command(name='eval') - @commands.is_owner() - async def _eval(ctx, *, code): - """A bad example of an eval command""" - await ctx.send(eval(code)) - -When multiple checks are specified, **all** of them must be ``True``: - -.. code-block:: python3 - - def is_in_guild(guild_id): - async def predicate(ctx): - return ctx.guild and ctx.guild.id == guild_id - return commands.check(predicate) - - @bot.command() - @commands.is_owner() - @is_in_guild(41771983423143937) - async def secretguilddata(ctx): - """super secret stuff""" - await ctx.send('secret stuff') - -If any of those checks fail in the example above, then the command will not be run. - -When an error happens, the error is propagated to the :ref:`error handlers `. If you do not -raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a -:exc:`~ext.commands.CheckFailure` exception as so: - -.. code-block:: python3 - - @bot.command() - @commands.is_owner() - @is_in_guild(41771983423143937) - async def secretguilddata(ctx): - """super secret stuff""" - await ctx.send('secret stuff') - - @secretguilddata.error - async def secretguilddata_error(ctx, error): - if isinstance(error, commands.CheckFailure): - await ctx.send('nothing to see here comrade.') - -If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``: - -.. code-block:: python3 - - class NoPrivateMessages(commands.CheckFailure): - pass - - def guild_only(): - async def predicate(ctx): - if ctx.guild is None: - raise NoPrivateMessages('Hey no DMs!') - return True - return commands.check(predicate) - - @guild_only() - async def test(ctx): - await ctx.send('Hey this is not a DM! Nice.') - - @test.error - async def test_error(ctx, error): - if isinstance(error, NoPrivateMessages): - await ctx.send(error) - -.. note:: - - Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`. - -Global Checks -++++++++++++++ - -Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well -using the global check concept. - -Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator. - -For example, to block all DMs we could do the following: - -.. code-block:: python3 - - @bot.check - async def globally_block_dms(ctx): - return ctx.guild is not None - -.. warning:: - - Be careful on how you write your global checks, as it could also lock you out of your own bot. - -.. need a note on global check once here I think diff --git a/docs/Python/html/_sources/ext/commands/extensions.rst.txt b/docs/Python/html/_sources/ext/commands/extensions.rst.txt deleted file mode 100644 index 20aa6e12..00000000 --- a/docs/Python/html/_sources/ext/commands/extensions.rst.txt +++ /dev/null @@ -1,64 +0,0 @@ -.. currentmodule:: discord - -.. _ext_commands_extensions: - -Extensions -============= - -There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**. - -Primer --------- - -An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension. - -An example extension looks like this: - -.. code-block:: python3 - :caption: hello.py - :emphasize-lines: 7,8 - - from discord.ext import commands - - @commands.command() - async def hello(ctx): - await ctx.send(f'Hello {ctx.author.display_name}.') - - def setup(bot): - bot.add_command(hello) - -In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``. - -.. admonition:: Cogs - :class: helpful - - Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`. - -.. note:: - - Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``. - -Reloading ------------ - -When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`. - -.. code-block:: python3 - - >>> bot.reload_extension('hello') - -Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened. - -Cleaning Up -------------- - -Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded. - -.. code-block:: python3 - :caption: basic_ext.py - - def setup(bot): - print('I am being loaded!') - - def teardown(bot): - print('I am being unloaded!') diff --git a/docs/Python/html/_sources/ext/commands/index.rst.txt b/docs/Python/html/_sources/ext/commands/index.rst.txt deleted file mode 100644 index 9fd5e63c..00000000 --- a/docs/Python/html/_sources/ext/commands/index.rst.txt +++ /dev/null @@ -1,19 +0,0 @@ -.. _discord_ext_commands: - -``discord.ext.commands`` -- Bot commands framework -==================================================== - -``discord.py`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of -bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in -creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``discord.py`` comes with an -extension library that handles this for you. - - -.. toctree:: - :maxdepth: 2 - - commands - cogs - extensions - slash-commands - api diff --git a/docs/Python/html/_sources/ext/commands/slash-commands.rst.txt b/docs/Python/html/_sources/ext/commands/slash-commands.rst.txt deleted file mode 100644 index db0b89b6..00000000 --- a/docs/Python/html/_sources/ext/commands/slash-commands.rst.txt +++ /dev/null @@ -1,23 +0,0 @@ -.. currentmodule:: discord - -.. _ext_commands_slash_commands: - -Slash Commands -============== - -Slash Commands are currently supported in enhanced-discord.py using a system on top of ext.commands. - -This system is very simple to use, and can be enabled via :attr:`.Bot.slash_commands` globally, -or only for specific commands via :attr:`.Command.slash_command`. - -There is also the parameter ``slash_command_guilds`` which can be passed to either :class:`.Bot` or the command -decorator in order to only upload the commands as guild commands to these specific guild IDs, however this -should only be used for testing or small (<10 guilds) bots. - -If you want to add option descriptions to your commands, you should use :class:`.Option` - -For troubleshooting, see the :ref:`FAQ ` - -.. admonition:: Slash Command Only - - For parts of the docs specific to slash commands, look for this box! diff --git a/docs/Python/html/_sources/ext/tasks/index.rst.txt b/docs/Python/html/_sources/ext/tasks/index.rst.txt deleted file mode 100644 index 8f90a87d..00000000 --- a/docs/Python/html/_sources/ext/tasks/index.rst.txt +++ /dev/null @@ -1,154 +0,0 @@ -.. _discord_ext_tasks: - -``discord.ext.tasks`` -- asyncio.Task helpers -==================================================== - -.. versionadded:: 1.1.0 - -One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for: - -- How do I handle :exc:`asyncio.CancelledError`? -- What do I do if the internet goes out? -- What is the maximum number of seconds I can sleep anyway? - -The goal of this discord.py extension is to abstract all these worries away from you. - -Recipes ---------- - -A simple background task in a :class:`~discord.ext.commands.Cog`: - -.. code-block:: python3 - - from discord.ext import tasks, commands - - class MyCog(commands.Cog): - def __init__(self): - self.index = 0 - self.printer.start() - - def cog_unload(self): - self.printer.cancel() - - @tasks.loop(seconds=5.0) - async def printer(self): - print(self.index) - self.index += 1 - -Adding an exception to handle during reconnect: - -.. code-block:: python3 - - import asyncpg - from discord.ext import tasks, commands - - class MyCog(commands.Cog): - def __init__(self, bot): - self.bot = bot - self.data = [] - self.batch_update.add_exception_type(asyncpg.PostgresConnectionError) - self.batch_update.start() - - def cog_unload(self): - self.batch_update.cancel() - - @tasks.loop(minutes=5.0) - async def batch_update(self): - async with self.bot.pool.acquire() as con: - # batch update here... - pass - -Looping a certain amount of times before exiting: - -.. code-block:: python3 - - from discord.ext import tasks - - @tasks.loop(seconds=5.0, count=5) - async def slow_count(): - print(slow_count.current_loop) - - @slow_count.after_loop - async def after_slow_count(): - print('done!') - - slow_count.start() - -Waiting until the bot is ready before the loop starts: - -.. code-block:: python3 - - from discord.ext import tasks, commands - - class MyCog(commands.Cog): - def __init__(self, bot): - self.index = 0 - self.bot = bot - self.printer.start() - - def cog_unload(self): - self.printer.cancel() - - @tasks.loop(seconds=5.0) - async def printer(self): - print(self.index) - self.index += 1 - - @printer.before_loop - async def before_printer(self): - print('waiting...') - await self.bot.wait_until_ready() - -Doing something during cancellation: - -.. code-block:: python3 - - from discord.ext import tasks, commands - import asyncio - - class MyCog(commands.Cog): - def __init__(self, bot): - self.bot= bot - self._batch = [] - self.lock = asyncio.Lock() - self.bulker.start() - - async def do_bulk(self): - # bulk insert data here - ... - - @tasks.loop(seconds=10.0) - async def bulker(self): - async with self.lock: - await self.do_bulk() - - @bulker.after_loop - async def on_bulker_cancel(self): - if self.bulker.is_being_cancelled() and len(self._batch) != 0: - # if we're cancelled and we have some data left... - # let's insert it to our database - await self.do_bulk() - - -.. _ext_tasks_api: - -API Reference ---------------- - -.. attributetable:: discord.ext.tasks.Loop - -.. autoclass:: discord.ext.tasks.Loop() - :members: - :special-members: __call__ - :exclude-members: after_loop, before_loop, error - - .. automethod:: Loop.after_loop() - :decorator: - - .. automethod:: Loop.before_loop() - :decorator: - - .. automethod:: Loop.error() - :decorator: - -.. autofunction:: discord.ext.tasks.loop diff --git a/docs/Python/html/_sources/faq.rst.txt b/docs/Python/html/_sources/faq.rst.txt deleted file mode 100644 index 556bb34f..00000000 --- a/docs/Python/html/_sources/faq.rst.txt +++ /dev/null @@ -1,443 +0,0 @@ -:orphan: - -.. currentmodule:: discord -.. _faq: - -Frequently Asked Questions -=========================== - -This is a list of Frequently Asked Questions regarding using ``discord.py`` and its extension modules. Feel free to suggest a -new question or submit one via pull requests. - -.. contents:: Questions - :local: - -Coroutines ------------- - -Questions regarding coroutines and asyncio belong here. - -What is a coroutine? -~~~~~~~~~~~~~~~~~~~~~~ - -A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops -the function's execution at that point and works on other things until it comes back to that point and finishes off its work. -This allows for your program to be doing multiple things at the same time without using threads or complicated -multiprocessing. - -**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.** - -Where can I use ``await``\? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -You can only use ``await`` inside ``async def`` functions and nowhere else. - -What does "blocking" mean? -~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not -despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make -sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has -not stopped the function's execution at that point to do other things. - -If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: -``Heartbeat blocked for more than N seconds.`` -See :ref:`logging_setup` for details on enabling logging. - -A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` -instead. Similar to this example: :: - - # bad - time.sleep(10) - - # good - await asyncio.sleep(10) - -Another common source of blocking for too long is using HTTP requests with the famous module :doc:`req:index`. -While :doc:`req:index` is an amazing module for non-asynchronous programming, it is not a good choice for -:mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which -is installed on the side with this library. - -Consider the following example: :: - - # bad - r = requests.get('http://aws.random.cat/meow') - if r.status_code == 200: - js = r.json() - await channel.send(js['file']) - - # good - async with aiohttp.ClientSession() as session: - async with session.get('http://aws.random.cat/meow') as r: - if r.status == 200: - js = await r.json() - await channel.send(js['file']) - -General ---------- - -General questions regarding library usage belong here. - -Where can I find usage examples? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Example code can be found in the `examples folder `_ -in the repository. - -How do I set the "Playing" status? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object. - -The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime. - -.. warning:: - - It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once. - - There is a high chance of disconnecting if presences are changed right after connecting. - -The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. -For memory optimisation purposes, some activities are offered in slimmed-down versions: - -- :class:`Game` -- :class:`Streaming` - -Putting both of these pieces of info together, you get the following: :: - - client = discord.Client(activity=discord.Game(name='my game')) - - # or, for watching: - activity = discord.Activity(name='my activity', type=discord.ActivityType.watching) - client = discord.Client(activity=activity) - -How do I send a message to a specific channel? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -You must fetch the channel directly and then call the appropriate method. Example: :: - - channel = client.get_channel(12324234183172) - await channel.send('hello') - -How do I send a DM? -~~~~~~~~~~~~~~~~~~~ - -Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: :: - - user = client.get_user(381870129706958858) - await user.send('👀') - -If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: :: - - await message.author.send('👋') - -How do I get the ID of a sent message? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -:meth:`abc.Messageable.send` returns the :class:`Message` that was sent. -The ID of a message can be accessed via :attr:`Message.id`: :: - - message = await channel.send('hmm…') - message_id = message.id - -How do I upload an image? -~~~~~~~~~~~~~~~~~~~~~~~~~ - -To upload something to Discord you have to use the :class:`File` object. - -A :class:`File` accepts two parameters, the file-like object (or file path) and the filename -to pass to Discord when uploading. - -If you want to upload an image it's as simple as: :: - - await channel.send(file=discord.File('my_file.png')) - -If you have a file-like object you can do as follows: :: - - with open('my_file.png', 'rb') as fp: - await channel.send(file=discord.File(fp, 'new_filename.png')) - -To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\: :: - - my_files = [ - discord.File('result.zip'), - discord.File('teaser_graph.png'), - ] - await channel.send(files=my_files) - -If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` -and then pass an :class:`io.BytesIO` instance to :class:`File` like so: - -.. code-block:: python3 - - import io - import aiohttp - - async with aiohttp.ClientSession() as session: - async with session.get(my_url) as resp: - if resp.status != 200: - return await channel.send('Could not download file...') - data = io.BytesIO(await resp.read()) - await channel.send(file=discord.File(data, 'cool_image.png')) - - -How can I add a reaction to a message? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -You use the :meth:`Message.add_reaction` method. - -If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways: - -- ``'👍'`` -- ``'\U0001F44D'`` -- ``'\N{THUMBS UP SIGN}'`` - -Quick example: :: - - emoji = '\N{THUMBS UP SIGN}' - # or '\U0001f44d' or '👍' - await message.add_reaction(emoji) - -In case you want to use emoji that come from a message, you already get their code points in the content without needing -to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands. - -For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you -can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ -:func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections. - -The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. -For example, sending the message ``\:python3:`` with the client will result in ``<:python3:232720527448342530>``. - -Quick example: :: - - - # if you have the ID already - emoji = client.get_emoji(310177266011340803) - await message.add_reaction(emoji) - - # no ID, do a lookup - emoji = discord.utils.get(guild.emojis, name='LUL') - if emoji: - await message.add_reaction(emoji) - - # if you have the name and ID of a custom emoji: - emoji = '<:python3:232720527448342530>' - await message.add_reaction(emoji) - -How do I pass a coroutine to the player's "after" function? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. -This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable -that wraps up a couple of aspects. - -The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are -technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for -us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call -a coroutine from another thread. - -However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of -this together we can do the following: :: - - def my_after(error): - coro = some_channel.send('Song is done!') - fut = asyncio.run_coroutine_threadsafe(coro, client.loop) - try: - fut.result() - except: - # an error happened sending the message - pass - - voice.play(discord.FFmpegPCMAudio(url), after=my_after) - -How do I run something in the background? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -`Check the background_task.py example. `_ - -How do I get a specific model? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -There are multiple ways of doing this. If you have a specific model's ID then you can use -one of the following functions: - -- :meth:`Client.get_channel` -- :meth:`Client.get_guild` -- :meth:`Client.get_user` -- :meth:`Client.get_emoji` -- :meth:`Guild.get_member` -- :meth:`Guild.get_channel` -- :meth:`Guild.get_role` - -The following use an HTTP request: - -- :meth:`abc.Messageable.fetch_message` -- :meth:`Client.fetch_user` -- :meth:`Client.fetch_guilds` -- :meth:`Client.fetch_guild` -- :meth:`Guild.fetch_emoji` -- :meth:`Guild.fetch_emojis` -- :meth:`Guild.fetch_member` - - -If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding -specific models. - -Quick example: :: - - # find a guild by name - guild = discord.utils.get(client.guilds, name='My Server') - - # make sure to check if it's found - if guild is not None: - # find a channel by name - channel = discord.utils.get(guild.text_channels, name='cool-channel') - -How do I make a web request? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -To make a request, you should use a non-blocking library. -This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `. - -Quick example: :: - - async with aiohttp.ClientSession() as session: - async with session.get('http://aws.random.cat/meow') as r: - if r.status == 200: - js = await r.json() - -See `aiohttp's full documentation `_ for more information. - -How do I use a local image file for an embed image? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Discord special-cases uploading an image attachment and using it within an embed so that it will not -display separately, but instead in the embed's thumbnail, image, footer or author icon. - -To do so, upload the image normally with :meth:`abc.Messageable.send`, -and set the embed's image URL to ``attachment://image.png``, -where ``image.png`` is the filename of the image you will send. - - -Quick example: :: - - file = discord.File("path/to/my/image.png", filename="image.png") - embed = discord.Embed() - embed.set_image(url="attachment://image.png") - await channel.send(file=file, embed=embed) - -.. note :: - - Due to a Discord limitation, filenames may not include underscores. - -Is there an event for audit log entries being created? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Since Discord does not dispatch this information in the gateway, the library cannot provide this information. -This is currently a Discord limitation. - -Commands Extension -------------------- - -Questions regarding ``discord.ext.commands`` belong here. - -Why does ``on_message`` make my commands stop working? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a -``bot.process_commands(message)`` line at the end of your ``on_message``. For example: :: - - @bot.event - async def on_message(message): - # do some extra stuff here - - await bot.process_commands(message) - -Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not -manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response -to a message. Example:: - - @bot.listen('on_message') - async def whatever_you_want_to_call_it(message): - # do stuff here - # do not process commands here - -Why do my arguments require quotes? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -In a simple command defined as: :: - - @bot.command() - async def echo(ctx, message: str): - await ctx.send(message) - -Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call -it via ``?echo "a b c"`` or change the signature to have "consume rest" behaviour. Example: :: - - @bot.command() - async def echo(ctx, *, message: str): - await ctx.send(message) - -This will allow you to use ``?echo a b c`` without needing the quotes. - -How do I get the original ``message``\? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original -message. - -Example: :: - - @bot.command() - async def length(ctx): - await ctx.send(f'Your message is {len(ctx.message.content)} characters long.') - -How do I make a subcommand? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into -the group operating as "subcommands". These groups can be arbitrarily nested as well. - -Example: :: - - @bot.group() - async def git(ctx): - if ctx.invoked_subcommand is None: - await ctx.send('Invalid git command passed...') - - @git.command() - async def push(ctx, remote: str, branch: str): - await ctx.send(f'Pushing to {remote} {branch}') - -This could then be used as ``?git push origin master``. - -How do I make slash commands? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -See :doc:`/ext/commands/slash-commands` - -My slash commands aren't showing up! -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. _ext_commands_slash_command_troubleshooting: - -You need to invite your bot with the ``application.commands`` scope on each guild and -you need the :attr:`Permissions.use_slash_commands` permission in order to see slash commands. - -.. image:: /images/discord_oauth2_slash_scope.png - :alt: The scopes checkbox with "bot" and "applications.commands" ticked. - -Global slash commands (created by not specifying :attr:`~ext.commands.Bot.slash_command_guilds`) will also take up an -hour to refresh on discord's end, so it is recommended to set :attr:`~ext.commands.Bot.slash_command_guilds` for development. - -If none of this works, make sure you are actually running enhanced-discord.py by doing ``print(bot.slash_commands)`` - -My bot won't start after enabling slash commands! -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -This means some of your command metadata is invalid for slash commands. -Make sure your command names and option names are lowercase, and they have to match the regex ``^[\w-]{1,32}$`` - -If you cannot figure out the problem, you should disable slash commands globally (:attr:`~ext.commands.Bot.slash_commands`\=False) -then go through commands, enabling them specifically with :attr:`~.commands.Command.slash_command`\=True until it -errors, then you can debug the problem with that command specifically. diff --git a/docs/Python/html/_sources/index.rst.txt b/docs/Python/html/_sources/index.rst.txt deleted file mode 100644 index e1af5163..00000000 --- a/docs/Python/html/_sources/index.rst.txt +++ /dev/null @@ -1,76 +0,0 @@ -.. discord.py documentation master file, created by - sphinx-quickstart on Fri Aug 21 05:43:30 2015. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to discord.py -=========================== - -.. image:: /images/snake.svg -.. image:: /images/snake_dark.svg - -discord.py is a modern, easy to use, feature-rich, and async ready API wrapper -for Discord. - -**Features:** - -- Modern Pythonic API using ``async``\/``await`` syntax -- Sane rate limit handling that prevents 429s -- Command extension to aid with bot creation -- Easy to use with an object oriented design -- Optimised for both speed and memory - -Getting started ------------------ - -Is this your first time using the library? This is the place to get started! - -- **First steps:** :doc:`intro` | :doc:`quickstart` | :doc:`logging` -- **Working with Discord:** :doc:`discord` | :doc:`intents` -- **Examples:** Many examples are available in the :resource:`repository `. - -Getting help --------------- - -If you're having trouble with something, these resources might help. - -- Try the :doc:`faq` first, it's got answers to all common questions. -- Ask us and hang out with us in our :resource:`Discord ` server. -- If you're looking for something specific, try the :ref:`index ` or :ref:`searching `. -- Report bugs in the :resource:`issue tracker `. -- Ask in our :resource:`GitHub discussions page `. - -Extensions ------------- - -These extensions help you during development when it comes to common tasks. - -.. toctree:: - :maxdepth: 1 - - ext/commands/index.rst - ext/tasks/index.rst - -Manuals ---------- - -These pages go into great detail about everything the API can do. - -.. toctree:: - :maxdepth: 1 - - api - discord.ext.commands API Reference - discord.ext.tasks API Reference - -Meta ------- - -If you're looking for something related to the project itself, it's here. - -.. toctree:: - :maxdepth: 1 - - whats_new - version_guarantees - migrating diff --git a/docs/Python/html/_sources/intents.rst.txt b/docs/Python/html/_sources/intents.rst.txt deleted file mode 100644 index a9708aaf..00000000 --- a/docs/Python/html/_sources/intents.rst.txt +++ /dev/null @@ -1,192 +0,0 @@ -:orphan: - -.. currentmodule:: discord -.. versionadded:: 1.5 -.. _intents_primer: - -A Primer to Gateway Intents -============================= - -In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation. - -These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument. - -If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members` and :attr:`Intents.presences`. - -What intents are needed? --------------------------- - -The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables. - -For example, if you want a bot that functions without spammy events like presences or typing then we could do the following: - -.. code-block:: python3 - :emphasize-lines: 7,9,10 - - import discord - intents = discord.Intents.default() - intents.typing = False - intents.presences = False - - # Somewhere else: - # client = discord.Client(intents=intents) - # or - # from discord.ext import commands - # bot = commands.Bot(command_prefix='!', intents=intents) - -Note that this doesn't enable :attr:`Intents.members` since it's a privileged intent. - -Another example showing a bot that only deals with messages and guild information: - -.. code-block:: python3 - :emphasize-lines: 7,9,10 - - import discord - intents = discord.Intents(messages=True, guilds=True) - # If you also want reaction events enable the following: - # intents.reactions = True - - # Somewhere else: - # client = discord.Client(intents=intents) - # or - # from discord.ext import commands - # bot = commands.Bot(command_prefix='!', intents=intents) - -.. _privileged_intents: - -Privileged Intents ---------------------- - -With the API change requiring bot authors to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**. - -A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following: - -1. Make sure you're logged on to the `Discord website `_. -2. Navigate to the `application page `_. -3. Click on the bot you want to enable privileged intents for. -4. Navigate to the bot tab on the left side of the screen. - - .. image:: /images/discord_bot_tab.png - :alt: The bot tab in the application page. - -5. Scroll down to the "Privileged Gateway Intents" section and enable the ones you want. - - .. image:: /images/discord_privileged_intents.png - :alt: The privileged gateway intents selector. - -.. warning:: - - Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_. If your bot is already verified and you would like to enable a privileged intent you must go through `Discord support `_ and talk to them about it. - -.. note:: - - Even if you enable intents through the developer portal, you still have to enable the intents - through code as well. - -Do I need privileged intents? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -This is a quick checklist to see if you need specific privileged intents. - -.. _need_presence_intent: - -Presence Intent -+++++++++++++++++ - -- Whether you use :attr:`Member.status` at all to track member statuses. -- Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities. - -.. _need_members_intent: - -Member Intent -+++++++++++++++ - -- Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events. -- Whether you want to track member updates such as nickname or role changes. -- Whether you want to track user updates such as usernames, avatars, discriminators, etc. -- Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`. -- Whether you want high accuracy member cache under :attr:`Guild.members`. - -.. _intents_member_cache: - -Member Cache -------------- - -Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them. - -To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible. - -It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example: - -- :func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled. -- :func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled. -- :func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled. -- :func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled. -- The reaction add events do not contain additional information when in direct messages. This is a Discord limitation. -- The reaction removal events do not have member information. This is a Discord limitation. - -Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled. - -.. _retrieving_members: - -Retrieving Members --------------------- - -If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this: - -- :meth:`Guild.query_members` - - Used to query members by a prefix matching nickname or username. - - This can also be used to query members by their user ID. - - This uses the gateway and not the HTTP. -- :meth:`Guild.chunk` - - This can be used to fetch the entire member list through the gateway. -- :meth:`Guild.fetch_member` - - Used to fetch a member by ID through the HTTP API. -- :meth:`Guild.fetch_members` - - used to fetch a large number of members through the HTTP API. - -It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds. - -Troubleshooting ------------------- - -Some common issues relating to the mandatory intent change. - -Where'd my members go? -~~~~~~~~~~~~~~~~~~~~~~~~ - -Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true. - -For example: - -.. code-block:: python3 - :emphasize-lines: 3,6,8,9 - - import discord - intents = discord.Intents.default() - intents.members = True - - # Somewhere else: - # client = discord.Client(intents=intents) - # or - # from discord.ext import commands - # bot = commands.Bot(command_prefix='!', intents=intents) - -Why does ``on_ready`` take so long to fire? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested. - -There are a few solutions to fix this. - -The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced. - -The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `. - -To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are "large" (over 250 members). - -Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list. - -Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this. - -If you truly dislike the direction Discord is going with their API, you can contact them via `support `_. diff --git a/docs/Python/html/_sources/intro.rst.txt b/docs/Python/html/_sources/intro.rst.txt deleted file mode 100644 index 12a73c70..00000000 --- a/docs/Python/html/_sources/intro.rst.txt +++ /dev/null @@ -1,113 +0,0 @@ -:orphan: - -.. currentmodule:: discord - -.. _intro: - -Introduction -============== - -This is the documentation for discord.py, a library for Python to aid -in creating applications that utilise the Discord API. - -Prerequisites ---------------- - -discord.py works with Python 3.8 or higher. Support for earlier versions of Python -is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported. - - -.. _installing: - -Installing ------------ - -You can get the library directly from PyPI: :: - - python3 -m pip install -U discord.py - -If you are using Windows, then the following should be used instead: :: - - py -3 -m pip install -U discord.py - - -To get voice support, you should use ``discord.py[voice]`` instead of ``discord.py``, e.g. :: - - python3 -m pip install -U discord.py[voice] - -On Linux environments, installing voice requires getting the following dependencies: - -- `libffi `_ -- `libnacl `_ -- `python3-dev `_ - -For a Debian-based system, the following command will get these dependencies: - -.. code-block:: shell - - $ apt install libffi-dev libnacl-dev python3-dev - -Remember to check your permissions! - -Virtual Environments -~~~~~~~~~~~~~~~~~~~~~ - -Sometimes you want to keep libraries from polluting system installs or use a different version of -libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. -For this purpose, the standard library as of Python 3.3 comes with a concept called "Virtual Environment"s to -help maintain these separate versions. - -A more in-depth tutorial is found on :doc:`py:tutorial/venv`. - -However, for the quick and dirty: - -1. Go to your project's working directory: - - .. code-block:: shell - - $ cd your-bot-source - $ python3 -m venv bot-env - -2. Activate the virtual environment: - - .. code-block:: shell - - $ source bot-env/bin/activate - - On Windows you activate it with: - - .. code-block:: shell - - $ bot-env\Scripts\activate.bat - -3. Use pip like usual: - - .. code-block:: shell - - $ pip install -U discord.py - -Congratulations. You now have a virtual environment all set up. - -Basic Concepts ---------------- - -discord.py revolves around the concept of :ref:`events `. -An event is something you listen to and then respond to. For example, when a message -happens, you will receive an event about it that you can respond to. - -A quick example to showcase how events work: - -.. code-block:: python3 - - import discord - - class MyClient(discord.Client): - async def on_ready(self): - print(f'Logged on as {self.user}!') - - async def on_message(self, message): - print(f'Message from {messsage.author}: {message.content}') - - client = MyClient() - client.run('my token goes here') - diff --git a/docs/Python/html/_sources/logging.rst.txt b/docs/Python/html/_sources/logging.rst.txt deleted file mode 100644 index 535a373f..00000000 --- a/docs/Python/html/_sources/logging.rst.txt +++ /dev/null @@ -1,46 +0,0 @@ -:orphan: - -.. versionadded:: 0.6.0 -.. _logging_setup: - -Setting Up Logging -=================== - -*discord.py* logs errors and debug information via the :mod:`logging` python -module. It is strongly recommended that the logging module is -configured, as no errors or warnings will be output if it is not set up. -Configuration of the ``logging`` module can be as simple as:: - - import logging - - logging.basicConfig(level=logging.INFO) - -Placed at the start of the application. This will output the logs from -discord as well as other libraries that use the ``logging`` module -directly to the console. - -The optional ``level`` argument specifies what level of events to log -out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and -``DEBUG`` and if not specified defaults to ``WARNING``. - -More advanced setups are possible with the :mod:`logging` module. For -example to write the logs to a file called ``discord.log`` instead of -outputting them to the console the following snippet can be used:: - - import discord - import logging - - logger = logging.getLogger('discord') - logger.setLevel(logging.DEBUG) - handler = logging.FileHandler(filename='discord.log', encoding='utf-8', mode='w') - handler.setFormatter(logging.Formatter('%(asctime)s:%(levelname)s:%(name)s: %(message)s')) - logger.addHandler(handler) - -This is recommended, especially at verbose levels such as ``INFO`` -and ``DEBUG``, as there are a lot of events logged and it would clog the -stdout of your program. - - - -For more information, check the documentation and tutorial of the -:mod:`logging` module. diff --git a/docs/Python/html/_sources/migrating.rst.txt b/docs/Python/html/_sources/migrating.rst.txt deleted file mode 100644 index baf97160..00000000 --- a/docs/Python/html/_sources/migrating.rst.txt +++ /dev/null @@ -1,1172 +0,0 @@ -.. currentmodule:: discord - -.. _migrating_1_0: - -Migrating to v1.0 -====================== - -v1.0 is one of the biggest breaking changes in the library due to a complete -redesign. - -The amount of changes are so massive and long that for all intents and purposes, it is a completely -new library. - -Part of the redesign involves making things more easy to use and natural. Things are done on the -:ref:`models ` instead of requiring a :class:`Client` instance to do any work. - -Python Version Change ------------------------ - -In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, -the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 -is dropped**. - -Major Model Changes ---------------------- - -Below are major model changes that have happened in v1.0 - -Snowflakes are int -~~~~~~~~~~~~~~~~~~~~ - -Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`. - -Quick example: :: - - # before - ch = client.get_channel('84319995256905728') - if message.author.id == '80528701850124288': - ... - - # after - ch = client.get_channel(84319995256905728) - if message.author.id == 80528701850124288: - ... - -This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have -to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally. - -Server is now Guild -~~~~~~~~~~~~~~~~~~~~~ - -The official API documentation calls the "Server" concept a "Guild" instead. In order to be more consistent with the -API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has -been changed as well. - -A list of changes is as follows: - -+-------------------------------+----------------------------------+ -| Before | After | -+-------------------------------+----------------------------------+ -| ``Message.server`` | :attr:`Message.guild` | -+-------------------------------+----------------------------------+ -| ``Channel.server`` | :attr:`.GuildChannel.guild` | -+-------------------------------+----------------------------------+ -| ``Client.servers`` | :attr:`Client.guilds` | -+-------------------------------+----------------------------------+ -| ``Client.get_server`` | :meth:`Client.get_guild` | -+-------------------------------+----------------------------------+ -| ``Emoji.server`` | :attr:`Emoji.guild` | -+-------------------------------+----------------------------------+ -| ``Role.server`` | :attr:`Role.guild` | -+-------------------------------+----------------------------------+ -| ``Invite.server`` | :attr:`Invite.guild` | -+-------------------------------+----------------------------------+ -| ``Member.server`` | :attr:`Member.guild` | -+-------------------------------+----------------------------------+ -| ``Permissions.manage_server`` | :attr:`Permissions.manage_guild` | -+-------------------------------+----------------------------------+ -| ``VoiceClient.server`` | :attr:`VoiceClient.guild` | -+-------------------------------+----------------------------------+ -| ``Client.create_server`` | :meth:`Client.create_guild` | -+-------------------------------+----------------------------------+ - -.. _migrating_1_0_model_state: - -Models are Stateful -~~~~~~~~~~~~~~~~~~~~~ - -As mentioned earlier, a lot of functionality was moved out of :class:`Client` and -put into their respective :ref:`model `. - -A list of these changes is enumerated below. - -+---------------------------------------+------------------------------------------------------------------------------+ -| Before | After | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.add_reaction`` | :meth:`Message.add_reaction` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.add_roles`` | :meth:`Member.add_roles` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.ban`` | :meth:`Member.ban` or :meth:`Guild.ban` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.change_nickname`` | :meth:`Member.edit` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.clear_reactions`` | :meth:`Message.clear_reactions` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.create_channel`` | :meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.create_custom_emoji`` | :meth:`Guild.create_custom_emoji` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.create_invite`` | :meth:`abc.GuildChannel.create_invite` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.create_role`` | :meth:`Guild.create_role` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.delete_channel`` | :meth:`abc.GuildChannel.delete` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.delete_channel_permissions`` | :meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None`` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.delete_custom_emoji`` | :meth:`Emoji.delete` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.delete_invite`` | :meth:`Invite.delete` or :meth:`Client.delete_invite` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.delete_message`` | :meth:`Message.delete` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.delete_messages`` | :meth:`TextChannel.delete_messages` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.delete_role`` | :meth:`Role.delete` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.delete_server`` | :meth:`Guild.delete` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.edit_channel`` | :meth:`TextChannel.edit` or :meth:`VoiceChannel.edit` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.edit_channel_permissions`` | :meth:`abc.GuildChannel.set_permissions` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.edit_custom_emoji`` | :meth:`Emoji.edit` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.edit_message`` | :meth:`Message.edit` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.edit_profile`` | :meth:`ClientUser.edit` (you get this from :attr:`Client.user`) | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.edit_role`` | :meth:`Role.edit` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.edit_server`` | :meth:`Guild.edit` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.estimate_pruned_members`` | :meth:`Guild.estimate_pruned_members` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.get_all_emojis`` | :attr:`Client.emojis` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.get_bans`` | :meth:`Guild.bans` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.get_invite`` | :meth:`Client.fetch_invite` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.get_message`` | :meth:`abc.Messageable.fetch_message` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.get_reaction_users`` | :meth:`Reaction.users` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.get_user_info`` | :meth:`Client.fetch_user` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.invites_from`` | :meth:`abc.GuildChannel.invites` or :meth:`Guild.invites` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.join_voice_channel`` | :meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`) | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.kick`` | :meth:`Guild.kick` or :meth:`Member.kick` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.leave_server`` | :meth:`Guild.leave` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.logs_from`` | :meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`) | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.move_channel`` | :meth:`TextChannel.edit` or :meth:`VoiceChannel.edit` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.move_member`` | :meth:`Member.edit` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.move_role`` | :meth:`Role.edit` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.pin_message`` | :meth:`Message.pin` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.pins_from`` | :meth:`abc.Messageable.pins` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.prune_members`` | :meth:`Guild.prune_members` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.purge_from`` | :meth:`TextChannel.purge` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.remove_reaction`` | :meth:`Message.remove_reaction` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.remove_roles`` | :meth:`Member.remove_roles` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.replace_roles`` | :meth:`Member.edit` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.send_file`` | :meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`) | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.send_message`` | :meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`) | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.send_typing`` | :meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`) | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.server_voice_state`` | :meth:`Member.edit` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.start_private_message`` | :meth:`User.create_dm` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.unban`` | :meth:`Guild.unban` or :meth:`Member.unban` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.unpin_message`` | :meth:`Message.unpin` | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.wait_for_message`` | :meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`) | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.wait_for_reaction`` | :meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`) | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.wait_until_login`` | Removed | -+---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.wait_until_ready`` | No change | -+---------------------------------------+------------------------------------------------------------------------------+ - -Property Changes -~~~~~~~~~~~~~~~~~~ - -In order to be a bit more consistent, certain things that were properties were changed to methods instead. - -The following are now methods instead of properties (requires parentheses): - -- :meth:`Role.is_default` -- :meth:`Client.is_ready` -- :meth:`Client.is_closed` - -Dict Value Change -~~~~~~~~~~~~~~~~~~~~~ - -Prior to v1.0 some aggregating properties that retrieved models would return "dict view" objects. - -As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would -be raised and crash the task. To alleviate this, the "dict view" objects were changed into lists. - -The following views were changed to a list: - -- :attr:`Client.guilds` -- :attr:`Client.users` (new in v1.0) -- :attr:`Client.emojis` (new in v1.0) -- :attr:`Guild.channels` -- :attr:`Guild.text_channels` (new in v1.0) -- :attr:`Guild.voice_channels` (new in v1.0) -- :attr:`Guild.emojis` -- :attr:`Guild.members` - -Voice State Changes -~~~~~~~~~~~~~~~~~~~~~ - -Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a -:attr:`Member.voice` attribute to refer to it. - -However, it was transparent to the user. In an effort to make the library save more memory, the -voice state change is now more visible. - -The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if -the member does not have a voice state this attribute can be ``None``. - -Quick example: :: - - # before - member.deaf - member.voice.voice_channel - - # after - if member.voice: # can be None - member.voice.deaf - member.voice.channel - - -User and Member Type Split -~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are "flattened" -by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional -change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind. - -These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you -can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list -of all :class:`User` your client can see with :attr:`Client.users`. - -.. _migrating_1_0_channel_split: - -Channel Type Split -~~~~~~~~~~~~~~~~~~~~~ - -Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` -property to help differentiate between them. - -In order to save memory the channels have been split into 4 different types: - -- :class:`TextChannel` for guild text channels. -- :class:`VoiceChannel` for guild voice channels. -- :class:`DMChannel` for DM channels with members. -- :class:`GroupChannel` for Group DM channels with members. - -With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`. - -The types are split into two different :ref:`discord_api_abcs`: - -- :class:`abc.GuildChannel` for guild channels. -- :class:`abc.PrivateChannel` for private channels (DMs and group DMs). - -So to check if something is a guild channel you would do: :: - - isinstance(channel, discord.abc.GuildChannel) - -And to check if it's a private channel you would do: :: - - isinstance(channel, discord.abc.PrivateChannel) - -Of course, if you're looking for only a specific type you can pass that too, e.g. :: - - isinstance(channel, discord.TextChannel) - -With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`. - - -Miscellaneous Model Changes -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -There were lots of other things added or removed in the models in general. - -They will be enumerated here. - -**Removed** - -- :meth:`Client.login` no longer accepts email and password logins. - - - Use a token and ``bot=False``. - -- ``Client.get_all_emojis`` - - - Use :attr:`Client.emojis` instead. - -- ``Client.messages`` - - - Use read-only :attr:`Client.cached_messages` instead. - -- ``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone. - - - Use :meth:`Client.wait_for` instead. - -- ``Channel.voice_members`` - - - Use :attr:`VoiceChannel.members` instead. - -- ``Channel.is_private`` - - - Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead. - - e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel. - -- ``Client.accept_invite`` - - - There is no replacement for this one. This functionality is deprecated API wise. - -- ``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default`` - - - The concept of a default channel was removed from Discord. - See `#329 `_. - -- ``Message.edited_timestamp`` - - - Use :attr:`Message.edited_at` instead. - -- ``Message.timestamp`` - - - Use :attr:`Message.created_at` instead. - -- ``Colour.to_tuple()`` - - - Use :meth:`Colour.to_rgb` instead. - -- ``Permissions.view_audit_logs`` - - - Use :attr:`Permissions.view_audit_log` instead. - -- ``Member.game`` - - - Use :attr:`Member.activities` instead. - -- ``Guild.role_hierarchy`` / ``Server.role_hierarchy`` - - - Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order - of what the old ``Guild.role_hierarchy`` used to be. - -**Changed** - -- :attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set. -- :attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects. -- :attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object. -- :attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role. - -**Added** - -- :class:`Attachment` to represent a discord attachment. -- :class:`CategoryChannel` to represent a channel category. -- :attr:`VoiceChannel.members` for fetching members connected to a voice channel. -- :attr:`TextChannel.members` for fetching members that can see the channel. -- :attr:`Role.members` for fetching members that have the role. -- :attr:`Guild.text_channels` for fetching text channels only. -- :attr:`Guild.voice_channels` for fetching voice channels only. -- :attr:`Guild.categories` for fetching channel categories only. -- :attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to. -- :meth:`Guild.by_category` to get channels grouped by their category. -- :attr:`Guild.chunked` to check member chunking status. -- :attr:`Guild.explicit_content_filter` to fetch the content filter. -- :attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding. -- :attr:`Client.users` to get all visible :class:`User` instances. -- :meth:`Client.get_user` to get a :class:`User` by ID. -- :meth:`User.avatar_url_as` to get an avatar in a specific size or format. -- :meth:`Guild.vanity_invite` to fetch the guild's vanity invite. -- :meth:`Guild.audit_logs` to fetch the guild's audit logs. -- :attr:`Message.webhook_id` to fetch the message's webhook ID. -- :attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information. -- :meth:`TextChannel.is_nsfw` to check if a text channel is NSFW. -- :meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple. -- :meth:`Guild.get_role` to get a role by its ID. - -.. _migrating_1_0_sending_messages: - -Sending Messages ------------------- - -One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` -functionality into a single method, :meth:`~abc.Messageable.send`. - -Basically: :: - - # before - await client.send_message(channel, 'Hello') - - # after - await channel.send('Hello') - -This supports everything that the old ``send_message`` supported such as embeds: :: - - e = discord.Embed(title='foo') - await channel.send('Hello', embed=e) - -There is a caveat with sending files however, as this functionality was expanded to support multiple -file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. :: - - # before - await client.send_file(channel, 'cool.png', filename='testing.png', content='Hello') - - # after - await channel.send('Hello', file=discord.File('cool.png', 'testing.png')) - -This change was to facilitate multiple file uploads: :: - - my_files = [ - discord.File('cool.png', 'testing.png'), - discord.File(some_fp, 'cool_filename.png'), - ] - - await channel.send('Your images:', files=my_files) - -.. _migrating_1_0_async_iter: - -Asynchronous Iterators ------------------------- - -Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+. - -In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called -:class:`AsyncIterator`. - -This allows you to iterate over it like normal: :: - - async for message in channel.history(): - print(message) - -Or turn it into a list: :: - - messages = await channel.history().flatten() - for message in messages: - print(message) - -A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as -:meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: :: - - async for m_id in channel.history().filter(lambda m: m.author == client.user).map(lambda m: m.id): - print(m_id) - -The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular -functions. - -You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via -:meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: :: - - my_last_message = await channel.history().get(author=client.user) - -The following return :class:`AsyncIterator`: - -- :meth:`abc.Messageable.history` -- :meth:`Guild.audit_logs` -- :meth:`Reaction.users` - -.. _migrating_1_0_event_changes: - -Event Changes --------------- - -A lot of events have gone through some changes. - -Many events with ``server`` in the name were changed to use ``guild`` instead. - -Before: - -- ``on_server_join`` -- ``on_server_remove`` -- ``on_server_update`` -- ``on_server_role_create`` -- ``on_server_role_delete`` -- ``on_server_role_update`` -- ``on_server_emojis_update`` -- ``on_server_available`` -- ``on_server_unavailable`` - -After: - -- :func:`on_guild_join` -- :func:`on_guild_remove` -- :func:`on_guild_update` -- :func:`on_guild_role_create` -- :func:`on_guild_role_delete` -- :func:`on_guild_role_update` -- :func:`on_guild_emojis_update` -- :func:`on_guild_available` -- :func:`on_guild_unavailable` - - -The :func:`on_voice_state_update` event has received an argument change. - -Before: :: - - async def on_voice_state_update(before, after) - -After: :: - - async def on_voice_state_update(member, before, after) - -Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects. - -The :func:`on_guild_emojis_update` event has received an argument change. - -Before: :: - - async def on_guild_emojis_update(before, after) - -After: :: - - async def on_guild_emojis_update(guild, before, after) - -The first argument is now the :class:`Guild` that the emojis were updated from. - -The :func:`on_member_ban` event has received an argument change as well: - -Before: :: - - async def on_member_ban(member) - -After: :: - - async def on_member_ban(guild, user) - -As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have -:class:`User`, the :class:`Guild` is provided as the first parameter. - -The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`). - -Before: - -- ``on_channel_delete`` -- ``on_channel_create`` -- ``on_channel_update`` - -After: - -- :func:`on_guild_channel_delete` -- :func:`on_guild_channel_create` -- :func:`on_guild_channel_update` -- :func:`on_private_channel_delete` -- :func:`on_private_channel_create` -- :func:`on_private_channel_update` - -The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` -and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being -updated (i.e. :class:`DMChannel` and :class:`GroupChannel`). - -.. _migrating_1_0_voice: - -Voice Changes ---------------- - -Voice sending has gone through a complete redesign. - -In particular: - -- Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``. -- You no longer create players and operate on them (you no longer store them). -- You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`. -- There are different built-in :class:`AudioSource`\s. - - - :class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player`` - -- create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed. - - - The goal is to create :class:`AudioSource` instead. - -- Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``. - - - Instead, it's "flattened" like :class:`User` -> :class:`Member` is. - -- The ``after`` parameter now takes a single parameter (the error). - -Basically: - -Before: :: - - vc = await client.join_voice_channel(channel) - player = vc.create_ffmpeg_player('testing.mp3', after=lambda: print('done')) - player.start() - - player.is_playing() - player.pause() - player.resume() - player.stop() - # ... - -After: :: - - vc = await channel.connect() - vc.play(discord.FFmpegPCMAudio('testing.mp3'), after=lambda e: print('done', e)) - vc.is_playing() - vc.pause() - vc.resume() - vc.stop() - # ... - -With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is -playing at runtime via :attr:`VoiceClient.source`. - -For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: :: - - vc.source = discord.PCMVolumeTransformer(vc.source) - vc.source.volume = 0.6 - -An added benefit of the redesign is that it will be much more resilient towards reconnections: - -- The voice websocket will now automatically re-connect and re-do the handshake when disconnected. -- The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``. -- Audio will now stop and resume when a disconnect is found. - - - This includes changing voice regions etc. - - -.. _migrating_1_0_wait_for: - -Waiting For Events --------------------- - -Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different -functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did -not allow you to wait for events outside of the ones provided by the library. - -In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`. - -For example, to wait for a message: :: - - # before - msg = await client.wait_for_message(author=message.author, channel=message.channel) - - # after - def pred(m): - return m.author == message.author and m.channel == message.channel - - msg = await client.wait_for('message', check=pred) - -To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of -arguments. - -For example, to wait for a reaction: :: - - reaction, user = await client.wait_for('reaction_add', check=lambda r, u: u.id == 176995180300206080) - - # use user and reaction - -Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` -when reached instead of setting the return to ``None``. For example: - -.. code-block:: python3 - - def pred(m): - return m.author == message.author and m.channel == message.channel - - try: - - msg = await client.wait_for('message', check=pred, timeout=60.0) - except asyncio.TimeoutError: - await channel.send('You took too long...') - else: - await channel.send('You said {0.content}, {0.author}.'.format(msg)) - -Upgraded Dependencies ------------------------ - -Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher. - -Since this is a backwards incompatible change, it is recommended that you see the -`changes `_ -and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in -:doc:`aiohttp `. - -Of the most significant for common users is the removal of helper functions such as: - -- ``aiohttp.get`` -- ``aiohttp.post`` -- ``aiohttp.delete`` -- ``aiohttp.patch`` -- ``aiohttp.head`` -- ``aiohttp.put`` -- ``aiohttp.request`` - -It is recommended that you create a session instead: :: - - async with aiohttp.ClientSession() as sess: - async with sess.get('url') as resp: - # work with resp - -Since it is better to not create a session for every request, you should store it in a variable and then call -``session.close`` on it when it needs to be disposed. - -Sharding ----------- - -The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen. - -If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`. - -This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC. - -It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection -logic and state handling. - -Usage is as simple as doing: :: - - client = discord.AutoShardedClient() - -instead of using :class:`Client`. - -This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds -per shard. - -If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. :: - - # launch 10 shards regardless - client = discord.AutoShardedClient(shard_count=10) - - # launch specific shard IDs in this process - client = discord.AutoShardedClient(shard_count=10, shard_ids=(1, 2, 5, 6)) - -For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly. - -Connection Improvements -------------------------- - -In v1.0, the auto reconnection logic has been powered up significantly. - -:meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls -the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going -offline or Discord going offline with exponential back-off. - -:meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not -need to specify it unless turning it off. - -.. _migrating_1_0_commands: - -Command Extension Changes --------------------------- - -Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to -undergo some design changes as well. - -Context Changes -~~~~~~~~~~~~~~~~~ - -In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used. - -The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo: - -.. code-block:: python3 - - # before - @bot.command() - async def foo(): - await bot.say('Hello') - - # after - @bot.command() - async def foo(ctx): - await ctx.send('Hello') - -The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This -makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` -will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` -functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See -:ref:`migrating_1_0_removed_helpers` for more information. - -Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added: - -**New Shortcuts** - -- :attr:`ctx.author ` is a shortcut for ``ctx.message.author``. -- :attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``. -- :attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``. -- :attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``. -- :attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``. - -**New Functionality** - -- :meth:`.Context.reinvoke` to invoke a command again. - - - This is useful for bypassing cooldowns. -- :attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`. -- :meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system. - - - This is useful if you want to show the user help if they misused a command. - -Subclassing Context -++++++++++++++++++++ - -In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default -provided one. - -For example, if you want to add some functionality to the context: - -.. code-block:: python3 - - class MyContext(commands.Context): - @property - def secret(self): - return 'my secret here' - -Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with -:meth:`~ext.commands.Bot.invoke` to use your custom context: - -.. code-block:: python3 - - class MyBot(commands.Bot): - async def on_message(self, message): - ctx = await self.get_context(message, cls=MyContext) - await self.invoke(ctx) - -Now inside your commands you will have access to your custom context: - -.. code-block:: python3 - - @bot.command() - async def secret(ctx): - await ctx.send(ctx.secret) - -.. _migrating_1_0_removed_helpers: - -Removed Helpers -+++++++++++++++++ - -With the new :class:`.Context` changes, a lot of message sending helpers have been removed. - -For a full list of changes, see below: - -+-----------------+------------------------------------------------------------+ -| Before | After | -+-----------------+------------------------------------------------------------+ -| ``Bot.say`` | :meth:`.Context.send` | -+-----------------+------------------------------------------------------------+ -| ``Bot.upload`` | :meth:`.Context.send` | -+-----------------+------------------------------------------------------------+ -| ``Bot.whisper`` | ``ctx.author.send`` | -+-----------------+------------------------------------------------------------+ -| ``Bot.type`` | :meth:`.Context.typing` or :meth:`.Context.trigger_typing` | -+-----------------+------------------------------------------------------------+ -| ``Bot.reply`` | No replacement. | -+-----------------+------------------------------------------------------------+ - -Command Changes -~~~~~~~~~~~~~~~~~ - -As mentioned earlier, the first command change is that ``pass_context=True`` no longer -exists, so there is no need to pass this as a parameter. - -Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in -check. - -The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a -dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead. - -Command instances have gained new attributes and properties: - -1. :attr:`~ext.commands.Command.signature` to get the signature of the command. -2. :attr:`~.Command.usage`, an attribute to override the default signature. -3. :attr:`~.Command.root_parent` to get the root parent group of a subcommand. - -For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed: - -- Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases. - - - Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands. - -Check Changes -~~~~~~~~~~~~~~~ - -Prior to v1.0, :func:`~ext.commands.check`\s could only be synchronous. As of v1.0 checks can now be coroutines. - -Along with this change, a couple new checks were added. - -- :func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality. -- :func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID. - - - This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`. - - You can set the owner ID yourself by setting :attr:`.Bot.owner_id`. - -- :func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel. - - - This is powered by the new :meth:`TextChannel.is_nsfw` method. - -Event Changes -~~~~~~~~~~~~~~~ - -All command extension events have changed. - -Before: :: - - on_command(command, ctx) - on_command_completion(command, ctx) - on_command_error(error, ctx) - -After: :: - - on_command(ctx) - on_command_completion(ctx) - on_command_error(ctx, error) - -The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` -have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get -the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` -attribute. - -The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, -have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events -and commands. - -HelpFormatter and Help Command Changes -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command. - -The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``. - -The new interface allows the help command to be customised through special methods that can be overridden. - -- :meth:`.HelpCommand.send_bot_help` - - Called when the user requested for help with the entire bot. -- :meth:`.HelpCommand.send_cog_help` - - Called when the user requested for help with a specific cog. -- :meth:`.HelpCommand.send_group_help` - - Called when the user requested for help with a :class:`~.commands.Group` -- :meth:`.HelpCommand.send_command_help` - - Called when the user requested for help with a :class:`~.commands.Command` -- :meth:`.HelpCommand.get_destination` - - Called to know where to send the help messages. Useful for deciding whether to DM or not. -- :meth:`.HelpCommand.command_not_found` - - A function (or coroutine) that returns a presentable no command found string. -- :meth:`.HelpCommand.subcommand_not_found` - - A function (or coroutine) that returns a string when a subcommand is not found. -- :meth:`.HelpCommand.send_error_message` - - A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`. - - By default it just sends the message. But you can, for example, override it to put it in an embed. -- :meth:`.HelpCommand.on_help_command_error` - - The :ref:`error handler ` for the help command if you want to add one. -- :meth:`.HelpCommand.prepare_help_command` - - A coroutine that is called right before the help command processing is done. - -Certain subclasses can implement more customisable methods. - -The old ``HelpFormatter`` was replaced with :class:`~.commands.DefaultHelpCommand`\, which implements all of the logic of the old help command. The customisable methods can be found in the accompanying documentation. - -The library now provides a new more minimalistic :class:`~.commands.HelpCommand` implementation that doesn't take as much space, :class:`~.commands.MinimalHelpCommand`. The customisable methods can also be found in the accompanying documentation. - -A frequent request was if you could associate a help command with a cog. The new design allows for dynamically changing of cog through binding it to the :attr:`.HelpCommand.cog` attribute. After this assignment the help command will pretend to be part of the cog and everything should work as expected. When the cog is unloaded then the help command will be "unbound" from the cog. - -For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used. - -.. code-block:: python3 - - class MyHelpCommand(commands.MinimalHelpCommand): - def get_command_signature(self, command): - return '{0.clean_prefix}{1.qualified_name} {1.signature}'.format(self, command) - - class MyCog(commands.Cog): - def __init__(self, bot): - self._original_help_command = bot.help_command - bot.help_command = MyHelpCommand() - bot.help_command.cog = self - - def cog_unload(self): - self.bot.help_command = self._original_help_command - -For more information, check out the relevant :ref:`documentation `. - -Cog Changes -~~~~~~~~~~~~~ - -Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well. - -Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour. - -* :meth:`.Cog.cog_unload` - - This is called when a cog needs to do some cleanup, such as cancelling a task. -* :meth:`.Cog.bot_check_once` - - This registers a :meth:`.Bot.check_once` check. -* :meth:`.Cog.bot_check` - - This registers a regular :meth:`.Bot.check` check. -* :meth:`.Cog.cog_check` - - This registers a check that applies to every command in the cog. -* :meth:`.Cog.cog_command_error` - - This is a special error handler that is called whenever an error happens inside the cog. -* :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke` - - A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`. - -Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator. - -Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`. - -An example cog with every special method registered and a custom name is as follows: - -.. code-block:: python3 - - class MyCog(commands.Cog, name='Example Cog'): - def cog_unload(self): - print('cleanup goes here') - - def bot_check(self, ctx): - print('bot check') - return True - - def bot_check_once(self, ctx): - print('bot check once') - return True - - async def cog_check(self, ctx): - print('cog local check') - return await ctx.bot.is_owner(ctx.author) - - async def cog_command_error(self, ctx, error): - print('Error in {0.command.qualified_name}: {1}'.format(ctx, error)) - - async def cog_before_invoke(self, ctx): - print('cog local before: {0.command.qualified_name}'.format(ctx)) - - async def cog_after_invoke(self, ctx): - print('cog local after: {0.command.qualified_name}'.format(ctx)) - - @commands.Cog.listener() - async def on_message(self, message): - pass - - -.. _migrating_1_0_before_after_hook: - -Before and After Invocation Hooks -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is -run. - -They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine. - -They are on a global, per-cog, or per-command basis. - -Basically: :: - - - # global hooks: - - @bot.before_invoke - async def before_any_command(ctx): - # do something before a command is called - pass - - @bot.after_invoke - async def after_any_command(ctx): - # do something after a command is called - pass - -The after invocation is hook always called, **regardless of an error in the command**. This makes it ideal for some error -handling or clean up of certain resources such a database connection. - -The per-command registration is as follows: :: - - @bot.command() - async def foo(ctx): - await ctx.send('foo') - - @foo.before_invoke - async def before_foo_command(ctx): - # do something before the foo command is called - pass - - @foo.after_invoke - async def after_foo_command(ctx): - # do something after the foo command is called - pass - -The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.: - -.. code-block:: python3 - - class MyCog(commands.Cog): - async def cog_before_invoke(self, ctx): - ctx.secret_cog_data = 'foo' - - async def cog_after_invoke(self, ctx): - print('{0.command} is done...'.format(ctx)) - - @commands.command() - async def foo(self, ctx): - await ctx.send(ctx.secret_cog_data) - -To check if a command failed in the after invocation hook, you can use -:attr:`.Context.command_failed`. - -The invocation order is as follows: - -1. Command local before invocation hook -2. Cog local before invocation hook -3. Global before invocation hook -4. The actual command -5. Command local after invocation hook -6. Cog local after invocation hook -7. Global after invocation hook - -Converter Changes -~~~~~~~~~~~~~~~~~~~ - -Prior to v1.0, a converter was a type hint that could be a callable that could be invoked -with a singular argument denoting the argument passed by the user as a string. - -This system was eventually expanded to support a :class:`~ext.commands.Converter` system to -allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such -as the built-in "discord" converters. - -In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived -classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to -always be a coroutine and will now take the two arguments as parameters. - -Essentially, before: :: - - class MyConverter(commands.Converter): - def convert(self): - return self.ctx.message.server.me - -After: :: - - class MyConverter(commands.Converter): - async def convert(self, ctx, argument): - return ctx.me - -The command framework also got a couple new converters: - -- :class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions. -- :class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only. -- ``ChannelConverter`` is now split into two different converters. - - - :class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`. - - :class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`. diff --git a/docs/Python/html/_sources/migrating_to_async.rst.txt b/docs/Python/html/_sources/migrating_to_async.rst.txt deleted file mode 100644 index a705f723..00000000 --- a/docs/Python/html/_sources/migrating_to_async.rst.txt +++ /dev/null @@ -1,322 +0,0 @@ -:orphan: - -.. currentmodule:: discord - -.. _migrating-to-async: - -Migrating to v0.10.0 -====================== - -v0.10.0 is one of the biggest breaking changes in the library due to massive -fundamental changes in how the library operates. - -The biggest major change is that the library has dropped support to all versions prior to -Python 3.4.2. This was made to support :mod:`asyncio`, in which more detail can be seen -:issue:`in the corresponding issue <50>`. To reiterate this, the implication is that -**python version 2.7 and 3.3 are no longer supported**. - -Below are all the other major changes from v0.9.0 to v0.10.0. - -Event Registration --------------------- - -All events before were registered using :meth:`Client.event`. While this is still -possible, the events must be decorated with ``@asyncio.coroutine``. - -Before: - -.. code-block:: python3 - - @client.event - def on_message(message): - pass - -After: - -.. code-block:: python3 - - @client.event - @asyncio.coroutine - def on_message(message): - pass - -Or in Python 3.5+: - -.. code-block:: python3 - - @client.event - async def on_message(message): - pass - -Because there is a lot of typing, a utility decorator (:meth:`Client.async_event`) is provided -for easier registration. For example: - -.. code-block:: python3 - - @client.async_event - def on_message(message): - pass - - -Be aware however, that this is still a coroutine and your other functions that are coroutines must -be decorated with ``@asyncio.coroutine`` or be ``async def``. - -Event Changes --------------- - -Some events in v0.9.0 were considered pretty useless due to having no separate states. The main -events that were changed were the ``_update`` events since previously they had no context on what -was changed. - -Before: - -.. code-block:: python3 - - def on_channel_update(channel): pass - def on_member_update(member): pass - def on_status(member): pass - def on_server_role_update(role): pass - def on_voice_state_update(member): pass - def on_socket_raw_send(payload, is_binary): pass - - -After: - -.. code-block:: python3 - - def on_channel_update(before, after): pass - def on_member_update(before, after): pass - def on_server_role_update(before, after): pass - def on_voice_state_update(before, after): pass - def on_socket_raw_send(payload): pass - -Note that ``on_status`` was removed. If you want its functionality, use :func:`on_member_update`. -See :ref:`discord-api-events` for more information. Other removed events include ``on_socket_closed``, ``on_socket_receive``, and ``on_socket_opened``. - - -Coroutines ------------ - -The biggest change that the library went through is that almost every function in :class:`Client` -was changed to be a `coroutine `_. Functions -that are marked as a coroutine in the documentation must be awaited from or yielded from in order -for the computation to be done. For example... - -Before: - -.. code-block:: python3 - - client.send_message(message.channel, 'Hello') - -After: - -.. code-block:: python3 - - yield from client.send_message(message.channel, 'Hello') - - # or in python 3.5+ - await client.send_message(message.channel, 'Hello') - -In order for you to ``yield from`` or ``await`` a coroutine then your function must be decorated -with ``@asyncio.coroutine`` or ``async def``. - -Iterables ----------- - -For performance reasons, many of the internal data structures were changed into a dictionary to support faster -lookup. As a consequence, this meant that some lists that were exposed via the API have changed into iterables -and not sequences. In short, this means that certain attributes now only support iteration and not any of the -sequence functions. - -The affected attributes are as follows: - -- :attr:`Client.servers` -- :attr:`Client.private_channels` -- :attr:`Server.channels` -- :attr:`Server.members` - -Some examples of previously valid behaviour that is now invalid - -.. code-block:: python3 - - if client.servers[0].name == "test": - # do something - -Since they are no longer :obj:`list`\s, they no longer support indexing or any operation other than iterating. -In order to get the old behaviour you should explicitly cast it to a list. - -.. code-block:: python3 - - servers = list(client.servers) - # work with servers - -.. warning:: - - Due to internal changes of the structure, the order you receive the data in - is not in a guaranteed order. - -Enumerations ------------- - -Due to dropping support for versions lower than Python 3.4.2, the library can now use -:doc:`py:library/enum` in places where it makes sense. - -The common places where this was changed was in the server region, member status, and channel type. - -Before: - -.. code-block:: python3 - - server.region == 'us-west' - member.status == 'online' - channel.type == 'text' - -After: - -.. code-block:: python3 - - server.region == discord.ServerRegion.us_west - member.status = discord.Status.online - channel.type == discord.ChannelType.text - -The main reason for this change was to reduce the use of finicky strings in the API as this -could give users a false sense of power. More information can be found in the :ref:`discord-api-enums` page. - -Properties ------------ - -A lot of function calls that returned constant values were changed into Python properties for ease of use -in format strings. - -The following functions were changed into properties: - -+----------------------------------------+--------------------------------------+ -| Before | After | -+----------------------------------------+--------------------------------------+ -| ``User.avatar_url()`` | :attr:`User.avatar_url` | -+----------------------------------------+--------------------------------------+ -| ``User.mention()`` | :attr:`User.mention` | -+----------------------------------------+--------------------------------------+ -| ``Channel.mention()`` | :attr:`Channel.mention` | -+----------------------------------------+--------------------------------------+ -| ``Channel.is_default_channel()`` | :attr:`Channel.is_default` | -+----------------------------------------+--------------------------------------+ -| ``Role.is_everyone()`` | :attr:`Role.is_everyone` | -+----------------------------------------+--------------------------------------+ -| ``Server.get_default_role()`` | :attr:`Server.default_role` | -+----------------------------------------+--------------------------------------+ -| ``Server.icon_url()`` | :attr:`Server.icon_url` | -+----------------------------------------+--------------------------------------+ -| ``Server.get_default_channel()`` | :attr:`Server.default_channel` | -+----------------------------------------+--------------------------------------+ -| ``Message.get_raw_mentions()`` | :attr:`Message.raw_mentions` | -+----------------------------------------+--------------------------------------+ -| ``Message.get_raw_channel_mentions()`` | :attr:`Message.raw_channel_mentions` | -+----------------------------------------+--------------------------------------+ - -Member Management -------------------- - -Functions that involved banning and kicking were changed. - -+--------------------------------+--------------------------+ -| Before | After | -+--------------------------------+--------------------------+ -| ``Client.ban(server, user)`` | ``Client.ban(member)`` | -+--------------------------------+--------------------------+ -| ``Client.kick(server, user)`` | ``Client.kick(member)`` | -+--------------------------------+--------------------------+ - -.. migrating-renames: - -Renamed Functions -------------------- - -Functions have been renamed. - -+------------------------------------+-------------------------------------------+ -| Before | After | -+------------------------------------+-------------------------------------------+ -| ``Client.set_channel_permissions`` | :meth:`Client.edit_channel_permissions` | -+------------------------------------+-------------------------------------------+ - -All the :class:`Permissions` related attributes have been renamed and the `can_` prefix has been -dropped. So for example, ``can_manage_messages`` has become ``manage_messages``. - -Forced Keyword Arguments -------------------------- - -Since 3.0+ of Python, we can now force questions to take in forced keyword arguments. A keyword argument is when you -explicitly specify the name of the variable and assign to it, for example: ``foo(name='test')``. Due to this support, -some functions in the library were changed to force things to take said keyword arguments. This is to reduce errors of -knowing the argument order and the issues that could arise from them. - -The following parameters are now exclusively keyword arguments: - -- :meth:`Client.send_message` - - ``tts`` -- :meth:`Client.logs_from` - - ``before`` - - ``after`` -- :meth:`Client.edit_channel_permissions` - - ``allow`` - - ``deny`` - -In the documentation you can tell if a function parameter is a forced keyword argument if it is after ``\*,`` -in the function signature. - -.. _migrating-running: - -Running the Client --------------------- - -In earlier versions of discord.py, ``client.run()`` was a blocking call to the main thread -that called it. In v0.10.0 it is still a blocking call but it handles the event loop for you. -However, in order to do that you must pass in your credentials to :meth:`Client.run`. - -Basically, before: - -.. code-block:: python3 - - client.login('token') - client.run() - -After: - -.. code-block:: python3 - - client.run('token') - -.. warning:: - - Like in the older ``Client.run`` function, the newer one must be the one of - the last functions to call. This is because the function is **blocking**. Registering - events or doing anything after :meth:`Client.run` will not execute until the function - returns. - -This is a utility function that abstracts the event loop for you. There's no need for -the run call to be blocking and out of your control. Indeed, if you want control of the -event loop then doing so is quite straightforward: - -.. code-block:: python3 - - import discord - import asyncio - - client = discord.Client() - - @asyncio.coroutine - def main_task(): - yield from client.login('token') - yield from client.connect() - - loop = asyncio.get_event_loop() - try: - loop.run_until_complete(main_task()) - except: - loop.run_until_complete(client.logout()) - finally: - loop.close() - - - diff --git a/docs/Python/html/_sources/quickstart.rst.txt b/docs/Python/html/_sources/quickstart.rst.txt deleted file mode 100644 index 8b3daeb2..00000000 --- a/docs/Python/html/_sources/quickstart.rst.txt +++ /dev/null @@ -1,79 +0,0 @@ -:orphan: - -.. _quickstart: - -.. currentmodule:: discord - -Quickstart -============ - -This page gives a brief introduction to the library. It assumes you have the library installed, -if you don't check the :ref:`installing` portion. - -A Minimal Bot ---------------- - -Let's make a bot that responds to a specific message and walk you through it. - -It looks something like this: - -.. code-block:: python3 - - import discord - - client = discord.Client() - - @client.event - async def on_ready(): - print(f'We have logged in as {client.user}') - - @client.event - async def on_message(message): - if message.author == client.user: - return - - if message.content.startswith('$hello'): - await message.channel.send('Hello!') - - client.run('your token here') - -Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict -with the library. - -There's a lot going on here, so let's walk you through it step by step. - -1. The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` - then head on over to :ref:`installing` section to properly install. -2. Next, we create an instance of a :class:`Client`. This client is our connection to Discord. -3. We then use the :meth:`Client.event` decorator to register an event. This library has many events. - Since this library is asynchronous, we do things in a "callback" style manner. - - A callback is essentially a function that is called when something happens. In our case, - the :func:`on_ready` event is called when the bot has finished logging in and setting things - up and the :func:`on_message` event is called when the bot has received a message. -4. Since the :func:`on_message` event triggers for *every* message received, we have to make - sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` - is the same as the :attr:`Client.user`. -5. Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, - then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of - handling commands, which can be later automated with the :doc:`./ext/commands/index` framework. -6. Finally, we run the bot with our login token. If you need help getting your token or creating a bot, - look in the :ref:`discord-intro` section. - - -Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a -Python script, we can run it directly. - -On Windows: - -.. code-block:: shell - - $ py -3 example_bot.py - -On other systems: - -.. code-block:: shell - - $ python3 example_bot.py - -Now you can try playing around with your basic bot. diff --git a/docs/Python/html/_sources/version_guarantees.rst.txt b/docs/Python/html/_sources/version_guarantees.rst.txt deleted file mode 100644 index 7909bd6b..00000000 --- a/docs/Python/html/_sources/version_guarantees.rst.txt +++ /dev/null @@ -1,30 +0,0 @@ -.. _version_guarantees: - -Version Guarantees -===================== - -The library follows a `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't. - -The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented. - -.. note:: - - The examples below are non-exhaustive. - -Examples of Breaking Changes ------------------------------- - -- Changing the default parameter value to something else. -- Renaming a function without an alias to an old function. -- Adding or removing parameters to an event. - -Examples of Non-Breaking Changes ----------------------------------- - -- Adding or removing private underscored attributes. -- Adding an element into the ``__slots__`` of a data class. -- Changing the behaviour of a function to fix a bug. -- Changes in the documentation. -- Modifying the internal HTTP handling. -- Upgrading the dependencies to a new version, major or otherwise. - diff --git a/docs/Python/html/_sources/whats_new.rst.txt b/docs/Python/html/_sources/whats_new.rst.txt deleted file mode 100644 index bc283d22..00000000 --- a/docs/Python/html/_sources/whats_new.rst.txt +++ /dev/null @@ -1,1315 +0,0 @@ -.. currentmodule:: discord - -.. |commands| replace:: [:ref:`ext.commands `] -.. |tasks| replace:: [:ref:`ext.tasks `] - -.. _whats_new: - -Changelog -============ - -This page keeps a detailed human friendly rendering of what's new and changed -in specific versions. - -.. _vp2p0p0: - -v2.0.0 --------- - -This version was partly developed by Danny, and partly by the enhanced-discord.py contributors. -The library has been updated with breaking changes, and as such the major version was changed. - - -- Performance of the library has improved significantly (all times with 1 process and 1 AutoShardedBot): - - 735 guilds boot up time (with chunking): 57s/1.7 GiB RAM -> 42s/1.4 GiB RAM - - 27k guilds boot up time (with chunking): 477s/8 GiB RAM -> 303s/7.2 GiB RAM - - 48k guilds boot up time (without chunking): 109s -> 67s - - 106k guilds boot up time (without chunking): 3300s -> 3090s -- The entire public API of the library is now completely type hinted. - - There may still be bugs however. - - For best type hinting experience consider using Pyright. -- Almost all edit methods now return their updated counterpart rather than doing an in-place edit. -- Japanese docs were removed, as we are no longer able to keep them in sync. - - -Breaking Changes -~~~~~~~~~~~~~~~~~ - -- :meth:`Asset.replace` now only accepts keyword arguments -- ``Asset.with_`` functions now only accept positional only arguments -- :meth:`TextChannel.get_partial_message` is now pos-only -- :meth:`TextChannel.get_thread` is now pos-only -- ``permissions_for`` is now pos-only -- :attr:`GroupChannel.owner` is now Optional -- ``edit`` methods now only accept None if it actually means something (e.g. clearing it) -- ``timeout`` parameter for ``ui.View.__init__`` is now keyword only -- When an interaction has already been responded and another one is sent, :exc:`InteractionResponded` is now raised. - - Discord's API only allows a single :attr:`interaction.response`. -- Separate :func:`on_member_update` and :func:`on_presence_update` - - The new event :func:`on_presence_update` is now called when status/activity is changed. - - :func:`on_member_update` will now no longer have status/activity changes. -- afk parameter in :meth:`Client.change_presence` is removed -- The undocumented private :func:`on_socket_response` event got removed. - - Consider using the newer documented :func:`on_socket_event_type` event instead. -- Using :func:`on_socket_raw_receive` and :func:`on_socket_raw_send` are now opt-in via :attr:`enable_debug_events` toggle. -- :func:`on_socket_raw_receive` is now only dispatched after decompressing the payload. -- Persistent View dispatch mechanism now uses the ``message_id`` key if provided. -- :meth:`Message.start_thread` was renamed to :meth:`Message.create_thread` -- :meth:`TextChannel.start_thread` was renamed to :meth:`TextChannel.create_thread` -- All ``get_`` lookup functions now use positional-only parameters for the id parameter. -- Remove :meth:`TextChannel.active_threads` due to the endpoint being deprecated and slated for removal. - - Use :meth:`Guild.active_threads` instead. -- :attr:`User.avatar` now returns None if the user did not upload an avatar. - - Use :attr:`User.display_avatar` to get the avatar and fallback to the default avatar to go back to the old behaviour. - -New Features -~~~~~~~~~~~~~~ - -- Channel types are now typed -- Member is now typed -- Client is now typed -- Permissions are now typed -- Core library errors are now typed -- Add various examples showing how to use views. There are more to come. -- :attr:`GroupChannel.owner_id` now gets the owner ID -- ``edit`` methods now don't rely on previous state -- :meth:`View.from_message` converts a Message.components to a View -- :attr:`Thread.type` to get the thread channel type -- :attr:`ButtonStyle.url` alias for :attr:`ButtonStyle.link` -- Add default style for :class:`ui.Button` constructor - - This makes it so creating a URL button is as simple as ``ui.Button(url='...', label='...')`` -- :attr:`Thread.mention` to get the mention string for a thread -- :meth:`Thread.is_nsfw` to check whether the parent channel of the thread is NSFW -- Add support for fetching the original interaction response message. - - :meth:`Interaction.original_message` will retrieve it and returns an InteractionMessage - - :meth:`InteractionMessage.edit` or :meth:`Interaction.edit_original_message` will edit it - - :meth:`InteractionMessage.delete` or :meth:`Interaction.delete_original_message` will delete it -- :attr:`MessageFlags.ephemeral` to get whether a message is ephemeral -- :meth:`Client.fetch_channel` now fetches threads as well -- :class:`SelectOption` now has a __str__ that matches the client representation. - - This might change in the future to remove the description from it. -- Add a converter for :class:`discord.Thread` -- Allow ``clean_content`` converter to work stand-alone -- Add :meth:`User.banner` to get a user's banner and :meth:`User.accent_colour` to get the set banner colour. - - Due to an API limitation this requires using :meth:`Client.fetch_user`. -- Add ``reason`` keyword argument to more methods -- Add audit log events for threads -- Allow public threads to be created without a starter message -- Add :meth:`Guild.get_channel_or_thread` helper method -- Add full support for the new sticker API -- Add :func:`on_socket_event_type` event to get the event type of an event -- Add :attr:`TextChannel.default_auto_archive_duration` -- Add :class:`PartialMessageable` type to allow for sending messages to a channel using only its ``channel_id``. - - This is constructed with :meth:`Client.get_partial_messageable`. -- Add :meth:`Guild.active_threads` to get all of a guild's active threads. -- Add :attr:`Thread.members` to get all cached :class:`ThreadMember` instances of a thread. -- Add :meth:`Thread.fetch_members` to fetch all :class:`ThreadMember` instances of a thread. - - These two require :attr:`Intents.members` to be useful. -- Add support for guild avatars for members under :attr:`Member.guild_avatar` -- Add :attr:`User.display_avatar` and :attr:`Member.display_avatar` to get the user's displayed avatar. -- Add :attr:`Colour.brand_green` and :attr:`Colour.brand_red` -- |commands| :attr:`CommandOnCooldown.type` to get back the type of the cooldown since it was removed from :class:`Cooldown` -- Add :attr:`Guild.bots` and :attr:`Guild.humans` - - -Bug Fixes -~~~~~~~~~~~ - -- :class:`Channel` converters now work in DMs again -- Fix :attr:`Interaction.channel` being None in threads -- Change timeouts in :class:`ui.View` to work as documented -- :attr:`Message.__repr__` now shows the proper type, e.g. :class:`WebhookMessage` and :class:`InteractionMessage` -- Change :class:`Cooldown` handling to not reset token window when the number of tokens reaches 0 -- Fix audit log permission construction breaking due to unexpected type errors. -- Fix :func:`on_thread_join` not dispatching when a thread is unarchived -- Fix :attr:`Message.guild` being None when a thread is unarchived due to a new message -- :class:`MessageConverter` now works with threads -- Retry requests when a 504 is hit -- Fix :attr:`Thread.slowmode_delay` not updating on edit -- Fix ``permissions_for`` for roles -- Update :attr:`Message.system_content` for newer message types -- Fix :class:`PartialMessage` not working with threads -- Fix crash with stage instances not having the documented ``discoverable_enabled`` key -- Fix some built-in checks not working with threads -- Fix :class:`SyncWebhook` not working in a multi-threaded context -- Fix :func:`on_thread_member_remove` not dispatching properly -- Fix :func:`on_typing` not dispatching for threads -- Update :attr:`Message.is_system` to work with newer message types -- Fix some enums like :class:`VerificationLevel` not being comparable. -- Fix ``io.BytesIO`` sources not working with ffmpeg players -- Fix :meth:`Client.fetch_channel` and :meth:`Guild.fetch_channel` not returning threads - -.. _vp1p7p3: - -v1.7.3 --------- - -Bug Fixes -~~~~~~~~~~ - -- Fix a crash involving guild uploaded stickers -- Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set. - -.. _vp1p7p2: - -v1.7.2 -------- - -Bug Fixes -~~~~~~~~~~~ - -- Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:issue:`6726`) -- Fix :meth:`Guild.chunk` hanging when the user left the guild. (:issue:`6730`) -- Fix loop sleeping after final iteration rather than before (:issue:`6744`) - -.. _vp1p7p1: - -v1.7.1 -------- - -Bug Fixes -~~~~~~~~~~~ - -- |commands| Fix :meth:`Cog.has_error_handler ` not working as intended. - -.. _vp1p7p0: - -v1.7.0 --------- - -This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. -Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. -Likewise, **this is the last version to support user bots**. - -Development of v2.0 will have breaking changes and support for newer API features. - -New Features -~~~~~~~~~~~~~~ - -- Add support for stage channels via :class:`StageChannel` (:issue:`6602`, :issue:`6608`) -- Add support for :attr:`MessageReference.fail_if_not_exists` (:issue:`6484`) - - By default, if the message you're replying to doesn't exist then the API errors out. - This attribute tells the Discord API that it's okay for that message to be missing. - -- Add support for Discord's new permission serialisation scheme. -- Add an easier way to move channels using :meth:`abc.GuildChannel.move` -- Add :attr:`Permissions.use_slash_commands` -- Add :attr:`Permissions.request_to_speak` -- Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:issue:`6606`) -- Add support for :meth:`PartialEmoji.url_as` (:issue:`6341`) -- Add :attr:`MessageReference.jump_url` (:issue:`6318`) -- Add :attr:`File.spoiler` (:issue:`6317`) -- Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:issue:`6538`) -- Allow callable class factories to be used in :meth:`abc.Connectable.play` (:issue:`6478`) -- Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:issue:`2539`, :issue:`6444`) -- :meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:issue:`6309`) -- Add :attr:`RawMessageUpdateEvent.guild_id` (:issue:`6489`) -- :class:`AuditLogEntry` is now hashable (:issue:`6495`) -- :class:`Attachment` is now hashable -- Add :attr:`Attachment.content_type` attribute (:issue:`6618`) -- Add support for casting :class:`Attachment` to :class:`str` to get the URL. -- Add ``seed`` parameter for :class:`Colour.random` (:issue:`6562`) - - This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`. - -- Add a :func:`utils.remove_markdown` helper function (:issue:`6573`) -- Add support for passing scopes to :func:`utils.oauth_url` (:issue:`6568`) -- |commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:issue:`6374`) -- |commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:issue:`6603`) -- |commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter. -- |commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:issue:`1874`, :issue:`6462`) -- |commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:issue:`6308`) -- |commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:issue:`6016`, :issue:`6365`) -- |commands| Add :meth:`Command.has_error_handler ` - - This is also adds :meth:`Cog.has_error_handler ` -- |commands| Allow callable types to act as a bucket key for cooldowns (:issue:`6563`) -- |commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:issue:`5975`) -- |commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:issue:`2008`, :issue:`6446`) -- |commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:issue:`2465`, :issue:`6445`) - -Bug Fixes -~~~~~~~~~~ - -- Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:issue:`6192`, :issue:`6458`) -- Fix user created instances of :class:`CustomActivity` triggering an error (:issue:`4049`) - - Note that currently, bot users still cannot set a custom activity due to a Discord limitation. -- Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:issue:`6430`, :issue:`6436`) -- Fix :attr:`User.public_flags` not updating upon edit (:issue:`6315`) -- Fix :attr:`Message.call` sometimes causing attribute errors (:issue:`6390`) -- Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:issue:`6531`) -- Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members` -- Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable. -- Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:issue:`6602`) -- :class:`Embed` constructor parameters now implicitly convert to :class:`str` (:issue:`6574`) -- Ensure ``discord`` package is only run if executed as a script (:issue:`6483`) -- |commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure. -- |commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:issue:`5154`) -- |commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:issue:`6451`, :issue:`6462`) -- |commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:issue:`6316`) -- |commands| Properly handle positional-only parameters in bot command signatures (:issue:`6431`) -- |commands| Group signatures now properly show up in :attr:`Command.signature ` (:issue:`6529`, :issue:`6530`) - -Miscellaneous -~~~~~~~~~~~~~~ - -- User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library. -- :class:`Permission` class methods were updated to match the UI of the Discord client (:issue:`6476`) -- ``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:issue:`6313`) - -.. _vp1p6p0: - -v1.6.0 --------- - -This version comes with support for replies and stickers. - -New Features -~~~~~~~~~~~~~~ - -- An entirely redesigned documentation. This was the cumulation of multiple months of effort. - - There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic. -- Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:issue:`5888`) -- Add :meth:`Colour.random` to get a random colour (:issue:`6067`) -- Add support for stickers via :class:`Sticker` (:issue:`5946`) -- Add support for replying via :meth:`Message.reply` (:issue:`6061`) - - This also comes with the :attr:`AllowedMentions.replied_user` setting. - - :meth:`abc.Messageable.send` can now accept a :class:`MessageReference`. - - :class:`MessageReference` can now be constructed by users. - - :meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`. -- Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`. -- Add support for role tags. - - :attr:`Guild.premium_subscriber_role` to get the "Nitro Booster" role (if available). - - :attr:`Guild.self_role` to get the bot's own role (if available). - - :attr:`Role.tags` to get the role's tags. - - :meth:`Role.is_premium_subscriber` to check if a role is the "Nitro Booster" role. - - :meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots). - - :meth:`Role.is_integration` to check if a role is role created by an integration. -- Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited. - - :meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard. -- Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:issue:`6100`, :issue:`6082`) -- Add :attr:`PartialEmoji.created_at` (:issue:`6128`) -- Add support for editing and deleting webhook sent messages (:issue:`6058`) - - This adds :class:`WebhookMessage` as well to power this behaviour. -- Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:issue:`5905`) - - This is useful if you don't want to incur an extra API call to fetch the message. -- Add :meth:`Emoji.url_as` (:issue:`6162`) -- Add support for :attr:`Member.pending` for the membership gating feature. -- Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:issue:`6195`) -- Add support for ``presences`` in :meth:`Guild.query_members` (:issue:`2354`) -- |commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:issue:`6028`) -- |tasks| Add support for calling the wrapped coroutine as a function via ``__call__``. - - -Bug Fixes -~~~~~~~~~~~ - -- Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:issue:`6044`) -- Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:issue:`5986`) -- Fix errors when playing audio and moving to another channel (:issue:`5953`) -- Fix :exc:`AttributeError` when voice channels disconnect too fast (:issue:`6039`) -- Fix stale :class:`User` references when the members intent is off. -- Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is. -- Fix :attr:`Message.author` being overwritten in certain cases during message update. - - This would previously make it so :attr:`Message.author` is a :class:`User`. -- Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:issue:`6093`) -- Fix uninitialised :attr:`CustomActivity.created_at` (:issue:`6095`) -- |commands| Errors during cog unload no longer stops module cleanup (:issue:`6113`) -- |commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:issue:`6217`) - -Miscellaneous -~~~~~~~~~~~~~~~ - -- ``ffmpeg`` spawned processes no longer open a window in Windows (:issue:`6038`) -- Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:issue:`5984`, :issue:`5970`) -- Fix docstring issue leading to a SyntaxError in 3.9 (:issue:`6153`) -- Update Windows opus binaries from 1.2.1 to 1.3.1 (:issue:`6161`) -- Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:issue:`6195`) -- |commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:issue:`6002`) -- |commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached. -- |commands| :func:`max_concurrency ` is now called before cooldowns (:issue:`6172`) - -.. _vp1p5p1: - -v1.5.1 -------- - -Bug Fixes -~~~~~~~~~~~ - -- Fix :func:`utils.escape_markdown` not escaping quotes properly (:issue:`5897`) -- Fix :class:`Message` not being hashable (:issue:`5901`, :issue:`5866`) -- Fix moving channels to the end of the channel list (:issue:`5923`) -- Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:issue:`5929`) -- Fix aliases showing up in ``__iter__`` for :class:`Intents` (:issue:`5945`) -- Fix the bot disconnecting from voice when moving them to another channel (:issue:`5904`) -- Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching. -- Ensure that the bot's own member is not evicted from the cache (:issue:`5949`) - -Miscellaneous -~~~~~~~~~~~~~~ - -- Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:issue:`5930`) -- |commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache. - - This is the same as having ``discord.Member`` as the type-hint. -- :meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests. - -.. _vp1p5p0: - -v1.5.0 --------- - -This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`. - -API Changes -~~~~~~~~~~~~~ - -- Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info. -- As a consequence, fetching offline members is disabled if the members intent is not enabled. - -New Features -~~~~~~~~~~~~~~ - -- Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`. -- Add :attr:`VoiceRegion.south_korea` (:issue:`5233`) -- Add support for ``__eq__`` for :class:`Message` (:issue:`5789`) -- Add :meth:`Colour.dark_theme` factory method (:issue:`1584`) -- Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:issue:`5785`) -- Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:issue:`5797`) -- Implement :class:`VoiceProtocol` to better intersect the voice flow. -- Add :meth:`Guild.chunk` to fully chunk a guild. -- Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info. -- Add support for :attr:`ActivityType.competing` (:issue:`5823`) - - This seems currently unused API wise. - -- Add support for message references, :attr:`Message.reference` (:issue:`5754`, :issue:`5832`) -- Add alias for :class:`ColourConverter` under ``ColorConverter`` (:issue:`5773`) -- Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:issue:`5849`) -- |commands| Add support for ``require_var_positional`` for :class:`Command` (:issue:`5793`) - -Bug Fixes -~~~~~~~~~~ - -- Fix issue with :meth:`Guild.by_category` not showing certain channels. -- Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:issue:`5772`) -- Fix handling of cloudflare bans on webhook related requests (:issue:`5221`) -- Fix cases where a keep-alive thread would ack despite already dying (:issue:`5800`) -- Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:issue:`5819`) -- Fix ``allowed_mentions`` not being sent when sending a single file (:issue:`5835`) -- Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:issue:`5756`, :issue:`5757`) -- |commands| Fix exceptions being raised improperly in command invoke hooks (:issue:`5799`) -- |commands| Fix commands not being properly ejected during errors in a cog injection (:issue:`5804`) -- |commands| Fix cooldown timing ignoring edited timestamps. -- |tasks| Fix tasks extending the next iteration on handled exceptions (:issue:`5762`, :issue:`5763`) - -Miscellaneous -~~~~~~~~~~~~~~~ - -- Webhook requests are now logged (:issue:`5798`) -- Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards. -- Gateway rate limits are now handled. -- Warnings logged due to missed caches are now changed to DEBUG log level. -- Some strings are now explicitly interned to reduce memory usage. -- Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:issue:`5834`) -- |commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:issue:`5748`) -- |tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:issue:`5808`) - -.. _vp1p4p2: - -v1.4.2 --------- - -This is a maintenance release with backports from :ref:`vp1p5p0`. - -Bug Fixes -~~~~~~~~~~~ - -- Fix issue with :meth:`Guild.by_category` not showing certain channels. -- Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:issue:`5772`) -- Fix handling of cloudflare bans on webhook related requests (:issue:`5221`) -- Fix cases where a keep-alive thread would ack despite already dying (:issue:`5800`) -- Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:issue:`5819`) -- Fix ``allowed_mentions`` not being sent when sending a single file (:issue:`5835`) -- Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:issue:`5756`, :issue:`5757`) -- |commands| Fix exceptions being raised improperly in command invoke hooks (:issue:`5799`) -- |commands| Fix commands not being properly ejected during errors in a cog injection (:issue:`5804`) -- |commands| Fix cooldown timing ignoring edited timestamps. -- |tasks| Fix tasks extending the next iteration on handled exceptions (:issue:`5762`, :issue:`5763`) - -Miscellaneous -~~~~~~~~~~~~~~~ - -- Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards. -- |tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:issue:`5808`) - -.. _vp1p4p1: - -v1.4.1 --------- - -Bug Fixes -~~~~~~~~~~~ - -- Properly terminate the connection when :meth:`Client.close` is called (:issue:`5207`) -- Fix error being raised when clearing embed author or image when it was already cleared (:issue:`5210`, :issue:`5212`) -- Fix ``__path__`` to allow editable extensions (:issue:`5213`) - -.. _vp1p4p0: - -v1.4.0 --------- - -Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience! - -New Features -~~~~~~~~~~~~~~ - -- Add support for :class:`AllowedMentions` to have more control over what gets mentioned. - - This can be set globally through :attr:`Client.allowed_mentions` - - This can also be set on a per message basis via :meth:`abc.Messageable.send` - -- :class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:issue:`2654`) - - Add :class:`ShardInfo` which allows fetching specific information about a shard. - - The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well. - - Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards. - - Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits. - - Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done. - - Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`. - -- Add support for guild templates (:issue:`2652`) - - This adds :class:`Template` to read a template's information. - - :meth:`Client.fetch_template` can be used to fetch a template's information from the API. - - :meth:`Client.create_guild` can now take an optional template to base the creation from. - - Note that fetching a guild's template is currently restricted for bot accounts. - -- Add support for guild integrations (:issue:`2051`, :issue:`1083`) - - :class:`Integration` is used to read integration information. - - :class:`IntegrationAccount` is used to read integration account information. - - :meth:`Guild.integrations` will fetch all integrations in a guild. - - :meth:`Guild.create_integration` will create an integration. - - :meth:`Integration.edit` will edit an existing integration. - - :meth:`Integration.delete` will delete an integration. - - :meth:`Integration.sync` will sync an integration. - - There is currently no support in the audit log for this. - -- Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:issue:`2650`) -- Add various grey to gray aliases for :class:`Colour` (:issue:`5130`) -- Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:issue:`2535`) -- Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:issue:`2577`, :issue:`4095`) -- Add ``position`` parameter support to :meth:`Guild.create_category` (:issue:`2623`) -- Allow passing ``int`` for the colour in :meth:`Role.edit` (:issue:`4057`) -- Add :meth:`Embed.remove_author` to clear author information from an embed (:issue:`4068`) -- Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:issue:`4053`) -- Add :attr:`Guild.max_video_channel_users` (:issue:`4120`) -- Add :attr:`Guild.public_updates_channel` (:issue:`4120`) -- Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:issue:`4112`) -- Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:issue:`3999`) -- Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:issue:`4121`) -- Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:issue:`2501`, :issue:`2143`) -- Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:issue:`5088`) -- Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:issue:`4180`, :issue:`4181`) -- Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:issue:`4180`, :issue:`4181`) -- Add support for ``user_ids`` in :meth:`Guild.query_members` -- Add support for pruning members by roles in :meth:`Guild.prune_members` (:issue:`4043`) -- |commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:issue:`1986`, :issue:`2502`) -- |commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:issue:`5195`) -- |commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:issue:`5197`) -- |tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:issue:`2540`) -- |tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:issue:`2621`) - - -Bug Fixes -~~~~~~~~~~~~ - -- Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:issue:`4015`, :issue:`4016`) -- Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:issue:`4019`) -- Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:issue:`4021`) -- Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:issue:`4002`) -- Fix :meth:`Guild.edit` not allowing editing of notification settings (:issue:`4074`, :issue:`4047`) -- Fix crash when the guild widget contains channels that aren't in the payload (:issue:`4114`, :issue:`4115`) -- Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:issue:`4036`) -- Fix :func:`utils.escape_markdown` not escaping masked links (:issue:`4206`, :issue:`4207`) -- Fix reconnect loop due to failed handshake on region change (:issue:`4210`, :issue:`3996`) -- Fix :meth:`Guild.by_category` not returning empty categories (:issue:`4186`) -- Fix certain JPEG images not being identified as JPEG (:issue:`5143`) -- Fix a crash when an incomplete guild object is used when fetching reaction information (:issue:`5181`) -- Fix a timeout issue when fetching members using :meth:`Guild.query_members` -- Fix an issue with domain resolution in voice (:issue:`5188`, :issue:`5191`) -- Fix an issue where :attr:`PartialEmoji.id` could be a string (:issue:`4153`, :issue:`4152`) -- Fix regression where :attr:`Member.activities` would not clear. -- |commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:issue:`2253`, :issue:`5068`) -- |commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:issue:`2591`) -- |commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:issue:`4058`, :issue:`4071`) -- |commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:issue:`5124`) -- |commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:issue:`5198`) -- |tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:issue:`2294`) -- |tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:issue:`4082`) - - -Miscellaneous -~~~~~~~~~~~~~~~ - -- The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:issue:`4087`, :issue:`4157`) -- :class:`Webhook` objects are now comparable and hashable (:issue:`4182`) -- Some more API requests got a ``reason`` parameter for audit logs (:issue:`5086`) - - :meth:`TextChannel.follow` - - :meth:`Message.pin` and :meth:`Message.unpin` - - :meth:`Webhook.delete` and :meth:`Webhook.edit` - -- For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``. -- The blocking logging message now shows the stack trace of where the main thread was blocking -- The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration -- Reduce memory usage when reconnecting due to stale references being held by the message cache (:issue:`5133`) -- Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings). -- |commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:issue:`4217`) -- |tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:issue:`5193`) - -.. _vp1p3p4: - -v1.3.4 --------- - -Bug Fixes -~~~~~~~~~~~ - -- Fix an issue with channel overwrites causing multiple issues including crashes (:issue:`5109`) - -.. _vp1p3p3: - -v1.3.3 --------- - -Bug Fixes -~~~~~~~~~~~~ - -- Change default WS close to 4000 instead of 1000. - - The previous close code caused sessions to be invalidated at a higher frequency than desired. - -- Fix ``None`` appearing in ``Member.activities``. (:issue:`2619`) - -.. _vp1p3p2: - -v1.3.2 ---------- - -Another minor bug fix release. - -Bug Fixes -~~~~~~~~~~~ - -- Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`. -- :func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable. -- Fix various Cloudflare handling errors (:issue:`2572`, :issue:`2544`) -- Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`. -- Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``. -- Fix invalid format specifier in webhook state (:issue:`2570`) -- |commands| Passing invalid permissions to permission related checks now raises ``TypeError``. - -.. _vp1p3p1: - -v1.3.1 --------- - -Minor bug fix release. - -Bug Fixes -~~~~~~~~~~~ - -- Fix fetching invites in guilds that the user is not in. -- Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:issue:`2531`) - -Miscellaneous -~~~~~~~~~~~~~~ - -- Fix compatibility warnings when using the Python 3.9 alpha. -- Change the unknown event logging from WARNING to DEBUG to reduce noise. - -.. _vp1p3p0: - -v1.3.0 --------- - -This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated! - -New Features -~~~~~~~~~~~~~~ - -- Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:issue:`2204`) -- Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:issue:`2208`) -- Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:issue:`2239`) -- Add support for suppressing embeds via :meth:`Message.edit` -- Add support for guild subscriptions. See the :class:`Client` documentation for more details. -- Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache. -- Add :meth:`Guild.query_members` to request members from the gateway. -- Add :class:`FFmpegOpusAudio` and other voice improvements. (:issue:`2258`) -- Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:issue:`2301`) -- Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events. -- Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:issue:`2300`, :issue:`2324`) -- Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:issue:`2314`) -- Add :meth:`Message.is_system` to allow for quickly filtering through system messages. -- Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:issue:`2343`) -- Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:issue:`2349`) -- Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:issue:`2358`, :issue:`2490`) -- Add :meth:`TextChannel.follow` to follow a news channel. (:issue:`2367`) -- Add :attr:`Permissions.view_guild_insights` permission. (:issue:`2415`) -- Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:issue:`2427`) - - Note that integration support is not finalized. - -- Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:issue:`2441`) -- Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:issue:`2198`) -- Add :class:`Activity.created_at` to see when an activity was started. (:issue:`2446`) -- Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:issue:`2463`) -- Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:issue:`2443`) -- Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:issue:`2445`) -- Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:issue:`2482`) -- Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:issue:`2482`) - - It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there. - -- Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:issue:`2433`) -- Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account. -- Add :attr:`Profile.team_user` to check whether a user is a member of a team. -- Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending. -- Add certain aliases to :class:`Permissions` to match the UI better. (:issue:`2496`) - - :attr:`Permissions.manage_permissions` - - :attr:`Permissions.view_channel` - - :attr:`Permissions.use_external_emojis` - -- Add support for passing keyword arguments when creating :class:`Permissions`. -- Add support for custom activities via :class:`CustomActivity`. (:issue:`2400`) - - Note that as of now, bots cannot send custom activities yet. - -- Add support for :func:`on_invite_create` and :func:`on_invite_delete` events. -- Add support for clearing a specific reaction emoji from a message. - - :meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods. - - :func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events. - -- Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:issue:`2517`, :issue:`2519`) -- |commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:issue:`2239`) -- |commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:issue:`2201`) -- |commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:issue:`2360`) -- |commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:issue:`2411`) -- |commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:issue:`2460`) -- |commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:issue:`2460`) -- |commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`. -- |commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks. -- |commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring. -- |commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function. -- |tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:issue:`2333`) -- |tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:issue:`2305`) - -Bug Fixes -~~~~~~~~~~ - -- Fix issue with permission resolution sometimes failing for guilds with no owner. -- Tokens are now stripped upon use. (:issue:`2135`) -- Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:issue:`2368`) -- Fix issue with webhooks not re-raising after retries have run out. (:issue:`2272`, :issue:`2380`) -- Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:issue:`2420`) -- Fix issue with ports being read in little endian when they should be big endian in voice connections. (:issue:`2470`) -- Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild. -- Fix bug with moving channels when there are gaps in positions due to channel deletion and creation. -- Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:issue:`2504`) -- Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`. -- Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`. -- Fix out of order files being sent in webhooks when there are 10 files. -- |commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:issue:`2244`, :issue:`2275`, :issue:`2291`) -- |commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:issue:`2251`) -- |commands| Allow converters from custom extension packages. (:issue:`2369`, :issue:`2374`) -- |commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:issue:`2471`) -- |commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them. -- |commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled. -- |commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:issue:`2489`) -- |commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler. - -Miscellaneous -~~~~~~~~~~~~~~~ - -- The library now fully supports Python 3.8 without warnings. -- Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:issue:`2453`) -- Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned. -- :func:`utils.escape_markdown` now properly escapes new quote markdown. -- The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`. -- The default message cache size has changed from 5000 to 1000 to accommodate small bots. -- Lower memory usage by only creating certain objects as needed in :class:`Role`. -- There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation. -- The rate limiting code now uses millisecond precision to have more granular rate limit handling. - - Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`. - -- The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:issue:`2375`) -- The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps. -- The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation. -- There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those. -- The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising. -- |commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:issue:`2498`) -- |tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:issue:`2516`) - -.. _vp1p2p5: - -v1.2.5 --------- - -Bug Fixes -~~~~~~~~~~~ - -- Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions. - -.. _vp1p2p4: - -v1.2.4 --------- - -Bug Fixes -~~~~~~~~~~~ - -- Fix a regression when :attr:`Message.channel` would be ``None``. -- Fix a regression where :attr:`Message.edited_at` would not update during edits. -- Fix a crash that would trigger during message updates (:issue:`2265`, :issue:`2287`). -- Fix a bug when :meth:`VoiceChannel.connect` would not return (:issue:`2274`, :issue:`2372`, :issue:`2373`, :issue:`2377`). -- Fix a crash relating to token-less webhooks (:issue:`2364`). -- Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:issue:`2331`, :issue:`2376`). - -.. _vp1p2p3: - -v1.2.3 --------- - -Bug Fixes -~~~~~~~~~~~ - -- Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:issue:`2213`) -- Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:issue:`2218`) -- Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:issue:`2232`) -- Properly propagate exceptions in :meth:`Client.run`. (:issue:`2237`) -- |commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``. - -.. _vp1p2p2: - -v1.2.2 --------- - -Bug Fixes -~~~~~~~~~~~ - -- Audit log related attribute access have been fixed to not error out when they shouldn't have. - -.. _vp1p2p1: - -v1.2.1 --------- - -Bug Fixes -~~~~~~~~~~~ - -- :attr:`User.avatar_url` and related attributes no longer raise an error. -- More compatibility shims with the ``enum.Enum`` code. - -.. _vp1p2p0: - -v1.2.0 --------- - -This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as "premium guilds"). - -New Features -~~~~~~~~~~~~~~ - -- Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level. -- Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting. -- Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild. -- Add :attr:`Member.premium_since` to query since when a member has boosted a guild. -- Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild. -- Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`. - - This includes a new type named :class:`SystemChannelFlags` -- Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise). -- Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`. -- Add :meth:`Guild.is_icon_animated`. -- Add support for the various new :class:`MessageType` involving nitro boosting. -- Add :attr:`VoiceRegion.india`. (:issue:`2145`) -- Add :meth:`Embed.insert_field_at`. (:issue:`2178`) -- Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:issue:`2185`) -- Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:issue:`2169`) -- Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:issue:`2169`) -- |tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling. -- |tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow. -- |tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:issue:`2158`, :issue:`2162`) - -Bug Fixes -~~~~~~~~~~~ - -- Fix internal error when using :meth:`Guild.prune_members`. -- |commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases. -- |tasks| Reset iteration count when the loop terminates and is restarted. -- |tasks| The decorator interface now works as expected when stacking (:issue:`2154`) - -Miscellaneous -~~~~~~~~~~~~~~~ - -- Improve performance of all Enum related code significantly. - - This was done by replacing the ``enum.Enum`` code with an API compatible one. - - This should not be a breaking change for most users due to duck-typing. -- Improve performance of message creation by about 1.5x. -- Improve performance of message editing by about 1.5-4x depending on payload size. -- Improve performance of attribute access on :class:`Member` about by 2x. -- Improve performance of :func:`utils.get` by around 4-6x depending on usage. -- Improve performance of event parsing lookup by around 2.5x. -- Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:issue:`953`, :issue:`2170`) -- The Discord error code is now shown in the exception message for :exc:`HTTPException`. -- Internal tasks launched by the library will now have their own custom ``__repr__``. -- All public facing types should now have a proper and more detailed ``__repr__``. -- |tasks| Errors are now logged via the standard :mod:`py:logging` module. - -.. _vp1p1p1: - -v1.1.1 --------- - -Bug Fixes -~~~~~~~~~~~~ - -- Webhooks do not overwrite data on retrying their HTTP requests (:issue:`2140`) - -Miscellaneous -~~~~~~~~~~~~~~ - -- Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup. - -.. _vp1p1p0: - -v1.1.0 ---------- - -New Features -~~~~~~~~~~~~~~ - -- **There is a new extension dedicated to making background tasks easier.** - - You can check the documentation here: :ref:`ext_tasks_api`. -- Add :attr:`Permissions.stream` permission. (:issue:`2077`) -- Add equality comparison and hash support to :class:`Asset` -- Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:issue:`2085`) -- Add :attr:`Client.cached_messages` attribute to fetch the message cache (:issue:`2086`) -- Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:issue:`2093`) -- Add ``delay`` keyword-only argument to :meth:`Message.delete` (:issue:`2094`) -- Add support for ``<:name:id>`` when adding reactions (:issue:`2095`) -- Add :meth:`Asset.read` to fetch the bytes content of an asset (:issue:`2107`) -- Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:issue:`2118`) -- Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`. - -``discord.ext.commands`` -++++++++++++++++++++++++++ - -- Add new :func:`~.commands.dm_only` check. -- Support callable converters in :data:`~.commands.Greedy` -- Add new :class:`~.commands.MessageConverter`. - - This allows you to use :class:`Message` as a type hint in functions. -- Allow passing ``cls`` in the :func:`~.commands.group` decorator (:issue:`2061`) -- Add :attr:`.Command.parents` to fetch the parents of a command (:issue:`2104`) - - -Bug Fixes -~~~~~~~~~~~~ - -- Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`. -- Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys. -- Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`. -- Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error. -- Fix bug where updating your own user did not update your member instances. -- Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:issue:`2113`, :issue:`2117`) - -``discord.ext.commands`` -++++++++++++++++++++++++++ - -- Fix lambda converters in a non-module context (e.g. ``eval``). -- Use message creation time for reference time when computing cooldowns. - - This prevents cooldowns from triggering during e.g. a RESUME session. -- Fix the default :func:`on_command_error` to work with new-style cogs (:issue:`2094`) -- DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check. -- Fix race condition with help commands (:issue:`2123`) -- Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:issue:`2139`) - -Miscellaneous -~~~~~~~~~~~~~~~ - -- Improve the performance of internal enum creation in the library by about 5x. -- Make the output of ``python -m discord --version`` a bit more useful. -- The loop cleanup facility has been rewritten again. -- The signal handling in :meth:`Client.run` has been removed. - -``discord.ext.commands`` -++++++++++++++++++++++++++ - -- Custom exception classes are now used for all default checks in the library (:issue:`2101`) - - -.. _vp1p0p1: - -v1.0.1 --------- - -Bug Fixes -~~~~~~~~~~~ - -- Fix issue with speaking state being cast to ``int`` when it was invalid. -- Fix some issues with loop cleanup that some users experienced on Linux machines. -- Fix voice handshake race condition (:issue:`2056`, :issue:`2063`) - -.. _vp1p0p0: - -v1.0.0 --------- - -The changeset for this version are too big to be listed here, for more information please -see :ref:`the migrating page `. - - -.. _vp0p16p6: - -v0.16.6 --------- - -Bug Fixes -~~~~~~~~~~ - -- Fix issue with :meth:`Client.create_server` that made it stop working. -- Fix main thread being blocked upon calling ``StreamPlayer.stop``. -- Handle HEARTBEAT_ACK and resume gracefully when it occurs. -- Fix race condition when pre-emptively rate limiting that caused releasing an already released lock. -- Fix invalid state errors when immediately cancelling a coroutine. - -.. _vp0p16p1: - -v0.16.1 --------- - -This release is just a bug fix release with some better rate limit implementation. - -Bug Fixes -~~~~~~~~~~~ - -- Servers are now properly chunked for user bots. -- The CDN URL is now used instead of the API URL for assets. -- Rate limit implementation now tries to use header information if possible. -- Event loop is now properly propagated (:issue:`420`) -- Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`. - -.. _vp0p16p0: - -v0.16.0 ---------- - -New Features -~~~~~~~~~~~~~~ - -- Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel. -- Add :attr:`Server.features` to get information about partnered servers. - -Bug Fixes -~~~~~~~~~~ - -- Timeout when waiting for offline members while triggering :func:`on_ready`. - - - The fact that we did not timeout caused a gigantic memory leak in the library that caused - thousands of duplicate :class:`Member` instances causing big memory spikes. - -- Discard null sequences in the gateway. - - - The fact these were not discarded meant that :func:`on_ready` kept being called instead of - :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be - called once or twice with :func:`on_resumed` being called much more often. - -.. _vp0p15p1: - -v0.15.1 ---------- - -- Fix crash on duplicate or out of order reactions. - -.. _vp0p15p0: - -v0.15.0 --------- - -New Features -~~~~~~~~~~~~~~ - -- Rich Embeds for messages are now supported. - - - To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`. -- Add :meth:`Client.clear_reactions` to remove all reactions from a message. -- Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`. -- Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates. - - - This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line. -- Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false). - -For the command extension, the following changed: - -- ``Context`` is no longer slotted to facilitate setting dynamic attributes. - -.. _vp0p14p3: - -v0.14.3 ---------- - -Bug Fixes -~~~~~~~~~~~ - -- Fix crash when dealing with MESSAGE_REACTION_REMOVE -- Fix incorrect buckets for reactions. - -.. _v0p14p2: - -v0.14.2 ---------- - -New Features -~~~~~~~~~~~~~~ - -- :meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes. - - This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues. - -Bug Fixes -~~~~~~~~~~ - -- Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`. - -.. _v0p14p1: - -v0.14.1 ---------- - -Bug fixes -~~~~~~~~~~ - -- Fix bug with `Reaction` not being visible at import. - - This was also breaking the documentation. - -.. _v0p14p0: - -v0.14.0 --------- - -This update adds new API features and a couple of bug fixes. - -New Features -~~~~~~~~~~~~~ - -- Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks` -- Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`. -- Add support for reactions. - - :meth:`Client.add_reaction` to add a reactions - - :meth:`Client.remove_reaction` to remove a reaction. - - :meth:`Client.get_reaction_users` to get the users that reacted to a message. - - :attr:`Permissions.add_reactions` permission bit support. - - Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`. - - :attr:`Message.reactions` to get reactions from a message. - - :meth:`Client.wait_for_reaction` to wait for a reaction from a user. - -Bug Fixes -~~~~~~~~~~ - -- Fix bug with Paginator still allowing lines that are too long. -- Fix the :attr:`Permissions.manage_emojis` bit being incorrect. - -.. _v0p13p0: - -v0.13.0 ---------- - -This is a backwards compatible update with new features. - -New Features -~~~~~~~~~~~~~ - -- Add the ability to manage emojis. - - - :meth:`Client.create_custom_emoji` to create new emoji. - - :meth:`Client.edit_custom_emoji` to edit an old emoji. - - :meth:`Client.delete_custom_emoji` to delete a custom emoji. -- Add new :attr:`Permissions.manage_emojis` toggle. - - - This applies for :class:`PermissionOverwrite` as well. -- Add new statuses for :class:`Status`. - - - :attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\) for Do Not Disturb. - - :attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat). -- Deprecate :meth:`Client.change_status` - - - Use :meth:`Client.change_presence` instead for better more up to date functionality. - - This method is subject for removal in a future API version. -- Add :meth:`Client.change_presence` for changing your status with the new Discord API change. - - - This is the only method that allows changing your status to invisible or do not disturb. - -Bug Fixes -~~~~~~~~~~ - -- Paginator pages do not exceed their max_size anymore (:issue:`340`) -- Do Not Disturb users no longer show up offline due to the new :class:`Status` changes. - -.. _v0p12p0: - -v0.12.0 ---------- - -This is a bug fix update that also comes with new features. - -New Features -~~~~~~~~~~~~~ - -- Add custom emoji support. - - - Adds a new class to represent a custom Emoji named :class:`Emoji` - - Adds a utility generator function, :meth:`Client.get_all_emojis`. - - Adds a list of emojis on a server, :attr:`Server.emojis`. - - Adds a new event, :func:`on_server_emojis_update`. -- Add new server regions to :class:`ServerRegion` - - - :attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`. -- Add support for new pinned system message under :attr:`MessageType.pins_add`. -- Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy. - - - This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy. - -- Add :attr:`Server.role_hierarchy` to get the server's role hierarchy. -- Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites. -- Add :meth:`Client.get_user_info` to retrieve a user's info from their ID. -- Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player. - - - To help with this change, a player's ``after`` function can now take a single parameter denoting the current player. -- Add support for server verification levels. - - - Adds a new enum called :class:`VerificationLevel`. - - This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument. - - Adds a new attribute in the server, :attr:`Server.verification_level`. -- Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`. - - - This is technically old (was added in v0.10.0) but was undocumented until v0.12.0. - -For the command extension, the following are new: - -- Add custom emoji converter. -- All default converters that can take IDs can now convert via ID. -- Add coroutine support for ``Bot.command_prefix``. -- Add a method to reset command cooldown. - -Bug Fixes -~~~~~~~~~~ - -- Fix bug that caused the library to not work with the latest ``websockets`` library. -- Fix bug that leaked keep alive threads (:issue:`309`) -- Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`. -- Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order. -- Fix bug in :attr:`Member.top_role` that did not account for same-position roles. - -.. _v0p11p0: - -v0.11.0 --------- - -This is a minor bug fix update that comes with a gateway update (v5 -> v6). - -Breaking Changes -~~~~~~~~~~~~~~~~~ - -- ``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI. - -New Features -~~~~~~~~~~~~~ - -- Add the ability to prune members via :meth:`Client.prune_members`. -- Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls. -- Add :attr:`AppInfo.owner` attribute. -- Add :class:`CallMessage` for group voice call messages. -- Add :class:`GroupCall` for group voice call information. -- Add :attr:`Message.system_content` to get the system message. -- Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum. -- Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr. -- The library now handles implicit permission resolution in :meth:`Channel.permissions_for`. -- Add :attr:`Server.mfa_level` to query a server's 2FA requirement. -- Add :attr:`Permissions.external_emojis` permission. -- Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`. - - - For backwards compatibility, the member object will have properties mirroring the old behaviour. - -For the command extension, the following are new: - -- Command cooldown system with the ``cooldown`` decorator. -- ``UserInputError`` exception for the hierarchy for user input related errors. - -Bug Fixes -~~~~~~~~~~ - -- :attr:`Client.email` is now saved when using a token for user accounts. -- Fix issue when removing roles out of order. -- Fix bug where discriminators would not update. -- Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly. - -For the command extension, the following bug fixes apply: - -- ``Bot.check`` decorator is actually a decorator not requiring parentheses. -- ``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist. -- Command names are no longer forced to be ``lower()``. -- Fix a bug where Member and User converters failed to work in private message contexts. -- ``HelpFormatter`` now ignores hidden commands when deciding the maximum width. - -.. _v0p10p0: - -v0.10.0 -------- - -For breaking changes, see :ref:`migrating-to-async`. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive. - -New Features -~~~~~~~~~~~~~ - -- The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily. -- The library now fully handles 429s and unconditionally retries on 502s. -- A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader. -- Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors. -- Added :meth:`Client.delete_invite` to revoke invites. -- Added support for sending voice. Check :class:`VoiceClient` for more details. -- Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands. -- Added :data:`version_info` named tuple to check version info of the library. -- Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` - when constructing a :class:`Client`. -- New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes. -- All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``. -- Added :meth:`Client.get_bans` to get banned members from a server. -- Added :meth:`Client.invites_from` to get currently active invites in a server. -- Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`. -- Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses. -- Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names. -- Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`. -- Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready. -- Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in. -- Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`. -- Add :attr:`Message.nonce` attribute. -- Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`. -- Add :meth:`Client.move_member` to move a member to another voice channel. -- You can now create a server via :meth:`Client.create_server`. -- Added :meth:`Client.edit_server` to edit existing servers. -- Added :meth:`Client.server_voice_state` to server mute or server deafen a member. -- If you are being rate limited, the library will now handle it for you. -- Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned. - -Performance Improvements -~~~~~~~~~~~~~~~~~~~~~~~~~ - -- All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache. -- Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly. -- A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``. -- Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would - receive performance improvements by having to download and process less data. -- While minor, change regex from ``\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups. - -Bug Fixes -~~~~~~~~~~ - -- Fix bug where guilds being updated did not edit the items in cache. -- Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role. -- Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited. -- :meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation. -- Fix bug where a role being deleted would trigger a ``ValueError``. -- Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped. -- Mentions are now triggered normally. This was changed due to the way discord handles it internally. -- Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is - a :class:`Object`. -- Unavailable servers were not being added into cache, this has been corrected. \ No newline at end of file diff --git a/docs/Python/html/_static/basic.css b/docs/Python/html/_static/basic.css deleted file mode 100644 index 912859b5..00000000 --- a/docs/Python/html/_static/basic.css +++ /dev/null @@ -1,904 +0,0 @@ -/* - * basic.css - * ~~~~~~~~~ - * - * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/* -- main layout ----------------------------------------------------------- */ - -div.clearer { - clear: both; -} - -div.section::after { - display: block; - content: ''; - clear: left; -} - -/* -- relbar ---------------------------------------------------------------- */ - -div.related { - width: 100%; - font-size: 90%; -} - -div.related h3 { - display: none; -} - -div.related ul { - margin: 0; - padding: 0 0 0 10px; - list-style: none; -} - -div.related li { - display: inline; -} - -div.related li.right { - float: right; - margin-right: 5px; -} - -/* -- sidebar --------------------------------------------------------------- */ - -div.sphinxsidebarwrapper { - padding: 10px 5px 0 10px; -} - -div.sphinxsidebar { - float: left; - width: 230px; - margin-left: -100%; - font-size: 90%; - word-wrap: break-word; - overflow-wrap : break-word; -} - -div.sphinxsidebar ul { - list-style: none; -} - -div.sphinxsidebar ul ul, -div.sphinxsidebar ul.want-points { - margin-left: 20px; - list-style: square; -} - -div.sphinxsidebar ul ul { - margin-top: 0; - margin-bottom: 0; -} - -div.sphinxsidebar form { - margin-top: 10px; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - -div.sphinxsidebar #searchbox form.search { - overflow: hidden; -} - -div.sphinxsidebar #searchbox input[type="text"] { - float: left; - width: 80%; - padding: 0.25em; - box-sizing: border-box; -} - -div.sphinxsidebar #searchbox input[type="submit"] { - float: left; - width: 20%; - border-left: none; - padding: 0.25em; - box-sizing: border-box; -} - - -img { - border: 0; - max-width: 100%; -} - -/* -- search page ----------------------------------------------------------- */ - -ul.search { - margin: 10px 0 0 20px; - padding: 0; -} - -ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; -} - -ul.search li a { - font-weight: bold; -} - -ul.search li p.context { - color: #888; - margin: 2px 0 0 30px; - text-align: left; -} - -ul.keywordmatches li.goodmatch a { - font-weight: bold; -} - -/* -- index page ------------------------------------------------------------ */ - -table.contentstable { - width: 90%; - margin-left: auto; - margin-right: auto; -} - -table.contentstable p.biglink { - line-height: 150%; -} - -a.biglink { - font-size: 1.3em; -} - -span.linkdescr { - font-style: italic; - padding-top: 5px; - font-size: 90%; -} - -/* -- general index --------------------------------------------------------- */ - -table.indextable { - width: 100%; -} - -table.indextable td { - text-align: left; - vertical-align: top; -} - -table.indextable ul { - margin-top: 0; - margin-bottom: 0; - list-style-type: none; -} - -table.indextable > tbody > tr > td > ul { - padding-left: 0em; -} - -table.indextable tr.pcap { - height: 10px; -} - -table.indextable tr.cap { - margin-top: 10px; - background-color: #f2f2f2; -} - -img.toggler { - margin-right: 3px; - margin-top: 3px; - cursor: pointer; -} - -div.modindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -div.genindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -/* -- domain module index --------------------------------------------------- */ - -table.modindextable td { - padding: 2px; - border-collapse: collapse; -} - -/* -- general body styles --------------------------------------------------- */ - -div.body { - min-width: 450px; - max-width: 800px; -} - -div.body p, div.body dd, div.body li, div.body blockquote { - -moz-hyphens: auto; - -ms-hyphens: auto; - -webkit-hyphens: auto; - hyphens: auto; -} - -a.headerlink { - visibility: hidden; -} - -a.brackets:before, -span.brackets > a:before{ - content: "["; -} - -a.brackets:after, -span.brackets > a:after { - content: "]"; -} - -h1:hover > a.headerlink, -h2:hover > a.headerlink, -h3:hover > a.headerlink, -h4:hover > a.headerlink, -h5:hover > a.headerlink, -h6:hover > a.headerlink, -dt:hover > a.headerlink, -caption:hover > a.headerlink, -p.caption:hover > a.headerlink, -div.code-block-caption:hover > a.headerlink { - visibility: visible; -} - -div.body p.caption { - text-align: inherit; -} - -div.body td { - text-align: left; -} - -.first { - margin-top: 0 !important; -} - -p.rubric { - margin-top: 30px; - font-weight: bold; -} - -img.align-left, figure.align-left, .figure.align-left, object.align-left { - clear: left; - float: left; - margin-right: 1em; -} - -img.align-right, figure.align-right, .figure.align-right, object.align-right { - clear: right; - float: right; - margin-left: 1em; -} - -img.align-center, figure.align-center, .figure.align-center, object.align-center { - display: block; - margin-left: auto; - margin-right: auto; -} - -img.align-default, figure.align-default, .figure.align-default { - display: block; - margin-left: auto; - margin-right: auto; -} - -.align-left { - text-align: left; -} - -.align-center { - text-align: center; -} - -.align-default { - text-align: center; -} - -.align-right { - text-align: right; -} - -/* -- sidebars -------------------------------------------------------------- */ - -div.sidebar, -aside.sidebar { - margin: 0 0 0.5em 1em; - border: 1px solid #ddb; - padding: 7px; - background-color: #ffe; - width: 40%; - float: right; - clear: right; - overflow-x: auto; -} - -p.sidebar-title { - font-weight: bold; -} - -div.admonition, div.topic, blockquote { - clear: left; -} - -/* -- topics ---------------------------------------------------------------- */ - -div.topic { - border: 1px solid #ccc; - padding: 7px; - margin: 10px 0 10px 0; -} - -p.topic-title { - font-size: 1.1em; - font-weight: bold; - margin-top: 10px; -} - -/* -- admonitions ----------------------------------------------------------- */ - -div.admonition { - margin-top: 10px; - margin-bottom: 10px; - padding: 7px; -} - -div.admonition dt { - font-weight: bold; -} - -p.admonition-title { - margin: 0px 10px 5px 0px; - font-weight: bold; -} - -div.body p.centered { - text-align: center; - margin-top: 25px; -} - -/* -- content of sidebars/topics/admonitions -------------------------------- */ - -div.sidebar > :last-child, -aside.sidebar > :last-child, -div.topic > :last-child, -div.admonition > :last-child { - margin-bottom: 0; -} - -div.sidebar::after, -aside.sidebar::after, -div.topic::after, -div.admonition::after, -blockquote::after { - display: block; - content: ''; - clear: both; -} - -/* -- tables ---------------------------------------------------------------- */ - -table.docutils { - margin-top: 10px; - margin-bottom: 10px; - border: 0; - border-collapse: collapse; -} - -table.align-center { - margin-left: auto; - margin-right: auto; -} - -table.align-default { - margin-left: auto; - margin-right: auto; -} - -table caption span.caption-number { - font-style: italic; -} - -table caption span.caption-text { -} - -table.docutils td, table.docutils th { - padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #aaa; -} - -table.footnote td, table.footnote th { - border: 0 !important; -} - -th { - text-align: left; - padding-right: 5px; -} - -table.citation { - border-left: solid 1px gray; - margin-left: 1px; -} - -table.citation td { - border-bottom: none; -} - -th > :first-child, -td > :first-child { - margin-top: 0px; -} - -th > :last-child, -td > :last-child { - margin-bottom: 0px; -} - -/* -- figures --------------------------------------------------------------- */ - -div.figure, figure { - margin: 0.5em; - padding: 0.5em; -} - -div.figure p.caption, figcaption { - padding: 0.3em; -} - -div.figure p.caption span.caption-number, -figcaption span.caption-number { - font-style: italic; -} - -div.figure p.caption span.caption-text, -figcaption span.caption-text { -} - -/* -- field list styles ----------------------------------------------------- */ - -table.field-list td, table.field-list th { - border: 0 !important; -} - -.field-list ul { - margin: 0; - padding-left: 1em; -} - -.field-list p { - margin: 0; -} - -.field-name { - -moz-hyphens: manual; - -ms-hyphens: manual; - -webkit-hyphens: manual; - hyphens: manual; -} - -/* -- hlist styles ---------------------------------------------------------- */ - -table.hlist { - margin: 1em 0; -} - -table.hlist td { - vertical-align: top; -} - -/* -- object description styles --------------------------------------------- */ - -.sig { - font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; -} - -.sig-name, code.descname { - background-color: transparent; - font-weight: bold; -} - -.sig-name { - font-size: 1.1em; -} - -code.descname { - font-size: 1.2em; -} - -.sig-prename, code.descclassname { - background-color: transparent; -} - -.optional { - font-size: 1.3em; -} - -.sig-paren { - font-size: larger; -} - -.sig-param.n { - font-style: italic; -} - -/* C++ specific styling */ - -.sig-inline.c-texpr, -.sig-inline.cpp-texpr { - font-family: unset; -} - -.sig.c .k, .sig.c .kt, -.sig.cpp .k, .sig.cpp .kt { - color: #0033B3; -} - -.sig.c .m, -.sig.cpp .m { - color: #1750EB; -} - -.sig.c .s, .sig.c .sc, -.sig.cpp .s, .sig.cpp .sc { - color: #067D17; -} - - -/* -- other body styles ----------------------------------------------------- */ - -ol.arabic { - list-style: decimal; -} - -ol.loweralpha { - list-style: lower-alpha; -} - -ol.upperalpha { - list-style: upper-alpha; -} - -ol.lowerroman { - list-style: lower-roman; -} - -ol.upperroman { - list-style: upper-roman; -} - -:not(li) > ol > li:first-child > :first-child, -:not(li) > ul > li:first-child > :first-child { - margin-top: 0px; -} - -:not(li) > ol > li:last-child > :last-child, -:not(li) > ul > li:last-child > :last-child { - margin-bottom: 0px; -} - -ol.simple ol p, -ol.simple ul p, -ul.simple ol p, -ul.simple ul p { - margin-top: 0; -} - -ol.simple > li:not(:first-child) > p, -ul.simple > li:not(:first-child) > p { - margin-top: 0; -} - -ol.simple p, -ul.simple p { - margin-bottom: 0; -} - -dl.footnote > dt, -dl.citation > dt { - float: left; - margin-right: 0.5em; -} - -dl.footnote > dd, -dl.citation > dd { - margin-bottom: 0em; -} - -dl.footnote > dd:after, -dl.citation > dd:after { - content: ""; - clear: both; -} - -dl.field-list { - display: grid; - grid-template-columns: fit-content(30%) auto; -} - -dl.field-list > dt { - font-weight: bold; - word-break: break-word; - padding-left: 0.5em; - padding-right: 5px; -} - -dl.field-list > dt:after { - content: ":"; -} - -dl.field-list > dd { - padding-left: 0.5em; - margin-top: 0em; - margin-left: 0em; - margin-bottom: 0em; -} - -dl { - margin-bottom: 15px; -} - -dd > :first-child { - margin-top: 0px; -} - -dd ul, dd table { - margin-bottom: 10px; -} - -dd { - margin-top: 3px; - margin-bottom: 10px; - margin-left: 30px; -} - -dl > dd:last-child, -dl > dd:last-child > :last-child { - margin-bottom: 0; -} - -dt:target, span.highlighted { - background-color: #fbe54e; -} - -rect.highlighted { - fill: #fbe54e; -} - -dl.glossary dt { - font-weight: bold; - font-size: 1.1em; -} - -.versionmodified { - font-style: italic; -} - -.system-message { - background-color: #fda; - padding: 5px; - border: 3px solid red; -} - -.footnote:target { - background-color: #ffa; -} - -.line-block { - display: block; - margin-top: 1em; - margin-bottom: 1em; -} - -.line-block .line-block { - margin-top: 0; - margin-bottom: 0; - margin-left: 1.5em; -} - -.guilabel, .menuselection { - font-family: sans-serif; -} - -.accelerator { - text-decoration: underline; -} - -.classifier { - font-style: oblique; -} - -.classifier:before { - font-style: normal; - margin: 0.5em; - content: ":"; -} - -abbr, acronym { - border-bottom: dotted 1px; - cursor: help; -} - -/* -- code displays --------------------------------------------------------- */ - -pre { - overflow: auto; - overflow-y: hidden; /* fixes display issues on Chrome browsers */ -} - -pre, div[class*="highlight-"] { - clear: both; -} - -span.pre { - -moz-hyphens: none; - -ms-hyphens: none; - -webkit-hyphens: none; - hyphens: none; -} - -div[class*="highlight-"] { - margin: 1em 0; -} - -td.linenos pre { - border: 0; - background-color: transparent; - color: #aaa; -} - -table.highlighttable { - display: block; -} - -table.highlighttable tbody { - display: block; -} - -table.highlighttable tr { - display: flex; -} - -table.highlighttable td { - margin: 0; - padding: 0; -} - -table.highlighttable td.linenos { - padding-right: 0.5em; -} - -table.highlighttable td.code { - flex: 1; - overflow: hidden; -} - -.highlight .hll { - display: block; -} - -div.highlight pre, -table.highlighttable pre { - margin: 0; -} - -div.code-block-caption + div { - margin-top: 0; -} - -div.code-block-caption { - margin-top: 1em; - padding: 2px 5px; - font-size: small; -} - -div.code-block-caption code { - background-color: transparent; -} - -table.highlighttable td.linenos, -span.linenos, -div.highlight span.gp { /* gp: Generic.Prompt */ - user-select: none; - -webkit-user-select: text; /* Safari fallback only */ - -webkit-user-select: none; /* Chrome/Safari */ - -moz-user-select: none; /* Firefox */ - -ms-user-select: none; /* IE10+ */ -} - -div.code-block-caption span.caption-number { - padding: 0.1em 0.3em; - font-style: italic; -} - -div.code-block-caption span.caption-text { -} - -div.literal-block-wrapper { - margin: 1em 0; -} - -code.xref, a code { - background-color: transparent; - font-weight: bold; -} - -h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { - background-color: transparent; -} - -.viewcode-link { - float: right; -} - -.viewcode-back { - float: right; - font-family: sans-serif; -} - -div.viewcode-block:target { - margin: -1px -10px; - padding: 0 10px; -} - -/* -- math display ---------------------------------------------------------- */ - -img.math { - vertical-align: middle; -} - -div.body div.math p { - text-align: center; -} - -span.eqno { - float: right; -} - -span.eqno a.headerlink { - position: absolute; - z-index: 1; -} - -div.math:hover a.headerlink { - visibility: visible; -} - -/* -- printout stylesheet --------------------------------------------------- */ - -@media print { - div.document, - div.documentwrapper, - div.bodywrapper { - margin: 0 !important; - width: 100%; - } - - div.sphinxsidebar, - div.related, - div.footer, - #top-link { - display: none; - } -} \ No newline at end of file diff --git a/docs/Python/html/_static/codeblocks.css b/docs/Python/html/_static/codeblocks.css deleted file mode 100644 index 04755281..00000000 --- a/docs/Python/html/_static/codeblocks.css +++ /dev/null @@ -1,143 +0,0 @@ -/* light theme: default */ -.highlight .hll { background-color: #ffffcc } -.highlight { background: #f0f0f0; } -.highlight .c { color: #60a0b0; font-style: italic } /* Comment */ -.highlight .err { border: 1px solid #FF0000 } /* Error */ -.highlight .k { color: #007020; font-weight: bold } /* Keyword */ -.highlight .o { color: #666666 } /* Operator */ -.highlight .ch { color: #60a0b0; font-style: italic } /* Comment.Hashbang */ -.highlight .cm { color: #60a0b0; font-style: italic } /* Comment.Multiline */ -.highlight .cp { color: #007020 } /* Comment.Preproc */ -.highlight .cpf { color: #60a0b0; font-style: italic } /* Comment.PreprocFile */ -.highlight .c1 { color: #60a0b0; font-style: italic } /* Comment.Single */ -.highlight .cs { color: #60a0b0; background-color: #fff0f0 } /* Comment.Special */ -.highlight .gd { color: #A00000 } /* Generic.Deleted */ -.highlight .ge { font-style: italic } /* Generic.Emph */ -.highlight .gr { color: #FF0000 } /* Generic.Error */ -.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ -.highlight .gi { color: #00A000 } /* Generic.Inserted */ -.highlight .go { color: #888888 } /* Generic.Output */ -.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */ -.highlight .gs { font-weight: bold } /* Generic.Strong */ -.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ -.highlight .gt { color: #0044DD } /* Generic.Traceback */ -.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */ -.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */ -.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */ -.highlight .kp { color: #007020 } /* Keyword.Pseudo */ -.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */ -.highlight .kt { color: #902000 } /* Keyword.Type */ -.highlight .m { color: #40a070 } /* Literal.Number */ -.highlight .s { color: #4070a0 } /* Literal.String */ -.highlight .na { color: #4070a0 } /* Name.Attribute */ -.highlight .nb { color: #007020 } /* Name.Builtin */ -.highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */ -.highlight .no { color: #60add5 } /* Name.Constant */ -.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */ -.highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */ -.highlight .ne { color: #007020 } /* Name.Exception */ -.highlight .nf { color: #06287e } /* Name.Function */ -.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */ -.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ -.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */ -.highlight .nv { color: #bb60d5 } /* Name.Variable */ -.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */ -.highlight .w { color: #bbbbbb } /* Text.Whitespace */ -.highlight .mb { color: #40a070 } /* Literal.Number.Bin */ -.highlight .mf { color: #40a070 } /* Literal.Number.Float */ -.highlight .mh { color: #40a070 } /* Literal.Number.Hex */ -.highlight .mi { color: #40a070 } /* Literal.Number.Integer */ -.highlight .mo { color: #40a070 } /* Literal.Number.Oct */ -.highlight .sa { color: #4070a0 } /* Literal.String.Affix */ -.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */ -.highlight .sc { color: #4070a0 } /* Literal.String.Char */ -.highlight .dl { color: #4070a0 } /* Literal.String.Delimiter */ -.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */ -.highlight .s2 { color: #4070a0 } /* Literal.String.Double */ -.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */ -.highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */ -.highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */ -.highlight .sx { color: #c65d09 } /* Literal.String.Other */ -.highlight .sr { color: #235388 } /* Literal.String.Regex */ -.highlight .s1 { color: #4070a0 } /* Literal.String.Single */ -.highlight .ss { color: #517918 } /* Literal.String.Symbol */ -.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */ -.highlight .fm { color: #06287e } /* Name.Function.Magic */ -.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */ -.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */ -.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */ -.highlight .vm { color: #bb60d5 } /* Name.Variable.Magic */ -.highlight .il { color: #40a070 } /* Literal.Number.Integer.Long */ - -/* dark theme: modified "native" */ -:root[data-theme="dark"] .highlight pre { background-color: #2a2a2e } -:root[data-theme="dark"] .highlight .hll { background-color: #2a2a2e } -:root[data-theme="dark"] .highlight .c { color: #999999; font-style: italic } /* Comment */ -:root[data-theme="dark"] .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ -:root[data-theme="dark"] .highlight .g { color: #d0d0d0 } /* Generic */ -:root[data-theme="dark"] .highlight .k { color: #6ab825; font-weight: bold } /* Keyword */ -:root[data-theme="dark"] .highlight .l { color: #d0d0d0 } /* Literal */ -:root[data-theme="dark"] .highlight .n { color: #d0d0d0 } /* Name */ -:root[data-theme="dark"] .highlight .o { color: #d0d0d0 } /* Operator */ -:root[data-theme="dark"] .highlight .x { color: #d0d0d0 } /* Other */ -:root[data-theme="dark"] .highlight .p { color: #d0d0d0 } /* Punctuation */ -:root[data-theme="dark"] .highlight .cm { color: #999999; font-style: italic } /* Comment.Multiline */ -:root[data-theme="dark"] .highlight .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */ -:root[data-theme="dark"] .highlight .c1 { color: #999999; font-style: italic } /* Comment.Single */ -:root[data-theme="dark"] .highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */ -:root[data-theme="dark"] .highlight .gd { color: #d22323 } /* Generic.Deleted */ -:root[data-theme="dark"] .highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */ -:root[data-theme="dark"] .highlight .gr { color: #d22323 } /* Generic.Error */ -:root[data-theme="dark"] .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */ -:root[data-theme="dark"] .highlight .gi { color: #589819 } /* Generic.Inserted */ -:root[data-theme="dark"] .highlight .go { color: #cccccc } /* Generic.Output */ -:root[data-theme="dark"] .highlight .gp { color: #aaaaaa } /* Generic.Prompt */ -:root[data-theme="dark"] .highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */ -:root[data-theme="dark"] .highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */ -:root[data-theme="dark"] .highlight .gt { color: #d22323 } /* Generic.Traceback */ -:root[data-theme="dark"] .highlight .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */ -:root[data-theme="dark"] .highlight .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */ -:root[data-theme="dark"] .highlight .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */ -:root[data-theme="dark"] .highlight .kp { color: #6ab825 } /* Keyword.Pseudo */ -:root[data-theme="dark"] .highlight .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */ -:root[data-theme="dark"] .highlight .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */ -:root[data-theme="dark"] .highlight .ld { color: #d0d0d0 } /* Literal.Date */ -:root[data-theme="dark"] .highlight .m { color: #7fb1d7 } /* Literal.Number */ -:root[data-theme="dark"] .highlight .s { color: #ed9d13 } /* Literal.String */ -:root[data-theme="dark"] .highlight .na { color: #bbbbbb; } /* Name.Attribute */ -:root[data-theme="dark"] .highlight .nb { color: #29a5b3; } /* Name.Builtin */ -:root[data-theme="dark"] .highlight .nc { color: #6494d8;} /* Name.Class */ -:root[data-theme="dark"] .highlight .no { color: #40ffff; } /* Name.Constant */ -:root[data-theme="dark"] .highlight .nd { color: #ffa500; } /* Name.Decorator */ -:root[data-theme="dark"] .highlight .ni { color: #d0d0d0; } /* Name.Entity */ -:root[data-theme="dark"] .highlight .ne { color: #bbbbbb; } /* Name.Exception */ -:root[data-theme="dark"] .highlight .nf { color: #6494d8; } /* Name.Function */ -:root[data-theme="dark"] .highlight .fm { color: #6494d8; } /* Name.Function.Magic */ -:root[data-theme="dark"] .highlight .nl { color: #d0d0d0; } /* Name.Label */ -:root[data-theme="dark"] .highlight .nn { color: #6494d8;} /* Name.Namespace */ -:root[data-theme="dark"] .highlight .nx { color: #d0d0d0; } /* Name.Other */ -:root[data-theme="dark"] .highlight .py { color: #d0d0d0; } /* Name.Property */ -:root[data-theme="dark"] .highlight .nt { color: #6ab825; font-weight: bold } /* Name.Tag */ -:root[data-theme="dark"] .highlight .nv { color: #40ffff; } /* Name.Variable */ -:root[data-theme="dark"] .highlight .ow { color: #6ab825; font-weight: bold } /* Operator.Word */ -:root[data-theme="dark"] .highlight .w { color: #666666; } /* Text.Whitespace */ -:root[data-theme="dark"] .highlight .mf { color: #7fb1d7; } /* Literal.Number.Float */ -:root[data-theme="dark"] .highlight .mh { color: #7fb1d7; } /* Literal.Number.Hex */ -:root[data-theme="dark"] .highlight .mi { color: #7fb1d7; } /* Literal.Number.Integer */ -:root[data-theme="dark"] .highlight .mo { color: #7fb1d7; } /* Literal.Number.Oct */ -:root[data-theme="dark"] .highlight .sb { color: #ed9d13; } /* Literal.String.Backtick */ -:root[data-theme="dark"] .highlight .sc { color: #ed9d13; } /* Literal.String.Char */ -:root[data-theme="dark"] .highlight .sd { color: #ed9d13; } /* Literal.String.Doc */ -:root[data-theme="dark"] .highlight .s2 { color: #ed9d13; } /* Literal.String.Double */ -:root[data-theme="dark"] .highlight .se { color: #ed9d13; } /* Literal.String.Escape */ -:root[data-theme="dark"] .highlight .sh { color: #ed9d13; } /* Literal.String.Heredoc */ -:root[data-theme="dark"] .highlight .si { color: #ed9d13; } /* Literal.String.Interpol */ -:root[data-theme="dark"] .highlight .sx { color: #ffa500; } /* Literal.String.Other */ -:root[data-theme="dark"] .highlight .sr { color: #ed9d13; } /* Literal.String.Regex */ -:root[data-theme="dark"] .highlight .s1 { color: #ed9d13; } /* Literal.String.Single */ -:root[data-theme="dark"] .highlight .ss { color: #ed9d13; } /* Literal.String.Symbol */ -:root[data-theme="dark"] .highlight .bp { color: #29a5b3; } /* Name.Builtin.Pseudo */ -:root[data-theme="dark"] .highlight .vc { color: #40ffff; } /* Name.Variable.Class */ -:root[data-theme="dark"] .highlight .vg { color: #40ffff; } /* Name.Variable.Global */ -:root[data-theme="dark"] .highlight .vi { color: #40ffff; } /* Name.Variable.Instance */ -:root[data-theme="dark"] .highlight .il { color: #7fb1d7; } /* Literal.Number.Integer.Long */ diff --git a/docs/Python/html/_static/copy.js b/docs/Python/html/_static/copy.js deleted file mode 100644 index f70e3d67..00000000 --- a/docs/Python/html/_static/copy.js +++ /dev/null @@ -1,34 +0,0 @@ -const COPY = "content_copy"; -const COPIED = "done"; - -const copy = async (obj) => { - // {{text}} - await navigator.clipboard.writeText(obj.children[1].innerText).then( - () => { - let icon = obj.children[0].children[0]; - icon.textContent = COPIED; - setTimeout(() => (icon.textContent = COPY), 2500); - }, - (r) => alert('Could not copy codeblock:\n' + r.toString()) - ); -}; - -document.addEventListener("DOMContentLoaded", () => { - let allCodeblocks = document.querySelectorAll("div[class='highlight']"); - - for (let codeblock of allCodeblocks) { - codeblock.parentNode.className += " relative-copy"; - let copyEl = document.createElement("span"); - copyEl.addEventListener('click', () => copy(codeblock)); - copyEl.className = "copy"; - copyEl.setAttribute("aria-label", "Copy Code"); - copyEl.setAttribute("title", "Copy Code"); - - let copyIcon = document.createElement("span"); - copyIcon.className = "material-icons"; - copyIcon.textContent = COPY; - copyEl.append(copyIcon); - - codeblock.prepend(copyEl); - } -}); diff --git a/docs/Python/html/_static/custom.js b/docs/Python/html/_static/custom.js deleted file mode 100644 index f3cfa461..00000000 --- a/docs/Python/html/_static/custom.js +++ /dev/null @@ -1,97 +0,0 @@ -'use-strict'; - -let activeModal = null; -let bottomHeightThreshold, sections; -let hamburgerToggle; -let mobileSearch; -let sidebar; -let toTop; - -class Modal { - constructor(element) { - this.element = element; - } - - close() { - activeModal = null; - this.element.style.display = 'none' - } - - open() { - if (activeModal) { - activeModal.close(); - } - activeModal = this; - this.element.style.display = 'flex' - } -} - -class SearchBar { - - constructor() { - this.box = document.querySelector('nav.mobile-only'); - this.bar = document.querySelector('nav.mobile-only input[type="search"]'); - this.openButton = document.getElementById('open-search'); - this.closeButton = document.getElementById('close-search'); - } - - open() { - this.openButton.hidden = true; - this.closeButton.hidden = false; - this.box.style.top = "100%"; - this.bar.focus(); - } - - close() { - this.openButton.hidden = false; - this.closeButton.hidden = true; - this.box.style.top = "0"; - } - -} - -function scrollToTop() { - window.scrollTo({ top: 0, behavior: 'smooth' }); -} - -document.addEventListener('DOMContentLoaded', () => { - mobileSearch = new SearchBar(); - - bottomHeightThreshold = document.documentElement.scrollHeight - 30; - sections = document.querySelectorAll('section'); - hamburgerToggle = document.getElementById('hamburger-toggle'); - - toTop = document.getElementById('to-top'); - toTop.hidden = !(window.scrollY > 0); - - if (hamburgerToggle) { - hamburgerToggle.addEventListener('click', (e) => { - sidebar.element.classList.toggle('sidebar-toggle'); - let button = hamburgerToggle.firstElementChild; - if (button.textContent == 'menu') { - button.textContent = 'close'; - } - else { - button.textContent = 'menu'; - } - }); - } - - const tables = document.querySelectorAll('.py-attribute-table[data-move-to-id]'); - tables.forEach(table => { - let element = document.getElementById(table.getAttribute('data-move-to-id')); - let parent = element.parentNode; - // insert ourselves after the element - parent.insertBefore(table, element.nextSibling); - }); - - window.addEventListener('scroll', () => { - toTop.hidden = !(window.scrollY > 0); - }); -}); - -document.addEventListener('keydown', (event) => { - if (event.code == "Escape" && activeModal) { - activeModal.close(); - } -}); diff --git a/docs/Python/html/_static/discord_py_logo.ico b/docs/Python/html/_static/discord_py_logo.ico deleted file mode 100644 index 209ba4ef2da01a08136894967c5bffaec58698cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 270398 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 v>N8NEf%**8XP`a<^%= 0 && - !jQuery(node.parentNode).hasClass(className) && - !jQuery(node.parentNode).hasClass("nohighlight")) { - var span; - var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); - if (isInSVG) { - span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); - } else { - span = document.createElement("span"); - span.className = className; - } - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - node.parentNode.insertBefore(span, node.parentNode.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling)); - node.nodeValue = val.substr(0, pos); - if (isInSVG) { - var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); - var bbox = node.parentElement.getBBox(); - rect.x.baseVal.value = bbox.x; - rect.y.baseVal.value = bbox.y; - rect.width.baseVal.value = bbox.width; - rect.height.baseVal.value = bbox.height; - rect.setAttribute('class', className); - addItems.push({ - "parent": node.parentNode, - "target": rect}); - } - } - } - else if (!jQuery(node).is("button, select, textarea")) { - jQuery.each(node.childNodes, function() { - highlight(this, addItems); - }); - } - } - var addItems = []; - var result = this.each(function() { - highlight(this, addItems); - }); - for (var i = 0; i < addItems.length; ++i) { - jQuery(addItems[i].parent).before(addItems[i].target); - } - return result; -}; - -/* - * backward compatibility for jQuery.browser - * This will be supported until firefox bug is fixed. - */ -if (!jQuery.browser) { - jQuery.uaMatch = function(ua) { - ua = ua.toLowerCase(); - - var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || - /(webkit)[ \/]([\w.]+)/.exec(ua) || - /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || - /(msie) ([\w.]+)/.exec(ua) || - ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || - []; - - return { - browser: match[ 1 ] || "", - version: match[ 2 ] || "0" - }; - }; - jQuery.browser = {}; - jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; -} - -/** - * Small JavaScript module for the documentation. - */ -var Documentation = { - - init : function() { - this.fixFirefoxAnchorBug(); - this.highlightSearchWords(); - this.initIndexTable(); - if (DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) { - this.initOnKeyListeners(); - } - }, - - /** - * i18n support - */ - TRANSLATIONS : {}, - PLURAL_EXPR : function(n) { return n === 1 ? 0 : 1; }, - LOCALE : 'unknown', - - // gettext and ngettext don't access this so that the functions - // can safely bound to a different name (_ = Documentation.gettext) - gettext : function(string) { - var translated = Documentation.TRANSLATIONS[string]; - if (typeof translated === 'undefined') - return string; - return (typeof translated === 'string') ? translated : translated[0]; - }, - - ngettext : function(singular, plural, n) { - var translated = Documentation.TRANSLATIONS[singular]; - if (typeof translated === 'undefined') - return (n == 1) ? singular : plural; - return translated[Documentation.PLURALEXPR(n)]; - }, - - addTranslations : function(catalog) { - for (var key in catalog.messages) - this.TRANSLATIONS[key] = catalog.messages[key]; - this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); - this.LOCALE = catalog.locale; - }, - - /** - * add context elements like header anchor links - */ - addContextElements : function() { - $('div[id] > :header:first').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this headline')). - appendTo(this); - }); - $('dt[id]').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this definition')). - appendTo(this); - }); - }, - - /** - * workaround a firefox stupidity - * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 - */ - fixFirefoxAnchorBug : function() { - if (document.location.hash && $.browser.mozilla) - window.setTimeout(function() { - document.location.href += ''; - }, 10); - }, - - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords : function() { - var params = $.getQueryParameters(); - var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; - if (terms.length) { - var body = $('div.body'); - if (!body.length) { - body = $('body'); - } - window.setTimeout(function() { - $.each(terms, function() { - body.highlightText(this.toLowerCase(), 'highlighted'); - }); - }, 10); - $('') - .appendTo($('#searchbox')); - } - }, - - /** - * init the domain index toggle buttons - */ - initIndexTable : function() { - var togglers = $('img.toggler').click(function() { - var src = $(this).attr('src'); - var idnum = $(this).attr('id').substr(7); - $('tr.cg-' + idnum).toggle(); - if (src.substr(-9) === 'minus.png') - $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); - else - $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); - }).css('display', ''); - if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { - togglers.click(); - } - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords : function() { - $('#searchbox .highlight-link').fadeOut(300); - $('span.highlighted').removeClass('highlighted'); - }, - - /** - * make the url absolute - */ - makeURL : function(relativeURL) { - return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; - }, - - /** - * get the current relative url - */ - getCurrentURL : function() { - var path = document.location.pathname; - var parts = path.split(/\//); - $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { - if (this === '..') - parts.pop(); - }); - var url = parts.join('/'); - return path.substring(url.lastIndexOf('/') + 1, path.length - 1); - }, - - initOnKeyListeners: function() { - $(document).keydown(function(event) { - var activeElementType = document.activeElement.tagName; - // don't navigate when in search box, textarea, dropdown or button - if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT' - && activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey - && !event.shiftKey) { - switch (event.keyCode) { - case 37: // left - var prevHref = $('link[rel="prev"]').prop('href'); - if (prevHref) { - window.location.href = prevHref; - return false; - } - break; - case 39: // right - var nextHref = $('link[rel="next"]').prop('href'); - if (nextHref) { - window.location.href = nextHref; - return false; - } - break; - } - } - }); - } -}; - -// quick alias for translations -_ = Documentation.gettext; - -$(document).ready(function() { - Documentation.init(); -}); diff --git a/docs/Python/html/_static/documentation_options.js b/docs/Python/html/_static/documentation_options.js deleted file mode 100644 index 0a278a4e..00000000 --- a/docs/Python/html/_static/documentation_options.js +++ /dev/null @@ -1,12 +0,0 @@ -var DOCUMENTATION_OPTIONS = { - URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '2.0.0a', - LANGUAGE: 'None', - COLLAPSE_INDEX: false, - BUILDER: 'html', - FILE_SUFFIX: '.html', - LINK_SUFFIX: '.html', - HAS_SOURCE: true, - SOURCELINK_SUFFIX: '.txt', - NAVIGATION_WITH_KEYS: false -}; \ No newline at end of file diff --git a/docs/Python/html/_static/icons.css b/docs/Python/html/_static/icons.css deleted file mode 100644 index b237f109..00000000 --- a/docs/Python/html/_static/icons.css +++ /dev/null @@ -1,10 +0,0 @@ -@font-face { - font-family: 'Custom Icons'; - font-style: normal; - font-weight: 400; - src: url('icons.woff') format('woff2'); -} - -.custom-icons { - font-family: 'Custom Icons' !important; -} diff --git a/docs/Python/html/_static/icons.woff b/docs/Python/html/_static/icons.woff deleted file mode 100644 index 50a340c47fcf3f6d621ee929e49fa4ff55bd50b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2608 zcmeHJ&2Jk;6o0d`-u3Q!*Wcf<<9y(>Y3n#~;xtVfswkvN)en-Y6+#Gb6XOIWc8DEF zIYmTVsvcVPe4cIU6?+Zq`KEU4`E(RNdk~EUmUSfqe>pTBsGJ&sG`>;CV%So5x%7^Q)CjjO#rJEN5$sZqzHQ zRbVHP<0nF2JbC-OwMG*;=z+g@9F|xYow9V0*h-~UN9HmRA)VEX1?ESsk%>5#-JkQPu$msM%N6NMM0(w+*-unr8vMP& zM7j^iF`{;x-)i5YV;qV$k=w51Y(qgQW;YBK8D9p+@kKtu=XS4Q)M74|fj)scg#0;X z!zf3Kv`h`!xJT`sb{lO3>;lz*t-Ba&f8V~=zS@4LeI@R9Bih70h0nIJKemW{6XL9< zi0G)u?E-WWD)OsAm!T@O;i||}oXHKSL39t5P^>Qd)wGq6JtKx}fr%ztB%;wV+x;IC zD?io#gWu#&(+6-0tgpa&x)s%8_@a?mJj>#-^5`TRDdtBe*a*;`?mS5N1{}Iu_2mVv zBs%PVr6B={&*nS5P>u|jN5L-J(LqMHp;+9ZqO+RC$ZiTwB0w_CPR1dP4Cnj!c6Pp0 zT044ltyG%NX0rVU`s>qPLzZP`ssUY#>PA@8OxeRVRWTJ=k|o9&lO#z~d>+47vlIoi zu&xDF)l|6U3uaBT!?NObs}t@%QVs=$+ZIBPIPg!hJhMrSyDAlWmKOpSMOSyc>=N0q%03zJYd?;1}f zCwh_x!r@NC7xrR7xWdf-j+Yg$%q13^J2JjKi!~EJ1(~+nxA+49gi-kUG)d=xj${kkcu8doG)))lULFp4bi zGtGoFRW1%3k4Ab8PiViY1Pq3w#pOtNUr;rABhljn#qyN6HSL=%H2-7p8UMuZWQePb z=$p=&FaEBv1LD^w-bma`wxFMVpOYLFKEJu=_Hr0OCz9jrc5}S{F41=ik+*H8P7%Cz z`)G(JXoeoACvoT2X_H=|%j}YL#2z_FAKJGt9;knaZqW@lKW6_o;oPbc?&{ZEoCAN% zwPo1XT-$?tyVtc9;LEP9Q;I$p?}w}bNub5CCA^n!yEX?t=h`yt8?No47!A0#0(`@@ zb-aCd7dD!$#_FNvg+{$e3utRn3-8G)9m3cPu6;Djle)#H? zqd_WA@nM2I3}?Pt+gPcr(>w;LA(s`Z(E7u4oN3fsxmvYeU9YsNi@6IIbF&MLQ;kNw ofE^TbXd%@aqSo#7EAXq>Rq elements - // (i.e., `typeof document.createElement( "object" ) === "function"`). - // We don't want to classify *any* DOM node as a function. - return typeof obj === "function" && typeof obj.nodeType !== "number"; - }; - - -var isWindow = function isWindow( obj ) { - return obj != null && obj === obj.window; - }; - - -var document = window.document; - - - - var preservedScriptAttributes = { - type: true, - src: true, - nonce: true, - noModule: true - }; - - function DOMEval( code, node, doc ) { - doc = doc || document; - - var i, val, - script = doc.createElement( "script" ); - - script.text = code; - if ( node ) { - for ( i in preservedScriptAttributes ) { - - // Support: Firefox 64+, Edge 18+ - // Some browsers don't support the "nonce" property on scripts. - // On the other hand, just using `getAttribute` is not enough as - // the `nonce` attribute is reset to an empty string whenever it - // becomes browsing-context connected. - // See https://github.com/whatwg/html/issues/2369 - // See https://html.spec.whatwg.org/#nonce-attributes - // The `node.getAttribute` check was added for the sake of - // `jQuery.globalEval` so that it can fake a nonce-containing node - // via an object. - val = node[ i ] || node.getAttribute && node.getAttribute( i ); - if ( val ) { - script.setAttribute( i, val ); - } - } - } - doc.head.appendChild( script ).parentNode.removeChild( script ); - } - - -function toType( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; -} -/* global Symbol */ -// Defining this global in .eslintrc.json would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - - - -var - version = "3.5.1", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - - // Return all the elements in a clean array - if ( num == null ) { - return slice.call( this ); - } - - // Return just the one element from the set - return num < 0 ? this[ num + this.length ] : this[ num ]; - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - even: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return ( i + 1 ) % 2; - } ) ); - }, - - odd: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return i % 2; - } ) ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: arr.sort, - splice: arr.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // Skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !isFunction( target ) ) { - target = {}; - } - - // Extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - copy = options[ name ]; - - // Prevent Object.prototype pollution - // Prevent never-ending loop - if ( name === "__proto__" || target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = Array.isArray( copy ) ) ) ) { - src = target[ name ]; - - // Ensure proper type for the source value - if ( copyIsArray && !Array.isArray( src ) ) { - clone = []; - } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { - clone = {}; - } else { - clone = src; - } - copyIsArray = false; - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - isPlainObject: function( obj ) { - var proto, Ctor; - - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { - return false; - } - - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; - } - - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; - }, - - isEmptyObject: function( obj ) { - var name; - - for ( name in obj ) { - return false; - } - return true; - }, - - // Evaluates a script in a provided context; falls back to the global one - // if not specified. - globalEval: function( code, options, doc ) { - DOMEval( code, { nonce: options && options.nonce }, doc ); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - return arr == null ? -1 : indexOf.call( arr, elem, i ); - }, - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - for ( ; j < len; j++ ) { - first[ i++ ] = second[ j ]; - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return flat( ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( _i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -} ); - -function isArrayLike( obj ) { - - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = toType( obj ); - - if ( isFunction( obj ) || isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v2.3.5 - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://js.foundation/ - * - * Date: 2020-03-14 - */ -( function( window ) { -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + 1 * new Date(), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - nonnativeSelectorCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // Instance methods - hasOwn = ( {} ).hasOwnProperty, - arr = [], - pop = arr.pop, - pushNative = arr.push, - push = arr.push, - slice = arr.slice, - - // Use a stripped-down indexOf as it's faster than native - // https://jsperf.com/thor-indexof-vs-for/5 - indexOf = function( list, elem ) { - var i = 0, - len = list.length; - for ( ; i < len; i++ ) { - if ( list[ i ] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + - "ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - - // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram - identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + - "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - - // "Attribute values must be CSS identifiers [capture 5] - // or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + - whitespace + "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + - whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + - "*" ), - rdescend = new RegExp( whitespace + "|>" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + - whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + - whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + - "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + - "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rhtml = /HTML$/i, - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - - // CSS escapes - // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), - funescape = function( escape, nonHex ) { - var high = "0x" + escape.slice( 1 ) - 0x10000; - - return nonHex ? - - // Strip the backslash prefix from a non-hex escape sequence - nonHex : - - // Replace a hexadecimal escape sequence with the encoded Unicode code point - // Support: IE <=11+ - // For values outside the Basic Multilingual Plane (BMP), manually construct a - // surrogate pair - high < 0 ? - String.fromCharCode( high + 0x10000 ) : - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + - ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }, - - // Used for iframes - // See setDocument() - // Removing the function wrapper causes a "Permission Denied" - // error in IE - unloadHandler = function() { - setDocument(); - }, - - inDisabledFieldset = addCombinator( - function( elem ) { - return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; - }, - { dir: "parentNode", next: "legend" } - ); - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - ( arr = slice.call( preferredDoc.childNodes ) ), - preferredDoc.childNodes - ); - - // Support: Android<4.0 - // Detect silently failing push.apply - // eslint-disable-next-line no-unused-expressions - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - pushNative.apply( target, slice.call( els ) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - - // Can't trust NodeList.length - while ( ( target[ j++ ] = els[ i++ ] ) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - setDocument( context ); - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { - - // ID selector - if ( ( m = match[ 1 ] ) ) { - - // Document context - if ( nodeType === 9 ) { - if ( ( elem = context.getElementById( m ) ) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && ( elem = newContext.getElementById( m ) ) && - contains( context, elem ) && - elem.id === m ) { - - results.push( elem ); - return results; - } - } - - // Type selector - } else if ( match[ 2 ] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( support.qsa && - !nonnativeSelectorCache[ selector + " " ] && - ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && - - // Support: IE 8 only - // Exclude object elements - ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { - - newSelector = selector; - newContext = context; - - // qSA considers elements outside a scoping root when evaluating child or - // descendant combinators, which is not what we want. - // In such cases, we work around the behavior by prefixing every selector in the - // list with an ID selector referencing the scope context. - // The technique has to be used as well when a leading combinator is used - // as such selectors are not recognized by querySelectorAll. - // Thanks to Andrew Dupont for this technique. - if ( nodeType === 1 && - ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - - // We can use :scope instead of the ID hack if the browser - // supports it & if we're not changing the context. - if ( newContext !== context || !support.scope ) { - - // Capture the context ID, setting it first if necessary - if ( ( nid = context.getAttribute( "id" ) ) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", ( nid = expando ) ); - } - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + - toSelector( groups[ i ] ); - } - newSelector = groups.join( "," ); - } - - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - nonnativeSelectorCache( selector, true ); - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return ( cache[ key + " " ] = value ); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result - */ -function assert( fn ) { - var el = document.createElement( "fieldset" ); - - try { - return !!fn( el ); - } catch ( e ) { - return false; - } finally { - - // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); - } - - // release memory in IE - el = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split( "|" ), - i = arr.length; - - while ( i-- ) { - Expr.attrHandle[ arr[ i ] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - a.sourceIndex - b.sourceIndex; - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( ( cur = cur.nextSibling ) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return ( name === "input" || name === "button" ) && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - - // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Only certain elements can match :enabled or :disabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled - if ( "form" in elem ) { - - // Check for inherited disabledness on relevant non-disabled elements: - // * listed form-associated elements in a disabled fieldset - // https://html.spec.whatwg.org/multipage/forms.html#category-listed - // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled - // * option elements in a disabled optgroup - // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled - // All such elements have a "form" property. - if ( elem.parentNode && elem.disabled === false ) { - - // Option elements defer to a parent optgroup if present - if ( "label" in elem ) { - if ( "label" in elem.parentNode ) { - return elem.parentNode.disabled === disabled; - } else { - return elem.disabled === disabled; - } - } - - // Support: IE 6 - 11 - // Use the isDisabled shortcut property to check for disabled fieldset ancestors - return elem.isDisabled === disabled || - - // Where there is no isDisabled, check manually - /* jshint -W018 */ - elem.isDisabled !== !disabled && - inDisabledFieldset( elem ) === disabled; - } - - return elem.disabled === disabled; - - // Try to winnow out elements that can't be disabled before trusting the disabled property. - // Some victims get caught in our net (label, legend, menu, track), but it shouldn't - // even exist on them, let alone have a boolean value. - } else if ( "label" in elem ) { - return elem.disabled === disabled; - } - - // Remaining elements are neither :enabled nor :disabled - return false; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction( function( argument ) { - argument = +argument; - return markFunction( function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ ( j = matchIndexes[ i ] ) ] ) { - seed[ j ] = !( matches[ j ] = seed[ j ] ); - } - } - } ); - } ); -} - -/** - * Checks a node for validity as a Sizzle context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== "undefined" && context; -} - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * Detects XML nodes - * @param {Element|Object} elem An element or a document - * @returns {Boolean} True iff elem is a non-HTML XML node - */ -isXML = Sizzle.isXML = function( elem ) { - var namespace = elem.namespaceURI, - docElem = ( elem.ownerDocument || elem ).documentElement; - - // Support: IE <=8 - // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes - // https://bugs.jquery.com/ticket/4833 - return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, subWindow, - doc = node ? node.ownerDocument || node : preferredDoc; - - // Return early if doc is invalid or already selected - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Update global variables - document = doc; - docElem = document.documentElement; - documentIsHTML = !isXML( document ); - - // Support: IE 9 - 11+, Edge 12 - 18+ - // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( preferredDoc != document && - ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { - - // Support: IE 11, Edge - if ( subWindow.addEventListener ) { - subWindow.addEventListener( "unload", unloadHandler, false ); - - // Support: IE 9 - 10 only - } else if ( subWindow.attachEvent ) { - subWindow.attachEvent( "onunload", unloadHandler ); - } - } - - // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, - // Safari 4 - 5 only, Opera <=11.6 - 12.x only - // IE/Edge & older browsers don't support the :scope pseudo-class. - // Support: Safari 6.0 only - // Safari 6.0 supports :scope but it's an alias of :root there. - support.scope = assert( function( el ) { - docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); - return typeof el.querySelectorAll !== "undefined" && - !el.querySelectorAll( ":scope fieldset div" ).length; - } ); - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties - // (excepting IE8 booleans) - support.attributes = assert( function( el ) { - el.className = "i"; - return !el.getAttribute( "className" ); - } ); - - /* getElement(s)By* - ---------------------------------------------------------------------- */ - - // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert( function( el ) { - el.appendChild( document.createComment( "" ) ); - return !el.getElementsByTagName( "*" ).length; - } ); - - // Support: IE<9 - support.getElementsByClassName = rnative.test( document.getElementsByClassName ); - - // Support: IE<10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programmatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert( function( el ) { - docElem.appendChild( el ).id = expando; - return !document.getElementsByName || !document.getElementsByName( expando ).length; - } ); - - // ID filter and find - if ( support.getById ) { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute( "id" ) === attrId; - }; - }; - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var elem = context.getElementById( id ); - return elem ? [ elem ] : []; - } - }; - } else { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode( "id" ); - return node && node.value === attrId; - }; - }; - - // Support: IE 6 - 7 only - // getElementById is not reliable as a find shortcut - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var node, i, elems, - elem = context.getElementById( id ); - - if ( elem ) { - - // Verify the id attribute - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - - // Fall back on getElementsByName - elems = context.getElementsByName( id ); - i = 0; - while ( ( elem = elems[ i++ ] ) ) { - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - } - } - - return []; - } - }; - } - - // Tag - Expr.find[ "TAG" ] = support.getElementsByTagName ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( tag ); - - // DocumentFragment nodes don't have gEBTN - } else if ( support.qsa ) { - return context.querySelectorAll( tag ); - } - } : - - function( tag, context ) { - var elem, - tmp = [], - i = 0, - - // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Class - Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21) - // We allow this because of a bug in IE8/9 that throws an error - // whenever `document.activeElement` is accessed on an iframe - // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See https://bugs.jquery.com/ticket/13378 - rbuggyQSA = []; - - if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { - - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert( function( el ) { - - var input; - - // Select is set to empty string on purpose - // This is to test IE's treatment of not explicitly - // setting a boolean content attribute, - // since its presence should be enough - // https://bugs.jquery.com/ticket/12359 - docElem.appendChild( el ).innerHTML = "" + - ""; - - // Support: IE8, Opera 11-12.16 - // Nothing should be selected when empty strings follow ^= or $= or *= - // The test attribute must be unknown in Opera but "safe" for WinRT - // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !el.querySelectorAll( "[selected]" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ - if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push( "~=" ); - } - - // Support: IE 11+, Edge 15 - 18+ - // IE 11/Edge don't find elements on a `[name='']` query in some cases. - // Adding a temporary attribute to the document before the selection works - // around the issue. - // Interestingly, IE 10 & older don't seem to have the issue. - input = document.createElement( "input" ); - input.setAttribute( "name", "" ); - el.appendChild( input ); - if ( !el.querySelectorAll( "[name='']" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + - whitespace + "*(?:''|\"\")" ); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !el.querySelectorAll( ":checked" ).length ) { - rbuggyQSA.push( ":checked" ); - } - - // Support: Safari 8+, iOS 8+ - // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibling-combinator selector` fails - if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push( ".#.+[+~]" ); - } - - // Support: Firefox <=3.6 - 5 only - // Old Firefox doesn't throw on a badly-escaped identifier. - el.querySelectorAll( "\\\f" ); - rbuggyQSA.push( "[\\r\\n\\f]" ); - } ); - - assert( function( el ) { - el.innerHTML = "" + - ""; - - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement( "input" ); - input.setAttribute( "type", "hidden" ); - el.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE8 - // Enforce case-sensitivity of name attribute - if ( el.querySelectorAll( "[name=d]" ).length ) { - rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: IE9-11+ - // IE's :disabled selector does not pick up the children of disabled fieldsets - docElem.appendChild( el ).disabled = true; - if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: Opera 10 - 11 only - // Opera 10-11 does not throw on post-comma invalid pseudos - el.querySelectorAll( "*,:x" ); - rbuggyQSA.push( ",.*:" ); - } ); - } - - if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || - docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector ) ) ) ) { - - assert( function( el ) { - - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( el, "*" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( el, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - } ); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); - - /* Contains - ---------------------------------------------------------------------- */ - hasCompare = rnative.test( docElem.compareDocumentPosition ); - - // Element contains another - // Purposefully self-exclusive - // As in, an element does not contain itself - contains = hasCompare || rnative.test( docElem.contains ) ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - ) ); - } : - function( a, b ) { - if ( b ) { - while ( ( b = b.parentNode ) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = hasCompare ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { - - // Choose the first element that is related to our preferred document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( a == document || a.ownerDocument == preferredDoc && - contains( preferredDoc, a ) ) { - return -1; - } - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( b == document || b.ownerDocument == preferredDoc && - contains( preferredDoc, b ) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } : - function( a, b ) { - - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Parentless nodes are either documents or disconnected - if ( !aup || !bup ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - return a == document ? -1 : - b == document ? 1 : - /* eslint-enable eqeqeq */ - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( ( cur = cur.parentNode ) ) { - ap.unshift( cur ); - } - cur = b; - while ( ( cur = cur.parentNode ) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[ i ] === bp[ i ] ) { - i++; - } - - return i ? - - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[ i ], bp[ i ] ) : - - // Otherwise nodes in our document sort first - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - ap[ i ] == preferredDoc ? -1 : - bp[ i ] == preferredDoc ? 1 : - /* eslint-enable eqeqeq */ - 0; - }; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - setDocument( elem ); - - if ( support.matchesSelector && documentIsHTML && - !nonnativeSelectorCache[ expr + " " ] && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch ( e ) { - nonnativeSelectorCache( expr, true ); - } - } - - return Sizzle( expr, document, null, [ elem ] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( context.ownerDocument || context ) != document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( elem.ownerDocument || elem ) != document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val !== undefined ? - val : - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; -}; - -Sizzle.escape = function( sel ) { - return ( sel + "" ).replace( rcssescape, fcssescape ); -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - - // If no nodeType, this is expected to be an array - while ( ( node = elem[ i++ ] ) ) { - - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - - // Use textContent for elements - // innerText usage removed for consistency of new lines (jQuery #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[ 1 ] = match[ 1 ].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[ 3 ] = ( match[ 3 ] || match[ 4 ] || - match[ 5 ] || "" ).replace( runescape, funescape ); - - if ( match[ 2 ] === "~=" ) { - match[ 3 ] = " " + match[ 3 ] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[ 1 ] = match[ 1 ].toLowerCase(); - - if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { - - // nth-* requires argument - if ( !match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[ 4 ] = +( match[ 4 ] ? - match[ 5 ] + ( match[ 6 ] || 1 ) : - 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); - match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); - - // other types prohibit arguments - } else if ( match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[ 6 ] && match[ 2 ]; - - if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[ 3 ] ) { - match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - - // Get excess from tokenize (recursively) - ( excess = tokenize( unquoted, true ) ) && - - // advance to the next closing parenthesis - ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { - - // excess is a negative index - match[ 0 ] = match[ 0 ].slice( 0, excess ); - match[ 2 ] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { - return true; - } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - ( pattern = new RegExp( "(^|" + whitespace + - ")" + className + "(" + whitespace + "|$)" ) ) && classCache( - className, function( elem ) { - return pattern.test( - typeof elem.className === "string" && elem.className || - typeof elem.getAttribute !== "undefined" && - elem.getAttribute( "class" ) || - "" - ); - } ); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - /* eslint-disable max-len */ - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - /* eslint-enable max-len */ - - }; - }, - - "CHILD": function( type, what, _argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, _context, xml ) { - var cache, uniqueCache, outerCache, node, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( ( node = node[ dir ] ) ) { - if ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) { - - return false; - } - } - - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - - // Seek `elem` from a previously-cached index - - // ...in a gzip-friendly way - node = parent; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( ( node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - } else { - - // Use previously-cached element index if available - if ( useCache ) { - - // ...in a gzip-friendly way - node = elem; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } - - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - - // Use the same loop as above to seek `elem` from the start - while ( ( node = ++nodeIndex && node && node[ dir ] || - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - if ( ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || - ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - uniqueCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction( function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf( seed, matched[ i ] ); - seed[ idx ] = !( matches[ idx ] = matched[ i ] ); - } - } ) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - - // Potentially complex pseudos - "not": markFunction( function( selector ) { - - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction( function( seed, matches, _context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( ( elem = unmatched[ i ] ) ) { - seed[ i ] = !( matches[ i ] = elem ); - } - } - } ) : - function( elem, _context, xml ) { - input[ 0 ] = elem; - matcher( input, null, xml, results ); - - // Don't keep the element (issue #299) - input[ 0 ] = null; - return !results.pop(); - }; - } ), - - "has": markFunction( function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - } ), - - "contains": markFunction( function( text ) { - text = text.replace( runescape, funescape ); - return function( elem ) { - return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; - }; - } ), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - - // lang value must be a valid identifier - if ( !ridentifier.test( lang || "" ) ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( ( elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); - return false; - }; - } ), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && - ( !document.hasFocus || document.hasFocus() ) && - !!( elem.type || elem.href || ~elem.tabIndex ); - }, - - // Boolean properties - "enabled": createDisabledPseudo( false ), - "disabled": createDisabledPseudo( true ), - - "checked": function( elem ) { - - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return ( nodeName === "input" && !!elem.checked ) || - ( nodeName === "option" && !!elem.selected ); - }, - - "selected": function( elem ) { - - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - // eslint-disable-next-line no-unused-expressions - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos[ "empty" ]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - - // Support: IE<8 - // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( ( attr = elem.getAttribute( "type" ) ) == null || - attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - "first": createPositionalPseudo( function() { - return [ 0 ]; - } ), - - "last": createPositionalPseudo( function( _matchIndexes, length ) { - return [ length - 1 ]; - } ), - - "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - } ), - - "even": createPositionalPseudo( function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "odd": createPositionalPseudo( function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? - argument + length : - argument > length ? - length : - argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ) - } -}; - -Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -tokenize = Sizzle.tokenize = function( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || ( match = rcomma.exec( soFar ) ) ) { - if ( match ) { - - // Don't consume trailing commas as valid - soFar = soFar.slice( match[ 0 ].length ) || soFar; - } - groups.push( ( tokens = [] ) ); - } - - matched = false; - - // Combinators - if ( ( match = rcombinators.exec( soFar ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - - // Cast descendant combinators to space - type: match[ 0 ].replace( rtrim, " " ) - } ); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || - ( match = preFilters[ type ]( match ) ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - type: type, - matches: match - } ); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -}; - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[ i ].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - skip = combinator.next, - key = skip || dir, - checkNonElements = base && key === "parentNode", - doneName = done++; - - return combinator.first ? - - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - return false; - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, uniqueCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching - if ( xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || ( elem[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || - ( outerCache[ elem.uniqueID ] = {} ); - - if ( skip && skip === elem.nodeName.toLowerCase() ) { - elem = elem[ dir ] || elem; - } else if ( ( oldCache = uniqueCache[ key ] ) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return ( newCache[ 2 ] = oldCache[ 2 ] ); - } else { - - // Reuse newcache so results back-propagate to previous elements - uniqueCache[ key ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { - return true; - } - } - } - } - } - return false; - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[ i ]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[ 0 ]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[ i ], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( ( elem = unmatched[ i ] ) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction( function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( - selector || "*", - context.nodeType ? [ context ] : context, - [] - ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( ( elem = temp[ i ] ) ) { - matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) ) { - - // Restore matcherIn since elem is not yet a final match - temp.push( ( matcherIn[ i ] = elem ) ); - } - } - postFinder( null, ( matcherOut = [] ), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) && - ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { - - seed[ temp ] = !( results[ temp ] = elem ); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - } ); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[ 0 ].type ], - implicitRelative = leadingRelative || Expr.relative[ " " ], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - ( checkContext = context ).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - - // Avoid hanging onto element (issue #299) - checkContext = null; - return ret; - } ]; - - for ( ; i < len; i++ ) { - if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { - matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; - } else { - matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[ j ].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens - .slice( 0, i - 1 ) - .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), - - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), - len = elems.length; - - if ( outermost ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - outermostContext = context == document || context || outermost; - } - - // Add elements passing elementMatchers directly to results - // Support: IE<9, Safari - // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id - for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( !context && elem.ownerDocument != document ) { - setDocument( elem ); - xml = !documentIsHTML; - } - while ( ( matcher = elementMatchers[ j++ ] ) ) { - if ( matcher( elem, context || document, xml ) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - - // They will have gone through all possible matchers - if ( ( elem = !matcher && elem ) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. - if ( bySet && i !== matchedCount ) { - j = 0; - while ( ( matcher = setMatchers[ j++ ] ) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !( unmatched[ i ] || setMatched[ i ] ) ) { - setMatched[ i ] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[ i ] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( - selector, - matcherFromGroupMatchers( elementMatchers, setMatchers ) - ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -}; - -/** - * A low-level selection function that works with Sizzle's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with Sizzle.compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -select = Sizzle.select = function( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( ( selector = compiled.selector || selector ) ); - - results = results || []; - - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) - if ( match.length === 1 ) { - - // Reduce context if the leading compound selector is an ID - tokens = match[ 0 ] = match[ 0 ].slice( 0 ); - if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { - - context = ( Expr.find[ "ID" ]( token.matches[ 0 ] - .replace( runescape, funescape ), context ) || [] )[ 0 ]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[ i ]; - - // Abort if we hit a combinator - if ( Expr.relative[ ( type = token.type ) ] ) { - break; - } - if ( ( find = Expr.find[ type ] ) ) { - - // Search, expanding context for leading sibling combinators - if ( ( seed = find( - token.matches[ 0 ].replace( runescape, funescape ), - rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || - context - ) ) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -}; - -// One-time assignments - -// Sort stability -support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; - -// Support: Chrome 14-35+ -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = !!hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert( function( el ) { - - // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; -} ); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert( function( el ) { - el.innerHTML = ""; - return el.firstChild.getAttribute( "href" ) === "#"; -} ) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - } ); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert( function( el ) { - el.innerHTML = ""; - el.firstChild.setAttribute( "value", "" ); - return el.firstChild.getAttribute( "value" ) === ""; -} ) ) { - addHandle( "value", function( elem, _name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - } ); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert( function( el ) { - return el.getAttribute( "disabled" ) == null; -} ) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return elem[ name ] === true ? name.toLowerCase() : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; - } - } ); -} - -return Sizzle; - -} )( window ); - - - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; - -// Deprecated -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; -jQuery.escapeSelector = Sizzle.escape; - - - - -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; - - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - - - -function nodeName( elem, name ) { - - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - -}; -var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); - - - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - return !!qualifier.call( elem, i, elem ) !== not; - } ); - } - - // Single element - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - } ); - } - - // Arraylike of elements (jQuery, arguments, Array) - if ( typeof qualifier !== "string" ) { - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not; - } ); - } - - // Filtered directly for both simple and complex selectors - return jQuery.filter( qualifier, elements, not ); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - if ( elems.length === 1 && elem.nodeType === 1 ) { - return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; - } - - return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); -}; - -jQuery.fn.extend( { - find: function( selector ) { - var i, ret, - len = this.length, - self = this; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - } ) ); - } - - ret = this.pushStack( [] ); - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - return len > 1 ? jQuery.uniqueSort( ret ) : ret; - }, - filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); - }, - not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -} ); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - // Shortcut simple #id case for speed - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, - - init = jQuery.fn.init = function( selector, context, root ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Method init() accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector[ 0 ] === "<" && - selector[ selector.length - 1 ] === ">" && - selector.length >= 3 ) { - - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { - - // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; - - // Option to run scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - - // Properties of context are called as methods if possible - if ( isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[ 2 ] ); - - if ( elem ) { - - // Inject the element directly into the jQuery object - this[ 0 ] = elem; - this.length = 1; - } - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this[ 0 ] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( isFunction( selector ) ) { - return root.ready !== undefined ? - root.ready( selector ) : - - // Execute immediately if ready is not present - selector( jQuery ); - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - - // Methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend( { - has: function( target ) { - var targets = jQuery( target, this ), - l = targets.length; - - return this.filter( function() { - var i = 0; - for ( ; i < l; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { - return true; - } - } - } ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - targets = typeof selectors !== "string" && jQuery( selectors ); - - // Positional selectors never match, since there's no _selection_ context - if ( !rneedsContext.test( selectors ) ) { - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { - - // Always skip document fragments - if ( cur.nodeType < 11 && ( targets ? - targets.index( cur ) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { - - matched.push( cur ); - break; - } - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); - }, - - // Determine the position of an element within the set - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; - } - - // Index in selector - if ( typeof elem === "string" ) { - return indexOf.call( jQuery( elem ), this[ 0 ] ); - } - - // Locate the position of the desired element - return indexOf.call( this, - - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[ 0 ] : elem - ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.uniqueSort( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - } -} ); - -function sibling( cur, dir ) { - while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} - return cur; -} - -jQuery.each( { - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, _i, until ) { - return dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, _i, until ) { - return dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, _i, until ) { - return dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return siblings( elem.firstChild ); - }, - contents: function( elem ) { - if ( elem.contentDocument != null && - - // Support: IE 11+ - // elements with no `data` attribute has an object - // `contentDocument` with a `null` prototype. - getProto( elem.contentDocument ) ) { - - return elem.contentDocument; - } - - // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only - // Treat the template element as a regular one in browsers that - // don't support it. - if ( nodeName( elem, "template" ) ) { - elem = elem.content || elem; - } - - return jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var matched = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - matched = jQuery.filter( selector, matched ); - } - - if ( this.length > 1 ) { - - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - jQuery.uniqueSort( matched ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - matched.reverse(); - } - } - - return this.pushStack( matched ); - }; -} ); -var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); - - - -// Convert String-formatted options into Object-formatted ones -function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { - object[ flag ] = true; - } ); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - createOptions( options ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists - memory, - - // Flag to know if list was already fired - fired, - - // Flag to prevent firing - locked, - - // Actual callback list - list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - - // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = locked || options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } - } - } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { - list = []; - - // Otherwise, this object is spent - } else { - list = ""; - } - } - }, - - // Actual Callbacks object - self = { - - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { - jQuery.each( args, function( _, arg ) { - if ( isFunction( arg ) ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && toType( arg ) !== "string" ) { - - // Inspect recursively - add( arg ); - } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); - } - } - return this; - }, - - // Remove a callback from the list - remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; - } - } - } ); - return this; - }, - - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; - }, - - // Remove all callbacks from the list - empty: function() { - if ( list ) { - list = []; - } - return this; - }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values - disable: function() { - locked = queue = []; - list = memory = ""; - return this; - }, - disabled: function() { - return !list; - }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions - lock: function() { - locked = queue = []; - if ( !memory && !firing ) { - list = memory = ""; - } - return this; - }, - locked: function() { - return !!locked; - }, - - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( !locked ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); - } - } - return this; - }, - - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -function Identity( v ) { - return v; -} -function Thrower( ex ) { - throw ex; -} - -function adoptValue( value, resolve, reject, noValue ) { - var method; - - try { - - // Check for promise aspect first to privilege synchronous behavior - if ( value && isFunction( ( method = value.promise ) ) ) { - method.call( value ).done( resolve ).fail( reject ); - - // Other thenables - } else if ( value && isFunction( ( method = value.then ) ) ) { - method.call( value, resolve, reject ); - - // Other non-thenables - } else { - - // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: - // * false: [ value ].slice( 0 ) => resolve( value ) - // * true: [ value ].slice( 1 ) => resolve() - resolve.apply( undefined, [ value ].slice( noValue ) ); - } - - // For Promises/A+, convert exceptions into rejections - // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in - // Deferred#then to conditionally suppress rejection. - } catch ( value ) { - - // Support: Android 4.0 only - // Strict mode functions invoked without .call/.apply get global-object context - reject.apply( undefined, [ value ] ); - } -} - -jQuery.extend( { - - Deferred: function( func ) { - var tuples = [ - - // action, add listener, callbacks, - // ... .then handlers, argument index, [final state] - [ "notify", "progress", jQuery.Callbacks( "memory" ), - jQuery.Callbacks( "memory" ), 2 ], - [ "resolve", "done", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 0, "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 1, "rejected" ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - "catch": function( fn ) { - return promise.then( null, fn ); - }, - - // Keep pipe for back-compat - pipe: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - - return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( _i, tuple ) { - - // Map tuples (progress, done, fail) to arguments (done, fail, progress) - var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; - - // deferred.progress(function() { bind to newDefer or newDefer.notify }) - // deferred.done(function() { bind to newDefer or newDefer.resolve }) - // deferred.fail(function() { bind to newDefer or newDefer.reject }) - deferred[ tuple[ 1 ] ]( function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && isFunction( returned.promise ) ) { - returned.promise() - .progress( newDefer.notify ) - .done( newDefer.resolve ) - .fail( newDefer.reject ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( - this, - fn ? [ returned ] : arguments - ); - } - } ); - } ); - fns = null; - } ).promise(); - }, - then: function( onFulfilled, onRejected, onProgress ) { - var maxDepth = 0; - function resolve( depth, deferred, handler, special ) { - return function() { - var that = this, - args = arguments, - mightThrow = function() { - var returned, then; - - // Support: Promises/A+ section 2.3.3.3.3 - // https://promisesaplus.com/#point-59 - // Ignore double-resolution attempts - if ( depth < maxDepth ) { - return; - } - - returned = handler.apply( that, args ); - - // Support: Promises/A+ section 2.3.1 - // https://promisesaplus.com/#point-48 - if ( returned === deferred.promise() ) { - throw new TypeError( "Thenable self-resolution" ); - } - - // Support: Promises/A+ sections 2.3.3.1, 3.5 - // https://promisesaplus.com/#point-54 - // https://promisesaplus.com/#point-75 - // Retrieve `then` only once - then = returned && - - // Support: Promises/A+ section 2.3.4 - // https://promisesaplus.com/#point-64 - // Only check objects and functions for thenability - ( typeof returned === "object" || - typeof returned === "function" ) && - returned.then; - - // Handle a returned thenable - if ( isFunction( then ) ) { - - // Special processors (notify) just wait for resolution - if ( special ) { - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ) - ); - - // Normal processors (resolve) also hook into progress - } else { - - // ...and disregard older resolution values - maxDepth++; - - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ), - resolve( maxDepth, deferred, Identity, - deferred.notifyWith ) - ); - } - - // Handle all other returned values - } else { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Identity ) { - that = undefined; - args = [ returned ]; - } - - // Process the value(s) - // Default process is resolve - ( special || deferred.resolveWith )( that, args ); - } - }, - - // Only normal processors (resolve) catch and reject exceptions - process = special ? - mightThrow : - function() { - try { - mightThrow(); - } catch ( e ) { - - if ( jQuery.Deferred.exceptionHook ) { - jQuery.Deferred.exceptionHook( e, - process.stackTrace ); - } - - // Support: Promises/A+ section 2.3.3.3.4.1 - // https://promisesaplus.com/#point-61 - // Ignore post-resolution exceptions - if ( depth + 1 >= maxDepth ) { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Thrower ) { - that = undefined; - args = [ e ]; - } - - deferred.rejectWith( that, args ); - } - } - }; - - // Support: Promises/A+ section 2.3.3.3.1 - // https://promisesaplus.com/#point-57 - // Re-resolve promises immediately to dodge false rejection from - // subsequent errors - if ( depth ) { - process(); - } else { - - // Call an optional hook to record the stack, in case of exception - // since it's otherwise lost when execution goes async - if ( jQuery.Deferred.getStackHook ) { - process.stackTrace = jQuery.Deferred.getStackHook(); - } - window.setTimeout( process ); - } - }; - } - - return jQuery.Deferred( function( newDefer ) { - - // progress_handlers.add( ... ) - tuples[ 0 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onProgress ) ? - onProgress : - Identity, - newDefer.notifyWith - ) - ); - - // fulfilled_handlers.add( ... ) - tuples[ 1 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onFulfilled ) ? - onFulfilled : - Identity - ) - ); - - // rejected_handlers.add( ... ) - tuples[ 2 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onRejected ) ? - onRejected : - Thrower - ) - ); - } ).promise(); - }, - - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 5 ]; - - // promise.progress = list.add - // promise.done = list.add - // promise.fail = list.add - promise[ tuple[ 1 ] ] = list.add; - - // Handle state - if ( stateString ) { - list.add( - function() { - - // state = "resolved" (i.e., fulfilled) - // state = "rejected" - state = stateString; - }, - - // rejected_callbacks.disable - // fulfilled_callbacks.disable - tuples[ 3 - i ][ 2 ].disable, - - // rejected_handlers.disable - // fulfilled_handlers.disable - tuples[ 3 - i ][ 3 ].disable, - - // progress_callbacks.lock - tuples[ 0 ][ 2 ].lock, - - // progress_handlers.lock - tuples[ 0 ][ 3 ].lock - ); - } - - // progress_handlers.fire - // fulfilled_handlers.fire - // rejected_handlers.fire - list.add( tuple[ 3 ].fire ); - - // deferred.notify = function() { deferred.notifyWith(...) } - // deferred.resolve = function() { deferred.resolveWith(...) } - // deferred.reject = function() { deferred.rejectWith(...) } - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); - return this; - }; - - // deferred.notifyWith = list.fireWith - // deferred.resolveWith = list.fireWith - // deferred.rejectWith = list.fireWith - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( singleValue ) { - var - - // count of uncompleted subordinates - remaining = arguments.length, - - // count of unprocessed arguments - i = remaining, - - // subordinate fulfillment data - resolveContexts = Array( i ), - resolveValues = slice.call( arguments ), - - // the master Deferred - master = jQuery.Deferred(), - - // subordinate callback factory - updateFunc = function( i ) { - return function( value ) { - resolveContexts[ i ] = this; - resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( !( --remaining ) ) { - master.resolveWith( resolveContexts, resolveValues ); - } - }; - }; - - // Single- and empty arguments are adopted like Promise.resolve - if ( remaining <= 1 ) { - adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, - !remaining ); - - // Use .then() to unwrap secondary thenables (cf. gh-3000) - if ( master.state() === "pending" || - isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { - - return master.then(); - } - } - - // Multiple arguments are aggregated like Promise.all array elements - while ( i-- ) { - adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); - } - - return master.promise(); - } -} ); - - -// These usually indicate a programmer mistake during development, -// warn about them ASAP rather than swallowing them by default. -var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - -jQuery.Deferred.exceptionHook = function( error, stack ) { - - // Support: IE 8 - 9 only - // Console exists when dev tools are open, which can happen at any time - if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { - window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); - } -}; - - - - -jQuery.readyException = function( error ) { - window.setTimeout( function() { - throw error; - } ); -}; - - - - -// The deferred used on DOM ready -var readyList = jQuery.Deferred(); - -jQuery.fn.ready = function( fn ) { - - readyList - .then( fn ) - - // Wrap jQuery.readyException in a function so that the lookup - // happens at the time of error handling instead of callback - // registration. - .catch( function( error ) { - jQuery.readyException( error ); - } ); - - return this; -}; - -jQuery.extend( { - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - } -} ); - -jQuery.ready.then = readyList.then; - -// The ready event handler and self cleanup method -function completed() { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); - jQuery.ready(); -} - -// Catch cases where $(document).ready() is called -// after the browser event has already occurred. -// Support: IE <=9 - 10 only -// Older IE sometimes signals "interactive" too soon -if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { - - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); - -} else { - - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); -} - - - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - len = elems.length, - bulk = key == null; - - // Sets many values - if ( toType( key ) === "object" ) { - chainable = true; - for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, _key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < len; i++ ) { - fn( - elems[ i ], key, raw ? - value : - value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); - } - } - } - - if ( chainable ) { - return elems; - } - - // Gets - if ( bulk ) { - return fn.call( elems ); - } - - return len ? fn( elems[ 0 ], key ) : emptyGet; -}; - - -// Matches dashed string for camelizing -var rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g; - -// Used by camelCase as callback to replace() -function fcamelCase( _all, letter ) { - return letter.toUpperCase(); -} - -// Convert dashed to camelCase; used by the css and data modules -// Support: IE <=9 - 11, Edge 12 - 15 -// Microsoft forgot to hump their vendor prefix (#9572) -function camelCase( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); -} -var acceptData = function( owner ) { - - // Accepts only: - // - Node - // - Node.ELEMENT_NODE - // - Node.DOCUMENT_NODE - // - Object - // - Any - return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); -}; - - - - -function Data() { - this.expando = jQuery.expando + Data.uid++; -} - -Data.uid = 1; - -Data.prototype = { - - cache: function( owner ) { - - // Check if the owner object already has a cache - var value = owner[ this.expando ]; - - // If not, create one - if ( !value ) { - value = {}; - - // We can accept data for non-element nodes in modern browsers, - // but we should not, see #8335. - // Always return an empty object. - if ( acceptData( owner ) ) { - - // If it is a node unlikely to be stringify-ed or looped over - // use plain assignment - if ( owner.nodeType ) { - owner[ this.expando ] = value; - - // Otherwise secure it in a non-enumerable property - // configurable must be true to allow the property to be - // deleted when data is removed - } else { - Object.defineProperty( owner, this.expando, { - value: value, - configurable: true - } ); - } - } - } - - return value; - }, - set: function( owner, data, value ) { - var prop, - cache = this.cache( owner ); - - // Handle: [ owner, key, value ] args - // Always use camelCase key (gh-2257) - if ( typeof data === "string" ) { - cache[ camelCase( data ) ] = value; - - // Handle: [ owner, { properties } ] args - } else { - - // Copy the properties one-by-one to the cache object - for ( prop in data ) { - cache[ camelCase( prop ) ] = data[ prop ]; - } - } - return cache; - }, - get: function( owner, key ) { - return key === undefined ? - this.cache( owner ) : - - // Always use camelCase key (gh-2257) - owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; - }, - access: function( owner, key, value ) { - - // In cases where either: - // - // 1. No key was specified - // 2. A string key was specified, but no value provided - // - // Take the "read" path and allow the get method to determine - // which value to return, respectively either: - // - // 1. The entire cache object - // 2. The data stored at the key - // - if ( key === undefined || - ( ( key && typeof key === "string" ) && value === undefined ) ) { - - return this.get( owner, key ); - } - - // When the key is not a string, or both a key and value - // are specified, set or extend (existing objects) with either: - // - // 1. An object of properties - // 2. A key and value - // - this.set( owner, key, value ); - - // Since the "set" path can have two possible entry points - // return the expected data based on which path was taken[*] - return value !== undefined ? value : key; - }, - remove: function( owner, key ) { - var i, - cache = owner[ this.expando ]; - - if ( cache === undefined ) { - return; - } - - if ( key !== undefined ) { - - // Support array or space separated string of keys - if ( Array.isArray( key ) ) { - - // If key is an array of keys... - // We always set camelCase keys, so remove that. - key = key.map( camelCase ); - } else { - key = camelCase( key ); - - // If a key with the spaces exists, use it. - // Otherwise, create an array by matching non-whitespace - key = key in cache ? - [ key ] : - ( key.match( rnothtmlwhite ) || [] ); - } - - i = key.length; - - while ( i-- ) { - delete cache[ key[ i ] ]; - } - } - - // Remove the expando if there's no more data - if ( key === undefined || jQuery.isEmptyObject( cache ) ) { - - // Support: Chrome <=35 - 45 - // Webkit & Blink performance suffers when deleting properties - // from DOM nodes, so set to undefined instead - // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) - if ( owner.nodeType ) { - owner[ this.expando ] = undefined; - } else { - delete owner[ this.expando ]; - } - } - }, - hasData: function( owner ) { - var cache = owner[ this.expando ]; - return cache !== undefined && !jQuery.isEmptyObject( cache ); - } -}; -var dataPriv = new Data(); - -var dataUser = new Data(); - - - -// Implementation Summary -// -// 1. Enforce API surface and semantic compatibility with 1.9.x branch -// 2. Improve the module's maintainability by reducing the storage -// paths to a single mechanism. -// 3. Use the same single mechanism to support "private" and "user" data. -// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) -// 5. Avoid exposing implementation details on user objects (eg. expando properties) -// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /[A-Z]/g; - -function getData( data ) { - if ( data === "true" ) { - return true; - } - - if ( data === "false" ) { - return false; - } - - if ( data === "null" ) { - return null; - } - - // Only convert to a number if it doesn't change the string - if ( data === +data + "" ) { - return +data; - } - - if ( rbrace.test( data ) ) { - return JSON.parse( data ); - } - - return data; -} - -function dataAttr( elem, key, data ) { - var name; - - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = getData( data ); - } catch ( e ) {} - - // Make sure we set the data so it isn't changed later - dataUser.set( elem, key, data ); - } else { - data = undefined; - } - } - return data; -} - -jQuery.extend( { - hasData: function( elem ) { - return dataUser.hasData( elem ) || dataPriv.hasData( elem ); - }, - - data: function( elem, name, data ) { - return dataUser.access( elem, name, data ); - }, - - removeData: function( elem, name ) { - dataUser.remove( elem, name ); - }, - - // TODO: Now that all calls to _data and _removeData have been replaced - // with direct calls to dataPriv methods, these can be deprecated. - _data: function( elem, name, data ) { - return dataPriv.access( elem, name, data ); - }, - - _removeData: function( elem, name ) { - dataPriv.remove( elem, name ); - } -} ); - -jQuery.fn.extend( { - data: function( key, value ) { - var i, name, data, - elem = this[ 0 ], - attrs = elem && elem.attributes; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = dataUser.get( elem ); - - if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE 11 only - // The attrs elements can be null (#14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = camelCase( name.slice( 5 ) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - dataPriv.set( elem, "hasDataAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each( function() { - dataUser.set( this, key ); - } ); - } - - return access( this, function( value ) { - var data; - - // The calling jQuery object (element matches) is not empty - // (and therefore has an element appears at this[ 0 ]) and the - // `value` parameter was not undefined. An empty jQuery object - // will result in `undefined` for elem = this[ 0 ] which will - // throw an exception if an attempt to read a data cache is made. - if ( elem && value === undefined ) { - - // Attempt to get data from the cache - // The key will always be camelCased in Data - data = dataUser.get( elem, key ); - if ( data !== undefined ) { - return data; - } - - // Attempt to "discover" the data in - // HTML5 custom data-* attrs - data = dataAttr( elem, key ); - if ( data !== undefined ) { - return data; - } - - // We tried really hard, but the data doesn't exist. - return; - } - - // Set the data... - this.each( function() { - - // We always store the camelCased key - dataUser.set( this, key, value ); - } ); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each( function() { - dataUser.remove( this, key ); - } ); - } -} ); - - -jQuery.extend( { - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = dataPriv.get( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || Array.isArray( data ) ) { - queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // Clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // Not public - generate a queueHooks object, or return the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - dataPriv.remove( elem, [ type + "queue", key ] ); - } ) - } ); - } -} ); - -jQuery.fn.extend( { - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); - } - - return data === undefined ? - this : - this.each( function() { - var queue = jQuery.queue( this, type, data ); - - // Ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - } ); - }, - dequeue: function( type ) { - return this.each( function() { - jQuery.dequeue( this, type ); - } ); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -} ); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var documentElement = document.documentElement; - - - - var isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ); - }, - composed = { composed: true }; - - // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only - // Check attachment across shadow DOM boundaries when possible (gh-3504) - // Support: iOS 10.0-10.2 only - // Early iOS 10 versions support `attachShadow` but not `getRootNode`, - // leading to errors. We need to check for `getRootNode`. - if ( documentElement.getRootNode ) { - isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ) || - elem.getRootNode( composed ) === elem.ownerDocument; - }; - } -var isHiddenWithinTree = function( elem, el ) { - - // isHiddenWithinTree might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - - // Inline style trumps all - return elem.style.display === "none" || - elem.style.display === "" && - - // Otherwise, check computed style - // Support: Firefox <=43 - 45 - // Disconnected elements can have computed display: none, so first confirm that elem is - // in the document. - isAttached( elem ) && - - jQuery.css( elem, "display" ) === "none"; - }; - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, scale, - maxIterations = 20, - currentValue = tween ? - function() { - return tween.cur(); - } : - function() { - return jQuery.css( elem, prop, "" ); - }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = elem.nodeType && - ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Support: Firefox <=54 - // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) - initial = initial / 2; - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - while ( maxIterations-- ) { - - // Evaluate and update our best guess (doubling guesses that zero out). - // Finish if the scale equals or crosses 1 (making the old*new product non-positive). - jQuery.style( elem, prop, initialInUnit + unit ); - if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { - maxIterations = 0; - } - initialInUnit = initialInUnit / scale; - - } - - initialInUnit = initialInUnit * 2; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Make sure we update the tween properties later on - valueParts = valueParts || []; - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -var defaultDisplayMap = {}; - -function getDefaultDisplay( elem ) { - var temp, - doc = elem.ownerDocument, - nodeName = elem.nodeName, - display = defaultDisplayMap[ nodeName ]; - - if ( display ) { - return display; - } - - temp = doc.body.appendChild( doc.createElement( nodeName ) ); - display = jQuery.css( temp, "display" ); - - temp.parentNode.removeChild( temp ); - - if ( display === "none" ) { - display = "block"; - } - defaultDisplayMap[ nodeName ] = display; - - return display; -} - -function showHide( elements, show ) { - var display, elem, - values = [], - index = 0, - length = elements.length; - - // Determine new display value for elements that need to change - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - display = elem.style.display; - if ( show ) { - - // Since we force visibility upon cascade-hidden elements, an immediate (and slow) - // check is required in this first loop unless we have a nonempty display value (either - // inline or about-to-be-restored) - if ( display === "none" ) { - values[ index ] = dataPriv.get( elem, "display" ) || null; - if ( !values[ index ] ) { - elem.style.display = ""; - } - } - if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { - values[ index ] = getDefaultDisplay( elem ); - } - } else { - if ( display !== "none" ) { - values[ index ] = "none"; - - // Remember what we're overwriting - dataPriv.set( elem, "display", display ); - } - } - } - - // Set the display of the elements in a second loop to avoid constant reflow - for ( index = 0; index < length; index++ ) { - if ( values[ index ] != null ) { - elements[ index ].style.display = values[ index ]; - } - } - - return elements; -} - -jQuery.fn.extend( { - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHiddenWithinTree( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); - -var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); - - - -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (#11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; - - // Support: IE <=9 only - // IE <=9 replaces "; - support.option = !!div.lastChild; -} )(); - - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "", "
" ], - col: [ 2, "", "
" ], - tr: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - _default: [ 0, "", "" ] -}; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// Support: IE <=9 only -if ( !support.option ) { - wrapMap.optgroup = wrapMap.option = [ 1, "" ]; -} - - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (#15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, attached, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( toType( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (#12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - attached = isAttached( elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( attached ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - return fragment; -} - - -var - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -// Support: IE <=9 - 11+ -// focus() and blur() are asynchronous, except when they are no-op. -// So expect focus to be synchronous when the element is already active, -// and blur to be synchronous when the element is not already active. -// (focus and blur are always synchronous in other supported browsers, -// this just defines when we can count on it). -function expectSync( elem, type ) { - return ( elem === safeActiveElement() ) === ( type === "focus" ); -} - -// Support: IE <=9 only -// Accessing document.activeElement can throw unexpectedly -// https://bugs.jquery.com/ticket/13393 -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - - var handleObjIn, eventHandle, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.get( elem ); - - // Only attach events to objects that accept data - if ( !acceptData( elem ) ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Ensure that invalid selectors throw exceptions at attach time - // Evaluate against documentElement in case elem is a non-element node (e.g., document) - if ( selector ) { - jQuery.find.matchesSelector( documentElement, selector ); - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { - events = elemData.events = Object.create( null ); - } - if ( !( eventHandle = elemData.handle ) ) { - eventHandle = elemData.handle = function( e ) { - - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? - jQuery.event.dispatch.apply( elem, arguments ) : undefined; - }; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend( { - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var j, origCount, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); - - if ( !elemData || !( events = elemData.events ) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove data and the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - dataPriv.remove( elem, "handle events" ); - } - }, - - dispatch: function( nativeEvent ) { - - var i, j, ret, matched, handleObj, handlerQueue, - args = new Array( arguments.length ), - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( nativeEvent ), - - handlers = ( - dataPriv.get( this, "events" ) || Object.create( null ) - )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; - - for ( i = 1; i < arguments.length; i++ ) { - args[ i ] = arguments[ i ]; - } - - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { - - // If the event is namespaced, then each handler is only invoked if it is - // specially universal or its namespaces are a superset of the event's. - if ( !event.rnamespace || handleObj.namespace === false || - event.rnamespace.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, handleObj, sel, matchedHandlers, matchedSelectors, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - if ( delegateCount && - - // Support: IE <=9 - // Black-hole SVG instance trees (trac-13180) - cur.nodeType && - - // Support: Firefox <=42 - // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) - // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click - // Support: IE 11 only - // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) - !( event.type === "click" && event.button >= 1 ) ) { - - for ( ; cur !== this; cur = cur.parentNode || this ) { - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { - matchedHandlers = []; - matchedSelectors = {}; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matchedSelectors[ sel ] === undefined ) { - matchedSelectors[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matchedSelectors[ sel ] ) { - matchedHandlers.push( handleObj ); - } - } - if ( matchedHandlers.length ) { - handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); - } - } - } - } - - // Add the remaining (directly-bound) handlers - cur = this; - if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); - } - - return handlerQueue; - }, - - addProp: function( name, hook ) { - Object.defineProperty( jQuery.Event.prototype, name, { - enumerable: true, - configurable: true, - - get: isFunction( hook ) ? - function() { - if ( this.originalEvent ) { - return hook( this.originalEvent ); - } - } : - function() { - if ( this.originalEvent ) { - return this.originalEvent[ name ]; - } - }, - - set: function( value ) { - Object.defineProperty( this, name, { - enumerable: true, - configurable: true, - writable: true, - value: value - } ); - } - } ); - }, - - fix: function( originalEvent ) { - return originalEvent[ jQuery.expando ] ? - originalEvent : - new jQuery.Event( originalEvent ); - }, - - special: { - load: { - - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - click: { - - // Utilize native event to ensure correct state for checkable inputs - setup: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Claim the first handler - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - // dataPriv.set( el, "click", ... ) - leverageNative( el, "click", returnTrue ); - } - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Force setup before triggering a click - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - leverageNative( el, "click" ); - } - - // Return non-false to allow normal event-path propagation - return true; - }, - - // For cross-browser consistency, suppress native .click() on links - // Also prevent it if we're currently inside a leveraged native-event stack - _default: function( event ) { - var target = event.target; - return rcheckableType.test( target.type ) && - target.click && nodeName( target, "input" ) && - dataPriv.get( target, "click" ) || - nodeName( target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - } -}; - -// Ensure the presence of an event listener that handles manually-triggered -// synthetic events by interrupting progress until reinvoked in response to -// *native* events that it fires directly, ensuring that state changes have -// already occurred before other listeners are invoked. -function leverageNative( el, type, expectSync ) { - - // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add - if ( !expectSync ) { - if ( dataPriv.get( el, type ) === undefined ) { - jQuery.event.add( el, type, returnTrue ); - } - return; - } - - // Register the controller as a special universal handler for all event namespaces - dataPriv.set( el, type, false ); - jQuery.event.add( el, type, { - namespace: false, - handler: function( event ) { - var notAsync, result, - saved = dataPriv.get( this, type ); - - if ( ( event.isTrigger & 1 ) && this[ type ] ) { - - // Interrupt processing of the outer synthetic .trigger()ed event - // Saved data should be false in such cases, but might be a leftover capture object - // from an async native handler (gh-4350) - if ( !saved.length ) { - - // Store arguments for use when handling the inner native event - // There will always be at least one argument (an event object), so this array - // will not be confused with a leftover capture object. - saved = slice.call( arguments ); - dataPriv.set( this, type, saved ); - - // Trigger the native event and capture its result - // Support: IE <=9 - 11+ - // focus() and blur() are asynchronous - notAsync = expectSync( this, type ); - this[ type ](); - result = dataPriv.get( this, type ); - if ( saved !== result || notAsync ) { - dataPriv.set( this, type, false ); - } else { - result = {}; - } - if ( saved !== result ) { - - // Cancel the outer synthetic event - event.stopImmediatePropagation(); - event.preventDefault(); - return result.value; - } - - // If this is an inner synthetic event for an event with a bubbling surrogate - // (focus or blur), assume that the surrogate already propagated from triggering the - // native event and prevent that from happening again here. - // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the - // bubbling surrogate propagates *after* the non-bubbling base), but that seems - // less bad than duplication. - } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { - event.stopPropagation(); - } - - // If this is a native event triggered above, everything is now in order - // Fire an inner synthetic event with the original arguments - } else if ( saved.length ) { - - // ...and capture the result - dataPriv.set( this, type, { - value: jQuery.event.trigger( - - // Support: IE <=9 - 11+ - // Extend with the prototype to reset the above stopImmediatePropagation() - jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), - saved.slice( 1 ), - this - ) - } ); - - // Abort handling of the native event - event.stopImmediatePropagation(); - } - } - } ); -} - -jQuery.removeEvent = function( elem, type, handle ) { - - // This "if" is needed for plain objects - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); - } -}; - -jQuery.Event = function( src, props ) { - - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - - // Support: Android <=2.3 only - src.returnValue === false ? - returnTrue : - returnFalse; - - // Create target properties - // Support: Safari <=6 - 7 only - // Target should not be a text node (#504, #13143) - this.target = ( src.target && src.target.nodeType === 3 ) ? - src.target.parentNode : - src.target; - - this.currentTarget = src.currentTarget; - this.relatedTarget = src.relatedTarget; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || Date.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - constructor: jQuery.Event, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - isSimulated: false, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - - if ( e && !this.isSimulated ) { - e.preventDefault(); - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopPropagation(); - } - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Includes all common event props including KeyEvent and MouseEvent specific props -jQuery.each( { - altKey: true, - bubbles: true, - cancelable: true, - changedTouches: true, - ctrlKey: true, - detail: true, - eventPhase: true, - metaKey: true, - pageX: true, - pageY: true, - shiftKey: true, - view: true, - "char": true, - code: true, - charCode: true, - key: true, - keyCode: true, - button: true, - buttons: true, - clientX: true, - clientY: true, - offsetX: true, - offsetY: true, - pointerId: true, - pointerType: true, - screenX: true, - screenY: true, - targetTouches: true, - toElement: true, - touches: true, - - which: function( event ) { - var button = event.button; - - // Add which for key events - if ( event.which == null && rkeyEvent.test( event.type ) ) { - return event.charCode != null ? event.charCode : event.keyCode; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { - if ( button & 1 ) { - return 1; - } - - if ( button & 2 ) { - return 3; - } - - if ( button & 4 ) { - return 2; - } - - return 0; - } - - return event.which; - } -}, jQuery.event.addProp ); - -jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { - jQuery.event.special[ type ] = { - - // Utilize native event if possible so blur/focus sequence is correct - setup: function() { - - // Claim the first handler - // dataPriv.set( this, "focus", ... ) - // dataPriv.set( this, "blur", ... ) - leverageNative( this, type, expectSync ); - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function() { - - // Force setup before trigger - leverageNative( this, type ); - - // Return non-false to allow normal event-path propagation - return true; - }, - - delegateType: delegateType - }; -} ); - -// Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mouseenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -} ); - -jQuery.fn.extend( { - - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); - }, - one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each( function() { - jQuery.event.remove( this, types, fn, selector ); - } ); - } -} ); - - -var - - // Support: IE <=10 - 11, Edge 12 - 13 only - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /\s*$/g; - -// Prefer a tbody over its parent table for containing new rows -function manipulationTarget( elem, content ) { - if ( nodeName( elem, "table" ) && - nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { - - return jQuery( elem ).children( "tbody" )[ 0 ] || elem; - } - - return elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { - elem.type = elem.type.slice( 5 ); - } else { - elem.removeAttribute( "type" ); - } - - return elem; -} - -function cloneCopyEvent( src, dest ) { - var i, l, type, pdataOld, udataOld, udataCur, events; - - if ( dest.nodeType !== 1 ) { - return; - } - - // 1. Copy private data: events, handlers, etc. - if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.get( src ); - events = pdataOld.events; - - if ( events ) { - dataPriv.remove( dest, "handle events" ); - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - } - - // 2. Copy user data - if ( dataUser.hasData( src ) ) { - udataOld = dataUser.access( src ); - udataCur = jQuery.extend( {}, udataOld ); - - dataUser.set( dest, udataCur ); - } -} - -// Fix IE bugs, see support tests -function fixInput( src, dest ) { - var nodeName = dest.nodeName.toLowerCase(); - - // Fails to persist the checked state of a cloned checkbox or radio button. - if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - dest.checked = src.checked; - - // Fails to return the selected option to the default selected state when cloning options - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = flat( args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - valueIsFunction = isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( valueIsFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( valueIsFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !dataPriv.access( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl && !node.noModule ) { - jQuery._evalUrl( node.src, { - nonce: node.nonce || node.getAttribute( "nonce" ) - }, doc ); - } - } else { - DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); - } - } - } - } - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - nodes = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = nodes[ i ] ) != null; i++ ) { - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && isAttached( node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html; - }, - - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var i, l, srcElements, destElements, - clone = elem.cloneNode( true ), - inPage = isAttached( elem ); - - // Fix IE cloning issues - if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && - !jQuery.isXMLDoc( elem ) ) { - - // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - fixInput( srcElements[ i ], destElements[ i ] ); - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - cloneCopyEvent( srcElements[ i ], destElements[ i ] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - // Return the cloned set - return clone; - }, - - cleanData: function( elems ) { - var data, elem, type, - special = jQuery.event.special, - i = 0; - - for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { - if ( acceptData( elem ) ) { - if ( ( data = elem[ dataPriv.expando ] ) ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataPriv.expando ] = undefined; - } - if ( elem[ dataUser.expando ] ) { - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataUser.expando ] = undefined; - } - } - } - } -} ); - -jQuery.fn.extend( { - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, - - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().each( function() { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.textContent = value; - } - } ); - }, null, value, arguments.length ); - }, - - append: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - } ); - }, - - prepend: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - } ); - }, - - before: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - } ); - }, - - after: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - } ); - }, - - empty: function() { - var elem, - i = 0; - - for ( ; ( elem = this[ i ] ) != null; i++ ) { - if ( elem.nodeType === 1 ) { - - // Prevent memory leaks - jQuery.cleanData( getAll( elem, false ) ); - - // Remove any remaining nodes - elem.textContent = ""; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined && elem.nodeType === 1 ) { - return elem.innerHTML; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - - value = jQuery.htmlPrefilter( value ); - - try { - for ( ; i < l; i++ ) { - elem = this[ i ] || {}; - - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var ignored = []; - - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; - - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); - } - } - - // Force callback invocation - }, ignored ); - } -} ); - -jQuery.each( { - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1, - i = 0; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone( true ); - jQuery( insert[ i ] )[ original ]( elems ); - - // Support: Android <=4.0 only, PhantomJS 1 only - // .get() because push.apply(_, arraylike) throws on ancient WebKit - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -} ); -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var getStyles = function( elem ) { - - // Support: IE <=11 only, Firefox <=30 (#15098, #14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } - - return view.getComputedStyle( elem ); - }; - -var swap = function( elem, options, callback ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.call( elem ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - -var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); - - - -( function() { - - // Executing both pixelPosition & boxSizingReliable tests require only one layout - // so they're executed at the same time to save the second computation. - function computeStyleTests() { - - // This is a singleton, we need to execute it only once - if ( !div ) { - return; - } - - container.style.cssText = "position:absolute;left:-11111px;width:60px;" + - "margin-top:1px;padding:0;border:0"; - div.style.cssText = - "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + - "margin:auto;border:1px;padding:1px;" + - "width:60%;top:1%"; - documentElement.appendChild( container ).appendChild( div ); - - var divStyle = window.getComputedStyle( div ); - pixelPositionVal = divStyle.top !== "1%"; - - // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 - reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; - - // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 - // Some styles come back with percentage values, even though they shouldn't - div.style.right = "60%"; - pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; - - // Support: IE 9 - 11 only - // Detect misreporting of content dimensions for box-sizing:border-box elements - boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; - - // Support: IE 9 only - // Detect overflow:scroll screwiness (gh-3699) - // Support: Chrome <=64 - // Don't get tricked when zoom affects offsetWidth (gh-4029) - div.style.position = "absolute"; - scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; - - documentElement.removeChild( container ); - - // Nullify the div so it wouldn't be stored in the memory and - // it will also be a sign that checks already performed - div = null; - } - - function roundPixelMeasures( measure ) { - return Math.round( parseFloat( measure ) ); - } - - var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, - reliableTrDimensionsVal, reliableMarginLeftVal, - container = document.createElement( "div" ), - div = document.createElement( "div" ); - - // Finish early in limited (non-browser) environments - if ( !div.style ) { - return; - } - - // Support: IE <=9 - 11 only - // Style of cloned element affects source element cloned (#8908) - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - jQuery.extend( support, { - boxSizingReliable: function() { - computeStyleTests(); - return boxSizingReliableVal; - }, - pixelBoxStyles: function() { - computeStyleTests(); - return pixelBoxStylesVal; - }, - pixelPosition: function() { - computeStyleTests(); - return pixelPositionVal; - }, - reliableMarginLeft: function() { - computeStyleTests(); - return reliableMarginLeftVal; - }, - scrollboxSize: function() { - computeStyleTests(); - return scrollboxSizeVal; - }, - - // Support: IE 9 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Behavior in IE 9 is more subtle than in newer versions & it passes - // some versions of this test; make sure not to make it pass there! - reliableTrDimensions: function() { - var table, tr, trChild, trStyle; - if ( reliableTrDimensionsVal == null ) { - table = document.createElement( "table" ); - tr = document.createElement( "tr" ); - trChild = document.createElement( "div" ); - - table.style.cssText = "position:absolute;left:-11111px"; - tr.style.height = "1px"; - trChild.style.height = "9px"; - - documentElement - .appendChild( table ) - .appendChild( tr ) - .appendChild( trChild ); - - trStyle = window.getComputedStyle( tr ); - reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; - - documentElement.removeChild( table ); - } - return reliableTrDimensionsVal; - } - } ); -} )(); - - -function curCSS( elem, name, computed ) { - var width, minWidth, maxWidth, ret, - - // Support: Firefox 51+ - // Retrieving style before computed somehow - // fixes an issue with getting wrong values - // on detached elements - style = elem.style; - - computed = computed || getStyles( elem ); - - // getPropertyValue is needed for: - // .css('filter') (IE 9 only, #12537) - // .css('--customProperty) (#3144) - if ( computed ) { - ret = computed.getPropertyValue( name ) || computed[ name ]; - - if ( ret === "" && !isAttached( elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Android Browser returns percentage for some values, - // but width seems to be reliably pixels. - // This is against the CSSOM draft spec: - // https://drafts.csswg.org/cssom/#resolved-values - if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret !== undefined ? - - // Support: IE <=9 - 11 only - // IE returns zIndex value as an integer. - ret + "" : - ret; -} - - -function addGetHookIf( conditionFn, hookFn ) { - - // Define the hook, we'll check on the first run if it's really needed. - return { - get: function() { - if ( conditionFn() ) { - - // Hook not needed (or it's not possible to use it due - // to missing dependency), remove it. - delete this.get; - return; - } - - // Hook needed; redefine it so that the support test is not executed again. - return ( this.get = hookFn ).apply( this, arguments ); - } - }; -} - - -var cssPrefixes = [ "Webkit", "Moz", "ms" ], - emptyStyle = document.createElement( "div" ).style, - vendorProps = {}; - -// Return a vendor-prefixed property or undefined -function vendorPropName( name ) { - - // Check for vendor prefixed names - var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in emptyStyle ) { - return name; - } - } -} - -// Return a potentially-mapped jQuery.cssProps or vendor prefixed property -function finalPropName( name ) { - var final = jQuery.cssProps[ name ] || vendorProps[ name ]; - - if ( final ) { - return final; - } - if ( name in emptyStyle ) { - return name; - } - return vendorProps[ name ] = vendorPropName( name ) || name; -} - - -var - - // Swappable if display is none or starts with table - // except "table", "table-cell", or "table-caption" - // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rcustomProp = /^--/, - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: "0", - fontWeight: "400" - }; - -function setPositiveNumber( _elem, value, subtract ) { - - // Any relative (+/-) values have already been - // normalized at this point - var matches = rcssNum.exec( value ); - return matches ? - - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : - value; -} - -function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { - var i = dimension === "width" ? 1 : 0, - extra = 0, - delta = 0; - - // Adjustment may not be necessary - if ( box === ( isBorderBox ? "border" : "content" ) ) { - return 0; - } - - for ( ; i < 4; i += 2 ) { - - // Both box models exclude margin - if ( box === "margin" ) { - delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); - } - - // If we get here with a content-box, we're seeking "padding" or "border" or "margin" - if ( !isBorderBox ) { - - // Add padding - delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // For "border" or "margin", add border - if ( box !== "padding" ) { - delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - - // But still keep track of it otherwise - } else { - extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - - // If we get here with a border-box (content + padding + border), we're seeking "content" or - // "padding" or "margin" - } else { - - // For "content", subtract padding - if ( box === "content" ) { - delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // For "content" or "padding", subtract border - if ( box !== "margin" ) { - delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - // Account for positive content-box scroll gutter when requested by providing computedVal - if ( !isBorderBox && computedVal >= 0 ) { - - // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border - // Assuming integer scroll gutter, subtract the rest and round down - delta += Math.max( 0, Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - computedVal - - delta - - extra - - 0.5 - - // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter - // Use an explicit zero to avoid NaN (gh-3964) - ) ) || 0; - } - - return delta; -} - -function getWidthOrHeight( elem, dimension, extra ) { - - // Start with computed style - var styles = getStyles( elem ), - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). - // Fake content-box until we know it's needed to know the true value. - boxSizingNeeded = !support.boxSizingReliable() || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - valueIsBorderBox = isBorderBox, - - val = curCSS( elem, dimension, styles ), - offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); - - // Support: Firefox <=54 - // Return a confounding non-pixel value or feign ignorance, as appropriate. - if ( rnumnonpx.test( val ) ) { - if ( !extra ) { - return val; - } - val = "auto"; - } - - - // Support: IE 9 - 11 only - // Use offsetWidth/offsetHeight for when box sizing is unreliable. - // In those cases, the computed value can be trusted to be border-box. - if ( ( !support.boxSizingReliable() && isBorderBox || - - // Support: IE 10 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Interestingly, in some cases IE 9 doesn't suffer from this issue. - !support.reliableTrDimensions() && nodeName( elem, "tr" ) || - - // Fall back to offsetWidth/offsetHeight when value is "auto" - // This happens for inline elements with no explicit setting (gh-3571) - val === "auto" || - - // Support: Android <=4.1 - 4.3 only - // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) - !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && - - // Make sure the element is visible & connected - elem.getClientRects().length ) { - - isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // Where available, offsetWidth/offsetHeight approximate border box dimensions. - // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the - // retrieved value as a content box dimension. - valueIsBorderBox = offsetProp in elem; - if ( valueIsBorderBox ) { - val = elem[ offsetProp ]; - } - } - - // Normalize "" and auto - val = parseFloat( val ) || 0; - - // Adjust for the element's box model - return ( val + - boxModelAdjustment( - elem, - dimension, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles, - - // Provide the current computed size to request scroll gutter calculation (gh-3589) - val - ) - ) + "px"; -} - -jQuery.extend( { - - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "animationIterationCount": true, - "columnCount": true, - "fillOpacity": true, - "flexGrow": true, - "flexShrink": true, - "fontWeight": true, - "gridArea": true, - "gridColumn": true, - "gridColumnEnd": true, - "gridColumnStart": true, - "gridRow": true, - "gridRowEnd": true, - "gridRowStart": true, - "lineHeight": true, - "opacity": true, - "order": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: {}, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ), - style = elem.style; - - // Make sure that we're working with the right name. We don't - // want to query the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Gets hook for the prefixed version, then unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // Convert "+=" or "-=" to relative numbers (#7345) - if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { - value = adjustCSS( elem, name, ret ); - - // Fixes bug #9237 - type = "number"; - } - - // Make sure that null and NaN values aren't set (#7116) - if ( value == null || value !== value ) { - return; - } - - // If a number was passed in, add the unit (except for certain CSS properties) - // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append - // "px" to a few hardcoded values. - if ( type === "number" && !isCustomProp ) { - value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); - } - - // background-* props affect original clone's values - if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !( "set" in hooks ) || - ( value = hooks.set( elem, value, extra ) ) !== undefined ) { - - if ( isCustomProp ) { - style.setProperty( name, value ); - } else { - style[ name ] = value; - } - } - - } else { - - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && - ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { - - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var val, num, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ); - - // Make sure that we're working with the right name. We don't - // want to modify the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Try prefixed name followed by the unprefixed name - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - // Convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Make numeric if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || isFinite( num ) ? num || 0 : val; - } - - return val; - } -} ); - -jQuery.each( [ "height", "width" ], function( _i, dimension ) { - jQuery.cssHooks[ dimension ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - - // Certain elements can have dimension info if we invisibly show them - // but it must have a current display style that would benefit - return rdisplayswap.test( jQuery.css( elem, "display" ) ) && - - // Support: Safari 8+ - // Table columns in Safari have non-zero offsetWidth & zero - // getBoundingClientRect().width unless display is changed. - // Support: IE <=11 only - // Running getBoundingClientRect on a disconnected node - // in IE throws an error. - ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? - swap( elem, cssShow, function() { - return getWidthOrHeight( elem, dimension, extra ); - } ) : - getWidthOrHeight( elem, dimension, extra ); - } - }, - - set: function( elem, value, extra ) { - var matches, - styles = getStyles( elem ), - - // Only read styles.position if the test has a chance to fail - // to avoid forcing a reflow. - scrollboxSizeBuggy = !support.scrollboxSize() && - styles.position === "absolute", - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) - boxSizingNeeded = scrollboxSizeBuggy || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - subtract = extra ? - boxModelAdjustment( - elem, - dimension, - extra, - isBorderBox, - styles - ) : - 0; - - // Account for unreliable border-box dimensions by comparing offset* to computed and - // faking a content-box to get border and padding (gh-3699) - if ( isBorderBox && scrollboxSizeBuggy ) { - subtract -= Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - parseFloat( styles[ dimension ] ) - - boxModelAdjustment( elem, dimension, "border", false, styles ) - - 0.5 - ); - } - - // Convert to pixels if value adjustment is needed - if ( subtract && ( matches = rcssNum.exec( value ) ) && - ( matches[ 3 ] || "px" ) !== "px" ) { - - elem.style[ dimension ] = value; - value = jQuery.css( elem, dimension ); - } - - return setPositiveNumber( elem, value, subtract ); - } - }; -} ); - -jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, - function( elem, computed ) { - if ( computed ) { - return ( parseFloat( curCSS( elem, "marginLeft" ) ) || - elem.getBoundingClientRect().left - - swap( elem, { marginLeft: 0 }, function() { - return elem.getBoundingClientRect().left; - } ) - ) + "px"; - } - } -); - -// These hooks are used by animate to expand properties -jQuery.each( { - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i = 0, - expanded = {}, - - // Assumes a single number if not a string - parts = typeof value === "string" ? value.split( " " ) : [ value ]; - - for ( ; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; - - if ( prefix !== "margin" ) { - jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; - } -} ); - -jQuery.fn.extend( { - css: function( name, value ) { - return access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( Array.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - } -} ); - - -function Tween( elem, options, prop, end, easing ) { - return new Tween.prototype.init( elem, options, prop, end, easing ); -} -jQuery.Tween = Tween; - -Tween.prototype = { - constructor: Tween, - init: function( elem, options, prop, end, easing, unit ) { - this.elem = elem; - this.prop = prop; - this.easing = easing || jQuery.easing._default; - this.options = options; - this.start = this.now = this.cur(); - this.end = end; - this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); - }, - cur: function() { - var hooks = Tween.propHooks[ this.prop ]; - - return hooks && hooks.get ? - hooks.get( this ) : - Tween.propHooks._default.get( this ); - }, - run: function( percent ) { - var eased, - hooks = Tween.propHooks[ this.prop ]; - - if ( this.options.duration ) { - this.pos = eased = jQuery.easing[ this.easing ]( - percent, this.options.duration * percent, 0, 1, this.options.duration - ); - } else { - this.pos = eased = percent; - } - this.now = ( this.end - this.start ) * eased + this.start; - - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - if ( hooks && hooks.set ) { - hooks.set( this ); - } else { - Tween.propHooks._default.set( this ); - } - return this; - } -}; - -Tween.prototype.init.prototype = Tween.prototype; - -Tween.propHooks = { - _default: { - get: function( tween ) { - var result; - - // Use a property on the element directly when it is not a DOM element, - // or when there is no matching style property that exists. - if ( tween.elem.nodeType !== 1 || - tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { - return tween.elem[ tween.prop ]; - } - - // Passing an empty string as a 3rd parameter to .css will automatically - // attempt a parseFloat and fallback to a string if the parse fails. - // Simple values such as "10px" are parsed to Float; - // complex values such as "rotate(1rad)" are returned as-is. - result = jQuery.css( tween.elem, tween.prop, "" ); - - // Empty strings, null, undefined and "auto" are converted to 0. - return !result || result === "auto" ? 0 : result; - }, - set: function( tween ) { - - // Use step hook for back compat. - // Use cssHook if its there. - // Use .style if available and use plain properties where available. - if ( jQuery.fx.step[ tween.prop ] ) { - jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.nodeType === 1 && ( - jQuery.cssHooks[ tween.prop ] || - tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { - jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); - } else { - tween.elem[ tween.prop ] = tween.now; - } - } - } -}; - -// Support: IE <=9 only -// Panic based approach to setting things on disconnected nodes -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { - set: function( tween ) { - if ( tween.elem.nodeType && tween.elem.parentNode ) { - tween.elem[ tween.prop ] = tween.now; - } - } -}; - -jQuery.easing = { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return 0.5 - Math.cos( p * Math.PI ) / 2; - }, - _default: "swing" -}; - -jQuery.fx = Tween.prototype.init; - -// Back compat <1.8 extension point -jQuery.fx.step = {}; - - - - -var - fxNow, inProgress, - rfxtypes = /^(?:toggle|show|hide)$/, - rrun = /queueHooks$/; - -function schedule() { - if ( inProgress ) { - if ( document.hidden === false && window.requestAnimationFrame ) { - window.requestAnimationFrame( schedule ); - } else { - window.setTimeout( schedule, jQuery.fx.interval ); - } - - jQuery.fx.tick(); - } -} - -// Animations created synchronously will run synchronously -function createFxNow() { - window.setTimeout( function() { - fxNow = undefined; - } ); - return ( fxNow = Date.now() ); -} - -// Generate parameters to create a standard animation -function genFx( type, includeWidth ) { - var which, - i = 0, - attrs = { height: type }; - - // If we include width, step value is 1 to do all cssExpand values, - // otherwise step value is 2 to skip over Left and Right - includeWidth = includeWidth ? 1 : 0; - for ( ; i < 4; i += 2 - includeWidth ) { - which = cssExpand[ i ]; - attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; - } - - if ( includeWidth ) { - attrs.opacity = attrs.width = type; - } - - return attrs; -} - -function createTween( value, prop, animation ) { - var tween, - collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), - index = 0, - length = collection.length; - for ( ; index < length; index++ ) { - if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { - - // We're done with this property - return tween; - } - } -} - -function defaultPrefilter( elem, props, opts ) { - var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, - isBox = "width" in props || "height" in props, - anim = this, - orig = {}, - style = elem.style, - hidden = elem.nodeType && isHiddenWithinTree( elem ), - dataShow = dataPriv.get( elem, "fxshow" ); - - // Queue-skipping animations hijack the fx hooks - if ( !opts.queue ) { - hooks = jQuery._queueHooks( elem, "fx" ); - if ( hooks.unqueued == null ) { - hooks.unqueued = 0; - oldfire = hooks.empty.fire; - hooks.empty.fire = function() { - if ( !hooks.unqueued ) { - oldfire(); - } - }; - } - hooks.unqueued++; - - anim.always( function() { - - // Ensure the complete handler is called before this completes - anim.always( function() { - hooks.unqueued--; - if ( !jQuery.queue( elem, "fx" ).length ) { - hooks.empty.fire(); - } - } ); - } ); - } - - // Detect show/hide animations - for ( prop in props ) { - value = props[ prop ]; - if ( rfxtypes.test( value ) ) { - delete props[ prop ]; - toggle = toggle || value === "toggle"; - if ( value === ( hidden ? "hide" : "show" ) ) { - - // Pretend to be hidden if this is a "show" and - // there is still data from a stopped show/hide - if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { - hidden = true; - - // Ignore all other no-op show/hide data - } else { - continue; - } - } - orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); - } - } - - // Bail out if this is a no-op like .hide().hide() - propTween = !jQuery.isEmptyObject( props ); - if ( !propTween && jQuery.isEmptyObject( orig ) ) { - return; - } - - // Restrict "overflow" and "display" styles during box animations - if ( isBox && elem.nodeType === 1 ) { - - // Support: IE <=9 - 11, Edge 12 - 15 - // Record all 3 overflow attributes because IE does not infer the shorthand - // from identically-valued overflowX and overflowY and Edge just mirrors - // the overflowX value there. - opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; - - // Identify a display type, preferring old show/hide data over the CSS cascade - restoreDisplay = dataShow && dataShow.display; - if ( restoreDisplay == null ) { - restoreDisplay = dataPriv.get( elem, "display" ); - } - display = jQuery.css( elem, "display" ); - if ( display === "none" ) { - if ( restoreDisplay ) { - display = restoreDisplay; - } else { - - // Get nonempty value(s) by temporarily forcing visibility - showHide( [ elem ], true ); - restoreDisplay = elem.style.display || restoreDisplay; - display = jQuery.css( elem, "display" ); - showHide( [ elem ] ); - } - } - - // Animate inline elements as inline-block - if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { - if ( jQuery.css( elem, "float" ) === "none" ) { - - // Restore the original display value at the end of pure show/hide animations - if ( !propTween ) { - anim.done( function() { - style.display = restoreDisplay; - } ); - if ( restoreDisplay == null ) { - display = style.display; - restoreDisplay = display === "none" ? "" : display; - } - } - style.display = "inline-block"; - } - } - } - - if ( opts.overflow ) { - style.overflow = "hidden"; - anim.always( function() { - style.overflow = opts.overflow[ 0 ]; - style.overflowX = opts.overflow[ 1 ]; - style.overflowY = opts.overflow[ 2 ]; - } ); - } - - // Implement show/hide animations - propTween = false; - for ( prop in orig ) { - - // General show/hide setup for this element animation - if ( !propTween ) { - if ( dataShow ) { - if ( "hidden" in dataShow ) { - hidden = dataShow.hidden; - } - } else { - dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); - } - - // Store hidden/visible for toggle so `.stop().toggle()` "reverses" - if ( toggle ) { - dataShow.hidden = !hidden; - } - - // Show elements before animating them - if ( hidden ) { - showHide( [ elem ], true ); - } - - /* eslint-disable no-loop-func */ - - anim.done( function() { - - /* eslint-enable no-loop-func */ - - // The final step of a "hide" animation is actually hiding the element - if ( !hidden ) { - showHide( [ elem ] ); - } - dataPriv.remove( elem, "fxshow" ); - for ( prop in orig ) { - jQuery.style( elem, prop, orig[ prop ] ); - } - } ); - } - - // Per-property setup - propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); - if ( !( prop in dataShow ) ) { - dataShow[ prop ] = propTween.start; - if ( hidden ) { - propTween.end = propTween.start; - propTween.start = 0; - } - } - } -} - -function propFilter( props, specialEasing ) { - var index, name, easing, value, hooks; - - // camelCase, specialEasing and expand cssHook pass - for ( index in props ) { - name = camelCase( index ); - easing = specialEasing[ name ]; - value = props[ index ]; - if ( Array.isArray( value ) ) { - easing = value[ 1 ]; - value = props[ index ] = value[ 0 ]; - } - - if ( index !== name ) { - props[ name ] = value; - delete props[ index ]; - } - - hooks = jQuery.cssHooks[ name ]; - if ( hooks && "expand" in hooks ) { - value = hooks.expand( value ); - delete props[ name ]; - - // Not quite $.extend, this won't overwrite existing keys. - // Reusing 'index' because we have the correct "name" - for ( index in value ) { - if ( !( index in props ) ) { - props[ index ] = value[ index ]; - specialEasing[ index ] = easing; - } - } - } else { - specialEasing[ name ] = easing; - } - } -} - -function Animation( elem, properties, options ) { - var result, - stopped, - index = 0, - length = Animation.prefilters.length, - deferred = jQuery.Deferred().always( function() { - - // Don't match elem in the :animated selector - delete tick.elem; - } ), - tick = function() { - if ( stopped ) { - return false; - } - var currentTime = fxNow || createFxNow(), - remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), - - // Support: Android 2.3 only - // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) - temp = remaining / animation.duration || 0, - percent = 1 - temp, - index = 0, - length = animation.tweens.length; - - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( percent ); - } - - deferred.notifyWith( elem, [ animation, percent, remaining ] ); - - // If there's more to do, yield - if ( percent < 1 && length ) { - return remaining; - } - - // If this was an empty animation, synthesize a final progress notification - if ( !length ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - } - - // Resolve the animation and report its conclusion - deferred.resolveWith( elem, [ animation ] ); - return false; - }, - animation = deferred.promise( { - elem: elem, - props: jQuery.extend( {}, properties ), - opts: jQuery.extend( true, { - specialEasing: {}, - easing: jQuery.easing._default - }, options ), - originalProperties: properties, - originalOptions: options, - startTime: fxNow || createFxNow(), - duration: options.duration, - tweens: [], - createTween: function( prop, end ) { - var tween = jQuery.Tween( elem, animation.opts, prop, end, - animation.opts.specialEasing[ prop ] || animation.opts.easing ); - animation.tweens.push( tween ); - return tween; - }, - stop: function( gotoEnd ) { - var index = 0, - - // If we are going to the end, we want to run all the tweens - // otherwise we skip this part - length = gotoEnd ? animation.tweens.length : 0; - if ( stopped ) { - return this; - } - stopped = true; - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( 1 ); - } - - // Resolve when we played the last frame; otherwise, reject - if ( gotoEnd ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - deferred.resolveWith( elem, [ animation, gotoEnd ] ); - } else { - deferred.rejectWith( elem, [ animation, gotoEnd ] ); - } - return this; - } - } ), - props = animation.props; - - propFilter( props, animation.opts.specialEasing ); - - for ( ; index < length; index++ ) { - result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); - if ( result ) { - if ( isFunction( result.stop ) ) { - jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = - result.stop.bind( result ); - } - return result; - } - } - - jQuery.map( props, createTween, animation ); - - if ( isFunction( animation.opts.start ) ) { - animation.opts.start.call( elem, animation ); - } - - // Attach callbacks from options - animation - .progress( animation.opts.progress ) - .done( animation.opts.done, animation.opts.complete ) - .fail( animation.opts.fail ) - .always( animation.opts.always ); - - jQuery.fx.timer( - jQuery.extend( tick, { - elem: elem, - anim: animation, - queue: animation.opts.queue - } ) - ); - - return animation; -} - -jQuery.Animation = jQuery.extend( Animation, { - - tweeners: { - "*": [ function( prop, value ) { - var tween = this.createTween( prop, value ); - adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); - return tween; - } ] - }, - - tweener: function( props, callback ) { - if ( isFunction( props ) ) { - callback = props; - props = [ "*" ]; - } else { - props = props.match( rnothtmlwhite ); - } - - var prop, - index = 0, - length = props.length; - - for ( ; index < length; index++ ) { - prop = props[ index ]; - Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; - Animation.tweeners[ prop ].unshift( callback ); - } - }, - - prefilters: [ defaultPrefilter ], - - prefilter: function( callback, prepend ) { - if ( prepend ) { - Animation.prefilters.unshift( callback ); - } else { - Animation.prefilters.push( callback ); - } - } -} ); - -jQuery.speed = function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !isFunction( easing ) && easing - }; - - // Go to the end state if fx are off - if ( jQuery.fx.off ) { - opt.duration = 0; - - } else { - if ( typeof opt.duration !== "number" ) { - if ( opt.duration in jQuery.fx.speeds ) { - opt.duration = jQuery.fx.speeds[ opt.duration ]; - - } else { - opt.duration = jQuery.fx.speeds._default; - } - } - } - - // Normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function() { - if ( isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } - }; - - return opt; -}; - -jQuery.fn.extend( { - fadeTo: function( speed, to, easing, callback ) { - - // Show any hidden elements after setting opacity to 0 - return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() - - // Animate to the value specified - .end().animate( { opacity: to }, speed, easing, callback ); - }, - animate: function( prop, speed, easing, callback ) { - var empty = jQuery.isEmptyObject( prop ), - optall = jQuery.speed( speed, easing, callback ), - doAnimation = function() { - - // Operate on a copy of prop so per-property easing won't be lost - var anim = Animation( this, jQuery.extend( {}, prop ), optall ); - - // Empty animations, or finishing resolves immediately - if ( empty || dataPriv.get( this, "finish" ) ) { - anim.stop( true ); - } - }; - doAnimation.finish = doAnimation; - - return empty || optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - stop: function( type, clearQueue, gotoEnd ) { - var stopQueue = function( hooks ) { - var stop = hooks.stop; - delete hooks.stop; - stop( gotoEnd ); - }; - - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue ) { - this.queue( type || "fx", [] ); - } - - return this.each( function() { - var dequeue = true, - index = type != null && type + "queueHooks", - timers = jQuery.timers, - data = dataPriv.get( this ); - - if ( index ) { - if ( data[ index ] && data[ index ].stop ) { - stopQueue( data[ index ] ); - } - } else { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { - stopQueue( data[ index ] ); - } - } - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && - ( type == null || timers[ index ].queue === type ) ) { - - timers[ index ].anim.stop( gotoEnd ); - dequeue = false; - timers.splice( index, 1 ); - } - } - - // Start the next in the queue if the last step wasn't forced. - // Timers currently will call their complete callbacks, which - // will dequeue but only if they were gotoEnd. - if ( dequeue || !gotoEnd ) { - jQuery.dequeue( this, type ); - } - } ); - }, - finish: function( type ) { - if ( type !== false ) { - type = type || "fx"; - } - return this.each( function() { - var index, - data = dataPriv.get( this ), - queue = data[ type + "queue" ], - hooks = data[ type + "queueHooks" ], - timers = jQuery.timers, - length = queue ? queue.length : 0; - - // Enable finishing flag on private data - data.finish = true; - - // Empty the queue first - jQuery.queue( this, type, [] ); - - if ( hooks && hooks.stop ) { - hooks.stop.call( this, true ); - } - - // Look for any active animations, and finish them - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && timers[ index ].queue === type ) { - timers[ index ].anim.stop( true ); - timers.splice( index, 1 ); - } - } - - // Look for any animations in the old queue and finish them - for ( index = 0; index < length; index++ ) { - if ( queue[ index ] && queue[ index ].finish ) { - queue[ index ].finish.call( this ); - } - } - - // Turn off finishing flag - delete data.finish; - } ); - } -} ); - -jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { - var cssFn = jQuery.fn[ name ]; - jQuery.fn[ name ] = function( speed, easing, callback ) { - return speed == null || typeof speed === "boolean" ? - cssFn.apply( this, arguments ) : - this.animate( genFx( name, true ), speed, easing, callback ); - }; -} ); - -// Generate shortcuts for custom animations -jQuery.each( { - slideDown: genFx( "show" ), - slideUp: genFx( "hide" ), - slideToggle: genFx( "toggle" ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -} ); - -jQuery.timers = []; -jQuery.fx.tick = function() { - var timer, - i = 0, - timers = jQuery.timers; - - fxNow = Date.now(); - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - - // Run the timer and safely remove it when done (allowing for external removal) - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - fxNow = undefined; -}; - -jQuery.fx.timer = function( timer ) { - jQuery.timers.push( timer ); - jQuery.fx.start(); -}; - -jQuery.fx.interval = 13; -jQuery.fx.start = function() { - if ( inProgress ) { - return; - } - - inProgress = true; - schedule(); -}; - -jQuery.fx.stop = function() { - inProgress = null; -}; - -jQuery.fx.speeds = { - slow: 600, - fast: 200, - - // Default speed - _default: 400 -}; - - -// Based off of the plugin by Clint Helfers, with permission. -// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ -jQuery.fn.delay = function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = window.setTimeout( next, time ); - hooks.stop = function() { - window.clearTimeout( timeout ); - }; - } ); -}; - - -( function() { - var input = document.createElement( "input" ), - select = document.createElement( "select" ), - opt = select.appendChild( document.createElement( "option" ) ); - - input.type = "checkbox"; - - // Support: Android <=4.3 only - // Default value for a checkbox should be "on" - support.checkOn = input.value !== ""; - - // Support: IE <=11 only - // Must access selectedIndex to make default options select - support.optSelected = opt.selected; - - // Support: IE <=11 only - // An input loses its value after becoming a radio - input = document.createElement( "input" ); - input.value = "t"; - input.type = "radio"; - support.radioValue = input.value === "t"; -} )(); - - -var boolHook, - attrHandle = jQuery.expr.attrHandle; - -jQuery.fn.extend( { - attr: function( name, value ) { - return access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each( function() { - jQuery.removeAttr( this, name ); - } ); - } -} ); - -jQuery.extend( { - attr: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set attributes on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - // Attribute hooks are determined by the lowercase version - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - hooks = jQuery.attrHooks[ name.toLowerCase() ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); - } - - if ( value !== undefined ) { - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - } - - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - elem.setAttribute( name, value + "" ); - return value; - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? undefined : ret; - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !support.radioValue && value === "radio" && - nodeName( elem, "input" ) ) { - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - removeAttr: function( elem, value ) { - var name, - i = 0, - - // Attribute names can contain non-HTML whitespace characters - // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 - attrNames = value && value.match( rnothtmlwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( ( name = attrNames[ i++ ] ) ) { - elem.removeAttribute( name ); - } - } - } -} ); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - elem.setAttribute( name, name ); - } - return name; - } -}; - -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { - var getter = attrHandle[ name ] || jQuery.find.attr; - - attrHandle[ name ] = function( elem, name, isXML ) { - var ret, handle, - lowercaseName = name.toLowerCase(); - - if ( !isXML ) { - - // Avoid an infinite loop by temporarily removing this function from the getter - handle = attrHandle[ lowercaseName ]; - attrHandle[ lowercaseName ] = ret; - ret = getter( elem, name, isXML ) != null ? - lowercaseName : - null; - attrHandle[ lowercaseName ] = handle; - } - return ret; - }; -} ); - - - - -var rfocusable = /^(?:input|select|textarea|button)$/i, - rclickable = /^(?:a|area)$/i; - -jQuery.fn.extend( { - prop: function( name, value ) { - return access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - return this.each( function() { - delete this[ jQuery.propFix[ name ] || name ]; - } ); - } -} ); - -jQuery.extend( { - prop: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set properties on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - return ( elem[ name ] = value ); - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - return elem[ name ]; - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - - // Support: IE <=9 - 11 only - // elem.tabIndex doesn't always return the - // correct value when it hasn't been explicitly set - // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - if ( tabindex ) { - return parseInt( tabindex, 10 ); - } - - if ( - rfocusable.test( elem.nodeName ) || - rclickable.test( elem.nodeName ) && - elem.href - ) { - return 0; - } - - return -1; - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - } -} ); - -// Support: IE <=11 only -// Accessing the selectedIndex property -// forces the browser to respect setting selected -// on the option -// The getter ensures a default option is selected -// when in an optgroup -// eslint rule "no-unused-expressions" is disabled for this code -// since it considers such accessions noop -if ( !support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent && parent.parentNode ) { - parent.parentNode.selectedIndex; - } - return null; - }, - set: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - }; -} - -jQuery.each( [ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -} ); - - - - - // Strip and collapse whitespace according to HTML spec - // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace - function stripAndCollapse( value ) { - var tokens = value.match( rnothtmlwhite ) || []; - return tokens.join( " " ); - } - - -function getClass( elem ) { - return elem.getAttribute && elem.getAttribute( "class" ) || ""; -} - -function classesToArray( value ) { - if ( Array.isArray( value ) ) { - return value; - } - if ( typeof value === "string" ) { - return value.match( rnothtmlwhite ) || []; - } - return []; -} - -jQuery.fn.extend( { - addClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( !arguments.length ) { - return this.attr( "class", "" ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) > -1 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isValidValue = type === "string" || Array.isArray( value ); - - if ( typeof stateVal === "boolean" && isValidValue ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - if ( isFunction( value ) ) { - return this.each( function( i ) { - jQuery( this ).toggleClass( - value.call( this, i, getClass( this ), stateVal ), - stateVal - ); - } ); - } - - return this.each( function() { - var className, i, self, classNames; - - if ( isValidValue ) { - - // Toggle individual class names - i = 0; - self = jQuery( this ); - classNames = classesToArray( value ); - - while ( ( className = classNames[ i++ ] ) ) { - - // Check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( value === undefined || type === "boolean" ) { - className = getClass( this ); - if ( className ) { - - // Store className if set - dataPriv.set( this, "__className__", className ); - } - - // If the element has a class name or if we're passed `false`, - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - if ( this.setAttribute ) { - this.setAttribute( "class", - className || value === false ? - "" : - dataPriv.get( this, "__className__" ) || "" - ); - } - } - } ); - }, - - hasClass: function( selector ) { - var className, elem, - i = 0; - - className = " " + selector + " "; - while ( ( elem = this[ i++ ] ) ) { - if ( elem.nodeType === 1 && - ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { - return true; - } - } - - return false; - } -} ); - - - - -var rreturn = /\r/g; - -jQuery.fn.extend( { - val: function( value ) { - var hooks, ret, valueIsFunction, - elem = this[ 0 ]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || - jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && - "get" in hooks && - ( ret = hooks.get( elem, "value" ) ) !== undefined - ) { - return ret; - } - - ret = elem.value; - - // Handle most common string cases - if ( typeof ret === "string" ) { - return ret.replace( rreturn, "" ); - } - - // Handle cases where value is null/undef or number - return ret == null ? "" : ret; - } - - return; - } - - valueIsFunction = isFunction( value ); - - return this.each( function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( valueIsFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - - } else if ( typeof val === "number" ) { - val += ""; - - } else if ( Array.isArray( val ) ) { - val = jQuery.map( val, function( value ) { - return value == null ? "" : value + ""; - } ); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - } ); - } -} ); - -jQuery.extend( { - valHooks: { - option: { - get: function( elem ) { - - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - - // Support: IE <=10 - 11 only - // option.text throws exceptions (#14686, #14858) - // Strip and collapse whitespace - // https://html.spec.whatwg.org/#strip-and-collapse-whitespace - stripAndCollapse( jQuery.text( elem ) ); - } - }, - select: { - get: function( elem ) { - var value, option, i, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one", - values = one ? null : [], - max = one ? index + 1 : options.length; - - if ( index < 0 ) { - i = max; - - } else { - i = one ? index : 0; - } - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Support: IE <=9 only - // IE8-9 doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - - // Don't return options that are disabled or in a disabled optgroup - !option.disabled && - ( !option.parentNode.disabled || - !nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - - /* eslint-disable no-cond-assign */ - - if ( option.selected = - jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 - ) { - optionSet = true; - } - - /* eslint-enable no-cond-assign */ - } - - // Force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - } -} ); - -// Radios and checkboxes getter/setter -jQuery.each( [ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( Array.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); - } - } - }; - if ( !support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - return elem.getAttribute( "value" ) === null ? "on" : elem.value; - }; - } -} ); - - - - -// Return jQuery for attributes-only inclusion - - -support.focusin = "onfocusin" in window; - - -var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - stopPropagationCallback = function( e ) { - e.stopPropagation(); - }; - -jQuery.extend( jQuery.event, { - - trigger: function( event, data, elem, onlyHandlers ) { - - var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; - - cur = lastElement = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "." ) > -1 ) { - - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split( "." ); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf( ":" ) < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join( "." ); - event.rnamespace = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === ( elem.ownerDocument || document ) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { - lastElement = cur; - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( - dataPriv.get( cur, "events" ) || Object.create( null ) - )[ event.type ] && - dataPriv.get( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( ( !special._default || - special._default.apply( eventPath.pop(), data ) === false ) && - acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name as the event. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - - if ( event.isPropagationStopped() ) { - lastElement.addEventListener( type, stopPropagationCallback ); - } - - elem[ type ](); - - if ( event.isPropagationStopped() ) { - lastElement.removeEventListener( type, stopPropagationCallback ); - } - - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - // Piggyback on a donor event to simulate a different one - // Used only for `focus(in | out)` events - simulate: function( type, elem, event ) { - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true - } - ); - - jQuery.event.trigger( e, null, elem ); - } - -} ); - -jQuery.fn.extend( { - - trigger: function( type, data ) { - return this.each( function() { - jQuery.event.trigger( type, data, this ); - } ); - }, - triggerHandler: function( type, data ) { - var elem = this[ 0 ]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -} ); - - -// Support: Firefox <=44 -// Firefox doesn't have focus(in | out) events -// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 -// -// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 -// focus(in | out) events fire after focus & blur events, -// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order -// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 -if ( !support.focusin ) { - jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler on the document while someone wants focusin/focusout - var handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - - // Handle: regular nodes (via `this.ownerDocument`), window - // (via `this.document`) & document (via `this`). - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ); - - if ( !attaches ) { - doc.addEventListener( orig, handler, true ); - } - dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ) - 1; - - if ( !attaches ) { - doc.removeEventListener( orig, handler, true ); - dataPriv.remove( doc, fix ); - - } else { - dataPriv.access( doc, fix, attaches ); - } - } - }; - } ); -} -var location = window.location; - -var nonce = { guid: Date.now() }; - -var rquery = ( /\?/ ); - - - -// Cross-browser xml parsing -jQuery.parseXML = function( data ) { - var xml; - if ( !data || typeof data !== "string" ) { - return null; - } - - // Support: IE 9 - 11 only - // IE throws on parseFromString with invalid input. - try { - xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); - } catch ( e ) { - xml = undefined; - } - - if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; -}; - - -var - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, - rsubmittable = /^(?:input|select|textarea|keygen)/i; - -function buildParams( prefix, obj, traditional, add ) { - var name; - - if ( Array.isArray( obj ) ) { - - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - - // Item is non-scalar (array or object), encode its numeric index. - buildParams( - prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", - v, - traditional, - add - ); - } - } ); - - } else if ( !traditional && toType( obj ) === "object" ) { - - // Serialize object item. - for ( name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - - // Serialize scalar item. - add( prefix, obj ); - } -} - -// Serialize an array of form elements or a set of -// key/values into a query string -jQuery.param = function( a, traditional ) { - var prefix, - s = [], - add = function( key, valueOrFunction ) { - - // If value is a function, invoke it and use its return value - var value = isFunction( valueOrFunction ) ? - valueOrFunction() : - valueOrFunction; - - s[ s.length ] = encodeURIComponent( key ) + "=" + - encodeURIComponent( value == null ? "" : value ); - }; - - if ( a == null ) { - return ""; - } - - // If an array was passed in, assume that it is an array of form elements. - if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - } ); - - } else { - - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ); -}; - -jQuery.fn.extend( { - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - serializeArray: function() { - return this.map( function() { - - // Can add propHook for "elements" to filter or add form elements - var elements = jQuery.prop( this, "elements" ); - return elements ? jQuery.makeArray( elements ) : this; - } ) - .filter( function() { - var type = this.type; - - // Use .is( ":disabled" ) so that fieldset[disabled] works - return this.name && !jQuery( this ).is( ":disabled" ) && - rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && - ( this.checked || !rcheckableType.test( type ) ); - } ) - .map( function( _i, elem ) { - var val = jQuery( this ).val(); - - if ( val == null ) { - return null; - } - - if ( Array.isArray( val ) ) { - return jQuery.map( val, function( val ) { - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ); - } - - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ).get(); - } -} ); - - -var - r20 = /%20/g, - rhash = /#.*$/, - rantiCache = /([?&])_=[^&]*/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, - - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = "*/".concat( "*" ), - - // Anchor tag for parsing the document origin - originAnchor = document.createElement( "a" ); - originAnchor.href = location.href; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - var dataType, - i = 0, - dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; - - if ( isFunction( func ) ) { - - // For each dataType in the dataTypeExpression - while ( ( dataType = dataTypes[ i++ ] ) ) { - - // Prepend if requested - if ( dataType[ 0 ] === "+" ) { - dataType = dataType.slice( 1 ) || "*"; - ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); - - // Otherwise append - } else { - ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); - } - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { - - var inspected = {}, - seekingTransport = ( structure === transports ); - - function inspect( dataType ) { - var selected; - inspected[ dataType ] = true; - jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { - var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); - if ( typeof dataTypeOrTransport === "string" && - !seekingTransport && !inspected[ dataTypeOrTransport ] ) { - - options.dataTypes.unshift( dataTypeOrTransport ); - inspect( dataTypeOrTransport ); - return false; - } else if ( seekingTransport ) { - return !( selected = dataTypeOrTransport ); - } - } ); - return selected; - } - - return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } - - return target; -} - -/* Handles responses to an ajax request: - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - - var ct, type, finalDataType, firstDataType, - contents = s.contents, - dataTypes = s.dataTypes; - - // Remove auto dataType and get content-type in the process - while ( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -/* Chain conversions given the request and the original response - * Also sets the responseXXX fields on the jqXHR instance - */ -function ajaxConvert( s, response, jqXHR, isSuccess ) { - var conv2, current, conv, tmp, prev, - converters = {}, - - // Work with a copy of dataTypes in case we need to modify it for conversion - dataTypes = s.dataTypes.slice(); - - // Create converters map with lowercased keys - if ( dataTypes[ 1 ] ) { - for ( conv in s.converters ) { - converters[ conv.toLowerCase() ] = s.converters[ conv ]; - } - } - - current = dataTypes.shift(); - - // Convert to each sequential dataType - while ( current ) { - - if ( s.responseFields[ current ] ) { - jqXHR[ s.responseFields[ current ] ] = response; - } - - // Apply the dataFilter if provided - if ( !prev && isSuccess && s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - prev = current; - current = dataTypes.shift(); - - if ( current ) { - - // There's only work to do if current dataType is non-auto - if ( current === "*" ) { - - current = prev; - - // Convert response if prev dataType is non-auto and differs from current - } else if ( prev !== "*" && prev !== current ) { - - // Seek a direct converter - conv = converters[ prev + " " + current ] || converters[ "* " + current ]; - - // If none found, seek a pair - if ( !conv ) { - for ( conv2 in converters ) { - - // If conv2 outputs current - tmp = conv2.split( " " ); - if ( tmp[ 1 ] === current ) { - - // If prev can be converted to accepted input - conv = converters[ prev + " " + tmp[ 0 ] ] || - converters[ "* " + tmp[ 0 ] ]; - if ( conv ) { - - // Condense equivalence converters - if ( conv === true ) { - conv = converters[ conv2 ]; - - // Otherwise, insert the intermediate dataType - } else if ( converters[ conv2 ] !== true ) { - current = tmp[ 0 ]; - dataTypes.unshift( tmp[ 1 ] ); - } - break; - } - } - } - } - - // Apply converter (if not an equivalence) - if ( conv !== true ) { - - // Unless errors are allowed to bubble, catch and return them - if ( conv && s.throws ) { - response = conv( response ); - } else { - try { - response = conv( response ); - } catch ( e ) { - return { - state: "parsererror", - error: conv ? e : "No conversion from " + prev + " to " + current - }; - } - } - } - } - } - } - - return { state: "success", data: response }; -} - -jQuery.extend( { - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {}, - - ajaxSettings: { - url: location.href, - type: "GET", - isLocal: rlocalProtocol.test( location.protocol ), - global: true, - processData: true, - async: true, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - throws: false, - traditional: false, - headers: {}, - */ - - accepts: { - "*": allTypes, - text: "text/plain", - html: "text/html", - xml: "application/xml, text/xml", - json: "application/json, text/javascript" - }, - - contents: { - xml: /\bxml\b/, - html: /\bhtml/, - json: /\bjson\b/ - }, - - responseFields: { - xml: "responseXML", - text: "responseText", - json: "responseJSON" - }, - - // Data converters - // Keys separate source (or catchall "*") and destination types with a single space - converters: { - - // Convert anything to text - "* text": String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": JSON.parse, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - url: true, - context: true - } - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - return settings ? - - // Building a settings object - ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : - - // Extending ajaxSettings - ajaxExtend( jQuery.ajaxSettings, target ); - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var transport, - - // URL without anti-cache param - cacheURL, - - // Response headers - responseHeadersString, - responseHeaders, - - // timeout handle - timeoutTimer, - - // Url cleanup var - urlAnchor, - - // Request state (becomes false upon send and true upon completion) - completed, - - // To know if global events are to be dispatched - fireGlobals, - - // Loop variable - i, - - // uncached part of the url - uncached, - - // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - - // Callbacks context - callbackContext = s.context || s, - - // Context for global events is callbackContext if it is a DOM node or jQuery collection - globalEventContext = s.context && - ( callbackContext.nodeType || callbackContext.jquery ) ? - jQuery( callbackContext ) : - jQuery.event, - - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - - // Status-dependent callbacks - statusCode = s.statusCode || {}, - - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - - // Default abort message - strAbort = "canceled", - - // Fake xhr - jqXHR = { - readyState: 0, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( completed ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while ( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[ 1 ].toLowerCase() + " " ] = - ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) - .concat( match[ 2 ] ); - } - } - match = responseHeaders[ key.toLowerCase() + " " ]; - } - return match == null ? null : match.join( ", " ); - }, - - // Raw string - getAllResponseHeaders: function() { - return completed ? responseHeadersString : null; - }, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( completed == null ) { - name = requestHeadersNames[ name.toLowerCase() ] = - requestHeadersNames[ name.toLowerCase() ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( completed == null ) { - s.mimeType = type; - } - return this; - }, - - // Status-dependent callbacks - statusCode: function( map ) { - var code; - if ( map ) { - if ( completed ) { - - // Execute the appropriate callbacks - jqXHR.always( map[ jqXHR.status ] ); - } else { - - // Lazy-add the new callbacks in a way that preserves old ones - for ( code in map ) { - statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; - } - } - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - var finalText = statusText || strAbort; - if ( transport ) { - transport.abort( finalText ); - } - done( 0, finalText ); - return this; - } - }; - - // Attach deferreds - deferred.promise( jqXHR ); - - // Add protocol if not provided (prefilters might expect it) - // Handle falsy url in the settings object (#10093: consistency with old signature) - // We also use the url parameter if available - s.url = ( ( url || s.url || location.href ) + "" ) - .replace( rprotocol, location.protocol + "//" ); - - // Alias method option to type as per ticket #12004 - s.type = options.method || options.type || s.method || s.type; - - // Extract dataTypes list - s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; - - // A cross-domain request is in order when the origin doesn't match the current origin. - if ( s.crossDomain == null ) { - urlAnchor = document.createElement( "a" ); - - // Support: IE <=8 - 11, Edge 12 - 15 - // IE throws exception on accessing the href property if url is malformed, - // e.g. http://example.com:80x/ - try { - urlAnchor.href = s.url; - - // Support: IE <=8 - 11 only - // Anchor's host property isn't correctly set when s.url is relative - urlAnchor.href = urlAnchor.href; - s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== - urlAnchor.protocol + "//" + urlAnchor.host; - } catch ( e ) { - - // If there is an error parsing the URL, assume it is crossDomain, - // it can be rejected by the transport if it is invalid - s.crossDomain = true; - } - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( completed ) { - return jqXHR; - } - - // We can fire global events as of now if asked to - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) - fireGlobals = jQuery.event && s.global; - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Save the URL in case we're toying with the If-Modified-Since - // and/or If-None-Match header later on - // Remove hash to simplify url manipulation - cacheURL = s.url.replace( rhash, "" ); - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // Remember the hash so we can put it back - uncached = s.url.slice( cacheURL.length ); - - // If data is available and should be processed, append data to url - if ( s.data && ( s.processData || typeof s.data === "string" ) ) { - cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; - - // #9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Add or update anti-cache param if needed - if ( s.cache === false ) { - cacheURL = cacheURL.replace( rantiCache, "$1" ); - uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + - uncached; - } - - // Put hash and anti-cache on the URL that will be requested (gh-1732) - s.url = cacheURL + uncached; - - // Change '%20' to '+' if this is encoded form body content (gh-2658) - } else if ( s.data && s.processData && - ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { - s.data = s.data.replace( r20, "+" ); - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - if ( jQuery.lastModified[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); - } - if ( jQuery.etag[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? - s.accepts[ s.dataTypes[ 0 ] ] + - ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && - ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { - - // Abort if not done already and return - return jqXHR.abort(); - } - - // Aborting is no longer a cancellation - strAbort = "abort"; - - // Install callbacks on deferreds - completeDeferred.add( s.complete ); - jqXHR.done( s.success ); - jqXHR.fail( s.error ); - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - - // If request was aborted inside ajaxSend, stop there - if ( completed ) { - return jqXHR; - } - - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = window.setTimeout( function() { - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - completed = false; - transport.send( requestHeaders, done ); - } catch ( e ) { - - // Rethrow post-completion exceptions - if ( completed ) { - throw e; - } - - // Propagate others as results - done( -1, e ); - } - } - - // Callback for when everything is done - function done( status, nativeStatusText, responses, headers ) { - var isSuccess, success, error, response, modified, - statusText = nativeStatusText; - - // Ignore repeat invocations - if ( completed ) { - return; - } - - completed = true; - - // Clear timeout if it exists - if ( timeoutTimer ) { - window.clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - // Determine if successful - isSuccess = status >= 200 && status < 300 || status === 304; - - // Get response data - if ( responses ) { - response = ajaxHandleResponses( s, jqXHR, responses ); - } - - // Use a noop converter for missing script - if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { - s.converters[ "text script" ] = function() {}; - } - - // Convert no matter what (that way responseXXX fields are always set) - response = ajaxConvert( s, response, jqXHR, isSuccess ); - - // If successful, handle type chaining - if ( isSuccess ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - modified = jqXHR.getResponseHeader( "Last-Modified" ); - if ( modified ) { - jQuery.lastModified[ cacheURL ] = modified; - } - modified = jqXHR.getResponseHeader( "etag" ); - if ( modified ) { - jQuery.etag[ cacheURL ] = modified; - } - } - - // if no content - if ( status === 204 || s.type === "HEAD" ) { - statusText = "nocontent"; - - // if not modified - } else if ( status === 304 ) { - statusText = "notmodified"; - - // If we have data, let's convert it - } else { - statusText = response.state; - success = response.data; - error = response.error; - isSuccess = !error; - } - } else { - - // Extract error from statusText and normalize for non-aborts - error = statusText; - if ( status || !statusText ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = ( nativeStatusText || statusText ) + ""; - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - return jqXHR; - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - } -} ); - -jQuery.each( [ "get", "post" ], function( _i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - - // Shift arguments if data argument was omitted - if ( isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - // The url can be an options object (which then must have .url) - return jQuery.ajax( jQuery.extend( { - url: url, - type: method, - dataType: type, - data: data, - success: callback - }, jQuery.isPlainObject( url ) && url ) ); - }; -} ); - -jQuery.ajaxPrefilter( function( s ) { - var i; - for ( i in s.headers ) { - if ( i.toLowerCase() === "content-type" ) { - s.contentType = s.headers[ i ] || ""; - } - } -} ); - - -jQuery._evalUrl = function( url, options, doc ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (#11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - - // Only evaluate the response if it is successful (gh-4126) - // dataFilter is not invoked for failure responses, so using it instead - // of the default converter is kludgy but it works. - converters: { - "text script": function() {} - }, - dataFilter: function( response ) { - jQuery.globalEval( response, options, doc ); - } - } ); -}; - - -jQuery.fn.extend( { - wrapAll: function( html ) { - var wrap; - - if ( this[ 0 ] ) { - if ( isFunction( html ) ) { - html = html.call( this[ 0 ] ); - } - - // The elements to wrap the target around - wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); - - if ( this[ 0 ].parentNode ) { - wrap.insertBefore( this[ 0 ] ); - } - - wrap.map( function() { - var elem = this; - - while ( elem.firstElementChild ) { - elem = elem.firstElementChild; - } - - return elem; - } ).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapInner( html.call( this, i ) ); - } ); - } - - return this.each( function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - } ); - }, - - wrap: function( html ) { - var htmlIsFunction = isFunction( html ); - - return this.each( function( i ) { - jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); - } ); - }, - - unwrap: function( selector ) { - this.parent( selector ).not( "body" ).each( function() { - jQuery( this ).replaceWith( this.childNodes ); - } ); - return this; - } -} ); - - -jQuery.expr.pseudos.hidden = function( elem ) { - return !jQuery.expr.pseudos.visible( elem ); -}; -jQuery.expr.pseudos.visible = function( elem ) { - return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); -}; - - - - -jQuery.ajaxSettings.xhr = function() { - try { - return new window.XMLHttpRequest(); - } catch ( e ) {} -}; - -var xhrSuccessStatus = { - - // File protocol always yields status code 0, assume 200 - 0: 200, - - // Support: IE <=9 only - // #1450: sometimes IE returns 1223 when it should be 204 - 1223: 204 - }, - xhrSupported = jQuery.ajaxSettings.xhr(); - -support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); -support.ajax = xhrSupported = !!xhrSupported; - -jQuery.ajaxTransport( function( options ) { - var callback, errorCallback; - - // Cross domain only allowed if supported through XMLHttpRequest - if ( support.cors || xhrSupported && !options.crossDomain ) { - return { - send: function( headers, complete ) { - var i, - xhr = options.xhr(); - - xhr.open( - options.type, - options.url, - options.async, - options.username, - options.password - ); - - // Apply custom fields if provided - if ( options.xhrFields ) { - for ( i in options.xhrFields ) { - xhr[ i ] = options.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( options.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( options.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Set headers - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - - // Callback - callback = function( type ) { - return function() { - if ( callback ) { - callback = errorCallback = xhr.onload = - xhr.onerror = xhr.onabort = xhr.ontimeout = - xhr.onreadystatechange = null; - - if ( type === "abort" ) { - xhr.abort(); - } else if ( type === "error" ) { - - // Support: IE <=9 only - // On a manual native abort, IE9 throws - // errors on any property access that is not readyState - if ( typeof xhr.status !== "number" ) { - complete( 0, "error" ); - } else { - complete( - - // File: protocol always yields status 0; see #8605, #14207 - xhr.status, - xhr.statusText - ); - } - } else { - complete( - xhrSuccessStatus[ xhr.status ] || xhr.status, - xhr.statusText, - - // Support: IE <=9 only - // IE9 has no XHR2 but throws on binary (trac-11426) - // For XHR2 non-text, let the caller handle it (gh-2498) - ( xhr.responseType || "text" ) !== "text" || - typeof xhr.responseText !== "string" ? - { binary: xhr.response } : - { text: xhr.responseText }, - xhr.getAllResponseHeaders() - ); - } - } - }; - }; - - // Listen to events - xhr.onload = callback(); - errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); - - // Support: IE 9 only - // Use onreadystatechange to replace onabort - // to handle uncaught aborts - if ( xhr.onabort !== undefined ) { - xhr.onabort = errorCallback; - } else { - xhr.onreadystatechange = function() { - - // Check readyState before timeout as it changes - if ( xhr.readyState === 4 ) { - - // Allow onerror to be called first, - // but that will not handle a native abort - // Also, save errorCallback to a variable - // as xhr.onerror cannot be accessed - window.setTimeout( function() { - if ( callback ) { - errorCallback(); - } - } ); - } - }; - } - - // Create the abort callback - callback = callback( "abort" ); - - try { - - // Do send the request (this may raise an exception) - xhr.send( options.hasContent && options.data || null ); - } catch ( e ) { - - // #14683: Only rethrow if this hasn't been notified as an error yet - if ( callback ) { - throw e; - } - } - }, - - abort: function() { - if ( callback ) { - callback(); - } - } - }; - } -} ); - - - - -// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) -jQuery.ajaxPrefilter( function( s ) { - if ( s.crossDomain ) { - s.contents.script = false; - } -} ); - -// Install script dataType -jQuery.ajaxSetup( { - accepts: { - script: "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -} ); - -// Handle cache's special case and crossDomain -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - } -} ); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function( s ) { - - // This transport only deals with cross domain or forced-by-attrs requests - if ( s.crossDomain || s.scriptAttrs ) { - var script, callback; - return { - send: function( _, complete ) { - script = jQuery( " - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

API Reference

-

The following section outlines the API of discord.py.

-
-

Note

-

This module uses the Python logging module to log diagnostic and errors -in an output independent way. If the logging module is not configured, -these logs will not be output anywhere. See Setting Up Logging for -more information on how to set up and use the logging module with -discord.py.

-
- -
-

Clients

-
-

Client

-
-
-class discord.Client(*, intents, loop=None, **options)
-

Represents a client connection that connects to Discord. -This class is used to interact with the Discord WebSocket and API.

-

A number of options can be passed to the Client.

-
-
Parameters
-
    -
  • max_messages (Optional[int]) –

    The maximum number of messages to store in the internal message cache. -This defaults to 1000. Passing in None disables the message cache.

    -
    -

    Changed in version 1.3: Allow disabling the message cache and change the default size to 1000.

    -
    -

  • -
  • loop (Optional[asyncio.AbstractEventLoop]) – The asyncio.AbstractEventLoop to use for asynchronous operations. -Defaults to None, in which case the default event loop is used via -asyncio.get_event_loop().

  • -
  • connector (Optional[aiohttp.BaseConnector]) – The connector to use for connection pooling.

  • -
  • proxy (Optional[str]) – Proxy URL.

  • -
  • proxy_auth (Optional[aiohttp.BasicAuth]) – An object that represents proxy HTTP Basic Authorization.

  • -
  • shard_id (Optional[int]) – Integer starting at 0 and less than shard_count.

  • -
  • shard_count (Optional[int]) – The total number of shards.

  • -
  • application_id (int) – The client’s application ID.

  • -
  • intents (Intents) –

    The intents that you want to enable for the session. This is a way of -disabling and enabling certain gateway events from triggering and being sent.

    -
    -

    New in version 1.5.

    -
    -

  • -
  • member_cache_flags (MemberCacheFlags) –

    Allows for finer control over how the library caches members. -If not given, defaults to cache as much as possible with the -currently selected intents.

    -
    -

    New in version 1.5.

    -
    -

  • -
  • chunk_guilds_at_startup (bool) –

    Indicates if on_ready() should be delayed to chunk all guilds -at start-up if necessary. This operation is incredibly slow for large -amounts of guilds. The default is True if Intents.members -is True.

    -
    -

    New in version 1.5.

    -
    -

  • -
  • status (Optional[Status]) – A status to start your presence with upon logging on to Discord.

  • -
  • activity (Optional[BaseActivity]) – An activity to start your presence with upon logging on to Discord.

  • -
  • allowed_mentions (Optional[AllowedMentions]) –

    Control how the client handles mentions by default on every message sent.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • heartbeat_timeout (float) – The maximum numbers of seconds before timing out and restarting the -WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if -processing the initial packets take too long to the point of disconnecting -you. The default timeout is 60 seconds.

  • -
  • guild_ready_timeout (float) –

    The maximum number of seconds to wait for the GUILD_CREATE stream to end before -preparing the member cache and firing READY. The default timeout is 2 seconds.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • assume_unsync_clock (bool) –

    Whether to assume the system clock is unsynced. This applies to the ratelimit handling -code. If this is set to True, the default, then the library uses the time to reset -a rate limit bucket given by Discord. If this is False then your system clock is -used to calculate how long to sleep for. If this is set to False it is recommended to -sync your system clock to Google’s NTP server.

    -
    -

    New in version 1.3.

    -
    -

  • -
  • enable_debug_events (bool) –

    Whether to enable events that are useful only for debugging gateway related information.

    -

    Right now this involves on_socket_raw_receive() and on_socket_raw_send(). If -this is False then those events will not be dispatched (due to performance considerations). -To enable these events, this must be set to True. Defaults to False.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
-
-
-ws
-

The websocket gateway the client is currently connected to. Could be None.

-
- -
-
-loop
-

The event loop that the client uses for asynchronous operations.

-
-
Type
-

asyncio.AbstractEventLoop

-
-
-
- -
-
-@event
-

A decorator that registers an event to listen to.

-

You can find more info about the events on the documentation below.

-

The events must be a coroutine, if not, TypeError is raised.

-

Example

-
@client.event
-async def on_ready():
-    print('Ready!')
-
-
-
-
Raises
-

TypeError – The coroutine passed is not actually a coroutine.

-
-
-
- -
-
-async for ... in fetch_guilds(*, limit=100, before=None, after=None)
-

Retrieves an AsyncIterator that enables receiving your guilds.

-
-

Note

-

Using this, you will only receive Guild.owner, Guild.icon, -Guild.id, and Guild.name per Guild.

-
-
-

Note

-

This method is an API call. For general usage, consider guilds instead.

-
-

Examples

-

Usage

-
async for guild in client.fetch_guilds(limit=150):
-    print(guild.name)
-
-
-

Flattening into a list

-
guilds = await client.fetch_guilds(limit=150).flatten()
-# guilds is now a list of Guild...
-
-
-

All parameters are optional.

-
-
Parameters
-
    -
  • limit (Optional[int]) – The number of guilds to retrieve. -If None, it retrieves every guild you have access to. Note, however, -that this would make it a slow operation. -Defaults to 100.

  • -
  • before (Union[abc.Snowflake, datetime.datetime]) – Retrieves guilds before this date or object. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • after (Union[abc.Snowflake, datetime.datetime]) – Retrieve guilds after this date or object. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
-
-
Raises
-

HTTPException – Getting the guilds failed.

-
-
Yields
-

Guild – The guild with the guild data parsed.

-
-
-
- -
-
-property latency
-

Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds.

-

This could be referred to as the Discord WebSocket protocol latency.

-
-
Type
-

float

-
-
-
- -
-
-is_ws_ratelimited()
-

bool: Whether the websocket is currently rate limited.

-

This can be useful to know when deciding whether you should query members -using HTTP or via the gateway.

-
-

New in version 1.6.

-
-
- -
-
-property user
-

Represents the connected client. None if not logged in.

-
-
Type
-

Optional[ClientUser]

-
-
-
- -
-
-property guilds
-

The guilds that the connected client is a member of.

-
-
Type
-

List[Guild]

-
-
-
- -
-
-property emojis
-

The emojis that the connected client has.

-
-
Type
-

List[Emoji]

-
-
-
- -
-
-property stickers
-

The stickers that the connected client has.

-
-

New in version 2.0.

-
-
-
Type
-

List[GuildSticker]

-
-
-
- -
-
-property cached_messages
-

Read-only list of messages the connected client has cached.

-
-

New in version 1.1.

-
-
-
Type
-

Sequence[Message]

-
-
-
- -
-
-property private_channels
-

The private channels that the connected client is participating on.

-
-

Note

-

This returns only up to 128 most recent private channels due to an internal working -on how Discord deals with private channels.

-
-
-
Type
-

List[abc.PrivateChannel]

-
-
-
- -
-
-property voice_clients
-

Represents a list of voice connections.

-

These are usually VoiceClient instances.

-
-
Type
-

List[VoiceProtocol]

-
-
-
- -
-
-property application_id
-

The client’s application ID.

-

If this is not passed via __init__ then this is retrieved -through the gateway when an event contains the data. Usually -after on_connect() is called.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[int]

-
-
-
- -
-
-property application_flags
-

The client’s application flags.

-
-

New in version 2.0.

-
-
-
Type
-

ApplicationFlags

-
-
-
- -
-
-is_ready()
-

bool: Specifies if the client’s internal cache is ready for use.

-
- -
-
-await on_error(event_method, *args, **kwargs)
-

This function is a coroutine.

-

The default error handler provided by the client.

-

By default this prints to sys.stderr however it could be -overridden to have a different implementation. -Check on_error() for more details.

-
- -
-
-await before_identify_hook(shard_id, *, initial=False)
-

This function is a coroutine.

-

A hook that is called before IDENTIFYing a session. This is useful -if you wish to have more control over the synchronization of multiple -IDENTIFYing clients.

-

The default implementation sleeps for 5 seconds.

-
-

New in version 1.4.

-
-
-
Parameters
-
    -
  • shard_id (int) – The shard ID that requested being IDENTIFY’d

  • -
  • initial (bool) – Whether this IDENTIFY is the first initial IDENTIFY.

  • -
-
-
-
- -
-
-await login(token)
-

This function is a coroutine.

-

Logs in the client with the specified credentials.

-
-
Parameters
-

token (str) – The authentication token. Do not prefix this token with -anything as the library will do it for you.

-
-
Raises
-
    -
  • LoginFailure – The wrong credentials are passed.

  • -
  • HTTPException – An unknown HTTP related error occurred, - usually when it isn’t 200 or the known incorrect credentials - passing status code.

  • -
-
-
-
- -
-
-await connect(*, reconnect=True)
-

This function is a coroutine.

-

Creates a websocket connection and lets the websocket listen -to messages from Discord. This is a loop that runs the entire -event system and miscellaneous aspects of the library. Control -is not resumed until the WebSocket connection is terminated.

-
-
Parameters
-

reconnect (bool) – If we should attempt reconnecting, either due to internet -failure or a specific failure on Discord’s part. Certain -disconnects that lead to bad state will not be handled (such as -invalid sharding payloads or bad tokens).

-
-
Raises
-
    -
  • GatewayNotFound – If the gateway to connect to Discord is not found. Usually if this - is thrown then there is a Discord API outage.

  • -
  • ConnectionClosed – The websocket connection has been terminated.

  • -
-
-
-
- -
-
-await close()
-

This function is a coroutine.

-

Closes the connection to Discord.

-
- -
-
-clear()
-

Clears the internal state of the bot.

-

After this, the bot can be considered “re-opened”, i.e. is_closed() -and is_ready() both return False along with the bot’s internal -cache cleared.

-
- -
-
-await start(token, *, reconnect=True)
-

This function is a coroutine.

-

A shorthand coroutine for login() + setup() + connect().

-
-
Raises
-

TypeError – An unexpected keyword argument was received.

-
-
-
- -
-
-await setup()
-

This function is a coroutine.

-

A coroutine to be called to setup the bot, by default this is blank.

-

To perform asynchronous setup after the bot is logged in but before -it has connected to the Websocket, overwrite this coroutine.

-
-

New in version 2.0.

-
-
- -
-
-run(*args, **kwargs)
-

A blocking call that abstracts away the event loop -initialisation from you.

-

If you want more control over the event loop then this -function should not be used. Use start() coroutine -or connect() + login().

-

Roughly Equivalent to:

-
try:
-    loop.run_until_complete(start(*args, **kwargs))
-except KeyboardInterrupt:
-    loop.run_until_complete(close())
-    # cancel all tasks lingering
-finally:
-    loop.close()
-
-
-
-

Warning

-

This function must be the last function to call due to the fact that it -is blocking. That means that registration of events or anything being -called after this function call will not execute until it returns.

-
-
- -
-
-is_closed()
-

bool: Indicates if the websocket connection is closed.

-
- -
-
-property activity
-

The activity being used upon -logging in.

-
-
Type
-

Optional[BaseActivity]

-
-
-
- -
-
-property status
-

Status: -The status being used upon logging on to Discord.

-
-

New in version 2.0.

-
-
- -
-
-property allowed_mentions
-

The allowed mention configuration.

-
-

New in version 1.4.

-
-
-
Type
-

Optional[AllowedMentions]

-
-
-
- -
-
-property intents
-

The intents configured for this connection.

-
-

New in version 1.5.

-
-
-
Type
-

Intents

-
-
-
- -
-
-property users
-

Returns a list of all the users the bot can see.

-
-
Type
-

List[User]

-
-
-
- -
-
-get_channel(id, /)
-

Returns a channel or thread with the given ID.

-
-
Parameters
-

id (int) – The ID to search for.

-
-
Returns
-

The returned channel or None if not found.

-
-
Return type
-

Optional[Union[abc.GuildChannel, Thread, abc.PrivateChannel]]

-
-
-
- -
-
-get_partial_messageable(id, *, type=None)
-

Returns a partial messageable with the given channel ID.

-

This is useful if you have a channel_id but don’t want to do an API call -to send messages to it.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • id (int) – The channel ID to create a partial messageable for.

  • -
  • type (Optional[ChannelType]) – The underlying channel type for the partial messageable.

  • -
-
-
Returns
-

The partial messageable

-
-
Return type
-

PartialMessageable

-
-
-
- -
-
-get_stage_instance(id, /)
-

Returns a stage instance with the given stage channel ID.

-
-

New in version 2.0.

-
-
-
Parameters
-

id (int) – The ID to search for.

-
-
Returns
-

The returns stage instance of None if not found.

-
-
Return type
-

Optional[StageInstance]

-
-
-
- -
-
-get_guild(id, /)
-

Returns a guild with the given ID.

-
-
Parameters
-

id (int) – The ID to search for.

-
-
Returns
-

The guild or None if not found.

-
-
Return type
-

Optional[Guild]

-
-
-
- -
-
-get_user(id, /)
-

Returns a user with the given ID.

-
-
Parameters
-

id (int) – The ID to search for.

-
-
Returns
-

The user or None if not found.

-
-
Return type
-

Optional[User]

-
-
-
- -
-
-await try_user(id, /)
-

This function is a coroutine. -Returns a user with the given ID. If not from cache, the user will be requested from the API.

-

You do not have to share any guilds with the user to get this information from the API, -however many operations do require that you do.

-
-

Note

-

This method is an API call. If you have discord.Intents.members and member cache enabled, consider get_user() instead.

-
-
-

New in version 2.0.

-
-
-
Parameters
-

id (int) – The ID to search for.

-
-
Returns
-

The user or None if not found.

-
-
Return type
-

Optional[User]

-
-
-
- -
-
-get_emoji(id, /)
-

Returns an emoji with the given ID.

-
-
Parameters
-

id (int) – The ID to search for.

-
-
Returns
-

The custom emoji or None if not found.

-
-
Return type
-

Optional[Emoji]

-
-
-
- -
-
-get_sticker(id, /)
-

Returns a guild sticker with the given ID.

-
-

New in version 2.0.

-
-
-

Note

-

To retrieve standard stickers, use fetch_sticker(). -or fetch_premium_sticker_packs().

-
-
-
Returns
-

The sticker or None if not found.

-
-
Return type
-

Optional[GuildSticker]

-
-
-
- -
-
-for ... in get_all_channels()
-

A generator that retrieves every abc.GuildChannel the client can ‘access’.

-

This is equivalent to:

-
for guild in client.guilds:
-    for channel in guild.channels:
-        yield channel
-
-
-
-

Note

-

Just because you receive a abc.GuildChannel does not mean that -you can communicate in said channel. abc.GuildChannel.permissions_for() should -be used for that.

-
-
-
Yields
-

abc.GuildChannel – A channel the client can ‘access’.

-
-
-
- -
-
-for ... in get_all_members()
-

Returns a generator with every Member the client can see.

-

This is equivalent to:

-
for guild in client.guilds:
-    for member in guild.members:
-        yield member
-
-
-
-
Yields
-

Member – A member the client can see.

-
-
-
- -
-
-await wait_until_ready()
-

This function is a coroutine.

-

Waits until the client’s internal cache is all ready.

-
- -
-
-wait_for(event, *, check=None, timeout=None)
-

This function is a coroutine.

-

Waits for a WebSocket event to be dispatched.

-

This could be used to wait for a user to reply to a message, -or to react to a message, or to edit a message in a self-contained -way.

-

The timeout parameter is passed onto asyncio.wait_for(). By default, -it does not timeout. Note that this does propagate the -asyncio.TimeoutError for you in case of timeout and is provided for -ease of use.

-

In case the event returns multiple arguments, a tuple containing those -arguments is returned instead. Please check the -documentation for a list of events and their -parameters.

-

This function returns the first event that meets the requirements.

-

Examples

-

Waiting for a user reply:

-
@client.event
-async def on_message(message):
-    if message.content.startswith('$greet'):
-        channel = message.channel
-        await channel.send('Say hello!')
-
-        def check(m):
-            return m.content == 'hello' and m.channel == channel
-
-        msg = await client.wait_for('message', check=check)
-        await channel.send(f'Hello {msg.author}!')
-
-
-

Waiting for a thumbs up reaction from the message author:

-
@client.event
-async def on_message(message):
-    if message.content.startswith('$thumb'):
-        channel = message.channel
-        await channel.send('Send me that 👍 reaction, mate')
-
-        def check(reaction, user):
-            return user == message.author and str(reaction.emoji) == '👍'
-
-        try:
-            reaction, user = await client.wait_for('reaction_add', timeout=60.0, check=check)
-        except asyncio.TimeoutError:
-            await channel.send('👎')
-        else:
-            await channel.send('👍')
-
-
-
-
Parameters
-
    -
  • event (str) – The event name, similar to the event reference, -but without the on_ prefix, to wait for.

  • -
  • check (Optional[Callable[…, bool]]) – A predicate to check what to wait for. The arguments must meet the -parameters of the event being waited for.

  • -
  • timeout (Optional[float]) – The number of seconds to wait before timing out and raising -asyncio.TimeoutError.

  • -
-
-
Raises
-

asyncio.TimeoutError – If a timeout is provided and it was reached.

-
-
Returns
-

Returns no arguments, a single argument, or a tuple of multiple -arguments that mirrors the parameters passed in the -event reference.

-
-
Return type
-

Any

-
-
-
- -
-
-await change_presence(*, activity=None, status=None)
-

This function is a coroutine.

-

Changes the client’s presence.

-

Example

-
game = discord.Game("with the API")
-await client.change_presence(status=discord.Status.idle, activity=game)
-
-
-
-

Changed in version 2.0: Removed the afk keyword-only parameter.

-
-
-
Parameters
-
    -
  • activity (Optional[BaseActivity]) – The activity being done. None if no currently active activity is done.

  • -
  • status (Optional[Status]) – Indicates what status to change to. If None, then -Status.online is used.

  • -
-
-
Raises
-

InvalidArgument – If the activity parameter is not the proper type.

-
-
-
- -
-
-await fetch_template(code)
-

This function is a coroutine.

-

Gets a Template from a discord.new URL or code.

-
-
Parameters
-

code (Union[Template, str]) – The Discord Template Code or URL (must be a discord.new URL).

-
-
Raises
-
-
-
Returns
-

The template from the URL/code.

-
-
Return type
-

Template

-
-
-
- -
-
-await fetch_guild(guild_id, /)
-

This function is a coroutine.

-

Retrieves a Guild from an ID.

-
-

Note

-

Using this, you will not receive Guild.channels, Guild.members, -Member.activity and Member.voice per Member.

-
-
-

Note

-

This method is an API call. For general usage, consider get_guild() instead.

-
-
-
Parameters
-

guild_id (int) – The guild’s ID to fetch from.

-
-
Raises
-
-
-
Returns
-

The guild from the ID.

-
-
Return type
-

Guild

-
-
-
- -
-
-await create_guild(*, name, region=<VoiceRegion.us_west: 'us-west'>, icon=..., code=...)
-

This function is a coroutine.

-

Creates a Guild.

-

Bot accounts in more than 10 guilds are not allowed to create guilds.

-
-
Parameters
-
    -
  • name (str) – The name of the guild.

  • -
  • region (VoiceRegion) – The region for the voice communication server. -Defaults to VoiceRegion.us_west.

  • -
  • icon (Optional[bytes]) – The bytes-like object representing the icon. See ClientUser.edit() -for more details on what is expected.

  • -
  • code (str) –

    The code for a template to create the guild with.

    -
    -

    New in version 1.4.

    -
    -

  • -
-
-
Raises
-
-
-
Returns
-

The guild created. This is not the same guild that is -added to cache.

-
-
Return type
-

Guild

-
-
-
- -
-
-await fetch_stage_instance(channel_id, /)
-

This function is a coroutine.

-

Gets a StageInstance for a stage channel id.

-
-

New in version 2.0.

-
-
-
Parameters
-

channel_id (int) – The stage channel ID.

-
-
Raises
-
    -
  • NotFound – The stage instance or channel could not be found.

  • -
  • HTTPException – Getting the stage instance failed.

  • -
-
-
Returns
-

The stage instance from the stage channel ID.

-
-
Return type
-

StageInstance

-
-
-
- -
-
-await fetch_invite(url, *, with_counts=True, with_expiration=True)
-

This function is a coroutine.

-

Gets an Invite from a discord.gg URL or ID.

-
-

Note

-

If the invite is for a guild you have not joined, the guild and channel -attributes of the returned Invite will be PartialInviteGuild and -PartialInviteChannel respectively.

-
-
-
Parameters
-
-
-
Raises
-
-
-
Returns
-

The invite from the URL/ID.

-
-
Return type
-

Invite

-
-
-
- -
-
-await delete_invite(invite)
-

This function is a coroutine.

-

Revokes an Invite, URL, or ID to an invite.

-

You must have the manage_channels permission in -the associated guild to do this.

-
-
Parameters
-

invite (Union[Invite, str]) – The invite to revoke.

-
-
Raises
-
    -
  • Forbidden – You do not have permissions to revoke invites.

  • -
  • NotFound – The invite is invalid or expired.

  • -
  • HTTPException – Revoking the invite failed.

  • -
-
-
-
- -
-
-await fetch_widget(guild_id, /)
-

This function is a coroutine.

-

Gets a Widget from a guild ID.

-
-

Note

-

The guild must have the widget enabled to get this information.

-
-
-
Parameters
-

guild_id (int) – The ID of the guild.

-
-
Raises
-
-
-
Returns
-

The guild’s widget.

-
-
Return type
-

Widget

-
-
-
- -
-
-await application_info()
-

This function is a coroutine.

-

Retrieves the bot’s application information.

-
-
Raises
-

HTTPException – Retrieving the information failed somehow.

-
-
Returns
-

The bot’s application information.

-
-
Return type
-

AppInfo

-
-
-
- -
-
-await fetch_user(user_id, /)
-

This function is a coroutine.

-

Retrieves a User based on their ID. -You do not have to share any guilds with the user to get this information, -however many operations do require that you do.

-
-

Note

-

This method is an API call. If you have discord.Intents.members and member cache enabled, consider get_user() instead.

-
-
-
Parameters
-

user_id (int) – The user’s ID to fetch from.

-
-
Raises
-
-
-
Returns
-

The user you requested.

-
-
Return type
-

User

-
-
-
- -
-
-await fetch_channel(channel_id, /)
-

This function is a coroutine.

-

Retrieves a abc.GuildChannel, abc.PrivateChannel, or Thread with the specified ID.

-
-

Note

-

This method is an API call. For general usage, consider get_channel() instead.

-
-
-

New in version 1.2.

-
-
-
Raises
-
    -
  • InvalidData – An unknown channel type was received from Discord.

  • -
  • HTTPException – Retrieving the channel failed.

  • -
  • NotFound – Invalid Channel ID.

  • -
  • Forbidden – You do not have permission to fetch this channel.

  • -
-
-
Returns
-

The channel from the ID.

-
-
Return type
-

Union[abc.GuildChannel, abc.PrivateChannel, Thread]

-
-
-
- -
-
-await fetch_webhook(webhook_id, /)
-

This function is a coroutine.

-

Retrieves a Webhook with the specified ID.

-
-
Raises
-
    -
  • HTTPException – Retrieving the webhook failed.

  • -
  • NotFound – Invalid webhook ID.

  • -
  • Forbidden – You do not have permission to fetch this webhook.

  • -
-
-
Returns
-

The webhook you requested.

-
-
Return type
-

Webhook

-
-
-
- -
-
-await fetch_sticker(sticker_id, /)
-

This function is a coroutine.

-

Retrieves a Sticker with the specified ID.

-
-

New in version 2.0.

-
-
-
Raises
-
-
-
Returns
-

The sticker you requested.

-
-
Return type
-

Union[StandardSticker, GuildSticker]

-
-
-
- -
-
-await fetch_premium_sticker_packs()
-

This function is a coroutine.

-

Retrieves all available premium sticker packs.

-
-

New in version 2.0.

-
-
-
Raises
-

HTTPException – Retrieving the sticker packs failed.

-
-
Returns
-

All available premium sticker packs.

-
-
Return type
-

List[StickerPack]

-
-
-
- -
-
-await create_dm(user)
-

This function is a coroutine.

-

Creates a DMChannel with this user.

-

This should be rarely called, as this is done transparently for most -people.

-
-

New in version 2.0.

-
-
-
Parameters
-

user (Snowflake) – The user to create a DM with.

-
-
Returns
-

The channel that was created.

-
-
Return type
-

DMChannel

-
-
-
- -
-
-add_view(view, *, message_id=None)
-

Registers a View for persistent listening.

-

This method should be used for when a view is comprised of components -that last longer than the lifecycle of the program.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • view (discord.ui.View) – The view to register for dispatching.

  • -
  • message_id (Optional[int]) – The message ID that the view is attached to. This is currently used to -refresh the view’s state during message update events. If not given -then message update events are not propagated for the view.

  • -
-
-
Raises
-
    -
  • TypeError – A view was not passed.

  • -
  • ValueError – The view is not persistent. A persistent view has no timeout - and all their components have an explicitly provided custom_id.

  • -
-
-
-
- -
-
-property persistent_views
-

A sequence of persistent views added to the client.

-
-

New in version 2.0.

-
-
-
Type
-

Sequence[View]

-
-
-
- -
- -
-
-

AutoShardedClient

-
- -Attributes -
- -Methods -
-
-class discord.AutoShardedClient(*args, loop=None, **kwargs)
-

A client similar to Client except it handles the complications -of sharding for the user into a more manageable and transparent single -process bot.

-

When using this client, you will be able to use it as-if it was a regular -Client with a single shard when implementation wise internally it -is split up into multiple shards. This allows you to not have to deal with -IPC or other complicated infrastructure.

-

It is recommended to use this client only if you have surpassed at least -1000 guilds.

-

If no shard_count is provided, then the library will use the -Bot Gateway endpoint call to figure out how many shards to use.

-

If a shard_ids parameter is given, then those shard IDs will be used -to launch the internal shards. Note that shard_count must be provided -if this is used. By default, when omitted, the client will launch shards from -0 to shard_count - 1.

-
-
-shard_ids
-

An optional list of shard_ids to launch the shards with.

-
-
Type
-

Optional[List[int]]

-
-
-
- -
-
-property latency
-

Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds.

-

This operates similarly to Client.latency() except it uses the average -latency of every shard’s latency. To get a list of shard latency, check the -latencies property. Returns nan if there are no shards ready.

-
-
Type
-

float

-
-
-
- -
-
-property latencies
-

A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds.

-

This returns a list of tuples with elements (shard_id, latency).

-
-
Type
-

List[Tuple[int, float]]

-
-
-
- -
-
-get_shard(shard_id)
-

Optional[ShardInfo]: Gets the shard information at a given shard ID or None if not found.

-
- -
-
-property shards
-

Returns a mapping of shard IDs to their respective info object.

-
-
Type
-

Mapping[int, ShardInfo]

-
-
-
- -
-
-await connect(*, reconnect=True)
-

This function is a coroutine.

-

Creates a websocket connection and lets the websocket listen -to messages from Discord. This is a loop that runs the entire -event system and miscellaneous aspects of the library. Control -is not resumed until the WebSocket connection is terminated.

-
-
Parameters
-

reconnect (bool) – If we should attempt reconnecting, either due to internet -failure or a specific failure on Discord’s part. Certain -disconnects that lead to bad state will not be handled (such as -invalid sharding payloads or bad tokens).

-
-
Raises
-
    -
  • GatewayNotFound – If the gateway to connect to Discord is not found. Usually if this - is thrown then there is a Discord API outage.

  • -
  • ConnectionClosed – The websocket connection has been terminated.

  • -
-
-
-
- -
-
-await close()
-

This function is a coroutine.

-

Closes the connection to Discord.

-
- -
-
-await change_presence(*, activity=None, status=None, shard_id=None)
-

This function is a coroutine.

-

Changes the client’s presence.

-

Example:

-
game = discord.Game("with the API")
-await client.change_presence(status=discord.Status.idle, activity=game)
-
-
-
-

Changed in version 2.0: Removed the afk keyword-only parameter.

-
-
-
Parameters
-
    -
  • activity (Optional[BaseActivity]) – The activity being done. None if no currently active activity is done.

  • -
  • status (Optional[Status]) – Indicates what status to change to. If None, then -Status.online is used.

  • -
  • shard_id (Optional[int]) – The shard_id to change the presence to. If not specified -or None, then it will change the presence of every -shard the bot can see.

  • -
-
-
Raises
-

InvalidArgument – If the activity parameter is not of proper type.

-
-
-
- -
-
-is_ws_ratelimited()
-

bool: Whether the websocket is currently rate limited.

-

This can be useful to know when deciding whether you should query members -using HTTP or via the gateway.

-

This implementation checks if any of the shards are rate limited. -For more granular control, consider ShardInfo.is_ws_ratelimited().

-
-

New in version 1.6.

-
-
- -
- -
-
-
-

Application Info

-
-

AppInfo

-
-
-class discord.AppInfo
-

Represents the application info for the bot provided by Discord.

-
-
-id
-

The application ID.

-
-
Type
-

int

-
-
-
- -
-
-name
-

The application name.

-
-
Type
-

str

-
-
-
- -
-
-owner
-

The application owner.

-
-
Type
-

User

-
-
-
- -
-
-team
-

The application’s team.

-
-

New in version 1.3.

-
-
-
Type
-

Optional[Team]

-
-
-
- -
-
-description
-

The application description.

-
-
Type
-

str

-
-
-
- -
-
-bot_public
-

Whether the bot can be invited by anyone or if it is locked -to the application owner.

-
-
Type
-

bool

-
-
-
- -
-
-bot_require_code_grant
-

Whether the bot requires the completion of the full oauth2 code -grant flow to join.

-
-
Type
-

bool

-
-
-
- -
-
-rpc_origins
-

A list of RPC origin URLs, if RPC is enabled.

-
-
Type
-

Optional[List[str]]

-
-
-
- -
-
-summary
-

If this application is a game sold on Discord, -this field will be the summary field for the store page of its primary SKU.

-
-

New in version 1.3.

-
-
-
Type
-

str

-
-
-
- -
-
-verify_key
-

The hex encoded key for verification in interactions and the -GameSDK’s GetTicket.

-
-

New in version 1.3.

-
-
-
Type
-

str

-
-
-
- -
-
-guild_id
-

If this application is a game sold on Discord, -this field will be the guild to which it has been linked to.

-
-

New in version 1.3.

-
-
-
Type
-

Optional[int]

-
-
-
- -
-
-primary_sku_id
-

If this application is a game sold on Discord, -this field will be the id of the “Game SKU” that is created, -if it exists.

-
-

New in version 1.3.

-
-
-
Type
-

Optional[int]

-
-
-
- -
-
-slug
-

If this application is a game sold on Discord, -this field will be the URL slug that links to the store page.

-
-

New in version 1.3.

-
-
-
Type
-

Optional[str]

-
-
-
- -
-
-terms_of_service_url
-

The application’s terms of service URL, if set.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[str]

-
-
-
- -
-
-privacy_policy_url
-

The application’s privacy policy URL, if set.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[str]

-
-
-
- -
-
-property icon
-

Retrieves the application’s icon asset, if any.

-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property cover_image
-

Retrieves the cover image on a store embed, if any.

-

This is only available if the application is a game sold on Discord.

-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property guild
-

If this application is a game sold on Discord, -this field will be the guild to which it has been linked

-
-

New in version 1.3.

-
-
-
Type
-

Optional[Guild]

-
-
-
- -
- -
-
-

PartialAppInfo

-
-
-class discord.PartialAppInfo
-

Represents a partial AppInfo given by create_invite()

-
-

New in version 2.0.

-
-
-
-id
-

The application ID.

-
-
Type
-

int

-
-
-
- -
-
-name
-

The application name.

-
-
Type
-

str

-
-
-
- -
-
-description
-

The application description.

-
-
Type
-

str

-
-
-
- -
-
-rpc_origins
-

A list of RPC origin URLs, if RPC is enabled.

-
-
Type
-

Optional[List[str]]

-
-
-
- -
-
-summary
-

If this application is a game sold on Discord, -this field will be the summary field for the store page of its primary SKU.

-
-
Type
-

str

-
-
-
- -
-
-verify_key
-

The hex encoded key for verification in interactions and the -GameSDK’s GetTicket.

-
-
Type
-

str

-
-
-
- -
-
-terms_of_service_url
-

The application’s terms of service URL, if set.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-privacy_policy_url
-

The application’s privacy policy URL, if set.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-property icon
-

Retrieves the application’s icon asset, if any.

-
-
Type
-

Optional[Asset]

-
-
-
- -
- -
-
-

Team

-
- -Attributes -
-
-class discord.Team
-

Represents an application team for a bot provided by Discord.

-
-
-id
-

The team ID.

-
-
Type
-

int

-
-
-
- -
-
-name
-

The team name

-
-
Type
-

str

-
-
-
- -
-
-owner_id
-

The team’s owner ID.

-
-
Type
-

int

-
-
-
- -
-
-members
-

A list of the members in the team

-
-

New in version 1.3.

-
-
-
Type
-

List[TeamMember]

-
-
-
- -
-
-property icon
-

Retrieves the team’s icon asset, if any.

-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property owner
-

The team’s owner.

-
-
Type
-

Optional[TeamMember]

-
-
-
- -
- -
-
-

TeamMember

-
- -Attributes -
-
-class discord.TeamMember
-

Represents a team member in a team.

-
-
-
-x == y
-

Checks if two team members are equal.

-
- -
-
-x != y
-

Checks if two team members are not equal.

-
- -
-
-hash(x)
-

Return the team member’s hash.

-
- -
-
-str(x)
-

Returns the team member’s name with discriminator.

-
- -
-
-

New in version 1.3.

-
-
-
-name
-

The team member’s username.

-
-
Type
-

str

-
-
-
- -
-
-id
-

The team member’s unique ID.

-
-
Type
-

int

-
-
-
- -
-
-discriminator
-

The team member’s discriminator. This is given when the username has conflicts.

-
-
Type
-

str

-
-
-
- -
-
-avatar
-

The avatar hash the team member has. Could be None.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-bot
-

Specifies if the user is a bot account.

-
-
Type
-

bool

-
-
-
- -
-
-team
-

The team that the member is from.

-
-
Type
-

Team

-
-
-
- -
-
-membership_state
-

The membership state of the member (e.g. invited or accepted)

-
-
Type
-

TeamMembershipState

-
-
-
- -
- -
-
- -
-

Event Reference

-

This section outlines the different types of events listened by Client.

-

There are two ways to register an event, the first way is through the use of -Client.event(). The second way is through subclassing Client and -overriding the specific events. For example:

-
import discord
-
-class MyClient(discord.Client):
-    async def on_message(self, message):
-        if message.author == self.user:
-            return
-
-        if message.content.startswith('$hello'):
-            await message.channel.send('Hello World!')
-
-
-

If an event handler raises an exception, on_error() will be called -to handle it, which defaults to print a traceback and ignoring the exception.

-
-

Warning

-

All the events must be a coroutine. If they aren’t, then you might get unexpected -errors. In order to turn a function into a coroutine they must be async def -functions.

-
-
-

Networking

-
-
-discord.on_connect()
-

Called when the client has successfully connected to Discord. This is not -the same as the client being fully prepared, see on_ready() for that.

-

The warnings on on_ready() also apply.

-
- -
-
-discord.on_shard_connect(shard_id)
-

Similar to on_connect() except used by AutoShardedClient -to denote when a particular shard ID has connected to Discord.

-
-

New in version 1.4.

-
-
-
Parameters
-

shard_id (int) – The shard ID that has connected.

-
-
-
- -
-
-discord.on_disconnect()
-

Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. -This could happen either through the internet being disconnected, explicit calls to close, -or Discord terminating the connection one way or the other.

-

This function can be called many times without a corresponding on_connect() call.

-
- -
-
-discord.on_shard_disconnect(shard_id)
-

Similar to on_disconnect() except used by AutoShardedClient -to denote when a particular shard ID has disconnected from Discord.

-
-

New in version 1.4.

-
-
-
Parameters
-

shard_id (int) – The shard ID that has disconnected.

-
-
-
- -
-
-discord.on_ready()
-

Called when the client is done preparing the data received from Discord. Usually after login is successful -and the Client.guilds and co. are filled up.

-
-

Warning

-

This function is not guaranteed to be the first event called. -Likewise, this function is not guaranteed to only be called -once. This library implements reconnection logic and thus will -end up calling this event whenever a RESUME request fails.

-
-
- -
-
-discord.on_shard_ready(shard_id)
-

Similar to on_ready() except used by AutoShardedClient -to denote when a particular shard ID has become ready.

-
-
Parameters
-

shard_id (int) – The shard ID that is ready.

-
-
-
- -
-
-discord.on_resumed()
-

Called when the client has resumed a session.

-
- -
-
-discord.on_shard_resumed(shard_id)
-

Similar to on_resumed() except used by AutoShardedClient -to denote when a particular shard ID has resumed a session.

-
-

New in version 1.4.

-
-
-
Parameters
-

shard_id (int) – The shard ID that has resumed.

-
-
-
- -
-
-discord.on_error(event, *args, **kwargs)
-

Usually when an event raises an uncaught exception, a traceback is -printed to stderr and the exception is ignored. If you want to -change this behaviour and handle the exception for whatever reason -yourself, this event can be overridden. Which, when done, will -suppress the default action of printing the traceback.

-

The information of the exception raised and the exception itself can -be retrieved with a standard call to sys.exc_info().

-

If you want exception to propagate out of the Client class -you can define an on_error handler consisting of a single empty -raise statement. Exceptions raised by on_error will not be -handled in any way by Client.

-
-

Note

-

on_error will only be dispatched to Client.event().

-

It will not be received by Client.wait_for(), or, if used, -Bots listeners such as -listen() or listener().

-
-
-
Parameters
-
    -
  • event (str) – The name of the event that raised the exception.

  • -
  • args – The positional arguments for the event that raised the -exception.

  • -
  • kwargs – The keyword arguments for the event that raised the -exception.

  • -
-
-
-
- -
-
-discord.on_socket_event_type(event_type)
-

Called whenever a websocket event is received from the WebSocket.

-

This is mainly useful for logging how many events you are receiving -from the Discord gateway.

-
-

New in version 2.0.

-
-
-
Parameters
-

event_type (str) – The event type from Discord that is received, e.g. 'READY'.

-
-
-
- -
-
-discord.on_socket_raw_receive(msg)
-

Called whenever a message is completely received from the WebSocket, before -it’s processed and parsed. This event is always dispatched when a -complete message is received and the passed data is not parsed in any way.

-

This is only really useful for grabbing the WebSocket stream and -debugging purposes.

-

This requires setting the enable_debug_events setting in the Client.

-
-

Note

-

This is only for the messages received from the client -WebSocket. The voice WebSocket will not trigger this event.

-
-
-
Parameters
-

msg (str) – The message passed in from the WebSocket library.

-
-
-
- -
-
-discord.on_socket_raw_send(payload)
-

Called whenever a send operation is done on the WebSocket before the -message is sent. The passed parameter is the message that is being -sent to the WebSocket.

-

This is only really useful for grabbing the WebSocket stream and -debugging purposes.

-

This requires setting the enable_debug_events setting in the Client.

-
-

Note

-

This is only for the messages sent from the client -WebSocket. The voice WebSocket will not trigger this event.

-
-
-
Parameters
-

payload – The message that is about to be passed on to the -WebSocket library. It can be bytes to denote a binary -message or str to denote a regular text message.

-
-
-
- -
-
-discord.on_typing(channel, user, when)
-

Called when someone begins typing a message.

-

The channel parameter can be a abc.Messageable instance. -Which could either be TextChannel, GroupChannel, or -DMChannel.

-

If the channel is a TextChannel then the user parameter -is a Member, otherwise it is a User.

-

This requires Intents.typing to be enabled.

-
-
Parameters
-
    -
  • channel (abc.Messageable) – The location where the typing originated from.

  • -
  • user (Union[User, Member]) – The user that started typing.

  • -
  • when (datetime.datetime) – When the typing started as an aware datetime in UTC.

  • -
-
-
-
- -
-
-discord.on_raw_typing(payload)
-

Called when someone begins typing a message. Unlike on_typing(), this is -called regardless if the user can be found or not. This most often happens -when a user types in DMs.

-

This requires Intents.typing to be enabled.

-
-
Parameters
-

payload (RawTypingEvent) – The raw typing payload.

-
-
-
- -
-
-

Messages

-
-
-discord.on_message(message)
-

Called when a Message is created and sent.

-

This requires Intents.messages to be enabled.

-
-

Warning

-

Your bot’s own messages and private messages are sent through this -event. This can lead cases of ‘recursion’ depending on how your bot was -programmed. If you want the bot to not reply to itself, consider -checking the user IDs. Note that Bot does not -have this problem.

-
-
-
Parameters
-

message (Message) – The current message.

-
-
-
- -
-
-discord.on_message_delete(message)
-

Called when a message is deleted. If the message is not found in the -internal message cache, then this event will not be called. -Messages might not be in cache if the message is too old -or the client is participating in high traffic guilds.

-

If this occurs increase the max_messages parameter -or use the on_raw_message_delete() event instead.

-

This requires Intents.messages to be enabled.

-
-
Parameters
-

message (Message) – The deleted message.

-
-
-
- -
-
-discord.on_bulk_message_delete(messages)
-

Called when messages are bulk deleted. If none of the messages deleted -are found in the internal message cache, then this event will not be called. -If individual messages were not found in the internal message cache, -this event will still be called, but the messages not found will not be included in -the messages list. Messages might not be in cache if the message is too old -or the client is participating in high traffic guilds.

-

If this occurs increase the max_messages parameter -or use the on_raw_bulk_message_delete() event instead.

-

This requires Intents.messages to be enabled.

-
-
Parameters
-

messages (List[Message]) – The messages that have been deleted.

-
-
-
- -
-
-discord.on_raw_message_delete(payload)
-

Called when a message is deleted. Unlike on_message_delete(), this is -called regardless of the message being in the internal message cache or not.

-

If the message is found in the message cache, -it can be accessed via RawMessageDeleteEvent.cached_message

-

This requires Intents.messages to be enabled.

-
-
Parameters
-

payload (RawMessageDeleteEvent) – The raw event payload data.

-
-
-
- -
-
-discord.on_raw_bulk_message_delete(payload)
-

Called when a bulk delete is triggered. Unlike on_bulk_message_delete(), this is -called regardless of the messages being in the internal message cache or not.

-

If the messages are found in the message cache, -they can be accessed via RawBulkMessageDeleteEvent.cached_messages

-

This requires Intents.messages to be enabled.

-
-
Parameters
-

payload (RawBulkMessageDeleteEvent) – The raw event payload data.

-
-
-
- -
-
-discord.on_message_edit(before, after)
-

Called when a Message receives an update event. If the message is not found -in the internal message cache, then these events will not be called. -Messages might not be in cache if the message is too old -or the client is participating in high traffic guilds.

-

If this occurs increase the max_messages parameter -or use the on_raw_message_edit() event instead.

-

The following non-exhaustive cases trigger this event:

-
    -
  • A message has been pinned or unpinned.

  • -
  • The message content has been changed.

  • -
  • The message has received an embed.

    -
    -
      -
    • For performance reasons, the embed server does not do this in a “consistent” manner.

    • -
    -
    -
  • -
  • The message’s embeds were suppressed or unsuppressed.

  • -
  • A call message has received an update to its participants or ending time.

  • -
-

This requires Intents.messages to be enabled.

-
-
Parameters
-
    -
  • before (Message) – The previous version of the message.

  • -
  • after (Message) – The current version of the message.

  • -
-
-
-
- -
-
-discord.on_raw_message_edit(payload)
-

Called when a message is edited. Unlike on_message_edit(), this is called -regardless of the state of the internal message cache.

-

If the message is found in the message cache, -it can be accessed via RawMessageUpdateEvent.cached_message. The cached message represents -the message before it has been edited. For example, if the content of a message is modified and -triggers the on_raw_message_edit() coroutine, the RawMessageUpdateEvent.cached_message -will return a Message object that represents the message before the content was modified.

-

Due to the inherently raw nature of this event, the data parameter coincides with -the raw data given by the gateway.

-

Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. -One example of a common case of partial data is when the 'content' key is inaccessible. This -denotes an “embed” only edit, which is an edit in which only the embeds are updated by the Discord -embed server.

-

This requires Intents.messages to be enabled.

-
-
Parameters
-

payload (RawMessageUpdateEvent) – The raw event payload data.

-
-
-
- -
-
-discord.on_reaction_add(reaction, user)
-

Called when a message has a reaction added to it. Similar to on_message_edit(), -if the message is not found in the internal message cache, then this -event will not be called. Consider using on_raw_reaction_add() instead.

-
-

Note

-

To get the Message being reacted, access it via Reaction.message.

-
-

This requires Intents.reactions to be enabled.

-
-

Note

-

This doesn’t require Intents.members within a guild context, -but due to Discord not providing updated user information in a direct message -it’s required for direct messages to receive this event. -Consider using on_raw_reaction_add() if you need this and do not otherwise want -to enable the members intent.

-
-
-
Parameters
-
    -
  • reaction (Reaction) – The current state of the reaction.

  • -
  • user (Union[Member, User]) – The user who added the reaction.

  • -
-
-
-
- -
-
-discord.on_raw_reaction_add(payload)
-

Called when a message has a reaction added. Unlike on_reaction_add(), this is -called regardless of the state of the internal message cache.

-

This requires Intents.reactions to be enabled.

-
-
Parameters
-

payload (RawReactionActionEvent) – The raw event payload data.

-
-
-
- -
-
-discord.on_reaction_remove(reaction, user)
-

Called when a message has a reaction removed from it. Similar to on_message_edit, -if the message is not found in the internal message cache, then this event -will not be called.

-
-

Note

-

To get the message being reacted, access it via Reaction.message.

-
-

This requires both Intents.reactions and Intents.members to be enabled.

-
-

Note

-

Consider using on_raw_reaction_remove() if you need this and do not want -to enable the members intent.

-
-
-
Parameters
-
    -
  • reaction (Reaction) – The current state of the reaction.

  • -
  • user (Union[Member, User]) – The user who added the reaction.

  • -
-
-
-
- -
-
-discord.on_raw_reaction_remove(payload)
-

Called when a message has a reaction removed. Unlike on_reaction_remove(), this is -called regardless of the state of the internal message cache.

-

This requires Intents.reactions to be enabled.

-
-
Parameters
-

payload (RawReactionActionEvent) – The raw event payload data.

-
-
-
- -
-
-discord.on_reaction_clear(message, reactions)
-

Called when a message has all its reactions removed from it. Similar to on_message_edit(), -if the message is not found in the internal message cache, then this event -will not be called. Consider using on_raw_reaction_clear() instead.

-

This requires Intents.reactions to be enabled.

-
-
Parameters
-
    -
  • message (Message) – The message that had its reactions cleared.

  • -
  • reactions (List[Reaction]) – The reactions that were removed.

  • -
-
-
-
- -
-
-discord.on_raw_reaction_clear(payload)
-

Called when a message has all its reactions removed. Unlike on_reaction_clear(), -this is called regardless of the state of the internal message cache.

-

This requires Intents.reactions to be enabled.

-
-
Parameters
-

payload (RawReactionClearEvent) – The raw event payload data.

-
-
-
- -
-
-discord.on_reaction_clear_emoji(reaction)
-

Called when a message has a specific reaction removed from it. Similar to on_message_edit(), -if the message is not found in the internal message cache, then this event -will not be called. Consider using on_raw_reaction_clear_emoji() instead.

-

This requires Intents.reactions to be enabled.

-
-

New in version 1.3.

-
-
-
Parameters
-

reaction (Reaction) – The reaction that got cleared.

-
-
-
- -
-
-discord.on_raw_reaction_clear_emoji(payload)
-

Called when a message has a specific reaction removed from it. Unlike on_reaction_clear_emoji() this is called -regardless of the state of the internal message cache.

-

This requires Intents.reactions to be enabled.

-
-

New in version 1.3.

-
-
-
Parameters
-

payload (RawReactionClearEmojiEvent) – The raw event payload data.

-
-
-
- -
-
-discord.on_interaction(interaction)
-

Called when an interaction happened.

-

This currently happens due to slash command invocations or components being used.

-
-

Warning

-

This is a low level function that is not generally meant to be used. -If you are working with components, consider using the callbacks associated -with the View instead as it provides a nicer user experience.

-
-
-

New in version 2.0.

-
-
-
Parameters
-

interaction (Interaction) – The interaction data.

-
-
-
- -
-
-discord.on_private_channel_update(before, after)
-

Called whenever a private group DM is updated. e.g. changed name or topic.

-

This requires Intents.messages to be enabled.

-
-
Parameters
-
    -
  • before (GroupChannel) – The updated group channel’s old info.

  • -
  • after (GroupChannel) – The updated group channel’s new info.

  • -
-
-
-
- -
-
-discord.on_private_channel_pins_update(channel, last_pin)
-

Called whenever a message is pinned or unpinned from a private channel.

-
-
Parameters
-
    -
  • channel (abc.PrivateChannel) – The private channel that had its pins updated.

  • -
  • last_pin (Optional[datetime.datetime]) – The latest message that was pinned as an aware datetime in UTC. Could be None.

  • -
-
-
-
- -
-
-discord.on_guild_channel_delete(channel)
-
-discord.on_guild_channel_create(channel)
-

Called whenever a guild channel is deleted or created.

-

Note that you can get the guild from guild.

-

This requires Intents.guilds to be enabled.

-
-
Parameters
-

channel (abc.GuildChannel) – The guild channel that got created or deleted.

-
-
-
- -
-
-discord.on_guild_channel_update(before, after)
-

Called whenever a guild channel is updated. e.g. changed name, topic, permissions.

-

This requires Intents.guilds to be enabled.

-
-
Parameters
-
-
-
-
- -
-
-discord.on_guild_channel_pins_update(channel, last_pin)
-

Called whenever a message is pinned or unpinned from a guild channel.

-

This requires Intents.guilds to be enabled.

-
-
Parameters
-
    -
  • channel (Union[abc.GuildChannel, Thread]) – The guild channel that had its pins updated.

  • -
  • last_pin (Optional[datetime.datetime]) – The latest message that was pinned as an aware datetime in UTC. Could be None.

  • -
-
-
-
- -
-
-discord.on_thread_join(thread)
-

Called whenever a thread is joined or created. Note that from the API’s perspective there is no way to -differentiate between a thread being created or the bot joining a thread.

-

Note that you can get the guild from Thread.guild.

-

This requires Intents.guilds to be enabled.

-
-

New in version 2.0.

-
-
-
Parameters
-

thread (Thread) – The thread that got joined.

-
-
-
- -
-
-discord.on_thread_remove(thread)
-

Called whenever a thread is removed. This is different from a thread being deleted.

-

Note that you can get the guild from Thread.guild.

-

This requires Intents.guilds to be enabled.

-
-

Warning

-

Due to technical limitations, this event might not be called -as soon as one expects. Since the library tracks thread membership -locally, the API only sends updated thread membership status upon being -synced by joining a thread.

-
-
-

New in version 2.0.

-
-
-
Parameters
-

thread (Thread) – The thread that got removed.

-
-
-
- -
-
-discord.on_thread_delete(thread)
-

Called whenever a thread is deleted.

-

Note that you can get the guild from Thread.guild.

-

This requires Intents.guilds to be enabled.

-
-

New in version 2.0.

-
-
-
Parameters
-

thread (Thread) – The thread that got deleted.

-
-
-
- -
-
-discord.on_thread_member_join(member)
-
-discord.on_thread_member_remove(member)
-

Called when a ThreadMember leaves or joins a Thread.

-

You can get the thread a member belongs in by accessing ThreadMember.thread.

-

This requires Intents.members to be enabled.

-
-

New in version 2.0.

-
-
-
Parameters
-

member (ThreadMember) – The member who joined or left.

-
-
-
- -
-
-discord.on_thread_update(before, after)
-

Called whenever a thread is updated.

-

This requires Intents.guilds to be enabled.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • before (Thread) – The updated thread’s old info.

  • -
  • after (Thread) – The updated thread’s new info.

  • -
-
-
-
- -
-
-discord.on_guild_integrations_update(guild)
-

Called whenever an integration is created, modified, or removed from a guild.

-

This requires Intents.integrations to be enabled.

-
-

New in version 1.4.

-
-
-
Parameters
-

guild (Guild) – The guild that had its integrations updated.

-
-
-
- -
-
-discord.on_integration_create(integration)
-

Called when an integration is created.

-

This requires Intents.integrations to be enabled.

-
-

New in version 2.0.

-
-
-
Parameters
-

integration (Integration) – The integration that was created.

-
-
-
- -
-
-discord.on_integration_update(integration)
-

Called when an integration is updated.

-

This requires Intents.integrations to be enabled.

-
-

New in version 2.0.

-
-
-
Parameters
-

integration (Integration) – The integration that was created.

-
-
-
- -
-
-discord.on_raw_integration_delete(payload)
-

Called when an integration is deleted.

-

This requires Intents.integrations to be enabled.

-
-

New in version 2.0.

-
-
-
Parameters
-

payload (RawIntegrationDeleteEvent) – The raw event payload data.

-
-
-
- -
-
-discord.on_webhooks_update(channel)
-

Called whenever a webhook is created, modified, or removed from a guild channel.

-

This requires Intents.webhooks to be enabled.

-
-
Parameters
-

channel (abc.GuildChannel) – The channel that had its webhooks updated.

-
-
-
- -
-
-discord.on_member_join(member)
-
-discord.on_member_remove(member)
-

Called when a Member leaves or joins a Guild.

-

This requires Intents.members to be enabled.

-
-
Parameters
-

member (Member) – The member who joined or left.

-
-
-
- -
-
-discord.on_member_update(before, after)
-

Called when a Member updates their profile.

-

This is called when one or more of the following things change:

-
    -
  • nickname

  • -
  • roles

  • -
  • pending

  • -
-

This requires Intents.members to be enabled.

-
-
Parameters
-
    -
  • before (Member) – The updated member’s old info.

  • -
  • after (Member) – The updated member’s updated info.

  • -
-
-
-
- -
-
-discord.on_presence_update(before, after)
-

Called when a Member updates their presence.

-

This is called when one or more of the following things change:

-
    -
  • status

  • -
  • activity

  • -
-

This requires Intents.presences and Intents.members to be enabled.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • before (Member) – The updated member’s old info.

  • -
  • after (Member) – The updated member’s updated info.

  • -
-
-
-
- -
-
-discord.on_user_update(before, after)
-

Called when a User updates their profile.

-

This is called when one or more of the following things change:

-
    -
  • avatar

  • -
  • username

  • -
  • discriminator

  • -
-

This requires Intents.members to be enabled.

-
-
Parameters
-
    -
  • before (User) – The updated user’s old info.

  • -
  • after (User) – The updated user’s updated info.

  • -
-
-
-
- -
-
-discord.on_guild_join(guild)
-

Called when a Guild is either created by the Client or when the -Client joins a guild.

-

This requires Intents.guilds to be enabled.

-
-
Parameters
-

guild (Guild) – The guild that was joined.

-
-
-
- -
-
-discord.on_guild_remove(guild)
-

Called when a Guild is removed from the Client.

-

This happens through, but not limited to, these circumstances:

-
    -
  • The client got banned.

  • -
  • The client got kicked.

  • -
  • The client left the guild.

  • -
  • The client or the guild owner deleted the guild.

  • -
-

In order for this event to be invoked then the Client must have -been part of the guild to begin with. (i.e. it is part of Client.guilds)

-

This requires Intents.guilds to be enabled.

-
-
Parameters
-

guild (Guild) – The guild that got removed.

-
-
-
- -
-
-discord.on_guild_update(before, after)
-

Called when a Guild updates, for example:

-
    -
  • Changed name

  • -
  • Changed AFK channel

  • -
  • Changed AFK timeout

  • -
  • etc

  • -
-

This requires Intents.guilds to be enabled.

-
-
Parameters
-
    -
  • before (Guild) – The guild prior to being updated.

  • -
  • after (Guild) – The guild after being updated.

  • -
-
-
-
- -
-
-discord.on_guild_role_create(role)
-
-discord.on_guild_role_delete(role)
-

Called when a Guild creates or deletes a new Role.

-

To get the guild it belongs to, use Role.guild.

-

This requires Intents.guilds to be enabled.

-
-
Parameters
-

role (Role) – The role that was created or deleted.

-
-
-
- -
-
-discord.on_guild_role_update(before, after)
-

Called when a Role is changed guild-wide.

-

This requires Intents.guilds to be enabled.

-
-
Parameters
-
    -
  • before (Role) – The updated role’s old info.

  • -
  • after (Role) – The updated role’s updated info.

  • -
-
-
-
- -
-
-discord.on_guild_emojis_update(guild, before, after)
-

Called when a Guild adds or removes Emoji.

-

This requires Intents.emojis_and_stickers to be enabled.

-
-
Parameters
-
    -
  • guild (Guild) – The guild who got their emojis updated.

  • -
  • before (Sequence[Emoji]) – A list of emojis before the update.

  • -
  • after (Sequence[Emoji]) – A list of emojis after the update.

  • -
-
-
-
- -
-
-discord.on_guild_stickers_update(guild, before, after)
-

Called when a Guild updates its stickers.

-

This requires Intents.emojis_and_stickers to be enabled.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • guild (Guild) – The guild who got their stickers updated.

  • -
  • before (Sequence[GuildSticker]) – A list of stickers before the update.

  • -
  • after (Sequence[GuildSticker]) – A list of stickers after the update.

  • -
-
-
-
- -
-
-discord.on_guild_available(guild)
-
-discord.on_guild_unavailable(guild)
-

Called when a guild becomes available or unavailable. The guild must have -existed in the Client.guilds cache.

-

This requires Intents.guilds to be enabled.

-
-
Parameters
-

guild – The Guild that has changed availability.

-
-
-
- -
-
-discord.on_voice_state_update(member, before, after)
-

Called when a Member changes their VoiceState.

-

The following, but not limited to, examples illustrate when this event is called:

-
    -
  • A member joins a voice or stage channel.

  • -
  • A member leaves a voice or stage channel.

  • -
  • A member is muted or deafened by their own accord.

  • -
  • A member is muted or deafened by a guild administrator.

  • -
-

This requires Intents.voice_states to be enabled.

-
-
Parameters
-
    -
  • member (Member) – The member whose voice states changed.

  • -
  • before (VoiceState) – The voice state prior to the changes.

  • -
  • after (VoiceState) – The voice state after the changes.

  • -
-
-
-
- -
-
-discord.on_stage_instance_create(stage_instance)
-
-discord.on_stage_instance_delete(stage_instance)
-

Called when a StageInstance is created or deleted for a StageChannel.

-
-

New in version 2.0.

-
-
-
Parameters
-

stage_instance (StageInstance) – The stage instance that was created or deleted.

-
-
-
- -
-
-discord.on_stage_instance_update(before, after)
-

Called when a StageInstance is updated.

-

The following, but not limited to, examples illustrate when this event is called:

-
    -
  • The topic is changed.

  • -
  • The privacy level is changed.

  • -
-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • before (StageInstance) – The stage instance before the update.

  • -
  • after (StageInstance) – The stage instance after the update.

  • -
-
-
-
- -
-
-discord.on_member_ban(guild, user)
-

Called when user gets banned from a Guild.

-

This requires Intents.bans to be enabled.

-
-
Parameters
-
    -
  • guild (Guild) – The guild the user got banned from.

  • -
  • user (Union[User, Member]) – The user that got banned. -Can be either User or Member depending if -the user was in the guild or not at the time of removal.

  • -
-
-
-
- -
-
-discord.on_member_unban(guild, user)
-

Called when a User gets unbanned from a Guild.

-

This requires Intents.bans to be enabled.

-
-
Parameters
-
    -
  • guild (Guild) – The guild the user got unbanned from.

  • -
  • user (User) – The user that got unbanned.

  • -
-
-
-
- -
-
-discord.on_invite_create(invite)
-

Called when an Invite is created. -You must have the manage_channels permission to receive this.

-
-

New in version 1.3.

-
-
-

Note

-

There is a rare possibility that the Invite.guild and Invite.channel -attributes will be of Object rather than the respective models.

-
-

This requires Intents.invites to be enabled.

-
-
Parameters
-

invite (Invite) – The invite that was created.

-
-
-
- -
-
-discord.on_invite_delete(invite)
-

Called when an Invite is deleted. -You must have the manage_channels permission to receive this.

-
-

New in version 1.3.

-
-
-

Note

-

There is a rare possibility that the Invite.guild and Invite.channel -attributes will be of Object rather than the respective models.

-

Outside of those two attributes, the only other attribute guaranteed to be -filled by the Discord gateway for this event is Invite.code.

-
-

This requires Intents.invites to be enabled.

-
-
Parameters
-

invite (Invite) – The invite that was deleted.

-
-
-
- -
-
-discord.on_group_join(channel, user)
-
-discord.on_group_remove(channel, user)
-

Called when someone joins or leaves a GroupChannel.

-
-
Parameters
-
    -
  • channel (GroupChannel) – The group that the user joined or left.

  • -
  • user (User) – The user that joined or left.

  • -
-
-
-
- -
-
-
-

Utility Functions

-
-
-discord.utils.find(predicate, seq)
-

A helper to return the first element found in the sequence -that meets the predicate. For example:

-
member = discord.utils.find(lambda m: m.name == 'Mighty', channel.guild.members)
-
-
-

would find the first Member whose name is ‘Mighty’ and return it. -If an entry is not found, then None is returned.

-

This is different from filter() due to the fact it stops the moment it finds -a valid entry.

-
-
Parameters
-
    -
  • predicate – A function that returns a boolean-like result.

  • -
  • seq (collections.abc.Iterable) – The iterable to search through.

  • -
-
-
-
- -
-
-discord.utils.get(iterable, **attrs)
-

A helper that returns the first element in the iterable that meets -all the traits passed in attrs. This is an alternative for -find().

-

When multiple attributes are specified, they are checked using -logical AND, not logical OR. Meaning they have to meet every -attribute passed in and not one of them.

-

To have a nested attribute search (i.e. search by x.y) then -pass in x__y as the keyword argument.

-

If nothing is found that matches the attributes passed, then -None is returned.

-

Examples

-

Basic usage:

-
member = discord.utils.get(message.guild.members, name='Foo')
-
-
-

Multiple attribute matching:

-
channel = discord.utils.get(guild.voice_channels, name='Foo', bitrate=64000)
-
-
-

Nested attribute matching:

-
channel = discord.utils.get(client.get_all_channels(), guild__name='Cool', name='general')
-
-
-
-
Parameters
-
    -
  • iterable – An iterable to search through.

  • -
  • **attrs – Keyword arguments that denote attributes to search with.

  • -
-
-
-
- -
-
-discord.utils.snowflake_time(id)
-
-
Parameters
-

id (int) – The snowflake ID.

-
-
Returns
-

An aware datetime in UTC representing the creation time of the snowflake.

-
-
Return type
-

datetime.datetime

-
-
-
- -
-
-discord.utils.oauth_url(client_id, *, permissions=..., guild=..., redirect_uri=..., scopes=..., disable_guild_select=False)
-

A helper function that returns the OAuth2 URL for inviting the bot -into guilds.

-
-
Parameters
-
    -
  • client_id (Union[int, str]) – The client ID for your bot.

  • -
  • permissions (Permissions) – The permissions you’re requesting. If not given then you won’t be requesting any -permissions.

  • -
  • guild (Snowflake) – The guild to pre-select in the authorization screen, if available.

  • -
  • redirect_uri (str) – An optional valid redirect URI.

  • -
  • scopes (Iterable[str]) –

    An optional valid list of scopes. Defaults to ('bot',).

    -
    -

    New in version 1.7.

    -
    -

  • -
  • disable_guild_select (bool) –

    Whether to disallow the user from changing the guild dropdown.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Returns
-

The OAuth2 URL for inviting the bot into guilds.

-
-
Return type
-

str

-
-
-
- -
-
-discord.utils.remove_markdown(text, *, ignore_links=True)
-

A helper function that removes markdown characters.

-
-

New in version 1.7.

-
-
-

Note

-

This function is not markdown aware and may remove meaning from the original text. For example, -if the input contains 10 * 5 then it will be converted into 10  5.

-
-
-
Parameters
-
    -
  • text (str) – The text to remove markdown from.

  • -
  • ignore_links (bool) – Whether to leave links alone when removing markdown. For example, -if a URL in the text contains characters such as _ then it will -be left alone. Defaults to True.

  • -
-
-
Returns
-

The text with the markdown special characters removed.

-
-
Return type
-

str

-
-
-
- -
-
-discord.utils.escape_markdown(text, *, as_needed=False, ignore_links=True)
-

A helper function that escapes Discord’s markdown.

-
-
Parameters
-
    -
  • text (str) – The text to escape markdown from.

  • -
  • as_needed (bool) – Whether to escape the markdown characters as needed. This -means that it does not escape extraneous characters if it’s -not necessary, e.g. **hello** is escaped into \*\*hello** -instead of \*\*hello\*\*. Note however that this can open -you up to some clever syntax abuse. Defaults to False.

  • -
  • ignore_links (bool) – Whether to leave links alone when escaping markdown. For example, -if a URL in the text contains characters such as _ then it will -be left alone. This option is not supported with as_needed. -Defaults to True.

  • -
-
-
Returns
-

The text with the markdown special characters escaped with a slash.

-
-
Return type
-

str

-
-
-
- -
-
-discord.utils.escape_mentions(text)
-

A helper function that escapes everyone, here, role, and user mentions.

-
-

Note

-

This does not include channel mentions.

-
-
-

Note

-

For more granular control over what mentions should be escaped -within messages, refer to the AllowedMentions -class.

-
-
-
Parameters
-

text (str) – The text to escape mentions from.

-
-
Returns
-

The text with the mentions removed.

-
-
Return type
-

str

-
-
-
- -
-
-discord.utils.resolve_invite(invite)
-

Resolves an invite from a Invite, URL or code.

-
-
Parameters
-

invite (Union[Invite, str]) – The invite.

-
-
Returns
-

The invite code.

-
-
Return type
-

str

-
-
-
- -
-
-discord.utils.resolve_template(code)
-

Resolves a template code from a Template, URL or code.

-
-

New in version 1.4.

-
-
-
Parameters
-

code (Union[Template, str]) – The code.

-
-
Returns
-

The template code.

-
-
Return type
-

str

-
-
-
- -
-
-await discord.utils.sleep_until(when, result=None)
-

This function is a coroutine.

-

Sleep until a specified time.

-

If the time supplied is in the past this function will yield instantly.

-
-

New in version 1.3.

-
-
-
Parameters
-
    -
  • when (datetime.datetime) – The timestamp in which to sleep until. If the datetime is naive then -it is assumed to be local time.

  • -
  • result (Any) – If provided is returned to the caller when the coroutine completes.

  • -
-
-
-
- -
-
-discord.utils.utcnow()
-

A helper function to return an aware UTC datetime representing the current time.

-

This should be preferred to datetime.datetime.utcnow() since it is an aware -datetime, compared to the naive datetime in the standard library.

-
-

New in version 2.0.

-
-
-
Returns
-

The current aware datetime in UTC.

-
-
Return type
-

datetime.datetime

-
-
-
- -
-
-discord.utils.format_dt(dt, /, style=None)
-

A helper function to format a datetime.datetime for presentation within Discord.

-

This allows for a locale-independent way of presenting data using Discord specific Markdown.

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Style

Example Output

Description

t

22:57

Short Time

T

22:57:58

Long Time

d

17/05/2016

Short Date

D

17 May 2016

Long Date

f (default)

17 May 2016 22:57

Short Date Time

F

Tuesday, 17 May 2016 22:57

Long Date Time

R

5 years ago

Relative Time

-

Note that the exact output depends on the user’s locale setting in the client. The example output -presented is using the en-GB locale.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • dt (datetime.datetime) – The datetime to format.

  • -
  • style (str) – The style to format the datetime with.

  • -
-
-
Returns
-

The formatted string.

-
-
Return type
-

str

-
-
-
- -
-
-discord.utils.as_chunks(iterator, max_size)
-

A helper function that collects an iterator into chunks of a given size.

-
-

New in version 2.0.

-
-
-
Parameters
-
-
-
-
-

Warning

-

The last chunk collected may not be as large as max_size.

-
-
-
Returns
-

A new iterator which yields chunks of a given size.

-
-
Return type
-

Union[Iterator, AsyncIterator]

-
-
-
- -
-
-

Enumerations

-

The API provides some enumerations for certain types of strings to avoid the API -from being stringly typed in case the strings change in the future.

-

All enumerations are subclasses of an internal class which mimics the behaviour -of enum.Enum.

-
-
-class discord.ChannelType
-

Specifies the type of channel.

-
-
-text
-

A text channel.

-
- -
-
-voice
-

A voice channel.

-
- -
-
-private
-

A private text channel. Also called a direct message.

-
- -
-
-group
-

A private group text channel.

-
- -
-
-category
-

A category channel.

-
- -
-
-news
-

A guild news channel.

-
- -
-
-store
-

A guild store channel.

-
- -
-
-stage_voice
-

A guild stage voice channel.

-
-

New in version 1.7.

-
-
- -
-
-news_thread
-

A news thread

-
-

New in version 2.0.

-
-
- -
-
-public_thread
-

A public thread

-
-

New in version 2.0.

-
-
- -
-
-private_thread
-

A private thread

-
-

New in version 2.0.

-
-
- -
- -
-
-class discord.MessageType
-

Specifies the type of Message. This is used to denote if a message -is to be interpreted as a system message or a regular message.

-
-
-
-x == y
-

Checks if two messages are equal.

-
- -
-
-x != y
-

Checks if two messages are not equal.

-
- -
-
-
-default
-

The default message type. This is the same as regular messages.

-
- -
-
-recipient_add
-

The system message when a user is added to a group private -message or a thread.

-
- -
-
-recipient_remove
-

The system message when a user is removed from a group private -message or a thread.

-
- -
-
-call
-

The system message denoting call state, e.g. missed call, started call, -etc.

-
- -
-
-channel_name_change
-

The system message denoting that a channel’s name has been changed.

-
- -
-
-channel_icon_change
-

The system message denoting that a channel’s icon has been changed.

-
- -
-
-pins_add
-

The system message denoting that a pinned message has been added to a channel.

-
- -
-
-new_member
-

The system message denoting that a new member has joined a Guild.

-
- -
-
-premium_guild_subscription
-

The system message denoting that a member has “nitro boosted” a guild.

-
- -
-
-premium_guild_tier_1
-

The system message denoting that a member has “nitro boosted” a guild -and it achieved level 1.

-
- -
-
-premium_guild_tier_2
-

The system message denoting that a member has “nitro boosted” a guild -and it achieved level 2.

-
- -
-
-premium_guild_tier_3
-

The system message denoting that a member has “nitro boosted” a guild -and it achieved level 3.

-
- -
-
-channel_follow_add
-

The system message denoting that an announcement channel has been followed.

-
-

New in version 1.3.

-
-
- -
-
-guild_stream
-

The system message denoting that a member is streaming in the guild.

-
-

New in version 1.7.

-
-
- -
-
-guild_discovery_disqualified
-

The system message denoting that the guild is no longer eligible for Server -Discovery.

-
-

New in version 1.7.

-
-
- -
-
-guild_discovery_requalified
-

The system message denoting that the guild has become eligible again for Server -Discovery.

-
-

New in version 1.7.

-
-
- -
-
-guild_discovery_grace_period_initial_warning
-

The system message denoting that the guild has failed to meet the Server -Discovery requirements for one week.

-
-

New in version 1.7.

-
-
- -
-
-guild_discovery_grace_period_final_warning
-

The system message denoting that the guild has failed to meet the Server -Discovery requirements for 3 weeks in a row.

-
-

New in version 1.7.

-
-
- -
-
-thread_created
-

The system message denoting that a thread has been created. This is only -sent if the thread has been created from an older message. The period of time -required for a message to be considered old cannot be relied upon and is up to -Discord.

-
-

New in version 2.0.

-
-
- -
-
-reply
-

The system message denoting that the author is replying to a message.

-
-

New in version 2.0.

-
-
- -
-
-application_command
-

The system message denoting that an application (or “slash”) command was executed.

-
-

New in version 2.0.

-
-
- -
-
-guild_invite_reminder
-

The system message sent as a reminder to invite people to the guild.

-
-

New in version 2.0.

-
-
- -
-
-thread_starter_message
-

The system message denoting the message in the thread that is the one that started the -thread’s conversation topic.

-
-

New in version 2.0.

-
-
- -
- -
-
-class discord.UserFlags
-

Represents Discord User flags.

-
-
-staff
-

The user is a Discord Employee.

-
- -
-
-partner
-

The user is a Discord Partner.

-
- -
-
-hypesquad
-

The user is a HypeSquad Events member.

-
- -
-
-bug_hunter
-

The user is a Bug Hunter.

-
- -
-
-mfa_sms
-

The user has SMS recovery for Multi Factor Authentication enabled.

-
- -
-
-premium_promo_dismissed
-

The user has dismissed the Discord Nitro promotion.

-
- -
-
-hypesquad_bravery
-

The user is a HypeSquad Bravery member.

-
- -
-
-hypesquad_brilliance
-

The user is a HypeSquad Brilliance member.

-
- -
-
-hypesquad_balance
-

The user is a HypeSquad Balance member.

-
- -
-
-early_supporter
-

The user is an Early Supporter.

-
- -
-
-team_user
-

The user is a Team User.

-
- -
-
-system
-

The user is a system user (i.e. represents Discord officially).

-
- -
-
-has_unread_urgent_messages
-

The user has an unread system message.

-
- -
-
-bug_hunter_level_2
-

The user is a Bug Hunter Level 2.

-
- -
-
-verified_bot
-

The user is a Verified Bot.

-
- -
-
-verified_bot_developer
-

The user is an Early Verified Bot Developer.

-
- -
-
-discord_certified_moderator
-

The user is a Discord Certified Moderator.

-
- -
- -
-
-class discord.ActivityType
-

Specifies the type of Activity. This is used to check how to -interpret the activity itself.

-
-
-unknown
-

An unknown activity type. This should generally not happen.

-
- -
-
-playing
-

A “Playing” activity type.

-
- -
-
-streaming
-

A “Streaming” activity type.

-
- -
-
-listening
-

A “Listening” activity type.

-
- -
-
-watching
-

A “Watching” activity type.

-
- -
-
-custom
-

A custom activity type.

-
- -
-
-competing
-

A competing activity type.

-
-

New in version 1.5.

-
-
- -
- -
-
-class discord.InteractionType
-

Specifies the type of Interaction.

-
-

New in version 2.0.

-
-
-
-ping
-

Represents Discord pinging to see if the interaction response server is alive.

-
- -
-
-application_command
-

Represents a slash command interaction.

-
- -
-
-component
-

Represents a component based interaction, i.e. using the Discord Bot UI Kit.

-
- -
- -
-
-class discord.InteractionResponseType
-

Specifies the response type for the interaction.

-
-

New in version 2.0.

-
-
-
-pong
-

Pongs the interaction when given a ping.

-

See also InteractionResponse.pong()

-
- -
-
-channel_message
-

Respond to the interaction with a message.

-

See also InteractionResponse.send_message()

-
- -
-
-deferred_channel_message
-

Responds to the interaction with a message at a later time.

-

See also InteractionResponse.defer()

-
- -
-
-deferred_message_update
-

Acknowledges the component interaction with a promise that -the message will update later (though there is no need to actually update the message).

-

See also InteractionResponse.defer()

-
- -
-
-message_update
-

Responds to the interaction by editing the message.

-

See also InteractionResponse.edit_message()

-
- -
- -
-
-class discord.ComponentType
-

Represents the component type of a component.

-
-

New in version 2.0.

-
-
-
-action_row
-

Represents the group component which holds different components in a row.

-
- -
-
-button
-

Represents a button component.

-
- -
-
-select
-

Represents a select component.

-
- -
- -
-
-class discord.ButtonStyle
-

Represents the style of the button component.

-
-

New in version 2.0.

-
-
-
-primary
-

Represents a blurple button for the primary action.

-
- -
-
-secondary
-

Represents a grey button for the secondary action.

-
- -
-
-success
-

Represents a green button for a successful action.

-
- -
-
-danger
-

Represents a red button for a dangerous action.

-
- -
- -

Represents a link button.

-
- -
-
-blurple
-

An alias for primary.

-
- -
-
-grey
-

An alias for secondary.

-
- -
-
-gray
-

An alias for secondary.

-
- -
-
-green
-

An alias for success.

-
- -
-
-red
-

An alias for danger.

-
- -
-
-url
-

An alias for link.

-
- -
- -
-
-class discord.VoiceRegion
-

Specifies the region a voice server belongs to.

-
-
-amsterdam
-

The Amsterdam region.

-
- -
-
-brazil
-

The Brazil region.

-
- -
-
-dubai
-

The Dubai region.

-
-

New in version 1.3.

-
-
- -
-
-eu_central
-

The EU Central region.

-
- -
-
-eu_west
-

The EU West region.

-
- -
-
-europe
-

The Europe region.

-
-

New in version 1.3.

-
-
- -
-
-frankfurt
-

The Frankfurt region.

-
- -
-
-hongkong
-

The Hong Kong region.

-
- -
-
-india
-

The India region.

-
-

New in version 1.2.

-
-
- -
-
-japan
-

The Japan region.

-
- -
-
-london
-

The London region.

-
- -
-
-russia
-

The Russia region.

-
- -
-
-singapore
-

The Singapore region.

-
- -
-
-southafrica
-

The South Africa region.

-
- -
-
-south_korea
-

The South Korea region.

-
- -
-
-sydney
-

The Sydney region.

-
- -
-
-us_central
-

The US Central region.

-
- -
-
-us_east
-

The US East region.

-
- -
-
-us_south
-

The US South region.

-
- -
-
-us_west
-

The US West region.

-
- -
-
-vip_amsterdam
-

The Amsterdam region for VIP guilds.

-
- -
-
-vip_us_east
-

The US East region for VIP guilds.

-
- -
-
-vip_us_west
-

The US West region for VIP guilds.

-
- -
- -
-
-class discord.VerificationLevel
-

Specifies a Guild's verification level, which is the criteria in -which a member must meet before being able to send messages to the guild.

-
-
-

New in version 2.0.

-
-
-
-x == y
-

Checks if two verification levels are equal.

-
- -
-
-x != y
-

Checks if two verification levels are not equal.

-
- -
-
-x > y
-

Checks if a verification level is higher than another.

-
- -
-
-x < y
-

Checks if a verification level is lower than another.

-
- -
-
-x >= y
-

Checks if a verification level is higher or equal to another.

-
- -
-
-x <= y
-

Checks if a verification level is lower or equal to another.

-
- -
-
-
-none
-

No criteria set.

-
- -
-
-low
-

Member must have a verified email on their Discord account.

-
- -
-
-medium
-

Member must have a verified email and be registered on Discord for more -than five minutes.

-
- -
-
-high
-

Member must have a verified email, be registered on Discord for more -than five minutes, and be a member of the guild itself for more than -ten minutes.

-
- -
-
-highest
-

Member must have a verified phone on their Discord account.

-
- -
- -
-
-class discord.NotificationLevel
-

Specifies whether a Guild has notifications on for all messages or mentions only by default.

-
-
-

New in version 2.0.

-
-
-
-x == y
-

Checks if two notification levels are equal.

-
- -
-
-x != y
-

Checks if two notification levels are not equal.

-
- -
-
-x > y
-

Checks if a notification level is higher than another.

-
- -
-
-x < y
-

Checks if a notification level is lower than another.

-
- -
-
-x >= y
-

Checks if a notification level is higher or equal to another.

-
- -
-
-x <= y
-

Checks if a notification level is lower or equal to another.

-
- -
-
-
-all_messages
-

Members receive notifications for every message regardless of them being mentioned.

-
- -
-
-only_mentions
-

Members receive notifications for messages they are mentioned in.

-
- -
- -
-
-class discord.ContentFilter
-

Specifies a Guild's explicit content filter, which is the machine -learning algorithms that Discord uses to detect if an image contains -pornography or otherwise explicit content.

-
-
-

New in version 2.0.

-
-
-
-x == y
-

Checks if two content filter levels are equal.

-
- -
-
-x != y
-

Checks if two content filter levels are not equal.

-
- -
-
-x > y
-

Checks if a content filter level is higher than another.

-
- -
-
-x < y
-

Checks if a content filter level is lower than another.

-
- -
-
-x >= y
-

Checks if a content filter level is higher or equal to another.

-
- -
-
-x <= y
-

Checks if a content filter level is lower or equal to another.

-
- -
-
-
-disabled
-

The guild does not have the content filter enabled.

-
- -
-
-no_role
-

The guild has the content filter enabled for members without a role.

-
- -
-
-all_members
-

The guild has the content filter enabled for every member.

-
- -
- -
-
-class discord.Status
-

Specifies a Member ‘s status.

-
-
-online
-

The member is online.

-
- -
-
-offline
-

The member is offline.

-
- -
-
-idle
-

The member is idle.

-
- -
-
-dnd
-

The member is “Do Not Disturb”.

-
- -
-
-do_not_disturb
-

An alias for dnd.

-
- -
-
-invisible
-

The member is “invisible”. In reality, this is only used in sending -a presence a la Client.change_presence(). When you receive a -user’s presence this will be offline instead.

-
- -
- -
-
-class discord.AuditLogAction
-

Represents the type of action being done for a AuditLogEntry, -which is retrievable via Guild.audit_logs().

-
-
-guild_update
-

The guild has updated. Things that trigger this include:

-
    -
  • Changing the guild vanity URL

  • -
  • Changing the guild invite splash

  • -
  • Changing the guild AFK channel or timeout

  • -
  • Changing the guild voice server region

  • -
  • Changing the guild icon, banner, or discovery splash

  • -
  • Changing the guild moderation settings

  • -
  • Changing things related to the guild widget

  • -
-

When this is the action, the type of target is -the Guild.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-channel_create
-

A new channel was created.

-

When this is the action, the type of target is -either a abc.GuildChannel or Object with an ID.

-

A more filled out object in the Object case can be found -by using after.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-channel_update
-

A channel was updated. Things that trigger this include:

-
    -
  • The channel name or topic was changed

  • -
  • The channel bitrate was changed

  • -
-

When this is the action, the type of target is -the abc.GuildChannel or Object with an ID.

-

A more filled out object in the Object case can be found -by using after or before.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-channel_delete
-

A channel was deleted.

-

When this is the action, the type of target is -an Object with an ID.

-

A more filled out object can be found by using the -before object.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-overwrite_create
-

A channel permission overwrite was created.

-

When this is the action, the type of target is -the abc.GuildChannel or Object with an ID.

-

When this is the action, the type of extra is -either a Role or Member. If the object is not found -then it is a Object with an ID being filled, a name, and a -type attribute set to either 'role' or 'member' to help -dictate what type of ID it is.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-overwrite_update
-

A channel permission overwrite was changed, this is typically -when the permission values change.

-

See overwrite_create for more information on how the -target and extra fields -are set.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-overwrite_delete
-

A channel permission overwrite was deleted.

-

See overwrite_create for more information on how the -target and extra fields -are set.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-kick
-

A member was kicked.

-

When this is the action, the type of target is -the User who got kicked.

-

When this is the action, changes is empty.

-
- -
-
-member_prune
-

A member prune was triggered.

-

When this is the action, the type of target is -set to None.

-

When this is the action, the type of extra is -set to an unspecified proxy object with two attributes:

-
    -
  • delete_members_days: An integer specifying how far the prune was.

  • -
  • members_removed: An integer specifying how many members were removed.

  • -
-

When this is the action, changes is empty.

-
- -
-
-ban
-

A member was banned.

-

When this is the action, the type of target is -the User who got banned.

-

When this is the action, changes is empty.

-
- -
-
-unban
-

A member was unbanned.

-

When this is the action, the type of target is -the User who got unbanned.

-

When this is the action, changes is empty.

-
- -
-
-member_update
-

A member has updated. This triggers in the following situations:

-
    -
  • A nickname was changed

  • -
  • They were server muted or deafened (or it was undo’d)

  • -
-

When this is the action, the type of target is -the Member or User who got updated.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-member_role_update
-

A member’s role has been updated. This triggers when a member -either gains a role or loses a role.

-

When this is the action, the type of target is -the Member or User who got the role.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-member_move
-

A member’s voice channel has been updated. This triggers when a -member is moved to a different voice channel.

-

When this is the action, the type of extra is -set to an unspecified proxy object with two attributes:

-
    -
  • channel: A TextChannel or Object with the channel ID where the members were moved.

  • -
  • count: An integer specifying how many members were moved.

  • -
-
-

New in version 1.3.

-
-
- -
-
-member_disconnect
-

A member’s voice state has changed. This triggers when a -member is force disconnected from voice.

-

When this is the action, the type of extra is -set to an unspecified proxy object with one attribute:

-
    -
  • count: An integer specifying how many members were disconnected.

  • -
-
-

New in version 1.3.

-
-
- -
-
-bot_add
-

A bot was added to the guild.

-

When this is the action, the type of target is -the Member or User which was added to the guild.

-
-

New in version 1.3.

-
-
- -
-
-role_create
-

A new role was created.

-

When this is the action, the type of target is -the Role or a Object with the ID.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-role_update
-

A role was updated. This triggers in the following situations:

-
    -
  • The name has changed

  • -
  • The permissions have changed

  • -
  • The colour has changed

  • -
  • Its hoist/mentionable state has changed

  • -
-

When this is the action, the type of target is -the Role or a Object with the ID.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-role_delete
-

A role was deleted.

-

When this is the action, the type of target is -the Role or a Object with the ID.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-invite_create
-

An invite was created.

-

When this is the action, the type of target is -the Invite that was created.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-invite_update
-

An invite was updated.

-

When this is the action, the type of target is -the Invite that was updated.

-
- -
-
-invite_delete
-

An invite was deleted.

-

When this is the action, the type of target is -the Invite that was deleted.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-webhook_create
-

A webhook was created.

-

When this is the action, the type of target is -the Object with the webhook ID.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-webhook_update
-

A webhook was updated. This trigger in the following situations:

-
    -
  • The webhook name changed

  • -
  • The webhook channel changed

  • -
-

When this is the action, the type of target is -the Object with the webhook ID.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-webhook_delete
-

A webhook was deleted.

-

When this is the action, the type of target is -the Object with the webhook ID.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-emoji_create
-

An emoji was created.

-

When this is the action, the type of target is -the Emoji or Object with the emoji ID.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-emoji_update
-

An emoji was updated. This triggers when the name has changed.

-

When this is the action, the type of target is -the Emoji or Object with the emoji ID.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-emoji_delete
-

An emoji was deleted.

-

When this is the action, the type of target is -the Object with the emoji ID.

-

Possible attributes for AuditLogDiff:

- -
- -
-
-message_delete
-

A message was deleted by a moderator. Note that this -only triggers if the message was deleted by someone other than the author.

-

When this is the action, the type of target is -the Member or User who had their message deleted.

-

When this is the action, the type of extra is -set to an unspecified proxy object with two attributes:

-
    -
  • count: An integer specifying how many messages were deleted.

  • -
  • channel: A TextChannel or Object with the channel ID where the message got deleted.

  • -
-
- -
-
-message_bulk_delete
-

Messages were bulk deleted by a moderator.

-

When this is the action, the type of target is -the TextChannel or Object with the ID of the channel that was purged.

-

When this is the action, the type of extra is -set to an unspecified proxy object with one attribute:

-
    -
  • count: An integer specifying how many messages were deleted.

  • -
-
-

New in version 1.3.

-
-
- -
-
-message_pin
-

A message was pinned in a channel.

-

When this is the action, the type of target is -the Member or User who had their message pinned.

-

When this is the action, the type of extra is -set to an unspecified proxy object with two attributes:

-
    -
  • channel: A TextChannel or Object with the channel ID where the message was pinned.

  • -
  • message_id: the ID of the message which was pinned.

  • -
-
-

New in version 1.3.

-
-
- -
-
-message_unpin
-

A message was unpinned in a channel.

-

When this is the action, the type of target is -the Member or User who had their message unpinned.

-

When this is the action, the type of extra is -set to an unspecified proxy object with two attributes:

-
    -
  • channel: A TextChannel or Object with the channel ID where the message was unpinned.

  • -
  • message_id: the ID of the message which was unpinned.

  • -
-
-

New in version 1.3.

-
-
- -
-
-integration_create
-

A guild integration was created.

-

When this is the action, the type of target is -the Object with the integration ID of the integration which was created.

-
-

New in version 1.3.

-
-
- -
-
-integration_update
-

A guild integration was updated.

-

When this is the action, the type of target is -the Object with the integration ID of the integration which was updated.

-
-

New in version 1.3.

-
-
- -
-
-integration_delete
-

A guild integration was deleted.

-

When this is the action, the type of target is -the Object with the integration ID of the integration which was deleted.

-
-

New in version 1.3.

-
-
- -
-
-stage_instance_create
-

A stage instance was started.

-

When this is the action, the type of target is -the StageInstance or Object with the ID of the stage -instance which was created.

-

Possible attributes for AuditLogDiff:

- -
-

New in version 2.0.

-
-
- -
-
-stage_instance_update
-

A stage instance was updated.

-

When this is the action, the type of target is -the StageInstance or Object with the ID of the stage -instance which was updated.

-

Possible attributes for AuditLogDiff:

- -
-

New in version 2.0.

-
-
- -
-
-stage_instance_delete
-

A stage instance was ended.

-
-

New in version 2.0.

-
-
- -
-
-sticker_create
-

A sticker was created.

-

When this is the action, the type of target is -the GuildSticker or Object with the ID of the sticker -which was updated.

-

Possible attributes for AuditLogDiff:

- -
-

New in version 2.0.

-
-
- -
-
-sticker_update
-

A sticker was updated.

-

When this is the action, the type of target is -the GuildSticker or Object with the ID of the sticker -which was updated.

-

Possible attributes for AuditLogDiff:

- -
-

New in version 2.0.

-
-
- -
-
-sticker_delete
-

A sticker was deleted.

-

When this is the action, the type of target is -the GuildSticker or Object with the ID of the sticker -which was updated.

-

Possible attributes for AuditLogDiff:

- -
-

New in version 2.0.

-
-
- -
-
-thread_create
-

A thread was created.

-

When this is the action, the type of target is -the Thread or Object with the ID of the thread which -was created.

-

Possible attributes for AuditLogDiff:

- -
-

New in version 2.0.

-
-
- -
-
-thread_update
-

A thread was updated.

-

When this is the action, the type of target is -the Thread or Object with the ID of the thread which -was updated.

-

Possible attributes for AuditLogDiff:

- -
-

New in version 2.0.

-
-
- -
-
-thread_delete
-

A thread was deleted.

-

When this is the action, the type of target is -the Thread or Object with the ID of the thread which -was deleted.

-

Possible attributes for AuditLogDiff:

- -
-

New in version 2.0.

-
-
- -
- -
-
-class discord.AuditLogActionCategory
-

Represents the category that the AuditLogAction belongs to.

-

This can be retrieved via AuditLogEntry.category.

-
-
-create
-

The action is the creation of something.

-
- -
-
-delete
-

The action is the deletion of something.

-
- -
-
-update
-

The action is the update of something.

-
- -
- -
-
-class discord.TeamMembershipState
-

Represents the membership state of a team member retrieved through Client.application_info().

-
-

New in version 1.3.

-
-
-
-invited
-

Represents an invited member.

-
- -
-
-accepted
-

Represents a member currently in the team.

-
- -
- -
-
-class discord.WebhookType
-

Represents the type of webhook that can be received.

-
-

New in version 1.3.

-
-
-
-incoming
-

Represents a webhook that can post messages to channels with a token.

-
- -
-
-channel_follower
-

Represents a webhook that is internally managed by Discord, used for following channels.

-
- -
-
-application
-

Represents a webhook that is used for interactions or applications.

-
-

New in version 2.0.

-
-
- -
- -
-
-class discord.ExpireBehaviour
-

Represents the behaviour the Integration should perform -when a user’s subscription has finished.

-

There is an alias for this called ExpireBehavior.

-
-

New in version 1.4.

-
-
-
-remove_role
-

This will remove the StreamIntegration.role from the user -when their subscription is finished.

-
- -
-
-kick
-

This will kick the user when their subscription is finished.

-
- -
- -
-
-class discord.DefaultAvatar
-

Represents the default avatar of a Discord User

-
-
-blurple
-

Represents the default avatar with the color blurple. -See also Colour.blurple

-
- -
-
-grey
-

Represents the default avatar with the color grey. -See also Colour.greyple

-
- -
-
-gray
-

An alias for grey.

-
- -
-
-green
-

Represents the default avatar with the color green. -See also Colour.green

-
- -
-
-orange
-

Represents the default avatar with the color orange. -See also Colour.orange

-
- -
-
-red
-

Represents the default avatar with the color red. -See also Colour.red

-
- -
- -
-
-class discord.StickerType
-

Represents the type of sticker.

-
-

New in version 2.0.

-
-
-
-standard
-

Represents a standard sticker that all Nitro users can use.

-
- -
-
-guild
-

Represents a custom sticker created in a guild.

-
- -
- -
-
-class discord.StickerFormatType
-

Represents the type of sticker images.

-
-

New in version 1.6.

-
-
-
-png
-

Represents a sticker with a png image.

-
- -
-
-apng
-

Represents a sticker with an apng image.

-
- -
-
-lottie
-

Represents a sticker with a lottie image.

-
- -
- -
-
-class discord.InviteTarget
-

Represents the invite type for voice channel invites.

-
-

New in version 2.0.

-
-
-
-unknown
-

The invite doesn’t target anyone or anything.

-
- -
-
-stream
-

A stream invite that targets a user.

-
- -
-
-embedded_application
-

A stream invite that targets an embedded application.

-
- -
- -
-
-class discord.VideoQualityMode
-

Represents the camera video quality mode for voice channel participants.

-
-

New in version 2.0.

-
-
-
-auto
-

Represents auto camera video quality.

-
- -
-
-full
-

Represents full camera video quality.

-
- -
- -
-
-class discord.StagePrivacyLevel
-

Represents a stage instance’s privacy level.

-
-

New in version 2.0.

-
-
-
-public
-

The stage instance can be joined by external users.

-
- -
-
-closed
-

The stage instance can only be joined by members of the guild.

-
- -
-
-guild_only
-

Alias for closed

-
- -
- -
-
-class discord.NSFWLevel
-

Represents the NSFW level of a guild.

-
-

New in version 2.0.

-
-
-
-
-x == y
-

Checks if two NSFW levels are equal.

-
- -
-
-x != y
-

Checks if two NSFW levels are not equal.

-
- -
-
-x > y
-

Checks if a NSFW level is higher than another.

-
- -
-
-x < y
-

Checks if a NSFW level is lower than another.

-
- -
-
-x >= y
-

Checks if a NSFW level is higher or equal to another.

-
- -
-
-x <= y
-

Checks if a NSFW level is lower or equal to another.

-
- -
-
-
-default
-

The guild has not been categorised yet.

-
- -
-
-explicit
-

The guild contains NSFW content.

-
- -
-
-safe
-

The guild does not contain any NSFW content.

-
- -
-
-age_restricted
-

The guild may contain NSFW content.

-
- -
- -
-
-

Async Iterator

-

Some API functions return an “async iterator”. An async iterator is something that is -capable of being used in an async for statement.

-

These async iterators can be used as follows:

-
async for elem in channel.history():
-    # do stuff with elem here
-
-
-

Certain utilities make working with async iterators easier, detailed below.

-
-
-class discord.AsyncIterator
-

Represents the “AsyncIterator” concept. Note that no such class exists, -it is purely abstract.

-
-
-
-async for x in y
-

Iterates over the contents of the async iterator.

-
- -
-
-
-await next()
-

This function is a coroutine.

-

Advances the iterator by one, if possible. If no more items are found -then this raises NoMoreItems.

-
- -
-
-await get(**attrs)
-

This function is a coroutine.

-

Similar to utils.get() except run over the async iterator.

-

Getting the last message by a user named ‘Dave’ or None:

-
msg = await channel.history().get(author__name='Dave')
-
-
-
- -
-
-await find(predicate)
-

This function is a coroutine.

-

Similar to utils.find() except run over the async iterator.

-

Unlike utils.find(), the predicate provided can be a -coroutine.

-

Getting the last audit log with a reason or None:

-
def predicate(event):
-    return event.reason is not None
-
-event = await guild.audit_logs().find(predicate)
-
-
-
-
Parameters
-

predicate – The predicate to use. Could be a coroutine.

-
-
Returns
-

The first element that returns True for the predicate or None.

-
-
-
- -
-
-await flatten()
-

This function is a coroutine.

-

Flattens the async iterator into a list with all the elements.

-
-
Returns
-

A list of every element in the async iterator.

-
-
Return type
-

list

-
-
-
- -
-
-chunk(max_size)
-

Collects items into chunks of up to a given maximum size. -Another AsyncIterator is returned which collects items into -lists of a given size. The maximum chunk size must be a positive integer.

-
-

New in version 1.6.

-
-

Collecting groups of users:

-
async for leader, *users in reaction.users().chunk(3):
-    ...
-
-
-
-

Warning

-

The last chunk collected may not be as large as max_size.

-
-
-
Parameters
-

max_size – The size of individual chunks.

-
-
Return type
-

AsyncIterator

-
-
-
- -
-
-map(func)
-

This is similar to the built-in map function. Another -AsyncIterator is returned that executes the function on -every element it is iterating over. This function can either be a -regular function or a coroutine.

-

Creating a content iterator:

-
def transform(message):
-    return message.content
-
-async for content in channel.history().map(transform):
-    message_length = len(content)
-
-
-
-
Parameters
-

func – The function to call on every element. Could be a coroutine.

-
-
Return type
-

AsyncIterator

-
-
-
- -
-
-filter(predicate)
-

This is similar to the built-in filter function. Another -AsyncIterator is returned that filters over the original -async iterator. This predicate can be a regular function or a coroutine.

-

Getting messages by non-bot accounts:

-
def predicate(message):
-    return not message.author.bot
-
-async for elem in channel.history().filter(predicate):
-    ...
-
-
-
-
Parameters
-

predicate – The predicate to call on every element. Could be a coroutine.

-
-
Return type
-

AsyncIterator

-
-
-
- -
- -
-
-

Audit Log Data

-

Working with Guild.audit_logs() is a complicated process with a lot of machinery -involved. The library attempts to make it easy to use and friendly. In order to accomplish -this goal, it must make use of a couple of data classes that aid in this goal.

-
-

AuditLogEntry

-
-
-class discord.AuditLogEntry(*, users, data, guild)
-

Represents an Audit Log entry.

-

You retrieve these via Guild.audit_logs().

-
-
-
-x == y
-

Checks if two entries are equal.

-
- -
-
-x != y
-

Checks if two entries are not equal.

-
- -
-
-hash(x)
-

Returns the entry’s hash.

-
- -
-
-int(x)
-

Returns the entry’s ID.

-
- -
-
-

Changed in version 1.7: Audit log entries are now comparable and hashable.

-
-
-
-action
-

The action that was done.

-
-
Type
-

AuditLogAction

-
-
-
- -
-
-user
-

The user who initiated this action. Usually a Member, unless gone -then it’s a User.

-
-
Type
-

abc.User

-
-
-
- -
-
-id
-

The entry ID.

-
-
Type
-

int

-
-
-
- -
-
-target
-

The target that got changed. The exact type of this depends on -the action being done.

-
-
Type
-

Any

-
-
-
- -
-
-reason
-

The reason this action was done.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-extra
-

Extra information that this entry has that might be useful. -For most actions, this is None. However in some cases it -contains extra information. See AuditLogAction for -which actions have this field filled out.

-
-
Type
-

Any

-
-
-
- -
-
-created_at
-

Returns the entry’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-category
-

The category of the action, if applicable.

-
-
Type
-

Optional[AuditLogActionCategory]

-
-
-
- -
-
-changes
-

The list of changes this entry has.

-
-
Type
-

AuditLogChanges

-
-
-
- -
-
-before
-

The target’s prior state.

-
-
Type
-

AuditLogDiff

-
-
-
- -
-
-after
-

The target’s subsequent state.

-
-
Type
-

AuditLogDiff

-
-
-
- -
- -
-
-

AuditLogChanges

-
- -Attributes -
-
-class discord.AuditLogChanges
-

An audit log change set.

-
-
-before
-

The old value. The attribute has the type of AuditLogDiff.

-

Depending on the AuditLogActionCategory retrieved by -category, the data retrieved by this -attribute differs:

-
---- - - - - - - - - - - - - - - - - - -

Category

Description

create

All attributes are set to None.

delete

All attributes are set the value before deletion.

update

All attributes are set the value before updating.

None

No attributes are set.

-
- -
-
-after
-

The new value. The attribute has the type of AuditLogDiff.

-

Depending on the AuditLogActionCategory retrieved by -category, the data retrieved by this -attribute differs:

-
---- - - - - - - - - - - - - - - - - - -

Category

Description

create

All attributes are set to the created value

delete

All attributes are set to None

update

All attributes are set the value after updating.

None

No attributes are set.

-
- -
- -
-
-

AuditLogDiff

-
-
-class discord.AuditLogDiff
-

Represents an audit log “change” object. A change object has dynamic -attributes that depend on the type of action being done. Certain actions -map to certain attributes being set.

-

Note that accessing an attribute that does not match the specified action -will lead to an attribute error.

-

To get a list of attributes that have been set, you can iterate over -them. To see a list of all possible attributes that could be set based -on the action being done, check the documentation for AuditLogAction, -otherwise check the documentation below for all attributes that are possible.

-
-
-
-iter(diff)
-

Returns an iterator over (attribute, value) tuple of this diff.

-
- -
-
-
-name
-

A name of something.

-
-
Type
-

str

-
-
-
- -
-
-icon
-

A guild’s icon. See also Guild.icon.

-
-
Type
-

Asset

-
-
-
- -
-
-splash
-

The guild’s invite splash. See also Guild.splash.

-
-
Type
-

Asset

-
-
-
- -
-
-discovery_splash
-

The guild’s discovery splash. See also Guild.discovery_splash.

-
-
Type
-

Asset

-
-
-
- -
-
-banner
-

The guild’s banner. See also Guild.banner.

-
-
Type
-

Asset

-
-
-
- -
-
-owner
-

The guild’s owner. See also Guild.owner

-
-
Type
-

Union[Member, User]

-
-
-
- -
-
-region
-

The guild’s voice region. See also Guild.region.

-
-
Type
-

VoiceRegion

-
-
-
- -
-
-afk_channel
-

The guild’s AFK channel.

-

If this could not be found, then it falls back to a Object -with the ID being set.

-

See Guild.afk_channel.

-
-
Type
-

Union[VoiceChannel, Object]

-
-
-
- -
-
-system_channel
-

The guild’s system channel.

-

If this could not be found, then it falls back to a Object -with the ID being set.

-

See Guild.system_channel.

-
-
Type
-

Union[TextChannel, Object]

-
-
-
- -
-
-rules_channel
-

The guild’s rules channel.

-

If this could not be found then it falls back to a Object -with the ID being set.

-

See Guild.rules_channel.

-
-
Type
-

Union[TextChannel, Object]

-
-
-
- -
-
-public_updates_channel
-

The guild’s public updates channel.

-

If this could not be found then it falls back to a Object -with the ID being set.

-

See Guild.public_updates_channel.

-
-
Type
-

Union[TextChannel, Object]

-
-
-
- -
-
-afk_timeout
-

The guild’s AFK timeout. See Guild.afk_timeout.

-
-
Type
-

int

-
-
-
- -
-
-mfa_level
-

The guild’s MFA level. See Guild.mfa_level.

-
-
Type
-

int

-
-
-
- -
-
-widget_enabled
-

The guild’s widget has been enabled or disabled.

-
-
Type
-

bool

-
-
-
- -
-
-widget_channel
-

The widget’s channel.

-

If this could not be found then it falls back to a Object -with the ID being set.

-
-
Type
-

Union[TextChannel, Object]

-
-
-
- -
-
-verification_level
-

The guild’s verification level.

-

See also Guild.verification_level.

-
-
Type
-

VerificationLevel

-
-
-
- -
-
-default_notifications
-

The guild’s default notification level.

-

See also Guild.default_notifications.

-
-
Type
-

NotificationLevel

-
-
-
- -
-
-explicit_content_filter
-

The guild’s content filter.

-

See also Guild.explicit_content_filter.

-
-
Type
-

ContentFilter

-
-
-
- -
-
-default_message_notifications
-

The guild’s default message notification setting.

-
-
Type
-

int

-
-
-
- -
-
-vanity_url_code
-

The guild’s vanity URL.

-

See also Guild.vanity_invite() and Guild.edit().

-
-
Type
-

str

-
-
-
- -
-
-position
-

The position of a Role or abc.GuildChannel.

-
-
Type
-

int

-
-
-
- -
-
-type
-

The type of channel or sticker.

-
-
Type
-

Union[ChannelType, StickerType]

-
-
-
- -
-
-topic
-

The topic of a TextChannel or StageChannel.

-

See also TextChannel.topic or StageChannel.topic.

-
-
Type
-

str

-
-
-
- -
-
-bitrate
-

The bitrate of a VoiceChannel.

-

See also VoiceChannel.bitrate.

-
-
Type
-

int

-
-
-
- -
-
-overwrites
-

A list of permission overwrite tuples that represents a target and a -PermissionOverwrite for said target.

-

The first element is the object being targeted, which can either -be a Member or User or Role. If this object -is not found then it is a Object with an ID being filled and -a type attribute set to either 'role' or 'member' to help -decide what type of ID it is.

-
-
Type
-

List[Tuple[target, PermissionOverwrite]]

-
-
-
- -
-
-privacy_level
-

The privacy level of the stage instance.

-
-
Type
-

StagePrivacyLevel

-
-
-
- -
-
-roles
-

A list of roles being added or removed from a member.

-

If a role is not found then it is a Object with the ID and name being -filled in.

-
-
Type
-

List[Union[Role, Object]]

-
-
-
- -
-
-nick
-

The nickname of a member.

-

See also Member.nick

-
-
Type
-

Optional[str]

-
-
-
- -
-
-deaf
-

Whether the member is being server deafened.

-

See also VoiceState.deaf.

-
-
Type
-

bool

-
-
-
- -
-
-mute
-

Whether the member is being server muted.

-

See also VoiceState.mute.

-
-
Type
-

bool

-
-
-
- -
-
-permissions
-

The permissions of a role.

-

See also Role.permissions.

-
-
Type
-

Permissions

-
-
-
- -
-
-colour
-
-color
-

The colour of a role.

-

See also Role.colour

-
-
Type
-

Colour

-
-
-
- -
-
-hoist
-

Whether the role is being hoisted or not.

-

See also Role.hoist

-
-
Type
-

bool

-
-
-
- -
-
-mentionable
-

Whether the role is mentionable or not.

-

See also Role.mentionable

-
-
Type
-

bool

-
-
-
- -
-
-code
-

The invite’s code.

-

See also Invite.code

-
-
Type
-

str

-
-
-
- -
-
-channel
-

A guild channel.

-

If the channel is not found then it is a Object with the ID -being set. In some cases the channel name is also set.

-
-
Type
-

Union[abc.GuildChannel, Object]

-
-
-
- -
-
-inviter
-

The user who created the invite.

-

See also Invite.inviter.

-
-
Type
-

Optional[User]

-
-
-
- -
-
-max_uses
-

The invite’s max uses.

-

See also Invite.max_uses.

-
-
Type
-

int

-
-
-
- -
-
-uses
-

The invite’s current uses.

-

See also Invite.uses.

-
-
Type
-

int

-
-
-
- -
-
-max_age
-

The invite’s max age in seconds.

-

See also Invite.max_age.

-
-
Type
-

int

-
-
-
- -
-
-temporary
-

If the invite is a temporary invite.

-

See also Invite.temporary.

-
-
Type
-

bool

-
-
-
- -
-
-allow
-
-deny
-

The permissions being allowed or denied.

-
-
Type
-

Permissions

-
-
-
- -
-
-id
-

The ID of the object being changed.

-
-
Type
-

int

-
-
-
- -
-
-avatar
-

The avatar of a member.

-

See also User.avatar.

-
-
Type
-

Asset

-
-
-
- -
-
-slowmode_delay
-

The number of seconds members have to wait before -sending another message in the channel.

-

See also TextChannel.slowmode_delay.

-
-
Type
-

int

-
-
-
- -
-
-rtc_region
-

The region for the voice channel’s voice communication. -A value of None indicates automatic voice region detection.

-

See also VoiceChannel.rtc_region.

-
-
Type
-

VoiceRegion

-
-
-
- -
-
-video_quality_mode
-

The camera video quality for the voice channel’s participants.

-

See also VoiceChannel.video_quality_mode.

-
-
Type
-

VideoQualityMode

-
-
-
- -
-
-format_type
-

The format type of a sticker being changed.

-

See also GuildSticker.format

-
-
Type
-

StickerFormatType

-
-
-
- -
-
-emoji
-

The name of the emoji that represents a sticker being changed.

-

See also GuildSticker.emoji

-
-
Type
-

str

-
-
-
- -
-
-description
-

The description of a sticker being changed.

-

See also GuildSticker.description

-
-
Type
-

str

-
-
-
- -
-
-available
-

The availability of a sticker being changed.

-

See also GuildSticker.available

-
-
Type
-

bool

-
-
-
- -
-
-archived
-

The thread is now archived.

-
-
Type
-

bool

-
-
-
- -
-
-locked
-

The thread is being locked or unlocked.

-
-
Type
-

bool

-
-
-
- -
-
-auto_archive_duration
-

The thread’s auto archive duration being changed.

-

See also Thread.auto_archive_duration

-
-
Type
-

int

-
-
-
- -
-
-default_auto_archive_duration
-

The default auto archive duration for newly created threads being changed.

-
-
Type
-

int

-
-
-
- -
- -
-
-
-

Webhook Support

-

discord.py offers support for creating, editing, and executing webhooks through the Webhook class.

-
-

Webhook

-
- -Methods -
-
-class discord.Webhook
-

Represents an asynchronous Discord webhook.

-

Webhooks are a form to send messages to channels in Discord without a -bot user or authentication.

-

There are two main ways to use Webhooks. The first is through the ones -received by the library such as Guild.webhooks() and -TextChannel.webhooks(). The ones received by the library will -automatically be bound using the library’s internal HTTP session.

-

The second form involves creating a webhook object manually using the -from_url() or partial() classmethods.

-

For example, creating a webhook from a URL and using aiohttp:

-
from discord import Webhook
-import aiohttp
-
-async def foo():
-    async with aiohttp.ClientSession() as session:
-        webhook = Webhook.from_url('url-here', session=session)
-        await webhook.send('Hello World', username='Foo')
-
-
-

For a synchronous counterpart, see SyncWebhook.

-
-
-
-x == y
-

Checks if two webhooks are equal.

-
- -
-
-x != y
-

Checks if two webhooks are not equal.

-
- -
-
-hash(x)
-

Returns the webhooks’s hash.

-
- -
-
-int(x)
-

Returns the webhooks’s ID.

-
- -
-
-

Changed in version 1.4: Webhooks are now comparable and hashable.

-
-
-
-id
-

The webhook’s ID

-
-
Type
-

int

-
-
-
- -
-
-type
-

The type of the webhook.

-
-

New in version 1.3.

-
-
-
Type
-

WebhookType

-
-
-
- -
-
-token
-

The authentication token of the webhook. If this is None -then the webhook cannot be used to make requests.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-guild_id
-

The guild ID this webhook is for.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-channel_id
-

The channel ID this webhook is for.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-user
-

The user this webhook was created by. If the webhook was -received without authentication then this will be None.

-
-
Type
-

Optional[abc.User]

-
-
-
- -
-
-name
-

The default name of the webhook.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-source_guild
-

The guild of the channel that this webhook is following. -Only given if type is WebhookType.channel_follower.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[PartialWebhookGuild]

-
-
-
- -
-
-source_channel
-

The channel that this webhook is following. -Only given if type is WebhookType.channel_follower.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[PartialWebhookChannel]

-
-
-
- -
-
-property url
-

Returns the webhook’s url.

-
-
Type
-

str

-
-
-
- -
-
-classmethod partial(id, token, *, session, bot_token=None)
-

Creates a partial Webhook.

-
-
Parameters
-
    -
  • id (int) – The ID of the webhook.

  • -
  • token (str) – The authentication token of the webhook.

  • -
  • session (aiohttp.ClientSession) –

    The session to use to send requests with. Note -that the library does not manage the session and -will not close it.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • bot_token (Optional[str]) –

    The bot authentication token for authenticated requests -involving the webhook.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Returns
-

A partial Webhook. -A partial webhook is just a webhook object with an ID and a token.

-
-
Return type
-

Webhook

-
-
-
- -
-
-classmethod from_url(url, *, session, bot_token=None)
-

Creates a partial Webhook from a webhook URL.

-
-
Parameters
-
    -
  • url (str) – The URL of the webhook.

  • -
  • session (aiohttp.ClientSession) –

    The session to use to send requests with. Note -that the library does not manage the session and -will not close it.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • bot_token (Optional[str]) –

    The bot authentication token for authenticated requests -involving the webhook.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-

InvalidArgument – The URL is invalid.

-
-
Returns
-

A partial Webhook. -A partial webhook is just a webhook object with an ID and a token.

-
-
Return type
-

Webhook

-
-
-
- -
-
-await fetch(*, prefer_auth=True)
-

This function is a coroutine.

-

Fetches the current webhook.

-

This could be used to get a full webhook from a partial webhook.

-
-

New in version 2.0.

-
-
-

Note

-

When fetching with an unauthenticated webhook, i.e. -is_authenticated() returns False, then the -returned webhook does not contain any user information.

-
-
-
Parameters
-

prefer_auth (bool) – Whether to use the bot token over the webhook token -if available. Defaults to True.

-
-
Raises
-
-
-
Returns
-

The fetched webhook.

-
-
Return type
-

Webhook

-
-
-
- -
-
-await delete(*, reason=None, prefer_auth=True)
-

This function is a coroutine.

-

Deletes this Webhook.

-
-
Parameters
-
    -
  • reason (Optional[str]) –

    The reason for deleting this webhook. Shows up on the audit log.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • prefer_auth (bool) –

    Whether to use the bot token over the webhook token -if available. Defaults to True.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • HTTPException – Deleting the webhook failed.

  • -
  • NotFound – This webhook does not exist.

  • -
  • Forbidden – You do not have permissions to delete this webhook.

  • -
  • InvalidArgument – This webhook does not have a token associated with it.

  • -
-
-
-
- -
-
-await edit(*, reason=None, name=..., avatar=..., channel=None, prefer_auth=True)
-

This function is a coroutine.

-

Edits this Webhook.

-
-
Parameters
-
    -
  • name (Optional[str]) – The webhook’s new default name.

  • -
  • avatar (Optional[bytes]) – A bytes-like object representing the webhook’s new default avatar.

  • -
  • channel (Optional[abc.Snowflake]) –

    The webhook’s new channel. This requires an authenticated webhook.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • reason (Optional[str]) –

    The reason for editing this webhook. Shows up on the audit log.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • prefer_auth (bool) –

    Whether to use the bot token over the webhook token -if available. Defaults to True.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • HTTPException – Editing the webhook failed.

  • -
  • NotFound – This webhook does not exist.

  • -
  • InvalidArgument – This webhook does not have a token associated with it - or it tried editing a channel without authentication.

  • -
-
-
-
- -
-
-property avatar
-

Returns an Asset for the avatar the webhook has.

-

If the webhook does not have a traditional avatar, an asset for -the default avatar is returned instead.

-
-
Type
-

Asset

-
-
-
- -
-
-property channel
-

The text channel this webhook belongs to.

-

If this is a partial webhook, then this will always return None.

-
-
Type
-

Optional[TextChannel]

-
-
-
- -
-
-property created_at
-

Returns the webhook’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-property guild
-

The guild this webhook belongs to.

-

If this is a partial webhook, then this will always return None.

-
-
Type
-

Optional[Guild]

-
-
-
- -
-
-is_authenticated()
-

bool: Whether the webhook is authenticated with a bot token.

-
-

New in version 2.0.

-
-
- -
-
-is_partial()
-

bool: Whether the webhook is a “partial” webhook.

-
-

New in version 2.0.

-
-
- -
-
-await send(content=..., *, username=..., avatar_url=..., tts=False, ephemeral=False, file=..., files=..., embed=..., embeds=..., allowed_mentions=..., view=..., thread=..., wait=False)
-

This function is a coroutine.

-

Sends a message using the webhook.

-

The content must be a type that can convert to a string through str(content).

-

To upload a single file, the file parameter should be used with a -single File object.

-

If the embed parameter is provided, it must be of type Embed and -it must be a rich embed type. You cannot mix the embed parameter with the -embeds parameter, which must be a list of Embed objects to send.

-
-
Parameters
-
    -
  • content (str) – The content of the message to send.

  • -
  • wait (bool) – Whether the server should wait before sending a response. This essentially -means that the return type of this function changes from None to -a WebhookMessage if set to True. If the type of webhook -is WebhookType.application then this is always set to True.

  • -
  • username (str) – The username to send with this message. If no username is provided -then the default username for the webhook is used.

  • -
  • avatar_url (str) – The avatar URL to send with this message. If no avatar URL is provided -then the default avatar for the webhook is used. If this is not a -string then it is explicitly cast using str.

  • -
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • -
  • ephemeral (bool) –

    Indicates if the message should only be visible to the user. -This is only available to WebhookType.application webhooks. -If a view is sent with an ephemeral message and it has no timeout set -then the timeout is set to 15 minutes.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • file (File) – The file to upload. This cannot be mixed with files parameter.

  • -
  • files (List[File]) – A list of files to send with the content. This cannot be mixed with the -file parameter.

  • -
  • embed (Embed) – The rich embed for the content to send. This cannot be mixed with -embeds parameter.

  • -
  • embeds (List[Embed]) – A list of embeds to send with the content. Maximum of 10. This cannot -be mixed with the embed parameter.

  • -
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • view (discord.ui.View) –

    The view to send with the message. You can only send a view -if this webhook is not partial and has state attached. A -webhook has state attached if the webhook is managed by the -library.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • thread (Snowflake) –

    The thread to send this webhook to.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • HTTPException – Sending the message failed.

  • -
  • NotFound – This webhook was not found.

  • -
  • Forbidden – The authorization token for the webhook is incorrect.

  • -
  • TypeError – You specified both embed and embeds or file and files.

  • -
  • ValueError – The length of embeds was invalid.

  • -
  • InvalidArgument – There was no token associated with this webhook or ephemeral - was passed with the improper webhook type or there was no state - attached with this webhook when giving it a view.

  • -
-
-
Returns
-

If wait is True then the message that was sent, otherwise None.

-
-
Return type
-

Optional[WebhookMessage]

-
-
-
- -
-
-await fetch_message(id)
-

This function is a coroutine.

-

Retrieves a single WebhookMessage owned by this webhook.

-
-

New in version 2.0.

-
-
-
Parameters
-

id (int) – The message ID to look for.

-
-
Raises
-
    -
  • NotFound – The specified message was not found.

  • -
  • Forbidden – You do not have the permissions required to get a message.

  • -
  • HTTPException – Retrieving the message failed.

  • -
  • InvalidArgument – There was no token associated with this webhook.

  • -
-
-
Returns
-

The message asked for.

-
-
Return type
-

WebhookMessage

-
-
-
- -
-
-await edit_message(message_id, *, content=..., embeds=..., embed=..., file=..., files=..., view=..., allowed_mentions=None)
-

This function is a coroutine.

-

Edits a message owned by this webhook.

-

This is a lower level interface to WebhookMessage.edit() in case -you only have an ID.

-
-

New in version 1.6.

-
-
-

Changed in version 2.0: The edit is no longer in-place, instead the newly edited message is returned.

-
-
-
Parameters
-
    -
  • message_id (int) – The message ID to edit.

  • -
  • content (Optional[str]) – The content to edit the message with or None to clear it.

  • -
  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • -
  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. -This should not be mixed with the embeds parameter.

  • -
  • file (File) –

    The file to upload. This cannot be mixed with files parameter.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • files (List[File]) –

    A list of files to send with the content. This cannot be mixed with the -file parameter.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • allowed_mentions (AllowedMentions) – Controls the mentions being processed in this message. -See abc.Messageable.send() for more information.

  • -
  • view (Optional[View]) –

    The updated view to update this message with. If None is passed then -the view is removed. The webhook must have state attached, similar to -send().

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • HTTPException – Editing the message failed.

  • -
  • Forbidden – Edited a message that is not yours.

  • -
  • TypeError – You specified both embed and embeds or file and files

  • -
  • ValueError – The length of embeds was invalid

  • -
  • InvalidArgument – There was no token associated with this webhook or the webhook had - no state.

  • -
-
-
Returns
-

The newly edited webhook message.

-
-
Return type
-

WebhookMessage

-
-
-
- -
-
-await delete_message(message_id, /)
-

This function is a coroutine.

-

Deletes a message owned by this webhook.

-

This is a lower level interface to WebhookMessage.delete() in case -you only have an ID.

-
-

New in version 1.6.

-
-
-
Parameters
-

message_id (int) – The message ID to delete.

-
-
Raises
-
-
-
-
- -
- -
-
-

WebhookMessage

-
- -Methods -
-
-class discord.WebhookMessage
-

Represents a message sent from your webhook.

-

This allows you to edit or delete a message sent by your -webhook.

-

This inherits from discord.Message with changes to -edit() and delete() to work.

-
-

New in version 1.6.

-
-
-
-await edit(content=..., embeds=..., embed=..., file=..., files=..., view=..., allowed_mentions=None)
-

This function is a coroutine.

-

Edits the message.

-
-

New in version 1.6.

-
-
-

Changed in version 2.0: The edit is no longer in-place, instead the newly edited message is returned.

-
-
-
Parameters
-
    -
  • content (Optional[str]) – The content to edit the message with or None to clear it.

  • -
  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • -
  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. -This should not be mixed with the embeds parameter.

  • -
  • file (File) –

    The file to upload. This cannot be mixed with files parameter.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • files (List[File]) –

    A list of files to send with the content. This cannot be mixed with the -file parameter.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • allowed_mentions (AllowedMentions) – Controls the mentions being processed in this message. -See abc.Messageable.send() for more information.

  • -
  • view (Optional[View]) –

    The updated view to update this message with. If None is passed then -the view is removed.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • HTTPException – Editing the message failed.

  • -
  • Forbidden – Edited a message that is not yours.

  • -
  • TypeError – You specified both embed and embeds or file and files

  • -
  • ValueError – The length of embeds was invalid

  • -
  • InvalidArgument – There was no token associated with this webhook.

  • -
-
-
Returns
-

The newly edited message.

-
-
Return type
-

WebhookMessage

-
-
-
- -
-
-await delete(*, delay=None)
-

This function is a coroutine.

-

Deletes the message.

-
-
Parameters
-

delay (Optional[float]) – If provided, the number of seconds to wait before deleting the message. -The waiting is done in the background and deletion failures are ignored.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to delete the message.

  • -
  • NotFound – The message was deleted already.

  • -
  • HTTPException – Deleting the message failed.

  • -
-
-
-
- -
- -
-
-

SyncWebhook

-
-
-class discord.SyncWebhook
-

Represents a synchronous Discord webhook.

-

For an asynchronous counterpart, see Webhook.

-
-
-
-x == y
-

Checks if two webhooks are equal.

-
- -
-
-x != y
-

Checks if two webhooks are not equal.

-
- -
-
-hash(x)
-

Returns the webhooks’s hash.

-
- -
-
-int(x)
-

Returns the webhooks’s ID.

-
- -
-
-

Changed in version 1.4: Webhooks are now comparable and hashable.

-
-
-
-id
-

The webhook’s ID

-
-
Type
-

int

-
-
-
- -
-
-type
-

The type of the webhook.

-
-

New in version 1.3.

-
-
-
Type
-

WebhookType

-
-
-
- -
-
-token
-

The authentication token of the webhook. If this is None -then the webhook cannot be used to make requests.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-guild_id
-

The guild ID this webhook is for.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-channel_id
-

The channel ID this webhook is for.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-user
-

The user this webhook was created by. If the webhook was -received without authentication then this will be None.

-
-
Type
-

Optional[abc.User]

-
-
-
- -
-
-name
-

The default name of the webhook.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-source_guild
-

The guild of the channel that this webhook is following. -Only given if type is WebhookType.channel_follower.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[PartialWebhookGuild]

-
-
-
- -
-
-source_channel
-

The channel that this webhook is following. -Only given if type is WebhookType.channel_follower.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[PartialWebhookChannel]

-
-
-
- -
-
-property url
-

Returns the webhook’s url.

-
-
Type
-

str

-
-
-
- -
-
-classmethod partial(id, token, *, session=..., bot_token=None)
-

Creates a partial Webhook.

-
-
Parameters
-
    -
  • id (int) – The ID of the webhook.

  • -
  • token (str) – The authentication token of the webhook.

  • -
  • session (requests.Session) – The session to use to send requests with. Note -that the library does not manage the session and -will not close it. If not given, the requests -auto session creation functions are used instead.

  • -
  • bot_token (Optional[str]) – The bot authentication token for authenticated requests -involving the webhook.

  • -
-
-
Returns
-

A partial Webhook. -A partial webhook is just a webhook object with an ID and a token.

-
-
Return type
-

Webhook

-
-
-
- -
-
-classmethod from_url(url, *, session=..., bot_token=None)
-

Creates a partial Webhook from a webhook URL.

-
-
Parameters
-
    -
  • url (str) – The URL of the webhook.

  • -
  • session (requests.Session) – The session to use to send requests with. Note -that the library does not manage the session and -will not close it. If not given, the requests -auto session creation functions are used instead.

  • -
  • bot_token (Optional[str]) – The bot authentication token for authenticated requests -involving the webhook.

  • -
-
-
Raises
-

InvalidArgument – The URL is invalid.

-
-
Returns
-

A partial Webhook. -A partial webhook is just a webhook object with an ID and a token.

-
-
Return type
-

Webhook

-
-
-
- -
-
-fetch(*, prefer_auth=True)
-

Fetches the current webhook.

-

This could be used to get a full webhook from a partial webhook.

-
-

Note

-

When fetching with an unauthenticated webhook, i.e. -is_authenticated() returns False, then the -returned webhook does not contain any user information.

-
-
-
Parameters
-

prefer_auth (bool) – Whether to use the bot token over the webhook token -if available. Defaults to True.

-
-
Raises
-
-
-
Returns
-

The fetched webhook.

-
-
Return type
-

SyncWebhook

-
-
-
- -
-
-delete(*, reason=None, prefer_auth=True)
-

Deletes this Webhook.

-
-
Parameters
-
    -
  • reason (Optional[str]) –

    The reason for deleting this webhook. Shows up on the audit log.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • prefer_auth (bool) – Whether to use the bot token over the webhook token -if available. Defaults to True.

  • -
-
-
Raises
-
    -
  • HTTPException – Deleting the webhook failed.

  • -
  • NotFound – This webhook does not exist.

  • -
  • Forbidden – You do not have permissions to delete this webhook.

  • -
  • InvalidArgument – This webhook does not have a token associated with it.

  • -
-
-
-
- -
-
-edit(*, reason=None, name=..., avatar=..., channel=None, prefer_auth=True)
-

Edits this Webhook.

-
-
Parameters
-
    -
  • name (Optional[str]) – The webhook’s new default name.

  • -
  • avatar (Optional[bytes]) – A bytes-like object representing the webhook’s new default avatar.

  • -
  • channel (Optional[abc.Snowflake]) – The webhook’s new channel. This requires an authenticated webhook.

  • -
  • reason (Optional[str]) –

    The reason for editing this webhook. Shows up on the audit log.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • prefer_auth (bool) – Whether to use the bot token over the webhook token -if available. Defaults to True.

  • -
-
-
Raises
-
    -
  • HTTPException – Editing the webhook failed.

  • -
  • NotFound – This webhook does not exist.

  • -
  • InvalidArgument – This webhook does not have a token associated with it - or it tried editing a channel without authentication.

  • -
-
-
Returns
-

The newly edited webhook.

-
-
Return type
-

SyncWebhook

-
-
-
- -
-
-send(content=..., *, username=..., avatar_url=..., tts=False, file=..., files=..., embed=..., embeds=..., allowed_mentions=..., thread=..., wait=False)
-

Sends a message using the webhook.

-

The content must be a type that can convert to a string through str(content).

-

To upload a single file, the file parameter should be used with a -single File object.

-

If the embed parameter is provided, it must be of type Embed and -it must be a rich embed type. You cannot mix the embed parameter with the -embeds parameter, which must be a list of Embed objects to send.

-
-
Parameters
-
    -
  • content (str) – The content of the message to send.

  • -
  • wait (bool) – Whether the server should wait before sending a response. This essentially -means that the return type of this function changes from None to -a WebhookMessage if set to True.

  • -
  • username (str) – The username to send with this message. If no username is provided -then the default username for the webhook is used.

  • -
  • avatar_url (str) – The avatar URL to send with this message. If no avatar URL is provided -then the default avatar for the webhook is used. If this is not a -string then it is explicitly cast using str.

  • -
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • -
  • file (File) – The file to upload. This cannot be mixed with files parameter.

  • -
  • files (List[File]) – A list of files to send with the content. This cannot be mixed with the -file parameter.

  • -
  • embed (Embed) – The rich embed for the content to send. This cannot be mixed with -embeds parameter.

  • -
  • embeds (List[Embed]) – A list of embeds to send with the content. Maximum of 10. This cannot -be mixed with the embed parameter.

  • -
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • thread (Snowflake) –

    The thread to send this message to.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • HTTPException – Sending the message failed.

  • -
  • NotFound – This webhook was not found.

  • -
  • Forbidden – The authorization token for the webhook is incorrect.

  • -
  • TypeError – You specified both embed and embeds or file and files

  • -
  • ValueError – The length of embeds was invalid

  • -
  • InvalidArgument – There was no token associated with this webhook.

  • -
-
-
Returns
-

If wait is True then the message that was sent, otherwise None.

-
-
Return type
-

Optional[SyncWebhookMessage]

-
-
-
- -
-
-fetch_message(id, /)
-

Retrieves a single SyncWebhookMessage owned by this webhook.

-
-

New in version 2.0.

-
-
-
Parameters
-

id (int) – The message ID to look for.

-
-
Raises
-
    -
  • NotFound – The specified message was not found.

  • -
  • Forbidden – You do not have the permissions required to get a message.

  • -
  • HTTPException – Retrieving the message failed.

  • -
  • InvalidArgument – There was no token associated with this webhook.

  • -
-
-
Returns
-

The message asked for.

-
-
Return type
-

SyncWebhookMessage

-
-
-
- -
-
-property avatar
-

Returns an Asset for the avatar the webhook has.

-

If the webhook does not have a traditional avatar, an asset for -the default avatar is returned instead.

-
-
Type
-

Asset

-
-
-
- -
-
-property channel
-

The text channel this webhook belongs to.

-

If this is a partial webhook, then this will always return None.

-
-
Type
-

Optional[TextChannel]

-
-
-
- -
-
-property created_at
-

Returns the webhook’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-edit_message(message_id, *, content=..., embeds=..., embed=..., file=..., files=..., allowed_mentions=None)
-

Edits a message owned by this webhook.

-

This is a lower level interface to WebhookMessage.edit() in case -you only have an ID.

-
-

New in version 1.6.

-
-
-
Parameters
-
    -
  • message_id (int) – The message ID to edit.

  • -
  • content (Optional[str]) – The content to edit the message with or None to clear it.

  • -
  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • -
  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. -This should not be mixed with the embeds parameter.

  • -
  • file (File) – The file to upload. This cannot be mixed with files parameter.

  • -
  • files (List[File]) – A list of files to send with the content. This cannot be mixed with the -file parameter.

  • -
  • allowed_mentions (AllowedMentions) – Controls the mentions being processed in this message. -See abc.Messageable.send() for more information.

  • -
-
-
Raises
-
    -
  • HTTPException – Editing the message failed.

  • -
  • Forbidden – Edited a message that is not yours.

  • -
  • TypeError – You specified both embed and embeds or file and files

  • -
  • ValueError – The length of embeds was invalid

  • -
  • InvalidArgument – There was no token associated with this webhook.

  • -
-
-
-
- -
-
-property guild
-

The guild this webhook belongs to.

-

If this is a partial webhook, then this will always return None.

-
-
Type
-

Optional[Guild]

-
-
-
- -
-
-is_authenticated()
-

bool: Whether the webhook is authenticated with a bot token.

-
-

New in version 2.0.

-
-
- -
-
-is_partial()
-

bool: Whether the webhook is a “partial” webhook.

-
-

New in version 2.0.

-
-
- -
-
-delete_message(message_id, /)
-

Deletes a message owned by this webhook.

-

This is a lower level interface to WebhookMessage.delete() in case -you only have an ID.

-
-

New in version 1.6.

-
-
-
Parameters
-

message_id (int) – The message ID to delete.

-
-
Raises
-
-
-
-
- -
- -
-
-

SyncWebhookMessage

-
- -Methods -
-
-class discord.SyncWebhookMessage
-

Represents a message sent from your webhook.

-

This allows you to edit or delete a message sent by your -webhook.

-

This inherits from discord.Message with changes to -edit() and delete() to work.

-
-

New in version 2.0.

-
-
-
-edit(content=..., embeds=..., embed=..., file=..., files=..., allowed_mentions=None)
-

Edits the message.

-
-
Parameters
-
    -
  • content (Optional[str]) – The content to edit the message with or None to clear it.

  • -
  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • -
  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. -This should not be mixed with the embeds parameter.

  • -
  • file (File) – The file to upload. This cannot be mixed with files parameter.

  • -
  • files (List[File]) – A list of files to send with the content. This cannot be mixed with the -file parameter.

  • -
  • allowed_mentions (AllowedMentions) – Controls the mentions being processed in this message. -See abc.Messageable.send() for more information.

  • -
-
-
Raises
-
    -
  • HTTPException – Editing the message failed.

  • -
  • Forbidden – Edited a message that is not yours.

  • -
  • TypeError – You specified both embed and embeds or file and files

  • -
  • ValueError – The length of embeds was invalid

  • -
  • InvalidArgument – There was no token associated with this webhook.

  • -
-
-
Returns
-

The newly edited message.

-
-
Return type
-

SyncWebhookMessage

-
-
-
- -
-
-delete(*, delay=None)
-

Deletes the message.

-
-
Parameters
-

delay (Optional[float]) – If provided, the number of seconds to wait before deleting the message. -This blocks the thread.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to delete the message.

  • -
  • NotFound – The message was deleted already.

  • -
  • HTTPException – Deleting the message failed.

  • -
-
-
-
- -
- -
-
-
-

Abstract Base Classes

-

An abstract base class (also known as an abc) is a class that models can inherit -to get their behaviour. Abstract base classes should not be instantiated. -They are mainly there for usage with isinstance() and issubclass().

-

This library has a module related to abstract base classes, in which all the ABCs are subclasses of -typing.Protocol.

-
-

Snowflake

-
- -Attributes -
-
-class discord.abc.Snowflake
-

An ABC that details the common operations on a Discord model.

-

Almost all Discord models meet this -abstract base class.

-

If you want to create a snowflake on your own, consider using -Object.

-
-
-id
-

The model’s unique ID.

-
-
Type
-

int

-
-
-
- -
- -
-
-

User

-
- -Attributes -
-
-class discord.abc.User
-

An ABC that details the common operations on a Discord user.

-

The following implement this ABC:

- -

This ABC must also implement Snowflake.

-
-
-name
-

The user’s username.

-
-
Type
-

str

-
-
-
- -
-
-discriminator
-

The user’s discriminator.

-
-
Type
-

str

-
-
-
- -
-
-avatar
-

The avatar asset the user has.

-
-
Type
-

Asset

-
-
-
- -
-
-bot
-

If the user is a bot account.

-
-
Type
-

bool

-
-
-
- -
-
-property display_name
-

Returns the user’s display name.

-
-
Type
-

str

-
-
-
- -
-
-property mention
-

Returns a string that allows you to mention the given user.

-
-
Type
-

str

-
-
-
- -
- -
-
-

PrivateChannel

-
- -Attributes -
-
-class discord.abc.PrivateChannel
-

An ABC that details the common operations on a private Discord channel.

-

The following implement this ABC:

- -

This ABC must also implement Snowflake.

-
-
-me
-

The user presenting yourself.

-
-
Type
-

ClientUser

-
-
-
- -
- -
-
-

GuildChannel

-
- -Methods -
-
-class discord.abc.GuildChannel
-

An ABC that details the common operations on a Discord guild channel.

-

The following implement this ABC:

- -

This ABC must also implement Snowflake.

-
-
-name
-

The channel name.

-
-
Type
-

str

-
-
-
- -
-
-guild
-

The guild the channel belongs to.

-
-
Type
-

Guild

-
-
-
- -
-
-position
-

The position in the channel list. This is a number that starts at 0. -e.g. the top channel is position 0.

-
-
Type
-

int

-
-
-
- -
-
-property changed_roles
-

Returns a list of roles that have been overridden from -their default values in the roles attribute.

-
-
Type
-

List[Role]

-
-
-
- -
-
-property mention
-

The string that allows you to mention the channel.

-
-
Type
-

str

-
-
-
- -
-
-property created_at
-

Returns the channel’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-overwrites_for(obj)
-

Returns the channel-specific overwrites for a member or a role.

-
-
Parameters
-

obj (Union[Role, User]) – The role or user denoting -whose overwrite to get.

-
-
Returns
-

The permission overwrites for this object.

-
-
Return type
-

PermissionOverwrite

-
-
-
- -
-
-property overwrites
-

Returns all of the channel’s overwrites.

-

This is returned as a dictionary where the key contains the target which -can be either a Role or a Member and the value is the -overwrite as a PermissionOverwrite.

-
-
Returns
-

The channel’s permission overwrites.

-
-
Return type
-

Dict[Union[Role, Member], PermissionOverwrite]

-
-
-
- -
-
-property category
-

The category this channel belongs to.

-

If there is no category then this is None.

-
-
Type
-

Optional[CategoryChannel]

-
-
-
- -
-
-property permissions_synced
-

Whether or not the permissions for this channel are synced with the -category it belongs to.

-

If there is no category then this is False.

-
-

New in version 1.3.

-
-
-
Type
-

bool

-
-
-
- -
-
-permissions_for(obj, /)
-

Handles permission resolution for the Member -or Role.

-

This function takes into consideration the following cases:

-
    -
  • Guild owner

  • -
  • Guild roles

  • -
  • Channel overrides

  • -
  • Member overrides

  • -
-

If a Role is passed, then it checks the permissions -someone with that role would have, which is essentially:

-
    -
  • The default role permissions

  • -
  • The permissions of the role used as a parameter

  • -
  • The default role permission overwrites

  • -
  • The permission overwrites of the role used as a parameter

  • -
-
-

Changed in version 2.0: The object passed in can now be a role object.

-
-
-
Parameters
-

obj (Union[Member, Role]) – The object to resolve permissions for. This could be either -a member or a role. If it’s a role then member overwrites -are not computed.

-
-
Returns
-

The resolved permissions for the member or role.

-
-
Return type
-

Permissions

-
-
-
- -
-
-await delete(*, reason=None)
-

This function is a coroutine.

-

Deletes the channel.

-

You must have manage_channels permission to use this.

-
-
Parameters
-

reason (Optional[str]) – The reason for deleting this channel. -Shows up on the audit log.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to delete the channel.

  • -
  • NotFound – The channel was not found or was already deleted.

  • -
  • HTTPException – Deleting the channel failed.

  • -
-
-
-
- -
-
-await set_permissions(target, *, overwrite=see - below, reason=None, **permissions)
-

This function is a coroutine.

-

Sets the channel specific permission overwrites for a target in the -channel.

-

The target parameter should either be a Member or a -Role that belongs to guild.

-

The overwrite parameter, if given, must either be None or -PermissionOverwrite. For convenience, you can pass in -keyword arguments denoting Permissions attributes. If this is -done, then you cannot mix the keyword arguments with the overwrite -parameter.

-

If the overwrite parameter is None, then the permission -overwrites are deleted.

-

You must have the manage_roles permission to use this.

-
-

Note

-

This method replaces the old overwrites with the ones given.

-
-

Examples

-

Setting allow and deny:

-
await message.channel.set_permissions(message.author, read_messages=True,
-                                                      send_messages=False)
-
-
-

Deleting overwrites

-
await channel.set_permissions(member, overwrite=None)
-
-
-

Using PermissionOverwrite

-
overwrite = discord.PermissionOverwrite()
-overwrite.send_messages = False
-overwrite.read_messages = True
-await channel.set_permissions(member, overwrite=overwrite)
-
-
-
-
Parameters
-
    -
  • target (Union[Member, Role]) – The member or role to overwrite permissions for.

  • -
  • overwrite (Optional[PermissionOverwrite]) – The permissions to allow and deny to the target, or None to -delete the overwrite.

  • -
  • **permissions – A keyword argument list of permissions to set for ease of use. -Cannot be mixed with overwrite.

  • -
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to edit channel specific permissions.

  • -
  • HTTPException – Editing channel specific permissions failed.

  • -
  • NotFound – The role or member being edited is not part of the guild.

  • -
  • InvalidArgument – The overwrite parameter invalid or the target type was not - Role or Member.

  • -
-
-
-
- -
-
-await clone(*, name=None, reason=None)
-

This function is a coroutine.

-

Clones this channel. This creates a channel with the same properties -as this channel.

-

You must have the manage_channels permission to -do this.

-
-

New in version 1.1.

-
-
-
Parameters
-
    -
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this -channel name.

  • -
  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to create this channel.

  • -
  • HTTPException – Creating the channel failed.

  • -
-
-
Returns
-

The channel that was created.

-
-
Return type
-

abc.GuildChannel

-
-
-
- -
-
-await move(**kwargs)
-

This function is a coroutine.

-

A rich interface to help move a channel relative to other channels.

-

If exact position movement is required, edit should be used instead.

-

You must have the manage_channels permission to -do this.

-
-

Note

-

Voice channels will always be sorted below text channels. -This is a Discord limitation.

-
-
-

New in version 1.7.

-
-
-
Parameters
-
    -
  • beginning (bool) – Whether to move the channel to the beginning of the -channel list (or category if given). -This is mutually exclusive with end, before, and after.

  • -
  • end (bool) – Whether to move the channel to the end of the -channel list (or category if given). -This is mutually exclusive with beginning, before, and after.

  • -
  • before (Snowflake) – The channel that should be before our current channel. -This is mutually exclusive with beginning, end, and after.

  • -
  • after (Snowflake) – The channel that should be after our current channel. -This is mutually exclusive with beginning, end, and before.

  • -
  • offset (int) – The number of channels to offset the move by. For example, -an offset of 2 with beginning=True would move -it 2 after the beginning. A positive number moves it below -while a negative number moves it above. Note that this -number is relative and computed after the beginning, -end, before, and after parameters.

  • -
  • category (Optional[Snowflake]) – The category to move this channel under. -If None is given then it moves it out of the category. -This parameter is ignored if moving a category channel.

  • -
  • sync_permissions (bool) – Whether to sync the permissions with the category (if given).

  • -
  • reason (str) – The reason for the move.

  • -
-
-
Raises
-
    -
  • InvalidArgument – An invalid position was given or a bad mix of arguments were passed.

  • -
  • Forbidden – You do not have permissions to move the channel.

  • -
  • HTTPException – Moving the channel failed.

  • -
-
-
-
- -
-
-await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_type=None, target_user=None, target_application_id=None)
-

This function is a coroutine.

-

Creates an instant invite from a text or voice channel.

-

You must have the create_instant_invite permission to -do this.

-
-
Parameters
-
    -
  • max_age (int) – How long the invite should last in seconds. If it’s 0 then the invite -doesn’t expire. Defaults to 0.

  • -
  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there -are unlimited uses. Defaults to 0.

  • -
  • temporary (bool) – Denotes that the invite grants temporary membership -(i.e. they get kicked after they disconnect). Defaults to False.

  • -
  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. -If this is set to False then it will return a previously created -invite.

  • -
  • reason (Optional[str]) – The reason for creating this invite. Shows up on the audit log.

  • -
  • target_type (Optional[InviteTarget]) –

    The type of target for the voice channel invite, if any.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • target_user (Optional[User]) –

    The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • target_application_id:

    Optional[int]: The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • HTTPException – Invite creation failed.

  • -
  • NotFound – The channel that was passed is a category or an invalid channel.

  • -
-
-
Returns
-

The invite that was created.

-
-
Return type
-

Invite

-
-
-
- -
-
-await invites()
-

This function is a coroutine.

-

Returns a list of all active instant invites from this channel.

-

You must have manage_channels to get this information.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to get the information.

  • -
  • HTTPException – An error occurred while fetching the information.

  • -
-
-
Returns
-

The list of invites that are currently active.

-
-
Return type
-

List[Invite]

-
-
-
- -
- -
-
-

Messageable

-
- -Methods -
-
-class discord.abc.Messageable
-

An ABC that details the common operations on a model that can send messages.

-

The following implement this ABC:

- -
-
-async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
-

Returns an AsyncIterator that enables receiving the destination’s message history.

-

You must have read_message_history permissions to use this.

-

Examples

-

Usage

-
counter = 0
-async for message in channel.history(limit=200):
-    if message.author == client.user:
-        counter += 1
-
-
-

Flattening into a list:

-
messages = await channel.history(limit=123).flatten()
-# messages is now a list of Message...
-
-
-

All parameters are optional.

-
-
Parameters
-
    -
  • limit (Optional[int]) – The number of messages to retrieve. -If None, retrieves every message in the channel. Note, however, -that this would make it a slow operation.

  • -
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time. -When using this argument, the maximum limit is 101. Note that if the limit is an -even number then this will return at most limit + 1 messages.

  • -
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if -after is specified, otherwise False.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to get channel message history.

  • -
  • HTTPException – The request to get message history failed.

  • -
-
-
Yields
-

Message – The message with the message data parsed.

-
-
-
- -
-
-async with typing()
-

Returns a context manager that allows you to type for an indefinite period of time.

-

This is useful for denoting long computations in your bot.

-
-

Note

-

This is both a regular context manager and an async context manager. -This means that both with and async with work with this.

-
-

Example Usage:

-
async with channel.typing():
-    # simulate something heavy
-    await asyncio.sleep(10)
-
-await channel.send('done!')
-
-
-
- -
-
-await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
-

This function is a coroutine.

-

Sends a message to the destination with the content given.

-

The content must be a type that can convert to a string through str(content). -If the content is set to None (the default), then the embed parameter must -be provided.

-

To upload a single file, the file parameter should be used with a -single File object. To upload multiple files, the files -parameter should be used with a list of File objects. -Specifying both parameters will lead to an exception.

-

To upload a single embed, the embed parameter should be used with a -single Embed object. To upload multiple embeds, the embeds -parameter should be used with a list of Embed objects. -Specifying both parameters will lead to an exception.

-
-
Parameters
-
    -
  • content (Optional[str]) – The content of the message to send.

  • -
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • -
  • embed (Embed) – The rich embed for the content.

  • -
  • file (File) – The file to upload.

  • -
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • -
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, -then the message will have a nonce with this value.

  • -
  • delete_after (float) – If provided, the number of seconds to wait in the background -before deleting the message we just sent. If the deletion fails, -then it is silently ignored.

  • -
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is -passed, then the object is merged with allowed_mentions. -The merging behaviour only overrides attributes that have been explicitly passed -to the object, otherwise it uses the attributes set in allowed_mentions. -If no object is passed at all then the defaults given by allowed_mentions -are used instead.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using -to_reference() or passed directly as a Message. You can control -whether this mentions the author of the referenced message using the replied_user -attribute of allowed_mentions or by setting mention_author.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • -
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
-
-
Returns
-

The message that was sent.

-
-
Return type
-

Message

-
-
-
- -
-
-await trigger_typing()
-

This function is a coroutine.

-

Triggers a typing indicator to the destination.

-

Typing indicator will go away after 10 seconds, or after a message is sent.

-
- -
-
-await fetch_message(id, /)
-

This function is a coroutine.

-

Retrieves a single Message from the destination.

-
-
Parameters
-

id (int) – The message ID to look for.

-
-
Raises
-
    -
  • NotFound – The specified message was not found.

  • -
  • Forbidden – You do not have the permissions required to get a message.

  • -
  • HTTPException – Retrieving the message failed.

  • -
-
-
Returns
-

The message asked for.

-
-
Return type
-

Message

-
-
-
- -
-
-await pins()
-

This function is a coroutine.

-

Retrieves all messages that are currently pinned in the channel.

-
-

Note

-

Due to a limitation with the Discord API, the Message -objects returned by this method do not contain complete -Message.reactions data.

-
-
-
Raises
-

HTTPException – Retrieving the pinned messages failed.

-
-
Returns
-

The messages that are currently pinned.

-
-
Return type
-

List[Message]

-
-
-
- -
- -
-
-

Connectable

-
-
-class discord.abc.Connectable
-

An ABC that details the common operations on a channel that can -connect to a voice server.

-

The following implement this ABC:

- -
-

Note

-

This ABC is not decorated with typing.runtime_checkable(), so will fail isinstance()/issubclass() -checks.

-
-
- -
-
-
-

Discord Models

-

Models are classes that are received from Discord and are not meant to be created by -the user of the library.

-
-

Danger

-

The classes listed below are not intended to be created by users and are also -read-only.

-

For example, this means that you should not make your own User instances -nor should you modify the User instance yourself.

-

If you want to get one of these model classes instances they’d have to be through -the cache, and a common way of doing so is through the utils.find() function -or attributes of model classes that you receive from the events specified in the -Event Reference.

-
-
-

Note

-

Nearly all classes here have __slots__ defined which means that it is -impossible to have dynamic attributes to the data classes.

-
-
-

ClientUser

-
-
-class discord.ClientUser
-

Represents your Discord user.

-
-
-
-x == y
-

Checks if two users are equal.

-
- -
-
-x != y
-

Checks if two users are not equal.

-
- -
-
-hash(x)
-

Return the user’s hash.

-
- -
-
-str(x)
-

Returns the user’s name with discriminator.

-
- -
-
-
-name
-

The user’s username.

-
-
Type
-

str

-
-
-
- -
-
-id
-

The user’s unique ID.

-
-
Type
-

int

-
-
-
- -
-
-discriminator
-

The user’s discriminator. This is given when the username has conflicts.

-
-
Type
-

str

-
-
-
- -
-
-bot
-

Specifies if the user is a bot account.

-
-
Type
-

bool

-
-
-
- -
-
-system
-

Specifies if the user is a system user (i.e. represents Discord officially).

-
-

New in version 1.3.

-
-
-
Type
-

bool

-
-
-
- -
-
-verified
-

Specifies if the user’s email is verified.

-
-
Type
-

bool

-
-
-
- -
-
-locale
-

The IETF language tag used to identify the language the user is using.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-mfa_enabled
-

Specifies if the user has MFA turned on and working.

-
-
Type
-

bool

-
-
-
- -
-
-await edit(*, username=..., avatar=...)
-

This function is a coroutine.

-

Edits the current profile of the client.

-
-

Note

-

To upload an avatar, a bytes-like object must be passed in that -represents the image being uploaded. If this is done through a file -then the file must be opened via open('some_filename', 'rb') and -the bytes-like object is given through the use of fp.read().

-

The only image formats supported for uploading is JPEG and PNG.

-
-
-

Changed in version 2.0: The edit is no longer in-place, instead the newly edited client user is returned.

-
-
-
Parameters
-
    -
  • username (str) – The new username you wish to change to.

  • -
  • avatar (bytes) – A bytes-like object representing the image to upload. -Could be None to denote no avatar.

  • -
-
-
Raises
-
-
-
Returns
-

The newly edited client user.

-
-
Return type
-

ClientUser

-
-
-
- -
-
-property accent_color
-

Returns the user’s accent color, if applicable.

-

There is an alias for this named accent_colour.

-
-

New in version 2.0.

-
-
-

Note

-

This information is only available via Client.fetch_user().

-
-
-
Type
-

Optional[Colour]

-
-
-
- -
-
-property accent_colour
-

Returns the user’s accent colour, if applicable.

-

There is an alias for this named accent_color.

-
-

New in version 2.0.

-
-
-

Note

-

This information is only available via Client.fetch_user().

-
-
-
Type
-

Optional[Colour]

-
-
-
- -
-
-property avatar
-

Returns an Asset for the avatar the user has.

-

If the user does not have a traditional avatar, None is returned. -If you want the avatar that a user has displayed, consider display_avatar.

-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property banner
-

Returns the user’s banner asset, if available.

-
-

New in version 2.0.

-
-
-

Note

-

This information is only available via Client.fetch_user().

-
-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property color
-

A property that returns a color denoting the rendered color -for the user. This always returns Colour.default().

-

There is an alias for this named colour.

-
-
Type
-

Colour

-
-
-
- -
-
-property colour
-

A property that returns a colour denoting the rendered colour -for the user. This always returns Colour.default().

-

There is an alias for this named color.

-
-
Type
-

Colour

-
-
-
- -
-
-property created_at
-

Returns the user’s creation time in UTC.

-

This is when the user’s Discord account was created.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-property default_avatar
-

Returns the default avatar for a given user. This is calculated by the user’s discriminator.

-
-
Type
-

Asset

-
-
-
- -
-
-property display_avatar
-

Returns the user’s display avatar.

-

For regular users this is just their default avatar or uploaded avatar.

-
-

New in version 2.0.

-
-
-
Type
-

Asset

-
-
-
- -
-
-property display_name
-

Returns the user’s display name.

-

For regular users this is just their username, but -if they have a guild specific nickname then that -is returned instead.

-
-
Type
-

str

-
-
-
- -
-
-property mention
-

Returns a string that allows you to mention the given user.

-
-
Type
-

str

-
-
-
- -
-
-mentioned_in(message)
-

Checks if the user is mentioned in the specified message.

-
-
Parameters
-

message (Message) – The message to check if you’re mentioned in.

-
-
Returns
-

Indicates if the user is mentioned in the message.

-
-
Return type
-

bool

-
-
-
- -
-
-property public_flags
-

The publicly available flags the user has.

-
-
Type
-

PublicUserFlags

-
-
-
- -
- -
-
-

User

-
-
-class discord.User
-

Represents a Discord user.

-
-
-
-x == y
-

Checks if two users are equal.

-
- -
-
-x != y
-

Checks if two users are not equal.

-
- -
-
-hash(x)
-

Return the user’s hash.

-
- -
-
-str(x)
-

Returns the user’s name with discriminator.

-
- -
-
-int(x)
-

Returns the user’s ID.

-
- -
-
-
-name
-

The user’s username.

-
-
Type
-

str

-
-
-
- -
-
-id
-

The user’s unique ID.

-
-
Type
-

int

-
-
-
- -
-
-discriminator
-

The user’s discriminator. This is given when the username has conflicts.

-
-
Type
-

str

-
-
-
- -
-
-bot
-

Specifies if the user is a bot account.

-
-
Type
-

bool

-
-
-
- -
-
-system
-

Specifies if the user is a system user (i.e. represents Discord officially).

-
-
Type
-

bool

-
-
-
- -
-
-async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
-

Returns an AsyncIterator that enables receiving the destination’s message history.

-

You must have read_message_history permissions to use this.

-

Examples

-

Usage

-
counter = 0
-async for message in channel.history(limit=200):
-    if message.author == client.user:
-        counter += 1
-
-
-

Flattening into a list:

-
messages = await channel.history(limit=123).flatten()
-# messages is now a list of Message...
-
-
-

All parameters are optional.

-
-
Parameters
-
    -
  • limit (Optional[int]) – The number of messages to retrieve. -If None, retrieves every message in the channel. Note, however, -that this would make it a slow operation.

  • -
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time. -When using this argument, the maximum limit is 101. Note that if the limit is an -even number then this will return at most limit + 1 messages.

  • -
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if -after is specified, otherwise False.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to get channel message history.

  • -
  • HTTPException – The request to get message history failed.

  • -
-
-
Yields
-

Message – The message with the message data parsed.

-
-
-
- -
-
-async with typing()
-

Returns a context manager that allows you to type for an indefinite period of time.

-

This is useful for denoting long computations in your bot.

-
-

Note

-

This is both a regular context manager and an async context manager. -This means that both with and async with work with this.

-
-

Example Usage:

-
async with channel.typing():
-    # simulate something heavy
-    await asyncio.sleep(10)
-
-await channel.send('done!')
-
-
-
- -
-
-property dm_channel
-

Returns the channel associated with this user if it exists.

-

If this returns None, you can create a DM channel by calling the -create_dm() coroutine function.

-
-
Type
-

Optional[DMChannel]

-
-
-
- -
-
-property mutual_guilds
-

The guilds that the user shares with the client.

-
-

Note

-

This will only return mutual guilds within the client’s internal cache.

-
-
-

New in version 1.7.

-
-
-
Type
-

List[Guild]

-
-
-
- -
-
-property accent_color
-

Returns the user’s accent color, if applicable.

-

There is an alias for this named accent_colour.

-
-

New in version 2.0.

-
-
-

Note

-

This information is only available via Client.fetch_user().

-
-
-
Type
-

Optional[Colour]

-
-
-
- -
-
-property accent_colour
-

Returns the user’s accent colour, if applicable.

-

There is an alias for this named accent_color.

-
-

New in version 2.0.

-
-
-

Note

-

This information is only available via Client.fetch_user().

-
-
-
Type
-

Optional[Colour]

-
-
-
- -
-
-property avatar
-

Returns an Asset for the avatar the user has.

-

If the user does not have a traditional avatar, None is returned. -If you want the avatar that a user has displayed, consider display_avatar.

-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property banner
-

Returns the user’s banner asset, if available.

-
-

New in version 2.0.

-
-
-

Note

-

This information is only available via Client.fetch_user().

-
-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property color
-

A property that returns a color denoting the rendered color -for the user. This always returns Colour.default().

-

There is an alias for this named colour.

-
-
Type
-

Colour

-
-
-
- -
-
-property colour
-

A property that returns a colour denoting the rendered colour -for the user. This always returns Colour.default().

-

There is an alias for this named color.

-
-
Type
-

Colour

-
-
-
- -
-
-await create_dm()
-

This function is a coroutine.

-

Creates a DMChannel with this user.

-

This should be rarely called, as this is done transparently for most -people.

-
-
Returns
-

The channel that was created.

-
-
Return type
-

DMChannel

-
-
-
- -
-
-property created_at
-

Returns the user’s creation time in UTC.

-

This is when the user’s Discord account was created.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-property default_avatar
-

Returns the default avatar for a given user. This is calculated by the user’s discriminator.

-
-
Type
-

Asset

-
-
-
- -
-
-property display_avatar
-

Returns the user’s display avatar.

-

For regular users this is just their default avatar or uploaded avatar.

-
-

New in version 2.0.

-
-
-
Type
-

Asset

-
-
-
- -
-
-property display_name
-

Returns the user’s display name.

-

For regular users this is just their username, but -if they have a guild specific nickname then that -is returned instead.

-
-
Type
-

str

-
-
-
- -
-
-await fetch_message(id, /)
-

This function is a coroutine.

-

Retrieves a single Message from the destination.

-
-
Parameters
-

id (int) – The message ID to look for.

-
-
Raises
-
    -
  • NotFound – The specified message was not found.

  • -
  • Forbidden – You do not have the permissions required to get a message.

  • -
  • HTTPException – Retrieving the message failed.

  • -
-
-
Returns
-

The message asked for.

-
-
Return type
-

Message

-
-
-
- -
-
-property mention
-

Returns a string that allows you to mention the given user.

-
-
Type
-

str

-
-
-
- -
-
-mentioned_in(message)
-

Checks if the user is mentioned in the specified message.

-
-
Parameters
-

message (Message) – The message to check if you’re mentioned in.

-
-
Returns
-

Indicates if the user is mentioned in the message.

-
-
Return type
-

bool

-
-
-
- -
-
-await pins()
-

This function is a coroutine.

-

Retrieves all messages that are currently pinned in the channel.

-
-

Note

-

Due to a limitation with the Discord API, the Message -objects returned by this method do not contain complete -Message.reactions data.

-
-
-
Raises
-

HTTPException – Retrieving the pinned messages failed.

-
-
Returns
-

The messages that are currently pinned.

-
-
Return type
-

List[Message]

-
-
-
- -
-
-property public_flags
-

The publicly available flags the user has.

-
-
Type
-

PublicUserFlags

-
-
-
- -
-
-await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
-

This function is a coroutine.

-

Sends a message to the destination with the content given.

-

The content must be a type that can convert to a string through str(content). -If the content is set to None (the default), then the embed parameter must -be provided.

-

To upload a single file, the file parameter should be used with a -single File object. To upload multiple files, the files -parameter should be used with a list of File objects. -Specifying both parameters will lead to an exception.

-

To upload a single embed, the embed parameter should be used with a -single Embed object. To upload multiple embeds, the embeds -parameter should be used with a list of Embed objects. -Specifying both parameters will lead to an exception.

-
-
Parameters
-
    -
  • content (Optional[str]) – The content of the message to send.

  • -
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • -
  • embed (Embed) – The rich embed for the content.

  • -
  • file (File) – The file to upload.

  • -
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • -
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, -then the message will have a nonce with this value.

  • -
  • delete_after (float) – If provided, the number of seconds to wait in the background -before deleting the message we just sent. If the deletion fails, -then it is silently ignored.

  • -
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is -passed, then the object is merged with allowed_mentions. -The merging behaviour only overrides attributes that have been explicitly passed -to the object, otherwise it uses the attributes set in allowed_mentions. -If no object is passed at all then the defaults given by allowed_mentions -are used instead.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using -to_reference() or passed directly as a Message. You can control -whether this mentions the author of the referenced message using the replied_user -attribute of allowed_mentions or by setting mention_author.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • -
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
-
-
Returns
-

The message that was sent.

-
-
Return type
-

Message

-
-
-
- -
-
-await trigger_typing()
-

This function is a coroutine.

-

Triggers a typing indicator to the destination.

-

Typing indicator will go away after 10 seconds, or after a message is sent.

-
- -
- -
-
-

Attachment

-
- -Methods -
-
-class discord.Attachment
-

Represents an attachment from Discord.

-
-
-
-str(x)
-

Returns the URL of the attachment.

-
- -
-
-x == y
-

Checks if the attachment is equal to another attachment.

-
- -
-
-x != y
-

Checks if the attachment is not equal to another attachment.

-
- -
-
-hash(x)
-

Returns the hash of the attachment.

-
- -
-
-int(x)
-

Returns the attachment’s ID.

-
- -
-
-

Changed in version 1.7: Attachment can now be casted to str and is hashable.

-
-
-
-id
-

The attachment ID.

-
-
Type
-

int

-
-
-
- -
-
-size
-

The attachment size in bytes.

-
-
Type
-

int

-
-
-
- -
-
-height
-

The attachment’s height, in pixels. Only applicable to images and videos.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-width
-

The attachment’s width, in pixels. Only applicable to images and videos.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-filename
-

The attachment’s filename.

-
-
Type
-

str

-
-
-
- -
-
-url
-

The attachment URL. If the message this attachment was attached -to is deleted, then this will 404.

-
-
Type
-

str

-
-
-
- -
-
-proxy_url
-

The proxy URL. This is a cached version of the url in the -case of images. When the message is deleted, this URL might be valid for a few -minutes or not valid at all.

-
-
Type
-

str

-
-
-
- -
-
-content_type
-

The attachment’s media type

-
-

New in version 1.7.

-
-
-
Type
-

Optional[str]

-
-
-
- -
-
-ephemeral
-

If the attachment is ephemeral. Ephemeral attachments are temporary and -will automatically be removed after a set period of time.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[bool]

-
-
-
- -
-
-is_spoiler()
-

bool: Whether this attachment contains a spoiler.

-
- -
-
-await save(fp, *, seek_begin=True, use_cached=False)
-

This function is a coroutine.

-

Saves this attachment into a file-like object.

-
-
Parameters
-
    -
  • fp (Union[io.BufferedIOBase, os.PathLike]) – The file-like object to save this attachment to or the filename -to use. If a filename is passed then a file is created with that -filename and used instead.

  • -
  • seek_begin (bool) – Whether to seek to the beginning of the file after saving is -successfully done.

  • -
  • use_cached (bool) – Whether to use proxy_url rather than url when downloading -the attachment. This will allow attachments to be saved after deletion -more often, compared to the regular URL which is generally deleted right -after the message is deleted. Note that this can still fail to download -deleted attachments if too much time has passed and it does not work -on some types of attachments.

  • -
-
-
Raises
-
-
-
Returns
-

The number of bytes written.

-
-
Return type
-

int

-
-
-
- -
-
-await read(*, use_cached=False)
-

This function is a coroutine.

-

Retrieves the content of this attachment as a bytes object.

-
-

New in version 1.1.

-
-
-
Parameters
-

use_cached (bool) – Whether to use proxy_url rather than url when downloading -the attachment. This will allow attachments to be saved after deletion -more often, compared to the regular URL which is generally deleted right -after the message is deleted. Note that this can still fail to download -deleted attachments if too much time has passed and it does not work -on some types of attachments.

-
-
Raises
-
    -
  • HTTPException – Downloading the attachment failed.

  • -
  • Forbidden – You do not have permissions to access this attachment

  • -
  • NotFound – The attachment was deleted.

  • -
-
-
Returns
-

The contents of the attachment.

-
-
Return type
-

bytes

-
-
-
- -
-
-await to_file(*, use_cached=False, spoiler=False)
-

This function is a coroutine.

-

Converts the attachment into a File suitable for sending via -abc.Messageable.send().

-
-

New in version 1.3.

-
-
-
Parameters
-
    -
  • use_cached (bool) –

    Whether to use proxy_url rather than url when downloading -the attachment. This will allow attachments to be saved after deletion -more often, compared to the regular URL which is generally deleted right -after the message is deleted. Note that this can still fail to download -deleted attachments if too much time has passed and it does not work -on some types of attachments.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • spoiler (bool) –

    Whether the file is a spoiler.

    -
    -

    New in version 1.4.

    -
    -

  • -
-
-
Raises
-
    -
  • HTTPException – Downloading the attachment failed.

  • -
  • Forbidden – You do not have permissions to access this attachment

  • -
  • NotFound – The attachment was deleted.

  • -
-
-
Returns
-

The attachment as a file suitable for sending.

-
-
Return type
-

File

-
-
-
- -
- -
-
-

Asset

-
- -Attributes -
- -Methods -
-
-class discord.Asset
-

Represents a CDN asset on Discord.

-
-
-
-str(x)
-

Returns the URL of the CDN asset.

-
- -
-
-len(x)
-

Returns the length of the CDN asset’s URL.

-
- -
-
-x == y
-

Checks if the asset is equal to another asset.

-
- -
-
-x != y
-

Checks if the asset is not equal to another asset.

-
- -
-
-hash(x)
-

Returns the hash of the asset.

-
- -
-
-
-property url
-

Returns the underlying URL of the asset.

-
-
Type
-

str

-
-
-
- -
-
-property key
-

Returns the identifying key of the asset.

-
-
Type
-

str

-
-
-
- -
-
-is_animated()
-

bool: Returns whether the asset is animated.

-
- -
-
-replace(*, size=..., format=..., static_format=...)
-

Returns a new asset with the passed components replaced.

-
-
Parameters
-
    -
  • size (int) – The new size of the asset.

  • -
  • format (str) – The new format to change it to. Must be either -‘webp’, ‘jpeg’, ‘jpg’, ‘png’, or ‘gif’ if it’s animated.

  • -
  • static_format (str) – The new format to change it to if the asset isn’t animated. -Must be either ‘webp’, ‘jpeg’, ‘jpg’, or ‘png’.

  • -
-
-
Raises
-

InvalidArgument – An invalid size or format was passed.

-
-
Returns
-

The newly updated asset.

-
-
Return type
-

Asset

-
-
-
- -
-
-with_size(size, /)
-

Returns a new asset with the specified size.

-
-
Parameters
-

size (int) – The new size of the asset.

-
-
Raises
-

InvalidArgument – The asset had an invalid size.

-
-
Returns
-

The new updated asset.

-
-
Return type
-

Asset

-
-
-
- -
-
-with_format(format, /)
-

Returns a new asset with the specified format.

-
-
Parameters
-

format (str) – The new format of the asset.

-
-
Raises
-

InvalidArgument – The asset had an invalid format.

-
-
Returns
-

The new updated asset.

-
-
Return type
-

Asset

-
-
-
- -
-
-with_static_format(format, /)
-

Returns a new asset with the specified static format.

-

This only changes the format if the underlying asset is -not animated. Otherwise, the asset is not changed.

-
-
Parameters
-

format (str) – The new static format of the asset.

-
-
Raises
-

InvalidArgument – The asset had an invalid format.

-
-
Returns
-

The new updated asset.

-
-
Return type
-

Asset

-
-
-
- -
-
-await read()
-

This function is a coroutine.

-

Retrieves the content of this asset as a bytes object.

-
-
Raises
-
-
-
Returns
-

The content of the asset.

-
-
Return type
-

bytes

-
-
-
- -
-
-await save(fp, *, seek_begin=True)
-

This function is a coroutine.

-

Saves this asset into a file-like object.

-
-
Parameters
-
    -
  • fp (Union[io.BufferedIOBase, os.PathLike]) – The file-like object to save this attachment to or the filename -to use. If a filename is passed then a file is created with that -filename and used instead.

  • -
  • seek_begin (bool) – Whether to seek to the beginning of the file after saving is -successfully done.

  • -
-
-
Raises
-
-
-
Returns
-

The number of bytes written.

-
-
Return type
-

int

-
-
-
- -
- -
-
-

Message

-
-
-class discord.Message
-

Represents a message from Discord.

-
-
-
-x == y
-

Checks if two messages are equal.

-
- -
-
-x != y
-

Checks if two messages are not equal.

-
- -
-
-hash(x)
-

Returns the message’s hash.

-
- -
-
-str(x)
-

Returns the message’s content.

-
- -
-
-int(x)
-

Returns the message’s ID.

-
- -
-
-
-tts
-

Specifies if the message was done with text-to-speech. -This can only be accurately received in on_message() due to -a discord limitation.

-
-
Type
-

bool

-
-
-
- -
-
-type
-

The type of message. In most cases this should not be checked, but it is helpful -in cases where it might be a system message for system_content.

-
-
Type
-

MessageType

-
-
-
- -
-
-author
-

A Member that sent the message. If channel is a -private channel or the user has the left the guild, then it is a User instead.

-
-
Type
-

Union[Member, abc.User]

-
-
-
- -
-
-content
-

The actual contents of the message.

-
-
Type
-

str

-
-
-
- -
-
-nonce
-

The value used by the discord guild and the client to verify that the message is successfully sent. -This is not stored long term within Discord’s servers and is only used ephemerally.

-
-
Type
-

Optional[Union[str, int]]

-
-
-
- -
-
-embeds
-

A list of embeds the message has.

-
-
Type
-

List[Embed]

-
-
-
- -
-
-channel
-

The TextChannel or Thread that the message was sent from. -Could be a DMChannel or GroupChannel if it’s a private message.

-
-
Type
-

Union[TextChannel, Thread, DMChannel, GroupChannel, PartialMessageable]

-
-
-
- -
-
-reference
-

The message that this message references. This is only applicable to messages of -type MessageType.pins_add, crossposted messages created by a -followed channel integration, or message replies.

-
-

New in version 1.5.

-
-
-
Type
-

Optional[MessageReference]

-
-
-
- -
-
-mention_everyone
-

Specifies if the message mentions everyone.

-
-

Note

-

This does not check if the @everyone or the @here text is in the message itself. -Rather this boolean indicates if either the @everyone or the @here text is in the message -and it did end up mentioning.

-
-
-
Type
-

bool

-
-
-
- -
-
-mentions
-

A list of Member that were mentioned. If the message is in a private message -then the list will be of User instead. For messages that are not of type -MessageType.default, this array can be used to aid in system messages. -For more information, see system_content.

-
-

Warning

-

The order of the mentions list is not in any particular order so you should -not rely on it. This is a Discord limitation, not one with the library.

-
-
-
Type
-

List[abc.User]

-
-
-
- -
-
-channel_mentions
-

A list of abc.GuildChannel that were mentioned. If the message is in a private message -then the list is always empty.

-
-
Type
-

List[abc.GuildChannel]

-
-
-
- -
-
-role_mentions
-

A list of Role that were mentioned. If the message is in a private message -then the list is always empty.

-
-
Type
-

List[Role]

-
-
-
- -
-
-id
-

The message ID.

-
-
Type
-

int

-
-
-
- -
-
-webhook_id
-

If this message was sent by a webhook, then this is the webhook ID’s that sent this -message.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-attachments
-

A list of attachments given to a message.

-
-
Type
-

List[Attachment]

-
-
-
- -
-
-pinned
-

Specifies if the message is currently pinned.

-
-
Type
-

bool

-
-
-
- -
-
-flags
-

Extra features of the message.

-
-

New in version 1.3.

-
-
-
Type
-

MessageFlags

-
-
-
- -
-
-reactions
-

Reactions to a message. Reactions can be either custom emoji or standard unicode emoji.

-
-
Type
-

List[Reaction]

-
-
-
- -
-
-activity
-

The activity associated with this message. Sent with Rich-Presence related messages that for -example, request joining, spectating, or listening to or with another member.

-

It is a dictionary with the following optional keys:

-
    -
  • type: An integer denoting the type of message activity being requested.

  • -
  • party_id: The party ID associated with the party.

  • -
-
-
Type
-

Optional[dict]

-
-
-
- -
-
-application
-

The rich presence enabled application associated with this message.

-

It is a dictionary with the following keys:

-
    -
  • id: A string representing the application’s ID.

  • -
  • name: A string representing the application’s name.

  • -
  • description: A string representing the application’s description.

  • -
  • icon: A string representing the icon ID of the application.

  • -
  • cover_image: A string representing the embed’s image asset ID.

  • -
-
-
Type
-

Optional[dict]

-
-
-
- -
-
-stickers
-

A list of sticker items given to the message.

-
-

New in version 1.6.

-
-
-
Type
-

List[StickerItem]

-
-
-
- -
-
-components
-

A list of components in the message.

-
-

New in version 2.0.

-
-
-
Type
-

List[Component]

-
-
-
- -
-
-guild
-

The guild that the message belongs to, if applicable.

-
-
Type
-

Optional[Guild]

-
-
-
- -
-
-raw_mentions
-

A property that returns an array of user IDs matched with -the syntax of <@user_id> in the message content.

-

This allows you to receive the user IDs of mentioned users -even in a private message context.

-
-
Type
-

List[int]

-
-
-
- -
-
-raw_channel_mentions
-

A property that returns an array of channel IDs matched with -the syntax of <#channel_id> in the message content.

-
-
Type
-

List[int]

-
-
-
- -
-
-raw_role_mentions
-

A property that returns an array of role IDs matched with -the syntax of <@&role_id> in the message content.

-
-
Type
-

List[int]

-
-
-
- -
-
-clean_content
-

A property that returns the content in a “cleaned up” -manner. This basically means that mentions are transformed -into the way the client shows it. e.g. <#id> will transform -into #name.

-

This will also transform @everyone and @here mentions into -non-mentions.

-
-

Note

-

This does not affect markdown. If you want to escape -or remove markdown then use utils.escape_markdown() or utils.remove_markdown() -respectively, along with this function.

-
-
-
Type
-

str

-
-
-
- -
-
-property created_at
-

The message’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-property edited_at
-

An aware UTC datetime object containing the edited time of the message.

-
-
Type
-

Optional[datetime.datetime]

-
-
-
- -
-
-property jump_url
-

Returns a URL that allows the client to jump to this message.

-
-
Type
-

str

-
-
-
- -
-
-is_system()
-

bool: Whether the message is a system message.

-

A system message is a message that is constructed entirely by the Discord API -in response to something.

-
-

New in version 1.3.

-
-
- -
-
-system_content
-

A property that returns the content that is rendered -regardless of the Message.type.

-

In the case of MessageType.default and MessageType.reply, -this just returns the regular Message.content. Otherwise this -returns an English message denoting the contents of the system message.

-
-
Type
-

str

-
-
-
- -
-
-await delete(*, delay=None, silent=False)
-

This function is a coroutine.

-

Deletes the message.

-

Your own messages could be deleted without any proper permissions. However to -delete other people’s messages, you need the manage_messages -permission.

-
-

Changed in version 1.1: Added the new delay keyword-only parameter.

-
-
-

Changed in version 2.0: Added the new silent keyword-only parameter.

-
-
-
Parameters
-
    -
  • delay (Optional[float]) – If provided, the number of seconds to wait in the background -before deleting the message. If the deletion fails then it is silently ignored.

  • -
  • silent (bool) – If silent is set to True, the error will not be raised, it will be ignored. -This defaults to False

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to delete the message.

  • -
  • NotFound – The message was deleted already

  • -
  • HTTPException – Deleting the message failed.

  • -
-
-
-
- -
-
-await edit(content=..., embed=..., embeds=..., attachments=..., suppress=..., delete_after=None, allowed_mentions=..., view=...)
-

This function is a coroutine.

-

Edits the message.

-

The content must be able to be transformed into a string via str(content).

-
-

Changed in version 1.3: The suppress keyword-only parameter was added.

-
-
-
Parameters
-
    -
  • content (Optional[str]) – The new content to replace the message with. -Could be None to remove the content.

  • -
  • embed (Optional[Embed]) – The new embed to replace the original with. -Could be None to remove the embed.

  • -
  • embeds (List[Embed]) –

    The new embeds to replace the original with. Must be a maximum of 10. -To remove all embeds [] should be passed.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • attachments (List[Attachment]) – A list of attachments to keep in the message. If [] is passed -then all attachments are removed.

  • -
  • suppress (bool) – Whether to suppress embeds for the message. This removes -all the embeds if set to True. If set to False -this brings the embeds back if they were suppressed. -Using this parameter requires manage_messages.

  • -
  • delete_after (Optional[float]) – If provided, the number of seconds to wait in the background -before deleting the message we just edited. If the deletion fails, -then it is silently ignored.

  • -
  • allowed_mentions (Optional[AllowedMentions]) –

    Controls the mentions being processed in this message. If this is -passed, then the object is merged with allowed_mentions. -The merging behaviour only overrides attributes that have been explicitly passed -to the object, otherwise it uses the attributes set in allowed_mentions. -If no object is passed at all then the defaults given by allowed_mentions -are used instead.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • view (Optional[View]) – The updated view to update this message with. If None is passed then -the view is removed.

  • -
-
-
Raises
-
    -
  • HTTPException – Editing the message failed.

  • -
  • Forbidden – Tried to suppress a message without permissions or - edited a message’s content or embed that isn’t yours.

  • -
  • InvalidArgument – You specified both embed and embeds

  • -
-
-
-
- -
-
-await publish()
-

This function is a coroutine.

-

Publishes this message to your announcement channel.

-

You must have the send_messages permission to do this.

-

If the message is not your own then the manage_messages -permission is also needed.

-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to publish this message.

  • -
  • HTTPException – Publishing the message failed.

  • -
-
-
-
- -
-
-await pin(*, reason=None)
-

This function is a coroutine.

-

Pins the message.

-

You must have the manage_messages permission to do -this in a non-private channel context.

-
-
Parameters
-

reason (Optional[str]) –

The reason for pinning the message. Shows up on the audit log.

-
-

New in version 1.4.

-
-

-
-
Raises
-
    -
  • Forbidden – You do not have permissions to pin the message.

  • -
  • NotFound – The message or channel was not found or deleted.

  • -
  • HTTPException – Pinning the message failed, probably due to the channel - having more than 50 pinned messages.

  • -
-
-
-
- -
-
-await unpin(*, reason=None)
-

This function is a coroutine.

-

Unpins the message.

-

You must have the manage_messages permission to do -this in a non-private channel context.

-
-
Parameters
-

reason (Optional[str]) –

The reason for unpinning the message. Shows up on the audit log.

-
-

New in version 1.4.

-
-

-
-
Raises
-
    -
  • Forbidden – You do not have permissions to unpin the message.

  • -
  • NotFound – The message or channel was not found or deleted.

  • -
  • HTTPException – Unpinning the message failed.

  • -
-
-
-
- -
-
-await add_reaction(emoji)
-

This function is a coroutine.

-

Add a reaction to the message.

-

The emoji may be a unicode emoji or a custom guild Emoji.

-

You must have the read_message_history permission -to use this. If nobody else has reacted to the message using this -emoji, the add_reactions permission is required.

-
-
Parameters
-

emoji (Union[Emoji, Reaction, PartialEmoji, str]) – The emoji to react with.

-
-
Raises
-
    -
  • HTTPException – Adding the reaction failed.

  • -
  • Forbidden – You do not have the proper permissions to react to the message.

  • -
  • NotFound – The emoji you specified was not found.

  • -
  • InvalidArgument – The emoji parameter is invalid.

  • -
-
-
-
- -
-
-await remove_reaction(emoji, member)
-

This function is a coroutine.

-

Remove a reaction by the member from the message.

-

The emoji may be a unicode emoji or a custom guild Emoji.

-

If the reaction is not your own (i.e. member parameter is not you) then -the manage_messages permission is needed.

-

The member parameter must represent a member and meet -the abc.Snowflake abc.

-
-
Parameters
-
-
-
Raises
-
    -
  • HTTPException – Removing the reaction failed.

  • -
  • Forbidden – You do not have the proper permissions to remove the reaction.

  • -
  • NotFound – The member or emoji you specified was not found.

  • -
  • InvalidArgument – The emoji parameter is invalid.

  • -
-
-
-
- -
-
-await clear_reaction(emoji)
-

This function is a coroutine.

-

Clears a specific reaction from the message.

-

The emoji may be a unicode emoji or a custom guild Emoji.

-

You need the manage_messages permission to use this.

-
-

New in version 1.3.

-
-
-
Parameters
-

emoji (Union[Emoji, Reaction, PartialEmoji, str]) – The emoji to clear.

-
-
Raises
-
    -
  • HTTPException – Clearing the reaction failed.

  • -
  • Forbidden – You do not have the proper permissions to clear the reaction.

  • -
  • NotFound – The emoji you specified was not found.

  • -
  • InvalidArgument – The emoji parameter is invalid.

  • -
-
-
-
- -
-
-await clear_reactions()
-

This function is a coroutine.

-

Removes all the reactions from the message.

-

You need the manage_messages permission to use this.

-
-
Raises
-
    -
  • HTTPException – Removing the reactions failed.

  • -
  • Forbidden – You do not have the proper permissions to remove all the reactions.

  • -
-
-
-
- -
-
-await create_thread(*, name, auto_archive_duration=...)
-

This function is a coroutine.

-

Creates a public thread from this message.

-

You must have create_public_threads in order to -create a public thread from a message.

-

The channel this message belongs in must be a TextChannel.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • name (str) – The name of the thread.

  • -
  • auto_archive_duration (int) – The duration in minutes before a thread is automatically archived for inactivity. -If not provided, the channel’s default auto archive duration is used.

  • -
-
-
Raises
-
-
-
Returns
-

The created thread.

-
-
Return type
-

Thread

-
-
-
- -
-
-await reply(content=None, **kwargs)
-

This function is a coroutine.

-

A shortcut method to abc.Messageable.send() to reply to the -Message.

-
-

New in version 1.6.

-
-
-
Raises
-
    -
  • HTTPException – Sending the message failed.

  • -
  • Forbidden – You do not have the proper permissions to send the message.

  • -
  • InvalidArgument – The files list is not of the appropriate size or - you specified both file and files.

  • -
-
-
Returns
-

The message that was sent.

-
-
Return type
-

Message

-
-
-
- -
-
-to_reference(*, fail_if_not_exists=True)
-

Creates a MessageReference from the current message.

-
-

New in version 1.6.

-
-
-
Parameters
-

fail_if_not_exists (bool) –

Whether replying using the message reference should raise HTTPException -if the message no longer exists or Discord could not fetch the message.

-
-

New in version 1.7.

-
-

-
-
Returns
-

The reference to this message.

-
-
Return type
-

MessageReference

-
-
-
- -
- -
-
-

Component

-
- -Attributes -
-
-class discord.Component
-

Represents a Discord Bot UI Kit Component.

-

Currently, the only components supported by Discord are:

- -

This class is abstract and cannot be instantiated.

-
-

New in version 2.0.

-
-
-
-type
-

The type of component.

-
-
Type
-

ComponentType

-
-
-
- -
- -
-
-

ActionRow

-
- -Attributes -
-
-class discord.ActionRow
-

Represents a Discord Bot UI Kit Action Row.

-

This is a component that holds up to 5 children components in a row.

-

This inherits from Component.

-
-

New in version 2.0.

-
-
-
-type
-

The type of component.

-
-
Type
-

ComponentType

-
-
-
- -
-
-children
-

The children components that this holds, if any.

-
-
Type
-

List[Component]

-
-
-
- -
- -
-
-

Button

-
- -Attributes -
-
-class discord.Button
-

Represents a button from the Discord Bot UI Kit.

-

This inherits from Component.

-
-

Note

-

The user constructible and usable type to create a button is discord.ui.Button -not this one.

-
-
-

New in version 2.0.

-
-
-
-style
-

The style of the button.

-
-
Type
-

ButtonStyle

-
-
-
- -
-
-custom_id
-

The ID of the button that gets received during an interaction. -If this button is for a URL, it does not have a custom ID.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-url
-

The URL this button sends you to.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-disabled
-

Whether the button is disabled or not.

-
-
Type
-

bool

-
-
-
- -
-
-label
-

The label of the button, if any.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-emoji
-

The emoji of the button, if available.

-
-
Type
-

Optional[PartialEmoji]

-
-
-
- -
- -
-
-

SelectMenu

-
-
-class discord.SelectMenu
-

Represents a select menu from the Discord Bot UI Kit.

-

A select menu is functionally the same as a dropdown, however -on mobile it renders a bit differently.

-
-

Note

-

The user constructible and usable type to create a select menu is -discord.ui.Select not this one.

-
-
-

New in version 2.0.

-
-
-
-custom_id
-

The ID of the select menu that gets received during an interaction.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-placeholder
-

The placeholder text that is shown if nothing is selected, if any.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-min_values
-

The minimum number of items that must be chosen for this select menu. -Defaults to 1 and must be between 1 and 25.

-
-
Type
-

int

-
-
-
- -
-
-max_values
-

The maximum number of items that must be chosen for this select menu. -Defaults to 1 and must be between 1 and 25.

-
-
Type
-

int

-
-
-
- -
-
-options
-

A list of options that can be selected in this menu.

-
-
Type
-

List[SelectOption]

-
-
-
- -
-
-disabled
-

Whether the select is disabled or not.

-
-
Type
-

bool

-
-
-
- -
- -
-
-

DeletedReferencedMessage

-
- -Attributes -
-
-class discord.DeletedReferencedMessage
-

A special sentinel type that denotes whether the -resolved message referenced message had since been deleted.

-

The purpose of this class is to separate referenced messages that could not be -fetched and those that were previously fetched but have since been deleted.

-
-

New in version 1.6.

-
-
-
-property id
-

The message ID of the deleted referenced message.

-
-
Type
-

int

-
-
-
- -
-
-property channel_id
-

The channel ID of the deleted referenced message.

-
-
Type
-

int

-
-
-
- -
-
-property guild_id
-

The guild ID of the deleted referenced message.

-
-
Type
-

Optional[int]

-
-
-
- -
- -
-
-

Reaction

-
- -Attributes -
- -Methods -
-
-class discord.Reaction
-

Represents a reaction to a message.

-

Depending on the way this object was created, some of the attributes can -have a value of None.

-
-
-
-x == y
-

Checks if two reactions are equal. This works by checking if the emoji -is the same. So two messages with the same reaction will be considered -“equal”.

-
- -
-
-x != y
-

Checks if two reactions are not equal.

-
- -
-
-hash(x)
-

Returns the reaction’s hash.

-
- -
-
-str(x)
-

Returns the string form of the reaction’s emoji.

-
- -
-
-
-emoji
-

The reaction emoji. May be a custom emoji, or a unicode emoji.

-
-
Type
-

Union[Emoji, PartialEmoji, str]

-
-
-
- -
-
-count
-

Number of times this reaction was made

-
-
Type
-

int

-
-
-
- -
-
-me
-

If the user sent this reaction.

-
-
Type
-

bool

-
-
-
- -
-
-message
-

Message this reaction is for.

-
-
Type
-

Message

-
-
-
- -
-
-async for ... in users(*, limit=None, after=None)
-

Returns an AsyncIterator representing the users that have reacted to the message.

-

The after parameter must represent a member -and meet the abc.Snowflake abc.

-

Examples

-

Usage

-
# I do not actually recommend doing this.
-async for user in reaction.users():
-    await channel.send(f'{user} has reacted with {reaction.emoji}!')
-
-
-

Flattening into a list:

-
users = await reaction.users().flatten()
-# users is now a list of User...
-winner = random.choice(users)
-await channel.send(f'{winner} has won the raffle.')
-
-
-
-
Parameters
-
    -
  • limit (Optional[int]) – The maximum number of results to return. -If not provided, returns all the users who -reacted to the message.

  • -
  • after (Optional[abc.Snowflake]) – For pagination, reactions are sorted by member.

  • -
-
-
Raises
-

HTTPException – Getting the users for the reaction failed.

-
-
Yields
-

Union[User, Member] – The member (if retrievable) or the user that has reacted -to this message. The case where it can be a Member is -in a guild message context. Sometimes it can be a User -if the member has left the guild.

-
-
-
- -
-
-is_custom_emoji()
-

bool: If this is a custom emoji.

-
- -
-
-await remove(user)
-

This function is a coroutine.

-

Remove the reaction by the provided User from the message.

-

If the reaction is not your own (i.e. user parameter is not you) then -the manage_messages permission is needed.

-

The user parameter must represent a user or member and meet -the abc.Snowflake abc.

-
-
Parameters
-

user (abc.Snowflake) – The user or member from which to remove the reaction.

-
-
Raises
-
    -
  • HTTPException – Removing the reaction failed.

  • -
  • Forbidden – You do not have the proper permissions to remove the reaction.

  • -
  • NotFound – The user you specified, or the reaction’s message was not found.

  • -
-
-
-
- -
-
-await clear()
-

This function is a coroutine.

-

Clears this reaction from the message.

-

You need the manage_messages permission to use this.

-
-

New in version 1.3.

-
-
-
Raises
-
    -
  • HTTPException – Clearing the reaction failed.

  • -
  • Forbidden – You do not have the proper permissions to clear the reaction.

  • -
  • NotFound – The emoji you specified was not found.

  • -
  • InvalidArgument – The emoji parameter is invalid.

  • -
-
-
-
- -
- -
-
-

Guild

-
- -Methods -
-
-class discord.Guild
-

Represents a Discord guild.

-

This is referred to as a “server” in the official Discord UI.

-
-
-
-x == y
-

Checks if two guilds are equal.

-
- -
-
-x != y
-

Checks if two guilds are not equal.

-
- -
-
-hash(x)
-

Returns the guild’s hash.

-
- -
-
-str(x)
-

Returns the guild’s name.

-
- -
-
-int(x)
-

Returns the guild’s ID.

-
- -
-
-
-name
-

The guild name.

-
-
Type
-

str

-
-
-
- -
-
-emojis
-

All emojis that the guild owns.

-
-
Type
-

Tuple[Emoji, …]

-
-
-
- -
-
-stickers
-

All stickers that the guild owns.

-
-

New in version 2.0.

-
-
-
Type
-

Tuple[GuildSticker, …]

-
-
-
- -
-
-region
-

The region the guild belongs on. There is a chance that the region -will be a str if the value is not recognised by the enumerator.

-
-
Type
-

VoiceRegion

-
-
-
- -
-
-afk_timeout
-

The timeout to get sent to the AFK channel.

-
-
Type
-

int

-
-
-
- -
-
-afk_channel
-

The channel that denotes the AFK channel. None if it doesn’t exist.

-
-
Type
-

Optional[VoiceChannel]

-
-
-
- -
-
-id
-

The guild’s ID.

-
-
Type
-

int

-
-
-
- -
-
-owner_id
-

The guild owner’s ID. Use Guild.owner instead.

-
-
Type
-

int

-
-
-
- -
-
-unavailable
-

Indicates if the guild is unavailable. If this is True then the -reliability of other attributes outside of Guild.id is slim and they might -all be None. It is best to not do anything with the guild if it is unavailable.

-

Check the on_guild_unavailable() and on_guild_available() events.

-
-
Type
-

bool

-
-
-
- -
-
-max_presences
-

The maximum amount of presences for the guild.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-max_members
-

The maximum amount of members for the guild.

-
-

Note

-

This attribute is only available via Client.fetch_guild().

-
-
-
Type
-

Optional[int]

-
-
-
- -
-
-max_video_channel_users
-

The maximum amount of users in a video channel.

-
-

New in version 1.4.

-
-
-
Type
-

Optional[int]

-
-
-
- -
-
-description
-

The guild’s description.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-mfa_level
-

Indicates the guild’s two factor authorisation level. If this value is 0 then -the guild does not require 2FA for their administrative members. If the value is -1 then they do.

-
-
Type
-

int

-
-
-
- -
-
-verification_level
-

The guild’s verification level.

-
-
Type
-

VerificationLevel

-
-
-
- -
-
-explicit_content_filter
-

The guild’s explicit content filter.

-
-
Type
-

ContentFilter

-
-
-
- -
-
-default_notifications
-

The guild’s notification settings.

-
-
Type
-

NotificationLevel

-
-
-
- -
-
-features
-

A list of features that the guild has. The features that a guild can have are -subject to arbitrary change by Discord.

-

They are currently as follows:

-
    -
  • ANIMATED_ICON: Guild can upload an animated icon.

  • -
  • BANNER: Guild can upload and use a banner. (i.e. banner)

  • -
  • COMMERCE: Guild can sell things using store channels.

  • -
  • COMMUNITY: Guild is a community server.

  • -
  • DISCOVERABLE: Guild shows up in Server Discovery.

  • -
  • FEATURABLE: Guild is able to be featured in Server Discovery.

  • -
  • INVITE_SPLASH: Guild’s invite page can have a special splash.

  • -
  • MEMBER_VERIFICATION_GATE_ENABLED: Guild has Membership Screening enabled.

  • -
  • MONETIZATION_ENABLED: Guild has enabled monetization.

  • -
  • MORE_EMOJI: Guild has increased custom emoji slots.

  • -
  • MORE_STICKERS: Guild has increased custom sticker slots.

  • -
  • NEWS: Guild can create news channels.

  • -
  • PARTNERED: Guild is a partnered server.

  • -
  • PREVIEW_ENABLED: Guild can be viewed before being accepted via Membership Screening.

  • -
  • PRIVATE_THREADS: Guild has access to create private threads.

  • -
  • SEVEN_DAY_THREAD_ARCHIVE: Guild has access to the seven day archive time for threads.

  • -
  • THREE_DAY_THREAD_ARCHIVE: Guild has access to the three day archive time for threads.

  • -
  • TICKETED_EVENTS_ENABLED: Guild has enabled ticketed events.

  • -
  • VANITY_URL: Guild can have a vanity invite URL (e.g. discord.gg/discord-api).

  • -
  • VERIFIED: Guild is a verified server.

  • -
  • VIP_REGIONS: Guild has VIP voice regions.

  • -
  • WELCOME_SCREEN_ENABLED: Guild has enabled the welcome screen.

  • -
-
-
Type
-

List[str]

-
-
-
- -
-
-premium_tier
-

The premium tier for this guild. Corresponds to “Nitro Server” in the official UI. -The number goes from 0 to 3 inclusive.

-
-
Type
-

int

-
-
-
- -
-
-premium_subscription_count
-

The number of “boosts” this guild currently has.

-
-
Type
-

int

-
-
-
- -
-
-preferred_locale
-

The preferred locale for the guild. Used when filtering Server Discovery -results to a specific language.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-nsfw_level
-

The guild’s NSFW level.

-
-

New in version 2.0.

-
-
-
Type
-

NSFWLevel

-
-
-
- -
-
-async for ... in fetch_members(*, limit=1000, after=None)
-

Retrieves an AsyncIterator that enables receiving the guild’s members. In order to use this, -Intents.members() must be enabled.

-
-

Note

-

This method is an API call. For general usage, consider members instead.

-
-
-

New in version 1.3.

-
-

All parameters are optional.

-
-
Parameters
-
    -
  • limit (Optional[int]) – The number of members to retrieve. Defaults to 1000. -Pass None to fetch all members. Note that this is potentially slow.

  • -
  • after (Optional[Union[abc.Snowflake, datetime.datetime]]) – Retrieve members after this date or object. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
-
-
Raises
-
-
-
Yields
-

Member – The member with the member data parsed.

-
-
-

Examples

-

Usage

-
async for member in guild.fetch_members(limit=150):
-    print(member.name)
-
-
-

Flattening into a list

-
members = await guild.fetch_members(limit=150).flatten()
-# members is now a list of Member...
-
-
-
- -
-
-async for ... in audit_logs(*, limit=100, before=None, after=None, oldest_first=None, user=None, action=None)
-

Returns an AsyncIterator that enables receiving the guild’s audit logs.

-

You must have the view_audit_log permission to use this.

-

Examples

-

Getting the first 100 entries:

-
async for entry in guild.audit_logs(limit=100):
-    print(f'{entry.user} did {entry.action} to {entry.target}')
-
-
-

Getting entries for a specific action:

-
async for entry in guild.audit_logs(action=discord.AuditLogAction.ban):
-    print(f'{entry.user} banned {entry.target}')
-
-
-

Getting entries made by a specific user:

-
entries = await guild.audit_logs(limit=None, user=guild.me).flatten()
-await channel.send(f'I made {len(entries)} moderation actions.')
-
-
-
-
Parameters
-
    -
  • limit (Optional[int]) – The number of entries to retrieve. If None retrieve all entries.

  • -
  • before (Union[abc.Snowflake, datetime.datetime]) – Retrieve entries before this date or entry. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • after (Union[abc.Snowflake, datetime.datetime]) – Retrieve entries after this date or entry. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • oldest_first (bool) – If set to True, return entries in oldest->newest order. Defaults to True if -after is specified, otherwise False.

  • -
  • user (abc.Snowflake) – The moderator to filter entries from.

  • -
  • action (AuditLogAction) – The action to filter with.

  • -
-
-
Raises
-
    -
  • Forbidden – You are not allowed to fetch audit logs

  • -
  • HTTPException – An error occurred while fetching the audit logs.

  • -
-
-
Yields
-

AuditLogEntry – The audit log entry.

-
-
-
- -
-
-property channels
-

A list of channels that belongs to this guild.

-
-
Type
-

List[abc.GuildChannel]

-
-
-
- -
-
-property threads
-

A list of threads that you have permission to view.

-
-

New in version 2.0.

-
-
-
Type
-

List[Thread]

-
-
-
- -
-
-property large
-

Indicates if the guild is a ‘large’ guild.

-

A large guild is defined as having more than large_threshold count -members, which for this library is set to the maximum of 250.

-
-
Type
-

bool

-
-
-
- -
-
-property voice_channels
-

A list of voice channels that belongs to this guild.

-

This is sorted by the position and are in UI order from top to bottom.

-
-
Type
-

List[VoiceChannel]

-
-
-
- -
-
-property stage_channels
-

A list of stage channels that belongs to this guild.

-
-

New in version 1.7.

-
-

This is sorted by the position and are in UI order from top to bottom.

-
-
Type
-

List[StageChannel]

-
-
-
- -
-
-property me
-

Similar to Client.user except an instance of Member. -This is essentially used to get the member version of yourself.

-
-
Type
-

Member

-
-
-
- -
-
-property voice_client
-

Returns the VoiceProtocol associated with this guild, if any.

-
-
Type
-

Optional[VoiceProtocol]

-
-
-
- -
-
-property text_channels
-

A list of text channels that belongs to this guild.

-

This is sorted by the position and are in UI order from top to bottom.

-
-
Type
-

List[TextChannel]

-
-
-
- -
-
-property categories
-

A list of categories that belongs to this guild.

-

This is sorted by the position and are in UI order from top to bottom.

-
-
Type
-

List[CategoryChannel]

-
-
-
- -
-
-by_category()
-

Returns every CategoryChannel and their associated channels.

-

These channels and categories are sorted in the official Discord UI order.

-

If the channels do not have a category, then the first element of the tuple is -None.

-
-
Returns
-

The categories and their associated channels.

-
-
Return type
-

List[Tuple[Optional[CategoryChannel], List[abc.GuildChannel]]]

-
-
-
- -
-
-get_channel_or_thread(channel_id, /)
-

Returns a channel or thread with the given ID.

-
-

New in version 2.0.

-
-
-
Parameters
-

channel_id (int) – The ID to search for.

-
-
Returns
-

The returned channel or thread or None if not found.

-
-
Return type
-

Optional[Union[Thread, abc.GuildChannel]]

-
-
-
- -
-
-get_channel(channel_id, /)
-

Returns a channel with the given ID.

-
-

Note

-

This does not search for threads.

-
-
-
Parameters
-

channel_id (int) – The ID to search for.

-
-
Returns
-

The returned channel or None if not found.

-
-
Return type
-

Optional[abc.GuildChannel]

-
-
-
- -
-
-get_thread(thread_id, /)
-

Returns a thread with the given ID.

-
-

New in version 2.0.

-
-
-
Parameters
-

thread_id (int) – The ID to search for.

-
-
Returns
-

The returned thread or None if not found.

-
-
Return type
-

Optional[Thread]

-
-
-
- -
-
-property system_channel
-

Returns the guild’s channel used for system messages.

-

If no channel is set, then this returns None.

-
-
Type
-

Optional[TextChannel]

-
-
-
- -
-
-property system_channel_flags
-

Returns the guild’s system channel settings.

-
-
Type
-

SystemChannelFlags

-
-
-
- -
-
-property rules_channel
-

Return’s the guild’s channel used for the rules. -The guild must be a Community guild.

-

If no channel is set, then this returns None.

-
-

New in version 1.3.

-
-
-
Type
-

Optional[TextChannel]

-
-
-
- -
-
-property public_updates_channel
-

Return’s the guild’s channel where admins and -moderators of the guilds receive notices from Discord. The guild must be a -Community guild.

-

If no channel is set, then this returns None.

-
-

New in version 1.4.

-
-
-
Type
-

Optional[TextChannel]

-
-
-
- -
-
-property emoji_limit
-

The maximum number of emoji slots this guild has.

-
-
Type
-

int

-
-
-
- -
-
-property sticker_limit
-

The maximum number of sticker slots this guild has.

-
-

New in version 2.0.

-
-
-
Type
-

int

-
-
-
- -
-
-property bitrate_limit
-

The maximum bitrate for voice channels this guild can have.

-
-
Type
-

float

-
-
-
- -
-
-property filesize_limit
-

The maximum number of bytes files can have when uploaded to this guild.

-
-
Type
-

int

-
-
-
- -
-
-property members
-

A list of members that belong to this guild.

-
-
Type
-

List[Member]

-
-
-
- -
-
-property humans
-

A list of human members that belong to this guild.

-
-

New in version 2.0.

-
-
-
Type
-

List[Member]

-
-
-
- -
-
-property bots
-

A list of bots that belong to this guild.

-
-

New in version 2.0.

-
-
-
Type
-

List[Member]

-
-
-
- -
-
-get_member(user_id, /)
-

Returns a member with the given ID.

-
-
Parameters
-

user_id (int) – The ID to search for.

-
-
Returns
-

The member or None if not found.

-
-
Return type
-

Optional[Member]

-
-
-
- -
-
-property premium_subscribers
-

A list of members who have “boosted” this guild.

-
-
Type
-

List[Member]

-
-
-
- -
-
-property roles
-

Returns a list of the guild’s roles in hierarchy order.

-

The first element of this list will be the lowest role in the -hierarchy.

-
-
Type
-

List[Role]

-
-
-
- -
-
-get_role(role_id, /)
-

Returns a role with the given ID.

-
-
Parameters
-

role_id (int) – The ID to search for.

-
-
Returns
-

The role or None if not found.

-
-
Return type
-

Optional[Role]

-
-
-
- -
-
-property default_role
-

Gets the @everyone role that all members have by default.

-
-
Type
-

Role

-
-
-
- -
-
-property premium_subscriber_role
-

Gets the premium subscriber role, AKA “boost” role, in this guild.

-
-

New in version 1.6.

-
-
-
Type
-

Optional[Role]

-
-
-
- -
-
-property self_role
-

Gets the role associated with this client’s user, if any.

-
-

New in version 1.6.

-
-
-
Type
-

Optional[Role]

-
-
-
- -
-
-property stage_instances
-

Returns a list of the guild’s stage instances that -are currently running.

-
-

New in version 2.0.

-
-
-
Type
-

List[StageInstance]

-
-
-
- -
-
-get_stage_instance(stage_instance_id, /)
-

Returns a stage instance with the given ID.

-
-

New in version 2.0.

-
-
-
Parameters
-

stage_instance_id (int) – The ID to search for.

-
-
Returns
-

The stage instance or None if not found.

-
-
Return type
-

Optional[StageInstance]

-
-
-
- -
-
-property owner
-

The member that owns the guild.

-
-
Type
-

Optional[Member]

-
-
-
- -
-
-property icon
-

Returns the guild’s icon asset, if available.

-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property banner
-

Returns the guild’s banner asset, if available.

-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property splash
-

Returns the guild’s invite splash asset, if available.

-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property discovery_splash
-

Returns the guild’s discovery splash asset, if available.

-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property member_count
-

Returns the true member count regardless of it being loaded fully or not.

-
-

Warning

-

Due to a Discord limitation, in order for this attribute to remain up-to-date and -accurate, it requires Intents.members to be specified.

-
-
-
Type
-

int

-
-
-
- -
-
-property chunked
-

Returns a boolean indicating if the guild is “chunked”.

-

A chunked guild means that member_count is equal to the -number of members stored in the internal members cache.

-

If this value returns False, then you should request for -offline members.

-
-
Type
-

bool

-
-
-
- -
-
-property shard_id
-

Returns the shard ID for this guild if applicable.

-
-
Type
-

int

-
-
-
- -
-
-property created_at
-

Returns the guild’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-get_member_named(name, /)
-

Returns the first member found that matches the name provided.

-

The name can have an optional discriminator argument, e.g. “Jake#0001” -or “Jake” will both do the lookup. However the former will give a more -precise result. Note that the discriminator must have all 4 digits -for this to work.

-

If a nickname is passed, then it is looked up via the nickname. Note -however, that a nickname + discriminator combo will not lookup the nickname -but rather the username + discriminator combo due to nickname + discriminator -not being unique.

-

If no member is found, None is returned.

-
-
Parameters
-

name (str) – The name of the member to lookup with an optional discriminator.

-
-
Returns
-

The member in this guild with the associated name. If not found -then None is returned.

-
-
Return type
-

Optional[Member]

-
-
-
- -
-
-await create_text_channel(name, *, reason=None, category=None, position=..., topic=..., slowmode_delay=..., nsfw=..., overwrites=...)
-

This function is a coroutine.

-

Creates a TextChannel for the guild.

-

Note that you need the manage_channels permission -to create the channel.

-

The overwrites parameter can be used to create a ‘secret’ -channel upon creation. This parameter expects a dict of -overwrites with the target (either a Member or a Role) -as the key and a PermissionOverwrite as the value.

-
-

Note

-

Creating a channel of a specified position will not update the position of -other channels to follow suit. A follow-up call to edit() -will be required to update the position of the channel in the channel list.

-
-

Examples

-

Creating a basic channel:

-
channel = await guild.create_text_channel('cool-channel')
-
-
-

Creating a “secret” channel:

-
overwrites = {
-    guild.default_role: discord.PermissionOverwrite(read_messages=False),
-    guild.me: discord.PermissionOverwrite(read_messages=True)
-}
-
-channel = await guild.create_text_channel('secret', overwrites=overwrites)
-
-
-
-
Parameters
-
    -
  • name (str) – The channel’s name.

  • -
  • overwrites (Dict[Union[Role, Member], PermissionOverwrite]) – A dict of target (either a role or a member) to -PermissionOverwrite to apply upon creation of a channel. -Useful for creating secret channels.

  • -
  • category (Optional[CategoryChannel]) – The category to place the newly created channel under. -The permissions will be automatically synced to category if no -overwrites are provided.

  • -
  • position (int) – The position in the channel list. This is a number that starts -at 0. e.g. the top channel is position 0.

  • -
  • topic (str) – The new channel’s topic.

  • -
  • slowmode_delay (int) – Specifies the slowmode rate limit for user in this channel, in seconds. -The maximum value possible is 21600.

  • -
  • nsfw (bool) – To mark the channel as NSFW or not.

  • -
  • reason (Optional[str]) – The reason for creating this channel. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to create this channel.

  • -
  • HTTPException – Creating the channel failed.

  • -
  • InvalidArgument – The permission overwrite information is not in proper form.

  • -
-
-
Returns
-

The channel that was just created.

-
-
Return type
-

TextChannel

-
-
-
- -
-
-await create_voice_channel(name, *, reason=None, category=None, position=..., bitrate=..., user_limit=..., rtc_region=..., video_quality_mode=..., overwrites=...)
-

This function is a coroutine.

-

This is similar to create_text_channel() except makes a VoiceChannel instead.

-
-
Parameters
-
    -
  • name (str) – The channel’s name.

  • -
  • overwrites (Dict[Union[Role, Member], PermissionOverwrite]) – A dict of target (either a role or a member) to -PermissionOverwrite to apply upon creation of a channel. -Useful for creating secret channels.

  • -
  • category (Optional[CategoryChannel]) – The category to place the newly created channel under. -The permissions will be automatically synced to category if no -overwrites are provided.

  • -
  • position (int) – The position in the channel list. This is a number that starts -at 0. e.g. the top channel is position 0.

  • -
  • bitrate (int) – The channel’s preferred audio bitrate in bits per second.

  • -
  • user_limit (int) – The channel’s limit for number of members that can be in a voice channel.

  • -
  • rtc_region (Optional[VoiceRegion]) –

    The region for the voice channel’s voice communication. -A value of None indicates automatic voice region detection.

    -
    -

    New in version 1.7.

    -
    -

  • -
  • video_quality_mode (VideoQualityMode) –

    The camera video quality for the voice channel’s participants.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • reason (Optional[str]) – The reason for creating this channel. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to create this channel.

  • -
  • HTTPException – Creating the channel failed.

  • -
  • InvalidArgument – The permission overwrite information is not in proper form.

  • -
-
-
Returns
-

The channel that was just created.

-
-
Return type
-

VoiceChannel

-
-
-
- -
-
-await create_stage_channel(name, *, topic, position=..., overwrites=..., category=None, reason=None)
-

This function is a coroutine.

-

This is similar to create_text_channel() except makes a StageChannel instead.

-
-

New in version 1.7.

-
-
-
Parameters
-
    -
  • name (str) – The channel’s name.

  • -
  • topic (str) – The new channel’s topic.

  • -
  • overwrites (Dict[Union[Role, Member], PermissionOverwrite]) – A dict of target (either a role or a member) to -PermissionOverwrite to apply upon creation of a channel. -Useful for creating secret channels.

  • -
  • category (Optional[CategoryChannel]) – The category to place the newly created channel under. -The permissions will be automatically synced to category if no -overwrites are provided.

  • -
  • position (int) – The position in the channel list. This is a number that starts -at 0. e.g. the top channel is position 0.

  • -
  • reason (Optional[str]) – The reason for creating this channel. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to create this channel.

  • -
  • HTTPException – Creating the channel failed.

  • -
  • InvalidArgument – The permission overwrite information is not in proper form.

  • -
-
-
Returns
-

The channel that was just created.

-
-
Return type
-

StageChannel

-
-
-
- -
-
-await create_category(name, *, overwrites=..., reason=None, position=...)
-

This function is a coroutine.

-

Same as create_text_channel() except makes a CategoryChannel instead.

-
-

Note

-

The category parameter is not supported in this function since categories -cannot have categories.

-
-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to create this channel.

  • -
  • HTTPException – Creating the channel failed.

  • -
  • InvalidArgument – The permission overwrite information is not in proper form.

  • -
-
-
Returns
-

The channel that was just created.

-
-
Return type
-

CategoryChannel

-
-
-
- -
-
-await create_category_channel(name, *, overwrites=..., reason=None, position=...)
-

This function is a coroutine.

-

Same as create_text_channel() except makes a CategoryChannel instead.

-
-

Note

-

The category parameter is not supported in this function since categories -cannot have categories.

-
-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to create this channel.

  • -
  • HTTPException – Creating the channel failed.

  • -
  • InvalidArgument – The permission overwrite information is not in proper form.

  • -
-
-
Returns
-

The channel that was just created.

-
-
Return type
-

CategoryChannel

-
-
-
- -
-
-await leave()
-

This function is a coroutine.

-

Leaves the guild.

-
-

Note

-

You cannot leave the guild that you own, you must delete it instead -via delete().

-
-
-
Raises
-

HTTPException – Leaving the guild failed.

-
-
-
- -
-
-await delete()
-

This function is a coroutine.

-

Deletes the guild. You must be the guild owner to delete the -guild.

-
-
Raises
-
    -
  • HTTPException – Deleting the guild failed.

  • -
  • Forbidden – You do not have permissions to delete the guild.

  • -
-
-
-
- -
-
-await edit(*, reason=..., name=..., description=..., icon=..., banner=..., splash=..., discovery_splash=..., community=..., region=..., afk_channel=..., owner=..., afk_timeout=..., default_notifications=..., verification_level=..., explicit_content_filter=..., vanity_code=..., system_channel=..., system_channel_flags=..., preferred_locale=..., rules_channel=..., public_updates_channel=...)
-

This function is a coroutine.

-

Edits the guild.

-

You must have the manage_guild permission -to edit the guild.

-
-

Changed in version 1.4: The rules_channel and public_updates_channel keyword-only parameters were added.

-
-
-

Changed in version 2.0: The discovery_splash and community keyword-only parameters were added.

-
-
-

Changed in version 2.0: The newly updated guild is returned.

-
-
-
Parameters
-
    -
  • name (str) – The new name of the guild.

  • -
  • description (Optional[str]) – The new description of the guild. Could be None for no description. -This is only available to guilds that contain PUBLIC in Guild.features.

  • -
  • icon (bytes) – A bytes-like object representing the icon. Only PNG/JPEG is supported. -GIF is only available to guilds that contain ANIMATED_ICON in Guild.features. -Could be None to denote removal of the icon.

  • -
  • banner (bytes) – A bytes-like object representing the banner. -Could be None to denote removal of the banner. This is only available to guilds that contain -BANNER in Guild.features.

  • -
  • splash (bytes) – A bytes-like object representing the invite splash. -Only PNG/JPEG supported. Could be None to denote removing the -splash. This is only available to guilds that contain INVITE_SPLASH -in Guild.features.

  • -
  • discovery_splash (bytes) – A bytes-like object representing the discovery splash. -Only PNG/JPEG supported. Could be None to denote removing the -splash. This is only available to guilds that contain DISCOVERABLE -in Guild.features.

  • -
  • community (bool) – Whether the guild should be a Community guild. If set to True, both rules_channel -and public_updates_channel parameters are required.

  • -
  • region (Union[str, VoiceRegion]) – The new region for the guild’s voice communication.

  • -
  • afk_channel (Optional[VoiceChannel]) – The new channel that is the AFK channel. Could be None for no AFK channel.

  • -
  • afk_timeout (int) – The number of seconds until someone is moved to the AFK channel.

  • -
  • owner (Member) – The new owner of the guild to transfer ownership to. Note that you must -be owner of the guild to do this.

  • -
  • verification_level (VerificationLevel) – The new verification level for the guild.

  • -
  • default_notifications (NotificationLevel) – The new default notification level for the guild.

  • -
  • explicit_content_filter (ContentFilter) – The new explicit content filter for the guild.

  • -
  • vanity_code (str) – The new vanity code for the guild.

  • -
  • system_channel (Optional[TextChannel]) – The new channel that is used for the system channel. Could be None for no system channel.

  • -
  • system_channel_flags (SystemChannelFlags) – The new system channel settings to use with the new system channel.

  • -
  • preferred_locale (str) – The new preferred locale for the guild. Used as the primary language in the guild. -If set, this must be an ISO 639 code, e.g. en-US or ja or zh-CN.

  • -
  • rules_channel (Optional[TextChannel]) – The new channel that is used for rules. This is only available to -guilds that contain PUBLIC in Guild.features. Could be None for no rules -channel.

  • -
  • public_updates_channel (Optional[TextChannel]) – The new channel that is used for public updates from Discord. This is only available to -guilds that contain PUBLIC in Guild.features. Could be None for no -public updates channel.

  • -
  • reason (Optional[str]) – The reason for editing this guild. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to edit the guild.

  • -
  • HTTPException – Editing the guild failed.

  • -
  • InvalidArgument – The image format passed in to icon is invalid. It must be - PNG or JPG. This is also raised if you are not the owner of the - guild and request an ownership transfer.

  • -
-
-
Returns
-

The newly updated guild. Note that this has the same limitations as -mentioned in Client.fetch_guild() and may not have full data.

-
-
Return type
-

Guild

-
-
-
- -
-
-await fetch_channels()
-

This function is a coroutine.

-

Retrieves all abc.GuildChannel that the guild has.

-
-

Note

-

This method is an API call. For general usage, consider channels instead.

-
-
-

New in version 1.2.

-
-
-
Raises
-
    -
  • InvalidData – An unknown channel type was received from Discord.

  • -
  • HTTPException – Retrieving the channels failed.

  • -
-
-
Returns
-

All channels in the guild.

-
-
Return type
-

Sequence[abc.GuildChannel]

-
-
-
- -
-
-await active_threads()
-

This function is a coroutine.

-

Returns a list of active Thread that the client can access.

-

This includes both private and public threads.

-
-

New in version 2.0.

-
-
-
Raises
-

HTTPException – The request to get the active threads failed.

-
-
Returns
-

The active threads

-
-
Return type
-

List[Thread]

-
-
-
- -
-
-await fetch_member(member_id, /)
-

This function is a coroutine.

-

Retrieves a Member from a guild ID, and a member ID.

-
-

Note

-

This method is an API call. If you have Intents.members and member cache enabled, consider get_member() instead.

-
-
-
Parameters
-

member_id (int) – The member’s ID to fetch from.

-
-
Raises
-
    -
  • Forbidden – You do not have access to the guild.

  • -
  • HTTPException – Fetching the member failed.

  • -
  • NotFound – A member with that ID does not exist.

  • -
-
-
Returns
-

The member from the member ID.

-
-
Return type
-

Member

-
-
-
- -
-
-await try_member(member_id, /)
-

This function is a coroutine.

-

Returns a member with the given ID. This uses the cache first, and if not found, it’ll request using fetch_member().

-
-

Note

-

This method might result in an API call.

-
-
-
Parameters
-

member_id (int) – The ID to search for.

-
-
Returns
-

The member or None if not found.

-
-
Return type
-

Optional[Member]

-
-
-
- -
-
-await fetch_ban(user)
-

This function is a coroutine.

-

Retrieves the BanEntry for a user.

-

You must have the ban_members permission -to get this information.

-
-
Parameters
-

user (abc.Snowflake) – The user to get ban information from.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to get the information.

  • -
  • NotFound – This user is not banned.

  • -
  • HTTPException – An error occurred while fetching the information.

  • -
-
-
Returns
-

The BanEntry object for the specified user.

-
-
Return type
-

BanEntry

-
-
-
- -
-
-await fetch_channel(channel_id, /)
-

This function is a coroutine.

-

Retrieves a abc.GuildChannel or Thread with the specified ID.

-
-

Note

-

This method is an API call. For general usage, consider get_channel_or_thread() instead.

-
-
-

New in version 2.0.

-
-
-
Raises
-
    -
  • InvalidData – An unknown channel type was received from Discord - or the guild the channel belongs to is not the same - as the one in this object points to.

  • -
  • HTTPException – Retrieving the channel failed.

  • -
  • NotFound – Invalid Channel ID.

  • -
  • Forbidden – You do not have permission to fetch this channel.

  • -
-
-
Returns
-

The channel from the ID.

-
-
Return type
-

Union[abc.GuildChannel, Thread]

-
-
-
- -
-
-await bans()
-

This function is a coroutine.

-

Retrieves all the users that are banned from the guild as a list of BanEntry.

-

You must have the ban_members permission -to get this information.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to get the information.

  • -
  • HTTPException – An error occurred while fetching the information.

  • -
-
-
Returns
-

A list of BanEntry objects.

-
-
Return type
-

List[BanEntry]

-
-
-
- -
-
-await prune_members(*, days, compute_prune_count=True, roles=..., reason=None)
-

This function is a coroutine.

-

Prunes the guild from its inactive members.

-

The inactive members are denoted if they have not logged on in -days number of days and they have no roles.

-

You must have the kick_members permission -to use this.

-

To check how many members you would prune without actually pruning, -see the estimate_pruned_members() function.

-

To prune members that have specific roles see the roles parameter.

-
-

Changed in version 1.4: The roles keyword-only parameter was added.

-
-
-
Parameters
-
    -
  • days (int) – The number of days before counting as inactive.

  • -
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • -
  • compute_prune_count (bool) – Whether to compute the prune count. This defaults to True -which makes it prone to timeouts in very large guilds. In order -to prevent timeouts, you must set this to False. If this is -set to False, then this function will always return None.

  • -
  • roles (List[abc.Snowflake]) – A list of abc.Snowflake that represent roles to include in the pruning process. If a member -has a role that is not specified, they’ll be excluded.

  • -
-
-
Raises
-
-
-
Returns
-

The number of members pruned. If compute_prune_count is False -then this returns None.

-
-
Return type
-

Optional[int]

-
-
-
- -
-
-await templates()
-

This function is a coroutine.

-

Gets the list of templates from this guild.

-

Requires manage_guild permissions.

-
-

New in version 1.7.

-
-
-
Raises
-

Forbidden – You don’t have permissions to get the templates.

-
-
Returns
-

The templates for this guild.

-
-
Return type
-

List[Template]

-
-
-
- -
-
-await webhooks()
-

This function is a coroutine.

-

Gets the list of webhooks from this guild.

-

Requires manage_webhooks permissions.

-
-
Raises
-

Forbidden – You don’t have permissions to get the webhooks.

-
-
Returns
-

The webhooks for this guild.

-
-
Return type
-

List[Webhook]

-
-
-
- -
-
-await estimate_pruned_members(*, days, roles=...)
-

This function is a coroutine.

-

Similar to prune_members() except instead of actually -pruning members, it returns how many members it would prune -from the guild had it been called.

-
-
Parameters
-
    -
  • days (int) – The number of days before counting as inactive.

  • -
  • roles (List[abc.Snowflake]) –

    A list of abc.Snowflake that represent roles to include in the estimate. If a member -has a role that is not specified, they’ll be excluded.

    -
    -

    New in version 1.7.

    -
    -

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to prune members.

  • -
  • HTTPException – An error occurred while fetching the prune members estimate.

  • -
  • InvalidArgument – An integer was not passed for days.

  • -
-
-
Returns
-

The number of members estimated to be pruned.

-
-
Return type
-

int

-
-
-
- -
-
-await invites()
-

This function is a coroutine.

-

Returns a list of all active instant invites from the guild.

-

You must have the manage_guild permission to get -this information.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to get the information.

  • -
  • HTTPException – An error occurred while fetching the information.

  • -
-
-
Returns
-

The list of invites that are currently active.

-
-
Return type
-

List[Invite]

-
-
-
- -
-
-await create_template(*, name, description=...)
-

This function is a coroutine.

-

Creates a template for the guild.

-

You must have the manage_guild permission to -do this.

-
-

New in version 1.7.

-
-
-
Parameters
-
    -
  • name (str) – The name of the template.

  • -
  • description (str) – The description of the template.

  • -
-
-
-
- -
-
-await create_integration(*, type, id)
-

This function is a coroutine.

-

Attaches an integration to the guild.

-

You must have the manage_guild permission to -do this.

-
-

New in version 1.4.

-
-
-
Parameters
-
    -
  • type (str) – The integration type (e.g. Twitch).

  • -
  • id (int) – The integration ID.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permission to create the integration.

  • -
  • HTTPException – The account could not be found.

  • -
-
-
-
- -
-
-await integrations()
-

This function is a coroutine.

-

Returns a list of all integrations attached to the guild.

-

You must have the manage_guild permission to -do this.

-
-

New in version 1.4.

-
-
-
Raises
-
    -
  • Forbidden – You do not have permission to create the integration.

  • -
  • HTTPException – Fetching the integrations failed.

  • -
-
-
Returns
-

The list of integrations that are attached to the guild.

-
-
Return type
-

List[Integration]

-
-
-
- -
-
-await fetch_stickers()
-

This function is a coroutine.

-

Retrieves a list of all Stickers for the guild.

-
-

New in version 2.0.

-
-
-

Note

-

This method is an API call. For general usage, consider stickers instead.

-
-
-
Raises
-

HTTPException – An error occurred fetching the stickers.

-
-
Returns
-

The retrieved stickers.

-
-
Return type
-

List[GuildSticker]

-
-
-
- -
-
-await fetch_sticker(sticker_id, /)
-

This function is a coroutine.

-

Retrieves a custom Sticker from the guild.

-
-

New in version 2.0.

-
-
-

Note

-

This method is an API call. -For general usage, consider iterating over stickers instead.

-
-
-
Parameters
-

sticker_id (int) – The sticker’s ID.

-
-
Raises
-
    -
  • NotFound – The sticker requested could not be found.

  • -
  • HTTPException – An error occurred fetching the sticker.

  • -
-
-
Returns
-

The retrieved sticker.

-
-
Return type
-

GuildSticker

-
-
-
- -
-
-await create_sticker(*, name, description=None, emoji, file, reason=None)
-

This function is a coroutine.

-

Creates a Sticker for the guild.

-

You must have manage_emojis_and_stickers permission to -do this.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • name (str) – The sticker name. Must be at least 2 characters.

  • -
  • description (Optional[str]) – The sticker’s description. Can be None.

  • -
  • emoji (str) – The name of a unicode emoji that represents the sticker’s expression.

  • -
  • file (File) – The file of the sticker to upload.

  • -
  • reason (str) – The reason for creating this sticker. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You are not allowed to create stickers.

  • -
  • HTTPException – An error occurred creating a sticker.

  • -
-
-
Returns
-

The created sticker.

-
-
Return type
-

GuildSticker

-
-
-
- -
-
-await delete_sticker(sticker, *, reason=None)
-

This function is a coroutine.

-

Deletes the custom Sticker from the guild.

-

You must have manage_emojis_and_stickers permission to -do this.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • sticker (abc.Snowflake) – The sticker you are deleting.

  • -
  • reason (Optional[str]) – The reason for deleting this sticker. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You are not allowed to delete stickers.

  • -
  • HTTPException – An error occurred deleting the sticker.

  • -
-
-
-
- -
-
-await fetch_emojis()
-

This function is a coroutine.

-

Retrieves all custom Emojis from the guild.

-
-

Note

-

This method is an API call. For general usage, consider emojis instead.

-
-
-
Raises
-

HTTPException – An error occurred fetching the emojis.

-
-
Returns
-

The retrieved emojis.

-
-
Return type
-

List[Emoji]

-
-
-
- -
-
-await fetch_emoji(emoji_id, /)
-

This function is a coroutine.

-

Retrieves a custom Emoji from the guild.

-
-

Note

-

This method is an API call. -For general usage, consider iterating over emojis instead.

-
-
-
Parameters
-

emoji_id (int) – The emoji’s ID.

-
-
Raises
-
    -
  • NotFound – The emoji requested could not be found.

  • -
  • HTTPException – An error occurred fetching the emoji.

  • -
-
-
Returns
-

The retrieved emoji.

-
-
Return type
-

Emoji

-
-
-
- -
-
-await create_custom_emoji(*, name, image, roles=..., reason=None)
-

This function is a coroutine.

-

Creates a custom Emoji for the guild.

-

There is currently a limit of 50 static and animated emojis respectively per guild, -unless the guild has the MORE_EMOJI feature which extends the limit to 200.

-

You must have the manage_emojis permission to -do this.

-
-
Parameters
-
    -
  • name (str) – The emoji name. Must be at least 2 characters.

  • -
  • image (bytes) – The bytes-like object representing the image data to use. -Only JPG, PNG and GIF images are supported.

  • -
  • roles (List[Role]) – A list of Roles that can use this emoji. Leave empty to make it available to everyone.

  • -
  • reason (Optional[str]) – The reason for creating this emoji. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You are not allowed to create emojis.

  • -
  • HTTPException – An error occurred creating an emoji.

  • -
-
-
Returns
-

The created emoji.

-
-
Return type
-

Emoji

-
-
-
- -
-
-await delete_emoji(emoji, *, reason=None)
-

This function is a coroutine.

-

Deletes the custom Emoji from the guild.

-

You must have manage_emojis permission to -do this.

-
-
Parameters
-
    -
  • emoji (abc.Snowflake) – The emoji you are deleting.

  • -
  • reason (Optional[str]) – The reason for deleting this emoji. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You are not allowed to delete emojis.

  • -
  • HTTPException – An error occurred deleting the emoji.

  • -
-
-
-
- -
-
-await fetch_roles()
-

This function is a coroutine.

-

Retrieves all Role that the guild has.

-
-

Note

-

This method is an API call. For general usage, consider roles instead.

-
-
-

New in version 1.3.

-
-
-
Raises
-

HTTPException – Retrieving the roles failed.

-
-
Returns
-

All roles in the guild.

-
-
Return type
-

List[Role]

-
-
-
- -
-
-await create_role(*, name=..., permissions=..., color=..., colour=..., hoist=..., mentionable=..., reason=None)
-

This function is a coroutine.

-

Creates a Role for the guild.

-

All fields are optional.

-

You must have the manage_roles permission to -do this.

-
-

Changed in version 1.6: Can now pass int to colour keyword-only parameter.

-
-
-
Parameters
-
    -
  • name (str) – The role name. Defaults to ‘new role’.

  • -
  • permissions (Permissions) – The permissions to have. Defaults to no permissions.

  • -
  • colour (Union[Colour, int]) – The colour for the role. Defaults to Colour.default(). -This is aliased to color as well.

  • -
  • hoist (bool) – Indicates if the role should be shown separately in the member list. -Defaults to False.

  • -
  • mentionable (bool) – Indicates if the role should be mentionable by others. -Defaults to False.

  • -
  • reason (Optional[str]) – The reason for creating this role. Shows up on the audit log.

  • -
-
-
Raises
-
-
-
Returns
-

The newly created role.

-
-
Return type
-

Role

-
-
-
- -
-
-await edit_role_positions(positions, *, reason=None)
-

This function is a coroutine.

-

Bulk edits a list of Role in the guild.

-

You must have the manage_roles permission to -do this.

-
-

New in version 1.4.

-
-

Example:

-
positions = {
-    bots_role: 1, # penultimate role
-    tester_role: 2,
-    admin_role: 6
-}
-
-await guild.edit_role_positions(positions=positions)
-
-
-
-
Parameters
-
    -
  • positions – A dict of Role to int to change the positions -of each given role.

  • -
  • reason (Optional[str]) – The reason for editing the role positions. Shows up on the audit log.

  • -
-
-
Raises
-
-
-
Returns
-

A list of all the roles in the guild.

-
-
Return type
-

List[Role]

-
-
-
- -
-
-await kick(user, *, reason=None)
-

This function is a coroutine.

-

Kicks a user from the guild.

-

The user must meet the abc.Snowflake abc.

-

You must have the kick_members permission to -do this.

-
-
Parameters
-
    -
  • user (abc.Snowflake) – The user to kick from their guild.

  • -
  • reason (Optional[str]) – The reason the user got kicked.

  • -
-
-
Raises
-
-
-
-
- -
-
-await ban(user, *, reason=None, delete_message_days=1)
-

This function is a coroutine.

-

Bans a user from the guild.

-

The user must meet the abc.Snowflake abc.

-

You must have the ban_members permission to -do this.

-
-
Parameters
-
    -
  • user (abc.Snowflake) – The user to ban from their guild.

  • -
  • delete_message_days (int) – The number of days worth of messages to delete from the user -in the guild. The minimum is 0 and the maximum is 7.

  • -
  • reason (Optional[str]) – The reason the user got banned.

  • -
-
-
Raises
-
-
-
-
- -
-
-await unban(user, *, reason=None)
-

This function is a coroutine.

-

Unbans a user from the guild.

-

The user must meet the abc.Snowflake abc.

-

You must have the ban_members permission to -do this.

-
-
Parameters
-
    -
  • user (abc.Snowflake) – The user to unban.

  • -
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • -
-
-
Raises
-
-
-
-
- -
-
-await vanity_invite()
-

This function is a coroutine.

-

Returns the guild’s special vanity invite.

-

The guild must have VANITY_URL in features.

-

You must have the manage_guild permission to use -this as well.

-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to get this.

  • -
  • HTTPException – Retrieving the vanity invite failed.

  • -
-
-
Returns
-

The special vanity invite. If None then the guild does not -have a vanity invite set.

-
-
Return type
-

Optional[Invite]

-
-
-
- -
-
-await widget()
-

This function is a coroutine.

-

Returns the widget of the guild.

-
-

Note

-

The guild must have the widget enabled to get this information.

-
-
-
Raises
-
-
-
Returns
-

The guild’s widget.

-
-
Return type
-

Widget

-
-
-
- -
-
-await edit_widget(*, enabled=..., channel=...)
-

This function is a coroutine.

-

Edits the widget of the guild.

-

You must have the manage_guild permission to -use this

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • enabled (bool) – Whether to enable the widget for the guild.

  • -
  • channel (Optional[Snowflake]) – The new widget channel. None removes the widget channel.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permission to edit the widget.

  • -
  • HTTPException – Editing the widget failed.

  • -
-
-
-
- -
-
-await chunk(*, cache=True)
-

This function is a coroutine.

-

Requests all members that belong to this guild. In order to use this, -Intents.members() must be enabled.

-

This is a websocket operation and can be slow.

-
-

New in version 1.5.

-
-
-
Parameters
-

cache (bool) – Whether to cache the members as well.

-
-
Raises
-

ClientException – The members intent is not enabled.

-
-
-
- -
-
-await query_members(query=None, *, limit=5, user_ids=None, presences=False, cache=True)
-

This function is a coroutine.

-

Request members that belong to this guild whose username starts with -the query given.

-

This is a websocket operation and can be slow.

-
-

New in version 1.3.

-
-
-
Parameters
-
    -
  • query (Optional[str]) – The string that the username’s start with.

  • -
  • limit (int) – The maximum number of members to send back. This must be -a number between 5 and 100.

  • -
  • presences (bool) –

    Whether to request for presences to be provided. This defaults -to False.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • cache (bool) – Whether to cache the members internally. This makes operations -such as get_member() work for those that matched.

  • -
  • user_ids (Optional[List[int]]) –

    List of user IDs to search for. If the user ID is not in the guild then it won’t be returned.

    -
    -

    New in version 1.4.

    -
    -

  • -
-
-
Raises
-
-
-
Returns
-

The list of members that have matched the query.

-
-
Return type
-

List[Member]

-
-
-
- -
-
-await change_voice_state(*, channel, self_mute=False, self_deaf=False)
-

This function is a coroutine.

-

Changes client’s voice state in the guild.

-
-

New in version 1.4.

-
-
-
Parameters
-
    -
  • channel (Optional[VoiceChannel]) – Channel the client wants to join. Use None to disconnect.

  • -
  • self_mute (bool) – Indicates if the client should be self-muted.

  • -
  • self_deaf (bool) – Indicates if the client should be self-deafened.

  • -
-
-
-
- -
- -
-
-class discord.BanEntry
-

A namedtuple which represents a ban returned from bans().

-
-
-reason
-

The reason this user was banned.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-user
-

The User that was banned.

-
-
Type
-

User

-
-
-
- -
- -
-
-

Integration

-
-
-class discord.Integration
-

Represents a guild integration.

-
-

New in version 1.4.

-
-
-
-id
-

The integration ID.

-
-
Type
-

int

-
-
-
- -
-
-name
-

The integration name.

-
-
Type
-

str

-
-
-
- -
-
-guild
-

The guild of the integration.

-
-
Type
-

Guild

-
-
-
- -
-
-type
-

The integration type (i.e. Twitch).

-
-
Type
-

str

-
-
-
- -
-
-enabled
-

Whether the integration is currently enabled.

-
-
Type
-

bool

-
-
-
- -
-
-account
-

The account linked to this integration.

-
-
Type
-

IntegrationAccount

-
-
-
- -
-
-user
-

The user that added this integration.

-
-
Type
-

User

-
-
-
- -
-
-await delete(*, reason=None)
-

This function is a coroutine.

-

Deletes the integration.

-

You must have the manage_guild permission to -do this.

-
-
Parameters
-

reason (str) –

The reason the integration was deleted. Shows up on the audit log.

-
-

New in version 2.0.

-
-

-
-
Raises
-
    -
  • Forbidden – You do not have permission to delete the integration.

  • -
  • HTTPException – Deleting the integration failed.

  • -
-
-
-
- -
- -
-
-class discord.IntegrationAccount
-

Represents an integration account.

-
-

New in version 1.4.

-
-
-
-id
-

The account ID.

-
-
Type
-

str

-
-
-
- -
-
-name
-

The account name.

-
-
Type
-

str

-
-
-
- -
- -
-
-class discord.BotIntegration
-

Represents a bot integration on discord.

-
-

New in version 2.0.

-
-
-
-id
-

The integration ID.

-
-
Type
-

int

-
-
-
- -
-
-name
-

The integration name.

-
-
Type
-

str

-
-
-
- -
-
-guild
-

The guild of the integration.

-
-
Type
-

Guild

-
-
-
- -
-
-type
-

The integration type (i.e. Twitch).

-
-
Type
-

str

-
-
-
- -
-
-enabled
-

Whether the integration is currently enabled.

-
-
Type
-

bool

-
-
-
- -
-
-user
-

The user that added this integration.

-
-
Type
-

User

-
-
-
- -
-
-account
-

The integration account information.

-
-
Type
-

IntegrationAccount

-
-
-
- -
-
-application
-

The application tied to this integration.

-
-
Type
-

IntegrationApplication

-
-
-
- -
- -
-
-class discord.IntegrationApplication
-

Represents an application for a bot integration.

-
-

New in version 2.0.

-
-
-
-id
-

The ID for this application.

-
-
Type
-

int

-
-
-
- -
-
-name
-

The application’s name.

-
-
Type
-

str

-
-
-
- -
-
-icon
-

The application’s icon hash.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-description
-

The application’s description. Can be an empty string.

-
-
Type
-

str

-
-
-
- -
-
-summary
-

The summary of the application. Can be an empty string.

-
-
Type
-

str

-
-
-
- -
-
-user
-

The bot user on this application.

-
-
Type
-

Optional[User]

-
-
-
- -
- -
-
-class discord.StreamIntegration
-

Represents a stream integration for Twitch or YouTube.

-
-

New in version 2.0.

-
-
-
-id
-

The integration ID.

-
-
Type
-

int

-
-
-
- -
-
-name
-

The integration name.

-
-
Type
-

str

-
-
-
- -
-
-guild
-

The guild of the integration.

-
-
Type
-

Guild

-
-
-
- -
-
-type
-

The integration type (i.e. Twitch).

-
-
Type
-

str

-
-
-
- -
-
-enabled
-

Whether the integration is currently enabled.

-
-
Type
-

bool

-
-
-
- -
-
-syncing
-

Where the integration is currently syncing.

-
-
Type
-

bool

-
-
-
- -
-
-enable_emoticons
-

Whether emoticons should be synced for this integration (currently twitch only).

-
-
Type
-

Optional[bool]

-
-
-
- -
-
-expire_behaviour
-

The behaviour of expiring subscribers. Aliased to expire_behavior as well.

-
-
Type
-

ExpireBehaviour

-
-
-
- -
-
-expire_grace_period
-

The grace period (in days) for expiring subscribers.

-
-
Type
-

int

-
-
-
- -
-
-user
-

The user for the integration.

-
-
Type
-

User

-
-
-
- -
-
-account
-

The integration account information.

-
-
Type
-

IntegrationAccount

-
-
-
- -
-
-synced_at
-

An aware UTC datetime representing when the integration was last synced.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-property expire_behavior
-

An alias for expire_behaviour.

-
-
Type
-

ExpireBehaviour

-
-
-
- -
-
-property role
-

Optional[Role] The role which the integration uses for subscribers.

-
- -
-
-await edit(*, expire_behaviour=..., expire_grace_period=..., enable_emoticons=...)
-

This function is a coroutine.

-

Edits the integration.

-

You must have the manage_guild permission to -do this.

-
-
Parameters
-
    -
  • expire_behaviour (ExpireBehaviour) – The behaviour when an integration subscription lapses. Aliased to expire_behavior as well.

  • -
  • expire_grace_period (int) – The period (in days) where the integration will ignore lapsed subscriptions.

  • -
  • enable_emoticons (bool) – Where emoticons should be synced for this integration (currently twitch only).

  • -
-
-
Raises
-
-
-
-
- -
-
-await sync()
-

This function is a coroutine.

-

Syncs the integration.

-

You must have the manage_guild permission to -do this.

-
-
Raises
-
    -
  • Forbidden – You do not have permission to sync the integration.

  • -
  • HTTPException – Syncing the integration failed.

  • -
-
-
-
- -
- -
-
-

Interaction

-
-
-class discord.Interaction
-

Represents a Discord interaction.

-

An interaction happens when a user does an action that needs to -be notified. Current examples are slash commands and components.

-
-

New in version 2.0.

-
-
-
-id
-

The interaction’s ID.

-
-
Type
-

int

-
-
-
- -
-
-type
-

The interaction type.

-
-
Type
-

InteractionType

-
-
-
- -
-
-guild_id
-

The guild ID the interaction was sent from.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-channel_id
-

The channel ID the interaction was sent from.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-application_id
-

The application ID that the interaction was for.

-
-
Type
-

int

-
-
-
- -
-
-user
-

The user or member that sent the interaction.

-
-
Type
-

Optional[Union[User, Member]]

-
-
-
- -
-
-message
-

The message that sent this interaction.

-
-
Type
-

Optional[Message]

-
-
-
- -
-
-token
-

The token to continue the interaction. These are valid -for 15 minutes.

-
-
Type
-

str

-
-
-
- -
-
-data
-

The raw interaction data.

-
-
Type
-

dict

-
-
-
- -
-
-property guild
-

The guild the interaction was sent from.

-
-
Type
-

Optional[Guild]

-
-
-
- -
-
-channel
-

The channel the interaction was sent from.

-

Note that due to a Discord limitation, DM channels are not resolved since there is -no data to complete them. These are PartialMessageable instead.

-
-
Type
-

Optional[Union[abc.GuildChannel, PartialMessageable, Thread]]

-
-
-
- -
-
-property permissions
-

The resolved permissions of the member in the channel, including overwrites.

-

In a non-guild context where this doesn’t apply, an empty permissions object is returned.

-
-
Type
-

Permissions

-
-
-
- -
-
-response
-

Returns an object responsible for handling responding to the interaction.

-

A response can only be done once. If secondary messages need to be sent, consider using followup -instead.

-
-
Type
-

InteractionResponse

-
-
-
- -
-
-followup
-

Returns the follow up webhook for follow up interactions.

-
-
Type
-

Webhook

-
-
-
- -
-
-await original_message()
-

This function is a coroutine.

-

Fetches the original interaction response message associated with the interaction.

-

If the interaction response was InteractionResponse.send_message() then this would -return the message that was sent using that response. Otherwise, this would return -the message that triggered the interaction.

-

Repeated calls to this will return a cached value.

-
-
Raises
-
    -
  • HTTPException – Fetching the original response message failed.

  • -
  • ClientException – The channel for the message could not be resolved.

  • -
-
-
Returns
-

The original interaction response message.

-
-
Return type
-

InteractionMessage

-
-
-
- -
-
-await edit_original_message(*, content=..., embeds=..., embed=..., file=..., files=..., view=..., allowed_mentions=None)
-

This function is a coroutine.

-

Edits the original interaction response message.

-

This is a lower level interface to InteractionMessage.edit() in case -you do not want to fetch the message and save an HTTP request.

-

This method is also the only way to edit the original message if -the message sent was ephemeral.

-
-
Parameters
-
    -
  • content (Optional[str]) – The content to edit the message with or None to clear it.

  • -
  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • -
  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. -This should not be mixed with the embeds parameter.

  • -
  • file (File) – The file to upload. This cannot be mixed with files parameter.

  • -
  • files (List[File]) – A list of files to send with the content. This cannot be mixed with the -file parameter.

  • -
  • allowed_mentions (AllowedMentions) – Controls the mentions being processed in this message. -See abc.Messageable.send() for more information.

  • -
  • view (Optional[View]) – The updated view to update this message with. If None is passed then -the view is removed.

  • -
-
-
Raises
-
    -
  • HTTPException – Editing the message failed.

  • -
  • Forbidden – Edited a message that is not yours.

  • -
  • TypeError – You specified both embed and embeds or file and files

  • -
  • ValueError – The length of embeds was invalid.

  • -
-
-
Returns
-

The newly edited message.

-
-
Return type
-

InteractionMessage

-
-
-
- -
-
-await delete_original_message()
-

This function is a coroutine.

-

Deletes the original interaction response message.

-

This is a lower level interface to InteractionMessage.delete() in case -you do not want to fetch the message and save an HTTP request.

-
-
Raises
-
-
-
-
- -
- -
-
-

InteractionResponse

-
- -Methods -
-
-class discord.InteractionResponse
-

Represents a Discord interaction response.

-

This type can be accessed through Interaction.response.

-
-

New in version 2.0.

-
-
-
-is_done()
-

bool: Indicates whether an interaction response has been done before.

-

An interaction can only be responded to once.

-
- -
-
-await defer(*, ephemeral=False)
-

This function is a coroutine.

-

Defers the interaction response.

-

This is typically used when the interaction is acknowledged -and a secondary action will be done later.

-
-
Parameters
-

ephemeral (bool) – Indicates whether the deferred message will eventually be ephemeral. -This only applies for interactions of type InteractionType.application_command.

-
-
Raises
-
-
-
-
- -
-
-await pong()
-

This function is a coroutine.

-

Pongs the ping interaction.

-

This should rarely be used.

-
-
Raises
-
-
-
-
- -
-
-await send_message(content=None, *, embed=..., embeds=..., view=..., tts=False, ephemeral=False)
-

This function is a coroutine.

-

Responds to this interaction by sending a message.

-
-
Parameters
-
    -
  • content (Optional[str]) – The content of the message to send.

  • -
  • embeds (List[Embed]) – A list of embeds to send with the content. Maximum of 10. This cannot -be mixed with the embed parameter.

  • -
  • embed (Embed) – The rich embed for the content to send. This cannot be mixed with -embeds parameter.

  • -
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • -
  • view (discord.ui.View) – The view to send with the message.

  • -
  • ephemeral (bool) – Indicates if the message should only be visible to the user who started the interaction. -If a view is sent with an ephemeral message and it has no timeout set then the timeout -is set to 15 minutes.

  • -
-
-
Raises
-
-
-
-
- -
-
-await edit_message(*, content=..., embed=..., embeds=..., attachments=..., view=...)
-

This function is a coroutine.

-

Responds to this interaction by editing the original message of -a component interaction.

-
-
Parameters
-
    -
  • content (Optional[str]) – The new content to replace the message with. None removes the content.

  • -
  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • -
  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. -This should not be mixed with the embeds parameter.

  • -
  • attachments (List[Attachment]) – A list of attachments to keep in the message. If [] is passed -then all attachments are removed.

  • -
  • view (Optional[View]) – The updated view to update this message with. If None is passed then -the view is removed.

  • -
-
-
Raises
-
-
-
-
- -
- -
-
-

InteractionMessage

-
- -Methods -
-
-class discord.InteractionMessage
-

Represents the original interaction response message.

-

This allows you to edit or delete the message associated with -the interaction response. To retrieve this object see Interaction.original_message().

-

This inherits from discord.Message with changes to -edit() and delete() to work.

-
-

New in version 2.0.

-
-
-
-await edit(content=..., embeds=..., embed=..., file=..., files=..., view=..., allowed_mentions=None)
-

This function is a coroutine.

-

Edits the message.

-
-
Parameters
-
    -
  • content (Optional[str]) – The content to edit the message with or None to clear it.

  • -
  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • -
  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. -This should not be mixed with the embeds parameter.

  • -
  • file (File) – The file to upload. This cannot be mixed with files parameter.

  • -
  • files (List[File]) – A list of files to send with the content. This cannot be mixed with the -file parameter.

  • -
  • allowed_mentions (AllowedMentions) – Controls the mentions being processed in this message. -See abc.Messageable.send() for more information.

  • -
  • view (Optional[View]) – The updated view to update this message with. If None is passed then -the view is removed.

  • -
-
-
Raises
-
    -
  • HTTPException – Editing the message failed.

  • -
  • Forbidden – Edited a message that is not yours.

  • -
  • TypeError – You specified both embed and embeds or file and files

  • -
  • ValueError – The length of embeds was invalid.

  • -
-
-
Returns
-

The newly edited message.

-
-
Return type
-

InteractionMessage

-
-
-
- -
-
-await delete(*, delay=None)
-

This function is a coroutine.

-

Deletes the message.

-
-
Parameters
-

delay (Optional[float]) – If provided, the number of seconds to wait before deleting the message. -The waiting is done in the background and deletion failures are ignored.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to delete the message.

  • -
  • NotFound – The message was deleted already.

  • -
  • HTTPException – Deleting the message failed.

  • -
-
-
-
- -
- -
-
-

Member

-
-
-class discord.Member
-

Represents a Discord member to a Guild.

-

This implements a lot of the functionality of User.

-
-
-
-x == y
-

Checks if two members are equal. -Note that this works with User instances too.

-
- -
-
-x != y
-

Checks if two members are not equal. -Note that this works with User instances too.

-
- -
-
-hash(x)
-

Returns the member’s hash.

-
- -
-
-str(x)
-

Returns the member’s name with the discriminator.

-
- -
-
-int(x)
-

Returns the user’s ID.

-
- -
-
-
-joined_at
-

An aware datetime object that specifies the date and time in UTC that the member joined the guild. -If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be None.

-
-
Type
-

Optional[datetime.datetime]

-
-
-
- -
-
-activities
-

The activities that the user is currently doing.

-
-

Note

-

Due to a Discord API limitation, a user’s Spotify activity may not appear -if they are listening to a song with a title longer -than 128 characters. See GH-1738 for more information.

-
-
-
Type
-

Tuple[Union[BaseActivity, Spotify]]

-
-
-
- -
-
-guild
-

The guild that the member belongs to.

-
-
Type
-

Guild

-
-
-
- -
-
-nick
-

The guild specific nickname of the user.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-pending
-

Whether the member is pending member verification.

-
-

New in version 1.6.

-
-
-
Type
-

bool

-
-
-
- -
-
-premium_since
-

An aware datetime object that specifies the date and time in UTC when the member used their -“Nitro boost” on the guild, if available. This could be None.

-
-
Type
-

Optional[datetime.datetime]

-
-
-
- -
-
-async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
-

Returns an AsyncIterator that enables receiving the destination’s message history.

-

You must have read_message_history permissions to use this.

-

Examples

-

Usage

-
counter = 0
-async for message in channel.history(limit=200):
-    if message.author == client.user:
-        counter += 1
-
-
-

Flattening into a list:

-
messages = await channel.history(limit=123).flatten()
-# messages is now a list of Message...
-
-
-

All parameters are optional.

-
-
Parameters
-
    -
  • limit (Optional[int]) – The number of messages to retrieve. -If None, retrieves every message in the channel. Note, however, -that this would make it a slow operation.

  • -
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time. -When using this argument, the maximum limit is 101. Note that if the limit is an -even number then this will return at most limit + 1 messages.

  • -
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if -after is specified, otherwise False.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to get channel message history.

  • -
  • HTTPException – The request to get message history failed.

  • -
-
-
Yields
-

Message – The message with the message data parsed.

-
-
-
- -
-
-async with typing()
-

Returns a context manager that allows you to type for an indefinite period of time.

-

This is useful for denoting long computations in your bot.

-
-

Note

-

This is both a regular context manager and an async context manager. -This means that both with and async with work with this.

-
-

Example Usage:

-
async with channel.typing():
-    # simulate something heavy
-    await asyncio.sleep(10)
-
-await channel.send('done!')
-
-
-
- -
-
-property name
-

Equivalent to User.name

-
- -
-
-property id
-

Equivalent to User.id

-
- -
-
-property discriminator
-

Equivalent to User.discriminator

-
- -
-
-property bot
-

Equivalent to User.bot

-
- -
-
-property system
-

Equivalent to User.system

-
- -
-
-property created_at
-

Equivalent to User.created_at

-
- -
-
-property default_avatar
-

Equivalent to User.default_avatar

-
- -
-
-property avatar
-

Equivalent to User.avatar

-
- -
-
-property dm_channel
-

Equivalent to User.dm_channel

-
- -
-
-await create_dm()
-

This function is a coroutine.

-

Creates a DMChannel with this user.

-

This should be rarely called, as this is done transparently for most -people.

-
-
Returns
-

The channel that was created.

-
-
Return type
-

DMChannel

-
-
-
- -
-
-property mutual_guilds
-

Equivalent to User.mutual_guilds

-
- -
-
-property public_flags
-

Equivalent to User.public_flags

-
- -
-
-property banner
-

Equivalent to User.banner

-
- -
-
-property accent_color
-

Equivalent to User.accent_color

-
- -
-
-property accent_colour
-

Equivalent to User.accent_colour

-
- -
-
-property raw_status
-

The member’s overall status as a string value.

-
-

New in version 1.5.

-
-
-
Type
-

str

-
-
-
- -
-
-property status
-

The member’s overall status. If the value is unknown, then it will be a str instead.

-
-
Type
-

Status

-
-
-
- -
-
-property mobile_status
-

The member’s status on a mobile device, if applicable.

-
-
Type
-

Status

-
-
-
- -
-
-property desktop_status
-

The member’s status on the desktop client, if applicable.

-
-
Type
-

Status

-
-
-
- -
-
-property web_status
-

The member’s status on the web client, if applicable.

-
-
Type
-

Status

-
-
-
- -
-
-is_on_mobile()
-

bool: A helper function that determines if a member is active on a mobile device.

-
- -
-
-property colour
-

A property that returns a colour denoting the rendered colour -for the member. If the default colour is the one rendered then an instance -of Colour.default() is returned.

-

There is an alias for this named color.

-
-
Type
-

Colour

-
-
-
- -
-
-property color
-

A property that returns a color denoting the rendered color for -the member. If the default color is the one rendered then an instance of Colour.default() -is returned.

-

There is an alias for this named colour.

-
-
Type
-

Colour

-
-
-
- -
-
-property roles
-

A list of Role that the member belongs to. Note -that the first element of this list is always the default @everyone’ -role.

-

These roles are sorted by their position in the role hierarchy.

-
-
Type
-

List[Role]

-
-
-
- -
-
-property mention
-

Returns a string that allows you to mention the member.

-
-
Type
-

str

-
-
-
- -
-
-property display_name
-

Returns the user’s display name.

-

For regular users this is just their username, but -if they have a guild specific nickname then that -is returned instead.

-
-
Type
-

str

-
-
-
- -
-
-property display_avatar
-

Returns the member’s display avatar.

-

For regular members this is just their avatar, but -if they have a guild specific avatar then that -is returned instead.

-
-

New in version 2.0.

-
-
-
Type
-

Asset

-
-
-
- -
-
-property guild_avatar
-

Returns an Asset for the guild avatar -the member has. If unavailable, None is returned.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property activity
-

Returns the primary -activity the user is currently doing. Could be None if no activity is being done.

-
-

Note

-

Due to a Discord API limitation, this may be None if -the user is listening to a song on Spotify with a title longer -than 128 characters. See GH-1738 for more information.

-
-
-

Note

-

A user may have multiple activities, these can be accessed under activities.

-
-
-
Type
-

Optional[Union[BaseActivity, Spotify]]

-
-
-
- -
-
-mentioned_in(message)
-

Checks if the member is mentioned in the specified message.

-
-
Parameters
-

message (Message) – The message to check if you’re mentioned in.

-
-
Returns
-

Indicates if the member is mentioned in the message.

-
-
Return type
-

bool

-
-
-
- -
-
-property top_role
-

Returns the member’s highest role.

-

This is useful for figuring where a member stands in the role -hierarchy chain.

-
-
Type
-

Role

-
-
-
- -
-
-property guild_permissions
-

Returns the member’s guild permissions.

-

This only takes into consideration the guild permissions -and not most of the implied permissions or any of the -channel permission overwrites. For 100% accurate permission -calculation, please use abc.GuildChannel.permissions_for().

-

This does take into consideration guild ownership and the -administrator implication.

-
-
Type
-

Permissions

-
-
-
- -
-
-property voice
-

Returns the member’s current voice state.

-
-
Type
-

Optional[VoiceState]

-
-
-
- -
-
-await ban(*, delete_message_days=1, reason=None)
-

This function is a coroutine.

-

Bans this member. Equivalent to Guild.ban().

-
- -
-
-await unban(*, reason=None)
-

This function is a coroutine.

-

Unbans this member. Equivalent to Guild.unban().

-
- -
-
-await kick(*, reason=None)
-

This function is a coroutine.

-

Kicks this member. Equivalent to Guild.kick().

-
- -
-
-await edit(*, nick=..., mute=..., deafen=..., suppress=..., roles=..., voice_channel=..., reason=None)
-

This function is a coroutine.

-

Edits the member’s data.

-

Depending on the parameter passed, this requires different permissions listed below:

-
---- - - - - - - - - - - - - - - - - - - - - -

Parameter

Permission

nick

Permissions.manage_nicknames

mute

Permissions.mute_members

deafen

Permissions.deafen_members

roles

Permissions.manage_roles

voice_channel

Permissions.move_members

-

All parameters are optional.

-
-

Changed in version 1.1: Can now pass None to voice_channel to kick a member from voice.

-
-
-

Changed in version 2.0: The newly member is now optionally returned, if applicable.

-
-
-
Parameters
-
    -
  • nick (Optional[str]) – The member’s new nickname. Use None to remove the nickname.

  • -
  • mute (bool) – Indicates if the member should be guild muted or un-muted.

  • -
  • deafen (bool) – Indicates if the member should be guild deafened or un-deafened.

  • -
  • suppress (bool) –

    Indicates if the member should be suppressed in stage channels.

    -
    -

    New in version 1.7.

    -
    -

  • -
  • roles (List[Role]) – The member’s new list of roles. This replaces the roles.

  • -
  • voice_channel (Optional[VoiceChannel]) – The voice channel to move the member to. -Pass None to kick them from voice.

  • -
  • reason (Optional[str]) – The reason for editing this member. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to the action requested.

  • -
  • HTTPException – The operation failed.

  • -
-
-
Returns
-

The newly updated member, if applicable. This is only returned -when certain fields are updated.

-
-
Return type
-

Optional[Member]

-
-
-
- -
-
-await request_to_speak()
-

This function is a coroutine.

-

Request to speak in the connected channel.

-

Only applies to stage channels.

-
-

Note

-

Requesting members that are not the client is equivalent -to edit providing suppress as False.

-
-
-

New in version 1.7.

-
-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to the action requested.

  • -
  • HTTPException – The operation failed.

  • -
-
-
-
- -
-
-await move_to(channel, *, reason=None)
-

This function is a coroutine.

-

Moves a member to a new voice channel (they must be connected first).

-

You must have the move_members permission to -use this.

-

This raises the same exceptions as edit().

-
-

Changed in version 1.1: Can now pass None to kick a member from voice.

-
-
-
Parameters
-
    -
  • channel (Optional[VoiceChannel]) – The new voice channel to move the member to. -Pass None to kick them from voice.

  • -
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • -
-
-
-
- -
-
-await add_roles(*roles, reason=None, atomic=True)
-

This function is a coroutine.

-

Gives the member a number of Roles.

-

You must have the manage_roles permission to -use this, and the added Roles must appear lower in the list -of roles than the highest role of the member.

-
-
Parameters
-
    -
  • *roles (abc.Snowflake) – An argument list of abc.Snowflake representing a Role -to give to the member.

  • -
  • reason (Optional[str]) – The reason for adding these roles. Shows up on the audit log.

  • -
  • atomic (bool) – Whether to atomically add roles. This will ensure that multiple -operations will always be applied regardless of the current -state of the cache.

  • -
-
-
Raises
-
-
-
-
- -
-
-await fetch_message(id, /)
-

This function is a coroutine.

-

Retrieves a single Message from the destination.

-
-
Parameters
-

id (int) – The message ID to look for.

-
-
Raises
-
    -
  • NotFound – The specified message was not found.

  • -
  • Forbidden – You do not have the permissions required to get a message.

  • -
  • HTTPException – Retrieving the message failed.

  • -
-
-
Returns
-

The message asked for.

-
-
Return type
-

Message

-
-
-
- -
-
-await pins()
-

This function is a coroutine.

-

Retrieves all messages that are currently pinned in the channel.

-
-

Note

-

Due to a limitation with the Discord API, the Message -objects returned by this method do not contain complete -Message.reactions data.

-
-
-
Raises
-

HTTPException – Retrieving the pinned messages failed.

-
-
Returns
-

The messages that are currently pinned.

-
-
Return type
-

List[Message]

-
-
-
- -
-
-await remove_roles(*roles, reason=None, atomic=True)
-

This function is a coroutine.

-

Removes Roles from this member.

-

You must have the manage_roles permission to -use this, and the removed Roles must appear lower in the list -of roles than the highest role of the member.

-
-
Parameters
-
    -
  • *roles (abc.Snowflake) – An argument list of abc.Snowflake representing a Role -to remove from the member.

  • -
  • reason (Optional[str]) – The reason for removing these roles. Shows up on the audit log.

  • -
  • atomic (bool) – Whether to atomically remove roles. This will ensure that multiple -operations will always be applied regardless of the current -state of the cache.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to remove these roles.

  • -
  • HTTPException – Removing the roles failed.

  • -
-
-
-
- -
-
-await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
-

This function is a coroutine.

-

Sends a message to the destination with the content given.

-

The content must be a type that can convert to a string through str(content). -If the content is set to None (the default), then the embed parameter must -be provided.

-

To upload a single file, the file parameter should be used with a -single File object. To upload multiple files, the files -parameter should be used with a list of File objects. -Specifying both parameters will lead to an exception.

-

To upload a single embed, the embed parameter should be used with a -single Embed object. To upload multiple embeds, the embeds -parameter should be used with a list of Embed objects. -Specifying both parameters will lead to an exception.

-
-
Parameters
-
    -
  • content (Optional[str]) – The content of the message to send.

  • -
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • -
  • embed (Embed) – The rich embed for the content.

  • -
  • file (File) – The file to upload.

  • -
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • -
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, -then the message will have a nonce with this value.

  • -
  • delete_after (float) – If provided, the number of seconds to wait in the background -before deleting the message we just sent. If the deletion fails, -then it is silently ignored.

  • -
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is -passed, then the object is merged with allowed_mentions. -The merging behaviour only overrides attributes that have been explicitly passed -to the object, otherwise it uses the attributes set in allowed_mentions. -If no object is passed at all then the defaults given by allowed_mentions -are used instead.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using -to_reference() or passed directly as a Message. You can control -whether this mentions the author of the referenced message using the replied_user -attribute of allowed_mentions or by setting mention_author.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • -
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
-
-
Returns
-

The message that was sent.

-
-
Return type
-

Message

-
-
-
- -
-
-await trigger_typing()
-

This function is a coroutine.

-

Triggers a typing indicator to the destination.

-

Typing indicator will go away after 10 seconds, or after a message is sent.

-
- -
-
-get_role(role_id, /)
-

Returns a role with the given ID from roles which the member has.

-
-

New in version 2.0.

-
-
-
Parameters
-

role_id (int) – The ID to search for.

-
-
Returns
-

The role or None if not found in the member’s roles.

-
-
Return type
-

Optional[Role]

-
-
-
- -
- -
-
-

Spotify

-
-
-class discord.Spotify
-

Represents a Spotify listening activity from Discord. This is a special case of -Activity that makes it easier to work with the Spotify integration.

-
-
-
-x == y
-

Checks if two activities are equal.

-
- -
-
-x != y
-

Checks if two activities are not equal.

-
- -
-
-hash(x)
-

Returns the activity’s hash.

-
- -
-
-str(x)
-

Returns the string ‘Spotify’.

-
- -
-
-
-property type
-

Returns the activity’s type. This is for compatibility with Activity.

-

It always returns ActivityType.listening.

-
-
Type
-

ActivityType

-
-
-
- -
-
-property created_at
-

When the user started listening in UTC.

-
-

New in version 1.3.

-
-
-
Type
-

Optional[datetime.datetime]

-
-
-
- -
-
-property colour
-

Returns the Spotify integration colour, as a Colour.

-

There is an alias for this named color

-
-
Type
-

Colour

-
-
-
- -
-
-property color
-

Returns the Spotify integration colour, as a Colour.

-

There is an alias for this named colour

-
-
Type
-

Colour

-
-
-
- -
-
-property name
-

The activity’s name. This will always return “Spotify”.

-
-
Type
-

str

-
-
-
- -
-
-property title
-

The title of the song being played.

-
-
Type
-

str

-
-
-
- -
-
-property artists
-

The artists of the song being played.

-
-
Type
-

List[str]

-
-
-
- -
-
-property artist
-

The artist of the song being played.

-

This does not attempt to split the artist information into -multiple artists. Useful if there’s only a single artist.

-
-
Type
-

str

-
-
-
- -
-
-property album
-

The album that the song being played belongs to.

-
-
Type
-

str

-
-
-
- -
-
-property album_cover_url
-

The album cover image URL from Spotify’s CDN.

-
-
Type
-

str

-
-
-
- -
-
-property track_id
-

The track ID used by Spotify to identify this song.

-
-
Type
-

str

-
-
-
- -
-
-property track_url
-

The track URL to listen on Spotify.

-
-

New in version 2.0.

-
-
-
Type
-

str

-
-
-
- -
-
-property start
-

When the user started playing this song in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-property end
-

When the user will stop playing this song in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-property duration
-

The duration of the song being played.

-
-
Type
-

datetime.timedelta

-
-
-
- -
-
-property party_id
-

The party ID of the listening party.

-
-
Type
-

str

-
-
-
- -
- -
-
-

VoiceState

-
-
-class discord.VoiceState
-

Represents a Discord user’s voice state.

-
-
-deaf
-

Indicates if the user is currently deafened by the guild.

-
-
Type
-

bool

-
-
-
- -
-
-mute
-

Indicates if the user is currently muted by the guild.

-
-
Type
-

bool

-
-
-
- -
-
-self_mute
-

Indicates if the user is currently muted by their own accord.

-
-
Type
-

bool

-
-
-
- -
-
-self_deaf
-

Indicates if the user is currently deafened by their own accord.

-
-
Type
-

bool

-
-
-
- -
-
-self_stream
-

Indicates if the user is currently streaming via ‘Go Live’ feature.

-
-

New in version 1.3.

-
-
-
Type
-

bool

-
-
-
- -
-
-self_video
-

Indicates if the user is currently broadcasting video.

-
-
Type
-

bool

-
-
-
- -
-
-suppress
-

Indicates if the user is suppressed from speaking.

-

Only applies to stage channels.

-
-

New in version 1.7.

-
-
-
Type
-

bool

-
-
-
- -
-
-requested_to_speak_at
-

An aware datetime object that specifies the date and time in UTC that the member -requested to speak. It will be None if they are not requesting to speak -anymore or have been accepted to speak.

-

Only applicable to stage channels.

-
-

New in version 1.7.

-
-
-
Type
-

Optional[datetime.datetime]

-
-
-
- -
-
-afk
-

Indicates if the user is currently in the AFK channel in the guild.

-
-
Type
-

bool

-
-
-
- -
-
-channel
-

The voice channel that the user is currently connected to. None if the user -is not currently in a voice channel.

-
-
Type
-

Optional[Union[VoiceChannel, StageChannel]]

-
-
-
- -
- -
-
-

Emoji

-
- -Methods -
-
-class discord.Emoji
-

Represents a custom emoji.

-

Depending on the way this object was created, some of the attributes can -have a value of None.

-
-
-
-x == y
-

Checks if two emoji are the same.

-
- -
-
-x != y
-

Checks if two emoji are not the same.

-
- -
-
-hash(x)
-

Return the emoji’s hash.

-
- -
-
-iter(x)
-

Returns an iterator of (field, value) pairs. This allows this class -to be used as an iterable in list/dict/etc constructions.

-
- -
-
-str(x)
-

Returns the emoji rendered for discord.

-
- -
-
-int(x)
-

Returns the emoji ID.

-
- -
-
-
-name
-

The name of the emoji.

-
-
Type
-

str

-
-
-
- -
-
-id
-

The emoji’s ID.

-
-
Type
-

int

-
-
-
- -
-
-require_colons
-

If colons are required to use this emoji in the client (:PJSalt: vs PJSalt).

-
-
Type
-

bool

-
-
-
- -
-
-animated
-

Whether an emoji is animated or not.

-
-
Type
-

bool

-
-
-
- -
-
-managed
-

If this emoji is managed by a Twitch integration.

-
-
Type
-

bool

-
-
-
- -
-
-guild_id
-

The guild ID the emoji belongs to.

-
-
Type
-

int

-
-
-
- -
-
-available
-

Whether the emoji is available for use.

-
-
Type
-

bool

-
-
-
- -
-
-user
-

The user that created the emoji. This can only be retrieved using Guild.fetch_emoji() and -having the manage_emojis permission.

-
-
Type
-

Optional[User]

-
-
-
- -
-
-property created_at
-

Returns the emoji’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-property url
-

Returns the URL of the emoji.

-
-
Type
-

str

-
-
-
- -
-
-property roles
-

A list of roles that is allowed to use this emoji.

-

If roles is empty, the emoji is unrestricted.

-
-
Type
-

List[Role]

-
-
-
- -
-
-property guild
-

The guild this emoji belongs to.

-
-
Type
-

Guild

-
-
-
- -
-
-is_usable()
-

bool: Whether the bot can use this emoji.

-
-

New in version 1.3.

-
-
- -
-
-await delete(*, reason=None)
-

This function is a coroutine.

-

Deletes the custom emoji.

-

You must have manage_emojis permission to -do this.

-
-
Parameters
-

reason (Optional[str]) – The reason for deleting this emoji. Shows up on the audit log.

-
-
Raises
-
    -
  • Forbidden – You are not allowed to delete emojis.

  • -
  • HTTPException – An error occurred deleting the emoji.

  • -
-
-
-
- -
-
-await edit(*, name=..., roles=..., reason=None)
-

This function is a coroutine.

-

Edits the custom emoji.

-

You must have manage_emojis permission to -do this.

-
-

Changed in version 2.0: The newly updated emoji is returned.

-
-
-
Parameters
-
    -
  • name (str) – The new emoji name.

  • -
  • roles (Optional[List[Snowflake]]) – A list of roles that can use this emoji. An empty list can be passed to make it available to everyone.

  • -
  • reason (Optional[str]) – The reason for editing this emoji. Shows up on the audit log.

  • -
-
-
Raises
-
-
-
Returns
-

The newly updated emoji.

-
-
Return type
-

Emoji

-
-
-
- -
-
-await read()
-

This function is a coroutine.

-

Retrieves the content of this asset as a bytes object.

-
-
Raises
-
-
-
Returns
-

The content of the asset.

-
-
Return type
-

bytes

-
-
-
- -
-
-await save(fp, *, seek_begin=True)
-

This function is a coroutine.

-

Saves this asset into a file-like object.

-
-
Parameters
-
    -
  • fp (Union[io.BufferedIOBase, os.PathLike]) – The file-like object to save this attachment to or the filename -to use. If a filename is passed then a file is created with that -filename and used instead.

  • -
  • seek_begin (bool) – Whether to seek to the beginning of the file after saving is -successfully done.

  • -
-
-
Raises
-
-
-
Returns
-

The number of bytes written.

-
-
Return type
-

int

-
-
-
- -
- -
-
-

PartialEmoji

-
- -Attributes -
- -Methods -
-
-class discord.PartialEmoji
-

Represents a “partial” emoji.

-

This model will be given in two scenarios:

- -
-
-
-x == y
-

Checks if two emoji are the same.

-
- -
-
-x != y
-

Checks if two emoji are not the same.

-
- -
-
-hash(x)
-

Return the emoji’s hash.

-
- -
-
-str(x)
-

Returns the emoji rendered for discord.

-
- -
-
-
-name
-

The custom emoji name, if applicable, or the unicode codepoint -of the non-custom emoji. This can be None if the emoji -got deleted (e.g. removing a reaction with a deleted emoji).

-
-
Type
-

Optional[str]

-
-
-
- -
-
-animated
-

Whether the emoji is animated or not.

-
-
Type
-

bool

-
-
-
- -
-
-id
-

The ID of the custom emoji, if applicable.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-classmethod from_str(value)
-

Converts a Discord string representation of an emoji to a PartialEmoji.

-

The formats accepted are:

-
    -
  • a:name:id

  • -
  • <a:name:id>

  • -
  • name:id

  • -
  • <:name:id>

  • -
-

If the format does not match then it is assumed to be a unicode emoji.

-
-

New in version 2.0.

-
-
-
Parameters
-

value (str) – The string representation of an emoji.

-
-
Returns
-

The partial emoji from this string.

-
-
Return type
-

PartialEmoji

-
-
-
- -
-
-is_custom_emoji()
-

bool: Checks if this is a custom non-Unicode emoji.

-
- -
-
-is_unicode_emoji()
-

bool: Checks if this is a Unicode emoji.

-
- -
-
-property created_at
-

Returns the emoji’s creation time in UTC, or None if Unicode emoji.

-
-

New in version 1.6.

-
-
-
Type
-

Optional[datetime.datetime]

-
-
-
- -
-
-property url
-

Returns the URL of the emoji, if it is custom.

-

If this isn’t a custom emoji then an empty string is returned

-
-
Type
-

str

-
-
-
- -
-
-await read()
-

This function is a coroutine.

-

Retrieves the content of this asset as a bytes object.

-
-
Raises
-
-
-
Returns
-

The content of the asset.

-
-
Return type
-

bytes

-
-
-
- -
-
-await save(fp, *, seek_begin=True)
-

This function is a coroutine.

-

Saves this asset into a file-like object.

-
-
Parameters
-
    -
  • fp (Union[io.BufferedIOBase, os.PathLike]) – The file-like object to save this attachment to or the filename -to use. If a filename is passed then a file is created with that -filename and used instead.

  • -
  • seek_begin (bool) – Whether to seek to the beginning of the file after saving is -successfully done.

  • -
-
-
Raises
-
-
-
Returns
-

The number of bytes written.

-
-
Return type
-

int

-
-
-
- -
- -
-
-

Role

-
-
-class discord.Role
-

Represents a Discord role in a Guild.

-
-
-
-x == y
-

Checks if two roles are equal.

-
- -
-
-x != y
-

Checks if two roles are not equal.

-
- -
-
-x > y
-

Checks if a role is higher than another in the hierarchy.

-
- -
-
-x < y
-

Checks if a role is lower than another in the hierarchy.

-
- -
-
-x >= y
-

Checks if a role is higher or equal to another in the hierarchy.

-
- -
-
-x <= y
-

Checks if a role is lower or equal to another in the hierarchy.

-
- -
-
-hash(x)
-

Return the role’s hash.

-
- -
-
-str(x)
-

Returns the role’s name.

-
- -
-
-str(x)
-

Returns the role’s ID.

-
- -
-
-int(x)
-

Returns the role’s ID.

-
- -
-
-
-id
-

The ID for the role.

-
-
Type
-

int

-
-
-
- -
-
-name
-

The name of the role.

-
-
Type
-

str

-
-
-
- -
-
-guild
-

The guild the role belongs to.

-
-
Type
-

Guild

-
-
-
- -
-
-hoist
-

Indicates if the role will be displayed separately from other members.

-
-
Type
-

bool

-
-
-
- -
-
-position
-

The position of the role. This number is usually positive. The bottom -role has a position of 0.

-
-

Warning

-

Multiple roles can have the same position number. As a consequence -of this, comparing via role position is prone to subtle bugs if -checking for role hierarchy. The recommended and correct way to -compare for roles in the hierarchy is using the comparison -operators on the role objects themselves.

-
-
-
Type
-

int

-
-
-
- -
-
-managed
-

Indicates if the role is managed by the guild through some form of -integrations such as Twitch.

-
-
Type
-

bool

-
-
-
- -
-
-mentionable
-

Indicates if the role can be mentioned by users.

-
-
Type
-

bool

-
-
-
- -
-
-tags
-

The role tags associated with this role.

-
-
Type
-

Optional[RoleTags]

-
-
-
- -
-
-is_default()
-

bool: Checks if the role is the default role.

-
- -
-
-is_bot_managed()
-

bool: Whether the role is associated with a bot.

-
-

New in version 1.6.

-
-
- -
-
-is_premium_subscriber()
-

bool: Whether the role is the premium subscriber, AKA “boost”, role for the guild.

-
-

New in version 1.6.

-
-
- -
-
-is_integration()
-

bool: Whether the role is managed by an integration.

-
-

New in version 1.6.

-
-
- -
-
-is_assignable()
-

bool: Whether the role is able to be assigned or removed by the bot.

-
-

New in version 2.0.

-
-
- -
-
-property permissions
-

Returns the role’s permissions.

-
-
Type
-

Permissions

-
-
-
- -
-
-property colour
-

Returns the role colour. An alias exists under color.

-
-
Type
-

Colour

-
-
-
- -
-
-property color
-

Returns the role color. An alias exists under colour.

-
-
Type
-

Colour

-
-
-
- -
-
-property created_at
-

Returns the role’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-property mention
-

Returns a string that allows you to mention a role.

-
-
Type
-

str

-
-
-
- -
-
-property members
-

Returns all the members with this role.

-
-
Type
-

List[Member]

-
-
-
- -
-
-await edit(*, name=..., permissions=..., colour=..., color=..., hoist=..., mentionable=..., position=..., reason=...)
-

This function is a coroutine.

-

Edits the role.

-

You must have the manage_roles permission to -use this.

-

All fields are optional.

-
-

Changed in version 1.4: Can now pass int to colour keyword-only parameter.

-
-
-

Changed in version 2.0: Edits are no longer in-place, the newly edited role is returned instead.

-
-
-
Parameters
-
    -
  • name (str) – The new role name to change to.

  • -
  • permissions (Permissions) – The new permissions to change to.

  • -
  • colour (Union[Colour, int]) – The new colour to change to. (aliased to color as well)

  • -
  • hoist (bool) – Indicates if the role should be shown separately in the member list.

  • -
  • mentionable (bool) – Indicates if the role should be mentionable by others.

  • -
  • position (int) – The new role’s position. This must be below your top role’s -position or it will fail.

  • -
  • reason (Optional[str]) – The reason for editing this role. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to change the role.

  • -
  • HTTPException – Editing the role failed.

  • -
  • InvalidArgument – An invalid position was given or the default - role was asked to be moved.

  • -
-
-
Returns
-

The newly edited role.

-
-
Return type
-

Role

-
-
-
- -
-
-await delete(*, reason=None)
-

This function is a coroutine.

-

Deletes the role.

-

You must have the manage_roles permission to -use this.

-
-
Parameters
-

reason (Optional[str]) – The reason for deleting this role. Shows up on the audit log.

-
-
Raises
-
    -
  • Forbidden – You do not have permissions to delete the role.

  • -
  • HTTPException – Deleting the role failed.

  • -
-
-
-
- -
- -
-
-

RoleTags

-
- -Attributes -
- -Methods -
-
-class discord.RoleTags
-

Represents tags on a role.

-

A role tag is a piece of extra information attached to a managed role -that gives it context for the reason the role is managed.

-

While this can be accessed, a useful interface is also provided in the -Role and Guild classes as well.

-
-

New in version 1.6.

-
-
-
-bot_id
-

The bot’s user ID that manages this role.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-integration_id
-

The integration ID that manages the role.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-is_bot_managed()
-

bool: Whether the role is associated with a bot.

-
- -
-
-is_premium_subscriber()
-

bool: Whether the role is the premium subscriber, AKA “boost”, role for the guild.

-
- -
-
-is_integration()
-

bool: Whether the role is managed by an integration.

-
- -
- -
-
-

PartialMessageable

-
- -Attributes -
- -Methods -
-
-class discord.PartialMessageable
-

Represents a partial messageable to aid with working messageable channels when -only a channel ID are present.

-

The only way to construct this class is through Client.get_partial_messageable().

-

Note that this class is trimmed down and has no rich attributes.

-
-

New in version 2.0.

-
-
-
-
-x == y
-

Checks if two partial messageables are equal.

-
- -
-
-x != y
-

Checks if two partial messageables are not equal.

-
- -
-
-hash(x)
-

Returns the partial messageable’s hash.

-
- -
-
-int(x)
-

Returns the messageable’s ID.

-
- -
-
-
-id
-

The channel ID associated with this partial messageable.

-
-
Type
-

int

-
-
-
- -
-
-type
-

The channel type associated with this partial messageable, if given.

-
-
Type
-

Optional[ChannelType]

-
-
-
- -
-
-await fetch_message(id, /)
-

This function is a coroutine.

-

Retrieves a single Message from the destination.

-
-
Parameters
-

id (int) – The message ID to look for.

-
-
Raises
-
    -
  • NotFound – The specified message was not found.

  • -
  • Forbidden – You do not have the permissions required to get a message.

  • -
  • HTTPException – Retrieving the message failed.

  • -
-
-
Returns
-

The message asked for.

-
-
Return type
-

Message

-
-
-
- -
-
-history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
-

Returns an AsyncIterator that enables receiving the destination’s message history.

-

You must have read_message_history permissions to use this.

-

Examples

-

Usage

-
counter = 0
-async for message in channel.history(limit=200):
-    if message.author == client.user:
-        counter += 1
-
-
-

Flattening into a list:

-
messages = await channel.history(limit=123).flatten()
-# messages is now a list of Message...
-
-
-

All parameters are optional.

-
-
Parameters
-
    -
  • limit (Optional[int]) – The number of messages to retrieve. -If None, retrieves every message in the channel. Note, however, -that this would make it a slow operation.

  • -
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time. -When using this argument, the maximum limit is 101. Note that if the limit is an -even number then this will return at most limit + 1 messages.

  • -
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if -after is specified, otherwise False.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to get channel message history.

  • -
  • HTTPException – The request to get message history failed.

  • -
-
-
Yields
-

Message – The message with the message data parsed.

-
-
-
- -
-
-await pins()
-

This function is a coroutine.

-

Retrieves all messages that are currently pinned in the channel.

-
-

Note

-

Due to a limitation with the Discord API, the Message -objects returned by this method do not contain complete -Message.reactions data.

-
-
-
Raises
-

HTTPException – Retrieving the pinned messages failed.

-
-
Returns
-

The messages that are currently pinned.

-
-
Return type
-

List[Message]

-
-
-
- -
-
-await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
-

This function is a coroutine.

-

Sends a message to the destination with the content given.

-

The content must be a type that can convert to a string through str(content). -If the content is set to None (the default), then the embed parameter must -be provided.

-

To upload a single file, the file parameter should be used with a -single File object. To upload multiple files, the files -parameter should be used with a list of File objects. -Specifying both parameters will lead to an exception.

-

To upload a single embed, the embed parameter should be used with a -single Embed object. To upload multiple embeds, the embeds -parameter should be used with a list of Embed objects. -Specifying both parameters will lead to an exception.

-
-
Parameters
-
    -
  • content (Optional[str]) – The content of the message to send.

  • -
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • -
  • embed (Embed) – The rich embed for the content.

  • -
  • file (File) – The file to upload.

  • -
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • -
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, -then the message will have a nonce with this value.

  • -
  • delete_after (float) – If provided, the number of seconds to wait in the background -before deleting the message we just sent. If the deletion fails, -then it is silently ignored.

  • -
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is -passed, then the object is merged with allowed_mentions. -The merging behaviour only overrides attributes that have been explicitly passed -to the object, otherwise it uses the attributes set in allowed_mentions. -If no object is passed at all then the defaults given by allowed_mentions -are used instead.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using -to_reference() or passed directly as a Message. You can control -whether this mentions the author of the referenced message using the replied_user -attribute of allowed_mentions or by setting mention_author.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • -
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
-
-
Returns
-

The message that was sent.

-
-
Return type
-

Message

-
-
-
- -
-
-await trigger_typing()
-

This function is a coroutine.

-

Triggers a typing indicator to the destination.

-

Typing indicator will go away after 10 seconds, or after a message is sent.

-
- -
-
-typing()
-

Returns a context manager that allows you to type for an indefinite period of time.

-

This is useful for denoting long computations in your bot.

-
-

Note

-

This is both a regular context manager and an async context manager. -This means that both with and async with work with this.

-
-

Example Usage:

-
async with channel.typing():
-    # simulate something heavy
-    await asyncio.sleep(10)
-
-await channel.send('done!')
-
-
-
- -
-
-get_partial_message(message_id, /)
-

Creates a PartialMessage from the message ID.

-

This is useful if you want to work with a message and only have its ID without -doing an unnecessary API call.

-
-
Parameters
-

message_id (int) – The message ID to create a partial message for.

-
-
Returns
-

The partial message.

-
-
Return type
-

PartialMessage

-
-
-
- -
- -
-
-

TextChannel

-
-
-class discord.TextChannel
-

Represents a Discord guild text channel.

-
-
-
-x == y
-

Checks if two channels are equal.

-
- -
-
-x != y
-

Checks if two channels are not equal.

-
- -
-
-hash(x)
-

Returns the channel’s hash.

-
- -
-
-str(x)
-

Returns the channel’s name.

-
- -
-
-int(x)
-

Returns the channel’s ID.

-
- -
-
-
-name
-

The channel name.

-
-
Type
-

str

-
-
-
- -
-
-guild
-

The guild the channel belongs to.

-
-
Type
-

Guild

-
-
-
- -
-
-id
-

The channel ID.

-
-
Type
-

int

-
-
-
- -
-
-category_id
-

The category channel ID this channel belongs to, if applicable.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-topic
-

The channel’s topic. None if it doesn’t exist.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-position
-

The position in the channel list. This is a number that starts at 0. e.g. the -top channel is position 0.

-
-
Type
-

int

-
-
-
- -
-
-last_message_id
-

The last message ID of the message sent to this channel. It may -not point to an existing or valid message.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-slowmode_delay
-

The number of seconds a member must wait between sending messages -in this channel. A value of 0 denotes that it is disabled. -Bots and users with manage_channels or -manage_messages bypass slowmode.

-
-
Type
-

int

-
-
-
- -
-
-nsfw
-

If the channel is marked as “not safe for work”.

-
-

Note

-

To check if the channel or the guild of that channel are marked as NSFW, consider is_nsfw() instead.

-
-
-
Type
-

bool

-
-
-
- -
-
-default_auto_archive_duration
-

The default auto archive duration in minutes for threads created in this channel.

-
-

New in version 2.0.

-
-
-
Type
-

int

-
-
-
- -
-
-async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
-

Returns an AsyncIterator that enables receiving the destination’s message history.

-

You must have read_message_history permissions to use this.

-

Examples

-

Usage

-
counter = 0
-async for message in channel.history(limit=200):
-    if message.author == client.user:
-        counter += 1
-
-
-

Flattening into a list:

-
messages = await channel.history(limit=123).flatten()
-# messages is now a list of Message...
-
-
-

All parameters are optional.

-
-
Parameters
-
    -
  • limit (Optional[int]) – The number of messages to retrieve. -If None, retrieves every message in the channel. Note, however, -that this would make it a slow operation.

  • -
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time. -When using this argument, the maximum limit is 101. Note that if the limit is an -even number then this will return at most limit + 1 messages.

  • -
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if -after is specified, otherwise False.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to get channel message history.

  • -
  • HTTPException – The request to get message history failed.

  • -
-
-
Yields
-

Message – The message with the message data parsed.

-
-
-
- -
-
-async with typing()
-

Returns a context manager that allows you to type for an indefinite period of time.

-

This is useful for denoting long computations in your bot.

-
-

Note

-

This is both a regular context manager and an async context manager. -This means that both with and async with work with this.

-
-

Example Usage:

-
async with channel.typing():
-    # simulate something heavy
-    await asyncio.sleep(10)
-
-await channel.send('done!')
-
-
-
- -
-
-property type
-

The channel’s Discord type.

-
-
Type
-

ChannelType

-
-
-
- -
-
-permissions_for(obj, /)
-

Handles permission resolution for the Member -or Role.

-

This function takes into consideration the following cases:

-
    -
  • Guild owner

  • -
  • Guild roles

  • -
  • Channel overrides

  • -
  • Member overrides

  • -
-

If a Role is passed, then it checks the permissions -someone with that role would have, which is essentially:

-
    -
  • The default role permissions

  • -
  • The permissions of the role used as a parameter

  • -
  • The default role permission overwrites

  • -
  • The permission overwrites of the role used as a parameter

  • -
-
-

Changed in version 2.0: The object passed in can now be a role object.

-
-
-
Parameters
-

obj (Union[Member, Role]) – The object to resolve permissions for. This could be either -a member or a role. If it’s a role then member overwrites -are not computed.

-
-
Returns
-

The resolved permissions for the member or role.

-
-
Return type
-

Permissions

-
-
-
- -
-
-property members
-

Returns all members that can see this channel.

-
-
Type
-

List[Member]

-
-
-
- -
-
-property bots
-

Returns all bots that can see this channel.

-
-
Type
-

List[Member]

-
-
-
- -
-
-property humans
-

Returns all human members that can see this channel.

-
-
Type
-

List[Member]

-
-
-
- -
-
-property threads
-

Returns all the threads that you can see.

-
-

New in version 2.0.

-
-
-
Type
-

List[Thread]

-
-
-
- -
-
-is_nsfw()
-

bool: Checks if the channel is NSFW.

-
- -
-
-is_news()
-

bool: Checks if the channel is a news channel.

-
- -
-
-property last_message
-

Fetches the last message from this channel in cache.

-

The message might not be valid or point to an existing message.

-
-

Reliable Fetching

-

For a slightly more reliable method of fetching the -last message, consider using either history() -or fetch_message() with the last_message_id -attribute.

-
-
-
Returns
-

The last message in this channel or None if not found.

-
-
Return type
-

Optional[Message]

-
-
-
- -
-
-await edit(*, reason=None, **options)
-

This function is a coroutine.

-

Edits the channel.

-

You must have the manage_channels permission to -use this.

-
-

Changed in version 1.3: The overwrites keyword-only parameter was added.

-
-
-

Changed in version 1.4: The type keyword-only parameter was added.

-
-
-

Changed in version 2.0: Edits are no longer in-place, the newly edited channel is returned instead.

-
-
-
Parameters
-
    -
  • name (str) – The new channel name.

  • -
  • topic (str) – The new channel’s topic.

  • -
  • position (int) – The new channel’s position.

  • -
  • nsfw (bool) – To mark the channel as NSFW or not.

  • -
  • sync_permissions (bool) – Whether to sync permissions with the channel’s new or pre-existing -category. Defaults to False.

  • -
  • category (Optional[CategoryChannel]) – The new category for this channel. Can be None to remove the -category.

  • -
  • slowmode_delay (int) – Specifies the slowmode rate limit for user in this channel, in seconds. -A value of 0 disables slowmode. The maximum value possible is 21600.

  • -
  • type (ChannelType) – Change the type of this text channel. Currently, only conversion between -ChannelType.text and ChannelType.news is supported. This -is only available to guilds that contain NEWS in Guild.features.

  • -
  • reason (Optional[str]) – The reason for editing this channel. Shows up on the audit log.

  • -
  • overwrites (Mapping) – A Mapping of target (either a role or a member) to -PermissionOverwrite to apply to the channel.

  • -
  • default_auto_archive_duration (int) – The new default auto archive duration in minutes for threads created in this channel. -Must be one of 60, 1440, 4320, or 10080.

  • -
-
-
Raises
-
    -
  • InvalidArgument – If position is less than 0 or greater than the number of channels, or if - the permission overwrite information is not in proper form.

  • -
  • Forbidden – You do not have permissions to edit the channel.

  • -
  • HTTPException – Editing the channel failed.

  • -
-
-
Returns
-

The newly edited text channel. If the edit was only positional -then None is returned instead.

-
-
Return type
-

Optional[TextChannel]

-
-
-
- -
-
-await clone(*, name=None, reason=None)
-

This function is a coroutine.

-

Clones this channel. This creates a channel with the same properties -as this channel.

-

You must have the manage_channels permission to -do this.

-
-

New in version 1.1.

-
-
-
Parameters
-
    -
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this -channel name.

  • -
  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to create this channel.

  • -
  • HTTPException – Creating the channel failed.

  • -
-
-
Returns
-

The channel that was created.

-
-
Return type
-

abc.GuildChannel

-
-
-
- -
-
-await delete_messages(messages)
-

This function is a coroutine.

-

Deletes a list of messages. This is similar to Message.delete() -except it bulk deletes multiple messages.

-

As a special case, if the number of messages is 0, then nothing -is done. If the number of messages is 1 then single message -delete is done. If it’s more than two, then bulk delete is used.

-

You cannot bulk delete more than 100 messages or messages that -are older than 14 days old.

-

You must have the manage_messages permission to -use this.

-
-
Parameters
-

messages (Iterable[abc.Snowflake]) – An iterable of messages denoting which ones to bulk delete.

-
-
Raises
-
    -
  • ClientException – The number of messages to delete was more than 100.

  • -
  • Forbidden – You do not have proper permissions to delete the messages.

  • -
  • NotFound – If single delete, then the message was already deleted.

  • -
  • HTTPException – Deleting the messages failed.

  • -
-
-
-
- -
-
-await purge(*, limit=100, check=..., before=None, after=None, around=None, oldest_first=False, bulk=True)
-

This function is a coroutine.

-

Purges a list of messages that meet the criteria given by the predicate -check. If a check is not provided then all messages are deleted -without discrimination.

-

You must have the manage_messages permission to -delete messages even if they are your own. -The read_message_history permission is -also needed to retrieve message history.

-

Examples

-

Deleting bot’s messages

-
def is_me(m):
-    return m.author == client.user
-
-deleted = await channel.purge(limit=100, check=is_me)
-await channel.send(f'Deleted {len(deleted)} message(s)')
-
-
-
-
Parameters
-
-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to do the actions required.

  • -
  • HTTPException – Purging the messages failed.

  • -
-
-
Returns
-

The list of messages that were deleted.

-
-
Return type
-

List[Message]

-
-
-
- -
-
-await webhooks()
-

This function is a coroutine.

-

Gets the list of webhooks from this channel.

-

Requires manage_webhooks permissions.

-
-
Raises
-

Forbidden – You don’t have permissions to get the webhooks.

-
-
Returns
-

The webhooks for this channel.

-
-
Return type
-

List[Webhook]

-
-
-
- -
-
-await create_webhook(*, name, avatar=None, reason=None)
-

This function is a coroutine.

-

Creates a webhook for this channel.

-

Requires manage_webhooks permissions.

-
-

Changed in version 1.1: Added the reason keyword-only parameter.

-
-
-
Parameters
-
    -
  • name (str) – The webhook’s name.

  • -
  • avatar (Optional[bytes]) – A bytes-like object representing the webhook’s default avatar. -This operates similarly to edit().

  • -
  • reason (Optional[str]) – The reason for creating this webhook. Shows up in the audit logs.

  • -
-
-
Raises
-
    -
  • HTTPException – Creating the webhook failed.

  • -
  • Forbidden – You do not have permissions to create a webhook.

  • -
-
-
Returns
-

The created webhook.

-
-
Return type
-

Webhook

-
-
-
- -
-
-await follow(*, destination, reason=None)
-

Follows a channel using a webhook.

-

Only news channels can be followed.

-
-

Note

-

The webhook returned will not provide a token to do webhook -actions, as Discord does not provide it.

-
-
-

New in version 1.3.

-
-
-
Parameters
-
    -
  • destination (TextChannel) – The channel you would like to follow from.

  • -
  • reason (Optional[str]) –

    The reason for following the channel. Shows up on the destination guild’s audit log.

    -
    -

    New in version 1.4.

    -
    -

  • -
-
-
Raises
-
    -
  • HTTPException – Following the channel failed.

  • -
  • Forbidden – You do not have the permissions to create a webhook.

  • -
-
-
Returns
-

The created webhook.

-
-
Return type
-

Webhook

-
-
-
- -
-
-get_partial_message(message_id, /)
-

Creates a PartialMessage from the message ID.

-

This is useful if you want to work with a message and only have its ID without -doing an unnecessary API call.

-
-

New in version 1.6.

-
-
-
Parameters
-

message_id (int) – The message ID to create a partial message for.

-
-
Returns
-

The partial message.

-
-
Return type
-

PartialMessage

-
-
-
- -
-
-get_thread(thread_id, /)
-

Returns a thread with the given ID.

-
-

New in version 2.0.

-
-
-
Parameters
-

thread_id (int) – The ID to search for.

-
-
Returns
-

The returned thread or None if not found.

-
-
Return type
-

Optional[Thread]

-
-
-
- -
-
-await create_thread(*, name, message=None, auto_archive_duration=..., type=None, reason=None)
-

This function is a coroutine.

-

Creates a thread in this text channel.

-

To create a public thread, you must have create_public_threads. -For a private thread, create_private_threads is needed instead.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • name (str) – The name of the thread.

  • -
  • message (Optional[abc.Snowflake]) – A snowflake representing the message to create the thread with. -If None is passed then a private thread is created. -Defaults to None.

  • -
  • auto_archive_duration (int) – The duration in minutes before a thread is automatically archived for inactivity. -If not provided, the channel’s default auto archive duration is used.

  • -
  • type (Optional[ChannelType]) – The type of thread to create. If a message is passed then this parameter -is ignored, as a thread created with a message is always a public thread. -By default this creates a private thread if this is None.

  • -
  • reason (str) – The reason for creating a new thread. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to create a thread.

  • -
  • HTTPException – Starting the thread failed.

  • -
-
-
Returns
-

The created thread

-
-
Return type
-

Thread

-
-
-
- -
-
-archived_threads(*, private=False, joined=False, limit=50, before=None)
-

Returns an AsyncIterator that iterates over all archived threads in the guild.

-

You must have read_message_history to use this. If iterating over private threads -then manage_threads is also required.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • limit (Optional[bool]) – The number of threads to retrieve. -If None, retrieves every archived thread in the channel. Note, however, -that this would make it a slow operation.

  • -
  • before (Optional[Union[abc.Snowflake, datetime.datetime]]) – Retrieve archived channels before the given date or ID.

  • -
  • private (bool) – Whether to retrieve private archived threads.

  • -
  • joined (bool) – Whether to retrieve private archived threads that you’ve joined. -You cannot set joined to True and private to False.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to get archived threads.

  • -
  • HTTPException – The request to get the archived threads failed.

  • -
-
-
Yields
-

Thread – The archived threads.

-
-
-
- -
-
-property category
-

The category this channel belongs to.

-

If there is no category then this is None.

-
-
Type
-

Optional[CategoryChannel]

-
-
-
- -
-
-property changed_roles
-

Returns a list of roles that have been overridden from -their default values in the roles attribute.

-
-
Type
-

List[Role]

-
-
-
- -
-
-await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_type=None, target_user=None, target_application_id=None)
-

This function is a coroutine.

-

Creates an instant invite from a text or voice channel.

-

You must have the create_instant_invite permission to -do this.

-
-
Parameters
-
    -
  • max_age (int) – How long the invite should last in seconds. If it’s 0 then the invite -doesn’t expire. Defaults to 0.

  • -
  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there -are unlimited uses. Defaults to 0.

  • -
  • temporary (bool) – Denotes that the invite grants temporary membership -(i.e. they get kicked after they disconnect). Defaults to False.

  • -
  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. -If this is set to False then it will return a previously created -invite.

  • -
  • reason (Optional[str]) – The reason for creating this invite. Shows up on the audit log.

  • -
  • target_type (Optional[InviteTarget]) –

    The type of target for the voice channel invite, if any.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • target_user (Optional[User]) –

    The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • target_application_id:

    Optional[int]: The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • HTTPException – Invite creation failed.

  • -
  • NotFound – The channel that was passed is a category or an invalid channel.

  • -
-
-
Returns
-

The invite that was created.

-
-
Return type
-

Invite

-
-
-
- -
-
-property created_at
-

Returns the channel’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-await delete(*, reason=None)
-

This function is a coroutine.

-

Deletes the channel.

-

You must have manage_channels permission to use this.

-
-
Parameters
-

reason (Optional[str]) – The reason for deleting this channel. -Shows up on the audit log.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to delete the channel.

  • -
  • NotFound – The channel was not found or was already deleted.

  • -
  • HTTPException – Deleting the channel failed.

  • -
-
-
-
- -
-
-await fetch_message(id, /)
-

This function is a coroutine.

-

Retrieves a single Message from the destination.

-
-
Parameters
-

id (int) – The message ID to look for.

-
-
Raises
-
    -
  • NotFound – The specified message was not found.

  • -
  • Forbidden – You do not have the permissions required to get a message.

  • -
  • HTTPException – Retrieving the message failed.

  • -
-
-
Returns
-

The message asked for.

-
-
Return type
-

Message

-
-
-
- -
-
-await invites()
-

This function is a coroutine.

-

Returns a list of all active instant invites from this channel.

-

You must have manage_channels to get this information.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to get the information.

  • -
  • HTTPException – An error occurred while fetching the information.

  • -
-
-
Returns
-

The list of invites that are currently active.

-
-
Return type
-

List[Invite]

-
-
-
- -
-
-property mention
-

The string that allows you to mention the channel.

-
-
Type
-

str

-
-
-
- -
-
-await move(**kwargs)
-

This function is a coroutine.

-

A rich interface to help move a channel relative to other channels.

-

If exact position movement is required, edit should be used instead.

-

You must have the manage_channels permission to -do this.

-
-

Note

-

Voice channels will always be sorted below text channels. -This is a Discord limitation.

-
-
-

New in version 1.7.

-
-
-
Parameters
-
    -
  • beginning (bool) – Whether to move the channel to the beginning of the -channel list (or category if given). -This is mutually exclusive with end, before, and after.

  • -
  • end (bool) – Whether to move the channel to the end of the -channel list (or category if given). -This is mutually exclusive with beginning, before, and after.

  • -
  • before (Snowflake) – The channel that should be before our current channel. -This is mutually exclusive with beginning, end, and after.

  • -
  • after (Snowflake) – The channel that should be after our current channel. -This is mutually exclusive with beginning, end, and before.

  • -
  • offset (int) – The number of channels to offset the move by. For example, -an offset of 2 with beginning=True would move -it 2 after the beginning. A positive number moves it below -while a negative number moves it above. Note that this -number is relative and computed after the beginning, -end, before, and after parameters.

  • -
  • category (Optional[Snowflake]) – The category to move this channel under. -If None is given then it moves it out of the category. -This parameter is ignored if moving a category channel.

  • -
  • sync_permissions (bool) – Whether to sync the permissions with the category (if given).

  • -
  • reason (str) – The reason for the move.

  • -
-
-
Raises
-
    -
  • InvalidArgument – An invalid position was given or a bad mix of arguments were passed.

  • -
  • Forbidden – You do not have permissions to move the channel.

  • -
  • HTTPException – Moving the channel failed.

  • -
-
-
-
- -
-
-property overwrites
-

Returns all of the channel’s overwrites.

-

This is returned as a dictionary where the key contains the target which -can be either a Role or a Member and the value is the -overwrite as a PermissionOverwrite.

-
-
Returns
-

The channel’s permission overwrites.

-
-
Return type
-

Dict[Union[Role, Member], PermissionOverwrite]

-
-
-
- -
-
-overwrites_for(obj)
-

Returns the channel-specific overwrites for a member or a role.

-
-
Parameters
-

obj (Union[Role, User]) – The role or user denoting -whose overwrite to get.

-
-
Returns
-

The permission overwrites for this object.

-
-
Return type
-

PermissionOverwrite

-
-
-
- -
-
-property permissions_synced
-

Whether or not the permissions for this channel are synced with the -category it belongs to.

-

If there is no category then this is False.

-
-

New in version 1.3.

-
-
-
Type
-

bool

-
-
-
- -
-
-await pins()
-

This function is a coroutine.

-

Retrieves all messages that are currently pinned in the channel.

-
-

Note

-

Due to a limitation with the Discord API, the Message -objects returned by this method do not contain complete -Message.reactions data.

-
-
-
Raises
-

HTTPException – Retrieving the pinned messages failed.

-
-
Returns
-

The messages that are currently pinned.

-
-
Return type
-

List[Message]

-
-
-
- -
-
-await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
-

This function is a coroutine.

-

Sends a message to the destination with the content given.

-

The content must be a type that can convert to a string through str(content). -If the content is set to None (the default), then the embed parameter must -be provided.

-

To upload a single file, the file parameter should be used with a -single File object. To upload multiple files, the files -parameter should be used with a list of File objects. -Specifying both parameters will lead to an exception.

-

To upload a single embed, the embed parameter should be used with a -single Embed object. To upload multiple embeds, the embeds -parameter should be used with a list of Embed objects. -Specifying both parameters will lead to an exception.

-
-
Parameters
-
    -
  • content (Optional[str]) – The content of the message to send.

  • -
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • -
  • embed (Embed) – The rich embed for the content.

  • -
  • file (File) – The file to upload.

  • -
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • -
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, -then the message will have a nonce with this value.

  • -
  • delete_after (float) – If provided, the number of seconds to wait in the background -before deleting the message we just sent. If the deletion fails, -then it is silently ignored.

  • -
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is -passed, then the object is merged with allowed_mentions. -The merging behaviour only overrides attributes that have been explicitly passed -to the object, otherwise it uses the attributes set in allowed_mentions. -If no object is passed at all then the defaults given by allowed_mentions -are used instead.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using -to_reference() or passed directly as a Message. You can control -whether this mentions the author of the referenced message using the replied_user -attribute of allowed_mentions or by setting mention_author.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • -
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
-
-
Returns
-

The message that was sent.

-
-
Return type
-

Message

-
-
-
- -
-
-await set_permissions(target, *, overwrite=see - below, reason=None, **permissions)
-

This function is a coroutine.

-

Sets the channel specific permission overwrites for a target in the -channel.

-

The target parameter should either be a Member or a -Role that belongs to guild.

-

The overwrite parameter, if given, must either be None or -PermissionOverwrite. For convenience, you can pass in -keyword arguments denoting Permissions attributes. If this is -done, then you cannot mix the keyword arguments with the overwrite -parameter.

-

If the overwrite parameter is None, then the permission -overwrites are deleted.

-

You must have the manage_roles permission to use this.

-
-

Note

-

This method replaces the old overwrites with the ones given.

-
-

Examples

-

Setting allow and deny:

-
await message.channel.set_permissions(message.author, read_messages=True,
-                                                      send_messages=False)
-
-
-

Deleting overwrites

-
await channel.set_permissions(member, overwrite=None)
-
-
-

Using PermissionOverwrite

-
overwrite = discord.PermissionOverwrite()
-overwrite.send_messages = False
-overwrite.read_messages = True
-await channel.set_permissions(member, overwrite=overwrite)
-
-
-
-
Parameters
-
    -
  • target (Union[Member, Role]) – The member or role to overwrite permissions for.

  • -
  • overwrite (Optional[PermissionOverwrite]) – The permissions to allow and deny to the target, or None to -delete the overwrite.

  • -
  • **permissions – A keyword argument list of permissions to set for ease of use. -Cannot be mixed with overwrite.

  • -
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to edit channel specific permissions.

  • -
  • HTTPException – Editing channel specific permissions failed.

  • -
  • NotFound – The role or member being edited is not part of the guild.

  • -
  • InvalidArgument – The overwrite parameter invalid or the target type was not - Role or Member.

  • -
-
-
-
- -
-
-await trigger_typing()
-

This function is a coroutine.

-

Triggers a typing indicator to the destination.

-

Typing indicator will go away after 10 seconds, or after a message is sent.

-
- -
- -
-
-

Thread

-
-
-class discord.Thread
-

Represents a Discord thread.

-
-
-
-x == y
-

Checks if two threads are equal.

-
- -
-
-x != y
-

Checks if two threads are not equal.

-
- -
-
-hash(x)
-

Returns the thread’s hash.

-
- -
-
-int(x)
-

Returns the thread’s ID.

-
- -
-
-str(x)
-

Returns the thread’s name.

-
- -
-
-

New in version 2.0.

-
-
-
-name
-

The thread name.

-
-
Type
-

str

-
-
-
- -
-
-guild
-

The guild the thread belongs to.

-
-
Type
-

Guild

-
-
-
- -
-
-id
-

The thread ID.

-
-
Type
-

int

-
-
-
- -
-
-parent_id
-

The parent TextChannel ID this thread belongs to.

-
-
Type
-

int

-
-
-
- -
-
-owner_id
-

The user’s ID that created this thread.

-
-
Type
-

int

-
-
-
- -
-
-last_message_id
-

The last message ID of the message sent to this thread. It may -not point to an existing or valid message.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-slowmode_delay
-

The number of seconds a member must wait between sending messages -in this thread. A value of 0 denotes that it is disabled. -Bots and users with manage_channels or -manage_messages bypass slowmode.

-
-
Type
-

int

-
-
-
- -
-
-message_count
-

An approximate number of messages in this thread. This caps at 50.

-
-
Type
-

int

-
-
-
- -
-
-member_count
-

An approximate number of members in this thread. This caps at 50.

-
-
Type
-

int

-
-
-
- -
-
-me
-

A thread member representing yourself, if you’ve joined the thread. -This could not be available.

-
-
Type
-

Optional[ThreadMember]

-
-
-
- -
-
-archived
-

Whether the thread is archived.

-
-
Type
-

bool

-
-
-
- -
-
-locked
-

Whether the thread is locked.

-
-
Type
-

bool

-
-
-
- -
-
-invitable
-

Whether non-moderators can add other non-moderators to this thread. -This is always True for public threads.

-
-
Type
-

bool

-
-
-
- -
-
-archiver_id
-

The user’s ID that archived this thread.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-auto_archive_duration
-

The duration in minutes until the thread is automatically archived due to inactivity. -Usually a value of 60, 1440, 4320 and 10080.

-
-
Type
-

int

-
-
-
- -
-
-archive_timestamp
-

An aware timestamp of when the thread’s archived status was last updated in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
-

Returns an AsyncIterator that enables receiving the destination’s message history.

-

You must have read_message_history permissions to use this.

-

Examples

-

Usage

-
counter = 0
-async for message in channel.history(limit=200):
-    if message.author == client.user:
-        counter += 1
-
-
-

Flattening into a list:

-
messages = await channel.history(limit=123).flatten()
-# messages is now a list of Message...
-
-
-

All parameters are optional.

-
-
Parameters
-
    -
  • limit (Optional[int]) – The number of messages to retrieve. -If None, retrieves every message in the channel. Note, however, -that this would make it a slow operation.

  • -
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time. -When using this argument, the maximum limit is 101. Note that if the limit is an -even number then this will return at most limit + 1 messages.

  • -
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if -after is specified, otherwise False.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to get channel message history.

  • -
  • HTTPException – The request to get message history failed.

  • -
-
-
Yields
-

Message – The message with the message data parsed.

-
-
-
- -
-
-async with typing()
-

Returns a context manager that allows you to type for an indefinite period of time.

-

This is useful for denoting long computations in your bot.

-
-

Note

-

This is both a regular context manager and an async context manager. -This means that both with and async with work with this.

-
-

Example Usage:

-
async with channel.typing():
-    # simulate something heavy
-    await asyncio.sleep(10)
-
-await channel.send('done!')
-
-
-
- -
-
-property type
-

The channel’s Discord type.

-
-
Type
-

ChannelType

-
-
-
- -
-
-property parent
-

The parent channel this thread belongs to.

-
-
Type
-

Optional[TextChannel]

-
-
-
- -
-
-property owner
-

The member this thread belongs to.

-
-
Type
-

Optional[Member]

-
-
-
- -
-
-property mention
-

The string that allows you to mention the thread.

-
-
Type
-

str

-
-
-
- -
-
-property members
-

A list of thread members in this thread.

-

This requires Intents.members to be properly filled. Most of the time however, -this data is not provided by the gateway and a call to fetch_members() is -needed.

-
-
Type
-

List[ThreadMember]

-
-
-
- -
-
-property last_message
-

Fetches the last message from this channel in cache.

-

The message might not be valid or point to an existing message.

-
-

Reliable Fetching

-

For a slightly more reliable method of fetching the -last message, consider using either history() -or fetch_message() with the last_message_id -attribute.

-
-
-
Returns
-

The last message in this channel or None if not found.

-
-
Return type
-

Optional[Message]

-
-
-
- -
-
-property category
-

The category channel the parent channel belongs to, if applicable.

-
-
Raises
-

ClientException – The parent channel was not cached and returned None.

-
-
Returns
-

The parent channel’s category.

-
-
Return type
-

Optional[CategoryChannel]

-
-
-
- -
-
-property category_id
-

The category channel ID the parent channel belongs to, if applicable.

-
-
Raises
-

ClientException – The parent channel was not cached and returned None.

-
-
Returns
-

The parent channel’s category ID.

-
-
Return type
-

Optional[int]

-
-
-
- -
-
-is_private()
-

bool: Whether the thread is a private thread.

-

A private thread is only viewable by those that have been explicitly -invited or have manage_threads.

-
- -
-
-is_news()
-

bool: Whether the thread is a news thread.

-

A news thread is a thread that has a parent that is a news channel, -i.e. TextChannel.is_news() is True.

-
- -
-
-is_nsfw()
-

bool: Whether the thread is NSFW or not.

-

An NSFW thread is a thread that has a parent that is an NSFW channel, -i.e. TextChannel.is_nsfw() is True.

-
- -
-
-permissions_for(obj, /)
-

Handles permission resolution for the Member -or Role.

-

Since threads do not have their own permissions, they inherit them -from the parent channel. This is a convenience method for -calling permissions_for() on the -parent channel.

-
-
Parameters
-

obj (Union[Member, Role]) – The object to resolve permissions for. This could be either -a member or a role. If it’s a role then member overwrites -are not computed.

-
-
Raises
-

ClientException – The parent channel was not cached and returned None

-
-
Returns
-

The resolved permissions for the member or role.

-
-
Return type
-

Permissions

-
-
-
- -
-
-await delete_messages(messages)
-

This function is a coroutine.

-

Deletes a list of messages. This is similar to Message.delete() -except it bulk deletes multiple messages.

-

As a special case, if the number of messages is 0, then nothing -is done. If the number of messages is 1 then single message -delete is done. If it’s more than two, then bulk delete is used.

-

You cannot bulk delete more than 100 messages or messages that -are older than 14 days old.

-

You must have the manage_messages permission to -use this.

-

Usable only by bot accounts.

-
-
Parameters
-

messages (Iterable[abc.Snowflake]) – An iterable of messages denoting which ones to bulk delete.

-
-
Raises
-
    -
  • ClientException – The number of messages to delete was more than 100.

  • -
  • Forbidden – You do not have proper permissions to delete the messages or - you’re not using a bot account.

  • -
  • NotFound – If single delete, then the message was already deleted.

  • -
  • HTTPException – Deleting the messages failed.

  • -
-
-
-
- -
-
-await purge(*, limit=100, check=..., before=None, after=None, around=None, oldest_first=False, bulk=True)
-

This function is a coroutine.

-

Purges a list of messages that meet the criteria given by the predicate -check. If a check is not provided then all messages are deleted -without discrimination.

-

You must have the manage_messages permission to -delete messages even if they are your own (unless you are a user -account). The read_message_history permission is -also needed to retrieve message history.

-

Examples

-

Deleting bot’s messages

-
def is_me(m):
-    return m.author == client.user
-
-deleted = await thread.purge(limit=100, check=is_me)
-await thread.send(f'Deleted {len(deleted)} message(s)')
-
-
-
-
Parameters
-
-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to do the actions required.

  • -
  • HTTPException – Purging the messages failed.

  • -
-
-
Returns
-

The list of messages that were deleted.

-
-
Return type
-

List[Message]

-
-
-
- -
-
-await edit(*, name=..., archived=..., locked=..., invitable=..., slowmode_delay=..., auto_archive_duration=...)
-

This function is a coroutine.

-

Edits the thread.

-

Editing the thread requires Permissions.manage_threads. The thread -creator can also edit name, archived or auto_archive_duration. -Note that if the thread is locked then only those with Permissions.manage_threads -can unarchive a thread.

-

The thread must be unarchived to be edited.

-
-
Parameters
-
    -
  • name (str) – The new name of the thread.

  • -
  • archived (bool) – Whether to archive the thread or not.

  • -
  • locked (bool) – Whether to lock the thread or not.

  • -
  • invitable (bool) – Whether non-moderators can add other non-moderators to this thread. -Only available for private threads.

  • -
  • auto_archive_duration (int) – The new duration in minutes before a thread is automatically archived for inactivity. -Must be one of 60, 1440, 4320, or 10080.

  • -
  • slowmode_delay (int) – Specifies the slowmode rate limit for user in this thread, in seconds. -A value of 0 disables slowmode. The maximum value possible is 21600.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to edit the thread.

  • -
  • HTTPException – Editing the thread failed.

  • -
-
-
Returns
-

The newly edited thread.

-
-
Return type
-

Thread

-
-
-
- -
-
-await join()
-

This function is a coroutine.

-

Joins this thread.

-

You must have send_messages_in_threads to join a thread. -If the thread is private, manage_threads is also needed.

-
-
Raises
-
    -
  • Forbidden – You do not have permissions to join the thread.

  • -
  • HTTPException – Joining the thread failed.

  • -
-
-
-
- -
-
-await leave()
-

This function is a coroutine.

-

Leaves this thread.

-
-
Raises
-

HTTPException – Leaving the thread failed.

-
-
-
- -
-
-await add_user(user)
-

This function is a coroutine.

-

Adds a user to this thread.

-

You must have send_messages and use_threads -to add a user to a public thread. If the thread is private then send_messages -and either use_private_threads or manage_messages -is required to add a user to the thread.

-
-
Parameters
-

user (abc.Snowflake) – The user to add to the thread.

-
-
Raises
-
    -
  • Forbidden – You do not have permissions to add the user to the thread.

  • -
  • HTTPException – Adding the user to the thread failed.

  • -
-
-
-
- -
-
-await remove_user(user)
-

This function is a coroutine.

-

Removes a user from this thread.

-

You must have manage_threads or be the creator of the thread to remove a user.

-
-
Parameters
-

user (abc.Snowflake) – The user to add to the thread.

-
-
Raises
-
    -
  • Forbidden – You do not have permissions to remove the user from the thread.

  • -
  • HTTPException – Removing the user from the thread failed.

  • -
-
-
-
- -
-
-await fetch_members()
-

This function is a coroutine.

-

Retrieves all ThreadMember that are in this thread.

-

This requires Intents.members to get information about members -other than yourself.

-
-
Raises
-

HTTPException – Retrieving the members failed.

-
-
Returns
-

All thread members in the thread.

-
-
Return type
-

List[ThreadMember]

-
-
-
- -
-
-await delete()
-

This function is a coroutine.

-

Deletes this thread.

-

You must have manage_threads to delete threads.

-
-
Raises
-
    -
  • Forbidden – You do not have permissions to delete this thread.

  • -
  • HTTPException – Deleting the thread failed.

  • -
-
-
-
- -
-
-get_partial_message(message_id, /)
-

Creates a PartialMessage from the message ID.

-

This is useful if you want to work with a message and only have its ID without -doing an unnecessary API call.

-
-

New in version 2.0.

-
-
-
Parameters
-

message_id (int) – The message ID to create a partial message for.

-
-
Returns
-

The partial message.

-
-
Return type
-

PartialMessage

-
-
-
- -
-
-await fetch_message(id, /)
-

This function is a coroutine.

-

Retrieves a single Message from the destination.

-
-
Parameters
-

id (int) – The message ID to look for.

-
-
Raises
-
    -
  • NotFound – The specified message was not found.

  • -
  • Forbidden – You do not have the permissions required to get a message.

  • -
  • HTTPException – Retrieving the message failed.

  • -
-
-
Returns
-

The message asked for.

-
-
Return type
-

Message

-
-
-
- -
-
-await pins()
-

This function is a coroutine.

-

Retrieves all messages that are currently pinned in the channel.

-
-

Note

-

Due to a limitation with the Discord API, the Message -objects returned by this method do not contain complete -Message.reactions data.

-
-
-
Raises
-

HTTPException – Retrieving the pinned messages failed.

-
-
Returns
-

The messages that are currently pinned.

-
-
Return type
-

List[Message]

-
-
-
- -
-
-await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
-

This function is a coroutine.

-

Sends a message to the destination with the content given.

-

The content must be a type that can convert to a string through str(content). -If the content is set to None (the default), then the embed parameter must -be provided.

-

To upload a single file, the file parameter should be used with a -single File object. To upload multiple files, the files -parameter should be used with a list of File objects. -Specifying both parameters will lead to an exception.

-

To upload a single embed, the embed parameter should be used with a -single Embed object. To upload multiple embeds, the embeds -parameter should be used with a list of Embed objects. -Specifying both parameters will lead to an exception.

-
-
Parameters
-
    -
  • content (Optional[str]) – The content of the message to send.

  • -
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • -
  • embed (Embed) – The rich embed for the content.

  • -
  • file (File) – The file to upload.

  • -
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • -
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, -then the message will have a nonce with this value.

  • -
  • delete_after (float) – If provided, the number of seconds to wait in the background -before deleting the message we just sent. If the deletion fails, -then it is silently ignored.

  • -
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is -passed, then the object is merged with allowed_mentions. -The merging behaviour only overrides attributes that have been explicitly passed -to the object, otherwise it uses the attributes set in allowed_mentions. -If no object is passed at all then the defaults given by allowed_mentions -are used instead.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using -to_reference() or passed directly as a Message. You can control -whether this mentions the author of the referenced message using the replied_user -attribute of allowed_mentions or by setting mention_author.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • -
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
-
-
Returns
-

The message that was sent.

-
-
Return type
-

Message

-
-
-
- -
-
-await trigger_typing()
-

This function is a coroutine.

-

Triggers a typing indicator to the destination.

-

Typing indicator will go away after 10 seconds, or after a message is sent.

-
- -
- -
-
-

ThreadMember

-
- -Attributes -
- -Methods -
-
-class discord.ThreadMember
-

Represents a Discord thread member.

-
-
-
-x == y
-

Checks if two thread members are equal.

-
- -
-
-x != y
-

Checks if two thread members are not equal.

-
- -
-
-hash(x)
-

Returns the thread member’s hash.

-
- -
-
-int(x)
-

Returns the thread member’s ID.

-
- -
-
-str(x)
-

Returns the thread member’s name.

-
- -
-
-

New in version 2.0.

-
-
-
-id
-

The thread member’s ID.

-
-
Type
-

int

-
-
-
- -
-
-thread_id
-

The thread’s ID.

-
-
Type
-

int

-
-
-
- -
-
-joined_at
-

The time the member joined the thread in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-property thread
-

The thread this member belongs to.

-
-
Type
-

Thread

-
-
-
- -
-
-await fetch_member()
-

This function is a coroutine.

-

Retrieves a Member from the ThreadMember object.

-
-

Note

-

This method is an API call. If you have Intents.members and member cache enabled, consider get_member() instead.

-
-
-
Raises
-
-
-
Returns
-

The member.

-
-
Return type
-

Member

-
-
-
- -
-
-get_member()
-

Get the Member from cache for the ThreadMember object.

-
-
Returns
-

The member or None if not found.

-
-
Return type
-

Optional[Member]

-
-
-
- -
- -
-
-

StoreChannel

-
- -Methods -
-
-class discord.StoreChannel
-

Represents a Discord guild store channel.

-
-
-
-x == y
-

Checks if two channels are equal.

-
- -
-
-x != y
-

Checks if two channels are not equal.

-
- -
-
-hash(x)
-

Returns the channel’s hash.

-
- -
-
-str(x)
-

Returns the channel’s name.

-
- -
-
-int(x)
-

Returns the channel’s ID.

-
- -
-
-
-name
-

The channel name.

-
-
Type
-

str

-
-
-
- -
-
-guild
-

The guild the channel belongs to.

-
-
Type
-

Guild

-
-
-
- -
-
-id
-

The channel ID.

-
-
Type
-

int

-
-
-
- -
-
-category_id
-

The category channel ID this channel belongs to.

-
-
Type
-

int

-
-
-
- -
-
-position
-

The position in the channel list. This is a number that starts at 0. e.g. the -top channel is position 0.

-
-
Type
-

int

-
-
-
- -
-
-nsfw
-

If the channel is marked as “not safe for work”.

-
-

Note

-

To check if the channel or the guild of that channel are marked as NSFW, consider is_nsfw() instead.

-
-
-
Type
-

bool

-
-
-
- -
-
-property type
-

The channel’s Discord type.

-
-
Type
-

ChannelType

-
-
-
- -
-
-permissions_for(obj, /)
-

Handles permission resolution for the Member -or Role.

-

This function takes into consideration the following cases:

-
    -
  • Guild owner

  • -
  • Guild roles

  • -
  • Channel overrides

  • -
  • Member overrides

  • -
-

If a Role is passed, then it checks the permissions -someone with that role would have, which is essentially:

-
    -
  • The default role permissions

  • -
  • The permissions of the role used as a parameter

  • -
  • The default role permission overwrites

  • -
  • The permission overwrites of the role used as a parameter

  • -
-
-

Changed in version 2.0: The object passed in can now be a role object.

-
-
-
Parameters
-

obj (Union[Member, Role]) – The object to resolve permissions for. This could be either -a member or a role. If it’s a role then member overwrites -are not computed.

-
-
Returns
-

The resolved permissions for the member or role.

-
-
Return type
-

Permissions

-
-
-
- -
-
-is_nsfw()
-

bool: Checks if the channel is NSFW.

-
- -
-
-await clone(*, name=None, reason=None)
-

This function is a coroutine.

-

Clones this channel. This creates a channel with the same properties -as this channel.

-

You must have the manage_channels permission to -do this.

-
-

New in version 1.1.

-
-
-
Parameters
-
    -
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this -channel name.

  • -
  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to create this channel.

  • -
  • HTTPException – Creating the channel failed.

  • -
-
-
Returns
-

The channel that was created.

-
-
Return type
-

abc.GuildChannel

-
-
-
- -
-
-await edit(*, reason=None, **options)
-

This function is a coroutine.

-

Edits the channel.

-

You must have the manage_channels permission to -use this.

-
-

Changed in version 2.0: Edits are no longer in-place, the newly edited channel is returned instead.

-
-
-
Parameters
-
    -
  • name (str) – The new channel name.

  • -
  • position (int) – The new channel’s position.

  • -
  • nsfw (bool) – To mark the channel as NSFW or not.

  • -
  • sync_permissions (bool) – Whether to sync permissions with the channel’s new or pre-existing -category. Defaults to False.

  • -
  • category (Optional[CategoryChannel]) – The new category for this channel. Can be None to remove the -category.

  • -
  • reason (Optional[str]) – The reason for editing this channel. Shows up on the audit log.

  • -
  • overwrites (Mapping) –

    A Mapping of target (either a role or a member) to -PermissionOverwrite to apply to the channel.

    -
    -

    New in version 1.3.

    -
    -

  • -
-
-
Raises
-
    -
  • InvalidArgument – If position is less than 0 or greater than the number of channels, or if - the permission overwrite information is not in proper form.

  • -
  • Forbidden – You do not have permissions to edit the channel.

  • -
  • HTTPException – Editing the channel failed.

  • -
-
-
Returns
-

The newly edited store channel. If the edit was only positional -then None is returned instead.

-
-
Return type
-

Optional[StoreChannel]

-
-
-
- -
-
-property category
-

The category this channel belongs to.

-

If there is no category then this is None.

-
-
Type
-

Optional[CategoryChannel]

-
-
-
- -
-
-property changed_roles
-

Returns a list of roles that have been overridden from -their default values in the roles attribute.

-
-
Type
-

List[Role]

-
-
-
- -
-
-await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_type=None, target_user=None, target_application_id=None)
-

This function is a coroutine.

-

Creates an instant invite from a text or voice channel.

-

You must have the create_instant_invite permission to -do this.

-
-
Parameters
-
    -
  • max_age (int) – How long the invite should last in seconds. If it’s 0 then the invite -doesn’t expire. Defaults to 0.

  • -
  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there -are unlimited uses. Defaults to 0.

  • -
  • temporary (bool) – Denotes that the invite grants temporary membership -(i.e. they get kicked after they disconnect). Defaults to False.

  • -
  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. -If this is set to False then it will return a previously created -invite.

  • -
  • reason (Optional[str]) – The reason for creating this invite. Shows up on the audit log.

  • -
  • target_type (Optional[InviteTarget]) –

    The type of target for the voice channel invite, if any.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • target_user (Optional[User]) –

    The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • target_application_id:

    Optional[int]: The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • HTTPException – Invite creation failed.

  • -
  • NotFound – The channel that was passed is a category or an invalid channel.

  • -
-
-
Returns
-

The invite that was created.

-
-
Return type
-

Invite

-
-
-
- -
-
-property created_at
-

Returns the channel’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-await delete(*, reason=None)
-

This function is a coroutine.

-

Deletes the channel.

-

You must have manage_channels permission to use this.

-
-
Parameters
-

reason (Optional[str]) – The reason for deleting this channel. -Shows up on the audit log.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to delete the channel.

  • -
  • NotFound – The channel was not found or was already deleted.

  • -
  • HTTPException – Deleting the channel failed.

  • -
-
-
-
- -
-
-await invites()
-

This function is a coroutine.

-

Returns a list of all active instant invites from this channel.

-

You must have manage_channels to get this information.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to get the information.

  • -
  • HTTPException – An error occurred while fetching the information.

  • -
-
-
Returns
-

The list of invites that are currently active.

-
-
Return type
-

List[Invite]

-
-
-
- -
-
-property mention
-

The string that allows you to mention the channel.

-
-
Type
-

str

-
-
-
- -
-
-await move(**kwargs)
-

This function is a coroutine.

-

A rich interface to help move a channel relative to other channels.

-

If exact position movement is required, edit should be used instead.

-

You must have the manage_channels permission to -do this.

-
-

Note

-

Voice channels will always be sorted below text channels. -This is a Discord limitation.

-
-
-

New in version 1.7.

-
-
-
Parameters
-
    -
  • beginning (bool) – Whether to move the channel to the beginning of the -channel list (or category if given). -This is mutually exclusive with end, before, and after.

  • -
  • end (bool) – Whether to move the channel to the end of the -channel list (or category if given). -This is mutually exclusive with beginning, before, and after.

  • -
  • before (Snowflake) – The channel that should be before our current channel. -This is mutually exclusive with beginning, end, and after.

  • -
  • after (Snowflake) – The channel that should be after our current channel. -This is mutually exclusive with beginning, end, and before.

  • -
  • offset (int) – The number of channels to offset the move by. For example, -an offset of 2 with beginning=True would move -it 2 after the beginning. A positive number moves it below -while a negative number moves it above. Note that this -number is relative and computed after the beginning, -end, before, and after parameters.

  • -
  • category (Optional[Snowflake]) – The category to move this channel under. -If None is given then it moves it out of the category. -This parameter is ignored if moving a category channel.

  • -
  • sync_permissions (bool) – Whether to sync the permissions with the category (if given).

  • -
  • reason (str) – The reason for the move.

  • -
-
-
Raises
-
    -
  • InvalidArgument – An invalid position was given or a bad mix of arguments were passed.

  • -
  • Forbidden – You do not have permissions to move the channel.

  • -
  • HTTPException – Moving the channel failed.

  • -
-
-
-
- -
-
-property overwrites
-

Returns all of the channel’s overwrites.

-

This is returned as a dictionary where the key contains the target which -can be either a Role or a Member and the value is the -overwrite as a PermissionOverwrite.

-
-
Returns
-

The channel’s permission overwrites.

-
-
Return type
-

Dict[Union[Role, Member], PermissionOverwrite]

-
-
-
- -
-
-overwrites_for(obj)
-

Returns the channel-specific overwrites for a member or a role.

-
-
Parameters
-

obj (Union[Role, User]) – The role or user denoting -whose overwrite to get.

-
-
Returns
-

The permission overwrites for this object.

-
-
Return type
-

PermissionOverwrite

-
-
-
- -
-
-property permissions_synced
-

Whether or not the permissions for this channel are synced with the -category it belongs to.

-

If there is no category then this is False.

-
-

New in version 1.3.

-
-
-
Type
-

bool

-
-
-
- -
-
-await set_permissions(target, *, overwrite=see - below, reason=None, **permissions)
-

This function is a coroutine.

-

Sets the channel specific permission overwrites for a target in the -channel.

-

The target parameter should either be a Member or a -Role that belongs to guild.

-

The overwrite parameter, if given, must either be None or -PermissionOverwrite. For convenience, you can pass in -keyword arguments denoting Permissions attributes. If this is -done, then you cannot mix the keyword arguments with the overwrite -parameter.

-

If the overwrite parameter is None, then the permission -overwrites are deleted.

-

You must have the manage_roles permission to use this.

-
-

Note

-

This method replaces the old overwrites with the ones given.

-
-

Examples

-

Setting allow and deny:

-
await message.channel.set_permissions(message.author, read_messages=True,
-                                                      send_messages=False)
-
-
-

Deleting overwrites

-
await channel.set_permissions(member, overwrite=None)
-
-
-

Using PermissionOverwrite

-
overwrite = discord.PermissionOverwrite()
-overwrite.send_messages = False
-overwrite.read_messages = True
-await channel.set_permissions(member, overwrite=overwrite)
-
-
-
-
Parameters
-
    -
  • target (Union[Member, Role]) – The member or role to overwrite permissions for.

  • -
  • overwrite (Optional[PermissionOverwrite]) – The permissions to allow and deny to the target, or None to -delete the overwrite.

  • -
  • **permissions – A keyword argument list of permissions to set for ease of use. -Cannot be mixed with overwrite.

  • -
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to edit channel specific permissions.

  • -
  • HTTPException – Editing channel specific permissions failed.

  • -
  • NotFound – The role or member being edited is not part of the guild.

  • -
  • InvalidArgument – The overwrite parameter invalid or the target type was not - Role or Member.

  • -
-
-
-
- -
- -
-
-

VoiceChannel

-
-
-class discord.VoiceChannel
-

Represents a Discord guild voice channel.

-
-
-
-x == y
-

Checks if two channels are equal.

-
- -
-
-x != y
-

Checks if two channels are not equal.

-
- -
-
-hash(x)
-

Returns the channel’s hash.

-
- -
-
-str(x)
-

Returns the channel’s name.

-
- -
-
-
-name
-

The channel name.

-
-
Type
-

str

-
-
-
- -
-
-guild
-

The guild the channel belongs to.

-
-
Type
-

Guild

-
-
-
- -
-
-id
-

The channel ID.

-
-
Type
-

int

-
-
-
- -
-
-category_id
-

The category channel ID this channel belongs to, if applicable.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-position
-

The position in the channel list. This is a number that starts at 0. e.g. the -top channel is position 0.

-
-
Type
-

int

-
-
-
- -
-
-bitrate
-

The channel’s preferred audio bitrate in bits per second.

-
-
Type
-

int

-
-
-
- -
-
-user_limit
-

The channel’s limit for number of members that can be in a voice channel.

-
-
Type
-

int

-
-
-
- -
-
-rtc_region
-

The region for the voice channel’s voice communication. -A value of None indicates automatic voice region detection.

-
-

New in version 1.7.

-
-
-
Type
-

Optional[VoiceRegion]

-
-
-
- -
-
-video_quality_mode
-

The camera video quality for the voice channel’s participants.

-
-

New in version 2.0.

-
-
-
Type
-

VideoQualityMode

-
-
-
- -
-
-property type
-

The channel’s Discord type.

-
-
Type
-

ChannelType

-
-
-
- -
-
-await clone(*, name=None, reason=None)
-

This function is a coroutine.

-

Clones this channel. This creates a channel with the same properties -as this channel.

-

You must have the manage_channels permission to -do this.

-
-

New in version 1.1.

-
-
-
Parameters
-
    -
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this -channel name.

  • -
  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to create this channel.

  • -
  • HTTPException – Creating the channel failed.

  • -
-
-
Returns
-

The channel that was created.

-
-
Return type
-

abc.GuildChannel

-
-
-
- -
-
-await edit(*, reason=None, **options)
-

This function is a coroutine.

-

Edits the channel.

-

You must have the manage_channels permission to -use this.

-
-

Changed in version 1.3: The overwrites keyword-only parameter was added.

-
-
-

Changed in version 2.0: Edits are no longer in-place, the newly edited channel is returned instead.

-
-
-
Parameters
-
    -
  • name (str) – The new channel’s name.

  • -
  • bitrate (int) – The new channel’s bitrate.

  • -
  • user_limit (int) – The new channel’s user limit.

  • -
  • position (int) – The new channel’s position.

  • -
  • sync_permissions (bool) – Whether to sync permissions with the channel’s new or pre-existing -category. Defaults to False.

  • -
  • category (Optional[CategoryChannel]) – The new category for this channel. Can be None to remove the -category.

  • -
  • reason (Optional[str]) – The reason for editing this channel. Shows up on the audit log.

  • -
  • overwrites (Mapping) – A Mapping of target (either a role or a member) to -PermissionOverwrite to apply to the channel.

  • -
  • rtc_region (Optional[VoiceRegion]) –

    The new region for the voice channel’s voice communication. -A value of None indicates automatic voice region detection.

    -
    -

    New in version 1.7.

    -
    -

  • -
  • video_quality_mode (VideoQualityMode) –

    The camera video quality for the voice channel’s participants.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • InvalidArgument – If the permission overwrite information is not in proper form.

  • -
  • Forbidden – You do not have permissions to edit the channel.

  • -
  • HTTPException – Editing the channel failed.

  • -
-
-
Returns
-

The newly edited voice channel. If the edit was only positional -then None is returned instead.

-
-
Return type
-

Optional[VoiceChannel]

-
-
-
- -
-
-property category
-

The category this channel belongs to.

-

If there is no category then this is None.

-
-
Type
-

Optional[CategoryChannel]

-
-
-
- -
-
-property changed_roles
-

Returns a list of roles that have been overridden from -their default values in the roles attribute.

-
-
Type
-

List[Role]

-
-
-
- -
-
-await connect(*, timeout=60.0, reconnect=True, cls=<class 'discord.voice_client.VoiceClient'>)
-

This function is a coroutine.

-

Connects to voice and creates a VoiceClient to establish -your connection to the voice server.

-

This requires Intents.voice_states.

-
-
Parameters
-
    -
  • timeout (float) – The timeout in seconds to wait for the voice endpoint.

  • -
  • reconnect (bool) – Whether the bot should automatically attempt -a reconnect if a part of the handshake fails -or the gateway goes down.

  • -
  • cls (Type[VoiceProtocol]) – A type that subclasses VoiceProtocol to connect with. -Defaults to VoiceClient.

  • -
-
-
Raises
-
-
-
Returns
-

A voice client that is fully connected to the voice server.

-
-
Return type
-

VoiceProtocol

-
-
-
- -
-
-await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_type=None, target_user=None, target_application_id=None)
-

This function is a coroutine.

-

Creates an instant invite from a text or voice channel.

-

You must have the create_instant_invite permission to -do this.

-
-
Parameters
-
    -
  • max_age (int) – How long the invite should last in seconds. If it’s 0 then the invite -doesn’t expire. Defaults to 0.

  • -
  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there -are unlimited uses. Defaults to 0.

  • -
  • temporary (bool) – Denotes that the invite grants temporary membership -(i.e. they get kicked after they disconnect). Defaults to False.

  • -
  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. -If this is set to False then it will return a previously created -invite.

  • -
  • reason (Optional[str]) – The reason for creating this invite. Shows up on the audit log.

  • -
  • target_type (Optional[InviteTarget]) –

    The type of target for the voice channel invite, if any.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • target_user (Optional[User]) –

    The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • target_application_id:

    Optional[int]: The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • HTTPException – Invite creation failed.

  • -
  • NotFound – The channel that was passed is a category or an invalid channel.

  • -
-
-
Returns
-

The invite that was created.

-
-
Return type
-

Invite

-
-
-
- -
-
-property created_at
-

Returns the channel’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-await delete(*, reason=None)
-

This function is a coroutine.

-

Deletes the channel.

-

You must have manage_channels permission to use this.

-
-
Parameters
-

reason (Optional[str]) – The reason for deleting this channel. -Shows up on the audit log.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to delete the channel.

  • -
  • NotFound – The channel was not found or was already deleted.

  • -
  • HTTPException – Deleting the channel failed.

  • -
-
-
-
- -
-
-await invites()
-

This function is a coroutine.

-

Returns a list of all active instant invites from this channel.

-

You must have manage_channels to get this information.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to get the information.

  • -
  • HTTPException – An error occurred while fetching the information.

  • -
-
-
Returns
-

The list of invites that are currently active.

-
-
Return type
-

List[Invite]

-
-
-
- -
-
-property members
-

Returns all members that are currently inside this voice channel.

-
-
Type
-

List[Member]

-
-
-
- -
-
-property mention
-

The string that allows you to mention the channel.

-
-
Type
-

str

-
-
-
- -
-
-await move(**kwargs)
-

This function is a coroutine.

-

A rich interface to help move a channel relative to other channels.

-

If exact position movement is required, edit should be used instead.

-

You must have the manage_channels permission to -do this.

-
-

Note

-

Voice channels will always be sorted below text channels. -This is a Discord limitation.

-
-
-

New in version 1.7.

-
-
-
Parameters
-
    -
  • beginning (bool) – Whether to move the channel to the beginning of the -channel list (or category if given). -This is mutually exclusive with end, before, and after.

  • -
  • end (bool) – Whether to move the channel to the end of the -channel list (or category if given). -This is mutually exclusive with beginning, before, and after.

  • -
  • before (Snowflake) – The channel that should be before our current channel. -This is mutually exclusive with beginning, end, and after.

  • -
  • after (Snowflake) – The channel that should be after our current channel. -This is mutually exclusive with beginning, end, and before.

  • -
  • offset (int) – The number of channels to offset the move by. For example, -an offset of 2 with beginning=True would move -it 2 after the beginning. A positive number moves it below -while a negative number moves it above. Note that this -number is relative and computed after the beginning, -end, before, and after parameters.

  • -
  • category (Optional[Snowflake]) – The category to move this channel under. -If None is given then it moves it out of the category. -This parameter is ignored if moving a category channel.

  • -
  • sync_permissions (bool) – Whether to sync the permissions with the category (if given).

  • -
  • reason (str) – The reason for the move.

  • -
-
-
Raises
-
    -
  • InvalidArgument – An invalid position was given or a bad mix of arguments were passed.

  • -
  • Forbidden – You do not have permissions to move the channel.

  • -
  • HTTPException – Moving the channel failed.

  • -
-
-
-
- -
-
-property overwrites
-

Returns all of the channel’s overwrites.

-

This is returned as a dictionary where the key contains the target which -can be either a Role or a Member and the value is the -overwrite as a PermissionOverwrite.

-
-
Returns
-

The channel’s permission overwrites.

-
-
Return type
-

Dict[Union[Role, Member], PermissionOverwrite]

-
-
-
- -
-
-overwrites_for(obj)
-

Returns the channel-specific overwrites for a member or a role.

-
-
Parameters
-

obj (Union[Role, User]) – The role or user denoting -whose overwrite to get.

-
-
Returns
-

The permission overwrites for this object.

-
-
Return type
-

PermissionOverwrite

-
-
-
- -
-
-permissions_for(obj, /)
-

Handles permission resolution for the Member -or Role.

-

This function takes into consideration the following cases:

-
    -
  • Guild owner

  • -
  • Guild roles

  • -
  • Channel overrides

  • -
  • Member overrides

  • -
-

If a Role is passed, then it checks the permissions -someone with that role would have, which is essentially:

-
    -
  • The default role permissions

  • -
  • The permissions of the role used as a parameter

  • -
  • The default role permission overwrites

  • -
  • The permission overwrites of the role used as a parameter

  • -
-
-

Changed in version 2.0: The object passed in can now be a role object.

-
-
-
Parameters
-

obj (Union[Member, Role]) – The object to resolve permissions for. This could be either -a member or a role. If it’s a role then member overwrites -are not computed.

-
-
Returns
-

The resolved permissions for the member or role.

-
-
Return type
-

Permissions

-
-
-
- -
-
-property permissions_synced
-

Whether or not the permissions for this channel are synced with the -category it belongs to.

-

If there is no category then this is False.

-
-

New in version 1.3.

-
-
-
Type
-

bool

-
-
-
- -
-
-await set_permissions(target, *, overwrite=see - below, reason=None, **permissions)
-

This function is a coroutine.

-

Sets the channel specific permission overwrites for a target in the -channel.

-

The target parameter should either be a Member or a -Role that belongs to guild.

-

The overwrite parameter, if given, must either be None or -PermissionOverwrite. For convenience, you can pass in -keyword arguments denoting Permissions attributes. If this is -done, then you cannot mix the keyword arguments with the overwrite -parameter.

-

If the overwrite parameter is None, then the permission -overwrites are deleted.

-

You must have the manage_roles permission to use this.

-
-

Note

-

This method replaces the old overwrites with the ones given.

-
-

Examples

-

Setting allow and deny:

-
await message.channel.set_permissions(message.author, read_messages=True,
-                                                      send_messages=False)
-
-
-

Deleting overwrites

-
await channel.set_permissions(member, overwrite=None)
-
-
-

Using PermissionOverwrite

-
overwrite = discord.PermissionOverwrite()
-overwrite.send_messages = False
-overwrite.read_messages = True
-await channel.set_permissions(member, overwrite=overwrite)
-
-
-
-
Parameters
-
    -
  • target (Union[Member, Role]) – The member or role to overwrite permissions for.

  • -
  • overwrite (Optional[PermissionOverwrite]) – The permissions to allow and deny to the target, or None to -delete the overwrite.

  • -
  • **permissions – A keyword argument list of permissions to set for ease of use. -Cannot be mixed with overwrite.

  • -
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to edit channel specific permissions.

  • -
  • HTTPException – Editing channel specific permissions failed.

  • -
  • NotFound – The role or member being edited is not part of the guild.

  • -
  • InvalidArgument – The overwrite parameter invalid or the target type was not - Role or Member.

  • -
-
-
-
- -
-
-property voice_states
-

Returns a mapping of member IDs who have voice states in this channel.

-
-

New in version 1.3.

-
-
-

Note

-

This function is intentionally low level to replace members -when the member cache is unavailable.

-
-
-
Returns
-

The mapping of member ID to a voice state.

-
-
Return type
-

Mapping[int, VoiceState]

-
-
-
- -
- -
-
-

StageChannel

-
-
-class discord.StageChannel
-

Represents a Discord guild stage channel.

-
-

New in version 1.7.

-
-
-
-
-x == y
-

Checks if two channels are equal.

-
- -
-
-x != y
-

Checks if two channels are not equal.

-
- -
-
-hash(x)
-

Returns the channel’s hash.

-
- -
-
-str(x)
-

Returns the channel’s name.

-
- -
-
-
-name
-

The channel name.

-
-
Type
-

str

-
-
-
- -
-
-guild
-

The guild the channel belongs to.

-
-
Type
-

Guild

-
-
-
- -
-
-id
-

The channel ID.

-
-
Type
-

int

-
-
-
- -
-
-topic
-

The channel’s topic. None if it isn’t set.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-category_id
-

The category channel ID this channel belongs to, if applicable.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-position
-

The position in the channel list. This is a number that starts at 0. e.g. the -top channel is position 0.

-
-
Type
-

int

-
-
-
- -
-
-bitrate
-

The channel’s preferred audio bitrate in bits per second.

-
-
Type
-

int

-
-
-
- -
-
-user_limit
-

The channel’s limit for number of members that can be in a stage channel.

-
-
Type
-

int

-
-
-
- -
-
-rtc_region
-

The region for the stage channel’s voice communication. -A value of None indicates automatic voice region detection.

-
-
Type
-

Optional[VoiceRegion]

-
-
-
- -
-
-video_quality_mode
-

The camera video quality for the stage channel’s participants.

-
-

New in version 2.0.

-
-
-
Type
-

VideoQualityMode

-
-
-
- -
-
-property requesting_to_speak
-

A list of members who are requesting to speak in the stage channel.

-
-
Type
-

List[Member]

-
-
-
- -
-
-property speakers
-

A list of members who have been permitted to speak in the stage channel.

-
-

New in version 2.0.

-
-
-
Type
-

List[Member]

-
-
-
- -
-
-property listeners
-

A list of members who are listening in the stage channel.

-
-

New in version 2.0.

-
-
-
Type
-

List[Member]

-
-
-
- -
-
-property moderators
-

A list of members who are moderating the stage channel.

-
-

New in version 2.0.

-
-
-
Type
-

List[Member]

-
-
-
- -
-
-property type
-

The channel’s Discord type.

-
-
Type
-

ChannelType

-
-
-
- -
-
-await clone(*, name=None, reason=None)
-

This function is a coroutine.

-

Clones this channel. This creates a channel with the same properties -as this channel.

-

You must have the manage_channels permission to -do this.

-
-

New in version 1.1.

-
-
-
Parameters
-
    -
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this -channel name.

  • -
  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to create this channel.

  • -
  • HTTPException – Creating the channel failed.

  • -
-
-
Returns
-

The channel that was created.

-
-
Return type
-

abc.GuildChannel

-
-
-
- -
-
-property instance
-

The running stage instance of the stage channel.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[StageInstance]

-
-
-
- -
-
-await create_instance(*, topic, privacy_level=..., reason=None)
-

This function is a coroutine.

-

Create a stage instance.

-

You must have the manage_channels permission to -use this.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • topic (str) – The stage instance’s topic.

  • -
  • privacy_level (StagePrivacyLevel) – The stage instance’s privacy level. Defaults to StagePrivacyLevel.guild_only.

  • -
  • reason (str) – The reason the stage instance was created. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • InvalidArgument – If the privacy_level parameter is not the proper type.

  • -
  • Forbidden – You do not have permissions to create a stage instance.

  • -
  • HTTPException – Creating a stage instance failed.

  • -
-
-
Returns
-

The newly created stage instance.

-
-
Return type
-

StageInstance

-
-
-
- -
-
-await fetch_instance()
-

This function is a coroutine.

-

Gets the running StageInstance.

-
-

New in version 2.0.

-
-
-
Raises
-
    -
  • NotFound – The stage instance or channel could not be found.

  • -
  • HTTPException – Getting the stage instance failed.

  • -
-
-
Returns
-

The stage instance.

-
-
Return type
-

StageInstance

-
-
-
- -
-
-await edit(*, reason=None, **options)
-

This function is a coroutine.

-

Edits the channel.

-

You must have the manage_channels permission to -use this.

-
-

Changed in version 2.0: The topic parameter must now be set via create_instance.

-
-
-

Changed in version 2.0: Edits are no longer in-place, the newly edited channel is returned instead.

-
-
-
Parameters
-
    -
  • name (str) – The new channel’s name.

  • -
  • position (int) – The new channel’s position.

  • -
  • sync_permissions (bool) – Whether to sync permissions with the channel’s new or pre-existing -category. Defaults to False.

  • -
  • category (Optional[CategoryChannel]) – The new category for this channel. Can be None to remove the -category.

  • -
  • reason (Optional[str]) – The reason for editing this channel. Shows up on the audit log.

  • -
  • overwrites (Mapping) – A Mapping of target (either a role or a member) to -PermissionOverwrite to apply to the channel.

  • -
  • rtc_region (Optional[VoiceRegion]) – The new region for the stage channel’s voice communication. -A value of None indicates automatic voice region detection.

  • -
  • video_quality_mode (VideoQualityMode) –

    The camera video quality for the stage channel’s participants.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • InvalidArgument – If the permission overwrite information is not in proper form.

  • -
  • Forbidden – You do not have permissions to edit the channel.

  • -
  • HTTPException – Editing the channel failed.

  • -
-
-
Returns
-

The newly edited stage channel. If the edit was only positional -then None is returned instead.

-
-
Return type
-

Optional[StageChannel]

-
-
-
- -
-
-property category
-

The category this channel belongs to.

-

If there is no category then this is None.

-
-
Type
-

Optional[CategoryChannel]

-
-
-
- -
-
-property changed_roles
-

Returns a list of roles that have been overridden from -their default values in the roles attribute.

-
-
Type
-

List[Role]

-
-
-
- -
-
-await connect(*, timeout=60.0, reconnect=True, cls=<class 'discord.voice_client.VoiceClient'>)
-

This function is a coroutine.

-

Connects to voice and creates a VoiceClient to establish -your connection to the voice server.

-

This requires Intents.voice_states.

-
-
Parameters
-
    -
  • timeout (float) – The timeout in seconds to wait for the voice endpoint.

  • -
  • reconnect (bool) – Whether the bot should automatically attempt -a reconnect if a part of the handshake fails -or the gateway goes down.

  • -
  • cls (Type[VoiceProtocol]) – A type that subclasses VoiceProtocol to connect with. -Defaults to VoiceClient.

  • -
-
-
Raises
-
-
-
Returns
-

A voice client that is fully connected to the voice server.

-
-
Return type
-

VoiceProtocol

-
-
-
- -
-
-await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_type=None, target_user=None, target_application_id=None)
-

This function is a coroutine.

-

Creates an instant invite from a text or voice channel.

-

You must have the create_instant_invite permission to -do this.

-
-
Parameters
-
    -
  • max_age (int) – How long the invite should last in seconds. If it’s 0 then the invite -doesn’t expire. Defaults to 0.

  • -
  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there -are unlimited uses. Defaults to 0.

  • -
  • temporary (bool) – Denotes that the invite grants temporary membership -(i.e. they get kicked after they disconnect). Defaults to False.

  • -
  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. -If this is set to False then it will return a previously created -invite.

  • -
  • reason (Optional[str]) – The reason for creating this invite. Shows up on the audit log.

  • -
  • target_type (Optional[InviteTarget]) –

    The type of target for the voice channel invite, if any.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • target_user (Optional[User]) –

    The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • target_application_id:

    Optional[int]: The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • HTTPException – Invite creation failed.

  • -
  • NotFound – The channel that was passed is a category or an invalid channel.

  • -
-
-
Returns
-

The invite that was created.

-
-
Return type
-

Invite

-
-
-
- -
-
-property created_at
-

Returns the channel’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-await delete(*, reason=None)
-

This function is a coroutine.

-

Deletes the channel.

-

You must have manage_channels permission to use this.

-
-
Parameters
-

reason (Optional[str]) – The reason for deleting this channel. -Shows up on the audit log.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to delete the channel.

  • -
  • NotFound – The channel was not found or was already deleted.

  • -
  • HTTPException – Deleting the channel failed.

  • -
-
-
-
- -
-
-await invites()
-

This function is a coroutine.

-

Returns a list of all active instant invites from this channel.

-

You must have manage_channels to get this information.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to get the information.

  • -
  • HTTPException – An error occurred while fetching the information.

  • -
-
-
Returns
-

The list of invites that are currently active.

-
-
Return type
-

List[Invite]

-
-
-
- -
-
-property members
-

Returns all members that are currently inside this voice channel.

-
-
Type
-

List[Member]

-
-
-
- -
-
-property mention
-

The string that allows you to mention the channel.

-
-
Type
-

str

-
-
-
- -
-
-await move(**kwargs)
-

This function is a coroutine.

-

A rich interface to help move a channel relative to other channels.

-

If exact position movement is required, edit should be used instead.

-

You must have the manage_channels permission to -do this.

-
-

Note

-

Voice channels will always be sorted below text channels. -This is a Discord limitation.

-
-
-

New in version 1.7.

-
-
-
Parameters
-
    -
  • beginning (bool) – Whether to move the channel to the beginning of the -channel list (or category if given). -This is mutually exclusive with end, before, and after.

  • -
  • end (bool) – Whether to move the channel to the end of the -channel list (or category if given). -This is mutually exclusive with beginning, before, and after.

  • -
  • before (Snowflake) – The channel that should be before our current channel. -This is mutually exclusive with beginning, end, and after.

  • -
  • after (Snowflake) – The channel that should be after our current channel. -This is mutually exclusive with beginning, end, and before.

  • -
  • offset (int) – The number of channels to offset the move by. For example, -an offset of 2 with beginning=True would move -it 2 after the beginning. A positive number moves it below -while a negative number moves it above. Note that this -number is relative and computed after the beginning, -end, before, and after parameters.

  • -
  • category (Optional[Snowflake]) – The category to move this channel under. -If None is given then it moves it out of the category. -This parameter is ignored if moving a category channel.

  • -
  • sync_permissions (bool) – Whether to sync the permissions with the category (if given).

  • -
  • reason (str) – The reason for the move.

  • -
-
-
Raises
-
    -
  • InvalidArgument – An invalid position was given or a bad mix of arguments were passed.

  • -
  • Forbidden – You do not have permissions to move the channel.

  • -
  • HTTPException – Moving the channel failed.

  • -
-
-
-
- -
-
-property overwrites
-

Returns all of the channel’s overwrites.

-

This is returned as a dictionary where the key contains the target which -can be either a Role or a Member and the value is the -overwrite as a PermissionOverwrite.

-
-
Returns
-

The channel’s permission overwrites.

-
-
Return type
-

Dict[Union[Role, Member], PermissionOverwrite]

-
-
-
- -
-
-overwrites_for(obj)
-

Returns the channel-specific overwrites for a member or a role.

-
-
Parameters
-

obj (Union[Role, User]) – The role or user denoting -whose overwrite to get.

-
-
Returns
-

The permission overwrites for this object.

-
-
Return type
-

PermissionOverwrite

-
-
-
- -
-
-permissions_for(obj, /)
-

Handles permission resolution for the Member -or Role.

-

This function takes into consideration the following cases:

-
    -
  • Guild owner

  • -
  • Guild roles

  • -
  • Channel overrides

  • -
  • Member overrides

  • -
-

If a Role is passed, then it checks the permissions -someone with that role would have, which is essentially:

-
    -
  • The default role permissions

  • -
  • The permissions of the role used as a parameter

  • -
  • The default role permission overwrites

  • -
  • The permission overwrites of the role used as a parameter

  • -
-
-

Changed in version 2.0: The object passed in can now be a role object.

-
-
-
Parameters
-

obj (Union[Member, Role]) – The object to resolve permissions for. This could be either -a member or a role. If it’s a role then member overwrites -are not computed.

-
-
Returns
-

The resolved permissions for the member or role.

-
-
Return type
-

Permissions

-
-
-
- -
-
-property permissions_synced
-

Whether or not the permissions for this channel are synced with the -category it belongs to.

-

If there is no category then this is False.

-
-

New in version 1.3.

-
-
-
Type
-

bool

-
-
-
- -
-
-await set_permissions(target, *, overwrite=see - below, reason=None, **permissions)
-

This function is a coroutine.

-

Sets the channel specific permission overwrites for a target in the -channel.

-

The target parameter should either be a Member or a -Role that belongs to guild.

-

The overwrite parameter, if given, must either be None or -PermissionOverwrite. For convenience, you can pass in -keyword arguments denoting Permissions attributes. If this is -done, then you cannot mix the keyword arguments with the overwrite -parameter.

-

If the overwrite parameter is None, then the permission -overwrites are deleted.

-

You must have the manage_roles permission to use this.

-
-

Note

-

This method replaces the old overwrites with the ones given.

-
-

Examples

-

Setting allow and deny:

-
await message.channel.set_permissions(message.author, read_messages=True,
-                                                      send_messages=False)
-
-
-

Deleting overwrites

-
await channel.set_permissions(member, overwrite=None)
-
-
-

Using PermissionOverwrite

-
overwrite = discord.PermissionOverwrite()
-overwrite.send_messages = False
-overwrite.read_messages = True
-await channel.set_permissions(member, overwrite=overwrite)
-
-
-
-
Parameters
-
    -
  • target (Union[Member, Role]) – The member or role to overwrite permissions for.

  • -
  • overwrite (Optional[PermissionOverwrite]) – The permissions to allow and deny to the target, or None to -delete the overwrite.

  • -
  • **permissions – A keyword argument list of permissions to set for ease of use. -Cannot be mixed with overwrite.

  • -
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to edit channel specific permissions.

  • -
  • HTTPException – Editing channel specific permissions failed.

  • -
  • NotFound – The role or member being edited is not part of the guild.

  • -
  • InvalidArgument – The overwrite parameter invalid or the target type was not - Role or Member.

  • -
-
-
-
- -
-
-property voice_states
-

Returns a mapping of member IDs who have voice states in this channel.

-
-

New in version 1.3.

-
-
-

Note

-

This function is intentionally low level to replace members -when the member cache is unavailable.

-
-
-
Returns
-

The mapping of member ID to a voice state.

-
-
Return type
-

Mapping[int, VoiceState]

-
-
-
- -
- -
-
-

StageInstance

-
- -Methods -
-
-class discord.StageInstance
-

Represents a stage instance of a stage channel in a guild.

-
-

New in version 2.0.

-
-
-
-
-x == y
-

Checks if two stage instances are equal.

-
- -
-
-x != y
-

Checks if two stage instances are not equal.

-
- -
-
-hash(x)
-

Returns the stage instance’s hash.

-
- -
-
-int(x)
-

Returns the stage instance’s ID.

-
- -
-
-
-id
-

The stage instance’s ID.

-
-
Type
-

int

-
-
-
- -
-
-guild
-

The guild that the stage instance is running in.

-
-
Type
-

Guild

-
-
-
- -
-
-channel_id
-

The ID of the channel that the stage instance is running in.

-
-
Type
-

int

-
-
-
- -
-
-topic
-

The topic of the stage instance.

-
-
Type
-

str

-
-
-
- -
-
-privacy_level
-

The privacy level of the stage instance.

-
-
Type
-

StagePrivacyLevel

-
-
-
- -
-
-discoverable_disabled
-

Whether discoverability for the stage instance is disabled.

-
-
Type
-

bool

-
-
-
- -
-
-channel
-

The channel that stage instance is running in.

-
-
Type
-

Optional[StageChannel]

-
-
-
- -
-
-await edit(*, topic=..., privacy_level=..., reason=None)
-

This function is a coroutine.

-

Edits the stage instance.

-

You must have the manage_channels permission to -use this.

-
-
Parameters
-
    -
  • topic (str) – The stage instance’s new topic.

  • -
  • privacy_level (StagePrivacyLevel) – The stage instance’s new privacy level.

  • -
  • reason (str) – The reason the stage instance was edited. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • InvalidArgument – If the privacy_level parameter is not the proper type.

  • -
  • Forbidden – You do not have permissions to edit the stage instance.

  • -
  • HTTPException – Editing a stage instance failed.

  • -
-
-
-
- -
-
-await delete(*, reason=None)
-

This function is a coroutine.

-

Deletes the stage instance.

-

You must have the manage_channels permission to -use this.

-
-
Parameters
-

reason (str) – The reason the stage instance was deleted. Shows up on the audit log.

-
-
Raises
-
    -
  • Forbidden – You do not have permissions to delete the stage instance.

  • -
  • HTTPException – Deleting the stage instance failed.

  • -
-
-
-
- -
- -
-
-

CategoryChannel

-
-
-class discord.CategoryChannel
-

Represents a Discord channel category.

-

These are useful to group channels to logical compartments.

-
-
-
-x == y
-

Checks if two channels are equal.

-
- -
-
-x != y
-

Checks if two channels are not equal.

-
- -
-
-hash(x)
-

Returns the category’s hash.

-
- -
-
-str(x)
-

Returns the category’s name.

-
- -
-
-int(x)
-

Returns the category’s ID.

-
- -
-
-
-name
-

The category name.

-
-
Type
-

str

-
-
-
- -
-
-guild
-

The guild the category belongs to.

-
-
Type
-

Guild

-
-
-
- -
-
-id
-

The category channel ID.

-
-
Type
-

int

-
-
-
- -
-
-position
-

The position in the category list. This is a number that starts at 0. e.g. the -top category is position 0.

-
-
Type
-

int

-
-
-
- -
-
-nsfw
-

If the channel is marked as “not safe for work”.

-
-

Note

-

To check if the channel or the guild of that channel are marked as NSFW, consider is_nsfw() instead.

-
-
-
Type
-

bool

-
-
-
- -
-
-property type
-

The channel’s Discord type.

-
-
Type
-

ChannelType

-
-
-
- -
-
-is_nsfw()
-

bool: Checks if the category is NSFW.

-
- -
-
-await clone(*, name=None, reason=None)
-

This function is a coroutine.

-

Clones this channel. This creates a channel with the same properties -as this channel.

-

You must have the manage_channels permission to -do this.

-
-

New in version 1.1.

-
-
-
Parameters
-
    -
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this -channel name.

  • -
  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to create this channel.

  • -
  • HTTPException – Creating the channel failed.

  • -
-
-
Returns
-

The channel that was created.

-
-
Return type
-

abc.GuildChannel

-
-
-
- -
-
-await edit(*, reason=None, **options)
-

This function is a coroutine.

-

Edits the channel.

-

You must have the manage_channels permission to -use this.

-
-

Changed in version 1.3: The overwrites keyword-only parameter was added.

-
-
-

Changed in version 2.0: Edits are no longer in-place, the newly edited channel is returned instead.

-
-
-
Parameters
-
    -
  • name (str) – The new category’s name.

  • -
  • position (int) – The new category’s position.

  • -
  • nsfw (bool) – To mark the category as NSFW or not.

  • -
  • reason (Optional[str]) – The reason for editing this category. Shows up on the audit log.

  • -
  • overwrites (Mapping) – A Mapping of target (either a role or a member) to -PermissionOverwrite to apply to the channel.

  • -
-
-
Raises
-
    -
  • InvalidArgument – If position is less than 0 or greater than the number of categories.

  • -
  • Forbidden – You do not have permissions to edit the category.

  • -
  • HTTPException – Editing the category failed.

  • -
-
-
Returns
-

The newly edited category channel. If the edit was only positional -then None is returned instead.

-
-
Return type
-

Optional[CategoryChannel]

-
-
-
- -
-
-await move(**kwargs)
-

This function is a coroutine.

-

A rich interface to help move a channel relative to other channels.

-

If exact position movement is required, edit should be used instead.

-

You must have the manage_channels permission to -do this.

-
-

Note

-

Voice channels will always be sorted below text channels. -This is a Discord limitation.

-
-
-

New in version 1.7.

-
-
-
Parameters
-
    -
  • beginning (bool) – Whether to move the channel to the beginning of the -channel list (or category if given). -This is mutually exclusive with end, before, and after.

  • -
  • end (bool) – Whether to move the channel to the end of the -channel list (or category if given). -This is mutually exclusive with beginning, before, and after.

  • -
  • before (Snowflake) – The channel that should be before our current channel. -This is mutually exclusive with beginning, end, and after.

  • -
  • after (Snowflake) – The channel that should be after our current channel. -This is mutually exclusive with beginning, end, and before.

  • -
  • offset (int) – The number of channels to offset the move by. For example, -an offset of 2 with beginning=True would move -it 2 after the beginning. A positive number moves it below -while a negative number moves it above. Note that this -number is relative and computed after the beginning, -end, before, and after parameters.

  • -
  • category (Optional[Snowflake]) – The category to move this channel under. -If None is given then it moves it out of the category. -This parameter is ignored if moving a category channel.

  • -
  • sync_permissions (bool) – Whether to sync the permissions with the category (if given).

  • -
  • reason (str) – The reason for the move.

  • -
-
-
Raises
-
    -
  • InvalidArgument – An invalid position was given or a bad mix of arguments were passed.

  • -
  • Forbidden – You do not have permissions to move the channel.

  • -
  • HTTPException – Moving the channel failed.

  • -
-
-
-
- -
-
-property channels
-

Returns the channels that are under this category.

-

These are sorted by the official Discord UI, which places voice channels below the text channels.

-
-
Type
-

List[abc.GuildChannel]

-
-
-
- -
-
-property text_channels
-

Returns the text channels that are under this category.

-
-
Type
-

List[TextChannel]

-
-
-
- -
-
-property voice_channels
-

Returns the voice channels that are under this category.

-
-
Type
-

List[VoiceChannel]

-
-
-
- -
-
-property stage_channels
-

Returns the stage channels that are under this category.

-
-

New in version 1.7.

-
-
-
Type
-

List[StageChannel]

-
-
-
- -
-
-await create_text_channel(name, **options)
-

This function is a coroutine.

-

A shortcut method to Guild.create_text_channel() to create a TextChannel in the category.

-
-
Returns
-

The channel that was just created.

-
-
Return type
-

TextChannel

-
-
-
- -
-
-await create_voice_channel(name, **options)
-

This function is a coroutine.

-

A shortcut method to Guild.create_voice_channel() to create a VoiceChannel in the category.

-
-
Returns
-

The channel that was just created.

-
-
Return type
-

VoiceChannel

-
-
-
- -
-
-await create_stage_channel(name, **options)
-

This function is a coroutine.

-

A shortcut method to Guild.create_stage_channel() to create a StageChannel in the category.

-
-

New in version 1.7.

-
-
-
Returns
-

The channel that was just created.

-
-
Return type
-

StageChannel

-
-
-
- -
-
-property category
-

The category this channel belongs to.

-

If there is no category then this is None.

-
-
Type
-

Optional[CategoryChannel]

-
-
-
- -
-
-property changed_roles
-

Returns a list of roles that have been overridden from -their default values in the roles attribute.

-
-
Type
-

List[Role]

-
-
-
- -
-
-await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_type=None, target_user=None, target_application_id=None)
-

This function is a coroutine.

-

Creates an instant invite from a text or voice channel.

-

You must have the create_instant_invite permission to -do this.

-
-
Parameters
-
    -
  • max_age (int) – How long the invite should last in seconds. If it’s 0 then the invite -doesn’t expire. Defaults to 0.

  • -
  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there -are unlimited uses. Defaults to 0.

  • -
  • temporary (bool) – Denotes that the invite grants temporary membership -(i.e. they get kicked after they disconnect). Defaults to False.

  • -
  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. -If this is set to False then it will return a previously created -invite.

  • -
  • reason (Optional[str]) – The reason for creating this invite. Shows up on the audit log.

  • -
  • target_type (Optional[InviteTarget]) –

    The type of target for the voice channel invite, if any.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • target_user (Optional[User]) –

    The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • target_application_id:

    Optional[int]: The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • HTTPException – Invite creation failed.

  • -
  • NotFound – The channel that was passed is a category or an invalid channel.

  • -
-
-
Returns
-

The invite that was created.

-
-
Return type
-

Invite

-
-
-
- -
-
-property created_at
-

Returns the channel’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-await delete(*, reason=None)
-

This function is a coroutine.

-

Deletes the channel.

-

You must have manage_channels permission to use this.

-
-
Parameters
-

reason (Optional[str]) – The reason for deleting this channel. -Shows up on the audit log.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to delete the channel.

  • -
  • NotFound – The channel was not found or was already deleted.

  • -
  • HTTPException – Deleting the channel failed.

  • -
-
-
-
- -
-
-await invites()
-

This function is a coroutine.

-

Returns a list of all active instant invites from this channel.

-

You must have manage_channels to get this information.

-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to get the information.

  • -
  • HTTPException – An error occurred while fetching the information.

  • -
-
-
Returns
-

The list of invites that are currently active.

-
-
Return type
-

List[Invite]

-
-
-
- -
-
-property mention
-

The string that allows you to mention the channel.

-
-
Type
-

str

-
-
-
- -
-
-property overwrites
-

Returns all of the channel’s overwrites.

-

This is returned as a dictionary where the key contains the target which -can be either a Role or a Member and the value is the -overwrite as a PermissionOverwrite.

-
-
Returns
-

The channel’s permission overwrites.

-
-
Return type
-

Dict[Union[Role, Member], PermissionOverwrite]

-
-
-
- -
-
-overwrites_for(obj)
-

Returns the channel-specific overwrites for a member or a role.

-
-
Parameters
-

obj (Union[Role, User]) – The role or user denoting -whose overwrite to get.

-
-
Returns
-

The permission overwrites for this object.

-
-
Return type
-

PermissionOverwrite

-
-
-
- -
-
-permissions_for(obj, /)
-

Handles permission resolution for the Member -or Role.

-

This function takes into consideration the following cases:

-
    -
  • Guild owner

  • -
  • Guild roles

  • -
  • Channel overrides

  • -
  • Member overrides

  • -
-

If a Role is passed, then it checks the permissions -someone with that role would have, which is essentially:

-
    -
  • The default role permissions

  • -
  • The permissions of the role used as a parameter

  • -
  • The default role permission overwrites

  • -
  • The permission overwrites of the role used as a parameter

  • -
-
-

Changed in version 2.0: The object passed in can now be a role object.

-
-
-
Parameters
-

obj (Union[Member, Role]) – The object to resolve permissions for. This could be either -a member or a role. If it’s a role then member overwrites -are not computed.

-
-
Returns
-

The resolved permissions for the member or role.

-
-
Return type
-

Permissions

-
-
-
- -
-
-property permissions_synced
-

Whether or not the permissions for this channel are synced with the -category it belongs to.

-

If there is no category then this is False.

-
-

New in version 1.3.

-
-
-
Type
-

bool

-
-
-
- -
-
-await set_permissions(target, *, overwrite=see - below, reason=None, **permissions)
-

This function is a coroutine.

-

Sets the channel specific permission overwrites for a target in the -channel.

-

The target parameter should either be a Member or a -Role that belongs to guild.

-

The overwrite parameter, if given, must either be None or -PermissionOverwrite. For convenience, you can pass in -keyword arguments denoting Permissions attributes. If this is -done, then you cannot mix the keyword arguments with the overwrite -parameter.

-

If the overwrite parameter is None, then the permission -overwrites are deleted.

-

You must have the manage_roles permission to use this.

-
-

Note

-

This method replaces the old overwrites with the ones given.

-
-

Examples

-

Setting allow and deny:

-
await message.channel.set_permissions(message.author, read_messages=True,
-                                                      send_messages=False)
-
-
-

Deleting overwrites

-
await channel.set_permissions(member, overwrite=None)
-
-
-

Using PermissionOverwrite

-
overwrite = discord.PermissionOverwrite()
-overwrite.send_messages = False
-overwrite.read_messages = True
-await channel.set_permissions(member, overwrite=overwrite)
-
-
-
-
Parameters
-
    -
  • target (Union[Member, Role]) – The member or role to overwrite permissions for.

  • -
  • overwrite (Optional[PermissionOverwrite]) – The permissions to allow and deny to the target, or None to -delete the overwrite.

  • -
  • **permissions – A keyword argument list of permissions to set for ease of use. -Cannot be mixed with overwrite.

  • -
  • reason (Optional[str]) – The reason for doing this action. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to edit channel specific permissions.

  • -
  • HTTPException – Editing channel specific permissions failed.

  • -
  • NotFound – The role or member being edited is not part of the guild.

  • -
  • InvalidArgument – The overwrite parameter invalid or the target type was not - Role or Member.

  • -
-
-
-
- -
- -
-
-

DMChannel

-
- -Attributes -
- -Methods -
-
-class discord.DMChannel
-

Represents a Discord direct message channel.

-
-
-
-x == y
-

Checks if two channels are equal.

-
- -
-
-x != y
-

Checks if two channels are not equal.

-
- -
-
-hash(x)
-

Returns the channel’s hash.

-
- -
-
-str(x)
-

Returns a string representation of the channel

-
- -
-
-int(x)
-

Returns the channel’s ID.

-
- -
-
-
-recipient
-

The user you are participating with in the direct message channel. -If this channel is received through the gateway, the recipient information -may not be always available.

-
-
Type
-

Optional[User]

-
-
-
- -
-
-me
-

The user presenting yourself.

-
-
Type
-

ClientUser

-
-
-
- -
-
-id
-

The direct message channel ID.

-
-
Type
-

int

-
-
-
- -
-
-async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
-

Returns an AsyncIterator that enables receiving the destination’s message history.

-

You must have read_message_history permissions to use this.

-

Examples

-

Usage

-
counter = 0
-async for message in channel.history(limit=200):
-    if message.author == client.user:
-        counter += 1
-
-
-

Flattening into a list:

-
messages = await channel.history(limit=123).flatten()
-# messages is now a list of Message...
-
-
-

All parameters are optional.

-
-
Parameters
-
    -
  • limit (Optional[int]) – The number of messages to retrieve. -If None, retrieves every message in the channel. Note, however, -that this would make it a slow operation.

  • -
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time. -When using this argument, the maximum limit is 101. Note that if the limit is an -even number then this will return at most limit + 1 messages.

  • -
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if -after is specified, otherwise False.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to get channel message history.

  • -
  • HTTPException – The request to get message history failed.

  • -
-
-
Yields
-

Message – The message with the message data parsed.

-
-
-
- -
-
-async with typing()
-

Returns a context manager that allows you to type for an indefinite period of time.

-

This is useful for denoting long computations in your bot.

-
-

Note

-

This is both a regular context manager and an async context manager. -This means that both with and async with work with this.

-
-

Example Usage:

-
async with channel.typing():
-    # simulate something heavy
-    await asyncio.sleep(10)
-
-await channel.send('done!')
-
-
-
- -
-
-property type
-

The channel’s Discord type.

-
-
Type
-

ChannelType

-
-
-
- -
-
-property created_at
-

Returns the direct message channel’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-permissions_for(obj=None, /)
-

Handles permission resolution for a User.

-

This function is there for compatibility with other channel types.

-

Actual direct messages do not really have the concept of permissions.

-

This returns all the Text related permissions set to True except:

- -
-
Parameters
-

obj (User) – The user to check permissions for. This parameter is ignored -but kept for compatibility with other permissions_for methods.

-
-
Returns
-

The resolved permissions.

-
-
Return type
-

Permissions

-
-
-
- -
-
-get_partial_message(message_id, /)
-

Creates a PartialMessage from the message ID.

-

This is useful if you want to work with a message and only have its ID without -doing an unnecessary API call.

-
-

New in version 1.6.

-
-
-
Parameters
-

message_id (int) – The message ID to create a partial message for.

-
-
Returns
-

The partial message.

-
-
Return type
-

PartialMessage

-
-
-
- -
-
-await fetch_message(id, /)
-

This function is a coroutine.

-

Retrieves a single Message from the destination.

-
-
Parameters
-

id (int) – The message ID to look for.

-
-
Raises
-
    -
  • NotFound – The specified message was not found.

  • -
  • Forbidden – You do not have the permissions required to get a message.

  • -
  • HTTPException – Retrieving the message failed.

  • -
-
-
Returns
-

The message asked for.

-
-
Return type
-

Message

-
-
-
- -
-
-await pins()
-

This function is a coroutine.

-

Retrieves all messages that are currently pinned in the channel.

-
-

Note

-

Due to a limitation with the Discord API, the Message -objects returned by this method do not contain complete -Message.reactions data.

-
-
-
Raises
-

HTTPException – Retrieving the pinned messages failed.

-
-
Returns
-

The messages that are currently pinned.

-
-
Return type
-

List[Message]

-
-
-
- -
-
-await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
-

This function is a coroutine.

-

Sends a message to the destination with the content given.

-

The content must be a type that can convert to a string through str(content). -If the content is set to None (the default), then the embed parameter must -be provided.

-

To upload a single file, the file parameter should be used with a -single File object. To upload multiple files, the files -parameter should be used with a list of File objects. -Specifying both parameters will lead to an exception.

-

To upload a single embed, the embed parameter should be used with a -single Embed object. To upload multiple embeds, the embeds -parameter should be used with a list of Embed objects. -Specifying both parameters will lead to an exception.

-
-
Parameters
-
    -
  • content (Optional[str]) – The content of the message to send.

  • -
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • -
  • embed (Embed) – The rich embed for the content.

  • -
  • file (File) – The file to upload.

  • -
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • -
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, -then the message will have a nonce with this value.

  • -
  • delete_after (float) – If provided, the number of seconds to wait in the background -before deleting the message we just sent. If the deletion fails, -then it is silently ignored.

  • -
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is -passed, then the object is merged with allowed_mentions. -The merging behaviour only overrides attributes that have been explicitly passed -to the object, otherwise it uses the attributes set in allowed_mentions. -If no object is passed at all then the defaults given by allowed_mentions -are used instead.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using -to_reference() or passed directly as a Message. You can control -whether this mentions the author of the referenced message using the replied_user -attribute of allowed_mentions or by setting mention_author.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • -
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
-
-
Returns
-

The message that was sent.

-
-
Return type
-

Message

-
-
-
- -
-
-await trigger_typing()
-

This function is a coroutine.

-

Triggers a typing indicator to the destination.

-

Typing indicator will go away after 10 seconds, or after a message is sent.

-
- -
- -
-
-

GroupChannel

-
- -Attributes -
- -Methods -
-
-class discord.GroupChannel
-

Represents a Discord group channel.

-
-
-
-x == y
-

Checks if two channels are equal.

-
- -
-
-x != y
-

Checks if two channels are not equal.

-
- -
-
-hash(x)
-

Returns the channel’s hash.

-
- -
-
-str(x)
-

Returns a string representation of the channel

-
- -
-
-int(x)
-

Returns the channel’s ID.

-
- -
-
-
-recipients
-

The users you are participating with in the group channel.

-
-
Type
-

List[User]

-
-
-
- -
-
-me
-

The user presenting yourself.

-
-
Type
-

ClientUser

-
-
-
- -
-
-id
-

The group channel ID.

-
-
Type
-

int

-
-
-
- -
-
-owner
-

The user that owns the group channel.

-
-
Type
-

Optional[User]

-
-
-
- -
-
-owner_id
-

The owner ID that owns the group channel.

-
-

New in version 2.0.

-
-
-
Type
-

int

-
-
-
- -
-
-name
-

The group channel’s name if provided.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
-

Returns an AsyncIterator that enables receiving the destination’s message history.

-

You must have read_message_history permissions to use this.

-

Examples

-

Usage

-
counter = 0
-async for message in channel.history(limit=200):
-    if message.author == client.user:
-        counter += 1
-
-
-

Flattening into a list:

-
messages = await channel.history(limit=123).flatten()
-# messages is now a list of Message...
-
-
-

All parameters are optional.

-
-
Parameters
-
    -
  • limit (Optional[int]) – The number of messages to retrieve. -If None, retrieves every message in the channel. Note, however, -that this would make it a slow operation.

  • -
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time. -When using this argument, the maximum limit is 101. Note that if the limit is an -even number then this will return at most limit + 1 messages.

  • -
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if -after is specified, otherwise False.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to get channel message history.

  • -
  • HTTPException – The request to get message history failed.

  • -
-
-
Yields
-

Message – The message with the message data parsed.

-
-
-
- -
-
-async with typing()
-

Returns a context manager that allows you to type for an indefinite period of time.

-

This is useful for denoting long computations in your bot.

-
-

Note

-

This is both a regular context manager and an async context manager. -This means that both with and async with work with this.

-
-

Example Usage:

-
async with channel.typing():
-    # simulate something heavy
-    await asyncio.sleep(10)
-
-await channel.send('done!')
-
-
-
- -
-
-property type
-

The channel’s Discord type.

-
-
Type
-

ChannelType

-
-
-
- -
-
-property icon
-

Returns the channel’s icon asset if available.

-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property created_at
-

Returns the channel’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-permissions_for(obj, /)
-

Handles permission resolution for a User.

-

This function is there for compatibility with other channel types.

-

Actual direct messages do not really have the concept of permissions.

-

This returns all the Text related permissions set to True except:

- -

This also checks the kick_members permission if the user is the owner.

-
-
Parameters
-

obj (Snowflake) – The user to check permissions for.

-
-
Returns
-

The resolved permissions for the user.

-
-
Return type
-

Permissions

-
-
-
- -
-
-await leave()
-

This function is a coroutine.

-

Leave the group.

-

If you are the only one in the group, this deletes it as well.

-
-
Raises
-

HTTPException – Leaving the group failed.

-
-
-
- -
-
-await fetch_message(id, /)
-

This function is a coroutine.

-

Retrieves a single Message from the destination.

-
-
Parameters
-

id (int) – The message ID to look for.

-
-
Raises
-
    -
  • NotFound – The specified message was not found.

  • -
  • Forbidden – You do not have the permissions required to get a message.

  • -
  • HTTPException – Retrieving the message failed.

  • -
-
-
Returns
-

The message asked for.

-
-
Return type
-

Message

-
-
-
- -
-
-await pins()
-

This function is a coroutine.

-

Retrieves all messages that are currently pinned in the channel.

-
-

Note

-

Due to a limitation with the Discord API, the Message -objects returned by this method do not contain complete -Message.reactions data.

-
-
-
Raises
-

HTTPException – Retrieving the pinned messages failed.

-
-
Returns
-

The messages that are currently pinned.

-
-
Return type
-

List[Message]

-
-
-
- -
-
-await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None)
-

This function is a coroutine.

-

Sends a message to the destination with the content given.

-

The content must be a type that can convert to a string through str(content). -If the content is set to None (the default), then the embed parameter must -be provided.

-

To upload a single file, the file parameter should be used with a -single File object. To upload multiple files, the files -parameter should be used with a list of File objects. -Specifying both parameters will lead to an exception.

-

To upload a single embed, the embed parameter should be used with a -single Embed object. To upload multiple embeds, the embeds -parameter should be used with a list of Embed objects. -Specifying both parameters will lead to an exception.

-
-
Parameters
-
    -
  • content (Optional[str]) – The content of the message to send.

  • -
  • tts (bool) – Indicates if the message should be sent using text-to-speech.

  • -
  • embed (Embed) – The rich embed for the content.

  • -
  • file (File) – The file to upload.

  • -
  • files (List[File]) – A list of files to upload. Must be a maximum of 10.

  • -
  • nonce (int) – The nonce to use for sending this message. If the message was successfully sent, -then the message will have a nonce with this value.

  • -
  • delete_after (float) – If provided, the number of seconds to wait in the background -before deleting the message we just sent. If the deletion fails, -then it is silently ignored.

  • -
  • allowed_mentions (AllowedMentions) –

    Controls the mentions being processed in this message. If this is -passed, then the object is merged with allowed_mentions. -The merging behaviour only overrides attributes that have been explicitly passed -to the object, otherwise it uses the attributes set in allowed_mentions. -If no object is passed at all then the defaults given by allowed_mentions -are used instead.

    -
    -

    New in version 1.4.

    -
    -

  • -
  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using -to_reference() or passed directly as a Message. You can control -whether this mentions the author of the referenced message using the replied_user -attribute of allowed_mentions or by setting mention_author.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_mentions.

    -
    -

    New in version 1.6.

    -
    -

  • -
  • view (discord.ui.View) – A Discord UI View to add to the message.

  • -
  • embeds (List[Embed]) –

    A list of embeds to upload. Must be a maximum of 10.

    -
    -

    New in version 2.0.

    -
    -

  • -
  • stickers (Sequence[Union[GuildSticker, StickerItem]]) –

    A list of stickers to upload. Must be a maximum of 3.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
-
-
Returns
-

The message that was sent.

-
-
Return type
-

Message

-
-
-
- -
-
-await trigger_typing()
-

This function is a coroutine.

-

Triggers a typing indicator to the destination.

-

Typing indicator will go away after 10 seconds, or after a message is sent.

-
- -
- -
-
-

PartialInviteGuild

-
-
-class discord.PartialInviteGuild
-

Represents a “partial” invite guild.

-

This model will be given when the user is not part of the -guild the Invite resolves to.

-
-
-
-x == y
-

Checks if two partial guilds are the same.

-
- -
-
-x != y
-

Checks if two partial guilds are not the same.

-
- -
-
-hash(x)
-

Return the partial guild’s hash.

-
- -
-
-str(x)
-

Returns the partial guild’s name.

-
- -
-
-
-name
-

The partial guild’s name.

-
-
Type
-

str

-
-
-
- -
-
-id
-

The partial guild’s ID.

-
-
Type
-

int

-
-
-
- -
-
-verification_level
-

The partial guild’s verification level.

-
-
Type
-

VerificationLevel

-
-
-
- -
-
-features
-

A list of features the guild has. See Guild.features for more information.

-
-
Type
-

List[str]

-
-
-
- -
-
-description
-

The partial guild’s description.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-property created_at
-

Returns the guild’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-property icon
-

Returns the guild’s icon asset, if available.

-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property banner
-

Returns the guild’s banner asset, if available.

-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property splash
-

Returns the guild’s invite splash asset, if available.

-
-
Type
-

Optional[Asset]

-
-
-
- -
- -
-
-

PartialInviteChannel

-
- -Attributes -
-
-class discord.PartialInviteChannel
-

Represents a “partial” invite channel.

-

This model will be given when the user is not part of the -guild the Invite resolves to.

-
-
-
-x == y
-

Checks if two partial channels are the same.

-
- -
-
-x != y
-

Checks if two partial channels are not the same.

-
- -
-
-hash(x)
-

Return the partial channel’s hash.

-
- -
-
-str(x)
-

Returns the partial channel’s name.

-
- -
-
-
-name
-

The partial channel’s name.

-
-
Type
-

str

-
-
-
- -
-
-id
-

The partial channel’s ID.

-
-
Type
-

int

-
-
-
- -
-
-type
-

The partial channel’s type.

-
-
Type
-

ChannelType

-
-
-
- -
-
-property mention
-

The string that allows you to mention the channel.

-
-
Type
-

str

-
-
-
- -
-
-property created_at
-

Returns the channel’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
- -
-
-

Invite

-
-
-class discord.Invite
-

Represents a Discord Guild or abc.GuildChannel invite.

-

Depending on the way this object was created, some of the attributes can -have a value of None.

-
-
-
-x == y
-

Checks if two invites are equal.

-
- -
-
-x != y
-

Checks if two invites are not equal.

-
- -
-
-hash(x)
-

Returns the invite hash.

-
- -
-
-str(x)
-

Returns the invite URL.

-
- -
-

The following table illustrates what methods will obtain the attributes:

-

If it’s not in the table above then it is available by all methods.

-
-
-max_age
-

How long before the invite expires in seconds. -A value of 0 indicates that it doesn’t expire.

-
-
Type
-

int

-
-
-
- -
-
-code
-

The URL fragment used for the invite.

-
-
Type
-

str

-
-
-
- -
-
-guild
-

The guild the invite is for. Can be None if it’s from a group direct message.

-
-
Type
-

Optional[Union[Guild, Object, PartialInviteGuild]]

-
-
-
- -
-
-revoked
-

Indicates if the invite has been revoked.

-
-
Type
-

bool

-
-
-
- -
-
-created_at
-

An aware UTC datetime object denoting the time the invite was created.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-temporary
-

Indicates that the invite grants temporary membership. -If True, members who joined via this invite will be kicked upon disconnect.

-
-
Type
-

bool

-
-
-
- -
-
-uses
-

How many times the invite has been used.

-
-
Type
-

int

-
-
-
- -
-
-max_uses
-

How many times the invite can be used. -A value of 0 indicates that it has unlimited uses.

-
-
Type
-

int

-
-
-
- -
-
-inviter
-

The user who created the invite.

-
-
Type
-

Optional[User]

-
-
-
- -
-
-approximate_member_count
-

The approximate number of members in the guild.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-approximate_presence_count
-

The approximate number of members currently active in the guild. -This includes idle, dnd, online, and invisible members. Offline members are excluded.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-expires_at
-

The expiration date of the invite. If the value is None when received through -Client.fetch_invite with with_expiration enabled, the invite will never expire.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[datetime.datetime]

-
-
-
- -
-
-channel
-

The channel the invite is for.

-
-
Type
-

Union[abc.GuildChannel, Object, PartialInviteChannel]

-
-
-
- -
-
-target_type
-

The type of target for the voice channel invite.

-
-

New in version 2.0.

-
-
-
Type
-

InviteTarget

-
-
-
- -
-
-target_user
-

The user whose stream to display for this invite, if any.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[User]

-
-
-
- -
-
-target_application
-

The embedded application the invite targets, if any.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[PartialAppInfo]

-
-
-
- -
-
-property id
-

Returns the proper code portion of the invite.

-
-
Type
-

str

-
-
-
- -
-
-property url
-

A property that retrieves the invite URL.

-
-
Type
-

str

-
-
-
- -
-
-await delete(*, reason=None)
-

This function is a coroutine.

-

Revokes the instant invite.

-

You must have the manage_channels permission to do this.

-
-
Parameters
-

reason (Optional[str]) – The reason for deleting this invite. Shows up on the audit log.

-
-
Raises
-
    -
  • Forbidden – You do not have permissions to revoke invites.

  • -
  • NotFound – The invite is invalid or expired.

  • -
  • HTTPException – Revoking the invite failed.

  • -
-
-
-
- -
- -
-
-

Template

-
- -Methods -
-
-class discord.Template
-

Represents a Discord template.

-
-

New in version 1.4.

-
-
-
-code
-

The template code.

-
-
Type
-

str

-
-
-
- -
-
-uses
-

How many times the template has been used.

-
-
Type
-

int

-
-
-
- -
-
-name
-

The name of the template.

-
-
Type
-

str

-
-
-
- -
-
-description
-

The description of the template.

-
-
Type
-

str

-
-
-
- -
-
-creator
-

The creator of the template.

-
-
Type
-

User

-
-
-
- -
-
-created_at
-

An aware datetime in UTC representing when the template was created.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-updated_at
-

An aware datetime in UTC representing when the template was last updated. -This is referred to as “last synced” in the official Discord client.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-source_guild
-

The source guild.

-
-
Type
-

Guild

-
-
-
- -
-
-is_dirty
-

Whether the template has unsynced changes.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[bool]

-
-
-
- -
-
-await create_guild(name, region=None, icon=None)
-

This function is a coroutine.

-

Creates a Guild using the template.

-

Bot accounts in more than 10 guilds are not allowed to create guilds.

-
-
Parameters
-
-
-
Raises
-
-
-
Returns
-

The guild created. This is not the same guild that is -added to cache.

-
-
Return type
-

Guild

-
-
-
- -
-
-await sync()
-

This function is a coroutine.

-

Sync the template to the guild’s current state.

-

You must have the manage_guild permission in the -source guild to do this.

-
-

New in version 1.7.

-
-
-

Changed in version 2.0: The template is no longer edited in-place, instead it is returned.

-
-
-
Raises
-
    -
  • HTTPException – Editing the template failed.

  • -
  • Forbidden – You don’t have permissions to edit the template.

  • -
  • NotFound – This template does not exist.

  • -
-
-
Returns
-

The newly edited template.

-
-
Return type
-

Template

-
-
-
- -
-
-await edit(*, name=..., description=...)
-

This function is a coroutine.

-

Edit the template metadata.

-

You must have the manage_guild permission in the -source guild to do this.

-
-

New in version 1.7.

-
-
-

Changed in version 2.0: The template is no longer edited in-place, instead it is returned.

-
-
-
Parameters
-
    -
  • name (str) – The template’s new name.

  • -
  • description (Optional[str]) – The template’s new description.

  • -
-
-
Raises
-
    -
  • HTTPException – Editing the template failed.

  • -
  • Forbidden – You don’t have permissions to edit the template.

  • -
  • NotFound – This template does not exist.

  • -
-
-
Returns
-

The newly edited template.

-
-
Return type
-

Template

-
-
-
- -
-
-await delete()
-

This function is a coroutine.

-

Delete the template.

-

You must have the manage_guild permission in the -source guild to do this.

-
-

New in version 1.7.

-
-
-
Raises
-
    -
  • HTTPException – Editing the template failed.

  • -
  • Forbidden – You don’t have permissions to edit the template.

  • -
  • NotFound – This template does not exist.

  • -
-
-
-
- -
-
-property url
-

The template url.

-
-

New in version 2.0.

-
-
-
Type
-

str

-
-
-
- -
- -
-
-

WidgetChannel

-
- -Attributes -
-
-class discord.WidgetChannel
-

Represents a “partial” widget channel.

-
-
-
-x == y
-

Checks if two partial channels are the same.

-
- -
-
-x != y
-

Checks if two partial channels are not the same.

-
- -
-
-hash(x)
-

Return the partial channel’s hash.

-
- -
-
-str(x)
-

Returns the partial channel’s name.

-
- -
-
-
-id
-

The channel’s ID.

-
-
Type
-

int

-
-
-
- -
-
-name
-

The channel’s name.

-
-
Type
-

str

-
-
-
- -
-
-position
-

The channel’s position

-
-
Type
-

int

-
-
-
- -
-
-property mention
-

The string that allows you to mention the channel.

-
-
Type
-

str

-
-
-
- -
-
-property created_at
-

Returns the channel’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
- -
-
-

WidgetMember

-
-
-class discord.WidgetMember
-

Represents a “partial” member of the widget’s guild.

-
-
-
-x == y
-

Checks if two widget members are the same.

-
- -
-
-x != y
-

Checks if two widget members are not the same.

-
- -
-
-hash(x)
-

Return the widget member’s hash.

-
- -
-
-str(x)
-

Returns the widget member’s name#discriminator.

-
- -
-
-
-id
-

The member’s ID.

-
-
Type
-

int

-
-
-
- -
-
-name
-

The member’s username.

-
-
Type
-

str

-
-
-
- -
-
-discriminator
-

The member’s discriminator.

-
-
Type
-

str

-
-
-
- -
-
-bot
-

Whether the member is a bot.

-
-
Type
-

bool

-
-
-
- -
-
-status
-

The member’s status.

-
-
Type
-

Status

-
-
-
- -
-
-nick
-

The member’s nickname.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-avatar
-

The member’s avatar hash.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-activity
-

The member’s activity.

-
-
Type
-

Optional[Union[BaseActivity, Spotify]]

-
-
-
- -
-
-deafened
-

Whether the member is currently deafened.

-
-
Type
-

Optional[bool]

-
-
-
- -
-
-muted
-

Whether the member is currently muted.

-
-
Type
-

Optional[bool]

-
-
-
- -
-
-suppress
-

Whether the member is currently being suppressed.

-
-
Type
-

Optional[bool]

-
-
-
- -
-
-connected_channel
-

Which channel the member is connected to.

-
-
Type
-

Optional[WidgetChannel]

-
-
-
- -
-
-property display_name
-

Returns the member’s display name.

-
-
Type
-

str

-
-
-
- -
-
-property accent_color
-

Returns the user’s accent color, if applicable.

-

There is an alias for this named accent_colour.

-
-

New in version 2.0.

-
-
-

Note

-

This information is only available via Client.fetch_user().

-
-
-
Type
-

Optional[Colour]

-
-
-
- -
-
-property accent_colour
-

Returns the user’s accent colour, if applicable.

-

There is an alias for this named accent_color.

-
-

New in version 2.0.

-
-
-

Note

-

This information is only available via Client.fetch_user().

-
-
-
Type
-

Optional[Colour]

-
-
-
- -
-
-property banner
-

Returns the user’s banner asset, if available.

-
-

New in version 2.0.

-
-
-

Note

-

This information is only available via Client.fetch_user().

-
-
-
Type
-

Optional[Asset]

-
-
-
- -
-
-property color
-

A property that returns a color denoting the rendered color -for the user. This always returns Colour.default().

-

There is an alias for this named colour.

-
-
Type
-

Colour

-
-
-
- -
-
-property colour
-

A property that returns a colour denoting the rendered colour -for the user. This always returns Colour.default().

-

There is an alias for this named color.

-
-
Type
-

Colour

-
-
-
- -
-
-property created_at
-

Returns the user’s creation time in UTC.

-

This is when the user’s Discord account was created.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-property default_avatar
-

Returns the default avatar for a given user. This is calculated by the user’s discriminator.

-
-
Type
-

Asset

-
-
-
- -
-
-property display_avatar
-

Returns the user’s display avatar.

-

For regular users this is just their default avatar or uploaded avatar.

-
-

New in version 2.0.

-
-
-
Type
-

Asset

-
-
-
- -
-
-property mention
-

Returns a string that allows you to mention the given user.

-
-
Type
-

str

-
-
-
- -
-
-mentioned_in(message)
-

Checks if the user is mentioned in the specified message.

-
-
Parameters
-

message (Message) – The message to check if you’re mentioned in.

-
-
Returns
-

Indicates if the user is mentioned in the message.

-
-
Return type
-

bool

-
-
-
- -
-
-property public_flags
-

The publicly available flags the user has.

-
-
Type
-

PublicUserFlags

-
-
-
- -
- -
-
-

Widget

-
- -Methods -
-
-class discord.Widget
-

Represents a Guild widget.

-
-
-
-x == y
-

Checks if two widgets are the same.

-
- -
-
-x != y
-

Checks if two widgets are not the same.

-
- -
-
-str(x)
-

Returns the widget’s JSON URL.

-
- -
-
-
-id
-

The guild’s ID.

-
-
Type
-

int

-
-
-
- -
-
-name
-

The guild’s name.

-
-
Type
-

str

-
-
-
- -
-
-channels
-

The accessible voice channels in the guild.

-
-
Type
-

List[WidgetChannel]

-
-
-
- -
-
-members
-

The online members in the server. Offline members -do not appear in the widget.

-
-

Note

-

Due to a Discord limitation, if this data is available -the users will be “anonymized” with linear IDs and discriminator -information being incorrect. Likewise, the number of members -retrieved is capped.

-
-
-
Type
-

List[Member]

-
-
-
- -
-
-property created_at
-

Returns the member’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-property json_url
-

The JSON URL of the widget.

-
-
Type
-

str

-
-
-
- -
-
-property invite_url
-

The invite URL for the guild, if available.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-await fetch_invite(*, with_counts=True)
-

This function is a coroutine.

-

Retrieves an Invite from the widget’s invite URL. -This is the same as Client.fetch_invite(); the invite -code is abstracted away.

-
-
Parameters
-

with_counts (bool) – Whether to include count information in the invite. This fills the -Invite.approximate_member_count and Invite.approximate_presence_count -fields.

-
-
Returns
-

The invite from the widget’s invite URL.

-
-
Return type
-

Invite

-
-
-
- -
- -
-
-

StickerPack

-
-
-class discord.StickerPack
-

Represents a sticker pack.

-
-

New in version 2.0.

-
-
-
-
-str(x)
-

Returns the name of the sticker pack.

-
- -
-
-hash(x)
-

Returns the hash of the sticker pack.

-
- -
-
-int(x)
-

Returns the ID of the sticker pack.

-
- -
-
-x == y
-

Checks if the sticker pack is equal to another sticker pack.

-
- -
-
-x != y
-

Checks if the sticker pack is not equal to another sticker pack.

-
- -
-
-
-name
-

The name of the sticker pack.

-
-
Type
-

str

-
-
-
- -
-
-description
-

The description of the sticker pack.

-
-
Type
-

str

-
-
-
- -
-
-id
-

The id of the sticker pack.

-
-
Type
-

int

-
-
-
- -
-
-stickers
-

The stickers of this sticker pack.

-
-
Type
-

List[StandardSticker]

-
-
-
- -
-
-sku_id
-

The SKU ID of the sticker pack.

-
-
Type
-

int

-
-
-
- -
-
-cover_sticker_id
-

The ID of the sticker used for the cover of the sticker pack.

-
-
Type
-

int

-
-
-
- -
-
-cover_sticker
-

The sticker used for the cover of the sticker pack.

-
-
Type
-

StandardSticker

-
-
-
- -
-
-property banner
-

The banner asset of the sticker pack.

-
-
Type
-

Asset

-
-
-
- -
- -
-
-

StickerItem

-
- -Attributes -
- -Methods -
-
-class discord.StickerItem
-

Represents a sticker item.

-
-

New in version 2.0.

-
-
-
-
-str(x)
-

Returns the name of the sticker item.

-
- -
-
-x == y
-

Checks if the sticker item is equal to another sticker item.

-
- -
-
-x != y
-

Checks if the sticker item is not equal to another sticker item.

-
- -
-
-
-name
-

The sticker’s name.

-
-
Type
-

str

-
-
-
- -
-
-id
-

The id of the sticker.

-
-
Type
-

int

-
-
-
- -
-
-format
-

The format for the sticker’s image.

-
-
Type
-

StickerFormatType

-
-
-
- -
-
-url
-

The URL for the sticker’s image.

-
-
Type
-

str

-
-
-
- -
-
-await fetch()
-

This function is a coroutine.

-

Attempts to retrieve the full sticker data of the sticker item.

-
-
Raises
-

HTTPException – Retrieving the sticker failed.

-
-
Returns
-

The retrieved sticker.

-
-
Return type
-

Union[StandardSticker, GuildSticker]

-
-
-
- -
- -
-
-

Sticker

-
- -Attributes -
-
-class discord.Sticker
-

Represents a sticker.

-
-

New in version 1.6.

-
-
-
-
-str(x)
-

Returns the name of the sticker.

-
- -
-
-x == y
-

Checks if the sticker is equal to another sticker.

-
- -
-
-x != y
-

Checks if the sticker is not equal to another sticker.

-
- -
-
-
-name
-

The sticker’s name.

-
-
Type
-

str

-
-
-
- -
-
-id
-

The id of the sticker.

-
-
Type
-

int

-
-
-
- -
-
-description
-

The description of the sticker.

-
-
Type
-

str

-
-
-
- -
-
-pack_id
-

The id of the sticker’s pack.

-
-
Type
-

int

-
-
-
- -
-
-format
-

The format for the sticker’s image.

-
-
Type
-

StickerFormatType

-
-
-
- -
-
-url
-

The URL for the sticker’s image.

-
-
Type
-

str

-
-
-
- -
-
-property created_at
-

Returns the sticker’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
- -
-
-

StandardSticker

-
- -Attributes -
- -Methods -
-
-class discord.StandardSticker
-

Represents a sticker that is found in a standard sticker pack.

-
-

New in version 2.0.

-
-
-
-
-str(x)
-

Returns the name of the sticker.

-
- -
-
-x == y
-

Checks if the sticker is equal to another sticker.

-
- -
-
-x != y
-

Checks if the sticker is not equal to another sticker.

-
- -
-
-
-name
-

The sticker’s name.

-
-
Type
-

str

-
-
-
- -
-
-id
-

The id of the sticker.

-
-
Type
-

int

-
-
-
- -
-
-description
-

The description of the sticker.

-
-
Type
-

str

-
-
-
- -
-
-pack_id
-

The id of the sticker’s pack.

-
-
Type
-

int

-
-
-
- -
-
-format
-

The format for the sticker’s image.

-
-
Type
-

StickerFormatType

-
-
-
- -
-
-tags
-

A list of tags for the sticker.

-
-
Type
-

List[str]

-
-
-
- -
-
-sort_value
-

The sticker’s sort order within its pack.

-
-
Type
-

int

-
-
-
- -
-
-await pack()
-

This function is a coroutine.

-

Retrieves the sticker pack that this sticker belongs to.

-
-
Raises
-
    -
  • InvalidData – The corresponding sticker pack was not found.

  • -
  • HTTPException – Retrieving the sticker pack failed.

  • -
-
-
Returns
-

The retrieved sticker pack.

-
-
Return type
-

StickerPack

-
-
-
- -
- -
-
-

GuildSticker

-
- -Attributes -
- -Methods -
-
-class discord.GuildSticker
-

Represents a sticker that belongs to a guild.

-
-

New in version 2.0.

-
-
-
-
-str(x)
-

Returns the name of the sticker.

-
- -
-
-x == y
-

Checks if the sticker is equal to another sticker.

-
- -
-
-x != y
-

Checks if the sticker is not equal to another sticker.

-
- -
-
-
-name
-

The sticker’s name.

-
-
Type
-

str

-
-
-
- -
-
-id
-

The id of the sticker.

-
-
Type
-

int

-
-
-
- -
-
-description
-

The description of the sticker.

-
-
Type
-

str

-
-
-
- -
-
-format
-

The format for the sticker’s image.

-
-
Type
-

StickerFormatType

-
-
-
- -
-
-available
-

Whether this sticker is available for use.

-
-
Type
-

bool

-
-
-
- -
-
-guild_id
-

The ID of the guild that this sticker is from.

-
-
Type
-

int

-
-
-
- -
-
-user
-

The user that created this sticker. This can only be retrieved using Guild.fetch_sticker() and -having the manage_emojis_and_stickers permission.

-
-
Type
-

Optional[User]

-
-
-
- -
-
-emoji
-

The name of a unicode emoji that represents this sticker.

-
-
Type
-

str

-
-
-
- -
-
-guild
-

The guild that this sticker is from. -Could be None if the bot is not in the guild.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[Guild]

-
-
-
- -
-
-await edit(*, name=..., description=..., emoji=..., reason=None)
-

This function is a coroutine.

-

Edits a GuildSticker for the guild.

-
-
Parameters
-
    -
  • name (str) – The sticker’s new name. Must be at least 2 characters.

  • -
  • description (Optional[str]) – The sticker’s new description. Can be None.

  • -
  • emoji (str) – The name of a unicode emoji that represents the sticker’s expression.

  • -
  • reason (str) – The reason for editing this sticker. Shows up on the audit log.

  • -
-
-
Raises
-
    -
  • Forbidden – You are not allowed to edit stickers.

  • -
  • HTTPException – An error occurred editing the sticker.

  • -
-
-
Returns
-

The newly modified sticker.

-
-
Return type
-

GuildSticker

-
-
-
- -
-
-await delete(*, reason=None)
-

This function is a coroutine.

-

Deletes the custom Sticker from the guild.

-

You must have manage_emojis_and_stickers permission to -do this.

-
-
Parameters
-

reason (Optional[str]) – The reason for deleting this sticker. Shows up on the audit log.

-
-
Raises
-
    -
  • Forbidden – You are not allowed to delete stickers.

  • -
  • HTTPException – An error occurred deleting the sticker.

  • -
-
-
-
- -
- -
-
-

RawTypingEvent

-
- -Attributes -
-
-class discord.RawTypingEvent
-

Represents the payload for a on_raw_typing() event.

-
-

New in version 2.0.

-
-
-
-channel_id
-

The channel ID where the typing originated from.

-
-
Type
-

int

-
-
-
- -
-
-user_id
-

The ID of the user that started typing.

-
-
Type
-

int

-
-
-
- -
-
-when
-

When the typing started as an aware datetime in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-guild_id
-

The guild ID where the typing originated from, if applicable.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-member
-

The member who started typing. Only available if the member started typing in a guild.

-
-
Type
-

Optional[Member]

-
-
-
- -
- -
-
-

RawMessageDeleteEvent

-
-
-class discord.RawMessageDeleteEvent
-

Represents the event payload for a on_raw_message_delete() event.

-
-
-channel_id
-

The channel ID where the deletion took place.

-
-
Type
-

int

-
-
-
- -
-
-guild_id
-

The guild ID where the deletion took place, if applicable.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-message_id
-

The message ID that got deleted.

-
-
Type
-

int

-
-
-
- -
-
-cached_message
-

The cached message, if found in the internal message cache.

-
-
Type
-

Optional[Message]

-
-
-
- -
- -
-
-

RawBulkMessageDeleteEvent

-
-
-class discord.RawBulkMessageDeleteEvent
-

Represents the event payload for a on_raw_bulk_message_delete() event.

-
-
-message_ids
-

A set of the message IDs that were deleted.

-
-
Type
-

Set[int]

-
-
-
- -
-
-channel_id
-

The channel ID where the message got deleted.

-
-
Type
-

int

-
-
-
- -
-
-guild_id
-

The guild ID where the message got deleted, if applicable.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-cached_messages
-

The cached messages, if found in the internal message cache.

-
-
Type
-

List[Message]

-
-
-
- -
- -
-
-

RawMessageUpdateEvent

-
-
-class discord.RawMessageUpdateEvent
-

Represents the payload for a on_raw_message_edit() event.

-
-
-message_id
-

The message ID that got updated.

-
-
Type
-

int

-
-
-
- -
-
-channel_id
-

The channel ID where the update took place.

-
-

New in version 1.3.

-
-
-
Type
-

int

-
-
-
- -
-
-guild_id
-

The guild ID where the message got updated, if applicable.

-
-

New in version 1.7.

-
-
-
Type
-

Optional[int]

-
-
-
- -
-
-data
-

The raw data given by the gateway

-
-
Type
-

dict

-
-
-
- -
-
-cached_message
-

The cached message, if found in the internal message cache. Represents the message before -it is modified by the data in RawMessageUpdateEvent.data.

-
-
Type
-

Optional[Message]

-
-
-
- -
- -
-
-

RawReactionActionEvent

-
-
-class discord.RawReactionActionEvent
-

Represents the payload for a on_raw_reaction_add() or -on_raw_reaction_remove() event.

-
-
-message_id
-

The message ID that got or lost a reaction.

-
-
Type
-

int

-
-
-
- -
-
-user_id
-

The user ID who added the reaction or whose reaction was removed.

-
-
Type
-

int

-
-
-
- -
-
-channel_id
-

The channel ID where the reaction got added or removed.

-
-
Type
-

int

-
-
-
- -
-
-guild_id
-

The guild ID where the reaction got added or removed, if applicable.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-emoji
-

The custom or unicode emoji being used.

-
-
Type
-

PartialEmoji

-
-
-
- -
-
-member
-

The member who added the reaction. Only available if event_type is REACTION_ADD and the reaction is inside a guild.

-
-

New in version 1.3.

-
-
-
Type
-

Optional[Member]

-
-
-
- -
-
-event_type
-

The event type that triggered this action. Can be -REACTION_ADD for reaction addition or -REACTION_REMOVE for reaction removal.

-
-

New in version 1.3.

-
-
-
Type
-

str

-
-
-
- -
- -
-
-

RawReactionClearEvent

-
- -Attributes -
-
-class discord.RawReactionClearEvent
-

Represents the payload for a on_raw_reaction_clear() event.

-
-
-message_id
-

The message ID that got its reactions cleared.

-
-
Type
-

int

-
-
-
- -
-
-channel_id
-

The channel ID where the reactions got cleared.

-
-
Type
-

int

-
-
-
- -
-
-guild_id
-

The guild ID where the reactions got cleared.

-
-
Type
-

Optional[int]

-
-
-
- -
- -
-
-

RawReactionClearEmojiEvent

-
- -Attributes -
-
-class discord.RawReactionClearEmojiEvent
-

Represents the payload for a on_raw_reaction_clear_emoji() event.

-
-

New in version 1.3.

-
-
-
-message_id
-

The message ID that got its reactions cleared.

-
-
Type
-

int

-
-
-
- -
-
-channel_id
-

The channel ID where the reactions got cleared.

-
-
Type
-

int

-
-
-
- -
-
-guild_id
-

The guild ID where the reactions got cleared.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-emoji
-

The custom or unicode emoji being removed.

-
-
Type
-

PartialEmoji

-
-
-
- -
- -
-
-

RawIntegrationDeleteEvent

-
- -Attributes -
-
-class discord.RawIntegrationDeleteEvent
-

Represents the payload for a on_raw_integration_delete() event.

-
-

New in version 2.0.

-
-
-
-integration_id
-

The ID of the integration that got deleted.

-
-
Type
-

int

-
-
-
- -
-
-application_id
-

The ID of the bot/OAuth2 application for this deleted integration.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-guild_id
-

The guild ID where the integration got deleted.

-
-
Type
-

int

-
-
-
- -
- -
-
-

PartialWebhookGuild

-
- -Attributes -
-
-class discord.PartialWebhookGuild
-

Represents a partial guild for webhooks.

-

These are typically given for channel follower webhooks.

-
-

New in version 2.0.

-
-
-
-id
-

The partial guild’s ID.

-
-
Type
-

int

-
-
-
- -
-
-name
-

The partial guild’s name.

-
-
Type
-

str

-
-
-
- -
-
-property icon
-

Returns the guild’s icon asset, if available.

-
-
Type
-

Optional[Asset]

-
-
-
- -
- -
-
-

PartialWebhookChannel

-
- -Attributes -
-
-class discord.PartialWebhookChannel
-

Represents a partial channel for webhooks.

-

These are typically given for channel follower webhooks.

-
-

New in version 2.0.

-
-
-
-id
-

The partial channel’s ID.

-
-
Type
-

int

-
-
-
- -
-
-name
-

The partial channel’s name.

-
-
Type
-

str

-
-
-
- -
- -
-
-
-

Data Classes

-

Some classes are just there to be data containers, this lists them.

-

Unlike models you are allowed to create -most of these yourself, even if they can also be used to hold attributes.

-

Nearly all classes here have __slots__ defined which means that it is -impossible to have dynamic attributes to the data classes.

-

The only exception to this rule is Object, which is made with -dynamic attributes in mind.

-
-

Object

-
- -Attributes -
-
-class discord.Object(id)
-

Represents a generic Discord object.

-

The purpose of this class is to allow you to create ‘miniature’ -versions of data classes if you want to pass in just an ID. Most functions -that take in a specific data class with an ID can also take in this class -as a substitute instead. Note that even though this is the case, not all -objects (if any) actually inherit from this class.

-

There are also some cases where some websocket events are received -in strange order and when such events happened you would -receive this class rather than the actual data class. These cases are -extremely rare.

-
-
-
-x == y
-

Checks if two objects are equal.

-
- -
-
-x != y
-

Checks if two objects are not equal.

-
- -
-
-hash(x)
-

Returns the object’s hash.

-
- -
-
-int(x)
-

Returns the object’s ID.

-
- -
-
-
-id
-

The ID of the object.

-
-
Type
-

int

-
-
-
- -
-
-property created_at
-

Returns the snowflake’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
- -
-
-

Embed

-
-
-class discord.Embed(*, colour=Embed.Empty, color=Embed.Empty, title=Embed.Empty, type='rich', url=Embed.Empty, description=Embed.Empty, timestamp=None)
-

Represents a Discord embed.

-
-
-
-len(x)
-

Returns the total size of the embed. -Useful for checking if it’s within the 6000 character limit.

-
- -
-
-bool(b)
-

Returns whether the embed has any data set.

-
-

New in version 2.0.

-
-
- -
-

Certain properties return an EmbedProxy, a type -that acts similar to a regular dict except using dotted access, -e.g. embed.author.icon_url. If the attribute -is invalid or empty, then a special sentinel value is returned, -Embed.Empty.

-

For ease of use, all parameters that expect a str are implicitly -casted to str for you.

-
-
-title
-

The title of the embed. -This can be set during initialisation.

-
-
Type
-

str

-
-
-
- -
-
-type
-

The type of embed. Usually “rich”. -This can be set during initialisation. -Possible strings for embed types can be found on discord’s -api docs

-
-
Type
-

str

-
-
-
- -
-
-description
-

The description of the embed. -This can be set during initialisation.

-
-
Type
-

str

-
-
-
- -
-
-url
-

The URL of the embed. -This can be set during initialisation.

-
-
Type
-

str

-
-
-
- -
-
-timestamp
-

The timestamp of the embed content. This is an aware datetime. -If a naive datetime is passed, it is converted to an aware -datetime with the local timezone.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-colour
-

The colour code of the embed. Aliased to color as well. -This can be set during initialisation.

-
-
Type
-

Union[Colour, int]

-
-
-
- -
-
-Empty
-

A special sentinel value used by EmbedProxy and this class -to denote that the value or attribute is empty.

-
-
Type
-

Final

-
-
-
- -
-
-classmethod from_dict(data)
-

Converts a dict to a Embed provided it is in the -format that Discord expects it to be in.

-

You can find out about this format in the official Discord documentation.

-
-
Parameters
-

data (dict) – The dictionary to convert into an embed.

-
-
-
- -
-
-copy()
-

Returns a shallow copy of the embed.

-
- -
-
-property footer
-

Returns an EmbedProxy denoting the footer contents.

-

See set_footer() for possible values you can access.

-

If the attribute has no value then Empty is returned.

-
- -
- -

Sets the footer for the embed content.

-

This function returns the class instance to allow for fluent-style -chaining.

-
-
Parameters
-
    -
  • text (str) – The footer text.

  • -
  • icon_url (str) – The URL of the footer icon. Only HTTP(S) is supported.

  • -
-
-
-
- -
- -

Clears embed’s footer information.

-

This function returns the class instance to allow for fluent-style -chaining.

-
-

New in version 2.0.

-
-
- -
-
-property image
-

Returns an EmbedProxy denoting the image contents.

-

Possible attributes you can access are:

-
    -
  • url

  • -
  • proxy_url

  • -
  • width

  • -
  • height

  • -
-

If the attribute has no value then Empty is returned.

-
- -
-
-set_image(*, url)
-

Sets the image for the embed content.

-

This function returns the class instance to allow for fluent-style -chaining.

-
-

Changed in version 1.4: Passing Empty removes the image.

-
-
-
Parameters
-

url (str) – The source URL for the image. Only HTTP(S) is supported.

-
-
-
- -
-
-property thumbnail
-

Returns an EmbedProxy denoting the thumbnail contents.

-

Possible attributes you can access are:

-
    -
  • url

  • -
  • proxy_url

  • -
  • width

  • -
  • height

  • -
-

If the attribute has no value then Empty is returned.

-
- -
-
-set_thumbnail(*, url)
-

Sets the thumbnail for the embed content.

-

This function returns the class instance to allow for fluent-style -chaining.

-
-

Changed in version 1.4: Passing Empty removes the thumbnail.

-
-
-
Parameters
-

url (str) – The source URL for the thumbnail. Only HTTP(S) is supported.

-
-
-
- -
-
-property video
-

Returns an EmbedProxy denoting the video contents.

-

Possible attributes include:

-
    -
  • url for the video URL.

  • -
  • height for the video height.

  • -
  • width for the video width.

  • -
-

If the attribute has no value then Empty is returned.

-
- -
-
-property provider
-

Returns an EmbedProxy denoting the provider contents.

-

The only attributes that might be accessed are name and url.

-

If the attribute has no value then Empty is returned.

-
- -
-
-property author
-

Returns an EmbedProxy denoting the author contents.

-

See set_author() for possible values you can access.

-

If the attribute has no value then Empty is returned.

-
- -
-
-set_author(*, name, url=Embed.Empty, icon_url=Embed.Empty)
-

Sets the author for the embed content.

-

This function returns the class instance to allow for fluent-style -chaining.

-
-
Parameters
-
    -
  • name (str) – The name of the author.

  • -
  • url (str) – The URL for the author.

  • -
  • icon_url (str) – The URL of the author icon. Only HTTP(S) is supported.

  • -
-
-
-
- -
-
-remove_author()
-

Clears embed’s author information.

-

This function returns the class instance to allow for fluent-style -chaining.

-
-

New in version 1.4.

-
-
- -
-
-property fields
-

Returns a list of EmbedProxy denoting the field contents.

-

See add_field() for possible values you can access.

-

If the attribute has no value then Empty is returned.

-
-
Type
-

List[Union[EmbedProxy, Empty]]

-
-
-
- -
-
-add_field(*, name, value, inline=True)
-

Adds a field to the embed object.

-

This function returns the class instance to allow for fluent-style -chaining.

-
-
Parameters
-
    -
  • name (str) – The name of the field.

  • -
  • value (str) – The value of the field.

  • -
  • inline (bool) – Whether the field should be displayed inline.

  • -
-
-
-
- -
-
-insert_field_at(index, *, name, value, inline=True)
-

Inserts a field before a specified index to the embed.

-

This function returns the class instance to allow for fluent-style -chaining.

-
-

New in version 1.2.

-
-
-
Parameters
-
    -
  • index (int) – The index of where to insert the field.

  • -
  • name (str) – The name of the field.

  • -
  • value (str) – The value of the field.

  • -
  • inline (bool) – Whether the field should be displayed inline.

  • -
-
-
-
- -
-
-clear_fields()
-

Removes all fields from this embed.

-
- -
-
-remove_field(index)
-

Removes a field at a specified index.

-

If the index is invalid or out of bounds then the error is -silently swallowed.

-
-

Note

-

When deleting a field by index, the index of the other fields -shift to fill the gap just like a regular list.

-
-
-
Parameters
-

index (int) – The index of the field to remove.

-
-
-
- -
-
-set_field_at(index, *, name, value, inline=True)
-

Modifies a field to the embed object.

-

The index must point to a valid pre-existing field.

-

This function returns the class instance to allow for fluent-style -chaining.

-
-
Parameters
-
    -
  • index (int) – The index of the field to modify.

  • -
  • name (str) – The name of the field.

  • -
  • value (str) – The value of the field.

  • -
  • inline (bool) – Whether the field should be displayed inline.

  • -
-
-
Raises
-

IndexError – An invalid index was provided.

-
-
-
- -
-
-to_dict()
-

Converts this embed object into a dict.

-
- -
- -
-
-

AllowedMentions

-
- -Attributes -
- -Methods -
-
-class discord.AllowedMentions(*, everyone=True, users=True, roles=True, replied_user=True)
-

A class that represents what mentions are allowed in a message.

-

This class can be set during Client initialisation to apply -to every message sent. It can also be applied on a per message basis -via abc.Messageable.send() for more fine-grained control.

-
-
-everyone
-

Whether to allow everyone and here mentions. Defaults to True.

-
-
Type
-

bool

-
-
-
- -
-
-users
-

Controls the users being mentioned. If True (the default) then -users are mentioned based on the message content. If False then -users are not mentioned at all. If a list of abc.Snowflake -is given then only the users provided will be mentioned, provided those -users are in the message content.

-
-
Type
-

Union[bool, List[abc.Snowflake]]

-
-
-
- -
-
-roles
-

Controls the roles being mentioned. If True (the default) then -roles are mentioned based on the message content. If False then -roles are not mentioned at all. If a list of abc.Snowflake -is given then only the roles provided will be mentioned, provided those -roles are in the message content.

-
-
Type
-

Union[bool, List[abc.Snowflake]]

-
-
-
- -
-
-replied_user
-

Whether to mention the author of the message being replied to. Defaults -to True.

-
-

New in version 1.6.

-
-
-
Type
-

bool

-
-
-
- -
-
-classmethod all()
-

A factory method that returns a AllowedMentions with all fields explicitly set to True

-
-

New in version 1.5.

-
-
- -
-
-classmethod none()
-

A factory method that returns a AllowedMentions with all fields set to False

-
-

New in version 1.5.

-
-
- -
- -
-
-

MessageReference

-
-
-class discord.MessageReference(*, message_id, channel_id, guild_id=None, fail_if_not_exists=True)
-

Represents a reference to a Message.

-
-

New in version 1.5.

-
-
-

Changed in version 1.6: This class can now be constructed by users.

-
-
-
-message_id
-

The id of the message referenced.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-channel_id
-

The channel id of the message referenced.

-
-
Type
-

int

-
-
-
- -
-
-guild_id
-

The guild id of the message referenced.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-fail_if_not_exists
-

Whether replying to the referenced message should raise HTTPException -if the message no longer exists or Discord could not fetch the message.

-
-

New in version 1.7.

-
-
-
Type
-

bool

-
-
-
- -
-
-resolved
-

The message that this reference resolved to. If this is None -then the original message was not fetched either due to the Discord API -not attempting to resolve it or it not being available at the time of creation. -If the message was resolved at a prior point but has since been deleted then -this will be of type DeletedReferencedMessage.

-

Currently, this is mainly the replied to message when a user replies to a message.

-
-

New in version 1.6.

-
-
-
Type
-

Optional[Union[Message, DeletedReferencedMessage]]

-
-
-
- -
-
-classmethod from_message(message, *, fail_if_not_exists=True)
-

Creates a MessageReference from an existing Message.

-
-

New in version 1.6.

-
-
-
Parameters
-
    -
  • message (Message) – The message to be converted into a reference.

  • -
  • fail_if_not_exists (bool) –

    Whether replying to the referenced message should raise HTTPException -if the message no longer exists or Discord could not fetch the message.

    -
    -

    New in version 1.7.

    -
    -

  • -
-
-
Returns
-

A reference to the message.

-
-
Return type
-

MessageReference

-
-
-
- -
-
-property cached_message
-

The cached message, if found in the internal message cache.

-
-
Type
-

Optional[Message]

-
-
-
- -
-
-property jump_url
-

Returns a URL that allows the client to jump to the referenced message.

-
-

New in version 1.7.

-
-
-
Type
-

str

-
-
-
- -
- -
-
-

PartialMessage

-
- -Attributes -
- -Methods -
-
-class discord.PartialMessage(*, channel, id)
-

Represents a partial message to aid with working messages when only -a message and channel ID are present.

-

There are two ways to construct this class. The first one is through -the constructor itself, and the second is via the following:

- -

Note that this class is trimmed down and has no rich attributes.

-
-

New in version 1.6.

-
-
-
-
-x == y
-

Checks if two partial messages are equal.

-
- -
-
-x != y
-

Checks if two partial messages are not equal.

-
- -
-
-hash(x)
-

Returns the partial message’s hash.

-
- -
-
-int(x)
-

Returns the partial message’s ID.

-
- -
-
-
-channel
-

The channel associated with this partial message.

-
-
Type
-

Union[TextChannel, Thread, DMChannel]

-
-
-
- -
-
-id
-

The message ID.

-
-
Type
-

int

-
-
-
- -
-
-property jump_url
-

Returns a URL that allows the client to jump to this message.

-
-
Type
-

str

-
-
-
- -
-
-await delete(*, delay=None, silent=False)
-

This function is a coroutine.

-

Deletes the message.

-

Your own messages could be deleted without any proper permissions. However to -delete other people’s messages, you need the manage_messages -permission.

-
-

Changed in version 1.1: Added the new delay keyword-only parameter.

-
-
-

Changed in version 2.0: Added the new silent keyword-only parameter.

-
-
-
Parameters
-
    -
  • delay (Optional[float]) – If provided, the number of seconds to wait in the background -before deleting the message. If the deletion fails then it is silently ignored.

  • -
  • silent (bool) – If silent is set to True, the error will not be raised, it will be ignored. -This defaults to False

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have proper permissions to delete the message.

  • -
  • NotFound – The message was deleted already

  • -
  • HTTPException – Deleting the message failed.

  • -
-
-
-
- -
-
-await publish()
-

This function is a coroutine.

-

Publishes this message to your announcement channel.

-

You must have the send_messages permission to do this.

-

If the message is not your own then the manage_messages -permission is also needed.

-
-
Raises
-
    -
  • Forbidden – You do not have the proper permissions to publish this message.

  • -
  • HTTPException – Publishing the message failed.

  • -
-
-
-
- -
-
-await pin(*, reason=None)
-

This function is a coroutine.

-

Pins the message.

-

You must have the manage_messages permission to do -this in a non-private channel context.

-
-
Parameters
-

reason (Optional[str]) –

The reason for pinning the message. Shows up on the audit log.

-
-

New in version 1.4.

-
-

-
-
Raises
-
    -
  • Forbidden – You do not have permissions to pin the message.

  • -
  • NotFound – The message or channel was not found or deleted.

  • -
  • HTTPException – Pinning the message failed, probably due to the channel - having more than 50 pinned messages.

  • -
-
-
-
- -
-
-await unpin(*, reason=None)
-

This function is a coroutine.

-

Unpins the message.

-

You must have the manage_messages permission to do -this in a non-private channel context.

-
-
Parameters
-

reason (Optional[str]) –

The reason for unpinning the message. Shows up on the audit log.

-
-

New in version 1.4.

-
-

-
-
Raises
-
    -
  • Forbidden – You do not have permissions to unpin the message.

  • -
  • NotFound – The message or channel was not found or deleted.

  • -
  • HTTPException – Unpinning the message failed.

  • -
-
-
-
- -
-
-await add_reaction(emoji)
-

This function is a coroutine.

-

Add a reaction to the message.

-

The emoji may be a unicode emoji or a custom guild Emoji.

-

You must have the read_message_history permission -to use this. If nobody else has reacted to the message using this -emoji, the add_reactions permission is required.

-
-
Parameters
-

emoji (Union[Emoji, Reaction, PartialEmoji, str]) – The emoji to react with.

-
-
Raises
-
    -
  • HTTPException – Adding the reaction failed.

  • -
  • Forbidden – You do not have the proper permissions to react to the message.

  • -
  • NotFound – The emoji you specified was not found.

  • -
  • InvalidArgument – The emoji parameter is invalid.

  • -
-
-
-
- -
-
-await remove_reaction(emoji, member)
-

This function is a coroutine.

-

Remove a reaction by the member from the message.

-

The emoji may be a unicode emoji or a custom guild Emoji.

-

If the reaction is not your own (i.e. member parameter is not you) then -the manage_messages permission is needed.

-

The member parameter must represent a member and meet -the abc.Snowflake abc.

-
-
Parameters
-
-
-
Raises
-
    -
  • HTTPException – Removing the reaction failed.

  • -
  • Forbidden – You do not have the proper permissions to remove the reaction.

  • -
  • NotFound – The member or emoji you specified was not found.

  • -
  • InvalidArgument – The emoji parameter is invalid.

  • -
-
-
-
- -
-
-await clear_reaction(emoji)
-

This function is a coroutine.

-

Clears a specific reaction from the message.

-

The emoji may be a unicode emoji or a custom guild Emoji.

-

You need the manage_messages permission to use this.

-
-

New in version 1.3.

-
-
-
Parameters
-

emoji (Union[Emoji, Reaction, PartialEmoji, str]) – The emoji to clear.

-
-
Raises
-
    -
  • HTTPException – Clearing the reaction failed.

  • -
  • Forbidden – You do not have the proper permissions to clear the reaction.

  • -
  • NotFound – The emoji you specified was not found.

  • -
  • InvalidArgument – The emoji parameter is invalid.

  • -
-
-
-
- -
-
-await clear_reactions()
-

This function is a coroutine.

-

Removes all the reactions from the message.

-

You need the manage_messages permission to use this.

-
-
Raises
-
    -
  • HTTPException – Removing the reactions failed.

  • -
  • Forbidden – You do not have the proper permissions to remove all the reactions.

  • -
-
-
-
- -
-
-await reply(content=None, **kwargs)
-

This function is a coroutine.

-

A shortcut method to abc.Messageable.send() to reply to the -Message.

-
-

New in version 1.6.

-
-
-
Raises
-
    -
  • HTTPException – Sending the message failed.

  • -
  • Forbidden – You do not have the proper permissions to send the message.

  • -
  • InvalidArgument – The files list is not of the appropriate size or - you specified both file and files.

  • -
-
-
Returns
-

The message that was sent.

-
-
Return type
-

Message

-
-
-
- -
-
-to_reference(*, fail_if_not_exists=True)
-

Creates a MessageReference from the current message.

-
-

New in version 1.6.

-
-
-
Parameters
-

fail_if_not_exists (bool) –

Whether replying using the message reference should raise HTTPException -if the message no longer exists or Discord could not fetch the message.

-
-

New in version 1.7.

-
-

-
-
Returns
-

The reference to this message.

-
-
Return type
-

MessageReference

-
-
-
- -
-
-property created_at
-

The partial message’s creation time in UTC.

-
-
Type
-

datetime.datetime

-
-
-
- -
-
-guild
-

The guild that the partial message belongs to, if applicable.

-
-
Type
-

Optional[Guild]

-
-
-
- -
-
-await fetch()
-

This function is a coroutine.

-

Fetches the partial message to a full Message.

-
-
Raises
-
    -
  • NotFound – The message was not found.

  • -
  • Forbidden – You do not have the permissions required to get a message.

  • -
  • HTTPException – Retrieving the message failed.

  • -
-
-
Returns
-

The full message.

-
-
Return type
-

Message

-
-
-
- -
-
-await edit(**fields)
-

This function is a coroutine.

-

Edits the message.

-

The content must be able to be transformed into a string via str(content).

-
-

Changed in version 1.7: discord.Message is returned instead of None if an edit took place.

-
-
-
Parameters
-
    -
  • content (Optional[str]) – The new content to replace the message with. -Could be None to remove the content.

  • -
  • embed (Optional[Embed]) – The new embed to replace the original with. -Could be None to remove the embed.

  • -
  • suppress (bool) – Whether to suppress embeds for the message. This removes -all the embeds if set to True. If set to False -this brings the embeds back if they were suppressed. -Using this parameter requires manage_messages.

  • -
  • delete_after (Optional[float]) – If provided, the number of seconds to wait in the background -before deleting the message we just edited. If the deletion fails, -then it is silently ignored.

  • -
  • allowed_mentions (Optional[AllowedMentions]) – Controls the mentions being processed in this message. If this is -passed, then the object is merged with allowed_mentions. -The merging behaviour only overrides attributes that have been explicitly passed -to the object, otherwise it uses the attributes set in allowed_mentions. -If no object is passed at all then the defaults given by allowed_mentions -are used instead.

  • -
  • view (Optional[View]) –

    The updated view to update this message with. If None is passed then -the view is removed.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
    -
  • NotFound – The message was not found.

  • -
  • HTTPException – Editing the message failed.

  • -
  • Forbidden – Tried to suppress a message without permissions or - edited a message’s content or embed that isn’t yours.

  • -
-
-
Returns
-

The message that was edited.

-
-
Return type
-

Optional[Message]

-
-
-
- -
- -
-
-

SelectOption

-
- -Attributes -
-
-class discord.SelectOption(*, label, value=..., description=None, emoji=None, default=False)
-

Represents a select menu’s option.

-

These can be created by users.

-
-

New in version 2.0.

-
-
-
-label
-

The label of the option. This is displayed to users. -Can only be up to 100 characters.

-
-
Type
-

str

-
-
-
- -
-
-value
-

The value of the option. This is not displayed to users. -If not provided when constructed then it defaults to the -label. Can only be up to 100 characters.

-
-
Type
-

str

-
-
-
- -
-
-description
-

An additional description of the option, if any. -Can only be up to 100 characters.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-emoji
-

The emoji of the option, if available.

-
-
Type
-

Optional[Union[str, Emoji, PartialEmoji]]

-
-
-
- -
-
-default
-

Whether this option is selected by default.

-
-
Type
-

bool

-
-
-
- -
- -
-
-

Intents

-
-
-class discord.Intents(**kwargs)
-

Wraps up a Discord gateway intent flag.

-

Similar to Permissions, the properties provided are two way. -You can set and retrieve individual bits using the properties as if they -were regular bools.

-

To construct an object you can pass keyword arguments denoting the flags -to enable or disable.

-

This is used to disable certain gateway features that are unnecessary to -run your bot. To make use of this, it is passed to the intents keyword -argument of Client.

-
-

New in version 1.5.

-
-
-
-
-x == y
-

Checks if two flags are equal.

-
- -
-
-x != y
-

Checks if two flags are not equal.

-
- -
-
-hash(x)
-

Return the flag’s hash.

-
- -
-
-iter(x)
-

Returns an iterator of (name, value) pairs. This allows it -to be, for example, constructed as a dict or a list of pairs.

-
- -
-
-
-value
-

The raw value. You should query flags via the properties -rather than using this raw value.

-
-
Type
-

int

-
-
-
- -
-
-classmethod all()
-

A factory method that creates a Intents with everything enabled.

-
- -
-
-classmethod none()
-

A factory method that creates a Intents with everything disabled.

-
- -
-
-guilds
-

Whether guild related events are enabled.

-

This corresponds to the following events:

- -

This also corresponds to the following attributes and classes in terms of cache:

- -

It is highly advisable to leave this intent enabled for your bot to function.

-
-
Type
-

bool

-
-
-
- -
-
-members
-

Whether guild member related events are enabled.

-

This corresponds to the following events:

- -

This also corresponds to the following attributes and classes in terms of cache:

- -

For more information go to the member intent documentation.

-
-

Note

-

Currently, this requires opting in explicitly via the developer portal as well. -Bots in over 100 guilds will need to apply to Discord for verification.

-
-
-
Type
-

bool

-
-
-
- -
-
-bans
-

Whether guild ban related events are enabled.

-

This corresponds to the following events:

- -

This does not correspond to any attributes or classes in the library in terms of cache.

-
-
Type
-

bool

-
-
-
- -
-
-emojis
-

Alias of emojis_and_stickers.

-
-

Changed in version 2.0: Changed to an alias.

-
-
-
Type
-

bool

-
-
-
- -
-
-emojis_and_stickers
-

Whether guild emoji and sticker related events are enabled.

-
-

New in version 2.0.

-
-

This corresponds to the following events:

- -

This also corresponds to the following attributes and classes in terms of cache:

- -
-
Type
-

bool

-
-
-
- -
-
-integrations
-

Whether guild integration related events are enabled.

-

This corresponds to the following events:

- -

This does not correspond to any attributes or classes in the library in terms of cache.

-
-
Type
-

bool

-
-
-
- -
-
-webhooks
-

Whether guild webhook related events are enabled.

-

This corresponds to the following events:

- -

This does not correspond to any attributes or classes in the library in terms of cache.

-
-
Type
-

bool

-
-
-
- -
-
-invites
-

Whether guild invite related events are enabled.

-

This corresponds to the following events:

- -

This does not correspond to any attributes or classes in the library in terms of cache.

-
-
Type
-

bool

-
-
-
- -
-
-voice_states
-

Whether guild voice state related events are enabled.

-

This corresponds to the following events:

- -

This also corresponds to the following attributes and classes in terms of cache:

- -
-

Note

-

This intent is required to connect to voice.

-
-
-
Type
-

bool

-
-
-
- -
-
-presences
-

Whether guild presence related events are enabled.

-

This corresponds to the following events:

- -

This also corresponds to the following attributes and classes in terms of cache:

- -

For more information go to the presence intent documentation.

-
-

Note

-

Currently, this requires opting in explicitly via the developer portal as well. -Bots in over 100 guilds will need to apply to Discord for verification.

-
-
-
Type
-

bool

-
-
-
- -
-
-messages
-

Whether guild and direct message related events are enabled.

-

This is a shortcut to set or get both guild_messages and dm_messages.

-

This corresponds to the following events:

- -

This also corresponds to the following attributes and classes in terms of cache:

- -

Note that due to an implicit relationship this also corresponds to the following events:

- -
-
Type
-

bool

-
-
-
- -
-
-guild_messages
-

Whether guild message related events are enabled.

-

See also dm_messages for DMs or messages for both.

-

This corresponds to the following events:

- -

This also corresponds to the following attributes and classes in terms of cache:

- -

Note that due to an implicit relationship this also corresponds to the following events:

- -
-
Type
-

bool

-
-
-
- -
-
-dm_messages
-

Whether direct message related events are enabled.

-

See also guild_messages for guilds or messages for both.

-

This corresponds to the following events:

- -

This also corresponds to the following attributes and classes in terms of cache:

- -

Note that due to an implicit relationship this also corresponds to the following events:

- -
-
Type
-

bool

-
-
-
- -
-
-reactions
-

Whether guild and direct message reaction related events are enabled.

-

This is a shortcut to set or get both guild_reactions and dm_reactions.

-

This corresponds to the following events:

- -

This also corresponds to the following attributes and classes in terms of cache:

- -
-
Type
-

bool

-
-
-
- -
-
-guild_reactions
-

Whether guild message reaction related events are enabled.

-

See also dm_reactions for DMs or reactions for both.

-

This corresponds to the following events:

- -

This also corresponds to the following attributes and classes in terms of cache:

- -
-
Type
-

bool

-
-
-
- -
-
-dm_reactions
-

Whether direct message reaction related events are enabled.

-

See also guild_reactions for guilds or reactions for both.

-

This corresponds to the following events:

- -

This also corresponds to the following attributes and classes in terms of cache:

- -
-
Type
-

bool

-
-
-
- -
-
-typing
-

Whether guild and direct message typing related events are enabled.

-

This is a shortcut to set or get both guild_typing and dm_typing.

-

This corresponds to the following events:

- -

This does not correspond to any attributes or classes in the library in terms of cache.

-
-
Type
-

bool

-
-
-
- -
-
-guild_typing
-

Whether guild and direct message typing related events are enabled.

-

See also dm_typing for DMs or typing for both.

-

This corresponds to the following events:

- -

This does not correspond to any attributes or classes in the library in terms of cache.

-
-
Type
-

bool

-
-
-
- -
-
-dm_typing
-

Whether guild and direct message typing related events are enabled.

-

See also guild_typing for guilds or typing for both.

-

This corresponds to the following events:

- -

This does not correspond to any attributes or classes in the library in terms of cache.

-
-
Type
-

bool

-
-
-
- -
- -
-
-

MemberCacheFlags

-
- -Attributes -
-
-class discord.MemberCacheFlags(**kwargs)
-

Controls the library’s cache policy when it comes to members.

-

This allows for finer grained control over what members are cached. -Note that the bot’s own member is always cached. This class is passed -to the member_cache_flags parameter in Client.

-

Due to a quirk in how Discord works, in order to ensure proper cleanup -of cache resources it is recommended to have Intents.members -enabled. Otherwise the library cannot know when a member leaves a guild and -is thus unable to cleanup after itself.

-

To construct an object you can pass keyword arguments denoting the flags -to enable or disable.

-

The default value is all flags enabled.

-
-

New in version 1.5.

-
-
-
-
-x == y
-

Checks if two flags are equal.

-
- -
-
-x != y
-

Checks if two flags are not equal.

-
- -
-
-hash(x)
-

Return the flag’s hash.

-
- -
-
-iter(x)
-

Returns an iterator of (name, value) pairs. This allows it -to be, for example, constructed as a dict or a list of pairs.

-
- -
-
-
-value
-

The raw value. You should query flags via the properties -rather than using this raw value.

-
-
Type
-

int

-
-
-
- -
-
-classmethod all()
-

A factory method that creates a MemberCacheFlags with everything enabled.

-
- -
-
-classmethod none()
-

A factory method that creates a MemberCacheFlags with everything disabled.

-
- -
-
-voice
-

Whether to cache members that are in voice.

-

This requires Intents.voice_states.

-

Members that leave voice are no longer cached.

-
-
Type
-

bool

-
-
-
- -
-
-joined
-

Whether to cache members that joined the guild -or are chunked as part of the initial log in flow.

-

This requires Intents.members.

-

Members that leave the guild are no longer cached.

-
-
Type
-

bool

-
-
-
- -
-
-classmethod from_intents(intents)
-

A factory method that creates a MemberCacheFlags based on -the currently selected Intents.

-
-
Parameters
-

intents (Intents) – The intents to select from.

-
-
Returns
-

The resulting member cache flags.

-
-
Return type
-

MemberCacheFlags

-
-
-
- -
- -
-
-

ApplicationFlags

-
-
-class discord.ApplicationFlags(**kwargs)
-

Wraps up the Discord Application flags.

-
-
-
-x == y
-

Checks if two ApplicationFlags are equal.

-
- -
-
-x != y
-

Checks if two ApplicationFlags are not equal.

-
- -
-
-hash(x)
-

Return the flag’s hash.

-
- -
-
-iter(x)
-

Returns an iterator of (name, value) pairs. This allows it -to be, for example, constructed as a dict or a list of pairs. -Note that aliases are not shown.

-
- -
-
-

New in version 2.0.

-
-
-
-value
-

The raw value. You should query flags via the properties -rather than using this raw value.

-
-
Type
-

int

-
-
-
- -
-
-gateway_presence
-

Returns True if the application is verified and is allowed to -receive presence information over the gateway.

-
-
Type
-

bool

-
-
-
- -
-
-gateway_presence_limited
-

Returns True if the application is allowed to receive limited -presence information over the gateway.

-
-
Type
-

bool

-
-
-
- -
-
-gateway_guild_members
-

Returns True if the application is verified and is allowed to -receive guild members information over the gateway.

-
-
Type
-

bool

-
-
-
- -
-
-gateway_guild_members_limited
-

Returns True if the application is allowed to receive limited -guild members information over the gateway.

-
-
Type
-

bool

-
-
-
- -
-
-verification_pending_guild_limit
-

Returns True if the application is currently pending verification -and has hit the guild limit.

-
-
Type
-

bool

-
-
-
- -
-
-embedded
-

Returns True if the application is embedded within the Discord client.

-
-
Type
-

bool

-
-
-
- -
- -
-
-

File

-
- -Attributes -
-
-class discord.File(fp, filename=None, *, spoiler=False)
-

A parameter object used for abc.Messageable.send() -for sending file objects.

-
-

Note

-

File objects are single use and are not meant to be reused in -multiple abc.Messageable.send()s.

-
-
-
-fp
-

A file-like object opened in binary mode and read mode -or a filename representing a file in the hard drive to -open.

-
-

Note

-

If the file-like object passed is opened via open then the -modes ‘rb’ should be used.

-

To pass binary data, consider usage of io.BytesIO.

-
-
-
Type
-

Union[os.PathLike, io.BufferedIOBase]

-
-
-
- -
-
-filename
-

The filename to display when uploading to Discord. -If this is not given then it defaults to fp.name or if fp is -a string then the filename will default to the string given.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-spoiler
-

Whether the attachment is a spoiler.

-
-
Type
-

bool

-
-
-
- -
- -
-
-

Colour

-
-
-class discord.Colour(value)
-

Represents a Discord role colour. This class is similar -to a (red, green, blue) tuple.

-

There is an alias for this called Color.

-
-
-
-x == y
-

Checks if two colours are equal.

-
- -
-
-x != y
-

Checks if two colours are not equal.

-
- -
-
-hash(x)
-

Return the colour’s hash.

-
- -
-
-str(x)
-

Returns the hex format for the colour.

-
- -
-
-int(x)
-

Returns the raw colour value.

-
- -
-
-
-value
-

The raw integer colour value.

-
-
Type
-

int

-
-
-
- -
-
-property r
-

Returns the red component of the colour.

-
-
Type
-

int

-
-
-
- -
-
-property g
-

Returns the green component of the colour.

-
-
Type
-

int

-
-
-
- -
-
-property b
-

Returns the blue component of the colour.

-
-
Type
-

int

-
-
-
- -
-
-to_rgb()
-

Tuple[int, int, int]: Returns an (r, g, b) tuple representing the colour.

-
- -
-
-classmethod from_rgb(r, g, b)
-

Constructs a Colour from an RGB tuple.

-
- -
-
-classmethod from_hsv(h, s, v)
-

Constructs a Colour from an HSV tuple.

-
- -
-
-classmethod default()
-

A factory method that returns a Colour with a value of 0.

-
- -
-
-classmethod random(*, seed=None)
-

A factory method that returns a Colour with a random hue.

-
-

Note

-

The random algorithm works by choosing a colour with a random hue but -with maxed out saturation and value.

-
-
-

New in version 1.6.

-
-
-
Parameters
-

seed (Optional[Union[int, str, float, bytes, bytearray]]) –

The seed to initialize the RNG with. If None is passed the default RNG is used.

-
-

New in version 1.7.

-
-

-
-
-
- -
-
-classmethod teal()
-

A factory method that returns a Colour with a value of 0x1abc9c.

-
- -
-
-classmethod dark_teal()
-

A factory method that returns a Colour with a value of 0x11806a.

-
- -
-
-classmethod brand_green()
-

A factory method that returns a Colour with a value of 0x57F287.

-
-

New in version 2.0.

-
-
- -
-
-classmethod green()
-

A factory method that returns a Colour with a value of 0x2ecc71.

-
- -
-
-classmethod dark_green()
-

A factory method that returns a Colour with a value of 0x1f8b4c.

-
- -
-
-classmethod blue()
-

A factory method that returns a Colour with a value of 0x3498db.

-
- -
-
-classmethod dark_blue()
-

A factory method that returns a Colour with a value of 0x206694.

-
- -
-
-classmethod purple()
-

A factory method that returns a Colour with a value of 0x9b59b6.

-
- -
-
-classmethod dark_purple()
-

A factory method that returns a Colour with a value of 0x71368a.

-
- -
-
-classmethod magenta()
-

A factory method that returns a Colour with a value of 0xe91e63.

-
- -
-
-classmethod dark_magenta()
-

A factory method that returns a Colour with a value of 0xad1457.

-
- -
-
-classmethod gold()
-

A factory method that returns a Colour with a value of 0xf1c40f.

-
- -
-
-classmethod dark_gold()
-

A factory method that returns a Colour with a value of 0xc27c0e.

-
- -
-
-classmethod orange()
-

A factory method that returns a Colour with a value of 0xe67e22.

-
- -
-
-classmethod dark_orange()
-

A factory method that returns a Colour with a value of 0xa84300.

-
- -
-
-classmethod brand_red()
-

A factory method that returns a Colour with a value of 0xED4245.

-
-

New in version 2.0.

-
-
- -
-
-classmethod red()
-

A factory method that returns a Colour with a value of 0xe74c3c.

-
- -
-
-classmethod nitro_booster()
-

A factory method that returns a Colour with a value of 0xf47fff.

-
-

New in version 2.0.

-
-
- -
-
-classmethod dark_red()
-

A factory method that returns a Colour with a value of 0x992d22.

-
- -
-
-classmethod lighter_grey()
-

A factory method that returns a Colour with a value of 0x95a5a6.

-
- -
-
-classmethod lighter_gray()
-

A factory method that returns a Colour with a value of 0x95a5a6.

-
- -
-
-classmethod dark_grey()
-

A factory method that returns a Colour with a value of 0x607d8b.

-
- -
-
-classmethod dark_gray()
-

A factory method that returns a Colour with a value of 0x607d8b.

-
- -
-
-classmethod light_grey()
-

A factory method that returns a Colour with a value of 0x979c9f.

-
- -
-
-classmethod light_gray()
-

A factory method that returns a Colour with a value of 0x979c9f.

-
- -
-
-classmethod darker_grey()
-

A factory method that returns a Colour with a value of 0x546e7a.

-
- -
-
-classmethod darker_gray()
-

A factory method that returns a Colour with a value of 0x546e7a.

-
- -
-
-classmethod og_blurple()
-

A factory method that returns a Colour with a value of 0x7289da.

-
- -
-
-classmethod blurple()
-

A factory method that returns a Colour with a value of 0x5865F2.

-
- -
-
-classmethod greyple()
-

A factory method that returns a Colour with a value of 0x99aab5.

-
- -
-
-classmethod dark_theme()
-

A factory method that returns a Colour with a value of 0x36393F. -This will appear transparent on Discord’s dark theme.

-
-

New in version 1.5.

-
-
- -
-
-classmethod fuchsia()
-

A factory method that returns a Colour with a value of 0xEB459E.

-
-

New in version 2.0.

-
-
- -
-
-classmethod yellow()
-

A factory method that returns a Colour with a value of 0xFEE75C.

-
-

New in version 2.0.

-
-
- -
-
-classmethod dark_blurple()
-

A factory method that returns a Colour with a value of 0x4E5D94. -This is the original Dark Blurple branding.

-
-

New in version 2.0.

-
-
- -
- -
-
-

BaseActivity

-
- -Attributes -
-
-class discord.BaseActivity(**kwargs)
-

The base activity that all user-settable activities inherit from. -A user-settable activity is one that can be used in Client.change_presence().

-

The following types currently count as user-settable:

- -

Note that although these types are considered user-settable by the library, -Discord typically ignores certain combinations of activity depending on -what is currently set. This behaviour may change in the future so there are -no guarantees on whether Discord will actually let you set these types.

-
-

New in version 1.3.

-
-
-
-property created_at
-

When the user started doing this activity in UTC.

-
-

New in version 1.3.

-
-
-
Type
-

Optional[datetime.datetime]

-
-
-
- -
- -
-
-

Activity

-
-
-class discord.Activity(**kwargs)
-

Represents an activity in Discord.

-

This could be an activity such as streaming, playing, listening -or watching.

-

For memory optimisation purposes, some activities are offered in slimmed -down versions:

- -
-
-application_id
-

The application ID of the game.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-name
-

The name of the activity.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-url
-

A stream URL that the activity could be doing.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-type
-

The type of activity currently being done.

-
-
Type
-

ActivityType

-
-
-
- -
-
-state
-

The user’s current state. For example, “In Game”.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-details
-

The detail of the user’s current activity.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-timestamps
-

A dictionary of timestamps. It contains the following optional keys:

-
    -
  • start: Corresponds to when the user started doing the -activity in milliseconds since Unix epoch.

  • -
  • end: Corresponds to when the user will finish doing the -activity in milliseconds since Unix epoch.

  • -
-
-
Type
-

dict

-
-
-
- -
-
-assets
-

A dictionary representing the images and their hover text of an activity. -It contains the following optional keys:

-
    -
  • large_image: A string representing the ID for the large image asset.

  • -
  • large_text: A string representing the text when hovering over the large image asset.

  • -
  • small_image: A string representing the ID for the small image asset.

  • -
  • small_text: A string representing the text when hovering over the small image asset.

  • -
-
-
Type
-

dict

-
-
-
- -
-
-party
-

A dictionary representing the activity party. It contains the following optional keys:

-
    -
  • id: A string representing the party ID.

  • -
  • size: A list of up to two integer elements denoting (current_size, maximum_size).

  • -
-
-
Type
-

dict

-
-
-
- -
-
-buttons
-

An list of dictionaries representing custom buttons shown in a rich presence. -Each dictionary contains the following keys:

-
    -
  • label: A string representing the text shown on the button.

  • -
  • url: A string representing the URL opened upon clicking the button.

  • -
-
-

New in version 2.0.

-
-
-
Type
-

List[dict]

-
-
-
- -
-
-emoji
-

The emoji that belongs to this activity.

-
-
Type
-

Optional[PartialEmoji]

-
-
-
- -
-
-property start
-

When the user started doing this activity in UTC, if applicable.

-
-
Type
-

Optional[datetime.datetime]

-
-
-
- -
-
-property end
-

When the user will stop doing this activity in UTC, if applicable.

-
-
Type
-

Optional[datetime.datetime]

-
-
-
- -
-
-property large_image_url
-

Returns a URL pointing to the large image asset of this activity if applicable.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-property small_image_url
-

Returns a URL pointing to the small image asset of this activity if applicable.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-property large_image_text
-

Returns the large image asset hover text of this activity if applicable.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-property small_image_text
-

Returns the small image asset hover text of this activity if applicable.

-
-
Type
-

Optional[str]

-
-
-
- -
- -
-
-

Game

-
- -Attributes -
-
-class discord.Game(name, **extra)
-

A slimmed down version of Activity that represents a Discord game.

-

This is typically displayed via Playing on the official Discord client.

-
-
-
-x == y
-

Checks if two games are equal.

-
- -
-
-x != y
-

Checks if two games are not equal.

-
- -
-
-hash(x)
-

Returns the game’s hash.

-
- -
-
-str(x)
-

Returns the game’s name.

-
- -
-
-
Parameters
-

name (str) – The game’s name.

-
-
-
-
-name
-

The game’s name.

-
-
Type
-

str

-
-
-
- -
-
-property type
-

Returns the game’s type. This is for compatibility with Activity.

-

It always returns ActivityType.playing.

-
-
Type
-

ActivityType

-
-
-
- -
-
-property start
-

When the user started playing this game in UTC, if applicable.

-
-
Type
-

Optional[datetime.datetime]

-
-
-
- -
-
-property end
-

When the user will stop playing this game in UTC, if applicable.

-
-
Type
-

Optional[datetime.datetime]

-
-
-
- -
- -
-
-

Streaming

-
- -Attributes -
-
-class discord.Streaming(*, name, url, **extra)
-

A slimmed down version of Activity that represents a Discord streaming status.

-

This is typically displayed via Streaming on the official Discord client.

-
-
-
-x == y
-

Checks if two streams are equal.

-
- -
-
-x != y
-

Checks if two streams are not equal.

-
- -
-
-hash(x)
-

Returns the stream’s hash.

-
- -
-
-str(x)
-

Returns the stream’s name.

-
- -
-
-
-platform
-

Where the user is streaming from (ie. YouTube, Twitch).

-
-

New in version 1.3.

-
-
-
Type
-

Optional[str]

-
-
-
- -
-
-name
-

The stream’s name.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-details
-

An alias for name

-
-
Type
-

Optional[str]

-
-
-
- -
-
-game
-

The game being streamed.

-
-

New in version 1.3.

-
-
-
Type
-

Optional[str]

-
-
-
- -
-
-url
-

The stream’s URL.

-
-
Type
-

str

-
-
-
- -
-
-assets
-

A dictionary comprising of similar keys than those in Activity.assets.

-
-
Type
-

dict

-
-
-
- -
-
-property type
-

Returns the game’s type. This is for compatibility with Activity.

-

It always returns ActivityType.streaming.

-
-
Type
-

ActivityType

-
-
-
- -
-
-property twitch_name
-

If provided, the twitch name of the user streaming.

-

This corresponds to the large_image key of the Streaming.assets -dictionary if it starts with twitch:. Typically set by the Discord client.

-
-
Type
-

Optional[str]

-
-
-
- -
- -
-
-

CustomActivity

-
- -Attributes -
-
-class discord.CustomActivity(name, *, emoji=None, **extra)
-

Represents a Custom activity from Discord.

-
-
-
-x == y
-

Checks if two activities are equal.

-
- -
-
-x != y
-

Checks if two activities are not equal.

-
- -
-
-hash(x)
-

Returns the activity’s hash.

-
- -
-
-str(x)
-

Returns the custom status text.

-
- -
-
-

New in version 1.3.

-
-
-
-name
-

The custom activity’s name.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-emoji
-

The emoji to pass to the activity, if any.

-
-
Type
-

Optional[PartialEmoji]

-
-
-
- -
-
-property type
-

Returns the activity’s type. This is for compatibility with Activity.

-

It always returns ActivityType.custom.

-
-
Type
-

ActivityType

-
-
-
- -
- -
-
-

Permissions

-
-
-class discord.Permissions(permissions=0, **kwargs)
-

Wraps up the Discord permission value.

-

The properties provided are two way. You can set and retrieve individual -bits using the properties as if they were regular bools. This allows -you to edit permissions.

-
-

Changed in version 1.3: You can now use keyword arguments to initialize Permissions -similar to update().

-
-
-
-
-x == y
-

Checks if two permissions are equal.

-
- -
-
-x != y
-

Checks if two permissions are not equal.

-
- -
-
-x <= y
-

Checks if a permission is a subset of another permission.

-
- -
-
-x >= y
-

Checks if a permission is a superset of another permission.

-
- -
-
-x < y
-

Checks if a permission is a strict subset of another permission.

-
- -
-
-x > y
-

Checks if a permission is a strict superset of another permission.

-
- -
-
-hash(x)
-

Return the permission’s hash.

-
- -
-
-iter(x)
-

Returns an iterator of (perm, value) pairs. This allows it -to be, for example, constructed as a dict or a list of pairs. -Note that aliases are not shown.

-
- -
-
-
-value
-

The raw value. This value is a bit array field of a 53-bit integer -representing the currently available permissions. You should query -permissions via the properties rather than using this raw value.

-
-
Type
-

int

-
-
-
- -
-
-is_subset(other)
-

Returns True if self has the same or fewer permissions as other.

-
- -
-
-is_superset(other)
-

Returns True if self has the same or more permissions as other.

-
- -
-
-is_strict_subset(other)
-

Returns True if the permissions on other are a strict subset of those on self.

-
- -
-
-is_strict_superset(other)
-

Returns True if the permissions on other are a strict superset of those on self.

-
- -
-
-classmethod none()
-

A factory method that creates a Permissions with all -permissions set to False.

-
- -
-
-classmethod all()
-

A factory method that creates a Permissions with all -permissions set to True.

-
- -
-
-classmethod all_channel()
-

A Permissions with all channel-specific permissions set to -True and the guild-specific ones set to False. The guild-specific -permissions are currently:

- -
-

Changed in version 1.7: Added stream, priority_speaker and use_slash_commands permissions.

-
- -
- -
-
-classmethod general()
-

A factory method that creates a Permissions with all -“General” permissions from the official Discord UI set to True.

-
-

Changed in version 1.7: Permission read_messages is now included in the general permissions, but -permissions administrator, create_instant_invite, kick_members, -ban_members, change_nickname and manage_nicknames are -no longer part of the general permissions.

-
-
- -
-
-classmethod membership()
-

A factory method that creates a Permissions with all -“Membership” permissions from the official Discord UI set to True.

-
-

New in version 1.7.

-
-
- -
-
-classmethod text()
-

A factory method that creates a Permissions with all -“Text” permissions from the official Discord UI set to True.

-
-

Changed in version 1.7: Permission read_messages is no longer part of the text permissions. -Added use_slash_commands permission.

-
- -
- -
-
-classmethod voice()
-

A factory method that creates a Permissions with all -“Voice” permissions from the official Discord UI set to True.

-
- -
-
-classmethod stage()
-

A factory method that creates a Permissions with all -“Stage Channel” permissions from the official Discord UI set to True.

-
-

New in version 1.7.

-
-
- -
-
-classmethod stage_moderator()
-

A factory method that creates a Permissions with all -“Stage Moderator” permissions from the official Discord UI set to True.

-
-

New in version 1.7.

-
-
- -
-
-classmethod advanced()
-

A factory method that creates a Permissions with all -“Advanced” permissions from the official Discord UI set to True.

-
-

New in version 1.7.

-
-
- -
-
-update(**kwargs)
-

Bulk updates this permission object.

-

Allows you to set multiple attributes by using keyword -arguments. The names must be equivalent to the properties -listed. Extraneous key/value pairs will be silently ignored.

-
-
Parameters
-

**kwargs – A list of key/value pairs to bulk update permissions with.

-
-
-
- -
-
-create_instant_invite
-

Returns True if the user can create instant invites.

-
-
Type
-

bool

-
-
-
- -
-
-kick_members
-

Returns True if the user can kick users from the guild.

-
-
Type
-

bool

-
-
-
- -
-
-ban_members
-

Returns True if a user can ban users from the guild.

-
-
Type
-

bool

-
-
-
- -
-
-administrator
-

Returns True if a user is an administrator. This role overrides all other permissions.

-

This also bypasses all channel-specific overrides.

-
-
Type
-

bool

-
-
-
- -
-
-admin
-

An alias for administrator. -.. versionadded:: 2.0

-
-
Type
-

bool

-
-
-
- -
-
-manage_channels
-

Returns True if a user can edit, delete, or create channels in the guild.

-

This also corresponds to the “Manage Channel” channel-specific override.

-
-
Type
-

bool

-
-
-
- -
-
-manage_guild
-

Returns True if a user can edit guild properties.

-
-
Type
-

bool

-
-
-
- -
-
-add_reactions
-

Returns True if a user can add reactions to messages.

-
-
Type
-

bool

-
-
-
- -
-
-view_audit_log
-

Returns True if a user can view the guild’s audit log.

-
-
Type
-

bool

-
-
-
- -
-
-priority_speaker
-

Returns True if a user can be more easily heard while talking.

-
-
Type
-

bool

-
-
-
- -
-
-stream
-

Returns True if a user can stream in a voice channel.

-
-
Type
-

bool

-
-
-
- -
-
-read_messages
-

Returns True if a user can read messages from all or specific text channels.

-
-
Type
-

bool

-
-
-
- -
-
-view_channel
-

An alias for read_messages.

-
-

New in version 1.3.

-
-
-
Type
-

bool

-
-
-
- -
-
-send_messages
-

Returns True if a user can send messages from all or specific text channels.

-
-
Type
-

bool

-
-
-
- -
-
-send_tts_messages
-

Returns True if a user can send TTS messages from all or specific text channels.

-
-
Type
-

bool

-
-
-
- -
-
-manage_messages
-

Returns True if a user can delete or pin messages in a text channel.

-
-

Note

-

Note that there are currently no ways to edit other people’s messages.

-
-
-
Type
-

bool

-
-
-
- -
- -

Returns True if a user’s messages will automatically be embedded by Discord.

-
-
Type
-

bool

-
-
-
- -
-
-attach_files
-

Returns True if a user can send files in their messages.

-
-
Type
-

bool

-
-
-
- -
-
-read_message_history
-

Returns True if a user can read a text channel’s previous messages.

-
-
Type
-

bool

-
-
-
- -
-
-mention_everyone
-

Returns True if a user’s @everyone or @here will mention everyone in the text channel.

-
-
Type
-

bool

-
-
-
- -
-
-external_emojis
-

Returns True if a user can use emojis from other guilds.

-
-
Type
-

bool

-
-
-
- -
-
-use_external_emojis
-

An alias for external_emojis.

-
-

New in version 1.3.

-
-
-
Type
-

bool

-
-
-
- -
-
-view_guild_insights
-

Returns True if a user can view the guild’s insights.

-
-

New in version 1.3.

-
-
-
Type
-

bool

-
-
-
- -
-
-connect
-

Returns True if a user can connect to a voice channel.

-
-
Type
-

bool

-
-
-
- -
-
-speak
-

Returns True if a user can speak in a voice channel.

-
-
Type
-

bool

-
-
-
- -
-
-mute_members
-

Returns True if a user can mute other users.

-
-
Type
-

bool

-
-
-
- -
-
-deafen_members
-

Returns True if a user can deafen other users.

-
-
Type
-

bool

-
-
-
- -
-
-move_members
-

Returns True if a user can move users between other voice channels.

-
-
Type
-

bool

-
-
-
- -
-
-use_voice_activation
-

Returns True if a user can use voice activation in voice channels.

-
-
Type
-

bool

-
-
-
- -
-
-change_nickname
-

Returns True if a user can change their nickname in the guild.

-
-
Type
-

bool

-
-
-
- -
-
-manage_nicknames
-

Returns True if a user can change other user’s nickname in the guild.

-
-
Type
-

bool

-
-
-
- -
-
-manage_roles
-

Returns True if a user can create or edit roles less than their role’s position.

-

This also corresponds to the “Manage Permissions” channel-specific override.

-
-
Type
-

bool

-
-
-
- -
-
-manage_permissions
-

An alias for manage_roles.

-
-

New in version 1.3.

-
-
-
Type
-

bool

-
-
-
- -
-
-manage_webhooks
-

Returns True if a user can create, edit, or delete webhooks.

-
-
Type
-

bool

-
-
-
- -
-
-manage_emojis
-

Returns True if a user can create, edit, or delete emojis.

-
-
Type
-

bool

-
-
-
- -
-
-manage_emojis_and_stickers
-

An alias for manage_emojis.

-
-

New in version 2.0.

-
-
-
Type
-

bool

-
-
-
- -
-
-use_slash_commands
-

Returns True if a user can use slash commands.

-
-

New in version 1.7.

-
-
-
Type
-

bool

-
-
-
- -
-
-request_to_speak
-

Returns True if a user can request to speak in a stage channel.

-
-

New in version 1.7.

-
-
-
Type
-

bool

-
-
-
- -
-
-manage_events
-

Returns True if a user can manage guild events.

-
-

New in version 2.0.

-
-
-
Type
-

bool

-
-
-
- -
-
-manage_threads
-

Returns True if a user can manage threads.

-
-

New in version 2.0.

-
-
-
Type
-

bool

-
-
-
- -
-
-create_public_threads
-

Returns True if a user can create public threads.

-
-

New in version 2.0.

-
-
-
Type
-

bool

-
-
-
- -
-
-create_private_threads
-

Returns True if a user can create private threads.

-
-

New in version 2.0.

-
-
-
Type
-

bool

-
-
-
- -
-
-external_stickers
-

Returns True if a user can use stickers from other guilds.

-
-

New in version 2.0.

-
-
-
Type
-

bool

-
-
-
- -
-
-use_external_stickers
-

An alias for external_stickers.

-
-

New in version 2.0.

-
-
-
Type
-

bool

-
-
-
- -
-
-send_messages_in_threads
-

Returns True if a user can send messages in threads.

-
-

New in version 2.0.

-
-
-
Type
-

bool

-
-
-
- -
- -
-
-

PermissionOverwrite

-
- -Methods -
-
-class discord.PermissionOverwrite(**kwargs)
-

A type that is used to represent a channel specific permission.

-

Unlike a regular Permissions, the default value of a -permission is equivalent to None and not False. Setting -a value to False is explicitly denying that permission, -while setting a value to True is explicitly allowing -that permission.

-

The values supported by this are the same as Permissions -with the added possibility of it being set to None.

-
-
-
-x == y
-

Checks if two overwrites are equal.

-
- -
-
-x != y
-

Checks if two overwrites are not equal.

-
- -
-
-iter(x)
-

Returns an iterator of (perm, value) pairs. This allows it -to be, for example, constructed as a dict or a list of pairs. -Note that aliases are not shown.

-
- -
-
-
Parameters
-

**kwargs – Set the value of permissions by their name.

-
-
-
-
-pair()
-

Tuple[Permissions, Permissions]: Returns the (allow, deny) pair from this overwrite.

-
- -
-
-classmethod from_pair(allow, deny)
-

Creates an overwrite from an allow/deny pair of Permissions.

-
- -
-
-is_empty()
-

Checks if the permission overwrite is currently empty.

-

An empty permission overwrite is one that has no overwrites set -to True or False.

-
-
Returns
-

Indicates if the overwrite is empty.

-
-
Return type
-

bool

-
-
-
- -
-
-update(**kwargs)
-

Bulk updates this permission overwrite object.

-

Allows you to set multiple attributes by using keyword -arguments. The names must be equivalent to the properties -listed. Extraneous key/value pairs will be silently ignored.

-
-
Parameters
-

**kwargs – A list of key/value pairs to bulk update with.

-
-
-
- -
- -
-
-

ShardInfo

-
- -Attributes -
- -Methods -
-
-class discord.ShardInfo
-

A class that gives information and control over a specific shard.

-

You can retrieve this object via AutoShardedClient.get_shard() -or AutoShardedClient.shards.

-
-

New in version 1.4.

-
-
-
-id
-

The shard ID for this shard.

-
-
Type
-

int

-
-
-
- -
-
-shard_count
-

The shard count for this cluster. If this is None then the bot has not started yet.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-is_closed()
-

bool: Whether the shard connection is currently closed.

-
- -
-
-await disconnect()
-

This function is a coroutine.

-

Disconnects a shard. When this is called, the shard connection will no -longer be open.

-

If the shard is already disconnected this does nothing.

-
- -
-
-await reconnect()
-

This function is a coroutine.

-

Disconnects and then connects the shard again.

-
- -
-
-await connect()
-

This function is a coroutine.

-

Connects a shard. If the shard is already connected this does nothing.

-
- -
-
-property latency
-

Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard.

-
-
Type
-

float

-
-
-
- -
-
-is_ws_ratelimited()
-

bool: Whether the websocket is currently rate limited.

-

This can be useful to know when deciding whether you should query members -using HTTP or via the gateway.

-
-

New in version 1.6.

-
-
- -
- -
-
-

SystemChannelFlags

-
-
-class discord.SystemChannelFlags
-

Wraps up a Discord system channel flag value.

-

Similar to Permissions, the properties provided are two way. -You can set and retrieve individual bits using the properties as if they -were regular bools. This allows you to edit the system flags easily.

-

To construct an object you can pass keyword arguments denoting the flags -to enable or disable.

-
-
-
-x == y
-

Checks if two flags are equal.

-
- -
-
-x != y
-

Checks if two flags are not equal.

-
- -
-
-hash(x)
-

Return the flag’s hash.

-
- -
-
-iter(x)
-

Returns an iterator of (name, value) pairs. This allows it -to be, for example, constructed as a dict or a list of pairs.

-
- -
-
-
-value
-

The raw value. This value is a bit array field of a 53-bit integer -representing the currently available flags. You should query -flags via the properties rather than using this raw value.

-
-
Type
-

int

-
-
-
- -
-
-join_notifications
-

Returns True if the system channel is used for member join notifications.

-
-
Type
-

bool

-
-
-
- -
-
-premium_subscriptions
-

Returns True if the system channel is used for “Nitro boosting” notifications.

-
-
Type
-

bool

-
-
-
- -
-
-guild_reminder_notifications
-

Returns True if the system channel is used for server setup helpful tips notifications.

-
-

New in version 2.0.

-
-
-
Type
-

bool

-
-
-
- -
- -
-
-

MessageFlags

-
-
-class discord.MessageFlags
-

Wraps up a Discord Message flag value.

-

See SystemChannelFlags.

-
-
-
-x == y
-

Checks if two flags are equal.

-
- -
-
-x != y
-

Checks if two flags are not equal.

-
- -
-
-hash(x)
-

Return the flag’s hash.

-
- -
-
-iter(x)
-

Returns an iterator of (name, value) pairs. This allows it -to be, for example, constructed as a dict or a list of pairs.

-
- -
-
-

New in version 1.3.

-
-
-
-value
-

The raw value. This value is a bit array field of a 53-bit integer -representing the currently available flags. You should query -flags via the properties rather than using this raw value.

-
-
Type
-

int

-
-
-
- -
-
-crossposted
-

Returns True if the message is the original crossposted message.

-
-
Type
-

bool

-
-
-
- -
-
-is_crossposted
-

Returns True if the message was crossposted from another channel.

-
-
Type
-

bool

-
-
-
- -
-
-suppress_embeds
-

Returns True if the message’s embeds have been suppressed.

-
-
Type
-

bool

-
-
-
- -
-
-source_message_deleted
-

Returns True if the source message for this crosspost has been deleted.

-
-
Type
-

bool

-
-
-
- -
-
-urgent
-

Returns True if the source message is an urgent message.

-

An urgent message is one sent by Discord Trust and Safety.

-
-
Type
-

bool

-
-
-
- -
-
-has_thread
-

Returns True if the source message is associated with a thread.

-
-

New in version 2.0.

-
-
-
Type
-

bool

-
-
-
- -
-
-ephemeral
-

Returns True if the source message is ephemeral.

-
-

New in version 2.0.

-
-
-
Type
-

bool

-
-
-
- -
- -
-
-

PublicUserFlags

-
-
-class discord.PublicUserFlags
-

Wraps up the Discord User Public flags.

-
-
-
-x == y
-

Checks if two PublicUserFlags are equal.

-
- -
-
-x != y
-

Checks if two PublicUserFlags are not equal.

-
- -
-
-hash(x)
-

Return the flag’s hash.

-
- -
-
-iter(x)
-

Returns an iterator of (name, value) pairs. This allows it -to be, for example, constructed as a dict or a list of pairs. -Note that aliases are not shown.

-
- -
-
-

New in version 1.4.

-
-
-
-value
-

The raw value. This value is a bit array field of a 53-bit integer -representing the currently available flags. You should query -flags via the properties rather than using this raw value.

-
-
Type
-

int

-
-
-
- -
-
-staff
-

Returns True if the user is a Discord Employee.

-
-
Type
-

bool

-
-
-
- -
-
-partner
-

Returns True if the user is a Discord Partner.

-
-
Type
-

bool

-
-
-
- -
-
-hypesquad
-

Returns True if the user is a HypeSquad Events member.

-
-
Type
-

bool

-
-
-
- -
-
-bug_hunter
-

Returns True if the user is a Bug Hunter

-
-
Type
-

bool

-
-
-
- -
-
-hypesquad_bravery
-

Returns True if the user is a HypeSquad Bravery member.

-
-
Type
-

bool

-
-
-
- -
-
-hypesquad_brilliance
-

Returns True if the user is a HypeSquad Brilliance member.

-
-
Type
-

bool

-
-
-
- -
-
-hypesquad_balance
-

Returns True if the user is a HypeSquad Balance member.

-
-
Type
-

bool

-
-
-
- -
-
-early_supporter
-

Returns True if the user is an Early Supporter.

-
-
Type
-

bool

-
-
-
- -
-
-team_user
-

Returns True if the user is a Team User.

-
-
Type
-

bool

-
-
-
- -
-
-system
-

Returns True if the user is a system user (i.e. represents Discord officially).

-
-
Type
-

bool

-
-
-
- -
-
-bug_hunter_level_2
-

Returns True if the user is a Bug Hunter Level 2

-
-
Type
-

bool

-
-
-
- -
-
-verified_bot
-

Returns True if the user is a Verified Bot.

-
-
Type
-

bool

-
-
-
- -
-
-verified_bot_developer
-

Returns True if the user is an Early Verified Bot Developer.

-
-
Type
-

bool

-
-
-
- -
-
-early_verified_bot_developer
-

An alias for verified_bot_developer.

-
-

New in version 1.5.

-
-
-
Type
-

bool

-
-
-
- -
-
-discord_certified_moderator
-

Returns True if the user is a Discord Certified Moderator.

-
-

New in version 2.0.

-
-
-
Type
-

bool

-
-
-
- -
-
-all()
-

List[UserFlags]: Returns all public flags the user has.

-
- -
- -
-
-
-

Bot UI Kit

-

The library has helpers to help create component-based UIs.

-
-

View

-
- -Attributes -
- -Methods -
-
-class discord.ui.View(*, timeout=180.0)
-

Represents a UI view.

-

This object must be inherited to create a UI within Discord.

-
-

New in version 2.0.

-
-
-
Parameters
-

timeout (Optional[float]) – Timeout in seconds from last interaction with the UI before no longer accepting input. -If None then there is no timeout.

-
-
-
-
-timeout
-

Timeout from last interaction with the UI before no longer accepting input. -If None then there is no timeout.

-
-
Type
-

Optional[float]

-
-
-
- -
-
-children
-

The list of children attached to this view.

-
-
Type
-

List[Item]

-
-
-
- -
-
-classmethod from_message(message, /, *, timeout=180.0)
-

Converts a message’s components into a View.

-

The Message.components of a message are read-only -and separate types from those in the discord.ui namespace. -In order to modify and edit message components they must be -converted into a View first.

-
-
Parameters
-
    -
  • message (discord.Message) – The message with components to convert into a view.

  • -
  • timeout (Optional[float]) – The timeout of the converted view.

  • -
-
-
Returns
-

The converted view. This always returns a View and not -one of its subclasses.

-
-
Return type
-

View

-
-
-
- -
-
-add_item(item)
-

Adds an item to the view.

-
-
Parameters
-

item (Item) – The item to add to the view.

-
-
Raises
-
    -
  • TypeError – An Item was not passed.

  • -
  • ValueError – Maximum number of children has been exceeded (25) - or the row the item is trying to be added to is full.

  • -
-
-
-
- -
-
-remove_item(item)
-

Removes an item from the view.

-
-
Parameters
-

item (Item) – The item to remove from the view.

-
-
-
- -
-
-clear_items()
-

Removes all items from the view.

-
- -
-
-await interaction_check(interaction)
-

This function is a coroutine.

-

A callback that is called when an interaction happens within the view -that checks whether the view should process item callbacks for the interaction.

-

This is useful to override if, for example, you want to ensure that the -interaction author is a given user.

-

The default implementation of this returns True.

-
-

Note

-

If an exception occurs within the body then the check -is considered a failure and on_error() is called.

-
-
-
Parameters
-

interaction (Interaction) – The interaction that occurred.

-
-
Returns
-

Whether the view children’s callbacks should be called.

-
-
Return type
-

bool

-
-
-
- -
-
-await on_timeout()
-

This function is a coroutine.

-

A callback that is called when a view’s timeout elapses without being explicitly stopped.

-
- -
-
-await on_error(error, item, interaction)
-

This function is a coroutine.

-

A callback that is called when an item’s callback or interaction_check() -fails with an error.

-

The default implementation prints the traceback to stderr.

-
-
Parameters
-
    -
  • error (Exception) – The exception that was raised.

  • -
  • item (Item) – The item that failed the dispatch.

  • -
  • interaction (Interaction) – The interaction that led to the failure.

  • -
-
-
-
- -
-
-stop()
-

Stops listening to interaction events from this view.

-

This operation cannot be undone.

-
- -
-
-is_finished()
-

bool: Whether the view has finished interacting.

-
- -
-
-is_dispatching()
-

bool: Whether the view has been added for dispatching purposes.

-
- -
-
-is_persistent()
-

bool: Whether the view is set up as persistent.

-

A persistent view has all their components with a set custom_id and -a timeout set to None.

-
- -
-
-await wait()
-

Waits until the view has finished interacting.

-

A view is considered finished when stop() is called -or it times out.

-
-
Returns
-

If True, then the view timed out. If False then -the view finished normally.

-
-
Return type
-

bool

-
-
-
- -
- -
-
-

Item

-
- -Attributes -
- -Methods -
-
-class discord.ui.Item
-

Represents the base UI item that all UI components inherit from.

-

The current UI items supported are:

- -
-

New in version 2.0.

-
-
-
-property view
-

The underlying view for this item.

-
-
Type
-

Optional[View]

-
-
-
- -
-
-await callback(interaction)
-

This function is a coroutine.

-

The callback associated with this UI item.

-

This can be overriden by subclasses.

-
-
Parameters
-

interaction (Interaction) – The interaction that triggered this UI item.

-
-
-
- -
- -
-
-

Button

-
- -Attributes -
- -Methods -
-
-class discord.ui.Button(*, style=<ButtonStyle.secondary: 2>, label=None, disabled=False, custom_id=None, url=None, emoji=None, row=None)
-

Represents a UI button.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • style (discord.ButtonStyle) – The style of the button.

  • -
  • custom_id (Optional[str]) – The ID of the button that gets received during an interaction. -If this button is for a URL, it does not have a custom ID.

  • -
  • url (Optional[str]) – The URL this button sends you to.

  • -
  • disabled (bool) – Whether the button is disabled or not.

  • -
  • label (Optional[str]) – The label of the button, if any.

  • -
  • emoji (Optional[Union[PartialEmoji, Emoji, str]]) – The emoji of the button, if available.

  • -
  • row (Optional[int]) – The relative row this button belongs to. A Discord component can only have 5 -rows. By default, items are arranged automatically into those 5 rows. If you’d -like to control the relative positioning of the row then passing an index is advised. -For example, row=1 will show up before row=2. Defaults to None, which is automatic -ordering. The row number must be between 0 and 4 (i.e. zero indexed).

  • -
-
-
-
-
-property style
-

The style of the button.

-
-
Type
-

discord.ButtonStyle

-
-
-
- -
-
-property custom_id
-

The ID of the button that gets received during an interaction.

-

If this button is for a URL, it does not have a custom ID.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-property url
-

The URL this button sends you to.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-property disabled
-

Whether the button is disabled or not.

-
-
Type
-

bool

-
-
-
- -
-
-property label
-

The label of the button, if available.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-property emoji
-

The emoji of the button, if available.

-
-
Type
-

Optional[PartialEmoji]

-
-
-
- -
-
-await callback(interaction)
-

This function is a coroutine.

-

The callback associated with this UI item.

-

This can be overriden by subclasses.

-
-
Parameters
-

interaction (Interaction) – The interaction that triggered this UI item.

-
-
-
- -
-
-property view
-

The underlying view for this item.

-
-
Type
-

Optional[View]

-
-
-
- -
- -
-
-discord.ui.button(*, label=None, custom_id=None, disabled=False, style=<ButtonStyle.secondary: 2>, emoji=None, row=None)
-

A decorator that attaches a button to a component.

-

The function being decorated should have three parameters, self representing -the discord.ui.View, the discord.ui.Button being pressed and -the discord.Interaction you receive.

-
-

Note

-

Buttons with a URL cannot be created with this function. -Consider creating a Button manually instead. -This is because buttons with a URL do not have a callback -associated with them since Discord does not do any processing -with it.

-
-
-
Parameters
-
    -
  • label (Optional[str]) – The label of the button, if any.

  • -
  • custom_id (Optional[str]) – The ID of the button that gets received during an interaction. -It is recommended not to set this parameter to prevent conflicts.

  • -
  • style (ButtonStyle) – The style of the button. Defaults to ButtonStyle.grey.

  • -
  • disabled (bool) – Whether the button is disabled or not. Defaults to False.

  • -
  • emoji (Optional[Union[str, Emoji, PartialEmoji]]) – The emoji of the button. This can be in string form or a PartialEmoji -or a full Emoji.

  • -
  • row (Optional[int]) – The relative row this button belongs to. A Discord component can only have 5 -rows. By default, items are arranged automatically into those 5 rows. If you’d -like to control the relative positioning of the row then passing an index is advised. -For example, row=1 will show up before row=2. Defaults to None, which is automatic -ordering. The row number must be between 0 and 4 (i.e. zero indexed).

  • -
-
-
-
- -
-
-

Select

-
- -Methods -
-
-class discord.ui.Select(*, custom_id=..., placeholder=None, min_values=1, max_values=1, options=..., disabled=False, row=None)
-

Represents a UI select menu.

-

This is usually represented as a drop down menu.

-

In order to get the selected items that the user has chosen, use Select.values.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • custom_id (str) – The ID of the select menu that gets received during an interaction. -If not given then one is generated for you.

  • -
  • placeholder (Optional[str]) – The placeholder text that is shown if nothing is selected, if any.

  • -
  • min_values (int) – The minimum number of items that must be chosen for this select menu. -Defaults to 1 and must be between 1 and 25.

  • -
  • max_values (int) – The maximum number of items that must be chosen for this select menu. -Defaults to 1 and must be between 1 and 25.

  • -
  • options (List[discord.SelectOption]) – A list of options that can be selected in this menu.

  • -
  • disabled (bool) – Whether the select is disabled or not.

  • -
  • row (Optional[int]) – The relative row this select menu belongs to. A Discord component can only have 5 -rows. By default, items are arranged automatically into those 5 rows. If you’d -like to control the relative positioning of the row then passing an index is advised. -For example, row=1 will show up before row=2. Defaults to None, which is automatic -ordering. The row number must be between 0 and 4 (i.e. zero indexed).

  • -
-
-
-
-
-property custom_id
-

The ID of the select menu that gets received during an interaction.

-
-
Type
-

str

-
-
-
- -
-
-property placeholder
-

The placeholder text that is shown if nothing is selected, if any.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-property min_values
-

The minimum number of items that must be chosen for this select menu.

-
-
Type
-

int

-
-
-
- -
-
-property max_values
-

The maximum number of items that must be chosen for this select menu.

-
-
Type
-

int

-
-
-
- -
-
-property options
-

A list of options that can be selected in this menu.

-
-
Type
-

List[discord.SelectOption]

-
-
-
- -
-
-add_option(*, label, value=..., description=None, emoji=None, default=False)
-

Adds an option to the select menu.

-

To append a pre-existing discord.SelectOption use the -append_option() method instead.

-
-
Parameters
-
    -
  • label (str) – The label of the option. This is displayed to users. -Can only be up to 100 characters.

  • -
  • value (str) – The value of the option. This is not displayed to users. -If not given, defaults to the label. Can only be up to 100 characters.

  • -
  • description (Optional[str]) – An additional description of the option, if any. -Can only be up to 100 characters.

  • -
  • emoji (Optional[Union[str, Emoji, PartialEmoji]]) – The emoji of the option, if available. This can either be a string representing -the custom or unicode emoji or an instance of PartialEmoji or Emoji.

  • -
  • default (bool) – Whether this option is selected by default.

  • -
-
-
Raises
-

ValueError – The number of options exceeds 25.

-
-
-
- -
-
-append_option(option)
-

Appends an option to the select menu.

-
-
Parameters
-

option (discord.SelectOption) – The option to append to the select menu.

-
-
Raises
-

ValueError – The number of options exceeds 25.

-
-
-
- -
-
-property disabled
-

Whether the select is disabled or not.

-
-
Type
-

bool

-
-
-
- -
-
-property values
-

A list of values that have been selected by the user.

-
-
Type
-

List[str]

-
-
-
- -
-
-await callback(interaction)
-

This function is a coroutine.

-

The callback associated with this UI item.

-

This can be overriden by subclasses.

-
-
Parameters
-

interaction (Interaction) – The interaction that triggered this UI item.

-
-
-
- -
-
-property view
-

The underlying view for this item.

-
-
Type
-

Optional[View]

-
-
-
- -
- -
-
-discord.ui.select(*, placeholder=None, custom_id=..., min_values=1, max_values=1, options=..., disabled=False, row=None)
-

A decorator that attaches a select menu to a component.

-

The function being decorated should have three parameters, self representing -the discord.ui.View, the discord.ui.Select being pressed and -the discord.Interaction you receive.

-

In order to get the selected items that the user has chosen within the callback -use Select.values.

-
-
Parameters
-
    -
  • placeholder (Optional[str]) – The placeholder text that is shown if nothing is selected, if any.

  • -
  • custom_id (str) – The ID of the select menu that gets received during an interaction. -It is recommended not to set this parameter to prevent conflicts.

  • -
  • row (Optional[int]) – The relative row this select menu belongs to. A Discord component can only have 5 -rows. By default, items are arranged automatically into those 5 rows. If you’d -like to control the relative positioning of the row then passing an index is advised. -For example, row=1 will show up before row=2. Defaults to None, which is automatic -ordering. The row number must be between 0 and 4 (i.e. zero indexed).

  • -
  • min_values (int) – The minimum number of items that must be chosen for this select menu. -Defaults to 1 and must be between 1 and 25.

  • -
  • max_values (int) – The maximum number of items that must be chosen for this select menu. -Defaults to 1 and must be between 1 and 25.

  • -
  • options (List[discord.SelectOption]) – A list of options that can be selected in this menu.

  • -
  • disabled (bool) – Whether the select is disabled or not. Defaults to False.

  • -
-
-
-
- -
-
-
-

Exceptions

-

The following exceptions are thrown by the library.

-
-
-exception discord.DiscordException
-

Base exception class for discord.py

-

Ideally speaking, this could be caught to handle any exceptions raised from this library.

-
- -
-
-exception discord.ClientException
-

Exception that’s raised when an operation in the Client fails.

-

These are usually for exceptions that happened due to user input.

-
- -
-
-exception discord.LoginFailure
-

Exception that’s raised when the Client.login() function -fails to log you in from improper credentials or some other misc. -failure.

-
- -
-
-exception discord.NoMoreItems
-

Exception that is raised when an async iteration operation has no more items.

-
- -
-
-exception discord.HTTPException(response, message)
-

Exception that’s raised when an HTTP request operation fails.

-
-
-response
-

The response of the failed HTTP request. This is an -instance of aiohttp.ClientResponse. In some cases -this could also be a requests.Response.

-
-
Type
-

aiohttp.ClientResponse

-
-
-
- -
-
-text
-

The text of the error. Could be an empty string.

-
-
Type
-

str

-
-
-
- -
-
-status
-

The status code of the HTTP request.

-
-
Type
-

int

-
-
-
- -
-
-code
-

The Discord specific error code for the failure.

-
-
Type
-

int

-
-
-
- -
- -
-
-exception discord.Forbidden(response, message)
-

Exception that’s raised for when status code 403 occurs.

-

Subclass of HTTPException

-
- -
-
-exception discord.NotFound(response, message)
-

Exception that’s raised for when status code 404 occurs.

-

Subclass of HTTPException

-
- -
-
-exception discord.DiscordServerError(response, message)
-

Exception that’s raised for when a 500 range status code occurs.

-

Subclass of HTTPException.

-
-

New in version 1.5.

-
-
- -
-
-exception discord.InvalidData
-

Exception that’s raised when the library encounters unknown -or invalid data from Discord.

-
- -
-
-exception discord.InvalidArgument
-

Exception that’s raised when an argument to a function -is invalid some way (e.g. wrong value or wrong type).

-

This could be considered the analogous of ValueError and -TypeError except inherited from ClientException and thus -DiscordException.

-
- -
-
-exception discord.GatewayNotFound
-

An exception that is raised when the gateway for Discord could not be found

-
- -
-
-exception discord.ConnectionClosed(socket, *, shard_id, code=None)
-

Exception that’s raised when the gateway connection is -closed for reasons that could not be handled internally.

-
-
-code
-

The close code of the websocket.

-
-
Type
-

int

-
-
-
- -
-
-reason
-

The reason provided for the closure.

-
-
Type
-

str

-
-
-
- -
-
-shard_id
-

The shard ID that got closed if applicable.

-
-
Type
-

Optional[int]

-
-
-
- -
- -
-
-exception discord.PrivilegedIntentsRequired(shard_id)
-

Exception that’s raised when the gateway is requesting privileged intents -but they’re not ticked in the developer page yet.

-

Go to https://discord.com/developers/applications/ and enable the intents -that are required. Currently these are as follows:

- -
-
-shard_id
-

The shard ID that got closed if applicable.

-
-
Type
-

Optional[int]

-
-
-
- -
- -
-
-exception discord.InteractionResponded(interaction)
-

Exception that’s raised when sending another interaction response using -InteractionResponse when one has already been done before.

-

An interaction can only respond once.

-
-

New in version 2.0.

-
-
-
-interaction
-

The interaction that’s already been responded to.

-
-
Type
-

Interaction

-
-
-
- -
- -
-
-exception discord.opus.OpusError(code)
-

An exception that is thrown for libopus related errors.

-
-
-code
-

The error code returned.

-
-
Type
-

int

-
-
-
- -
- -
-
-exception discord.opus.OpusNotLoaded
-

An exception that is thrown for when libopus is not loaded.

-
- -
-

Exception Hierarchy

- -
-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/discord.html b/docs/Python/html/discord.html deleted file mode 100644 index 8c3f99a3..00000000 --- a/docs/Python/html/discord.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - Creating a Bot Account - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

Creating a Bot Account

-

In order to work with the library and the Discord API in general, we must first create a Discord Bot account.

-

Creating a Bot account is a pretty straightforward process.

-
    -
  1. Make sure you’re logged on to the Discord website.

  2. -
  3. Navigate to the application page

  4. -
  5. Click on the “New Application” button.

    -
    -
    The new application button. -
    -
  6. -
  7. Give the application a name and click “Create”.

    -
    -
    The new application form filled in. -
    -
  8. -
  9. Create a Bot User by navigating to the “Bot” tab and clicking “Add Bot”.

    -
    -
      -
    • Click “Yes, do it!” to continue.

    • -
    -The Add Bot button. -
    -
  10. -
  11. Make sure that Public Bot is ticked if you want others to invite your bot.

    -
    -
      -
    • You should also make sure that Require OAuth2 Code Grant is unchecked unless you -are developing a service that needs it. If you’re unsure, then leave it unchecked.

    • -
    -How the Bot User options should look like for most people. -
    -
  12. -
  13. Copy the token using the “Copy” button.

    -
    -
      -
    • This is not the Client Secret at the General Information page.

    • -
    -
    -

    Warning

    -

    It should be worth noting that this token is essentially your bot’s -password. You should never share this with someone else. In doing so, -someone can log in to your bot and do malicious things, such as leaving -servers, ban all members inside a server, or pinging everyone maliciously.

    -

    The possibilities are endless, so do not share this token.

    -

    If you accidentally leaked your token, click the “Regenerate” button as soon -as possible. This revokes your old token and re-generates a new one. -Now you need to use the new token to login.

    -
    -
    -
  14. -
-

And that’s it. You now have a bot account and you can login with that token.

-
-

Inviting Your Bot

-

So you’ve made a Bot User but it’s not actually in any server.

-

If you want to invite your bot you must create an invite URL for it.

-
    -
  1. Make sure you’re logged on to the Discord website.

  2. -
  3. Navigate to the application page

  4. -
  5. Click on your bot’s page.

  6. -
  7. Go to the “OAuth2” tab.

    -
    -
    How the OAuth2 page should look like. -
    -
  8. -
  9. Tick the “bot” checkbox under “scopes”.

    -
    -
    The scopes checkbox with "bot" ticked. -
    -
  10. -
  11. Tick the permissions required for your bot to function under “Bot Permissions”.

    -
    -
      -
    • Please be aware of the consequences of requiring your bot to have the “Administrator” permission.

    • -
    • Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the 2FA support page for more information.

    • -
    -The permission checkboxes with some permissions checked. -
    -
  12. -
  13. Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click “Authorize”.

  14. -
-
-

Note

-

The person adding the bot needs “Manage Server” permissions to do so.

-
-

If you want to generate this URL dynamically at run-time inside your bot and using the -discord.Permissions interface, you can use discord.utils.oauth_url().

-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/ext/commands/api.html b/docs/Python/html/ext/commands/api.html deleted file mode 100644 index 81e599bf..00000000 --- a/docs/Python/html/ext/commands/api.html +++ /dev/null @@ -1,8921 +0,0 @@ - - - - - - API Reference - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

API Reference

-

The following section outlines the API of discord.py’s command extension module.

-
-

Bots

-
-

Bot

-
- -Methods -
-
-class discord.ext.commands.Bot(command_prefix, help_command=<default-help-command>, description=None, *, intents, message_commands=True, slash_commands=False, **options)
-

Represents a discord bot.

-

This class is a subclass of discord.Client and as a result -anything that you can do with a discord.Client you can do with -this bot.

-

This class also subclasses GroupMixin to provide the functionality -to manage commands.

-
-
-command_prefix
-

The command prefix is what the message content must contain initially -to have a command invoked. This prefix could either be a string to -indicate what the prefix should be, or a callable that takes in the bot -as its first parameter and discord.Message as its second -parameter and returns the prefix. This is to facilitate “dynamic” -command prefixes. This callable can be either a regular function or -a coroutine.

-

An empty string as the prefix always matches, enabling prefix-less -command invocation. While this may be useful in DMs it should be avoided -in servers, as it’s likely to cause performance issues and unintended -command invocations.

-

The command prefix could also be an iterable of strings indicating that -multiple checks for the prefix should be used and the first one to -match will be the invocation prefix. You can get this prefix via -Context.prefix. To avoid confusion empty iterables are not -allowed.

-
-

Note

-

When passing multiple prefixes be careful to not pass a prefix -that matches a longer prefix occurring later in the sequence. For -example, if the command prefix is ('!', '!?') the '!?' -prefix will never be matched to any message as the previous one -matches messages starting with !?. This is especially important -when passing an empty string, it should always be last as no prefix -after it will be matched.

-
-
- -
-
-case_insensitive
-

Whether the commands should be case insensitive. Defaults to True. This -attribute does not carry over to groups. You must set it to every group if -you require group commands to be case insensitive as well.

-
-
Type
-

bool

-
-
-
- -
-
-description
-

The content prefixed into the default help message.

-
-
Type
-

str

-
-
-
- -
-
-help_command
-

The help command implementation to use. This can be dynamically -set at runtime. To remove the help command pass None. For more -information on implementing a help command, see Help Commands.

-
-
Type
-

Optional[HelpCommand]

-
-
-
- -
-
-owner_id
-

The user ID that owns the bot. If this is not set and is then queried via -is_owner() then it is fetched automatically using -application_info().

-
-
Type
-

Optional[int]

-
-
-
- -
-
-owner_ids
-

The user IDs that owns the bot. This is similar to owner_id. -If this is not set and the application is team based, then it is -fetched automatically using application_info(). -For performance reasons it is recommended to use a set -for the collection. You cannot set both owner_id and owner_ids.

-
-

New in version 1.3.

-
-
-
Type
-

Optional[Collection[int]]

-
-
-
- -
-
-strip_after_prefix
-

Whether to strip whitespace characters after encountering the command -prefix. This allows for !   hello and !hello to both work if -the command_prefix is set to !. Defaults to False.

-
-

New in version 1.7.

-
-
-
Type
-

bool

-
-
-
- -
-
-message_commands
-

Whether to process commands based on messages.

-

Can be overwritten per command in the command decorators or when making -a Command object via the message_command parameter

-
-

New in version 2.0.

-
-
-
Type
-

Optional[bool]

-
-
-
- -
-
-slash_commands
-

Whether to upload and process slash commands.

-

Can be overwritten per command in the command decorators or when making -a Command object via the slash_command parameter

-
-

New in version 2.0.

-
-
-
Type
-

Optional[bool]

-
-
-
- -
-
-slash_command_guilds
-

If this is set, only upload slash commands to these guild IDs.

-

Can be overwritten per command in the command decorators or when making -a Command object via the slash_command_guilds parameter

-
-

New in version 2.0.

-
-
-
Type
-

Optional[List[int]]

-
-
-
- -
-
-@after_invoke
-

A decorator that registers a coroutine as a post-invoke hook.

-

A post-invoke hook is called directly after the command is -called. This makes it a useful function to clean-up database -connections or any type of clean up required.

-

This post-invoke hook takes a sole parameter, a Context.

-
-

Note

-

Similar to before_invoke(), this is not called unless -checks and argument parsing procedures succeed. This hook is, -however, always called regardless of the internal command -callback raising an error (i.e. CommandInvokeError). -This makes it ideal for clean-up scenarios.

-
-
-
Parameters
-

coro (coroutine) – The coroutine to register as the post-invoke hook.

-
-
Raises
-

TypeError – The coroutine passed is not actually a coroutine.

-
-
-
- -
-
-@before_invoke
-

A decorator that registers a coroutine as a pre-invoke hook.

-

A pre-invoke hook is called directly before the command is -called. This makes it a useful function to set up database -connections or any type of set up required.

-

This pre-invoke hook takes a sole parameter, a Context.

-
-

Note

-

The before_invoke() and after_invoke() hooks are -only called if all checks and argument parsing procedures pass -without error. If any check or argument parsing procedures fail -then the hooks are not called.

-
-
-
Parameters
-

coro (coroutine) – The coroutine to register as the pre-invoke hook.

-
-
Raises
-

TypeError – The coroutine passed is not actually a coroutine.

-
-
-
- -
-
-@check
-

A decorator that adds a global check to the bot.

-

A global check is similar to a check() that is applied -on a per command basis except it is run before any command checks -have been verified and applies to every command the bot has.

-
-

Note

-

This function can either be a regular function or a coroutine.

-
-

Similar to a command check(), this takes a single parameter -of type Context and can only raise exceptions inherited from -CommandError.

-

Example

-
@bot.check
-def check_commands(ctx):
-    return ctx.command.qualified_name in allowed_commands
-
-
-
- -
-
-@check_once
-

A decorator that adds a “call once” global check to the bot.

-

Unlike regular global checks, this one is called only once -per invoke() call.

-

Regular global checks are called whenever a command is called -or Command.can_run() is called. This type of check -bypasses that and ensures that it’s called only once, even inside -the default help command.

-
-

Note

-

When using this function the Context sent to a group subcommand -may only parse the parent command and not the subcommands due to it -being invoked once per Bot.invoke() call.

-
-
-

Note

-

This function can either be a regular function or a coroutine.

-
-

Similar to a command check(), this takes a single parameter -of type Context and can only raise exceptions inherited from -CommandError.

-

Example

-
@bot.check_once
-def whitelist(ctx):
-    return ctx.message.author.id in my_whitelist
-
-
-
- -
-
-@command(*args, **kwargs)
-

A shortcut decorator that invokes command() and adds it to -the internal command list via add_command().

-
-
Returns
-

A decorator that converts the provided method into a Command, adds it to the bot, then returns it.

-
-
Return type
-

Callable[…, Command]

-
-
-
- -
-
-@event
-

A decorator that registers an event to listen to.

-

You can find more info about the events on the documentation below.

-

The events must be a coroutine, if not, TypeError is raised.

-

Example

-
@client.event
-async def on_ready():
-    print('Ready!')
-
-
-
-
Raises
-

TypeError – The coroutine passed is not actually a coroutine.

-
-
-
- -
-
-@group(*args, **kwargs)
-

A shortcut decorator that invokes group() and adds it to -the internal command list via add_command().

-
-
Returns
-

A decorator that converts the provided method into a Group, adds it to the bot, then returns it.

-
-
Return type
-

Callable[…, Group]

-
-
-
- -
-
-@listen(name=None)
-

A decorator that registers another function as an external -event listener. Basically this allows you to listen to multiple -events from different places e.g. such as on_ready()

-

The functions being listened to must be a coroutine.

-

Example

-
@bot.listen()
-async def on_message(message):
-    print('one')
-
-# in some other file...
-
-@bot.listen('on_message')
-async def my_message(message):
-    print('two')
-
-
-

Would print one and two in an unspecified order.

-
-
Raises
-

TypeError – The function being listened to is not a coroutine.

-
-
-
- -
-
-property activity
-

The activity being used upon -logging in.

-
-
Type
-

Optional[BaseActivity]

-
-
-
- -
-
-add_check(func, *, call_once=False)
-

Adds a global check to the bot.

-

This is the non-decorator interface to check() -and check_once().

-
-
Parameters
-
    -
  • func – The function that was used as a global check.

  • -
  • call_once (bool) – If the function should only be called once per -invoke() call.

  • -
-
-
-
- -
-
-add_cog(cog, *, override=False)
-

Adds a “cog” to the bot.

-

A cog is a class that has its own event listeners and commands.

-
-

Changed in version 2.0: ClientException is raised when a cog with the same name -is already loaded.

-
-
-
Parameters
-
    -
  • cog (Cog) – The cog to register to the bot.

  • -
  • override (bool) –

    If a previously loaded cog with the same name should be ejected -instead of raising an error.

    -
    -

    New in version 2.0.

    -
    -

  • -
-
-
Raises
-
-
-
-
- -
-
-add_command(command)
-

Adds a Command into the internal list of commands.

-

This is usually not called, instead the command() or -group() shortcut decorators are used instead.

-
-

Changed in version 1.4: Raise CommandRegistrationError instead of generic ClientException

-
-
-
Parameters
-

command (Command) – The command to add.

-
-
Raises
-
-
-
-
- -
-
-add_listener(func, name=...)
-

The non decorator alternative to listen().

-
-
Parameters
-
    -
  • func (coroutine) – The function to call.

  • -
  • name (str) – The name of the event to listen for. Defaults to func.__name__.

  • -
-
-
-

Example

-
async def on_ready(): pass
-async def my_message(message): pass
-
-bot.add_listener(on_ready)
-bot.add_listener(my_message, 'on_message')
-
-
-
- -
-
-add_view(view, *, message_id=None)
-

Registers a View for persistent listening.

-

This method should be used for when a view is comprised of components -that last longer than the lifecycle of the program.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • view (discord.ui.View) – The view to register for dispatching.

  • -
  • message_id (Optional[int]) – The message ID that the view is attached to. This is currently used to -refresh the view’s state during message update events. If not given -then message update events are not propagated for the view.

  • -
-
-
Raises
-
    -
  • TypeError – A view was not passed.

  • -
  • ValueError – The view is not persistent. A persistent view has no timeout - and all their components have an explicitly provided custom_id.

  • -
-
-
-
- -
-
-property allowed_mentions
-

The allowed mention configuration.

-
-

New in version 1.4.

-
-
-
Type
-

Optional[AllowedMentions]

-
-
-
- -
-
-property application_flags
-

The client’s application flags.

-
-

New in version 2.0.

-
-
-
Type
-

ApplicationFlags

-
-
-
- -
-
-property application_id
-

The client’s application ID.

-

If this is not passed via __init__ then this is retrieved -through the gateway when an event contains the data. Usually -after on_connect() is called.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[int]

-
-
-
- -
-
-await application_info()
-

This function is a coroutine.

-

Retrieves the bot’s application information.

-
-
Raises
-

HTTPException – Retrieving the information failed somehow.

-
-
Returns
-

The bot’s application information.

-
-
Return type
-

AppInfo

-
-
-
- -
-
-await before_identify_hook(shard_id, *, initial=False)
-

This function is a coroutine.

-

A hook that is called before IDENTIFYing a session. This is useful -if you wish to have more control over the synchronization of multiple -IDENTIFYing clients.

-

The default implementation sleeps for 5 seconds.

-
-

New in version 1.4.

-
-
-
Parameters
-
    -
  • shard_id (int) – The shard ID that requested being IDENTIFY’d

  • -
  • initial (bool) – Whether this IDENTIFY is the first initial IDENTIFY.

  • -
-
-
-
- -
-
-property cached_messages
-

Read-only list of messages the connected client has cached.

-
-

New in version 1.1.

-
-
-
Type
-

Sequence[Message]

-
-
-
- -
-
-await change_presence(*, activity=None, status=None)
-

This function is a coroutine.

-

Changes the client’s presence.

-

Example

-
game = discord.Game("with the API")
-await client.change_presence(status=discord.Status.idle, activity=game)
-
-
-
-

Changed in version 2.0: Removed the afk keyword-only parameter.

-
-
-
Parameters
-
    -
  • activity (Optional[BaseActivity]) – The activity being done. None if no currently active activity is done.

  • -
  • status (Optional[Status]) – Indicates what status to change to. If None, then -Status.online is used.

  • -
-
-
Raises
-

InvalidArgument – If the activity parameter is not the proper type.

-
-
-
- -
-
-clear()
-

Clears the internal state of the bot.

-

After this, the bot can be considered “re-opened”, i.e. is_closed() -and is_ready() both return False along with the bot’s internal -cache cleared.

-
- -
-
-await close()
-

This function is a coroutine.

-

Closes the connection to Discord.

-
- -
-
-property cogs
-

A read-only mapping of cog name to cog.

-
-
Type
-

Mapping[str, Cog]

-
-
-
- -
-
-property commands
-

A unique set of commands without aliases that are registered.

-
-
Type
-

Set[Command]

-
-
-
- -
-
-await connect(*, reconnect=True)
-

This function is a coroutine.

-

Creates a websocket connection and lets the websocket listen -to messages from Discord. This is a loop that runs the entire -event system and miscellaneous aspects of the library. Control -is not resumed until the WebSocket connection is terminated.

-
-
Parameters
-

reconnect (bool) – If we should attempt reconnecting, either due to internet -failure or a specific failure on Discord’s part. Certain -disconnects that lead to bad state will not be handled (such as -invalid sharding payloads or bad tokens).

-
-
Raises
-
    -
  • GatewayNotFound – If the gateway to connect to Discord is not found. Usually if this - is thrown then there is a Discord API outage.

  • -
  • ConnectionClosed – The websocket connection has been terminated.

  • -
-
-
-
- -
-
-await create_dm(user)
-

This function is a coroutine.

-

Creates a DMChannel with this user.

-

This should be rarely called, as this is done transparently for most -people.

-
-

New in version 2.0.

-
-
-
Parameters
-

user (Snowflake) – The user to create a DM with.

-
-
Returns
-

The channel that was created.

-
-
Return type
-

DMChannel

-
-
-
- -
-
-await create_guild(*, name, region=<VoiceRegion.us_west: 'us-west'>, icon=..., code=...)
-

This function is a coroutine.

-

Creates a Guild.

-

Bot accounts in more than 10 guilds are not allowed to create guilds.

-
-
Parameters
-
    -
  • name (str) – The name of the guild.

  • -
  • region (VoiceRegion) – The region for the voice communication server. -Defaults to VoiceRegion.us_west.

  • -
  • icon (Optional[bytes]) – The bytes-like object representing the icon. See ClientUser.edit() -for more details on what is expected.

  • -
  • code (str) –

    The code for a template to create the guild with.

    -
    -

    New in version 1.4.

    -
    -

  • -
-
-
Raises
-
-
-
Returns
-

The guild created. This is not the same guild that is -added to cache.

-
-
Return type
-

Guild

-
-
-
- -
-
-await delete_invite(invite)
-

This function is a coroutine.

-

Revokes an Invite, URL, or ID to an invite.

-

You must have the manage_channels permission in -the associated guild to do this.

-
-
Parameters
-

invite (Union[Invite, str]) – The invite to revoke.

-
-
Raises
-
    -
  • Forbidden – You do not have permissions to revoke invites.

  • -
  • NotFound – The invite is invalid or expired.

  • -
  • HTTPException – Revoking the invite failed.

  • -
-
-
-
- -
-
-property emojis
-

The emojis that the connected client has.

-
-
Type
-

List[Emoji]

-
-
-
- -
-
-property extensions
-

A read-only mapping of extension name to extension.

-
-
Type
-

Mapping[str, types.ModuleType]

-
-
-
- -
-
-await fetch_channel(channel_id, /)
-

This function is a coroutine.

-

Retrieves a abc.GuildChannel, abc.PrivateChannel, or Thread with the specified ID.

-
-

Note

-

This method is an API call. For general usage, consider get_channel() instead.

-
-
-

New in version 1.2.

-
-
-
Raises
-
    -
  • InvalidData – An unknown channel type was received from Discord.

  • -
  • HTTPException – Retrieving the channel failed.

  • -
  • NotFound – Invalid Channel ID.

  • -
  • Forbidden – You do not have permission to fetch this channel.

  • -
-
-
Returns
-

The channel from the ID.

-
-
Return type
-

Union[abc.GuildChannel, abc.PrivateChannel, Thread]

-
-
-
- -
-
-await fetch_guild(guild_id, /)
-

This function is a coroutine.

-

Retrieves a Guild from an ID.

-
-

Note

-

Using this, you will not receive Guild.channels, Guild.members, -Member.activity and Member.voice per Member.

-
-
-

Note

-

This method is an API call. For general usage, consider get_guild() instead.

-
-
-
Parameters
-

guild_id (int) – The guild’s ID to fetch from.

-
-
Raises
-
-
-
Returns
-

The guild from the ID.

-
-
Return type
-

Guild

-
-
-
- -
-
-fetch_guilds(*, limit=100, before=None, after=None)
-

Retrieves an AsyncIterator that enables receiving your guilds.

-
-

Note

-

Using this, you will only receive Guild.owner, Guild.icon, -Guild.id, and Guild.name per Guild.

-
-
-

Note

-

This method is an API call. For general usage, consider guilds instead.

-
-

Examples

-

Usage

-
async for guild in client.fetch_guilds(limit=150):
-    print(guild.name)
-
-
-

Flattening into a list

-
guilds = await client.fetch_guilds(limit=150).flatten()
-# guilds is now a list of Guild...
-
-
-

All parameters are optional.

-
-
Parameters
-
    -
  • limit (Optional[int]) – The number of guilds to retrieve. -If None, it retrieves every guild you have access to. Note, however, -that this would make it a slow operation. -Defaults to 100.

  • -
  • before (Union[abc.Snowflake, datetime.datetime]) – Retrieves guilds before this date or object. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • after (Union[abc.Snowflake, datetime.datetime]) – Retrieve guilds after this date or object. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
-
-
Raises
-

HTTPException – Getting the guilds failed.

-
-
Yields
-

Guild – The guild with the guild data parsed.

-
-
-
- -
-
-await fetch_invite(url, *, with_counts=True, with_expiration=True)
-

This function is a coroutine.

-

Gets an Invite from a discord.gg URL or ID.

-
-

Note

-

If the invite is for a guild you have not joined, the guild and channel -attributes of the returned Invite will be PartialInviteGuild and -PartialInviteChannel respectively.

-
-
-
Parameters
-
-
-
Raises
-
-
-
Returns
-

The invite from the URL/ID.

-
-
Return type
-

Invite

-
-
-
- -
-
-await fetch_premium_sticker_packs()
-

This function is a coroutine.

-

Retrieves all available premium sticker packs.

-
-

New in version 2.0.

-
-
-
Raises
-

HTTPException – Retrieving the sticker packs failed.

-
-
Returns
-

All available premium sticker packs.

-
-
Return type
-

List[StickerPack]

-
-
-
- -
-
-await fetch_stage_instance(channel_id, /)
-

This function is a coroutine.

-

Gets a StageInstance for a stage channel id.

-
-

New in version 2.0.

-
-
-
Parameters
-

channel_id (int) – The stage channel ID.

-
-
Raises
-
    -
  • NotFound – The stage instance or channel could not be found.

  • -
  • HTTPException – Getting the stage instance failed.

  • -
-
-
Returns
-

The stage instance from the stage channel ID.

-
-
Return type
-

StageInstance

-
-
-
- -
-
-await fetch_sticker(sticker_id, /)
-

This function is a coroutine.

-

Retrieves a Sticker with the specified ID.

-
-

New in version 2.0.

-
-
-
Raises
-
-
-
Returns
-

The sticker you requested.

-
-
Return type
-

Union[StandardSticker, GuildSticker]

-
-
-
- -
-
-await fetch_template(code)
-

This function is a coroutine.

-

Gets a Template from a discord.new URL or code.

-
-
Parameters
-

code (Union[Template, str]) – The Discord Template Code or URL (must be a discord.new URL).

-
-
Raises
-
-
-
Returns
-

The template from the URL/code.

-
-
Return type
-

Template

-
-
-
- -
-
-await fetch_user(user_id, /)
-

This function is a coroutine.

-

Retrieves a User based on their ID. -You do not have to share any guilds with the user to get this information, -however many operations do require that you do.

-
-

Note

-

This method is an API call. If you have discord.Intents.members and member cache enabled, consider get_user() instead.

-
-
-
Parameters
-

user_id (int) – The user’s ID to fetch from.

-
-
Raises
-
-
-
Returns
-

The user you requested.

-
-
Return type
-

User

-
-
-
- -
-
-await fetch_webhook(webhook_id, /)
-

This function is a coroutine.

-

Retrieves a Webhook with the specified ID.

-
-
Raises
-
    -
  • HTTPException – Retrieving the webhook failed.

  • -
  • NotFound – Invalid webhook ID.

  • -
  • Forbidden – You do not have permission to fetch this webhook.

  • -
-
-
Returns
-

The webhook you requested.

-
-
Return type
-

Webhook

-
-
-
- -
-
-await fetch_widget(guild_id, /)
-

This function is a coroutine.

-

Gets a Widget from a guild ID.

-
-

Note

-

The guild must have the widget enabled to get this information.

-
-
-
Parameters
-

guild_id (int) – The ID of the guild.

-
-
Raises
-
-
-
Returns
-

The guild’s widget.

-
-
Return type
-

Widget

-
-
-
- -
-
-for ... in get_all_channels()
-

A generator that retrieves every abc.GuildChannel the client can ‘access’.

-

This is equivalent to:

-
for guild in client.guilds:
-    for channel in guild.channels:
-        yield channel
-
-
-
-

Note

-

Just because you receive a abc.GuildChannel does not mean that -you can communicate in said channel. abc.GuildChannel.permissions_for() should -be used for that.

-
-
-
Yields
-

abc.GuildChannel – A channel the client can ‘access’.

-
-
-
- -
-
-for ... in get_all_members()
-

Returns a generator with every Member the client can see.

-

This is equivalent to:

-
for guild in client.guilds:
-    for member in guild.members:
-        yield member
-
-
-
-
Yields
-

Member – A member the client can see.

-
-
-
- -
-
-get_channel(id, /)
-

Returns a channel or thread with the given ID.

-
-
Parameters
-

id (int) – The ID to search for.

-
-
Returns
-

The returned channel or None if not found.

-
-
Return type
-

Optional[Union[abc.GuildChannel, Thread, abc.PrivateChannel]]

-
-
-
- -
-
-get_cog(name)
-

Gets the cog instance requested.

-

If the cog is not found, None is returned instead.

-
-
Parameters
-

name (str) – The name of the cog you are requesting. -This is equivalent to the name passed via keyword -argument in class creation or the class name if unspecified.

-
-
Returns
-

The cog that was requested. If not found, returns None.

-
-
Return type
-

Optional[Cog]

-
-
-
- -
-
-get_command(name)
-

Get a Command from the internal list -of commands.

-

This could also be used as a way to get aliases.

-

The name could be fully qualified (e.g. 'foo bar') will get -the subcommand bar of the group command foo. If a -subcommand is not found then None is returned just as usual.

-
-
Parameters
-

name (str) – The name of the command to get.

-
-
Returns
-

The command that was requested. If not found, returns None.

-
-
Return type
-

Optional[Command]

-
-
-
- -
-
-await get_context(message, *, cls=<class 'discord.ext.commands.context.Context'>)
-

This function is a coroutine.

-

Returns the invocation context from the message.

-

This is a more low-level counter-part for process_commands() -to allow users more fine grained control over the processing.

-

The returned context is not guaranteed to be a valid invocation -context, Context.valid must be checked to make sure it is. -If the context is not valid then it is not a valid candidate to be -invoked under invoke().

-
-
Parameters
-
    -
  • message (discord.Message) – The message to get the invocation context from.

  • -
  • cls – The factory class that will be used to create the context. -By default, this is Context. Should a custom -class be provided, it must be similar enough to Context's -interface.

  • -
-
-
Returns
-

The invocation context. The type of this can change via the -cls parameter.

-
-
Return type
-

Context

-
-
-
- -
-
-get_emoji(id, /)
-

Returns an emoji with the given ID.

-
-
Parameters
-

id (int) – The ID to search for.

-
-
Returns
-

The custom emoji or None if not found.

-
-
Return type
-

Optional[Emoji]

-
-
-
- -
-
-get_guild(id, /)
-

Returns a guild with the given ID.

-
-
Parameters
-

id (int) – The ID to search for.

-
-
Returns
-

The guild or None if not found.

-
-
Return type
-

Optional[Guild]

-
-
-
- -
-
-get_partial_messageable(id, *, type=None)
-

Returns a partial messageable with the given channel ID.

-

This is useful if you have a channel_id but don’t want to do an API call -to send messages to it.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • id (int) – The channel ID to create a partial messageable for.

  • -
  • type (Optional[ChannelType]) – The underlying channel type for the partial messageable.

  • -
-
-
Returns
-

The partial messageable

-
-
Return type
-

PartialMessageable

-
-
-
- -
-
-await get_prefix(message)
-

This function is a coroutine.

-

Retrieves the prefix the bot is listening to -with the message as a context.

-
-
Parameters
-

message (discord.Message) – The message context to get the prefix of.

-
-
Returns
-

A list of prefixes or a single prefix that the bot is -listening for.

-
-
Return type
-

Union[List[str], str]

-
-
-
- -
-
-get_stage_instance(id, /)
-

Returns a stage instance with the given stage channel ID.

-
-

New in version 2.0.

-
-
-
Parameters
-

id (int) – The ID to search for.

-
-
Returns
-

The returns stage instance of None if not found.

-
-
Return type
-

Optional[StageInstance]

-
-
-
- -
-
-get_sticker(id, /)
-

Returns a guild sticker with the given ID.

-
-

New in version 2.0.

-
-
-

Note

-

To retrieve standard stickers, use fetch_sticker(). -or fetch_premium_sticker_packs().

-
-
-
Returns
-

The sticker or None if not found.

-
-
Return type
-

Optional[GuildSticker]

-
-
-
- -
-
-get_user(id, /)
-

Returns a user with the given ID.

-
-
Parameters
-

id (int) – The ID to search for.

-
-
Returns
-

The user or None if not found.

-
-
Return type
-

Optional[User]

-
-
-
- -
-
-property guilds
-

The guilds that the connected client is a member of.

-
-
Type
-

List[Guild]

-
-
-
- -
-
-property intents
-

The intents configured for this connection.

-
-

New in version 1.5.

-
-
-
Type
-

Intents

-
-
-
- -
-
-await invoke(ctx)
-

This function is a coroutine.

-

Invokes the command given under the invocation context and -handles all the internal event dispatch mechanisms.

-
-
Parameters
-

ctx (Context) – The invocation context to invoke.

-
-
-
- -
-
-is_closed()
-

bool: Indicates if the websocket connection is closed.

-
- -
-
-await is_owner(user)
-

This function is a coroutine.

-

Checks if a User or Member is the owner of -this bot.

-

If an owner_id is not set, it is fetched automatically -through the use of application_info().

-
-

Changed in version 1.3: The function also checks if the application is team-owned if -owner_ids is not set.

-
-
-
Parameters
-

user (abc.User) – The user to check for.

-
-
Returns
-

Whether the user is the owner.

-
-
Return type
-

bool

-
-
-
- -
-
-is_ready()
-

bool: Specifies if the client’s internal cache is ready for use.

-
- -
-
-is_ws_ratelimited()
-

bool: Whether the websocket is currently rate limited.

-

This can be useful to know when deciding whether you should query members -using HTTP or via the gateway.

-
-

New in version 1.6.

-
-
- -
-
-property latency
-

Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds.

-

This could be referred to as the Discord WebSocket protocol latency.

-
-
Type
-

float

-
-
-
- -
-
-load_extension(name, *, package=None)
-

Loads an extension.

-

An extension is a python module that contains commands, cogs, or -listeners.

-

An extension must have a global function, setup defined as -the entry point on what to do when the extension is loaded. This entry -point must have a single argument, the bot.

-
-
Parameters
-
    -
  • name (str) – The extension name to load. It must be dot separated like -regular Python imports if accessing a sub-module. e.g. -foo.test if you want to import foo/test.py.

  • -
  • package (Optional[str]) –

    The package name to resolve relative imports with. -This is required when loading an extension using a relative path, e.g .foo.test. -Defaults to None.

    -
    -

    New in version 1.7.

    -
    -

  • -
-
-
Raises
-
    -
  • ExtensionNotFound – The extension could not be imported. - This is also raised if the name of the extension could not - be resolved using the provided package parameter.

  • -
  • ExtensionAlreadyLoaded – The extension is already loaded.

  • -
  • NoEntryPointError – The extension does not have a setup function.

  • -
  • ExtensionFailed – The extension or its setup function had an execution error.

  • -
-
-
-
- -
-
-await login(token)
-

This function is a coroutine.

-

Logs in the client with the specified credentials.

-
-
Parameters
-

token (str) – The authentication token. Do not prefix this token with -anything as the library will do it for you.

-
-
Raises
-
    -
  • LoginFailure – The wrong credentials are passed.

  • -
  • HTTPException – An unknown HTTP related error occurred, - usually when it isn’t 200 or the known incorrect credentials - passing status code.

  • -
-
-
-
- -
-
-await on_command_error(context, exception)
-

This function is a coroutine.

-

The default command error handler provided by the bot.

-

By default this prints to sys.stderr however it could be -overridden to have a different implementation.

-

This only fires if you do not specify any listeners for command error.

-
- -
-
-await on_error(event_method, *args, **kwargs)
-

This function is a coroutine.

-

The default error handler provided by the client.

-

By default this prints to sys.stderr however it could be -overridden to have a different implementation. -Check on_error() for more details.

-
- -
-
-property persistent_views
-

A sequence of persistent views added to the client.

-
-

New in version 2.0.

-
-
-
Type
-

Sequence[View]

-
-
-
- -
-
-await populate_owners()
-

This function is a coroutine.

-

Populate the owner_id and owner_ids through the use of application_info().

-
-

New in version 2.0.

-
-
- -
-
-property private_channels
-

The private channels that the connected client is participating on.

-
-

Note

-

This returns only up to 128 most recent private channels due to an internal working -on how Discord deals with private channels.

-
-
-
Type
-

List[abc.PrivateChannel]

-
-
-
- -
-
-await process_commands(message)
-

This function is a coroutine.

-

This function processes the commands that have been registered -to the bot and other groups. Without this coroutine, none of the -commands will be triggered.

-

By default, this coroutine is called inside the on_message() -event. If you choose to override the on_message() event, then -you should invoke this coroutine as well.

-

This is built using other low level tools, and is equivalent to a -call to get_context() followed by a call to invoke().

-

This also checks if the message’s author is a bot and doesn’t -call get_context() or invoke() if so.

-
-
Parameters
-

message (discord.Message) – The message to process commands for.

-
-
-
- -
-
-await process_slash_commands(interaction)
-

This function is a coroutine.

-

This function processes a slash command interaction into a usable -message and calls process_commands() based on it. Without this -coroutine slash commands will not be triggered.

-

By default, this coroutine is called inside the on_interaction() -event. If you choose to override the on_interaction() event, -then you should invoke this coroutine as well.

-
-

New in version 2.0.

-
-
-
Parameters
-

interaction (discord.Interaction) – The interaction to process slash commands for.

-
-
-
- -
-
-reload_extension(name, *, package=None)
-

Atomically reloads an extension.

-

This replaces the extension with the same extension, only refreshed. This is -equivalent to a unload_extension() followed by a load_extension() -except done in an atomic way. That is, if an operation fails mid-reload then -the bot will roll-back to the prior working state.

-
-
Parameters
-
    -
  • name (str) – The extension name to reload. It must be dot separated like -regular Python imports if accessing a sub-module. e.g. -foo.test if you want to import foo/test.py.

  • -
  • package (Optional[str]) –

    The package name to resolve relative imports with. -This is required when reloading an extension using a relative path, e.g .foo.test. -Defaults to None.

    -
    -

    New in version 1.7.

    -
    -

  • -
-
-
Raises
-
    -
  • ExtensionNotLoaded – The extension was not loaded.

  • -
  • ExtensionNotFound – The extension could not be imported. - This is also raised if the name of the extension could not - be resolved using the provided package parameter.

  • -
  • NoEntryPointError – The extension does not have a setup function.

  • -
  • ExtensionFailed – The extension setup function had an execution error.

  • -
-
-
-
- -
-
-remove_check(func, *, call_once=False)
-

Removes a global check from the bot.

-

This function is idempotent and will not raise an exception -if the function is not in the global checks.

-
-
Parameters
-
    -
  • func – The function to remove from the global checks.

  • -
  • call_once (bool) – If the function was added with call_once=True in -the Bot.add_check() call or using check_once().

  • -
-
-
-
- -
-
-remove_cog(name)
-

Removes a cog from the bot and returns it.

-

All registered commands and event listeners that the -cog has registered will be removed as well.

-

If no cog is found then this method has no effect.

-
-
Parameters
-

name (str) – The name of the cog to remove.

-
-
Returns
-

The cog that was removed. None if not found.

-
-
Return type
-

Optional[Cog]

-
-
-
- -
-
-remove_command(name)
-

Remove a Command from the internal list -of commands.

-

This could also be used as a way to remove aliases.

-
-
Parameters
-

name (str) – The name of the command to remove.

-
-
Returns
-

The command that was removed. If the name is not valid then -None is returned instead.

-
-
Return type
-

Optional[Command]

-
-
-
- -
-
-remove_listener(func, name=...)
-

Removes a listener from the pool of listeners.

-
-
Parameters
-
    -
  • func – The function that was used as a listener to remove.

  • -
  • name (str) – The name of the event we want to remove. Defaults to -func.__name__.

  • -
-
-
-
- -
-
-run(*args, **kwargs)
-

A blocking call that abstracts away the event loop -initialisation from you.

-

If you want more control over the event loop then this -function should not be used. Use start() coroutine -or connect() + login().

-

Roughly Equivalent to:

-
try:
-    loop.run_until_complete(start(*args, **kwargs))
-except KeyboardInterrupt:
-    loop.run_until_complete(close())
-    # cancel all tasks lingering
-finally:
-    loop.close()
-
-
-
-

Warning

-

This function must be the last function to call due to the fact that it -is blocking. That means that registration of events or anything being -called after this function call will not execute until it returns.

-
-
- -
-
-await setup()
-

This function is a coroutine.

-

A coroutine to be called to setup the bot, by default this is blank.

-

To perform asynchronous setup after the bot is logged in but before -it has connected to the Websocket, overwrite this coroutine.

-
-

New in version 2.0.

-
-
- -
-
-await start(token, *, reconnect=True)
-

This function is a coroutine.

-

A shorthand coroutine for login() + setup() + connect().

-
-
Raises
-

TypeError – An unexpected keyword argument was received.

-
-
-
- -
-
-property status
-

Status: -The status being used upon logging on to Discord.

-
-

New in version 2.0.

-
-
- -
-
-property stickers
-

The stickers that the connected client has.

-
-

New in version 2.0.

-
-
-
Type
-

List[GuildSticker]

-
-
-
- -
-
-await try_owners()
-

This function is a coroutine.

-

Returns a list of User representing the owners of the bot. -It uses the owner_id and owner_ids, if set.

-
-

New in version 2.0: The function also checks if the application is team-owned if -owner_ids is not set.

-
-
-
Returns
-

List of owners of the bot.

-
-
Return type
-

List[User]

-
-
-
- -
-
-await try_user(id, /)
-

This function is a coroutine. -Returns a user with the given ID. If not from cache, the user will be requested from the API.

-

You do not have to share any guilds with the user to get this information from the API, -however many operations do require that you do.

-
-

Note

-

This method is an API call. If you have discord.Intents.members and member cache enabled, consider get_user() instead.

-
-
-

New in version 2.0.

-
-
-
Parameters
-

id (int) – The ID to search for.

-
-
Returns
-

The user or None if not found.

-
-
Return type
-

Optional[User]

-
-
-
- -
-
-unload_extension(name, *, package=None)
-

Unloads an extension.

-

When the extension is unloaded, all commands, listeners, and cogs are -removed from the bot and the module is un-imported.

-

The extension can provide an optional global function, teardown, -to do miscellaneous clean-up if necessary. This function takes a single -parameter, the bot, similar to setup from -load_extension().

-
-
Parameters
-
    -
  • name (str) – The extension name to unload. It must be dot separated like -regular Python imports if accessing a sub-module. e.g. -foo.test if you want to import foo/test.py.

  • -
  • package (Optional[str]) –

    The package name to resolve relative imports with. -This is required when unloading an extension using a relative path, e.g .foo.test. -Defaults to None.

    -
    -

    New in version 1.7.

    -
    -

  • -
-
-
Raises
-
-
-
-
- -
-
-property user
-

Represents the connected client. None if not logged in.

-
-
Type
-

Optional[ClientUser]

-
-
-
- -
-
-property users
-

Returns a list of all the users the bot can see.

-
-
Type
-

List[User]

-
-
-
- -
-
-property voice_clients
-

Represents a list of voice connections.

-

These are usually VoiceClient instances.

-
-
Type
-

List[VoiceProtocol]

-
-
-
- -
-
-wait_for(event, *, check=None, timeout=None)
-

This function is a coroutine.

-

Waits for a WebSocket event to be dispatched.

-

This could be used to wait for a user to reply to a message, -or to react to a message, or to edit a message in a self-contained -way.

-

The timeout parameter is passed onto asyncio.wait_for(). By default, -it does not timeout. Note that this does propagate the -asyncio.TimeoutError for you in case of timeout and is provided for -ease of use.

-

In case the event returns multiple arguments, a tuple containing those -arguments is returned instead. Please check the -documentation for a list of events and their -parameters.

-

This function returns the first event that meets the requirements.

-

Examples

-

Waiting for a user reply:

-
@client.event
-async def on_message(message):
-    if message.content.startswith('$greet'):
-        channel = message.channel
-        await channel.send('Say hello!')
-
-        def check(m):
-            return m.content == 'hello' and m.channel == channel
-
-        msg = await client.wait_for('message', check=check)
-        await channel.send(f'Hello {msg.author}!')
-
-
-

Waiting for a thumbs up reaction from the message author:

-
@client.event
-async def on_message(message):
-    if message.content.startswith('$thumb'):
-        channel = message.channel
-        await channel.send('Send me that 👍 reaction, mate')
-
-        def check(reaction, user):
-            return user == message.author and str(reaction.emoji) == '👍'
-
-        try:
-            reaction, user = await client.wait_for('reaction_add', timeout=60.0, check=check)
-        except asyncio.TimeoutError:
-            await channel.send('👎')
-        else:
-            await channel.send('👍')
-
-
-
-
Parameters
-
    -
  • event (str) – The event name, similar to the event reference, -but without the on_ prefix, to wait for.

  • -
  • check (Optional[Callable[…, bool]]) – A predicate to check what to wait for. The arguments must meet the -parameters of the event being waited for.

  • -
  • timeout (Optional[float]) – The number of seconds to wait before timing out and raising -asyncio.TimeoutError.

  • -
-
-
Raises
-

asyncio.TimeoutError – If a timeout is provided and it was reached.

-
-
Returns
-

Returns no arguments, a single argument, or a tuple of multiple -arguments that mirrors the parameters passed in the -event reference.

-
-
Return type
-

Any

-
-
-
- -
-
-await wait_until_ready()
-

This function is a coroutine.

-

Waits until the client’s internal cache is all ready.

-
- -
-
-for ... in walk_commands()
-

An iterator that recursively walks through all commands and subcommands.

-
-

Changed in version 1.4: Duplicates due to aliases are no longer returned

-
-
-
Yields
-

Union[Command, Group] – A command or group from the internal list of commands.

-
-
-
- -
- -
-
-

AutoShardedBot

-
-
-class discord.ext.commands.AutoShardedBot(command_prefix, help_command=<default-help-command>, description=None, *, intents, message_commands=True, slash_commands=False, **options)
-

This is similar to Bot except that it is inherited from -discord.AutoShardedClient instead.

-
- -
-
-
-

Prefix Helpers

-
-
-discord.ext.commands.when_mentioned(bot, msg)
-

A callable that implements a command prefix equivalent to being mentioned.

-

These are meant to be passed into the Bot.command_prefix attribute.

-
- -
-
-discord.ext.commands.when_mentioned_or(*prefixes)
-

A callable that implements when mentioned or other prefixes provided.

-

These are meant to be passed into the Bot.command_prefix attribute.

-

Example

-
bot = commands.Bot(command_prefix=commands.when_mentioned_or('!'))
-
-
-
-

Note

-

This callable returns another callable, so if this is done inside a custom -callable, you must call the returned callable, for example:

-
async def get_prefix(bot, message):
-    extras = await prefixes_for(message.guild) # returns a list
-    return commands.when_mentioned_or(*extras)(bot, message)
-
-
-
-
-

See also

-

when_mentioned()

-
-
- -
-
-

Event Reference

-

These events function similar to the regular events, except they -are custom to the command extension module.

-
-
-discord.ext.commands.on_command_error(ctx, error)
-

An error handler that is called when an error is raised -inside a command either through user input error, check -failure, or an error in your own code.

-

A default one is provided (Bot.on_command_error()).

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context.

  • -
  • error (CommandError derived) – The error that was raised.

  • -
-
-
-
- -
-
-discord.ext.commands.on_command(ctx)
-

An event that is called when a command is found and is about to be invoked.

-

This event is called regardless of whether the command itself succeeds via -error or completes.

-
-
Parameters
-

ctx (Context) – The invocation context.

-
-
-
- -
-
-discord.ext.commands.on_command_completion(ctx)
-

An event that is called when a command has completed its invocation.

-

This event is called only if the command succeeded, i.e. all checks have -passed and the user input it correctly.

-
-
Parameters
-

ctx (Context) – The invocation context.

-
-
-
- -
-
-

Commands

-
-

Decorators

-
-
-@discord.ext.commands.command(name=..., cls=..., **attrs)
-

A decorator that transforms a function into a Command -or if called with group(), Group.

-

By default the help attribute is received automatically from the -docstring of the function and is cleaned up with the use of -inspect.cleandoc. If the docstring is bytes, then it is decoded -into str using utf-8 encoding.

-

All checks added using the check() & co. decorators are added into -the function. There is no way to supply your own checks through this -decorator.

-
-
Parameters
-
    -
  • name (str) – The name to create the command with. By default this uses the -function name unchanged.

  • -
  • cls – The class to construct with. By default this is Command. -You usually do not change this.

  • -
  • attrs – Keyword arguments to pass into the construction of the class denoted -by cls.

  • -
-
-
Raises
-

TypeError – If the function is not a coroutine or is already a command.

-
-
-
- -
-
-@discord.ext.commands.group(name=..., cls=..., **attrs)
-

A decorator that transforms a function into a Group.

-

This is similar to the command() decorator but the cls -parameter is set to Group by default.

-
-

Changed in version 1.1: The cls parameter can now be passed.

-
-
- -
-
-

Command

-
-
-class discord.ext.commands.Command(*args, **kwargs)
-

A class that implements the protocol for a bot text command.

-

These are not created manually, instead they are created via the -decorator or functional interface.

-
-
-name
-

The name of the command.

-
-
Type
-

str

-
-
-
- -
-
-callback
-

The coroutine that is executed when the command is called.

-
-
Type
-

coroutine

-
-
-
- -
-
-help
-

The long help text for the command.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-brief
-

The short help text for the command.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-usage
-

A replacement for arguments in the default help text.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-aliases
-

The list of aliases the command can be invoked under.

-
-
Type
-

Union[List[str], Tuple[str]]

-
-
-
- -
-
-enabled
-

A boolean that indicates if the command is currently enabled. -If the command is invoked while it is disabled, then -DisabledCommand is raised to the on_command_error() -event. Defaults to True.

-
-
Type
-

bool

-
-
-
- -
-
-parent
-

The parent group that this command belongs to. None if there -isn’t one.

-
-
Type
-

Optional[Group]

-
-
-
- -
-
-cog
-

The cog that this command belongs to. None if there isn’t one.

-
-
Type
-

Optional[Cog]

-
-
-
- -
-
-checks
-

A list of predicates that verifies if the command could be executed -with the given Context as the sole parameter. If an exception -is necessary to be thrown to signal failure, then one inherited from -CommandError should be used. Note that if the checks fail then -CheckFailure exception is raised to the on_command_error() -event.

-
-
Type
-

List[Callable[[Context], bool]]

-
-
-
- -
-
-description
-

The message prefixed into the default help command.

-
-
Type
-

str

-
-
-
- -
-
-hidden
-

If True, the default help command does not show this in the -help output.

-
-
Type
-

bool

-
-
-
- -
-
-rest_is_raw
-

If False and a keyword-only argument is provided then the keyword -only argument is stripped and handled as if it was a regular argument -that handles MissingRequiredArgument and default values in a -regular matter rather than passing the rest completely raw. If True -then the keyword-only argument will pass in the rest of the arguments -in a completely raw matter. Defaults to False.

-
-
Type
-

bool

-
-
-
- -
-
-invoked_subcommand
-

The subcommand that was invoked, if any.

-
-
Type
-

Optional[Command]

-
-
-
- -
-
-require_var_positional
-

If True and a variadic positional argument is specified, requires -the user to specify at least one argument. Defaults to False.

-
-

New in version 1.5.

-
-
-
Type
-

bool

-
-
-
- -
-
-ignore_extra
-

If True, ignores extraneous strings passed to a command if all its -requirements are met (e.g. ?foo a b c when only expecting a -and b). Otherwise on_command_error() and local error handlers -are called with TooManyArguments. Defaults to True.

-
-
Type
-

bool

-
-
-
- -
-
-cooldown_after_parsing
-

If True, cooldown processing is done after argument parsing, -which calls converters. If False then cooldown processing is done -first and then the converters are called second. Defaults to False.

-
-
Type
-

bool

-
-
-
- -
-
-extras
-

A dict of user provided extras to attach to the Command.

-
-

New in version 2.0.

-
-
-

Note

-

This object may be copied by the library.

-
-
-
Type
-

dict

-
-
-
- -
-
-message_command
-

Whether to process this command based on messages.

-

This overwrites the global message_commands parameter of Bot.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[bool]

-
-
-
- -
-
-slash_command
-

Whether to upload and process this command as a slash command.

-

This overwrites the global slash_commands parameter of Bot.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[bool]

-
-
-
- -
-
-slash_command_guilds
-

If this is set, only upload this slash command to these guild IDs.

-

This overwrites the global slash_command_guilds parameter of Bot.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[List[int]]

-
-
-
- -
-
-option_descriptions
-

The unpacked option descriptions from Option.

-
-

New in version 2.0.

-
-
-
Type
-

Dict[str, str]

-
-
-
- -
-
-@after_invoke
-

A decorator that registers a coroutine as a post-invoke hook.

-

A post-invoke hook is called directly after the command is -called. This makes it a useful function to clean-up database -connections or any type of clean up required.

-

This post-invoke hook takes a sole parameter, a Context.

-

See Bot.after_invoke() for more info.

-
-
Parameters
-

coro (coroutine) – The coroutine to register as the post-invoke hook.

-
-
Raises
-

TypeError – The coroutine passed is not actually a coroutine.

-
-
-
- -
-
-@before_invoke
-

A decorator that registers a coroutine as a pre-invoke hook.

-

A pre-invoke hook is called directly before the command is -called. This makes it a useful function to set up database -connections or any type of set up required.

-

This pre-invoke hook takes a sole parameter, a Context.

-

See Bot.before_invoke() for more info.

-
-
Parameters
-

coro (coroutine) – The coroutine to register as the pre-invoke hook.

-
-
Raises
-

TypeError – The coroutine passed is not actually a coroutine.

-
-
-
- -
-
-@error
-

A decorator that registers a coroutine as a local error handler.

-

A local error handler is an on_command_error() event limited to -a single command. However, the on_command_error() is still -invoked afterwards as the catch-all.

-
-
Parameters
-

coro (coroutine) – The coroutine to register as the local error handler.

-
-
Raises
-

TypeError – The coroutine passed is not actually a coroutine.

-
-
-
- -
-
-add_check(func)
-

Adds a check to the command.

-

This is the non-decorator interface to check().

-
-

New in version 1.3.

-
-
-
Parameters
-

func – The function that will be used as a check.

-
-
-
- -
-
-remove_check(func)
-

Removes a check from the command.

-

This function is idempotent and will not raise an exception -if the function is not in the command’s checks.

-
-

New in version 1.3.

-
-
-
Parameters
-

func – The function to remove from the checks.

-
-
-
- -
-
-update(**kwargs)
-

Updates Command instance with updated attribute.

-

This works similarly to the command() decorator in terms -of parameters in that they are passed to the Command or -subclass constructors, sans the name and callback.

-
- -
-
-await __call__(context, *args, **kwargs)
-

This function is a coroutine.

-

Calls the internal callback that the command holds.

-
-

Note

-

This bypasses all mechanisms – including checks, converters, -invoke hooks, cooldowns, etc. You must take care to pass -the proper arguments and types to this function.

-
-
-

New in version 1.3.

-
-
- -
-
-copy()
-

Creates a copy of this command.

-
-
Returns
-

A new instance of this command.

-
-
Return type
-

Command

-
-
-
- -
-
-property clean_params
-

Dict[str, inspect.Parameter]: -Retrieves the parameter dictionary without the context or self parameters.

-

Useful for inspecting signature.

-
- -
-
-property full_parent_name
-

Retrieves the fully qualified parent command name.

-

This the base command name required to execute it. For example, -in ?one two three the parent name would be one two.

-
-
Type
-

str

-
-
-
- -
-
-property parents
-

Retrieves the parents of this command.

-

If the command has no parents then it returns an empty list.

-

For example in commands ?a b c test, the parents are [c, b, a].

-
-

New in version 1.1.

-
-
-
Type
-

List[Group]

-
-
-
- -
-
-property root_parent
-

Retrieves the root parent of this command.

-

If the command has no parents then it returns None.

-

For example in commands ?a b c test, the root parent is a.

-
-
Type
-

Optional[Group]

-
-
-
- -
-
-property qualified_name
-

Retrieves the fully qualified command name.

-

This is the full parent name with the command name as well. -For example, in ?one two three the qualified name would be -one two three.

-
-
Type
-

str

-
-
-
- -
-
-is_on_cooldown(ctx)
-

Checks whether the command is currently on cooldown.

-
-
Parameters
-

ctx (Context) – The invocation context to use when checking the commands cooldown status.

-
-
Returns
-

A boolean indicating if the command is on cooldown.

-
-
Return type
-

bool

-
-
-
- -
-
-reset_cooldown(ctx)
-

Resets the cooldown on this command.

-
-
Parameters
-

ctx (Context) – The invocation context to reset the cooldown under.

-
-
-
- -
-
-get_cooldown_retry_after(ctx)
-

Retrieves the amount of seconds before this command can be tried again.

-
-

New in version 1.4.

-
-
-
Parameters
-

ctx (Context) – The invocation context to retrieve the cooldown from.

-
-
Returns
-

The amount of time left on this command’s cooldown in seconds. -If this is 0.0 then the command isn’t on cooldown.

-
-
Return type
-

float

-
-
-
- -
-
-has_error_handler()
-

bool: Checks whether the command has an error handler registered.

-
-

New in version 1.7.

-
-
- -
-
-property cog_name
-

The name of the cog this command belongs to, if any.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-property short_doc
-

Gets the “short” documentation of a command.

-

By default, this is the brief attribute. -If that lookup leads to an empty string then the first line of the -help attribute is used instead.

-
-
Type
-

str

-
-
-
- -
-
-property signature
-

Returns a POSIX-like signature useful for help command output.

-
-
Type
-

str

-
-
-
- -
-
-await can_run(ctx)
-

This function is a coroutine.

-

Checks if the command can be executed by checking all the predicates -inside the checks attribute. This also checks whether the -command is disabled.

-
-

Changed in version 1.3: Checks whether the command is disabled or not

-
-
-
Parameters
-

ctx (Context) – The ctx of the command currently being invoked.

-
-
Raises
-

CommandError – Any command error that was raised during a check call will be propagated - by this function.

-
-
Returns
-

A boolean indicating if the command can be invoked.

-
-
Return type
-

bool

-
-
-
- -
- -
-
-

Group

-
-
-class discord.ext.commands.Group(*args, **kwargs)
-

A class that implements a grouping protocol for commands to be -executed as subcommands.

-

This class is a subclass of Command and thus all options -valid in Command are valid in here as well.

-
-
-invoke_without_command
-

Indicates if the group callback should begin parsing and -invocation only if no subcommand was found. Useful for -making it an error handling function to tell the user that -no subcommand was found or to have different functionality -in case no subcommand was found. If this is False, then -the group callback will always be invoked first. This means -that the checks and the parsing dictated by its parameters -will be executed. Defaults to False.

-
-
Type
-

bool

-
-
-
- -
-
-case_insensitive
-

Indicates if the group’s commands should be case insensitive. -Defaults to False.

-
-
Type
-

bool

-
-
-
- -
-
-@after_invoke
-

A decorator that registers a coroutine as a post-invoke hook.

-

A post-invoke hook is called directly after the command is -called. This makes it a useful function to clean-up database -connections or any type of clean up required.

-

This post-invoke hook takes a sole parameter, a Context.

-

See Bot.after_invoke() for more info.

-
-
Parameters
-

coro (coroutine) – The coroutine to register as the post-invoke hook.

-
-
Raises
-

TypeError – The coroutine passed is not actually a coroutine.

-
-
-
- -
-
-@before_invoke
-

A decorator that registers a coroutine as a pre-invoke hook.

-

A pre-invoke hook is called directly before the command is -called. This makes it a useful function to set up database -connections or any type of set up required.

-

This pre-invoke hook takes a sole parameter, a Context.

-

See Bot.before_invoke() for more info.

-
-
Parameters
-

coro (coroutine) – The coroutine to register as the pre-invoke hook.

-
-
Raises
-

TypeError – The coroutine passed is not actually a coroutine.

-
-
-
- -
-
-@command(*args, **kwargs)
-

A shortcut decorator that invokes command() and adds it to -the internal command list via add_command().

-
-
Returns
-

A decorator that converts the provided method into a Command, adds it to the bot, then returns it.

-
-
Return type
-

Callable[…, Command]

-
-
-
- -
-
-@error
-

A decorator that registers a coroutine as a local error handler.

-

A local error handler is an on_command_error() event limited to -a single command. However, the on_command_error() is still -invoked afterwards as the catch-all.

-
-
Parameters
-

coro (coroutine) – The coroutine to register as the local error handler.

-
-
Raises
-

TypeError – The coroutine passed is not actually a coroutine.

-
-
-
- -
-
-@group(*args, **kwargs)
-

A shortcut decorator that invokes group() and adds it to -the internal command list via add_command().

-
-
Returns
-

A decorator that converts the provided method into a Group, adds it to the bot, then returns it.

-
-
Return type
-

Callable[…, Group]

-
-
-
- -
-
-copy()
-

Creates a copy of this Group.

-
-
Returns
-

A new instance of this group.

-
-
Return type
-

Group

-
-
-
- -
-
-add_check(func)
-

Adds a check to the command.

-

This is the non-decorator interface to check().

-
-

New in version 1.3.

-
-
-
Parameters
-

func – The function that will be used as a check.

-
-
-
- -
-
-add_command(command)
-

Adds a Command into the internal list of commands.

-

This is usually not called, instead the command() or -group() shortcut decorators are used instead.

-
-

Changed in version 1.4: Raise CommandRegistrationError instead of generic ClientException

-
-
-
Parameters
-

command (Command) – The command to add.

-
-
Raises
-
-
-
-
- -
-
-await can_run(ctx)
-

This function is a coroutine.

-

Checks if the command can be executed by checking all the predicates -inside the checks attribute. This also checks whether the -command is disabled.

-
-

Changed in version 1.3: Checks whether the command is disabled or not

-
-
-
Parameters
-

ctx (Context) – The ctx of the command currently being invoked.

-
-
Raises
-

CommandError – Any command error that was raised during a check call will be propagated - by this function.

-
-
Returns
-

A boolean indicating if the command can be invoked.

-
-
Return type
-

bool

-
-
-
- -
-
-property clean_params
-

Dict[str, inspect.Parameter]: -Retrieves the parameter dictionary without the context or self parameters.

-

Useful for inspecting signature.

-
- -
-
-property cog_name
-

The name of the cog this command belongs to, if any.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-property commands
-

A unique set of commands without aliases that are registered.

-
-
Type
-

Set[Command]

-
-
-
- -
-
-property full_parent_name
-

Retrieves the fully qualified parent command name.

-

This the base command name required to execute it. For example, -in ?one two three the parent name would be one two.

-
-
Type
-

str

-
-
-
- -
-
-get_command(name)
-

Get a Command from the internal list -of commands.

-

This could also be used as a way to get aliases.

-

The name could be fully qualified (e.g. 'foo bar') will get -the subcommand bar of the group command foo. If a -subcommand is not found then None is returned just as usual.

-
-
Parameters
-

name (str) – The name of the command to get.

-
-
Returns
-

The command that was requested. If not found, returns None.

-
-
Return type
-

Optional[Command]

-
-
-
- -
-
-get_cooldown_retry_after(ctx)
-

Retrieves the amount of seconds before this command can be tried again.

-
-

New in version 1.4.

-
-
-
Parameters
-

ctx (Context) – The invocation context to retrieve the cooldown from.

-
-
Returns
-

The amount of time left on this command’s cooldown in seconds. -If this is 0.0 then the command isn’t on cooldown.

-
-
Return type
-

float

-
-
-
- -
-
-has_error_handler()
-

bool: Checks whether the command has an error handler registered.

-
-

New in version 1.7.

-
-
- -
-
-is_on_cooldown(ctx)
-

Checks whether the command is currently on cooldown.

-
-
Parameters
-

ctx (Context) – The invocation context to use when checking the commands cooldown status.

-
-
Returns
-

A boolean indicating if the command is on cooldown.

-
-
Return type
-

bool

-
-
-
- -
-
-property parents
-

Retrieves the parents of this command.

-

If the command has no parents then it returns an empty list.

-

For example in commands ?a b c test, the parents are [c, b, a].

-
-

New in version 1.1.

-
-
-
Type
-

List[Group]

-
-
-
- -
-
-property qualified_name
-

Retrieves the fully qualified command name.

-

This is the full parent name with the command name as well. -For example, in ?one two three the qualified name would be -one two three.

-
-
Type
-

str

-
-
-
- -
-
-remove_check(func)
-

Removes a check from the command.

-

This function is idempotent and will not raise an exception -if the function is not in the command’s checks.

-
-

New in version 1.3.

-
-
-
Parameters
-

func – The function to remove from the checks.

-
-
-
- -
-
-remove_command(name)
-

Remove a Command from the internal list -of commands.

-

This could also be used as a way to remove aliases.

-
-
Parameters
-

name (str) – The name of the command to remove.

-
-
Returns
-

The command that was removed. If the name is not valid then -None is returned instead.

-
-
Return type
-

Optional[Command]

-
-
-
- -
-
-reset_cooldown(ctx)
-

Resets the cooldown on this command.

-
-
Parameters
-

ctx (Context) – The invocation context to reset the cooldown under.

-
-
-
- -
-
-property root_parent
-

Retrieves the root parent of this command.

-

If the command has no parents then it returns None.

-

For example in commands ?a b c test, the root parent is a.

-
-
Type
-

Optional[Group]

-
-
-
- -
-
-property short_doc
-

Gets the “short” documentation of a command.

-

By default, this is the brief attribute. -If that lookup leads to an empty string then the first line of the -help attribute is used instead.

-
-
Type
-

str

-
-
-
- -
-
-property signature
-

Returns a POSIX-like signature useful for help command output.

-
-
Type
-

str

-
-
-
- -
-
-update(**kwargs)
-

Updates Command instance with updated attribute.

-

This works similarly to the command() decorator in terms -of parameters in that they are passed to the Command or -subclass constructors, sans the name and callback.

-
- -
-
-for ... in walk_commands()
-

An iterator that recursively walks through all commands and subcommands.

-
-

Changed in version 1.4: Duplicates due to aliases are no longer returned

-
-
-
Yields
-

Union[Command, Group] – A command or group from the internal list of commands.

-
-
-
- -
- -
-
-

GroupMixin

-
- -Attributes -
- -Methods -
-
-class discord.ext.commands.GroupMixin(*args, **kwargs)
-

A mixin that implements common functionality for classes that behave -similar to Group and are allowed to register commands.

-
-
-all_commands
-

A mapping of command name to Command -objects.

-
-
Type
-

dict

-
-
-
- -
-
-case_insensitive
-

Whether the commands should be case insensitive. Defaults to True.

-
-
Type
-

bool

-
-
-
- -
-
-@command(*args, **kwargs)
-

A shortcut decorator that invokes command() and adds it to -the internal command list via add_command().

-
-
Returns
-

A decorator that converts the provided method into a Command, adds it to the bot, then returns it.

-
-
Return type
-

Callable[…, Command]

-
-
-
- -
-
-@group(*args, **kwargs)
-

A shortcut decorator that invokes group() and adds it to -the internal command list via add_command().

-
-
Returns
-

A decorator that converts the provided method into a Group, adds it to the bot, then returns it.

-
-
Return type
-

Callable[…, Group]

-
-
-
- -
-
-property commands
-

A unique set of commands without aliases that are registered.

-
-
Type
-

Set[Command]

-
-
-
- -
-
-add_command(command)
-

Adds a Command into the internal list of commands.

-

This is usually not called, instead the command() or -group() shortcut decorators are used instead.

-
-

Changed in version 1.4: Raise CommandRegistrationError instead of generic ClientException

-
-
-
Parameters
-

command (Command) – The command to add.

-
-
Raises
-
-
-
-
- -
-
-remove_command(name)
-

Remove a Command from the internal list -of commands.

-

This could also be used as a way to remove aliases.

-
-
Parameters
-

name (str) – The name of the command to remove.

-
-
Returns
-

The command that was removed. If the name is not valid then -None is returned instead.

-
-
Return type
-

Optional[Command]

-
-
-
- -
-
-for ... in walk_commands()
-

An iterator that recursively walks through all commands and subcommands.

-
-

Changed in version 1.4: Duplicates due to aliases are no longer returned

-
-
-
Yields
-

Union[Command, Group] – A command or group from the internal list of commands.

-
-
-
- -
-
-get_command(name)
-

Get a Command from the internal list -of commands.

-

This could also be used as a way to get aliases.

-

The name could be fully qualified (e.g. 'foo bar') will get -the subcommand bar of the group command foo. If a -subcommand is not found then None is returned just as usual.

-
-
Parameters
-

name (str) – The name of the command to get.

-
-
Returns
-

The command that was requested. If not found, returns None.

-
-
Return type
-

Optional[Command]

-
-
-
- -
- -
-
-
-

Cogs

-
-

Cog

-
- -Attributes -
-
-class discord.ext.commands.Cog(*args, **kwargs)
-

The base class that all cogs must inherit from.

-

A cog is a collection of commands, listeners, and optional state to -help group commands together. More information on them can be found on -the Cogs page.

-

When inheriting from this class, the options shown in CogMeta -are equally valid here.

-
-
-get_commands()
-
-
Returns
-

A list of Commands that are -defined inside this cog.

-
-

Note

-

This does not include subcommands.

-
-

-
-
Return type
-

List[Command]

-
-
-
- -
-
-property qualified_name
-

Returns the cog’s specified name, not the class name.

-
-
Type
-

str

-
-
-
- -
-
-property description
-

Returns the cog’s description, typically the cleaned docstring.

-
-
Type
-

str

-
-
-
- -
-
-for ... in walk_commands()
-

An iterator that recursively walks through this cog’s commands and subcommands.

-
-
Yields
-

Union[Command, Group] – A command or group from the cog.

-
-
-
- -
-
-get_listeners()
-

Returns a list of (name, function) listener pairs that are defined in this cog.

-
-
Returns
-

The listeners defined in this cog.

-
-
Return type
-

List[Tuple[str, coroutine]]

-
-
-
- -
-
-classmethod listener(name=...)
-

A decorator that marks a function as a listener.

-

This is the cog equivalent of Bot.listen().

-
-
Parameters
-

name (str) – The name of the event being listened to. If not provided, it -defaults to the function’s name.

-
-
Raises
-

TypeError – The function is not a coroutine function or a string was not passed as - the name.

-
-
-
- -
-
-has_error_handler()
-

bool: Checks whether the cog has an error handler.

-
-

New in version 1.7.

-
-
- -
-
-cog_unload()
-

A special method that is called when the cog gets removed.

-

This function cannot be a coroutine. It must be a regular -function.

-

Subclasses must replace this if they want special unloading behaviour.

-
- -
-
-bot_check_once(ctx)
-

A special method that registers as a Bot.check_once() -check.

-

This function can be a coroutine and must take a sole parameter, -ctx, to represent the Context.

-
- -
-
-bot_check(ctx)
-

A special method that registers as a Bot.check() -check.

-

This function can be a coroutine and must take a sole parameter, -ctx, to represent the Context.

-
- -
-
-cog_check(ctx)
-

A special method that registers as a check() -for every command and subcommand in this cog.

-

This function can be a coroutine and must take a sole parameter, -ctx, to represent the Context.

-
- -
-
-await cog_command_error(ctx, error)
-

A special method that is called whenever an error -is dispatched inside this cog.

-

This is similar to on_command_error() except only applying -to the commands inside this cog.

-

This must be a coroutine.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context where the error happened.

  • -
  • error (CommandError) – The error that happened.

  • -
-
-
-
- -
-
-await cog_before_invoke(ctx)
-

A special method that acts as a cog local pre-invoke hook.

-

This is similar to Command.before_invoke().

-

This must be a coroutine.

-
-
Parameters
-

ctx (Context) – The invocation context.

-
-
-
- -
-
-await cog_after_invoke(ctx)
-

A special method that acts as a cog local post-invoke hook.

-

This is similar to Command.after_invoke().

-

This must be a coroutine.

-
-
Parameters
-

ctx (Context) – The invocation context.

-
-
-
- -
- -
-
-

CogMeta

-
- -Attributes -
-
-class discord.ext.commands.CogMeta(*args, **kwargs)
-

A metaclass for defining a cog.

-

Note that you should probably not use this directly. It is exposed -purely for documentation purposes along with making custom metaclasses to intermix -with other metaclasses such as the abc.ABCMeta metaclass.

-

For example, to create an abstract cog mixin class, the following would be done.

-
import abc
-
-class CogABCMeta(commands.CogMeta, abc.ABCMeta):
-    pass
-
-class SomeMixin(metaclass=abc.ABCMeta):
-    pass
-
-class SomeCogMixin(SomeMixin, commands.Cog, metaclass=CogABCMeta):
-    pass
-
-
-
-

Note

-

When passing an attribute of a metaclass that is documented below, note -that you must pass it as a keyword-only argument to the class creation -like the following example:

-
class MyCog(commands.Cog, name='My Cog'):
-    pass
-
-
-
-
-
-name
-

The cog name. By default, it is the name of the class with no modification.

-
-
Type
-

str

-
-
-
- -
-
-description
-

The cog description. By default, it is the cleaned docstring of the class.

-
-

New in version 1.6.

-
-
-
Type
-

str

-
-
-
- -
-
-command_attrs
-

A list of attributes to apply to every command inside this cog. The dictionary -is passed into the Command options at __init__. -If you specify attributes inside the command attribute in the class, it will -override the one specified inside this attribute. For example:

-
class MyCog(commands.Cog, command_attrs=dict(hidden=True)):
-    @commands.command()
-    async def foo(self, ctx):
-        pass # hidden -> True
-
-    @commands.command(hidden=False)
-    async def bar(self, ctx):
-        pass # hidden -> False
-
-
-
-
Type
-

dict

-
-
-
- -
- -
-
-
-

Help Commands

-
-

HelpCommand

-
-
-class discord.ext.commands.HelpCommand(*args, **kwargs)
-

The base implementation for help command formatting.

-
-

Note

-

Internally instances of this class are deep copied every time -the command itself is invoked to prevent a race condition -mentioned in GH-2123.

-

This means that relying on the state of this class to be -the same between command invocations would not work as expected.

-
-
-
-context
-

The context that invoked this help formatter. This is generally set after -the help command assigned, command_callback(), has been called.

-
-
Type
-

Optional[Context]

-
-
-
- -
-
-show_hidden
-

Specifies if hidden commands should be shown in the output. -Defaults to False.

-
-
Type
-

bool

-
-
-
- -
-
-verify_checks
-

Specifies if commands should have their Command.checks called -and verified. If True, always calls Command.checks. -If None, only calls Command.checks in a guild setting. -If False, never calls Command.checks. Defaults to True.

-
-

Changed in version 1.7.

-
-
-
Type
-

Optional[bool]

-
-
-
- -
-
-command_attrs
-

A dictionary of options to pass in for the construction of the help command. -This allows you to change the command behaviour without actually changing -the implementation of the command. The attributes will be the same as the -ones passed in the Command constructor.

-
-
Type
-

dict

-
-
-
- -
-
-add_check(func)
-

Adds a check to the help command.

-
-

New in version 1.4.

-
-
-
Parameters
-

func – The function that will be used as a check.

-
-
-
- -
-
-remove_check(func)
-

Removes a check from the help command.

-

This function is idempotent and will not raise an exception if -the function is not in the command’s checks.

-
-

New in version 1.4.

-
-
-
Parameters
-

func – The function to remove from the checks.

-
-
-
- -
-
-get_bot_mapping()
-

Retrieves the bot mapping passed to send_bot_help().

-
- -
-
-property invoked_with
-

Similar to Context.invoked_with except properly handles -the case where Context.send_help() is used.

-

If the help command was used regularly then this returns -the Context.invoked_with attribute. Otherwise, if -it the help command was called using Context.send_help() -then it returns the internal command name of the help command.

-
-
Returns
-

The command name that triggered this invocation.

-
-
Return type
-

str

-
-
-
- -
-
-get_command_signature(command)
-

Retrieves the signature portion of the help page.

-
-
Parameters
-

command (Command) – The command to get the signature of.

-
-
Returns
-

The signature for the command.

-
-
Return type
-

str

-
-
-
- -
-
-remove_mentions(string)
-

Removes mentions from the string to prevent abuse.

-

This includes @everyone, @here, member mentions and role mentions.

-
-
Returns
-

The string with mentions removed.

-
-
Return type
-

str

-
-
-
- -
-
-property cog
-

A property for retrieving or setting the cog for the help command.

-

When a cog is set for the help command, it is as-if the help command -belongs to that cog. All cog special methods will apply to the help -command and it will be automatically unset on unload.

-

To unbind the cog from the help command, you can set it to None.

-
-
Returns
-

The cog that is currently set for the help command.

-
-
Return type
-

Optional[Cog]

-
-
-
- -
-
-command_not_found(string)
-

This function could be a coroutine.

-

A method called when a command is not found in the help command. -This is useful to override for i18n.

-

Defaults to No command called {0} found.

-
-
Parameters
-

string (str) – The string that contains the invalid command. Note that this has -had mentions removed to prevent abuse.

-
-
Returns
-

The string to use when a command has not been found.

-
-
Return type
-

str

-
-
-
- -
-
-subcommand_not_found(command, string)
-

This function could be a coroutine.

-

A method called when a command did not have a subcommand requested in the help command. -This is useful to override for i18n.

-

Defaults to either:

-
    -
  • -
    'Command "{command.qualified_name}" has no subcommands.'
      -
    • If there is no subcommand in the command parameter.

    • -
    -
    -
    -
  • -
  • -
    'Command "{command.qualified_name}" has no subcommand named {string}'
      -
    • If the command parameter has subcommands but not one named string.

    • -
    -
    -
    -
  • -
-
-
Parameters
-
    -
  • command (Command) – The command that did not have the subcommand requested.

  • -
  • string (str) – The string that contains the invalid subcommand. Note that this has -had mentions removed to prevent abuse.

  • -
-
-
Returns
-

The string to use when the command did not have the subcommand requested.

-
-
Return type
-

str

-
-
-
- -
-
-await filter_commands(commands, *, sort=False, key=None)
-

This function is a coroutine.

-

Returns a filtered list of commands and optionally sorts them.

-

This takes into account the verify_checks and show_hidden -attributes.

-
-
Parameters
-
    -
  • commands (Iterable[Command]) – An iterable of commands that are getting filtered.

  • -
  • sort (bool) – Whether to sort the result.

  • -
  • key (Optional[Callable[Command, Any]]) – An optional key function to pass to sorted() that -takes a Command as its sole parameter. If sort is -passed as True then this will default as the command name.

  • -
-
-
Returns
-

A list of commands that passed the filter.

-
-
Return type
-

List[Command]

-
-
-
- -
-
-get_max_size(commands)
-

Returns the largest name length of the specified command list.

-
-
Parameters
-

commands (Sequence[Command]) – A sequence of commands to check for the largest size.

-
-
Returns
-

The maximum width of the commands.

-
-
Return type
-

int

-
-
-
- -
-
-get_destination()
-

Returns the Messageable where the help command will be output.

-

You can override this method to customise the behaviour.

-

By default this returns the context’s channel.

-
-
Returns
-

The destination where the help command will be output.

-
-
Return type
-

abc.Messageable

-
-
-
- -
-
-await send_error_message(error)
-

This function is a coroutine.

-

Handles the implementation when an error happens in the help command. -For example, the result of command_not_found() will be passed here.

-

You can override this method to customise the behaviour.

-

By default, this sends the error message to the destination -specified by get_destination().

-
-

Note

-

You can access the invocation context with HelpCommand.context.

-
-
-
Parameters
-

error (str) – The error message to display to the user. Note that this has -had mentions removed to prevent abuse.

-
-
-
- -
-
-await on_help_command_error(ctx, error)
-

This function is a coroutine.

-

The help command’s error handler, as specified by Error Handling.

-

Useful to override if you need some specific behaviour when the error handler -is called.

-

By default this method does nothing and just propagates to the default -error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context.

  • -
  • error (CommandError) – The error that was raised.

  • -
-
-
-
- -
-
-await send_bot_help(mapping)
-

This function is a coroutine.

-

Handles the implementation of the bot command page in the help command. -This function is called when the help command is called with no arguments.

-

It should be noted that this method does not return anything – rather the -actual message sending should be done inside this method. Well behaved subclasses -should use get_destination() to know where to send, as this is a customisation -point for other users.

-

You can override this method to customise the behaviour.

-
-

Note

-

You can access the invocation context with HelpCommand.context.

-

Also, the commands in the mapping are not filtered. To do the filtering -you will have to call filter_commands() yourself.

-
-
-
Parameters
-

mapping (Mapping[Optional[Cog], List[Command]]) – A mapping of cogs to commands that have been requested by the user for help. -The key of the mapping is the Cog that the command belongs to, or -None if there isn’t one, and the value is a list of commands that belongs to that cog.

-
-
-
- -
-
-await send_cog_help(cog)
-

This function is a coroutine.

-

Handles the implementation of the cog page in the help command. -This function is called when the help command is called with a cog as the argument.

-

It should be noted that this method does not return anything – rather the -actual message sending should be done inside this method. Well behaved subclasses -should use get_destination() to know where to send, as this is a customisation -point for other users.

-

You can override this method to customise the behaviour.

-
-

Note

-

You can access the invocation context with HelpCommand.context.

-

To get the commands that belong to this cog see Cog.get_commands(). -The commands returned not filtered. To do the filtering you will have to call -filter_commands() yourself.

-
-
-
Parameters
-

cog (Cog) – The cog that was requested for help.

-
-
-
- -
-
-await send_group_help(group)
-

This function is a coroutine.

-

Handles the implementation of the group page in the help command. -This function is called when the help command is called with a group as the argument.

-

It should be noted that this method does not return anything – rather the -actual message sending should be done inside this method. Well behaved subclasses -should use get_destination() to know where to send, as this is a customisation -point for other users.

-

You can override this method to customise the behaviour.

-
-

Note

-

You can access the invocation context with HelpCommand.context.

-

To get the commands that belong to this group without aliases see -Group.commands. The commands returned not filtered. To do the -filtering you will have to call filter_commands() yourself.

-
-
-
Parameters
-

group (Group) – The group that was requested for help.

-
-
-
- -
-
-await send_command_help(command)
-

This function is a coroutine.

-

Handles the implementation of the single command page in the help command.

-

It should be noted that this method does not return anything – rather the -actual message sending should be done inside this method. Well behaved subclasses -should use get_destination() to know where to send, as this is a customisation -point for other users.

-

You can override this method to customise the behaviour.

-
-

Note

-

You can access the invocation context with HelpCommand.context.

-
-
-

Showing Help

-

There are certain attributes and methods that are helpful for a help command -to show such as the following:

- -

There are more than just these attributes but feel free to play around with -these to help you get started to get the output that you want.

-
-
-
Parameters
-

command (Command) – The command that was requested for help.

-
-
-
- -
-
-await prepare_help_command(ctx, command=None)
-

This function is a coroutine.

-

A low level method that can be used to prepare the help command -before it does anything. For example, if you need to prepare -some state in your subclass before the command does its processing -then this would be the place to do it.

-

The default implementation does nothing.

-
-

Note

-

This is called inside the help command callback body. So all -the usual rules that happen inside apply here as well.

-
-
-
Parameters
-
    -
  • ctx (Context) – The invocation context.

  • -
  • command (Optional[str]) – The argument passed to the help command.

  • -
-
-
-
- -
-
-await command_callback(ctx, *, command=None)
-

This function is a coroutine.

-

The actual implementation of the help command.

-

It is not recommended to override this method and instead change -the behaviour through the methods that actually get dispatched.

- -
- -
- -
-
-

DefaultHelpCommand

-
-
-class discord.ext.commands.DefaultHelpCommand(*args, **kwargs)
-

The implementation of the default help command.

-

This inherits from HelpCommand.

-

It extends it with the following attributes.

-
-
-width
-

The maximum number of characters that fit in a line. -Defaults to 80.

-
-
Type
-

int

-
-
-
- -
-
-sort_commands
-

Whether to sort the commands in the output alphabetically. Defaults to True.

-
-
Type
-

bool

-
-
-
- -
-
-dm_help
-

A tribool that indicates if the help command should DM the user instead of -sending it to the channel it received it from. If the boolean is set to -True, then all help output is DM’d. If False, none of the help -output is DM’d. If None, then the bot will only DM when the help -message becomes too long (dictated by more than dm_help_threshold characters). -Defaults to False.

-
-
Type
-

Optional[bool]

-
-
-
- -
-
-dm_help_threshold
-

The number of characters the paginator must accumulate before getting DM’d to the -user if dm_help is set to None. Defaults to 1000.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-indent
-

How much to indent the commands from a heading. Defaults to 2.

-
-
Type
-

int

-
-
-
- -
-
-commands_heading
-

The command list’s heading string used when the help command is invoked with a category name. -Useful for i18n. Defaults to "Commands:"

-
-
Type
-

str

-
-
-
- -
-
-no_category
-

The string used when there is a command which does not belong to any category(cog). -Useful for i18n. Defaults to "No Category"

-
-
Type
-

str

-
-
-
- -
-
-paginator
-

The paginator used to paginate the help command output.

-
-
Type
-

Paginator

-
-
-
- -
-
-shorten_text(text)
-

str: Shortens text to fit into the width.

-
- -
-
-get_ending_note()
-

str: Returns help command’s ending note. This is mainly useful to override for i18n purposes.

-
- -
-
-add_indented_commands(commands, *, heading, max_size=None)
-

Indents a list of commands after the specified heading.

-

The formatting is added to the paginator.

-

The default implementation is the command name indented by -indent spaces, padded to max_size followed by -the command’s Command.short_doc and then shortened -to fit into the width.

-
-
Parameters
-
    -
  • commands (Sequence[Command]) – A list of commands to indent for output.

  • -
  • heading (str) – The heading to add to the output. This is only added -if the list of commands is greater than 0.

  • -
  • max_size (Optional[int]) – The max size to use for the gap between indents. -If unspecified, calls get_max_size() on the -commands parameter.

  • -
-
-
-
- -
-
-await send_pages()
-

A helper utility to send the page output from paginator to the destination.

-
- -
-
-add_command_formatting(command)
-

A utility function to format the non-indented block of commands and groups.

-
-
Parameters
-

command (Command) – The command to format.

-
-
-
- -
-
-get_destination()
-

Returns the Messageable where the help command will be output.

-

You can override this method to customise the behaviour.

-

By default this returns the context’s channel.

-
-
Returns
-

The destination where the help command will be output.

-
-
Return type
-

abc.Messageable

-
-
-
- -
- -
-
-

MinimalHelpCommand

-
-
-class discord.ext.commands.MinimalHelpCommand(*args, **kwargs)
-

An implementation of a help command with minimal output.

-

This inherits from HelpCommand.

-
-
-sort_commands
-

Whether to sort the commands in the output alphabetically. Defaults to True.

-
-
Type
-

bool

-
-
-
- -
-
-commands_heading
-

The command list’s heading string used when the help command is invoked with a category name. -Useful for i18n. Defaults to "Commands"

-
-
Type
-

str

-
-
-
- -
-
-aliases_heading
-

The alias list’s heading string used to list the aliases of the command. Useful for i18n. -Defaults to "Aliases:".

-
-
Type
-

str

-
-
-
- -
-
-dm_help
-

A tribool that indicates if the help command should DM the user instead of -sending it to the channel it received it from. If the boolean is set to -True, then all help output is DM’d. If False, none of the help -output is DM’d. If None, then the bot will only DM when the help -message becomes too long (dictated by more than dm_help_threshold characters). -Defaults to False.

-
-
Type
-

Optional[bool]

-
-
-
- -
-
-dm_help_threshold
-

The number of characters the paginator must accumulate before getting DM’d to the -user if dm_help is set to None. Defaults to 1000.

-
-
Type
-

Optional[int]

-
-
-
- -
-
-no_category
-

The string used when there is a command which does not belong to any category(cog). -Useful for i18n. Defaults to "No Category"

-
-
Type
-

str

-
-
-
- -
-
-paginator
-

The paginator used to paginate the help command output.

-
-
Type
-

Paginator

-
-
-
- -
-
-await send_pages()
-

A helper utility to send the page output from paginator to the destination.

-
- -
-
-get_opening_note()
-

Returns help command’s opening note. This is mainly useful to override for i18n purposes.

-

The default implementation returns

-
Use `{prefix}{command_name} [command]` for more info on a command.
-You can also use `{prefix}{command_name} [category]` for more info on a category.
-
-
-
-
Returns
-

The help command opening note.

-
-
Return type
-

str

-
-
-
- -
-
-get_command_signature(command)
-

Retrieves the signature portion of the help page.

-
-
Parameters
-

command (Command) – The command to get the signature of.

-
-
Returns
-

The signature for the command.

-
-
Return type
-

str

-
-
-
- -
-
-get_ending_note()
-

Return the help command’s ending note. This is mainly useful to override for i18n purposes.

-

The default implementation does nothing.

-
-
Returns
-

The help command ending note.

-
-
Return type
-

str

-
-
-
- -
-
-add_bot_commands_formatting(commands, heading)
-

Adds the minified bot heading with commands to the output.

-

The formatting should be added to the paginator.

-

The default implementation is a bold underline heading followed -by commands separated by an EN SPACE (U+2002) in the next line.

-
-
Parameters
-
    -
  • commands (Sequence[Command]) – A list of commands that belong to the heading.

  • -
  • heading (str) – The heading to add to the line.

  • -
-
-
-
- -
-
-add_subcommand_formatting(command)
-

Adds formatting information on a subcommand.

-

The formatting should be added to the paginator.

-

The default implementation is the prefix and the Command.qualified_name -optionally followed by an En dash and the command’s Command.short_doc.

-
-
Parameters
-

command (Command) – The command to show information of.

-
-
-
- -
-
-add_aliases_formatting(aliases)
-

Adds the formatting information on a command’s aliases.

-

The formatting should be added to the paginator.

-

The default implementation is the aliases_heading bolded -followed by a comma separated list of aliases.

-

This is not called if there are no aliases to format.

-
-
Parameters
-

aliases (Sequence[str]) – A list of aliases to format.

-
-
-
- -
-
-add_command_formatting(command)
-

A utility function to format commands and groups.

-
-
Parameters
-

command (Command) – The command to format.

-
-
-
- -
-
-get_destination()
-

Returns the Messageable where the help command will be output.

-

You can override this method to customise the behaviour.

-

By default this returns the context’s channel.

-
-
Returns
-

The destination where the help command will be output.

-
-
Return type
-

abc.Messageable

-
-
-
- -
- -
-
-

Paginator

-
- -Attributes -
- -Methods -
-
-class discord.ext.commands.Paginator(prefix='```', suffix='```', max_size=2000, linesep='\n')
-

A class that aids in paginating code blocks for Discord messages.

-
-
-
-len(x)
-

Returns the total number of characters in the paginator.

-
- -
-
-
-prefix
-

The prefix inserted to every page. e.g. three backticks.

-
-
Type
-

str

-
-
-
- -
-
-suffix
-

The suffix appended at the end of every page. e.g. three backticks.

-
-
Type
-

str

-
-
-
- -
-
-max_size
-

The maximum amount of codepoints allowed in a page.

-
-
Type
-

int

-
-
-
- -
-
-linesep
-
-
The character string inserted between lines. e.g. a newline character.
-

New in version 1.7.

-
-
-
-
-
Type
-

str

-
-
-
- -
-
-clear()
-

Clears the paginator to have no pages.

-
- -
-
-add_line(line='', *, empty=False)
-

Adds a line to the current page.

-

If the line exceeds the max_size then an exception -is raised.

-
-
Parameters
-
    -
  • line (str) – The line to add.

  • -
  • empty (bool) – Indicates if another empty line should be added.

  • -
-
-
Raises
-

RuntimeError – The line was too big for the current max_size.

-
-
-
- -
-
-close_page()
-

Prematurely terminate a page.

-
- -
-
-property pages
-

Returns the rendered list of pages.

-
-
Type
-

List[str]

-
-
-
- -
- -
-
-
-

Enums

-
-
-class discord.ext.commands.BucketType
-

Specifies a type of bucket for, e.g. a cooldown.

-
-
-default
-

The default bucket operates on a global basis.

-
- -
-
-user
-

The user bucket operates on a per-user basis.

-
- -
-
-guild
-

The guild bucket operates on a per-guild basis.

-
- -
-
-channel
-

The channel bucket operates on a per-channel basis.

-
- -
-
-member
-

The member bucket operates on a per-member basis.

-
- -
-
-category
-

The category bucket operates on a per-category basis.

-
- -
-
-role
-

The role bucket operates on a per-role basis.

-
-

New in version 1.3.

-
-
- -
- -
-
-

Checks

-
-
-@discord.ext.commands.check(predicate)
-

A decorator that adds a check to the Command or its -subclasses. These checks could be accessed via Command.checks.

-

These checks should be predicates that take in a single parameter taking -a Context. If the check returns a False-like value then -during invocation a CheckFailure exception is raised and sent to -the on_command_error() event.

-

If an exception should be thrown in the predicate then it should be a -subclass of CommandError. Any exception not subclassed from it -will be propagated while those subclassed will be sent to -on_command_error().

-

A special attribute named predicate is bound to the value -returned by this decorator to retrieve the predicate passed to the -decorator. This allows the following introspection and chaining to be done:

-
def owner_or_permissions(**perms):
-    original = commands.has_permissions(**perms).predicate
-    async def extended_check(ctx):
-        if ctx.guild is None:
-            return False
-        return ctx.guild.owner_id == ctx.author.id or await original(ctx)
-    return commands.check(extended_check)
-
-
-
-

Note

-

The function returned by predicate is always a coroutine, -even if the original function was not a coroutine.

-
-
-

Changed in version 1.3: The predicate attribute was added.

-
-

Examples

-

Creating a basic check to see if the command invoker is you.

-
def check_if_it_is_me(ctx):
-    return ctx.message.author.id == 85309593344815104
-
-@bot.command()
-@commands.check(check_if_it_is_me)
-async def only_for_me(ctx):
-    await ctx.send('I know you!')
-
-
-

Transforming common checks into its own decorator:

-
def is_me():
-    def predicate(ctx):
-        return ctx.message.author.id == 85309593344815104
-    return commands.check(predicate)
-
-@bot.command()
-@is_me()
-async def only_me(ctx):
-    await ctx.send('Only you!')
-
-
-
-
Parameters
-
    -
  • predicate (Callable[[Context], bool]) – The predicate to check if the command should be invoked.

  • -
  • **command_attrs (Dict[str, Any]) – key: value pairs to be added to the command’s attributes.

  • -
-
-
-
- -
-
-@discord.ext.commands.check_any(*checks)
-

A check() that is added that checks if any of the checks passed -will pass, i.e. using logical OR.

-

If all checks fail then CheckAnyFailure is raised to signal the failure. -It inherits from CheckFailure.

-
-

Note

-

The predicate attribute for this function is a coroutine.

-
-
-

New in version 1.3.

-
-
-
Parameters
-

*checks (Callable[[Context], bool]) – An argument list of checks that have been decorated with -the check() decorator.

-
-
Raises
-

TypeError – A check passed has not been decorated with the check() - decorator.

-
-
-

Examples

-

Creating a basic check to see if it’s the bot owner or -the server owner:

-
def is_guild_owner():
-    def predicate(ctx):
-        return ctx.guild is not None and ctx.guild.owner_id == ctx.author.id
-    return commands.check(predicate)
-
-@bot.command()
-@commands.check_any(commands.is_owner(), is_guild_owner())
-async def only_for_owners(ctx):
-    await ctx.send('Hello mister owner!')
-
-
-
- -
-
-@discord.ext.commands.has_role(item)
-

A check() that is added that checks if the member invoking the -command has the role specified via the name or ID specified.

-

If a string is specified, you must give the exact name of the role, including -caps and spelling.

-

If an integer is specified, you must give the exact snowflake ID of the role.

-

If the message is invoked in a private message context then the check will -return False.

-

This check raises one of two special exceptions, MissingRole if the user -is missing a role, or NoPrivateMessage if it is used in a private message. -Both inherit from CheckFailure.

-
-

Changed in version 1.1: Raise MissingRole or NoPrivateMessage -instead of generic CheckFailure

-
-
-
Parameters
-

item (Union[int, str]) – The name or ID of the role to check.

-
-
-
- -
-
-@discord.ext.commands.has_permissions(**perms)
-

A check() that is added that checks if the member has all of -the permissions necessary.

-

Note that this check operates on the current channel permissions, not the -guild wide permissions.

-

The permissions passed in must be exactly like the properties shown under -discord.Permissions.

-

This check raises a special exception, MissingPermissions -that is inherited from CheckFailure.

-
-
Parameters
-

perms – An argument list of permissions to check for.

-
-
-

Example

-
@bot.command()
-@commands.has_permissions(manage_messages=True)
-async def test(ctx):
-    await ctx.send('You can manage messages.')
-
-
-
- -
-
-@discord.ext.commands.has_guild_permissions(**perms)
-

Similar to has_permissions(), but operates on guild wide -permissions instead of the current channel permissions.

-

If this check is called in a DM context, it will raise an -exception, NoPrivateMessage.

-
-

New in version 1.3.

-
-
- -
-
-@discord.ext.commands.has_any_role(*items)
-

A check() that is added that checks if the member invoking the -command has any of the roles specified. This means that if they have -one out of the three roles specified, then this check will return True.

-

Similar to has_role(), the names or IDs passed in must be exact.

-

This check raises one of two special exceptions, MissingAnyRole if the user -is missing all roles, or NoPrivateMessage if it is used in a private message. -Both inherit from CheckFailure.

-
-

Changed in version 1.1: Raise MissingAnyRole or NoPrivateMessage -instead of generic CheckFailure

-
-
-
Parameters
-

items (List[Union[str, int]]) – An argument list of names or IDs to check that the member has roles wise.

-
-
-

Example

-
@bot.command()
-@commands.has_any_role('Library Devs', 'Moderators', 492212595072434186)
-async def cool(ctx):
-    await ctx.send('You are cool indeed')
-
-
-
- -
-
-@discord.ext.commands.bot_has_role(item)
-

Similar to has_role() except checks if the bot itself has the -role.

-

This check raises one of two special exceptions, BotMissingRole if the bot -is missing the role, or NoPrivateMessage if it is used in a private message. -Both inherit from CheckFailure.

-
-

Changed in version 1.1: Raise BotMissingRole or NoPrivateMessage -instead of generic CheckFailure

-
-
- -
-
-@discord.ext.commands.bot_has_permissions(**perms)
-

Similar to has_permissions() except checks if the bot itself has -the permissions listed.

-

This check raises a special exception, BotMissingPermissions -that is inherited from CheckFailure.

-
- -
-
-@discord.ext.commands.bot_has_guild_permissions(**perms)
-

Similar to has_guild_permissions(), but checks the bot -members guild permissions.

-
-

New in version 1.3.

-
-
- -
-
-@discord.ext.commands.bot_has_any_role(*items)
-

Similar to has_any_role() except checks if the bot itself has -any of the roles listed.

-

This check raises one of two special exceptions, BotMissingAnyRole if the bot -is missing all roles, or NoPrivateMessage if it is used in a private message. -Both inherit from CheckFailure.

-
-

Changed in version 1.1: Raise BotMissingAnyRole or NoPrivateMessage -instead of generic checkfailure

-
-
- -
-
-@discord.ext.commands.cooldown(rate, per, type=discord.ext.commands.BucketType.default)
-

A decorator that adds a cooldown to a Command

-

A cooldown allows a command to only be used a specific amount -of times in a specific time frame. These cooldowns can be based -either on a per-guild, per-channel, per-user, per-role or global basis. -Denoted by the third argument of type which must be of enum -type BucketType.

-

If a cooldown is triggered, then CommandOnCooldown is triggered in -on_command_error() and the local error handler.

-

A command can only have a single cooldown.

-
-
Parameters
-
    -
  • rate (int) – The number of times a command can be used before triggering a cooldown.

  • -
  • per (float) – The amount of seconds to wait for a cooldown when it’s been triggered.

  • -
  • type (Union[BucketType, Callable[[Message], Any]]) –

    The type of cooldown to have. If callable, should return a key for the mapping.

    -
    -

    Changed in version 1.7: Callables are now supported for custom bucket types.

    -
    -

  • -
-
-
-
- -
-
-@discord.ext.commands.dynamic_cooldown(cooldown, type=BucketType.default)
-

A decorator that adds a dynamic cooldown to a Command

-

This differs from cooldown() in that it takes a function that -accepts a single parameter of type discord.Message and must -return a Cooldown or None. If None is returned then -that cooldown is effectively bypassed.

-

A cooldown allows a command to only be used a specific amount -of times in a specific time frame. These cooldowns can be based -either on a per-guild, per-channel, per-user, per-role or global basis. -Denoted by the third argument of type which must be of enum -type BucketType.

-

If a cooldown is triggered, then CommandOnCooldown is triggered in -on_command_error() and the local error handler.

-

A command can only have a single cooldown.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • cooldown (Callable[[discord.Message], Optional[Cooldown]]) – A function that takes a message and returns a cooldown that will -apply to this invocation or None if the cooldown should be bypassed.

  • -
  • type (BucketType) – The type of cooldown to have.

  • -
-
-
-
- -
-
-@discord.ext.commands.max_concurrency(number, per=discord.ext.commands.BucketType.default, *, wait=False)
-

A decorator that adds a maximum concurrency to a Command or its subclasses.

-

This enables you to only allow a certain number of command invocations at the same time, -for example if a command takes too long or if only one user can use it at a time. This -differs from a cooldown in that there is no set waiting period or token bucket – only -a set number of people can run the command.

-
-

New in version 1.3.

-
-
-
Parameters
-
    -
  • number (int) – The maximum number of invocations of this command that can be running at the same time.

  • -
  • per (BucketType) – The bucket that this concurrency is based on, e.g. BucketType.guild would allow -it to be used up to number times per guild.

  • -
  • wait (bool) – Whether the command should wait for the queue to be over. If this is set to False -then instead of waiting until the command can run again, the command raises -MaxConcurrencyReached to its error handler. If this is set to True -then the command waits until it can be executed.

  • -
-
-
-
- -
-
-@discord.ext.commands.before_invoke(coro)
-

A decorator that registers a coroutine as a pre-invoke hook.

-

This allows you to refer to one before invoke hook for several commands that -do not have to be within the same cog.

-
-

New in version 1.4.

-
-

Example

-
async def record_usage(ctx):
-    print(ctx.author, 'used', ctx.command, 'at', ctx.message.created_at)
-
-@bot.command()
-@commands.before_invoke(record_usage)
-async def who(ctx): # Output: <User> used who at <Time>
-    await ctx.send('i am a bot')
-
-class What(commands.Cog):
-
-    @commands.before_invoke(record_usage)
-    @commands.command()
-    async def when(self, ctx): # Output: <User> used when at <Time>
-        await ctx.send(f'and i have existed since {ctx.bot.user.created_at}')
-
-    @commands.command()
-    async def where(self, ctx): # Output: <Nothing>
-        await ctx.send('on Discord')
-
-    @commands.command()
-    async def why(self, ctx): # Output: <Nothing>
-        await ctx.send('because someone made me')
-
-bot.add_cog(What())
-
-
-
- -
-
-@discord.ext.commands.after_invoke(coro)
-

A decorator that registers a coroutine as a post-invoke hook.

-

This allows you to refer to one after invoke hook for several commands that -do not have to be within the same cog.

-
-

New in version 1.4.

-
-
- -
-
-@discord.ext.commands.guild_only()
-

A check() that indicates this command must only be used in a -guild context only. Basically, no private messages are allowed when -using the command.

-

This check raises a special exception, NoPrivateMessage -that is inherited from CheckFailure.

-
- -
-
-@discord.ext.commands.dm_only()
-

A check() that indicates this command must only be used in a -DM context. Only private messages are allowed when -using the command.

-

This check raises a special exception, PrivateMessageOnly -that is inherited from CheckFailure.

-
-

New in version 1.1.

-
-
- -
-
-@discord.ext.commands.is_owner()
-

A check() that checks if the person invoking this command is the -owner of the bot.

-

This is powered by Bot.is_owner().

-

This check raises a special exception, NotOwner that is derived -from CheckFailure.

-
- -
-
-@discord.ext.commands.is_nsfw()
-

A check() that checks if the channel is a NSFW channel.

-

This check raises a special exception, NSFWChannelRequired -that is derived from CheckFailure.

-
-

Changed in version 1.1: Raise NSFWChannelRequired instead of generic CheckFailure. -DM channels will also now pass this check.

-
-
- -
-
-

Cooldown

-
- -Attributes -
- -Methods -
-
-class discord.ext.commands.Cooldown(rate, per)
-

Represents a cooldown for a command.

-
-
-rate
-

The total number of tokens available per per seconds.

-
-
Type
-

int

-
-
-
- -
-
-per
-

The length of the cooldown period in seconds.

-
-
Type
-

float

-
-
-
- -
-
-get_tokens(current=None)
-

Returns the number of available tokens before rate limiting is applied.

-
-
Parameters
-

current (Optional[float]) – The time in seconds since Unix epoch to calculate tokens at. -If not supplied then time.time() is used.

-
-
Returns
-

The number of tokens available before the cooldown is to be applied.

-
-
Return type
-

int

-
-
-
- -
-
-get_retry_after(current=None)
-

Returns the time in seconds until the cooldown will be reset.

-
-
Parameters
-

current (Optional[float]) – The current time in seconds since Unix epoch. -If not supplied, then time.time() is used.

-
-
Returns
-

The number of seconds to wait before this cooldown will be reset.

-
-
Return type
-

float

-
-
-
- -
-
-update_rate_limit(current=None)
-

Updates the cooldown rate limit.

-
-
Parameters
-

current (Optional[float]) – The time in seconds since Unix epoch to update the rate limit at. -If not supplied, then time.time() is used.

-
-
Returns
-

The retry-after time in seconds if rate limited.

-
-
Return type
-

Optional[float]

-
-
-
- -
-
-reset()
-

Reset the cooldown to its initial state.

-
- -
-
-copy()
-

Creates a copy of this cooldown.

-
-
Returns
-

A new instance of this cooldown.

-
-
Return type
-

Cooldown

-
-
-
- -
- -
-
-

Context

-
-
-class discord.ext.commands.Context(*, message, bot, view, args=..., kwargs=..., prefix=None, command=None, invoked_with=None, invoked_parents=..., invoked_subcommand=None, subcommand_passed=None, command_failed=False, current_parameter=None)
-

Represents the context in which a command is being invoked under.

-

This class contains a lot of meta data to help you understand more about -the invocation context. This class is not created manually and is instead -passed around to commands as the first parameter.

-

This class implements the Messageable ABC.

-
-
-message
-

The message that triggered the command being executed.

-
-
Type
-

Message

-
-
-
- -
-
-bot
-

The bot that contains the command being executed.

-
-
Type
-

Bot

-
-
-
- -
-
-args
-

The list of transformed arguments that were passed into the command. -If this is accessed during the on_command_error() event -then this list could be incomplete.

-
-
Type
-

list

-
-
-
- -
-
-kwargs
-

A dictionary of transformed arguments that were passed into the command. -Similar to args, if this is accessed in the -on_command_error() event then this dict could be incomplete.

-
-
Type
-

dict

-
-
-
- -
-
-current_parameter
-

The parameter that is currently being inspected and converted. -This is only of use for within converters.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[inspect.Parameter]

-
-
-
- -
-
-prefix
-

The prefix that was used to invoke the command.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-command
-

The command that is being invoked currently.

-
-
Type
-

Optional[Command]

-
-
-
- -
-
-invoked_with
-

The command name that triggered this invocation. Useful for finding out -which alias called the command.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-invoked_parents
-

The command names of the parents that triggered this invocation. Useful for -finding out which aliases called the command.

-

For example in commands ?a b c test, the invoked parents are ['a', 'b', 'c'].

-
-

New in version 1.7.

-
-
-
Type
-

List[str]

-
-
-
- -
-
-invoked_subcommand
-

The subcommand that was invoked. -If no valid subcommand was invoked then this is equal to None.

-
-
Type
-

Optional[Command]

-
-
-
- -
-
-subcommand_passed
-

The string that was attempted to call a subcommand. This does not have -to point to a valid registered subcommand and could just point to a -nonsense string. If nothing was passed to attempt a call to a -subcommand then this is set to None.

-
-
Type
-

Optional[str]

-
-
-
- -
-
-command_failed
-

A boolean that indicates if the command failed to be parsed, checked, -or invoked.

-
-
Type
-

bool

-
-
-
- -
-
-async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)
-

Returns an AsyncIterator that enables receiving the destination’s message history.

-

You must have read_message_history permissions to use this.

-

Examples

-

Usage

-
counter = 0
-async for message in channel.history(limit=200):
-    if message.author == client.user:
-        counter += 1
-
-
-

Flattening into a list:

-
messages = await channel.history(limit=123).flatten()
-# messages is now a list of Message...
-
-
-

All parameters are optional.

-
-
Parameters
-
    -
  • limit (Optional[int]) – The number of messages to retrieve. -If None, retrieves every message in the channel. Note, however, -that this would make it a slow operation.

  • -
  • before (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages before this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • after (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages after this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time.

  • -
  • around (Optional[Union[Snowflake, datetime.datetime]]) – Retrieve messages around this date or message. -If a datetime is provided, it is recommended to use a UTC aware datetime. -If the datetime is naive, it is assumed to be local time. -When using this argument, the maximum limit is 101. Note that if the limit is an -even number then this will return at most limit + 1 messages.

  • -
  • oldest_first (Optional[bool]) – If set to True, return messages in oldest->newest order. Defaults to True if -after is specified, otherwise False.

  • -
-
-
Raises
-
    -
  • Forbidden – You do not have permissions to get channel message history.

  • -
  • HTTPException – The request to get message history failed.

  • -
-
-
Yields
-

Message – The message with the message data parsed.

-
-
-
- -
-
-async with typing()
-

Returns a context manager that allows you to type for an indefinite period of time.

-

This is useful for denoting long computations in your bot.

-
-

Note

-

This is both a regular context manager and an async context manager. -This means that both with and async with work with this.

-
-

Example Usage:

-
async with channel.typing():
-    # simulate something heavy
-    await asyncio.sleep(10)
-
-await channel.send('done!')
-
-
-
- -
-
-await invoke(command, /, *args, **kwargs)
-

This function is a coroutine.

-

Calls a command with the arguments given.

-

This is useful if you want to just call the callback that a -Command holds internally.

-
-

Note

-

This does not handle converters, checks, cooldowns, pre-invoke, -or after-invoke hooks in any matter. It calls the internal callback -directly as-if it was a regular function.

-

You must take care in passing the proper arguments when -using this function.

-
-
-
Parameters
-
    -
  • command (Command) – The command that is going to be called.

  • -
  • *args – The arguments to use.

  • -
  • **kwargs – The keyword arguments to use.

  • -
-
-
Raises
-

TypeError – The command argument to invoke is missing.

-
-
-
- -
-
-await reinvoke(*, call_hooks=False, restart=True)
-

This function is a coroutine.

-

Calls the command again.

-

This is similar to invoke() except that it bypasses -checks, cooldowns, and error handlers.

-
-

Note

-

If you want to bypass UserInputError derived exceptions, -it is recommended to use the regular invoke() -as it will work more naturally. After all, this will end up -using the old arguments the user has used and will thus just -fail again.

-
-
-
Parameters
-
    -
  • call_hooks (bool) – Whether to call the before and after invoke hooks.

  • -
  • restart (bool) – Whether to start the call chain from the very beginning -or where we left off (i.e. the command that caused the error). -The default is to start where we left off.

  • -
-
-
Raises
-

ValueError – The context to reinvoke is not valid.

-
-
-
- -
-
-property valid
-

Checks if the invocation context is valid to be invoked with.

-
-
Type
-

bool

-
-
-
- -
-
-property clean_prefix
-

The cleaned up invoke prefix. i.e. mentions are @name instead of <@id>.

-
-

New in version 2.0.

-
-
-
Type
-

str

-
-
-
- -
-
-property cog
-

Returns the cog associated with this context’s command. None if it does not exist.

-
-
Type
-

Optional[Cog]

-
-
-
- -
-
-guild
-

Returns the guild associated with this context’s command. None if not available.

-
-
Type
-

Optional[Guild]

-
-
-
- -
-
-channel
-

Returns the channel associated with this context’s command. -Shorthand for Message.channel.

-
-
Type
-

Union[abc.Messageable]

-
-
-
- -
-
-author
-

Union[User, Member]: -Returns the author associated with this context’s command. Shorthand for Message.author

-
- -
-
-me
-

Union[Member, ClientUser]: -Similar to Guild.me except it may return the ClientUser in private message contexts.

-
- -
-
-property voice_client
-

A shortcut to Guild.voice_client, if applicable.

-
-
Type
-

Optional[VoiceProtocol]

-
-
-
- -
-
-author_permissions()
-

Returns the author permissions in the given channel.

-
-

New in version 2.0.

-
-
- -
-
-await send_help(entity=<bot>)
-

This function is a coroutine.

-

Shows the help command for the specified entity if given. -The entity can be a command or a cog.

-

If no entity is given, then it’ll show help for the -entire bot.

-

If the entity is a string, then it looks up whether it’s a -Cog or a Command.

-
-

Note

-

Due to the way this function works, instead of returning -something similar to command_not_found() -this returns None on bad input or no help command.

-
-
-
Parameters
-

entity (Optional[Union[Command, Cog, str]]) – The entity to show help for.

-
-
Returns
-

The result of the help command, if any.

-
-
Return type
-

Any

-
-
-
- -
-
-await fetch_message(id, /)
-

This function is a coroutine.

-

Retrieves a single Message from the destination.

-
-
Parameters
-

id (int) – The message ID to look for.

-
-
Raises
-
    -
  • NotFound – The specified message was not found.

  • -
  • Forbidden – You do not have the permissions required to get a message.

  • -
  • HTTPException – Retrieving the message failed.

  • -
-
-
Returns
-

The message asked for.

-
-
Return type
-

Message

-
-
-
- -
-
-await pins()
-

This function is a coroutine.

-

Retrieves all messages that are currently pinned in the channel.

-
-

Note

-

Due to a limitation with the Discord API, the Message -objects returned by this method do not contain complete -Message.reactions data.

-
-
-
Raises
-

HTTPException – Retrieving the pinned messages failed.

-
-
Returns
-

The messages that are currently pinned.

-
-
Return type
-

List[Message]

-
-
-
- -
-
-await trigger_typing()
-

This function is a coroutine.

-

Triggers a typing indicator to the destination.

-

Typing indicator will go away after 10 seconds, or after a message is sent.

-
- -
-
-await send(content=None, return_message=True, ephemeral=False, **kwargs)
-

This function is a coroutine.

-

A shortcut method to abc.Messageable.send() with interaction helpers.

-

This function takes all the parameters of abc.Messageable.send() plus the following:

-
-
Parameters
-
    -
  • return_message (bool) – Ignored if not in a slash command context. -If this is set to False more native interaction methods will be used.

  • -
  • ephemeral (bool) – Ignored if not in a slash command context. -Indicates if the message should only be visible to the user who started the interaction. -If a view is sent with an ephemeral message and it has no timeout set then the timeout -is set to 15 minutes.

  • -
-
-
Returns
-

In a slash command context, the message that was sent if return_message is True.

-

In a normal context, it always returns a Message

-

-
-
Return type
-

Optional[Union[Message, WebhookMessage]]

-
-
-
- -
-
-await reply(content=None, **kwargs)
-

This function is a coroutine.

-

A shortcut method to abc.Messageable.send() to reply to the -Message.

-
-

New in version 1.6.

-
-
-
Raises
-
    -
  • HTTPException – Sending the message failed.

  • -
  • Forbidden – You do not have the proper permissions to send the message.

  • -
  • InvalidArgument – The files list is not of the appropriate size or - you specified both file and files.

  • -
-
-
Returns
-

The message that was sent.

-
-
Return type
-

Message

-
-
-
- -
- -
-
-

Converters

-
-
-class discord.ext.commands.Converter(*args, **kwargs)
-

The base class of custom converters that require the Context -to be passed to be useful.

-

This allows you to implement converters that function similar to the -special cased discord classes.

-

Classes that derive from this should override the convert() -method to do its conversion logic. This method must be a coroutine.

-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.ObjectConverter(*args, **kwargs)
-

Converts to a Object.

-

The argument must follow the valid ID or mention formats (e.g. <@80088516616269824>).

-
-

New in version 2.0.

-
-

The lookup strategy is as follows (in order):

-
    -
  1. Lookup by ID.

  2. -
  3. Lookup by member, role, or channel mention.

  4. -
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.MemberConverter(*args, **kwargs)
-

Converts to a Member.

-

All lookups are via the local guild. If in a DM context, then the lookup -is done by the global cache.

-

The lookup strategy is as follows (in order):

-
    -
  1. Lookup by ID.

  2. -
  3. Lookup by mention.

  4. -
  5. Lookup by name#discrim

  6. -
  7. Lookup by name

  8. -
  9. Lookup by nickname

  10. -
-
-

Changed in version 1.5: Raise MemberNotFound instead of generic BadArgument

-
-
-

Changed in version 1.5.1: This converter now lazily fetches members from the gateway and HTTP APIs, -optionally caching the result if MemberCacheFlags.joined is enabled.

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.UserConverter(*args, **kwargs)
-

Converts to a User.

-

All lookups are via the global user cache.

-

The lookup strategy is as follows (in order):

-
    -
  1. Lookup by ID.

  2. -
  3. Lookup by mention.

  4. -
  5. Lookup by name#discrim

  6. -
  7. Lookup by name

  8. -
-
-

Changed in version 1.5: Raise UserNotFound instead of generic BadArgument

-
-
-

Changed in version 1.6: This converter now lazily fetches users from the HTTP APIs if an ID is passed -and it’s not available in cache.

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.MessageConverter(*args, **kwargs)
-

Converts to a discord.Message.

-
-

New in version 1.1.

-
-

The lookup strategy is as follows (in order):

-
    -
  1. Lookup by “{channel ID}-{message ID}” (retrieved by shift-clicking on “Copy ID”)

  2. -
  3. Lookup by message ID (the message must be in the context channel)

  4. -
  5. Lookup by message URL

  6. -
-
-

Changed in version 1.5: Raise ChannelNotFound, MessageNotFound or ChannelNotReadable instead of generic BadArgument

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.PartialMessageConverter(*args, **kwargs)
-

Converts to a discord.PartialMessage.

-
-

New in version 1.7.

-
-

The creation strategy is as follows (in order):

-
    -
  1. By “{channel ID}-{message ID}” (retrieved by shift-clicking on “Copy ID”)

  2. -
  3. By message ID (The message is assumed to be in the context channel.)

  4. -
  5. By message URL

  6. -
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.GuildChannelConverter(*args, **kwargs)
-

Converts to a GuildChannel.

-

All lookups are via the local guild. If in a DM context, then the lookup -is done by the global cache.

-

The lookup strategy is as follows (in order):

-
    -
  1. Lookup by ID.

  2. -
  3. Lookup by mention.

  4. -
  5. Lookup by name.

  6. -
-
-

New in version 2.0.

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.TextChannelConverter(*args, **kwargs)
-

Converts to a TextChannel.

-

All lookups are via the local guild. If in a DM context, then the lookup -is done by the global cache.

-

The lookup strategy is as follows (in order):

-
    -
  1. Lookup by ID.

  2. -
  3. Lookup by mention.

  4. -
  5. Lookup by name

  6. -
-
-

Changed in version 1.5: Raise ChannelNotFound instead of generic BadArgument

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.VoiceChannelConverter(*args, **kwargs)
-

Converts to a VoiceChannel.

-

All lookups are via the local guild. If in a DM context, then the lookup -is done by the global cache.

-

The lookup strategy is as follows (in order):

-
    -
  1. Lookup by ID.

  2. -
  3. Lookup by mention.

  4. -
  5. Lookup by name

  6. -
-
-

Changed in version 1.5: Raise ChannelNotFound instead of generic BadArgument

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.StoreChannelConverter(*args, **kwargs)
-

Converts to a StoreChannel.

-

All lookups are via the local guild. If in a DM context, then the lookup -is done by the global cache.

-

The lookup strategy is as follows (in order):

-
    -
  1. Lookup by ID.

  2. -
  3. Lookup by mention.

  4. -
  5. Lookup by name.

  6. -
-
-

New in version 1.7.

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.StageChannelConverter(*args, **kwargs)
-

Converts to a StageChannel.

-
-

New in version 1.7.

-
-

All lookups are via the local guild. If in a DM context, then the lookup -is done by the global cache.

-

The lookup strategy is as follows (in order):

-
    -
  1. Lookup by ID.

  2. -
  3. Lookup by mention.

  4. -
  5. Lookup by name

  6. -
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.CategoryChannelConverter(*args, **kwargs)
-

Converts to a CategoryChannel.

-

All lookups are via the local guild. If in a DM context, then the lookup -is done by the global cache.

-

The lookup strategy is as follows (in order):

-
    -
  1. Lookup by ID.

  2. -
  3. Lookup by mention.

  4. -
  5. Lookup by name

  6. -
-
-

Changed in version 1.5: Raise ChannelNotFound instead of generic BadArgument

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.InviteConverter(*args, **kwargs)
-

Converts to a Invite.

-

This is done via an HTTP request using Bot.fetch_invite().

-
-

Changed in version 1.5: Raise BadInviteArgument instead of generic BadArgument

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.GuildConverter(*args, **kwargs)
-

Converts to a Guild.

-

The lookup strategy is as follows (in order):

-
    -
  1. Lookup by ID.

  2. -
  3. Lookup by name. (There is no disambiguation for Guilds with multiple matching names).

  4. -
-
-

New in version 1.7.

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.RoleConverter(*args, **kwargs)
-

Converts to a Role.

-

All lookups are via the local guild. If in a DM context, the converter raises -NoPrivateMessage exception.

-

The lookup strategy is as follows (in order):

-
    -
  1. Lookup by ID.

  2. -
  3. Lookup by mention.

  4. -
  5. Lookup by name

  6. -
-
-

Changed in version 1.5: Raise RoleNotFound instead of generic BadArgument

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.GameConverter(*args, **kwargs)
-

Converts to Game.

-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.ColourConverter(*args, **kwargs)
-

Converts to a Colour.

-
-

Changed in version 1.5: Add an alias named ColorConverter

-
-

The following formats are accepted:

-
    -
  • 0x<hex>

  • -
  • #<hex>

  • -
  • 0x#<hex>

  • -
  • rgb(<number>, <number>, <number>)

  • -
  • Any of the classmethod in Colour

    -
    -
      -
    • The _ in the name can be optionally replaced with spaces.

    • -
    -
    -
  • -
-

Like CSS, <number> can be either 0-255 or 0-100% and <hex> can be -either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff).

-
-

Changed in version 1.5: Raise BadColourArgument instead of generic BadArgument

-
-
-

Changed in version 1.7: Added support for rgb function and 3-digit hex shortcuts

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.EmojiConverter(*args, **kwargs)
-

Converts to a Emoji.

-

All lookups are done for the local guild first, if available. If that lookup -fails, then it checks the client’s global cache.

-

The lookup strategy is as follows (in order):

-
    -
  1. Lookup by ID.

  2. -
  3. Lookup by extracting ID from the emoji.

  4. -
  5. Lookup by name

  6. -
-
-

Changed in version 1.5: Raise EmojiNotFound instead of generic BadArgument

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.PartialEmojiConverter(*args, **kwargs)
-

Converts to a PartialEmoji.

-

This is done by extracting the animated flag, name and ID from the emoji.

-
-

Changed in version 1.5: Raise PartialEmojiConversionFailure instead of generic BadArgument

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.ThreadConverter(*args, **kwargs)
-

Coverts to a Thread.

-

All lookups are via the local guild.

-

The lookup strategy is as follows (in order):

-
    -
  1. Lookup by ID.

  2. -
  3. Lookup by mention.

  4. -
  5. Lookup by name.

  6. -
-
-

New in version 2.0.

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.GuildStickerConverter(*args, **kwargs)
-

Converts to a GuildSticker.

-

All lookups are done for the local guild first, if available. If that lookup -fails, then it checks the client’s global cache.

-

The lookup strategy is as follows (in order):

-

1. Lookup by ID. -3. Lookup by name

-
-

New in version 2.0.

-
-
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.clean_content(*, fix_channel_mentions=False, use_nicknames=True, escape_markdown=False, remove_markdown=False)
-

Converts the argument to mention scrubbed version of -said content.

-

This behaves similarly to clean_content.

-
-
-fix_channel_mentions
-

Whether to clean channel mentions.

-
-
Type
-

bool

-
-
-
- -
-
-use_nicknames
-

Whether to use nicknames when transforming mentions.

-
-
Type
-

bool

-
-
-
- -
-
-escape_markdown
-

Whether to also escape special markdown characters.

-
-
Type
-

bool

-
-
-
- -
-
-remove_markdown
-

Whether to also remove special markdown characters. This option is not supported with escape_markdown

-
-

New in version 1.7.

-
-
-
Type
-

bool

-
-
-
- -
-
-await convert(ctx, argument)
-

This function is a coroutine.

-

The method to override to do conversion logic.

-

If an error is found while converting, it is recommended to -raise a CommandError derived exception as it will -properly propagate to the error handlers.

-
-
Parameters
-
    -
  • ctx (Context) – The invocation context that the argument is being used in.

  • -
  • argument (str) – The argument that is being converted.

  • -
-
-
Raises
-
    -
  • CommandError – A generic exception occurred when converting the argument.

  • -
  • BadArgument – The converter failed to convert the argument.

  • -
-
-
-
- -
- -
-
-class discord.ext.commands.Greedy
-

A special converter that greedily consumes arguments until it can’t. -As a consequence of this behaviour, most input errors are silently discarded, -since it is used as an indicator of when to stop parsing.

-

When a parser error is met the greedy converter stops converting, undoes the -internal string parsing routine, and continues parsing regularly.

-

For example, in the following code:

-
@commands.command()
-async def test(ctx, numbers: Greedy[int], reason: str):
-    await ctx.send("numbers: {}, reason: {}".format(numbers, reason))
-
-
-

An invocation of [p]test 1 2 3 4 5 6 hello would pass numbers with -[1, 2, 3, 4, 5, 6] and reason with hello.

-

For more information, check Special Converters.

-
- -
-
-await discord.ext.commands.run_converters(ctx, converter, argument, param)
-

This function is a coroutine.

-

Runs converters for a given converter, argument, and parameter.

-

This function does the same work that the library does under the hood.

-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • ctx (Context) – The invocation context to run the converters under.

  • -
  • converter (Any) – The converter to run, this corresponds to the annotation in the function.

  • -
  • argument (str) – The argument to convert to.

  • -
  • param (inspect.Parameter) – The parameter being converted. This is mainly for error reporting.

  • -
-
-
Raises
-

CommandError – The converter failed to convert.

-
-
Returns
-

The resulting conversion.

-
-
Return type
-

Any

-
-
-
- -
-

Option

-
-
-class discord.ext.commands.Option(default, *, description)
-

A special ‘converter’ to apply a description to slash command options.

-

For example in the following code:

-
@bot.command()
-async def ban(ctx,
-    member: discord.Member, *,
-    reason: str = commands.Option('no reason', description='the reason to ban this member')
-):
-    await member.ban(reason=reason)
-
-
-

The description would be the reason to ban this member and the default would be no reason

-
-

New in version 2.0.

-
-
-
-default
-

The default for this option, overwrites Option during parsing.

-
-
Type
-

Optional[Any]

-
-
-
- -
-
-description
-

The description for this option, is unpacked to Command.option_descriptions

-
-
Type
-

str

-
-
-
- -
- -
-
-

Flag Converter

-
-
-class discord.ext.commands.FlagConverter
-

A converter that allows for a user-friendly flag syntax.

-

The flags are defined using PEP 526 type annotations similar -to the dataclasses Python module. For more information on -how this converter works, check the appropriate -documentation.

-
-
-
-iter(x)
-

Returns an iterator of (flag_name, flag_value) pairs. This allows it -to be, for example, constructed as a dict or a list of pairs. -Note that aliases are not shown.

-
- -
-
-

New in version 2.0.

-
-
-
Parameters
-
    -
  • case_insensitive (bool) – A class parameter to toggle case insensitivity of the flag parsing. -If True then flags are parsed in a case insensitive manner. -Defaults to False.

  • -
  • prefix (str) – The prefix that all flags must be prefixed with. By default -there is no prefix.

  • -
  • delimiter (str) – The delimiter that separates a flag’s argument from the flag’s name. -By default this is :.

  • -
-
-
-
-
-classmethod get_flags()
-

Dict[str, Flag]: A mapping of flag name to flag object this converter has.

-
- -
-
-classmethod await convert(ctx, argument)
-

This function is a coroutine.

-

The method that actually converters an argument to the flag mapping.

-
-
Parameters
-
    -
  • cls (Type[FlagConverter]) – The flag converter class.

  • -
  • ctx (Context) – The invocation context.

  • -
  • argument (str) – The argument to convert from.

  • -
-
-
Raises
-
-
-
Returns
-

The flag converter instance with all flags parsed.

-
-
Return type
-

FlagConverter

-
-
-
- -
- -
-
-class discord.ext.commands.Flag
-

Represents a flag parameter for FlagConverter.

-

The flag() function helps -create these flag objects, but it is not necessary to -do so. These cannot be constructed manually.

-
-
-name
-

The name of the flag.

-
-
Type
-

str

-
-
-
- -
-
-aliases
-

The aliases of the flag name.

-
-
Type
-

List[str]

-
-
-
- -
-
-attribute
-

The attribute in the class that corresponds to this flag.

-
-
Type
-

str

-
-
-
- -
-
-default
-

The default value of the flag, if available.

-
-
Type
-

Any

-
-
-
- -
-
-annotation
-

The underlying evaluated annotation of the flag.

-
-
Type
-

Any

-
-
-
- -
-
-max_args
-

The maximum number of arguments the flag can accept. -A negative value indicates an unlimited amount of arguments.

-
-
Type
-

int

-
-
-
- -
-
-override
-

Whether multiple given values overrides the previous value.

-
-
Type
-

bool

-
-
-
- -
-
-property required
-

Whether the flag is required.

-

A required flag has no default value.

-
-
Type
-

bool

-
-
-
- -
- -
-
-discord.ext.commands.flag(*, name=..., aliases=..., default=..., max_args=..., override=...)
-

Override default functionality and parameters of the underlying FlagConverter -class attributes.

-
-
Parameters
-
    -
  • name (str) – The flag name. If not given, defaults to the attribute name.

  • -
  • aliases (List[str]) – Aliases to the flag name. If not given no aliases are set.

  • -
  • default (Any) – The default parameter. This could be either a value or a callable that takes -Context as its sole parameter. If not given then it defaults to -the default value given to the attribute.

  • -
  • max_args (int) – The maximum number of arguments the flag can accept. -A negative value indicates an unlimited amount of arguments. -The default value depends on the annotation given.

  • -
  • override (bool) – Whether multiple given values overrides the previous value. The default -value depends on the annotation given.

  • -
-
-
-
- -
-
-
-

Exceptions

-
-
-exception discord.ext.commands.CommandError(message=None, *args)
-

The base exception type for all command related errors.

-

This inherits from discord.DiscordException.

-

This exception and exceptions inherited from it are handled -in a special way as they are caught and passed into a special event -from Bot, on_command_error().

-
- -
-
-exception discord.ext.commands.ConversionError(converter, original)
-

Exception raised when a Converter class raises non-CommandError.

-

This inherits from CommandError.

-
-
-converter
-

The converter that failed.

-
-
Type
-

discord.ext.commands.Converter

-
-
-
- -
-
-original
-

The original exception that was raised. You can also get this via -the __cause__ attribute.

-
-
Type
-

Exception

-
-
-
- -
- -
-
-exception discord.ext.commands.MissingRequiredArgument(param)
-

Exception raised when parsing a command and a parameter -that is required is not encountered.

-

This inherits from UserInputError

-
-
-param
-

The argument that is missing.

-
-
Type
-

inspect.Parameter

-
-
-
- -
- -
-
-exception discord.ext.commands.ArgumentParsingError(message=None, *args)
-

An exception raised when the parser fails to parse a user’s input.

-

This inherits from UserInputError.

-

There are child classes that implement more granular parsing errors for -i18n purposes.

-
- -
-
-exception discord.ext.commands.UnexpectedQuoteError(quote)
-

An exception raised when the parser encounters a quote mark inside a non-quoted string.

-

This inherits from ArgumentParsingError.

-
-
-quote
-

The quote mark that was found inside the non-quoted string.

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.InvalidEndOfQuotedStringError(char)
-

An exception raised when a space is expected after the closing quote in a string -but a different character is found.

-

This inherits from ArgumentParsingError.

-
-
-char
-

The character found instead of the expected string.

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.ExpectedClosingQuoteError(close_quote)
-

An exception raised when a quote character is expected but not found.

-

This inherits from ArgumentParsingError.

-
-
-close_quote
-

The quote character expected.

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.BadArgument(message=None, *args)
-

Exception raised when a parsing or conversion failure is encountered -on an argument to pass into a command.

-

This inherits from UserInputError

-
- -
-
-exception discord.ext.commands.BadUnionArgument(param, converters, errors)
-

Exception raised when a typing.Union converter fails for all -its associated types.

-

This inherits from UserInputError

-
-
-param
-

The parameter that failed being converted.

-
-
Type
-

inspect.Parameter

-
-
-
- -
-
-converters
-

A tuple of converters attempted in conversion, in order of failure.

-
-
Type
-

Tuple[Type, ...]

-
-
-
- -
-
-errors
-

A list of errors that were caught from failing the conversion.

-
-
Type
-

List[CommandError]

-
-
-
- -
- -
-
-exception discord.ext.commands.BadLiteralArgument(param, literals, errors)
-

Exception raised when a typing.Literal converter fails for all -its associated values.

-

This inherits from UserInputError

-
-

New in version 2.0.

-
-
-
-param
-

The parameter that failed being converted.

-
-
Type
-

inspect.Parameter

-
-
-
- -
-
-literals
-

A tuple of values compared against in conversion, in order of failure.

-
-
Type
-

Tuple[Any, ...]

-
-
-
- -
-
-errors
-

A list of errors that were caught from failing the conversion.

-
-
Type
-

List[CommandError]

-
-
-
- -
- -
-
-exception discord.ext.commands.PrivateMessageOnly(message=None)
-

Exception raised when an operation does not work outside of private -message contexts.

-

This inherits from CheckFailure

-
- -
-
-exception discord.ext.commands.NoPrivateMessage(message=None)
-

Exception raised when an operation does not work in private message -contexts.

-

This inherits from CheckFailure

-
- -
-
-exception discord.ext.commands.CheckFailure(message=None, *args)
-

Exception raised when the predicates in Command.checks have failed.

-

This inherits from CommandError

-
- -
-
-exception discord.ext.commands.CheckAnyFailure(checks, errors)
-

Exception raised when all predicates in check_any() fail.

-

This inherits from CheckFailure.

-
-

New in version 1.3.

-
-
-
-errors
-

A list of errors that were caught during execution.

-
-
Type
-

List[CheckFailure]

-
-
-
- -
-
-checks
-

A list of check predicates that failed.

-
-
Type
-

List[Callable[[Context], bool]]

-
-
-
- -
- -
-
-exception discord.ext.commands.CommandNotFound(message=None, *args)
-

Exception raised when a command is attempted to be invoked -but no command under that name is found.

-

This is not raised for invalid subcommands, rather just the -initial main command that is attempted to be invoked.

-

This inherits from CommandError.

-
- -
-
-exception discord.ext.commands.DisabledCommand(message=None, *args)
-

Exception raised when the command being invoked is disabled.

-

This inherits from CommandError

-
- -
-
-exception discord.ext.commands.CommandInvokeError(e)
-

Exception raised when the command being invoked raised an exception.

-

This inherits from CommandError

-
-
-original
-

The original exception that was raised. You can also get this via -the __cause__ attribute.

-
-
Type
-

Exception

-
-
-
- -
- -
-
-exception discord.ext.commands.TooManyArguments(message=None, *args)
-

Exception raised when the command was passed too many arguments and its -Command.ignore_extra attribute was not set to True.

-

This inherits from UserInputError

-
- -
-
-exception discord.ext.commands.UserInputError(message=None, *args)
-

The base exception type for errors that involve errors -regarding user input.

-

This inherits from CommandError.

-
- -
-
-exception discord.ext.commands.CommandOnCooldown(cooldown, retry_after, type)
-

Exception raised when the command being invoked is on cooldown.

-

This inherits from CommandError

-
-
-cooldown
-

A class with attributes rate and per similar to the -cooldown() decorator.

-
-
Type
-

Cooldown

-
-
-
- -
-
-type
-

The type associated with the cooldown.

-
-
Type
-

BucketType

-
-
-
- -
-
-retry_after
-

The amount of seconds to wait before you can retry again.

-
-
Type
-

float

-
-
-
- -
- -
-
-exception discord.ext.commands.MaxConcurrencyReached(number, per)
-

Exception raised when the command being invoked has reached its maximum concurrency.

-

This inherits from CommandError.

-
-
-number
-

The maximum number of concurrent invokers allowed.

-
-
Type
-

int

-
-
-
- -
-
-per
-

The bucket type passed to the max_concurrency() decorator.

-
-
Type
-

BucketType

-
-
-
- -
- -
-
-exception discord.ext.commands.NotOwner(message=None, *args)
-

Exception raised when the message author is not the owner of the bot.

-

This inherits from CheckFailure

-
- -
-
-exception discord.ext.commands.MessageNotFound(argument)
-

Exception raised when the message provided was not found in the channel.

-

This inherits from BadArgument

-
-

New in version 1.5.

-
-
-
-argument
-

The message supplied by the caller that was not found

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.MemberNotFound(argument)
-

Exception raised when the member provided was not found in the bot’s -cache.

-

This inherits from BadArgument

-
-

New in version 1.5.

-
-
-
-argument
-

The member supplied by the caller that was not found

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.GuildNotFound(argument)
-

Exception raised when the guild provided was not found in the bot’s cache.

-

This inherits from BadArgument

-
-

New in version 1.7.

-
-
-
-argument
-

The guild supplied by the called that was not found

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.UserNotFound(argument)
-

Exception raised when the user provided was not found in the bot’s -cache.

-

This inherits from BadArgument

-
-

New in version 1.5.

-
-
-
-argument
-

The user supplied by the caller that was not found

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.ChannelNotFound(argument)
-

Exception raised when the bot can not find the channel.

-

This inherits from BadArgument

-
-

New in version 1.5.

-
-
-
-argument
-

The channel supplied by the caller that was not found

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.ChannelNotReadable(argument)
-

Exception raised when the bot does not have permission to read messages -in the channel.

-

This inherits from BadArgument

-
-

New in version 1.5.

-
-
-
-argument
-

The channel supplied by the caller that was not readable

-
-
Type
-

Union[abc.GuildChannel, Thread]

-
-
-
- -
- -
-
-exception discord.ext.commands.ThreadNotFound(argument)
-

Exception raised when the bot can not find the thread.

-

This inherits from BadArgument

-
-

New in version 2.0.

-
-
-
-argument
-

The thread supplied by the caller that was not found

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.BadColourArgument(argument)
-

Exception raised when the colour is not valid.

-

This inherits from BadArgument

-
-

New in version 1.5.

-
-
-
-argument
-

The colour supplied by the caller that was not valid

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.RoleNotFound(argument)
-

Exception raised when the bot can not find the role.

-

This inherits from BadArgument

-
-

New in version 1.5.

-
-
-
-argument
-

The role supplied by the caller that was not found

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.BadInviteArgument(argument)
-

Exception raised when the invite is invalid or expired.

-

This inherits from BadArgument

-
-

New in version 1.5.

-
-
-
-argument
-

The invite supplied by the caller that was not found

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.EmojiNotFound(argument)
-

Exception raised when the bot can not find the emoji.

-

This inherits from BadArgument

-
-

New in version 1.5.

-
-
-
-argument
-

The emoji supplied by the caller that was not found

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.PartialEmojiConversionFailure(argument)
-

Exception raised when the emoji provided does not match the correct -format.

-

This inherits from BadArgument

-
-

New in version 1.5.

-
-
-
-argument
-

The emoji supplied by the caller that did not match the regex

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.GuildStickerNotFound(argument)
-

Exception raised when the bot can not find the sticker.

-

This inherits from BadArgument

-
-

New in version 2.0.

-
-
-
-argument
-

The sticker supplied by the caller that was not found

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.BadBoolArgument(argument)
-

Exception raised when a boolean argument was not convertable.

-

This inherits from BadArgument

-
-

New in version 1.5.

-
-
-
-argument
-

The boolean argument supplied by the caller that is not in the predefined list

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.MissingPermissions(missing_permissions, *args)
-

Exception raised when the command invoker lacks permissions to run a -command.

-

This inherits from CheckFailure

-
-
-missing_permissions
-

The required permissions that are missing.

-
-
Type
-

List[str]

-
-
-
- -
- -
-
-exception discord.ext.commands.BotMissingPermissions(missing_permissions, *args)
-

Exception raised when the bot’s member lacks permissions to run a -command.

-

This inherits from CheckFailure

-
-
-missing_permissions
-

The required permissions that are missing.

-
-
Type
-

List[str]

-
-
-
- -
- -
-
-exception discord.ext.commands.MissingRole(missing_role)
-

Exception raised when the command invoker lacks a role to run a command.

-

This inherits from CheckFailure

-
-

New in version 1.1.

-
-
-
-missing_role
-

The required role that is missing. -This is the parameter passed to has_role().

-
-
Type
-

Union[str, int]

-
-
-
- -
- -
-
-exception discord.ext.commands.BotMissingRole(missing_role)
-

Exception raised when the bot’s member lacks a role to run a command.

-

This inherits from CheckFailure

-
-

New in version 1.1.

-
-
-
-missing_role
-

The required role that is missing. -This is the parameter passed to has_role().

-
-
Type
-

Union[str, int]

-
-
-
- -
- -
-
-exception discord.ext.commands.MissingAnyRole(missing_roles)
-

Exception raised when the command invoker lacks any of -the roles specified to run a command.

-

This inherits from CheckFailure

-
-

New in version 1.1.

-
-
-
-missing_roles
-

The roles that the invoker is missing. -These are the parameters passed to has_any_role().

-
-
Type
-

List[Union[str, int]]

-
-
-
- -
- -
-
-exception discord.ext.commands.BotMissingAnyRole(missing_roles)
-

Exception raised when the bot’s member lacks any of -the roles specified to run a command.

-

This inherits from CheckFailure

-
-

New in version 1.1.

-
-
-
-missing_roles
-

The roles that the bot’s member is missing. -These are the parameters passed to has_any_role().

-
-
Type
-

List[Union[str, int]]

-
-
-
- -
- -
-
-exception discord.ext.commands.NSFWChannelRequired(channel)
-

Exception raised when a channel does not have the required NSFW setting.

-

This inherits from CheckFailure.

-
-

New in version 1.1.

-
-
-
Parameters
-

channel (Union[abc.GuildChannel, Thread]) – The channel that does not have NSFW enabled.

-
-
-
- -
-
-exception discord.ext.commands.FlagError(message=None, *args)
-

The base exception type for all flag parsing related errors.

-

This inherits from BadArgument.

-
-

New in version 2.0.

-
-
- -
-
-exception discord.ext.commands.BadFlagArgument(flag)
-

An exception raised when a flag failed to convert a value.

-

This inherits from FlagError

-
-

New in version 2.0.

-
-
-
-flag
-

The flag that failed to convert.

-
-
Type
-

Flag

-
-
-
- -
- -
-
-exception discord.ext.commands.MissingFlagArgument(flag)
-

An exception raised when a flag did not get a value.

-

This inherits from FlagError

-
-

New in version 2.0.

-
-
-
-flag
-

The flag that did not get a value.

-
-
Type
-

Flag

-
-
-
- -
- -
-
-exception discord.ext.commands.TooManyFlags(flag, values)
-

An exception raised when a flag has received too many values.

-

This inherits from FlagError.

-
-

New in version 2.0.

-
-
-
-flag
-

The flag that received too many values.

-
-
Type
-

Flag

-
-
-
- -
-
-values
-

The values that were passed.

-
-
Type
-

List[str]

-
-
-
- -
- -
-
-exception discord.ext.commands.MissingRequiredFlag(flag)
-

An exception raised when a required flag was not given.

-

This inherits from FlagError

-
-

New in version 2.0.

-
-
-
-flag
-

The required flag that was not found.

-
-
Type
-

Flag

-
-
-
- -
- -
-
-exception discord.ext.commands.ExtensionError(message=None, *args, name)
-

Base exception for extension related errors.

-

This inherits from DiscordException.

-
-
-name
-

The extension that had an error.

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.ExtensionAlreadyLoaded(name)
-

An exception raised when an extension has already been loaded.

-

This inherits from ExtensionError

-
- -
-
-exception discord.ext.commands.ExtensionNotLoaded(name)
-

An exception raised when an extension was not loaded.

-

This inherits from ExtensionError

-
- -
-
-exception discord.ext.commands.NoEntryPointError(name)
-

An exception raised when an extension does not have a setup entry point function.

-

This inherits from ExtensionError

-
- -
-
-exception discord.ext.commands.ExtensionFailed(name, original)
-

An exception raised when an extension failed to load during execution of the module or setup entry point.

-

This inherits from ExtensionError

-
-
-name
-

The extension that had the error.

-
-
Type
-

str

-
-
-
- -
-
-original
-

The original exception that was raised. You can also get this via -the __cause__ attribute.

-
-
Type
-

Exception

-
-
-
- -
- -
-
-exception discord.ext.commands.ExtensionNotFound(name)
-

An exception raised when an extension is not found.

-

This inherits from ExtensionError

-
-

Changed in version 1.3: Made the original attribute always None.

-
-
-
-name
-

The extension that had the error.

-
-
Type
-

str

-
-
-
- -
- -
-
-exception discord.ext.commands.CommandRegistrationError(name, *, alias_conflict=False)
-

An exception raised when the command can’t be added -because the name is already taken by a different command.

-

This inherits from discord.ClientException

-
-

New in version 1.4.

-
-
-
-name
-

The command name that had the error.

-
-
Type
-

str

-
-
-
- -
-
-alias_conflict
-

Whether the name that conflicts is an alias of the command we try to add.

-
-
Type
-

bool

-
-
-
- -
- -
-

Exception Hierarchy

- -
-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/ext/commands/cogs.html b/docs/Python/html/ext/commands/cogs.html deleted file mode 100644 index 8a9dfe30..00000000 --- a/docs/Python/html/ext/commands/cogs.html +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - Cogs - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

Cogs

-

There comes a point in your bot’s development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that.

-

The gist:

- -

It should be noted that cogs are typically used alongside with Extensions.

-
-

Quick Example

-

This example cog defines a Greetings category for your commands, with a single command named hello as well as a listener to listen to an Event.

-
class Greetings(commands.Cog):
-    def __init__(self, bot):
-        self.bot = bot
-        self._last_member = None
-
-    @commands.Cog.listener()
-    async def on_member_join(self, member):
-        channel = member.guild.system_channel
-        if channel is not None:
-            await channel.send(f'Welcome {member.mention}.')
-
-    @commands.command()
-    async def hello(self, ctx, *, member: discord.Member = None):
-        """Says hello"""
-        member = member or ctx.author
-        if self._last_member is None or self._last_member.id != member.id:
-            await ctx.send(f'Hello {member.name}~')
-        else:
-            await ctx.send(f'Hello {member.name}... This feels familiar.')
-        self._last_member = member
-
-
-

A couple of technical notes to take into consideration:

-
    -
  • All listeners must be explicitly marked via decorator, listener().

  • -
  • The name of the cog is automatically derived from the class name but can be overridden. See Meta Options.

  • -
  • All commands must now take a self parameter to allow usage of instance attributes that can be used to maintain state.

  • -
-
-
-

Cog Registration

-

Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the add_cog() method.

-
bot.add_cog(Greetings(bot))
-
-
-

This binds the cog to the bot, adding all commands and listeners to the bot automatically.

-

Note that we reference the cog by name, which we can override through Meta Options. So if we ever want to remove the cog eventually, we would have to do the following.

-
bot.remove_cog('Greetings')
-
-
-
-
-

Using Cogs

-

Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:

-
class Economy(commands.Cog):
-    ...
-
-    async def withdraw_money(self, member, money):
-        # implementation here
-        ...
-
-    async def deposit_money(self, member, money):
-        # implementation here
-        ...
-
-class Gambling(commands.Cog):
-    def __init__(self, bot):
-        self.bot = bot
-
-    def coinflip(self):
-        return random.randint(0, 1)
-
-    @commands.command()
-    async def gamble(self, ctx, money: int):
-        """Gambles some money."""
-        economy = self.bot.get_cog('Economy')
-        if economy is not None:
-            await economy.withdraw_money(ctx.author, money)
-            if self.coinflip() == 1:
-                await economy.deposit_money(ctx.author, money * 1.5)
-
-
-
-
-

Special Methods

-

As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot.

-

They are as follows:

- -

You can visit the reference to get more detail.

-
-
-

Meta Options

-

At the heart of a cog resides a metaclass, commands.CogMeta, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the name keyword argument as follows:

-
class MyCog(commands.Cog, name='My Cog'):
-    pass
-
-
-

To see more options that you can set, see the documentation of commands.CogMeta.

-
-
-

Inspection

-

Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog.

-

To get a list of commands, we can use Cog.get_commands().

-
>>> cog = bot.get_cog('Greetings')
->>> commands = cog.get_commands()
->>> print([c.name for c in commands])
-
-
-

If we want to get the subcommands as well, we can use the Cog.walk_commands() generator.

-
>>> print([c.qualified_name for c in cog.walk_commands()])
-
-
-

To do the same with listeners, we can query them with Cog.get_listeners(). This returns a list of tuples – the first element being the listener name and the second one being the actual function itself.

-
>>> for name, func in cog.get_listeners():
-...     print(name, '->', func)
-
-
-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/ext/commands/commands.html b/docs/Python/html/ext/commands/commands.html deleted file mode 100644 index 508a8a0b..00000000 --- a/docs/Python/html/ext/commands/commands.html +++ /dev/null @@ -1,1021 +0,0 @@ - - - - - - Commands - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

Commands

-

One of the most appealing aspects of the command extension is how easy it is to define commands and -how you can arbitrarily nest groups and commands to have a rich sub-command system.

-

Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar -signature to the Python function.

-

For example, in the given command definition:

-
@bot.command()
-async def foo(ctx, arg):
-    await ctx.send(arg)
-
-
-

With the following prefix ($), it would be invoked by the user via:

-
$foo abc
-
-
-

A command must always have at least one parameter, ctx, which is the Context as the first one.

-

There are two ways of registering a command. The first one is by using Bot.command() decorator, -as seen in the example above. The second is using the command() decorator followed by -Bot.add_command() on the instance.

-

Essentially, these two are equivalent:

-
from discord.ext import commands
-
-bot = commands.Bot(command_prefix='$')
-
-@bot.command()
-async def test(ctx):
-    pass
-
-# or:
-
-@commands.command()
-async def test(ctx):
-    pass
-
-bot.add_command(test)
-
-
-

Since the Bot.command() decorator is shorter and easier to comprehend, it will be the one used throughout the -documentation here.

-

Any parameter that is accepted by the Command constructor can be passed into the decorator. For example, to change -the name to something other than the function would be as simple as doing this:

-
@bot.command(name='list')
-async def _list(ctx, arg):
-    pass
-
-
-
-

Parameters

-

Since we define commands by making Python functions, we also define the argument passing behaviour by the function -parameters.

-

Certain parameter types do different things in the user side and most forms of parameter types are supported.

-
-

Positional

-

The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:

-
@bot.command()
-async def test(ctx, arg):
-    await ctx.send(arg)
-
-
-

On the bot using side, you can provide positional arguments by just passing a regular string:

-../../_images/positional1.png -

To make use of a word with spaces in between, you should quote it:

-../../_images/positional2.png -

As a note of warning, if you omit the quotes, you will only get the first word:

-../../_images/positional3.png -

Since positional arguments are just regular Python arguments, you can have as many as you want:

-
@bot.command()
-async def test(ctx, arg1, arg2):
-    await ctx.send(f'You passed {arg1} and {arg2}')
-
-
-
-
-

Variable

-

Sometimes you want users to pass in an undetermined number of parameters. The library supports this -similar to how variable list parameters are done in Python:

-
@bot.command()
-async def test(ctx, *args):
-    arguments = ', '.join(args)
-    await ctx.send(f'{len(args)} arguments: {arguments}')
-
-
-

This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, -so multi-word parameters should be quoted.

-

For example, on the bot side:

-../../_images/variable1.png -

If the user wants to input a multi-word argument, they have to quote it like earlier:

-../../_images/variable2.png -

Do note that similar to the Python function behaviour, a user can technically pass no arguments -at all:

-../../_images/variable3.png -

Since the args variable is a tuple, -you can do anything you would usually do with one.

-
-

Slash Command Only

-

This functionally is currently not supported by the slash command API, so is turned into -a single STRING parameter on discord’s end which we do our own parsing on.

-
-
-
-

Keyword-Only Arguments

-

When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into -quotes, you can ask the library to give you the rest as a single argument. We do this by using a keyword-only argument, -seen below:

-
@bot.command()
-async def test(ctx, *, arg):
-    await ctx.send(arg)
-
-
-
-

Warning

-

You can only have one keyword-only argument due to parsing ambiguities.

-
-

On the bot side, we do not need to quote input with spaces:

-../../_images/keyword1.png -

Do keep in mind that wrapping it in quotes leaves it as-is:

-../../_images/keyword2.png -

By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be -toggled by the Command.rest_is_raw argument in the decorator.

-
-
-
-

Invocation Context

-

As seen earlier, every command must take at least a single parameter, called the Context.

-

This parameter gives you access to something called the “invocation context”. Essentially all the information you need to -know how the command was executed. It contains a lot of useful information:

- -

The context implements the abc.Messageable interface, so anything you can do on a abc.Messageable you -can do on the Context.

-
-

Slash Command Only

-

Context.message will be fake if in a slash command, it is not -recommended to access if Context.interaction is not None as most -methods will error due to the message not actually existing.

-
-
-
-

Converters

-

Adding bot arguments with function parameters is only the first step in defining your bot’s command interface. To actually -make use of the arguments, we usually want to convert the data into a target type. We call these -Converters.

-

Converters come in a few flavours:

-
    -
  • A regular callable object that takes an argument as a sole parameter and returns a different type.

    -
    -
      -
    • These range from your own function, to something like bool or int.

    • -
    -
    -
  • -
  • A custom class that inherits from Converter.

  • -
-
-

Basic Converters

-

At its core, a basic converter is a callable that takes in an argument and turns it into something else.

-

For example, if we wanted to add two numbers together, we could request that they are turned into integers -for us by specifying the converter:

-
@bot.command()
-async def add(ctx, a: int, b: int):
-    await ctx.send(a + b)
-
-
-

We specify converters by using something called a function annotation. This is a Python 3 exclusive feature that was -introduced in PEP 3107.

-

This works with any callable, such as a function that would convert a string to all upper-case:

-
def to_upper(argument):
-    return argument.upper()
-
-@bot.command()
-async def up(ctx, *, content: to_upper):
-    await ctx.send(content)
-
-
-
-

bool

-

Unlike the other basic converters, the bool converter is treated slightly different. Instead of casting directly to the bool type, which would result in any non-empty argument returning True, it instead evaluates the argument as True or False based on its given content:

-
if lowered in ('yes', 'y', 'true', 't', '1', 'enable', 'on'):
-    return True
-elif lowered in ('no', 'n', 'false', 'f', '0', 'disable', 'off'):
-    return False
-
-
-
-
-
-

Advanced Converters

-

Sometimes a basic converter doesn’t have enough information that we need. For example, sometimes we want to get some -information from the Message that called the command or we want to do some asynchronous processing.

-

For this, the library provides the Converter interface. This allows you to have access to the -Context and have the callable be asynchronous. Defining a custom converter using this interface requires -overriding a single method, Converter.convert().

-

An example converter:

-
import random
-
-class Slapper(commands.Converter):
-    async def convert(self, ctx, argument):
-        to_slap = random.choice(ctx.guild.members)
-        return f'{ctx.author} slapped {to_slap} because *{argument}*'
-
-@bot.command()
-async def slap(ctx, *, reason: Slapper):
-    await ctx.send(reason)
-
-
-

The converter provided can either be constructed or not. Essentially these two are equivalent:

-
@bot.command()
-async def slap(ctx, *, reason: Slapper):
-    await ctx.send(reason)
-
-# is the same as...
-
-@bot.command()
-async def slap(ctx, *, reason: Slapper()):
-    await ctx.send(reason)
-
-
-

Having the possibility of the converter be constructed allows you to set up some state in the converter’s __init__ for -fine tuning the converter. An example of this is actually in the library, clean_content.

-
@bot.command()
-async def clean(ctx, *, content: commands.clean_content):
-    await ctx.send(content)
-
-# or for fine-tuning
-
-@bot.command()
-async def clean(ctx, *, content: commands.clean_content(use_nicknames=False)):
-    await ctx.send(content)
-
-
-

If a converter fails to convert an argument to its designated target type, the BadArgument exception must be -raised.

-
-
-

Inline Advanced Converters

-

If we don’t want to inherit from Converter, we can still provide a converter that has the -advanced functionalities of an advanced converter and save us from specifying two types.

-

For example, a common idiom would be to have a class and a converter for that class:

-
class JoinDistance:
-    def __init__(self, joined, created):
-        self.joined = joined
-        self.created = created
-
-    @property
-    def delta(self):
-        return self.joined - self.created
-
-class JoinDistanceConverter(commands.MemberConverter):
-    async def convert(self, ctx, argument):
-        member = await super().convert(ctx, argument)
-        return JoinDistance(member.joined_at, member.created_at)
-
-@bot.command()
-async def delta(ctx, *, member: JoinDistanceConverter):
-    is_new = member.delta.days < 100
-    if is_new:
-        await ctx.send("Hey you're pretty new!")
-    else:
-        await ctx.send("Hm you're not so new.")
-
-
-

This can get tedious, so an inline advanced converter is possible through a classmethod() inside the type:

-
class JoinDistance:
-    def __init__(self, joined, created):
-        self.joined = joined
-        self.created = created
-
-    @classmethod
-    async def convert(cls, ctx, argument):
-        member = await commands.MemberConverter().convert(ctx, argument)
-        return cls(member.joined_at, member.created_at)
-
-    @property
-    def delta(self):
-        return self.joined - self.created
-
-@bot.command()
-async def delta(ctx, *, member: JoinDistance):
-    is_new = member.delta.days < 100
-    if is_new:
-        await ctx.send("Hey you're pretty new!")
-    else:
-        await ctx.send("Hm you're not so new.")
-
-
-
-
-

Discord Converters

-

Working with Discord Models is a fairly common thing when defining commands, as a result the library makes -working with them easy.

-

For example, to receive a Member you can just pass it as a converter:

-
@bot.command()
-async def joined(ctx, *, member: discord.Member):
-    await ctx.send(f'{member} joined on {member.joined_at}')
-
-
-

When this command is executed, it attempts to convert the string given into a Member and then passes it as a -parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, -or just a regular username. The default set of converters have been written to be as easy to use as possible.

-

A lot of discord models work out of the gate as a parameter:

- -

Having any of these set as the converter will intelligently convert the argument to the appropriate target type you -specify.

-

Under the hood, these are implemented by the Advanced Converters interface. A table of the equivalent -converter is given below:

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Discord Class

Converter

Supported By Slash Commands

Object

ObjectConverter

Not currently

Member

MemberConverter

Yes, as type 6 (USER)

User

UserConverter

Yes, as type 6 (USER)

Message

MessageConverter

Not currently

PartialMessage

PartialMessageConverter

Not currently

GuildChannel

GuildChannelConverter

Yes, as type 7 (CHANNEL)

TextChannel

TextChannelConverter

Yes, as type 7 (CHANNEL)

VoiceChannel

VoiceChannelConverter

Yes, as type 7 (CHANNEL)

StageChannel

StageChannelConverter

Yes, as type 7 (CHANNEL)

StoreChannel

StoreChannelConverter

Yes, as type 7 (CHANNEL)

CategoryChannel

CategoryChannelConverter

Yes, as type 7 (CHANNEL)

Thread

ThreadConverter

Yes, as type 7 (CHANNEL)

Invite

InviteConverter

Not currently

Guild

GuildConverter

Not currently

Role

RoleConverter

Yes, as type 8 (ROLE)

Game

GameConverter

Not currently

Colour

ColourConverter

Not currently

Emoji

EmojiConverter

Not currently

PartialEmoji

PartialEmojiConverter

Not currently

-
-

Slash Command Only

-

If a slash command is not marked on the table above as supported, it will be sent as type 3 (STRING) -and parsed by normal content parsing, see -the discord documentation -for all supported types by the API.

-
-

By providing the converter it allows us to use them as building blocks for another converter:

-
class MemberRoles(commands.MemberConverter):
-    async def convert(self, ctx, argument):
-        member = await super().convert(ctx, argument)
-        return [role.name for role in member.roles[1:]] # Remove everyone role!
-
-@bot.command()
-async def roles(ctx, *, member: MemberRoles):
-    """Tells you a member's roles."""
-    await ctx.send('I see the following roles: ' + ', '.join(member))
-
-
-
-
-

Special Converters

-

The command extension also has support for certain converters to allow for more advanced and intricate use cases that go -beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your -commands in an easy to use manner.

-
-

typing.Union

-

A typing.Union is a special type hint that allows for the command to take in any of the specific types instead of -a singular type. For example, given the following:

-
import typing
-
-@bot.command()
-async def union(ctx, what: typing.Union[discord.TextChannel, discord.Member]):
-    await ctx.send(what)
-
-
-

The what parameter would either take a discord.TextChannel converter or a discord.Member converter. -The way this works is through a left-to-right order. It first attempts to convert the input to a -discord.TextChannel, and if it fails it tries to convert it to a discord.Member. If all converters fail, -then a special error is raised, BadUnionArgument.

-

Note that any valid converter discussed above can be passed in to the argument list of a typing.Union.

-
-

Slash Command Only

-

These are not currently supported by the Discord API and will be sent as type 3 (STRING)

-
-
-
-

typing.Optional

-

A typing.Optional is a special type hint that allows for “back-referencing” behaviour. If the converter fails to -parse into the specified type, the parser will skip the parameter and then either None or the specified default will be -passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any.

-

Consider the following example:

-
import typing
-
-@bot.command()
-async def bottles(ctx, amount: typing.Optional[int] = 99, *, liquid="beer"):
-    await ctx.send(f'{amount} bottles of {liquid} on the wall!')
-
-
-../../_images/optional1.png -

In this example, since the argument could not be converted into an int, the default of 99 is passed and the parser -resumes handling, which in this case would be to pass it into the liquid parameter.

-
-

Note

-

This converter only works in regular positional parameters, not variable parameters or keyword-only parameters.

-
-
-
-

typing.Literal

-

A typing.Literal is a special type hint that requires the passed parameter to be equal to one of the listed values -after being converted to the same type. For example, given the following:

-
from typing import Literal
-
-@bot.command()
-async def shop(ctx, buy_sell: Literal['buy', 'sell'], amount: Literal[1, 2], *, item: str):
-    await ctx.send(f'{buy_sell.capitalize()}ing {amount} {item}(s)!')
-
-
-

The buy_sell parameter must be either the literal string "buy" or "sell" and amount must convert to the -int 1 or 2. If buy_sell or amount don’t match any value, then a special error is raised, -BadLiteralArgument. Any literal values can be mixed and matched within the same typing.Literal converter.

-

Note that typing.Literal[True] and typing.Literal[False] still follow the bool converter rules.

-
-
-

Greedy

-

The Greedy converter is a generalisation of the typing.Optional converter, except applied -to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can’t convert -any further.

-

Consider the following example:

-
@bot.command()
-async def slap(ctx, members: commands.Greedy[discord.Member], *, reason='no reason'):
-    slapped = ", ".join(x.name for x in members)
-    await ctx.send(f'{slapped} just got slapped for {reason}')
-
-
-

When invoked, it allows for any number of members to be passed in:

-../../_images/greedy1.png -

The type passed when using this converter depends on the parameter type that it is being attached to:

-
    -
  • Positional parameter types will receive either the default parameter or a list of the converted values.

  • -
  • Variable parameter types will be a tuple as usual.

  • -
  • Keyword-only parameter types will be the same as if Greedy was not passed at all.

  • -
-

Greedy parameters can also be made optional by specifying an optional value.

-

When mixed with the typing.Optional converter you can provide simple and expressive command invocation syntaxes:

-
import typing
-
-@bot.command()
-async def ban(ctx, members: commands.Greedy[discord.Member],
-                   delete_days: typing.Optional[int] = 0, *,
-                   reason: str):
-    """Mass bans members with an optional delete_days parameter"""
-    for member in members:
-        await member.ban(delete_message_days=delete_days, reason=reason)
-
-
-

This command can be invoked any of the following ways:

-
$ban @Member @Member2 spam bot
-$ban @Member @Member2 7 spam bot
-$ban @Member spam
-
-
-
-

Warning

-

The usage of Greedy and typing.Optional are powerful and useful, however as a -price, they open you up to some parsing ambiguities that might surprise some people.

-

For example, a signature expecting a typing.Optional of a discord.Member followed by a -int could catch a member named after a number due to the different ways a -MemberConverter decides to fetch members. You should take care to not introduce -unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes -allowed through custom converters or reordering the parameters to minimise clashes.

-

To help aid with some parsing ambiguities, str, None, typing.Optional and -Greedy are forbidden as parameters for the Greedy converter.

-
-
-
-
-

FlagConverter

-
-

New in version 2.0.

-
-

A FlagConverter allows the user to specify user-friendly “flags” using PEP 526 type annotations -or a syntax more reminiscent of the dataclasses module.

-

For example, the following code:

-
from discord.ext import commands
-import discord
-
-class BanFlags(commands.FlagConverter):
-    member: discord.Member
-    reason: str
-    days: int = 1
-
-@commands.command()
-async def ban(ctx, *, flags: BanFlags):
-    plural = f'{flags.days} days' if flags.days != 1 else f'{flags.days} day'
-    await ctx.send(f'Banned {flags.member} for {flags.reason!r} (deleted {plural} worth of messages)')
-
-
-

Allows the user to invoke the command using a simple flag-like syntax:

-../../_images/flags1.png -

Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the -flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have -multiple knobs to turn or simulating keyword-only parameters in your external command interface. It is recommended to use -keyword-only parameters with the flag converter. This ensures proper parsing and behaviour with quoting.

-

Internally, the FlagConverter class examines the class to find flags. A flag can either be a -class variable with a type annotation or a class variable that’s been assigned the result of the flag() -function. These flags are then used to define the interface that your users will use. The annotations correspond to -the converters that the flag arguments must adhere to.

-

For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name -or the default value then the flag() function can come in handy:

-
from typing import List
-
-class BanFlags(commands.FlagConverter):
-    members: List[discord.Member] = commands.flag(name='member', default=lambda ctx: [])
-
-
-

This tells the parser that the members attribute is mapped to a flag named member and that -the default value is an empty list. For greater customisability, the default can either be a value or a callable -that takes the Context as a sole parameter. This callable can either be a function or a coroutine.

-

In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:

-
# --hello world syntax
-class PosixLikeFlags(commands.FlagConverter, delimiter=' ', prefix='--'):
-    hello: str
-
-
-# /make food
-class WindowsLikeFlags(commands.FlagConverter, prefix='/', delimiter=''):
-    make: str
-
-# TOPIC: not allowed nsfw: yes Slowmode: 100
-class Settings(commands.FlagConverter, case_insensitive=True):
-    topic: Optional[str]
-    nsfw: Optional[bool]
-    slowmode: Optional[int]
-
-
-
-

Note

-

Despite the similarities in these examples to command like arguments, the syntax and parser is not -a command line parser. The syntax is mainly inspired by Discord’s search bar input and as a result -all flags need a corresponding value.

-
-
-

Slash Command Only

-

As these are built very similar to slash command options, they are converted into options and parsed -back into flags when the slash command is executed.

-
-

The flag converter is similar to regular commands and allows you to use most types of converters -(with the exception of Greedy) as the type annotation. Some extra support is added for specific -annotations as described below.

-
-

typing.List

-

If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times.

-

For example, augmenting the example above:

-
from discord.ext import commands
-from typing import List
-import discord
-
-class BanFlags(commands.FlagConverter):
-    members: List[discord.Member] = commands.flag(name='member')
-    reason: str
-    days: int = 1
-
-@commands.command()
-async def ban(ctx, *, flags: BanFlags):
-    for member in flags.members:
-        await member.ban(reason=flags.reason, delete_message_days=flags.days)
-
-    members = ', '.join(str(member) for member in flags.members)
-    plural = f'{flags.days} days' if flags.days != 1 else f'{flags.days} day'
-    await ctx.send(f'Banned {members} for {flags.reason!r} (deleted {plural} worth of messages)')
-
-
-

This is called by repeatedly specifying the flag:

-../../_images/flags2.png -
-
-

typing.Tuple

-

Since the above syntax can be a bit repetitive when specifying a flag many times, the tuple type annotation -allows for “greedy-like” semantics using a variadic tuple:

-
from discord.ext import commands
-from typing import Tuple
-import discord
-
-class BanFlags(commands.FlagConverter):
-    members: Tuple[discord.Member, ...]
-    reason: str
-    days: int = 1
-
-
-

This allows the previous ban command to be called like this:

-../../_images/flags3.png -

The tuple annotation also allows for parsing of pairs. For example, given the following code:

-
# point: 10 11 point: 12 13
-class Coordinates(commands.FlagConverter):
-    point: Tuple[int, int]
-
-
-
-

Warning

-

Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted -if they require spaces. So if one of the inner types is str and the argument requires spaces -then quotes should be used to disambiguate it from the other element of the tuple.

-
-
-
-

typing.Dict

-

A dict annotation is functionally equivalent to List[Tuple[K, V]] except with the return type -given as a dict rather than a list.

-
-
-
-
-

Error Handling

-

When our commands fail to parse we will, by default, receive a noisy error in stderr of our console that tells us -that an error has happened and has been silently ignored.

-

In order to handle our errors, we must use something called an error handler. There is a global error handler, called -on_command_error() which works like any other event in the Event Reference. This global error handler is -called for every error reached.

-

Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error -handlers that allow us to do just that. First we decorate an error handler function with Command.error():

-
@bot.command()
-async def info(ctx, *, member: discord.Member):
-    """Tells you some info about the member."""
-    msg = f'{member} joined on {member.joined_at} and has {len(member.roles)} roles.'
-    await ctx.send(msg)
-
-@info.error
-async def info_error(ctx, error):
-    if isinstance(error, commands.BadArgument):
-        await ctx.send('I could not find that member...')
-
-
-

The first parameter of the error handler is the Context while the second one is an exception that is derived from -CommandError. A list of errors is found in the Exceptions page of the documentation.

-
-
-

Checks

-

There are cases when we don’t want a user to use our commands. They don’t have permissions to do so or maybe we blocked -them from using our bot earlier. The commands extension comes with full support for these things in a concept called a -Checks.

-

A check is a basic predicate that can take in a Context as its sole parameter. Within it, you have the following -options:

-
    -
  • Return True to signal that the person can run the command.

  • -
  • Return False to signal that the person cannot run the command.

  • -
  • Raise a CommandError derived exception to signal the person cannot run the command.

    -
    -
      -
    • This allows you to have custom error messages for you to handle in the -error handlers.

    • -
    -
    -
  • -
-

To register a check for a command, we would have two ways of doing so. The first is using the check() -decorator. For example:

-
async def is_owner(ctx):
-    return ctx.author.id == 316026178463072268
-
-@bot.command(name='eval')
-@commands.check(is_owner)
-async def _eval(ctx, *, code):
-    """A bad example of an eval command"""
-    await ctx.send(eval(code))
-
-
-

This would only evaluate the command if the function is_owner returns True. Sometimes we re-use a check often and -want to split it into its own decorator. To do that we can just add another level of depth:

-
def is_owner():
-    async def predicate(ctx):
-        return ctx.author.id == 316026178463072268
-    return commands.check(predicate)
-
-@bot.command(name='eval')
-@is_owner()
-async def _eval(ctx, *, code):
-    """A bad example of an eval command"""
-    await ctx.send(eval(code))
-
-
-

Since an owner check is so common, the library provides it for you (is_owner()):

-
@bot.command(name='eval')
-@commands.is_owner()
-async def _eval(ctx, *, code):
-    """A bad example of an eval command"""
-    await ctx.send(eval(code))
-
-
-

When multiple checks are specified, all of them must be True:

-
def is_in_guild(guild_id):
-    async def predicate(ctx):
-        return ctx.guild and ctx.guild.id == guild_id
-    return commands.check(predicate)
-
-@bot.command()
-@commands.is_owner()
-@is_in_guild(41771983423143937)
-async def secretguilddata(ctx):
-    """super secret stuff"""
-    await ctx.send('secret stuff')
-
-
-

If any of those checks fail in the example above, then the command will not be run.

-

When an error happens, the error is propagated to the error handlers. If you do not -raise a custom CommandError derived exception, then it will get wrapped up into a -CheckFailure exception as so:

-
@bot.command()
-@commands.is_owner()
-@is_in_guild(41771983423143937)
-async def secretguilddata(ctx):
-    """super secret stuff"""
-    await ctx.send('secret stuff')
-
-@secretguilddata.error
-async def secretguilddata_error(ctx, error):
-    if isinstance(error, commands.CheckFailure):
-        await ctx.send('nothing to see here comrade.')
-
-
-

If you want a more robust error system, you can derive from the exception and raise it instead of returning False:

-
class NoPrivateMessages(commands.CheckFailure):
-    pass
-
-def guild_only():
-    async def predicate(ctx):
-        if ctx.guild is None:
-            raise NoPrivateMessages('Hey no DMs!')
-        return True
-    return commands.check(predicate)
-
-@guild_only()
-async def test(ctx):
-    await ctx.send('Hey this is not a DM! Nice.')
-
-@test.error
-async def test_error(ctx, error):
-    if isinstance(error, NoPrivateMessages):
-        await ctx.send(error)
-
-
-
-

Note

-

Since having a guild_only decorator is pretty common, it comes built-in via guild_only().

-
-
-

Global Checks

-

Sometimes we want to apply a check to every command, not just certain commands. The library supports this as well -using the global check concept.

-

Global checks work similarly to regular checks except they are registered with the Bot.check() decorator.

-

For example, to block all DMs we could do the following:

-
@bot.check
-async def globally_block_dms(ctx):
-    return ctx.guild is not None
-
-
-
-

Warning

-

Be careful on how you write your global checks, as it could also lock you out of your own bot.

-
-
-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/ext/commands/extensions.html b/docs/Python/html/ext/commands/extensions.html deleted file mode 100644 index 836a7fd4..00000000 --- a/docs/Python/html/ext/commands/extensions.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - Extensions - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

Extensions

-

There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called extensions.

-
-

Primer

-

An extension at its core is a python file with an entry point called setup. This setup must be a plain Python function (not a coroutine). It takes a single parameter – the Bot that loads the extension.

-

An example extension looks like this:

-
-
hello.py
-
from discord.ext import commands
-
-@commands.command()
-async def hello(ctx):
-    await ctx.send(f'Hello {ctx.author.display_name}.')
-
-def setup(bot):
-    bot.add_command(hello)
-
-
-
-

In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling Bot.load_extension(). To load this extension we call bot.load_extension('hello').

-
-

Cogs

-

Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, Cogs.

-
-
-

Note

-

Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in plugins/hello.py then we use the string plugins.hello.

-
-
-
-

Reloading

-

When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, Bot.reload_extension().

-
>>> bot.reload_extension('hello')
-
-
-

Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened.

-
-
-

Cleaning Up

-

Although rare, sometimes an extension needs to clean-up or know when it’s being unloaded. For cases like these, there is another entry point named teardown which is similar to setup except called when the extension is unloaded.

-
-
basic_ext.py
-
def setup(bot):
-    print('I am being loaded!')
-
-def teardown(bot):
-    print('I am being unloaded!')
-
-
-
-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/ext/commands/index.html b/docs/Python/html/ext/commands/index.html deleted file mode 100644 index 1c0ebe52..00000000 --- a/docs/Python/html/ext/commands/index.html +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - discord.ext.commands – Bot commands framework - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

discord.ext.commands – Bot commands framework

-

discord.py offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of -bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in -creating a bot command framework that is extensible, flexible, and powerful. For this reason, discord.py comes with an -extension library that handles this for you.

- -
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/ext/commands/slash-commands.html b/docs/Python/html/ext/commands/slash-commands.html deleted file mode 100644 index f62624f5..00000000 --- a/docs/Python/html/ext/commands/slash-commands.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - Slash Commands - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

Slash Commands

-

Slash Commands are currently supported in enhanced-discord.py using a system on top of ext.commands.

-

This system is very simple to use, and can be enabled via Bot.slash_commands globally, -or only for specific commands via Command.slash_command.

-

There is also the parameter slash_command_guilds which can be passed to either Bot or the command -decorator in order to only upload the commands as guild commands to these specific guild IDs, however this -should only be used for testing or small (<10 guilds) bots.

-

If you want to add option descriptions to your commands, you should use Option

-

For troubleshooting, see the FAQ

-
-

Slash Command Only

-

For parts of the docs specific to slash commands, look for this box!

-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/ext/tasks/index.html b/docs/Python/html/ext/tasks/index.html deleted file mode 100644 index 9f93ec21..00000000 --- a/docs/Python/html/ext/tasks/index.html +++ /dev/null @@ -1,704 +0,0 @@ - - - - - - discord.ext.tasks – asyncio.Task helpers - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

discord.ext.tasks – asyncio.Task helpers

-
-

New in version 1.1.0.

-
-

One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:

-
    -
  • How do I handle asyncio.CancelledError?

  • -
  • What do I do if the internet goes out?

  • -
  • What is the maximum number of seconds I can sleep anyway?

  • -
-

The goal of this discord.py extension is to abstract all these worries away from you.

-
-

Recipes

-

A simple background task in a Cog:

-
from discord.ext import tasks, commands
-
-class MyCog(commands.Cog):
-    def __init__(self):
-        self.index = 0
-        self.printer.start()
-
-    def cog_unload(self):
-        self.printer.cancel()
-
-    @tasks.loop(seconds=5.0)
-    async def printer(self):
-        print(self.index)
-        self.index += 1
-
-
-

Adding an exception to handle during reconnect:

-
import asyncpg
-from discord.ext import tasks, commands
-
-class MyCog(commands.Cog):
-    def __init__(self, bot):
-        self.bot = bot
-        self.data = []
-        self.batch_update.add_exception_type(asyncpg.PostgresConnectionError)
-        self.batch_update.start()
-
-    def cog_unload(self):
-        self.batch_update.cancel()
-
-    @tasks.loop(minutes=5.0)
-    async def batch_update(self):
-        async with self.bot.pool.acquire() as con:
-            # batch update here...
-            pass
-
-
-

Looping a certain amount of times before exiting:

-
from discord.ext import tasks
-
-@tasks.loop(seconds=5.0, count=5)
-async def slow_count():
-    print(slow_count.current_loop)
-
-@slow_count.after_loop
-async def after_slow_count():
-    print('done!')
-
-slow_count.start()
-
-
-

Waiting until the bot is ready before the loop starts:

-
from discord.ext import tasks, commands
-
-class MyCog(commands.Cog):
-    def __init__(self, bot):
-        self.index = 0
-        self.bot = bot
-        self.printer.start()
-
-    def cog_unload(self):
-        self.printer.cancel()
-
-    @tasks.loop(seconds=5.0)
-    async def printer(self):
-        print(self.index)
-        self.index += 1
-
-    @printer.before_loop
-    async def before_printer(self):
-        print('waiting...')
-        await self.bot.wait_until_ready()
-
-
-

Doing something during cancellation:

-
from discord.ext import tasks, commands
-import asyncio
-
-class MyCog(commands.Cog):
-    def __init__(self, bot):
-        self.bot= bot
-        self._batch = []
-        self.lock = asyncio.Lock()
-        self.bulker.start()
-
-    async def do_bulk(self):
-        # bulk insert data here
-        ...
-
-    @tasks.loop(seconds=10.0)
-    async def bulker(self):
-        async with self.lock:
-            await self.do_bulk()
-
-    @bulker.after_loop
-    async def on_bulker_cancel(self):
-        if self.bulker.is_being_cancelled() and len(self._batch) != 0:
-            # if we're cancelled and we have some data left...
-            # let's insert it to our database
-            await self.do_bulk()
-
-
-
-
-

API Reference

-
- -Methods -
-
-class discord.ext.tasks.Loop
-

A background task helper that abstracts the loop and reconnection logic for you.

-

The main interface to create this is through loop().

-
-
-@after_loop
-

A decorator that register a coroutine to be called after the loop finished running.

-

The coroutine must take no arguments (except self in a class context).

-
-

Note

-

This coroutine is called even during cancellation. If it is desirable -to tell apart whether something was cancelled or not, check to see -whether is_being_cancelled() is True or not.

-
-
-
Parameters
-

coro (coroutine) – The coroutine to register after the loop finishes.

-
-
Raises
-

TypeError – The function was not a coroutine.

-
-
-
- -
-
-@before_loop
-

A decorator that registers a coroutine to be called before the loop starts running.

-

This is useful if you want to wait for some bot state before the loop starts, -such as discord.Client.wait_until_ready().

-

The coroutine must take no arguments (except self in a class context).

-
-
Parameters
-

coro (coroutine) – The coroutine to register before the loop runs.

-
-
Raises
-

TypeError – The function was not a coroutine.

-
-
-
- -
-
-@error
-

A decorator that registers a coroutine to be called if the task encounters an unhandled exception.

-

The coroutine must take only one argument the exception raised (except self in a class context).

-

By default this prints to sys.stderr however it could be -overridden to have a different implementation.

-
-

New in version 1.4.

-
-
-
Parameters
-

coro (coroutine) – The coroutine to register in the event of an unhandled exception.

-
-
Raises
-

TypeError – The function was not a coroutine.

-
-
-
- -
-
-property seconds
-

Read-only value for the number of seconds -between each iteration. None if an explicit time value was passed instead.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[float]

-
-
-
- -
-
-property minutes
-

Read-only value for the number of minutes -between each iteration. None if an explicit time value was passed instead.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[float]

-
-
-
- -
-
-property hours
-

Read-only value for the number of hours -between each iteration. None if an explicit time value was passed instead.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[float]

-
-
-
- -
-
-property time
-

Read-only list for the exact times this loop runs at. -None if relative times were passed instead.

-
-

New in version 2.0.

-
-
-
Type
-

Optional[List[datetime.time]]

-
-
-
- -
-
-property current_loop
-

The current iteration of the loop.

-
-
Type
-

int

-
-
-
- -
-
-property next_iteration
-

When the next iteration of the loop will occur.

-
-

New in version 1.3.

-
-
-
Type
-

Optional[datetime.datetime]

-
-
-
- -
-
-await __call__(*args, **kwargs)
-

This function is a coroutine.

-

Calls the internal callback that the task holds.

-
-

New in version 1.6.

-
-
-
Parameters
-
    -
  • *args – The arguments to use.

  • -
  • **kwargs – The keyword arguments to use.

  • -
-
-
-
- -
-
-start(*args, **kwargs)
-

Starts the internal task in the event loop.

-
-
Parameters
-
    -
  • *args – The arguments to use.

  • -
  • **kwargs – The keyword arguments to use.

  • -
-
-
Raises
-

RuntimeError – A task has already been launched and is running.

-
-
Returns
-

The task that has been created.

-
-
Return type
-

asyncio.Task

-
-
-
- -
-
-stop()
-

Gracefully stops the task from running.

-

Unlike cancel(), this allows the task to finish its -current iteration before gracefully exiting.

-
-

Note

-

If the internal function raises an error that can be -handled before finishing then it will retry until -it succeeds.

-

If this is undesirable, either remove the error handling -before stopping via clear_exception_types() or -use cancel() instead.

-
-
-

New in version 1.2.

-
-
- -
-
-cancel()
-

Cancels the internal task, if it is running.

-
- -
-
-restart(*args, **kwargs)
-

A convenience method to restart the internal task.

-
-

Note

-

Due to the way this function works, the task is not -returned like start().

-
-
-
Parameters
-
    -
  • *args – The arguments to use.

  • -
  • **kwargs – The keyword arguments to use.

  • -
-
-
-
- -
-
-add_exception_type(*exceptions)
-

Adds exception types to be handled during the reconnect logic.

-

By default the exception types handled are those handled by -discord.Client.connect(), which includes a lot of internet disconnection -errors.

-

This function is useful if you’re interacting with a 3rd party library that -raises its own set of exceptions.

-
-
Parameters
-

*exceptions (Type[BaseException]) – An argument list of exception classes to handle.

-
-
Raises
-

TypeError – An exception passed is either not a class or not inherited from BaseException.

-
-
-
- -
-
-clear_exception_types()
-

Removes all exception types that are handled.

-
-

Note

-

This operation obviously cannot be undone!

-
-
- -
-
-remove_exception_type(*exceptions)
-

Removes exception types from being handled during the reconnect logic.

-
-
Parameters
-

*exceptions (Type[BaseException]) – An argument list of exception classes to handle.

-
-
Returns
-

Whether all exceptions were successfully removed.

-
-
Return type
-

bool

-
-
-
- -
-
-get_task()
-

Optional[asyncio.Task]: Fetches the internal task or None if there isn’t one running.

-
- -
-
-is_being_cancelled()
-

Whether the task is being cancelled.

-
- -
-
-failed()
-

bool: Whether the internal task has failed.

-
-

New in version 1.2.

-
-
- -
-
-is_running()
-

bool: Check if the task is currently running.

-
-

New in version 1.4.

-
-
- -
-
-change_interval(*, seconds=0, minutes=0, hours=0, time=...)
-

Changes the interval for the sleep time.

-
-

New in version 1.2.

-
-
-
Parameters
-
    -
  • seconds (float) – The number of seconds between every iteration.

  • -
  • minutes (float) – The number of minutes between every iteration.

  • -
  • hours (float) – The number of hours between every iteration.

  • -
  • time (Union[datetime.time, Sequence[datetime.time]]) –

    The exact times to run this loop at. Either a non-empty list or a single -value of datetime.time should be passed. -This cannot be used in conjunction with the relative time parameters.

    -
    -

    New in version 2.0.

    -
    -
    -

    Note

    -

    Duplicate times will be ignored, and only run once.

    -
    -

  • -
-
-
Raises
-
    -
  • ValueError – An invalid value was given.

  • -
  • TypeError – An invalid value for the time parameter was passed, or the - time parameter was passed in conjunction with relative time parameters.

  • -
-
-
-
- -
- -
-
-discord.ext.tasks.loop(*, seconds=..., minutes=..., hours=..., time=..., count=None, reconnect=True, loop=...)
-

A decorator that schedules a task in the background for you with -optional reconnect logic. The decorator returns a Loop.

-
-
Parameters
-
    -
  • seconds (float) – The number of seconds between every iteration.

  • -
  • minutes (float) – The number of minutes between every iteration.

  • -
  • hours (float) – The number of hours between every iteration.

  • -
  • time (Union[datetime.time, Sequence[datetime.time]]) –

    The exact times to run this loop at. Either a non-empty list or a single -value of datetime.time should be passed. Timezones are supported. -If no timezone is given for the times, it is assumed to represent UTC time.

    -

    This cannot be used in conjunction with the relative time parameters.

    -
    -

    Note

    -

    Duplicate times will be ignored, and only run once.

    -
    -
    -

    New in version 2.0.

    -
    -

  • -
  • count (Optional[int]) – The number of loops to do, None if it should be an -infinite loop.

  • -
  • reconnect (bool) – Whether to handle errors and restart the task -using an exponential back-off algorithm similar to the -one used in discord.Client.connect().

  • -
  • loop (asyncio.AbstractEventLoop) – The loop to use to register the task, if not given -defaults to asyncio.get_event_loop().

  • -
-
-
Raises
-
    -
  • ValueError – An invalid value was given.

  • -
  • TypeError – The function was not a coroutine, an invalid value for the time parameter was passed, - or time parameter was passed in conjunction with relative time parameters.

  • -
-
-
-
- -
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/faq.html b/docs/Python/html/faq.html deleted file mode 100644 index 0d0120d8..00000000 --- a/docs/Python/html/faq.html +++ /dev/null @@ -1,601 +0,0 @@ - - - - - - Frequently Asked Questions - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

Frequently Asked Questions

-

This is a list of Frequently Asked Questions regarding using discord.py and its extension modules. Feel free to suggest a -new question or submit one via pull requests.

- -
-

Coroutines

-

Questions regarding coroutines and asyncio belong here.

-
-

What is a coroutine?

-

A coroutine is a function that must be invoked with await or yield from. When Python encounters an await it stops -the function’s execution at that point and works on other things until it comes back to that point and finishes off its work. -This allows for your program to be doing multiple things at the same time without using threads or complicated -multiprocessing.

-

If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.

-
-
-

Where can I use await?

-

You can only use await inside async def functions and nowhere else.

-
-
-

What does “blocking” mean?

-

In asynchronous programming a blocking call is essentially all the parts of the function that are not await. Do not -despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make -sure that you don’t excessively block functions. Remember, if you block for too long then your bot will freeze since it has -not stopped the function’s execution at that point to do other things.

-

If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: -Heartbeat blocked for more than N seconds. -See Setting Up Logging for details on enabling logging.

-

A common source of blocking for too long is something like time.sleep(). Don’t do that. Use asyncio.sleep() -instead. Similar to this example:

-
# bad
-time.sleep(10)
-
-# good
-await asyncio.sleep(10)
-
-
-

Another common source of blocking for too long is using HTTP requests with the famous module Requests: HTTP for Humans™. -While Requests: HTTP for Humans™ is an amazing module for non-asynchronous programming, it is not a good choice for -asyncio because certain requests can block the event loop too long. Instead, use the aiohttp library which -is installed on the side with this library.

-

Consider the following example:

-
# bad
-r = requests.get('http://aws.random.cat/meow')
-if r.status_code == 200:
-    js = r.json()
-    await channel.send(js['file'])
-
-# good
-async with aiohttp.ClientSession() as session:
-    async with session.get('http://aws.random.cat/meow') as r:
-        if r.status == 200:
-            js = await r.json()
-            await channel.send(js['file'])
-
-
-
-
-
-

General

-

General questions regarding library usage belong here.

-
-

Where can I find usage examples?

-

Example code can be found in the examples folder -in the repository.

-
-
-

How do I set the “Playing” status?

-

The activity keyword argument may be passed in the Client constructor or Client.change_presence(), given an Activity object.

-

The constructor may be used for static activities, while Client.change_presence() may be used to update the activity at runtime.

-
-

Warning

-

It is highly discouraged to use Client.change_presence() or API calls in on_ready() as this event may be called many times while running, not just once.

-

There is a high chance of disconnecting if presences are changed right after connecting.

-
-

The status type (playing, listening, streaming, watching) can be set using the ActivityType enum. -For memory optimisation purposes, some activities are offered in slimmed-down versions:

- -

Putting both of these pieces of info together, you get the following:

-
client = discord.Client(activity=discord.Game(name='my game'))
-
-# or, for watching:
-activity = discord.Activity(name='my activity', type=discord.ActivityType.watching)
-client = discord.Client(activity=activity)
-
-
-
-
-

How do I send a message to a specific channel?

-

You must fetch the channel directly and then call the appropriate method. Example:

-
channel = client.get_channel(12324234183172)
-await channel.send('hello')
-
-
-
-
-

How do I send a DM?

-

Get the User or Member object and call abc.Messageable.send(). For example:

-
user = client.get_user(381870129706958858)
-await user.send('👀')
-
-
-

If you are responding to an event, such as on_message(), you already have the User object via Message.author:

-
await message.author.send('👋')
-
-
-
-
-

How do I get the ID of a sent message?

-

abc.Messageable.send() returns the Message that was sent. -The ID of a message can be accessed via Message.id:

-
message = await channel.send('hmm…')
-message_id = message.id
-
-
-
-
-

How do I upload an image?

-

To upload something to Discord you have to use the File object.

-

A File accepts two parameters, the file-like object (or file path) and the filename -to pass to Discord when uploading.

-

If you want to upload an image it’s as simple as:

-
await channel.send(file=discord.File('my_file.png'))
-
-
-

If you have a file-like object you can do as follows:

-
with open('my_file.png', 'rb') as fp:
-    await channel.send(file=discord.File(fp, 'new_filename.png'))
-
-
-

To upload multiple files, you can use the files keyword argument instead of file:

-
my_files = [
-    discord.File('result.zip'),
-    discord.File('teaser_graph.png'),
-]
-await channel.send(files=my_files)
-
-
-

If you want to upload something from a URL, you will have to use an HTTP request using aiohttp -and then pass an io.BytesIO instance to File like so:

-
import io
-import aiohttp
-
-async with aiohttp.ClientSession() as session:
-    async with session.get(my_url) as resp:
-        if resp.status != 200:
-            return await channel.send('Could not download file...')
-        data = io.BytesIO(await resp.read())
-        await channel.send(file=discord.File(data, 'cool_image.png'))
-
-
-
-
-

How can I add a reaction to a message?

-

You use the Message.add_reaction() method.

-

If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:

-
    -
  • '👍'

  • -
  • '\U0001F44D'

  • -
  • '\N{THUMBS UP SIGN}'

  • -
-

Quick example:

-
emoji = '\N{THUMBS UP SIGN}'
-# or '\U0001f44d' or '👍'
-await message.add_reaction(emoji)
-
-
-

In case you want to use emoji that come from a message, you already get their code points in the content without needing -to do anything special. You cannot send ':thumbsup:' style shorthands.

-

For custom emoji, you should pass an instance of Emoji. You can also pass a '<:name:id>' string, but if you -can use said emoji, you should be able to use Client.get_emoji() to get an emoji via ID or use utils.find()/ -utils.get() on Client.emojis or Guild.emojis collections.

-

The name and ID of a custom emoji can be found with the client by prefixing :custom_emoji: with a backslash. -For example, sending the message \:python3: with the client will result in <:python3:232720527448342530>.

-

Quick example:

-
# if you have the ID already
-emoji = client.get_emoji(310177266011340803)
-await message.add_reaction(emoji)
-
-# no ID, do a lookup
-emoji = discord.utils.get(guild.emojis, name='LUL')
-if emoji:
-    await message.add_reaction(emoji)
-
-# if you have the name and ID of a custom emoji:
-emoji = '<:python3:232720527448342530>'
-await message.add_reaction(emoji)
-
-
-
-
-

How do I pass a coroutine to the player’s “after” function?

-

The library’s music player launches on a separate thread, ergo it does not execute inside a coroutine. -This does not mean that it is not possible to call a coroutine in the after parameter. To do so you must pass a callable -that wraps up a couple of aspects.

-

The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are -technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for -us, asyncio comes with a asyncio.run_coroutine_threadsafe() function that allows us to call -a coroutine from another thread.

-

However, this function returns a Future and to actually call it we have to fetch its result. Putting all of -this together we can do the following:

-
def my_after(error):
-    coro = some_channel.send('Song is done!')
-    fut = asyncio.run_coroutine_threadsafe(coro, client.loop)
-    try:
-        fut.result()
-    except:
-        # an error happened sending the message
-        pass
-
-voice.play(discord.FFmpegPCMAudio(url), after=my_after)
-
-
-
-
-

How do I run something in the background?

-

Check the background_task.py example.

-
-
-

How do I get a specific model?

-

There are multiple ways of doing this. If you have a specific model’s ID then you can use -one of the following functions:

- -

The following use an HTTP request:

- -

If the functions above do not help you, then use of utils.find() or utils.get() would serve some use in finding -specific models.

-

Quick example:

-
# find a guild by name
-guild = discord.utils.get(client.guilds, name='My Server')
-
-# make sure to check if it's found
-if guild is not None:
-    # find a channel by name
-    channel = discord.utils.get(guild.text_channels, name='cool-channel')
-
-
-
-
-

How do I make a web request?

-

To make a request, you should use a non-blocking library. -This library already uses and requires a 3rd party library for making requests, aiohttp.

-

Quick example:

-
async with aiohttp.ClientSession() as session:
-    async with session.get('http://aws.random.cat/meow') as r:
-        if r.status == 200:
-            js = await r.json()
-
-
-

See aiohttp’s full documentation for more information.

-
-
-

How do I use a local image file for an embed image?

-

Discord special-cases uploading an image attachment and using it within an embed so that it will not -display separately, but instead in the embed’s thumbnail, image, footer or author icon.

-

To do so, upload the image normally with abc.Messageable.send(), -and set the embed’s image URL to attachment://image.png, -where image.png is the filename of the image you will send.

-

Quick example:

-
file = discord.File("path/to/my/image.png", filename="image.png")
-embed = discord.Embed()
-embed.set_image(url="attachment://image.png")
-await channel.send(file=file, embed=embed)
-
-
-
-

Note

-

Due to a Discord limitation, filenames may not include underscores.

-
-
-
-

Is there an event for audit log entries being created?

-

Since Discord does not dispatch this information in the gateway, the library cannot provide this information. -This is currently a Discord limitation.

-
-
-
-

Commands Extension

-

Questions regarding discord.ext.commands belong here.

-
-

Why does on_message make my commands stop working?

-

Overriding the default provided on_message forbids any extra commands from running. To fix this, add a -bot.process_commands(message) line at the end of your on_message. For example:

-
@bot.event
-async def on_message(message):
-    # do some extra stuff here
-
-    await bot.process_commands(message)
-
-
-

Alternatively, you can place your on_message logic into a listener. In this setup, you should not -manually call bot.process_commands(). This also allows you to do multiple things asynchronously in response -to a message. Example:

-
@bot.listen('on_message')
-async def whatever_you_want_to_call_it(message):
-    # do stuff here
-    # do not process commands here
-
-
-
-
-

Why do my arguments require quotes?

-

In a simple command defined as:

-
@bot.command()
-async def echo(ctx, message: str):
-    await ctx.send(message)
-
-
-

Calling it via ?echo a b c will only fetch the first argument and disregard the rest. To fix this you should either call -it via ?echo "a b c" or change the signature to have “consume rest” behaviour. Example:

-
@bot.command()
-async def echo(ctx, *, message: str):
-    await ctx.send(message)
-
-
-

This will allow you to use ?echo a b c without needing the quotes.

-
-
-

How do I get the original message?

-

The Context contains an attribute, message to get the original -message.

-

Example:

-
@bot.command()
-async def length(ctx):
-    await ctx.send(f'Your message is {len(ctx.message.content)} characters long.')
-
-
-
-
-

How do I make a subcommand?

-

Use the group() decorator. This will transform the callback into a Group which will allow you to add commands into -the group operating as “subcommands”. These groups can be arbitrarily nested as well.

-

Example:

-
@bot.group()
-async def git(ctx):
-    if ctx.invoked_subcommand is None:
-        await ctx.send('Invalid git command passed...')
-
-@git.command()
-async def push(ctx, remote: str, branch: str):
-    await ctx.send(f'Pushing to {remote} {branch}')
-
-
-

This could then be used as ?git push origin master.

-
-
-

How do I make slash commands?

-

See Slash Commands

-
-
-

My slash commands aren’t showing up!

-

You need to invite your bot with the application.commands scope on each guild and -you need the Permissions.use_slash_commands permission in order to see slash commands.

-The scopes checkbox with "bot" and "applications.commands" ticked. -

Global slash commands (created by not specifying slash_command_guilds) will also take up an -hour to refresh on discord’s end, so it is recommended to set slash_command_guilds for development.

-

If none of this works, make sure you are actually running enhanced-discord.py by doing print(bot.slash_commands)

-
-
-

My bot won’t start after enabling slash commands!

-

This means some of your command metadata is invalid for slash commands. -Make sure your command names and option names are lowercase, and they have to match the regex ^[\w-]{1,32}$

-

If you cannot figure out the problem, you should disable slash commands globally (slash_commands=False) -then go through commands, enabling them specifically with slash_command=True until it -errors, then you can debug the problem with that command specifically.

-
-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/genindex.html b/docs/Python/html/genindex.html deleted file mode 100644 index 86f34031..00000000 --- a/docs/Python/html/genindex.html +++ /dev/null @@ -1,5392 +0,0 @@ - - - - - - Index - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- - - -

Index

- -
- _ - | A - | B - | C - | D - | E - | F - | G - | H - | I - | J - | K - | L - | M - | N - | O - | P - | Q - | R - | S - | T - | U - | V - | W - | Y - -
-

_

- - - -
- -

A

- - - -
- -

B

- - - -
- -

C

- - - -
- -

D

- - - -
- -

E

- - - -
- -

F

- - - -
- -

G

- - - -
- -

H

- - - -
- -

I

- - - -
- -

J

- - - -
- -

K

- - - -
- -

L

- - - -
- -

M

- - - -
- -

N

- - - -
- -

O

- - - -
- -

P

- - - -
- -

Q

- - - -
- -

R

- - - -
- -

S

- - - -
- -

T

- - - -
- -

U

- - - -
- -

V

- - - -
- -

W

- - - -
- -

Y

- - -
- - - - - - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/index.html b/docs/Python/html/index.html deleted file mode 100644 index 5bbd6577..00000000 --- a/docs/Python/html/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - Welcome to discord.py - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

Welcome to discord.py

-_images/snake.svg_images/snake_dark.svg

discord.py is a modern, easy to use, feature-rich, and async ready API wrapper -for Discord.

-

Features:

-
    -
  • Modern Pythonic API using async/await syntax

  • -
  • Sane rate limit handling that prevents 429s

  • -
  • Command extension to aid with bot creation

  • -
  • Easy to use with an object oriented design

  • -
  • Optimised for both speed and memory

  • -
-
-

Getting started

-

Is this your first time using the library? This is the place to get started!

- -
-
-

Getting help

-

If you’re having trouble with something, these resources might help.

- -
-
-

Extensions

-

These extensions help you during development when it comes to common tasks.

- -
-
-

Manuals

-

These pages go into great detail about everything the API can do.

- -
-
-

Meta

-

If you’re looking for something related to the project itself, it’s here.

- -
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/intents.html b/docs/Python/html/intents.html deleted file mode 100644 index f62fd39a..00000000 --- a/docs/Python/html/intents.html +++ /dev/null @@ -1,331 +0,0 @@ - - - - - - A Primer to Gateway Intents - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

New in version 1.5.

-
-
-

A Primer to Gateway Intents

-

In version 1.5 comes the introduction of Intents. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the Intents documentation.

-

These intents are passed to the constructor of Client or its subclasses (AutoShardedClient, AutoShardedBot, Bot) with the intents argument.

-

If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently Intents.members and Intents.presences.

-
-

What intents are needed?

-

The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the Intents class documents what events it corresponds to and what kind of cache it enables.

-

For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:

-
 import discord
- intents = discord.Intents.default()
- intents.typing = False
- intents.presences = False
-
- # Somewhere else:
- # client = discord.Client(intents=intents)
- # or
- # from discord.ext import commands
- # bot = commands.Bot(command_prefix='!', intents=intents)
-
-
-

Note that this doesn’t enable Intents.members since it’s a privileged intent.

-

Another example showing a bot that only deals with messages and guild information:

-
 import discord
- intents = discord.Intents(messages=True, guilds=True)
- # If you also want reaction events enable the following:
- # intents.reactions = True
-
- # Somewhere else:
- # client = discord.Client(intents=intents)
- # or
- # from discord.ext import commands
- # bot = commands.Bot(command_prefix='!', intents=intents)
-
-
-
-
-

Privileged Intents

-

With the API change requiring bot authors to specify intents, some intents were restricted further and require more manual steps. These intents are called privileged intents.

-

A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:

-
    -
  1. Make sure you’re logged on to the Discord website.

  2. -
  3. Navigate to the application page.

  4. -
  5. Click on the bot you want to enable privileged intents for.

  6. -
  7. Navigate to the bot tab on the left side of the screen.

    -
    -
    The bot tab in the application page. -
    -
  8. -
  9. Scroll down to the “Privileged Gateway Intents” section and enable the ones you want.

    -
    -
    The privileged gateway intents selector. -
    -
  10. -
-
-

Warning

-

Enabling privileged intents when your bot is in over 100 guilds requires going through bot verification. If your bot is already verified and you would like to enable a privileged intent you must go through Discord support and talk to them about it.

-
-
-

Note

-

Even if you enable intents through the developer portal, you still have to enable the intents -through code as well.

-
-
-

Do I need privileged intents?

-

This is a quick checklist to see if you need specific privileged intents.

-
-

Presence Intent

- -
-
-

Member Intent

-
    -
  • Whether you track member joins or member leaves, corresponds to on_member_join() and on_member_remove() events.

  • -
  • Whether you want to track member updates such as nickname or role changes.

  • -
  • Whether you want to track user updates such as usernames, avatars, discriminators, etc.

  • -
  • Whether you want to request the guild member list through Guild.chunk() or Guild.fetch_members().

  • -
  • Whether you want high accuracy member cache under Guild.members.

  • -
-
-
-
-
-

Member Cache

-

Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the Intents.members intent is required in order to track the members who left and properly evict them.

-

To aid with member cache where we don’t need members to be cached, the library now has a MemberCacheFlags flag to control the member cache. The documentation page for the class goes over the specific policies that are possible.

-

It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:

-
    -
  • on_message() will have Message.author be a member even if cache is disabled.

  • -
  • on_voice_state_update() will have the member parameter be a member even if cache is disabled.

  • -
  • on_reaction_add() will have the user parameter be a member when in a guild even if cache is disabled.

  • -
  • on_raw_reaction_add() will have RawReactionActionEvent.member be a member when in a guild even if cache is disabled.

  • -
  • The reaction add events do not contain additional information when in direct messages. This is a Discord limitation.

  • -
  • The reaction removal events do not have member information. This is a Discord limitation.

  • -
-

Other events that take a Member will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the Intents.members intent enabled.

-
-
-

Retrieving Members

-

If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:

-
    -
  • -
    Guild.query_members()
      -
    • Used to query members by a prefix matching nickname or username.

    • -
    • This can also be used to query members by their user ID.

    • -
    • This uses the gateway and not the HTTP.

    • -
    -
    -
    -
  • -
  • -
    Guild.chunk()
      -
    • This can be used to fetch the entire member list through the gateway.

    • -
    -
    -
    -
  • -
  • -
    Guild.fetch_member()
      -
    • Used to fetch a member by ID through the HTTP API.

    • -
    -
    -
    -
  • -
  • -
    Guild.fetch_members()
      -
    • used to fetch a large number of members through the HTTP API.

    • -
    -
    -
    -
  • -
-

It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds.

-
-
-

Troubleshooting

-

Some common issues relating to the mandatory intent change.

-
-

Where’d my members go?

-

Due to an API change Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the members privileged intent and change the Intents.members attribute to true.

-

For example:

-
 import discord
- intents = discord.Intents.default()
- intents.members = True
-
- # Somewhere else:
- # client = discord.Client(intents=intents)
- # or
- # from discord.ext import commands
- # bot = commands.Bot(command_prefix='!', intents=intents)
-
-
-
-
-

Why does on_ready take so long to fire?

-

As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the Guild.large attribute set to True. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that all guilds, not just large guilds are being requested.

-

There are a few solutions to fix this.

-

The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we’re still limited to 1 guild per request but the number of guilds we request is significantly reduced.

-

The second solution is to disable member chunking by setting chunk_guilds_at_startup to False when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to retrieve members.

-

To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are “large” (over 250 members).

-

Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With Intents.members but not Intents.presences this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both Intents.members and Intents.presences we mostly get the old behaviour so we’re only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it’s close to the original timing to fetch the member list.

-

Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this.

-

If you truly dislike the direction Discord is going with their API, you can contact them via support.

-
-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/intro.html b/docs/Python/html/intro.html deleted file mode 100644 index e05f9cf1..00000000 --- a/docs/Python/html/intro.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - Introduction - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

Introduction

-

This is the documentation for discord.py, a library for Python to aid -in creating applications that utilise the Discord API.

-
-

Prerequisites

-

discord.py works with Python 3.8 or higher. Support for earlier versions of Python -is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported.

-
-
-

Installing

-

You can get the library directly from PyPI:

-
python3 -m pip install -U discord.py
-
-
-

If you are using Windows, then the following should be used instead:

-
py -3 -m pip install -U discord.py
-
-
-

To get voice support, you should use discord.py[voice] instead of discord.py, e.g.

-
python3 -m pip install -U discord.py[voice]
-
-
-

On Linux environments, installing voice requires getting the following dependencies:

- -

For a Debian-based system, the following command will get these dependencies:

-
$ apt install libffi-dev libnacl-dev python3-dev
-
-
-

Remember to check your permissions!

-
-

Virtual Environments

-

Sometimes you want to keep libraries from polluting system installs or use a different version of -libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. -For this purpose, the standard library as of Python 3.3 comes with a concept called “Virtual Environment”s to -help maintain these separate versions.

-

A more in-depth tutorial is found on Virtual Environments and Packages.

-

However, for the quick and dirty:

-
    -
  1. Go to your project’s working directory:

    -
    -
    $ cd your-bot-source
    -$ python3 -m venv bot-env
    -
    -
    -
    -
  2. -
  3. Activate the virtual environment:

    -
    -
    $ source bot-env/bin/activate
    -
    -
    -

    On Windows you activate it with:

    -
    $ bot-env\Scripts\activate.bat
    -
    -
    -
    -
  4. -
  5. Use pip like usual:

    -
    -
    $ pip install -U discord.py
    -
    -
    -
    -
  6. -
-

Congratulations. You now have a virtual environment all set up.

-
-
-
-

Basic Concepts

-

discord.py revolves around the concept of events. -An event is something you listen to and then respond to. For example, when a message -happens, you will receive an event about it that you can respond to.

-

A quick example to showcase how events work:

-
import discord
-
-class MyClient(discord.Client):
-    async def on_ready(self):
-        print(f'Logged on as {self.user}!')
-
-    async def on_message(self, message):
-        print(f'Message from {messsage.author}: {message.content}')
-
-client = MyClient()
-client.run('my token goes here')
-
-
-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/logging.html b/docs/Python/html/logging.html deleted file mode 100644 index 8665e20a..00000000 --- a/docs/Python/html/logging.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - Setting Up Logging - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

New in version 0.6.0.

-
-
-

Setting Up Logging

-

discord.py logs errors and debug information via the logging python -module. It is strongly recommended that the logging module is -configured, as no errors or warnings will be output if it is not set up. -Configuration of the logging module can be as simple as:

-
import logging
-
-logging.basicConfig(level=logging.INFO)
-
-
-

Placed at the start of the application. This will output the logs from -discord as well as other libraries that use the logging module -directly to the console.

-

The optional level argument specifies what level of events to log -out and can be any of CRITICAL, ERROR, WARNING, INFO, and -DEBUG and if not specified defaults to WARNING.

-

More advanced setups are possible with the logging module. For -example to write the logs to a file called discord.log instead of -outputting them to the console the following snippet can be used:

-
import discord
-import logging
-
-logger = logging.getLogger('discord')
-logger.setLevel(logging.DEBUG)
-handler = logging.FileHandler(filename='discord.log', encoding='utf-8', mode='w')
-handler.setFormatter(logging.Formatter('%(asctime)s:%(levelname)s:%(name)s: %(message)s'))
-logger.addHandler(handler)
-
-
-

This is recommended, especially at verbose levels such as INFO -and DEBUG, as there are a lot of events logged and it would clog the -stdout of your program.

-

For more information, check the documentation and tutorial of the -logging module.

-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/migrating.html b/docs/Python/html/migrating.html deleted file mode 100644 index b7eda147..00000000 --- a/docs/Python/html/migrating.html +++ /dev/null @@ -1,1462 +0,0 @@ - - - - - - Migrating to v1.0 - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

Migrating to v1.0

-

v1.0 is one of the biggest breaking changes in the library due to a complete -redesign.

-

The amount of changes are so massive and long that for all intents and purposes, it is a completely -new library.

-

Part of the redesign involves making things more easy to use and natural. Things are done on the -models instead of requiring a Client instance to do any work.

-
-

Python Version Change

-

In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, -the library had to remove support for Python versions lower than 3.5.3, which essentially means that support for Python 3.4 -is dropped.

-
-
-

Major Model Changes

-

Below are major model changes that have happened in v1.0

-
-

Snowflakes are int

-

Before v1.0, all snowflakes (the id attribute) were strings. This has been changed to int.

-

Quick example:

-
# before
-ch = client.get_channel('84319995256905728')
-if message.author.id == '80528701850124288':
-    ...
-
-# after
-ch = client.get_channel(84319995256905728)
-if message.author.id == 80528701850124288:
-    ...
-
-
-

This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have -to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally.

-
-
-

Server is now Guild

-

The official API documentation calls the “Server” concept a “Guild” instead. In order to be more consistent with the -API documentation when necessary, the model has been renamed to Guild and all instances referring to it has -been changed as well.

-

A list of changes is as follows:

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Before

After

Message.server

Message.guild

Channel.server

GuildChannel.guild

Client.servers

Client.guilds

Client.get_server

Client.get_guild()

Emoji.server

Emoji.guild

Role.server

Role.guild

Invite.server

Invite.guild

Member.server

Member.guild

Permissions.manage_server

Permissions.manage_guild

VoiceClient.server

VoiceClient.guild

Client.create_server

Client.create_guild()

-
-
-

Models are Stateful

-

As mentioned earlier, a lot of functionality was moved out of Client and -put into their respective model.

-

A list of these changes is enumerated below.

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Before

After

Client.add_reaction

Message.add_reaction()

Client.add_roles

Member.add_roles()

Client.ban

Member.ban() or Guild.ban()

Client.change_nickname

Member.edit()

Client.clear_reactions

Message.clear_reactions()

Client.create_channel

Guild.create_text_channel() and Guild.create_voice_channel()

Client.create_custom_emoji

Guild.create_custom_emoji()

Client.create_invite

abc.GuildChannel.create_invite()

Client.create_role

Guild.create_role()

Client.delete_channel

abc.GuildChannel.delete()

Client.delete_channel_permissions

abc.GuildChannel.set_permissions() with overwrite set to None

Client.delete_custom_emoji

Emoji.delete()

Client.delete_invite

Invite.delete() or Client.delete_invite()

Client.delete_message

Message.delete()

Client.delete_messages

TextChannel.delete_messages()

Client.delete_role

Role.delete()

Client.delete_server

Guild.delete()

Client.edit_channel

TextChannel.edit() or VoiceChannel.edit()

Client.edit_channel_permissions

abc.GuildChannel.set_permissions()

Client.edit_custom_emoji

Emoji.edit()

Client.edit_message

Message.edit()

Client.edit_profile

ClientUser.edit() (you get this from Client.user)

Client.edit_role

Role.edit()

Client.edit_server

Guild.edit()

Client.estimate_pruned_members

Guild.estimate_pruned_members()

Client.get_all_emojis

Client.emojis

Client.get_bans

Guild.bans()

Client.get_invite

Client.fetch_invite()

Client.get_message

abc.Messageable.fetch_message()

Client.get_reaction_users

Reaction.users()

Client.get_user_info

Client.fetch_user()

Client.invites_from

abc.GuildChannel.invites() or Guild.invites()

Client.join_voice_channel

VoiceChannel.connect() (see Voice Changes)

Client.kick

Guild.kick() or Member.kick()

Client.leave_server

Guild.leave()

Client.logs_from

abc.Messageable.history() (see Asynchronous Iterators)

Client.move_channel

TextChannel.edit() or VoiceChannel.edit()

Client.move_member

Member.edit()

Client.move_role

Role.edit()

Client.pin_message

Message.pin()

Client.pins_from

abc.Messageable.pins()

Client.prune_members

Guild.prune_members()

Client.purge_from

TextChannel.purge()

Client.remove_reaction

Message.remove_reaction()

Client.remove_roles

Member.remove_roles()

Client.replace_roles

Member.edit()

Client.send_file

abc.Messageable.send() (see Sending Messages)

Client.send_message

abc.Messageable.send() (see Sending Messages)

Client.send_typing

abc.Messageable.trigger_typing() (use abc.Messageable.typing())

Client.server_voice_state

Member.edit()

Client.start_private_message

User.create_dm()

Client.unban

Guild.unban() or Member.unban()

Client.unpin_message

Message.unpin()

Client.wait_for_message

Client.wait_for() (see Waiting For Events)

Client.wait_for_reaction

Client.wait_for() (see Waiting For Events)

Client.wait_until_login

Removed

Client.wait_until_ready

No change

-
-
-

Property Changes

-

In order to be a bit more consistent, certain things that were properties were changed to methods instead.

-

The following are now methods instead of properties (requires parentheses):

- -
-
-

Dict Value Change

-

Prior to v1.0 some aggregating properties that retrieved models would return “dict view” objects.

-

As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would -be raised and crash the task. To alleviate this, the “dict view” objects were changed into lists.

-

The following views were changed to a list:

- -
-
-

Voice State Changes

-

Earlier, in v0.11.0 a VoiceState class was added to refer to voice states along with a -Member.voice attribute to refer to it.

-

However, it was transparent to the user. In an effort to make the library save more memory, the -voice state change is now more visible.

-

The only way to access voice attributes is via the Member.voice attribute. Note that if -the member does not have a voice state this attribute can be None.

-

Quick example:

-
# before
-member.deaf
-member.voice.voice_channel
-
-# after
-if member.voice: # can be None
-    member.voice.deaf
-    member.voice.channel
-
-
-
-
-

User and Member Type Split

-

In v1.0 to save memory, User and Member are no longer inherited. Instead, they are “flattened” -by having equivalent properties that map out to the functional underlying User. Thus, there is no functional -change in how they are used. However this breaks isinstance() checks and thus is something to keep in mind.

-

These memory savings were accomplished by having a global User cache, and as a positive consequence you -can now easily fetch a User by their ID by using the new Client.get_user(). You can also get a list -of all User your client can see with Client.users.

-
-
-

Channel Type Split

-

Prior to v1.0, channels were two different types, Channel and PrivateChannel with a is_private -property to help differentiate between them.

-

In order to save memory the channels have been split into 4 different types:

- -

With this split came the removal of the is_private attribute. You should now use isinstance().

-

The types are split into two different Abstract Base Classes:

- -

So to check if something is a guild channel you would do:

-
isinstance(channel, discord.abc.GuildChannel)
-
-
-

And to check if it’s a private channel you would do:

-
isinstance(channel, discord.abc.PrivateChannel)
-
-
-

Of course, if you’re looking for only a specific type you can pass that too, e.g.

-
isinstance(channel, discord.TextChannel)
-
-
-

With this type split also came event changes, which are enumerated in Event Changes.

-
-
-

Miscellaneous Model Changes

-

There were lots of other things added or removed in the models in general.

-

They will be enumerated here.

-

Removed

-
    -
  • Client.login() no longer accepts email and password logins.

    -
    -
      -
    • Use a token and bot=False.

    • -
    -
    -
  • -
  • Client.get_all_emojis

    -
    -
    -
    -
  • -
  • Client.messages

    -
    -
    -
    -
  • -
  • Client.wait_for_message and Client.wait_for_reaction are gone.

    -
    -
    -
    -
  • -
  • Channel.voice_members

    -
    -
    -
    -
  • -
  • Channel.is_private

    -
    -
      -
    • Use isinstance instead with one of the Abstract Base Classes instead.

    • -
    • e.g. isinstance(channel, discord.abc.GuildChannel) will check if it isn’t a private channel.

    • -
    -
    -
  • -
  • Client.accept_invite

    -
    -
      -
    • There is no replacement for this one. This functionality is deprecated API wise.

    • -
    -
    -
  • -
  • Guild.default_channel / Server.default_channel and Channel.is_default

    -
    -
      -
    • The concept of a default channel was removed from Discord. -See #329.

    • -
    -
    -
  • -
  • Message.edited_timestamp

    -
    -
    -
    -
  • -
  • Message.timestamp

    -
    -
    -
    -
  • -
  • Colour.to_tuple()

    -
    -
    -
    -
  • -
  • Permissions.view_audit_logs

    -
    -
    -
    -
  • -
  • Member.game

    -
    -
    -
    -
  • -
  • Guild.role_hierarchy / Server.role_hierarchy

    -
    -
      -
    • Use Guild.roles instead. Note that while sorted, it is in the opposite order -of what the old Guild.role_hierarchy used to be.

    • -
    -
    -
  • -
-

Changed

- -

Added

- -
-
-
-

Sending Messages

-

One of the changes that were done was the merger of the previous Client.send_message and Client.send_file -functionality into a single method, send().

-

Basically:

-
# before
-await client.send_message(channel, 'Hello')
-
-# after
-await channel.send('Hello')
-
-
-

This supports everything that the old send_message supported such as embeds:

-
e = discord.Embed(title='foo')
-await channel.send('Hello', embed=e)
-
-
-

There is a caveat with sending files however, as this functionality was expanded to support multiple -file attachments, you must now use a File pseudo-namedtuple to upload a single file.

-
# before
-await client.send_file(channel, 'cool.png', filename='testing.png', content='Hello')
-
-# after
-await channel.send('Hello', file=discord.File('cool.png', 'testing.png'))
-
-
-

This change was to facilitate multiple file uploads:

-
my_files = [
-    discord.File('cool.png', 'testing.png'),
-    discord.File(some_fp, 'cool_filename.png'),
-]
-
-await channel.send('Your images:', files=my_files)
-
-
-
-
-

Asynchronous Iterators

-

Prior to v1.0, certain functions like Client.logs_from would return a different type if done in Python 3.4 or 3.5+.

-

In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called -AsyncIterator.

-

This allows you to iterate over it like normal:

-
async for message in channel.history():
-    print(message)
-
-
-

Or turn it into a list:

-
messages = await channel.history().flatten()
-for message in messages:
-    print(message)
-
-
-

A handy aspect of returning AsyncIterator is that it allows you to chain functions together such as -AsyncIterator.map() or AsyncIterator.filter():

-
async for m_id in channel.history().filter(lambda m: m.author == client.user).map(lambda m: m.id):
-    print(m_id)
-
-
-

The functions passed to AsyncIterator.map() or AsyncIterator.filter() can be either coroutines or regular -functions.

-

You can also get single elements a la discord.utils.find() or discord.utils.get() via -AsyncIterator.get() or AsyncIterator.find():

-
my_last_message = await channel.history().get(author=client.user)
-
-
-

The following return AsyncIterator:

- -
-
-

Event Changes

-

A lot of events have gone through some changes.

-

Many events with server in the name were changed to use guild instead.

-

Before:

-
    -
  • on_server_join

  • -
  • on_server_remove

  • -
  • on_server_update

  • -
  • on_server_role_create

  • -
  • on_server_role_delete

  • -
  • on_server_role_update

  • -
  • on_server_emojis_update

  • -
  • on_server_available

  • -
  • on_server_unavailable

  • -
-

After:

- -

The on_voice_state_update() event has received an argument change.

-

Before:

-
async def on_voice_state_update(before, after)
-
-
-

After:

-
async def on_voice_state_update(member, before, after)
-
-
-

Instead of two Member objects, the new event takes one Member object and two VoiceState objects.

-

The on_guild_emojis_update() event has received an argument change.

-

Before:

-
async def on_guild_emojis_update(before, after)
-
-
-

After:

-
async def on_guild_emojis_update(guild, before, after)
-
-
-

The first argument is now the Guild that the emojis were updated from.

-

The on_member_ban() event has received an argument change as well:

-

Before:

-
async def on_member_ban(member)
-
-
-

After:

-
async def on_member_ban(guild, user)
-
-
-

As part of the change, the event can either receive a User or Member. To help in the cases that have -User, the Guild is provided as the first parameter.

-

The on_channel_ events have received a type level split (see Channel Type Split).

-

Before:

-
    -
  • on_channel_delete

  • -
  • on_channel_create

  • -
  • on_channel_update

  • -
-

After:

- -

The on_guild_channel_ events correspond to abc.GuildChannel being updated (i.e. TextChannel -and VoiceChannel) and the on_private_channel_ events correspond to abc.PrivateChannel being -updated (i.e. DMChannel and GroupChannel).

-
-
-

Voice Changes

-

Voice sending has gone through a complete redesign.

-

In particular:

-
    -
  • Connection is done through VoiceChannel.connect() instead of Client.join_voice_channel.

  • -
  • You no longer create players and operate on them (you no longer store them).

  • -
  • You instead request VoiceClient to play an AudioSource via VoiceClient.play().

  • -
  • There are different built-in AudioSources.

    - -
  • -
  • create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed.

    - -
  • -
  • Using VoiceClient.play() will not return an AudioPlayer.

    -
      -
    • Instead, it’s “flattened” like User -> Member is.

    • -
    -
  • -
  • The after parameter now takes a single parameter (the error).

  • -
-

Basically:

-

Before:

-
vc = await client.join_voice_channel(channel)
-player = vc.create_ffmpeg_player('testing.mp3', after=lambda: print('done'))
-player.start()
-
-player.is_playing()
-player.pause()
-player.resume()
-player.stop()
-# ...
-
-
-

After:

-
vc = await channel.connect()
-vc.play(discord.FFmpegPCMAudio('testing.mp3'), after=lambda e: print('done', e))
-vc.is_playing()
-vc.pause()
-vc.resume()
-vc.stop()
-# ...
-
-
-

With the changed AudioSource design, you can now change the source that the VoiceClient is -playing at runtime via VoiceClient.source.

-

For example, you can add a PCMVolumeTransformer to allow changing the volume:

-
vc.source = discord.PCMVolumeTransformer(vc.source)
-vc.source.volume = 0.6
-
-
-

An added benefit of the redesign is that it will be much more resilient towards reconnections:

-
    -
  • The voice websocket will now automatically re-connect and re-do the handshake when disconnected.

  • -
  • The initial connect handshake will now retry up to 5 times so you no longer get as many asyncio.TimeoutError.

  • -
  • Audio will now stop and resume when a disconnect is found.

    -
      -
    • This includes changing voice regions etc.

    • -
    -
  • -
-
-
-

Waiting For Events

-

Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different -functions, Client.wait_for_message and Client.wait_for_reaction. One problem with one such approach is that it did -not allow you to wait for events outside of the ones provided by the library.

-

In v1.0 the concept of waiting for another event has been generalised to work with any event as Client.wait_for().

-

For example, to wait for a message:

-
# before
-msg = await client.wait_for_message(author=message.author, channel=message.channel)
-
-# after
-def pred(m):
-    return m.author == message.author and m.channel == message.channel
-
-msg = await client.wait_for('message', check=pred)
-
-
-

To facilitate multiple returns, Client.wait_for() returns either a single argument, no arguments, or a tuple of -arguments.

-

For example, to wait for a reaction:

-
reaction, user = await client.wait_for('reaction_add', check=lambda r, u: u.id == 176995180300206080)
-
-# use user and reaction
-
-
-

Since this function now can return multiple arguments, the timeout parameter will now raise a asyncio.TimeoutError -when reached instead of setting the return to None. For example:

-
def pred(m):
-    return m.author == message.author and m.channel == message.channel
-
-try:
-
-    msg = await client.wait_for('message', check=pred, timeout=60.0)
-except asyncio.TimeoutError:
-    await channel.send('You took too long...')
-else:
-    await channel.send('You said {0.content}, {0.author}.'.format(msg))
-
-
-
-
-

Upgraded Dependencies

-

Following v1.0 of the library, we’ve updated our requirements to aiohttp v2.0 or higher.

-

Since this is a backwards incompatible change, it is recommended that you see the -changes -and the Migration to 2.x pages for details on the breaking changes in -aiohttp.

-

Of the most significant for common users is the removal of helper functions such as:

-
    -
  • aiohttp.get

  • -
  • aiohttp.post

  • -
  • aiohttp.delete

  • -
  • aiohttp.patch

  • -
  • aiohttp.head

  • -
  • aiohttp.put

  • -
  • aiohttp.request

  • -
-

It is recommended that you create a session instead:

-
async with aiohttp.ClientSession() as sess:
-    async with sess.get('url') as resp:
-        # work with resp
-
-
-

Since it is better to not create a session for every request, you should store it in a variable and then call -session.close on it when it needs to be disposed.

-
-
-

Sharding

-

The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen.

-

If using a Bot account and you want to shard your bot in a single process then you can use the AutoShardedClient.

-

This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC.

-

It should be noted that the sharded client does not support user accounts. This is due to the changes in connection -logic and state handling.

-

Usage is as simple as doing:

-
client = discord.AutoShardedClient()
-
-
-

instead of using Client.

-

This will launch as many shards as your bot needs using the /gateway/bot endpoint, which allocates about 1000 guilds -per shard.

-

If you want more control over the sharding you can specify shard_count and shard_ids.

-
# launch 10 shards regardless
-client = discord.AutoShardedClient(shard_count=10)
-
-# launch specific shard IDs in this process
-client = discord.AutoShardedClient(shard_count=10, shard_ids=(1, 2, 5, 6))
-
-
-

For users of the command extension, there is also AutoShardedBot which behaves similarly.

-
-
-

Connection Improvements

-

In v1.0, the auto reconnection logic has been powered up significantly.

-

Client.connect() has gained a new keyword argument, reconnect that defaults to True which controls -the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going -offline or Discord going offline with exponential back-off.

-

Client.run() and Client.start() gains this keyword argument as well, but for most cases you will not -need to specify it unless turning it off.

-
-
-

Command Extension Changes

-

Due to the Models are Stateful changes, some of the design of the extension module had to -undergo some design changes as well.

-
-

Context Changes

-

In v1.0, the Context has received a lot of changes with how it’s retrieved and used.

-

The biggest change is that pass_context=True no longer exists, Context is always passed. Ergo:

-
# before
-@bot.command()
-async def foo():
-    await bot.say('Hello')
-
-# after
-@bot.command()
-async def foo(ctx):
-    await ctx.send('Hello')
-
-
-

The reason for this is because Context now meets the requirements of abc.Messageable. This -makes it have similar functionality to TextChannel or DMChannel. Using send() -will either DM the user in a DM context or send a message in the channel it was in, similar to the old bot.say -functionality. The old helpers have been removed in favour of the new abc.Messageable interface. See -Removed Helpers for more information.

-

Since the Context is now passed by default, several shortcuts have been added:

-

New Shortcuts

-
    -
  • ctx.author is a shortcut for ctx.message.author.

  • -
  • ctx.guild is a shortcut for ctx.message.guild.

  • -
  • ctx.channel is a shortcut for ctx.message.channel.

  • -
  • ctx.me is a shortcut for ctx.message.guild.me or ctx.bot.user.

  • -
  • ctx.voice_client is a shortcut for ctx.message.guild.voice_client.

  • -
-

New Functionality

- -
-

Subclassing Context

-

In v1.0, there is now the ability to subclass Context and use it instead of the default -provided one.

-

For example, if you want to add some functionality to the context:

-
class MyContext(commands.Context):
-    @property
-    def secret(self):
-        return 'my secret here'
-
-
-

Then you can use get_context() inside on_message() with combination with -invoke() to use your custom context:

-
class MyBot(commands.Bot):
-    async def on_message(self, message):
-        ctx = await self.get_context(message, cls=MyContext)
-        await self.invoke(ctx)
-
-
-

Now inside your commands you will have access to your custom context:

-
@bot.command()
-async def secret(ctx):
-    await ctx.send(ctx.secret)
-
-
-
-
-

Removed Helpers

-

With the new Context changes, a lot of message sending helpers have been removed.

-

For a full list of changes, see below:

-
---- - - - - - - - - - - - - - - - - - - - - -

Before

After

Bot.say

Context.send()

Bot.upload

Context.send()

Bot.whisper

ctx.author.send

Bot.type

Context.typing() or Context.trigger_typing()

Bot.reply

No replacement.

-
-
-
-

Command Changes

-

As mentioned earlier, the first command change is that pass_context=True no longer -exists, so there is no need to pass this as a parameter.

-

Another change is the removal of no_pm=True. Instead, use the new guild_only() built-in -check.

-

The commands attribute of Bot and Group have been changed from a -dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use all_commands instead.

-

Command instances have gained new attributes and properties:

-
    -
  1. signature to get the signature of the command.

  2. -
  3. usage, an attribute to override the default signature.

  4. -
  5. root_parent to get the root parent group of a subcommand.

  6. -
-

For Group and Bot the following changed:

- -
-
-

Check Changes

-

Prior to v1.0, check()s could only be synchronous. As of v1.0 checks can now be coroutines.

-

Along with this change, a couple new checks were added.

- -
-
-

Event Changes

-

All command extension events have changed.

-

Before:

-
on_command(command, ctx)
-on_command_completion(command, ctx)
-on_command_error(error, ctx)
-
-
-

After:

-
on_command(ctx)
-on_command_completion(ctx)
-on_command_error(ctx, error)
-
-
-

The extraneous command parameter in on_command() and on_command_completion() -have been removed. The Command instance was not kept up-to date so it was incorrect. In order to get -the up to date Command instance, use the Context.command -attribute.

-

The error handlers, either Command.error() or on_command_error(), -have been re-ordered to use the Context as its first parameter to be consistent with other events -and commands.

-
-
-

HelpFormatter and Help Command Changes

-

The HelpFormatter class has been removed. It has been replaced with a HelpCommand class. This class now stores all the command handling and processing of the help command.

-

The help command is now stored in the Bot.help_command attribute. As an added extension, you can disable the help command completely by assigning the attribute to None or passing it at __init__ as help_command=None.

-

The new interface allows the help command to be customised through special methods that can be overridden.

- -

Certain subclasses can implement more customisable methods.

-

The old HelpFormatter was replaced with DefaultHelpCommand, which implements all of the logic of the old help command. The customisable methods can be found in the accompanying documentation.

-

The library now provides a new more minimalistic HelpCommand implementation that doesn’t take as much space, MinimalHelpCommand. The customisable methods can also be found in the accompanying documentation.

-

A frequent request was if you could associate a help command with a cog. The new design allows for dynamically changing of cog through binding it to the HelpCommand.cog attribute. After this assignment the help command will pretend to be part of the cog and everything should work as expected. When the cog is unloaded then the help command will be “unbound” from the cog.

-

For example, to implement a HelpCommand in a cog, the following snippet can be used.

-
class MyHelpCommand(commands.MinimalHelpCommand):
-    def get_command_signature(self, command):
-        return '{0.clean_prefix}{1.qualified_name} {1.signature}'.format(self, command)
-
-class MyCog(commands.Cog):
-    def __init__(self, bot):
-        self._original_help_command = bot.help_command
-        bot.help_command = MyHelpCommand()
-        bot.help_command.cog = self
-
-    def cog_unload(self):
-        self.bot.help_command = self._original_help_command
-
-
-

For more information, check out the relevant documentation.

-
-
-

Cog Changes

-

Cogs have completely been revamped. They are documented in Cogs as well.

-

Cogs are now required to have a base class, Cog for future proofing purposes. This comes with special methods to customise some behaviour.

- -

Those that were using listeners, such as on_message inside a cog will now have to explicitly mark them as such using the commands.Cog.listener() decorator.

-

Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, commands.CogMeta.

-

An example cog with every special method registered and a custom name is as follows:

-
class MyCog(commands.Cog, name='Example Cog'):
-    def cog_unload(self):
-        print('cleanup goes here')
-
-    def bot_check(self, ctx):
-        print('bot check')
-        return True
-
-    def bot_check_once(self, ctx):
-        print('bot check once')
-        return True
-
-    async def cog_check(self, ctx):
-        print('cog local check')
-        return await ctx.bot.is_owner(ctx.author)
-
-    async def cog_command_error(self, ctx, error):
-        print('Error in {0.command.qualified_name}: {1}'.format(ctx, error))
-
-    async def cog_before_invoke(self, ctx):
-        print('cog local before: {0.command.qualified_name}'.format(ctx))
-
-    async def cog_after_invoke(self, ctx):
-        print('cog local after: {0.command.qualified_name}'.format(ctx))
-
-    @commands.Cog.listener()
-    async def on_message(self, message):
-        pass
-
-
-
-
-

Before and After Invocation Hooks

-

Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is -run.

-

They take a single parameter, Context and they must be a coroutine.

-

They are on a global, per-cog, or per-command basis.

-

Basically:

-
# global hooks:
-
-@bot.before_invoke
-async def before_any_command(ctx):
-    # do something before a command is called
-    pass
-
-@bot.after_invoke
-async def after_any_command(ctx):
-    # do something after a command is called
-    pass
-
-
-

The after invocation is hook always called, regardless of an error in the command. This makes it ideal for some error -handling or clean up of certain resources such a database connection.

-

The per-command registration is as follows:

-
@bot.command()
-async def foo(ctx):
-    await ctx.send('foo')
-
-@foo.before_invoke
-async def before_foo_command(ctx):
-    # do something before the foo command is called
-    pass
-
-@foo.after_invoke
-async def after_foo_command(ctx):
-    # do something after the foo command is called
-    pass
-
-
-

The special cog method for these is Cog.cog_before_invoke() and Cog.cog_after_invoke(), e.g.:

-
class MyCog(commands.Cog):
-    async def cog_before_invoke(self, ctx):
-        ctx.secret_cog_data = 'foo'
-
-    async def cog_after_invoke(self, ctx):
-        print('{0.command} is done...'.format(ctx))
-
-    @commands.command()
-    async def foo(self, ctx):
-        await ctx.send(ctx.secret_cog_data)
-
-
-

To check if a command failed in the after invocation hook, you can use -Context.command_failed.

-

The invocation order is as follows:

-
    -
  1. Command local before invocation hook

  2. -
  3. Cog local before invocation hook

  4. -
  5. Global before invocation hook

  6. -
  7. The actual command

  8. -
  9. Command local after invocation hook

  10. -
  11. Cog local after invocation hook

  12. -
  13. Global after invocation hook

  14. -
-
-
-

Converter Changes

-

Prior to v1.0, a converter was a type hint that could be a callable that could be invoked -with a singular argument denoting the argument passed by the user as a string.

-

This system was eventually expanded to support a Converter system to -allow plugging in the Context and do more complicated conversions such -as the built-in “discord” converters.

-

In v1.0 this converter system was revamped to allow instances of Converter derived -classes to be passed. For consistency, the convert() method was changed to -always be a coroutine and will now take the two arguments as parameters.

-

Essentially, before:

-
class MyConverter(commands.Converter):
-    def convert(self):
-        return self.ctx.message.server.me
-
-
-

After:

-
class MyConverter(commands.Converter):
-    async def convert(self, ctx, argument):
-        return ctx.me
-
-
-

The command framework also got a couple new converters:

- -
-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/migrating_to_async.html b/docs/Python/html/migrating_to_async.html deleted file mode 100644 index b9b57e42..00000000 --- a/docs/Python/html/migrating_to_async.html +++ /dev/null @@ -1,457 +0,0 @@ - - - - - - Migrating to v0.10.0 - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

Migrating to v0.10.0

-

v0.10.0 is one of the biggest breaking changes in the library due to massive -fundamental changes in how the library operates.

-

The biggest major change is that the library has dropped support to all versions prior to -Python 3.4.2. This was made to support asyncio, in which more detail can be seen -in the corresponding issue. To reiterate this, the implication is that -python version 2.7 and 3.3 are no longer supported.

-

Below are all the other major changes from v0.9.0 to v0.10.0.

-
-

Event Registration

-

All events before were registered using Client.event(). While this is still -possible, the events must be decorated with @asyncio.coroutine.

-

Before:

-
@client.event
-def on_message(message):
-    pass
-
-
-

After:

-
@client.event
-@asyncio.coroutine
-def on_message(message):
-    pass
-
-
-

Or in Python 3.5+:

-
@client.event
-async def on_message(message):
-    pass
-
-
-

Because there is a lot of typing, a utility decorator (Client.async_event()) is provided -for easier registration. For example:

-
@client.async_event
-def on_message(message):
-    pass
-
-
-

Be aware however, that this is still a coroutine and your other functions that are coroutines must -be decorated with @asyncio.coroutine or be async def.

-
-
-

Event Changes

-

Some events in v0.9.0 were considered pretty useless due to having no separate states. The main -events that were changed were the _update events since previously they had no context on what -was changed.

-

Before:

-
def on_channel_update(channel): pass
-def on_member_update(member): pass
-def on_status(member): pass
-def on_server_role_update(role): pass
-def on_voice_state_update(member): pass
-def on_socket_raw_send(payload, is_binary): pass
-
-
-

After:

-
def on_channel_update(before, after): pass
-def on_member_update(before, after): pass
-def on_server_role_update(before, after): pass
-def on_voice_state_update(before, after): pass
-def on_socket_raw_send(payload): pass
-
-
-

Note that on_status was removed. If you want its functionality, use on_member_update(). -See Event Reference for more information. Other removed events include on_socket_closed, on_socket_receive, and on_socket_opened.

-
-
-

Coroutines

-

The biggest change that the library went through is that almost every function in Client -was changed to be a coroutine. Functions -that are marked as a coroutine in the documentation must be awaited from or yielded from in order -for the computation to be done. For example…

-

Before:

-
client.send_message(message.channel, 'Hello')
-
-
-

After:

-
yield from client.send_message(message.channel, 'Hello')
-
-# or in python 3.5+
-await client.send_message(message.channel, 'Hello')
-
-
-

In order for you to yield from or await a coroutine then your function must be decorated -with @asyncio.coroutine or async def.

-
-
-

Iterables

-

For performance reasons, many of the internal data structures were changed into a dictionary to support faster -lookup. As a consequence, this meant that some lists that were exposed via the API have changed into iterables -and not sequences. In short, this means that certain attributes now only support iteration and not any of the -sequence functions.

-

The affected attributes are as follows:

- -

Some examples of previously valid behaviour that is now invalid

-
if client.servers[0].name == "test":
-    # do something
-
-
-

Since they are no longer lists, they no longer support indexing or any operation other than iterating. -In order to get the old behaviour you should explicitly cast it to a list.

-
servers = list(client.servers)
-# work with servers
-
-
-
-

Warning

-

Due to internal changes of the structure, the order you receive the data in -is not in a guaranteed order.

-
-
-
-

Enumerations

-

Due to dropping support for versions lower than Python 3.4.2, the library can now use -enum — Support for enumerations in places where it makes sense.

-

The common places where this was changed was in the server region, member status, and channel type.

-

Before:

-
server.region == 'us-west'
-member.status == 'online'
-channel.type == 'text'
-
-
-

After:

-
server.region == discord.ServerRegion.us_west
-member.status = discord.Status.online
-channel.type == discord.ChannelType.text
-
-
-

The main reason for this change was to reduce the use of finicky strings in the API as this -could give users a false sense of power. More information can be found in the Enumerations page.

-
-
-

Properties

-

A lot of function calls that returned constant values were changed into Python properties for ease of use -in format strings.

-

The following functions were changed into properties:

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Before

After

User.avatar_url()

User.avatar_url

User.mention()

User.mention

Channel.mention()

Channel.mention

Channel.is_default_channel()

Channel.is_default

Role.is_everyone()

Role.is_everyone

Server.get_default_role()

Server.default_role

Server.icon_url()

Server.icon_url

Server.get_default_channel()

Server.default_channel

Message.get_raw_mentions()

Message.raw_mentions

Message.get_raw_channel_mentions()

Message.raw_channel_mentions

-
-
-

Member Management

-

Functions that involved banning and kicking were changed.

-
---- - - - - - - - - - - - -

Before

After

Client.ban(server, user)

Client.ban(member)

Client.kick(server, user)

Client.kick(member)

-
-
-

Renamed Functions

-

Functions have been renamed.

-
---- - - - - - - - - -

Before

After

Client.set_channel_permissions

Client.edit_channel_permissions()

-

All the Permissions related attributes have been renamed and the can_ prefix has been -dropped. So for example, can_manage_messages has become manage_messages.

-
-
-

Forced Keyword Arguments

-

Since 3.0+ of Python, we can now force questions to take in forced keyword arguments. A keyword argument is when you -explicitly specify the name of the variable and assign to it, for example: foo(name='test'). Due to this support, -some functions in the library were changed to force things to take said keyword arguments. This is to reduce errors of -knowing the argument order and the issues that could arise from them.

-

The following parameters are now exclusively keyword arguments:

-
    -
  • -
    Client.send_message()
      -
    • tts

    • -
    -
    -
    -
  • -
  • -
    Client.logs_from()
      -
    • before

    • -
    • after

    • -
    -
    -
    -
  • -
  • -
    Client.edit_channel_permissions()
      -
    • allow

    • -
    • deny

    • -
    -
    -
    -
  • -
-

In the documentation you can tell if a function parameter is a forced keyword argument if it is after \*, -in the function signature.

-
-
-

Running the Client

-

In earlier versions of discord.py, client.run() was a blocking call to the main thread -that called it. In v0.10.0 it is still a blocking call but it handles the event loop for you. -However, in order to do that you must pass in your credentials to Client.run().

-

Basically, before:

-
client.login('token')
-client.run()
-
-
-

After:

-
client.run('token')
-
-
-
-

Warning

-

Like in the older Client.run function, the newer one must be the one of -the last functions to call. This is because the function is blocking. Registering -events or doing anything after Client.run() will not execute until the function -returns.

-
-

This is a utility function that abstracts the event loop for you. There’s no need for -the run call to be blocking and out of your control. Indeed, if you want control of the -event loop then doing so is quite straightforward:

-
import discord
-import asyncio
-
-client = discord.Client()
-
-@asyncio.coroutine
-def main_task():
-    yield from client.login('token')
-    yield from client.connect()
-
-loop = asyncio.get_event_loop()
-try:
-    loop.run_until_complete(main_task())
-except:
-    loop.run_until_complete(client.logout())
-finally:
-    loop.close()
-
-
-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/objects.inv b/docs/Python/html/objects.inv deleted file mode 100644 index d5b57e08d2ca600369addec481a71549123a1721..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 18639 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�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 - - - - - Quickstart - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

Quickstart

-

This page gives a brief introduction to the library. It assumes you have the library installed, -if you don’t check the Installing portion.

-
-

A Minimal Bot

-

Let’s make a bot that responds to a specific message and walk you through it.

-

It looks something like this:

-
import discord
-
-client = discord.Client()
-
-@client.event
-async def on_ready():
-    print(f'We have logged in as {client.user}')
-
-@client.event
-async def on_message(message):
-    if message.author == client.user:
-        return
-
-    if message.content.startswith('$hello'):
-        await message.channel.send('Hello!')
-
-client.run('your token here')
-
-
-

Let’s name this file example_bot.py. Make sure not to name it discord.py as that’ll conflict -with the library.

-

There’s a lot going on here, so let’s walk you through it step by step.

-
    -
  1. The first line just imports the library, if this raises a ModuleNotFoundError or ImportError -then head on over to Installing section to properly install.

  2. -
  3. Next, we create an instance of a Client. This client is our connection to Discord.

  4. -
  5. We then use the Client.event() decorator to register an event. This library has many events. -Since this library is asynchronous, we do things in a “callback” style manner.

    -

    A callback is essentially a function that is called when something happens. In our case, -the on_ready() event is called when the bot has finished logging in and setting things -up and the on_message() event is called when the bot has received a message.

    -
  6. -
  7. Since the on_message() event triggers for every message received, we have to make -sure that we ignore messages from ourselves. We do this by checking if the Message.author -is the same as the Client.user.

  8. -
  9. Afterwards, we check if the Message.content starts with '$hello'. If it does, -then we send a message in the channel it was used in with 'Hello!'. This is a basic way of -handling commands, which can be later automated with the discord.ext.commands – Bot commands framework framework.

  10. -
  11. Finally, we run the bot with our login token. If you need help getting your token or creating a bot, -look in the Creating a Bot Account section.

  12. -
-

Now that we’ve made a bot, we have to run the bot. Luckily, this is simple since this is just a -Python script, we can run it directly.

-

On Windows:

-
$ py -3 example_bot.py
-
-
-

On other systems:

-
$ python3 example_bot.py
-
-
-

Now you can try playing around with your basic bot.

-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/search.html b/docs/Python/html/search.html deleted file mode 100644 index 8ccd1291..00000000 --- a/docs/Python/html/search.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - Search - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -

Search

- - - - -

- Searching for multiple words only shows matches that contain - all words. -

- - -
- - - -
- - - -
- -
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/searchindex.js b/docs/Python/html/searchindex.js deleted file mode 100644 index 91211e34..00000000 --- a/docs/Python/html/searchindex.js +++ /dev/null @@ -1 +0,0 @@ -Search.setIndex({docnames:["api","discord","ext/commands/api","ext/commands/cogs","ext/commands/commands","ext/commands/extensions","ext/commands/index","ext/commands/slash-commands","ext/tasks/index","faq","index","intents","intro","logging","migrating","migrating_to_async","quickstart","version_guarantees","whats_new"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,sphinx:56},filenames:["api.rst","discord.rst","ext\\commands\\api.rst","ext\\commands\\cogs.rst","ext\\commands\\commands.rst","ext\\commands\\extensions.rst","ext\\commands\\index.rst","ext\\commands\\slash-commands.rst","ext\\tasks\\index.rst","faq.rst","index.rst","intents.rst","intro.rst","logging.rst","migrating.rst","migrating_to_async.rst","quickstart.rst","version_guarantees.rst","whats_new.rst"],objects:{"discord.ActionRow":{children:[0,1,1,""],type:[0,1,1,""]},"discord.Activity":{application_id:[0,1,1,""],assets:[0,1,1,""],buttons:[0,1,1,""],details:[0,1,1,""],emoji:[0,1,1,""],end:[0,2,1,""],large_image_text:[0,2,1,""],large_image_url:[0,2,1,""],name:[0,1,1,""],party:[0,1,1,""],small_image_text:[0,2,1,""],small_image_url:[0,2,1,""],start:[0,2,1,""],state:[0,1,1,""],timestamps:[0,1,1,""],type:[0,1,1,""],url:[0,1,1,""]},"discord.ActivityType":{competing:[0,1,1,""],custom:[0,1,1,""],listening:[0,1,1,""],playing:[0,1,1,""],streaming:[0,1,1,""],unknown:[0,1,1,""],watching:[0,1,1,""]},"discord.AllowedMentions":{all:[0,3,1,""],everyone:[0,1,1,""],none:[0,3,1,""],replied_user:[0,1,1,""],roles:[0,1,1,""],users:[0,1,1,""]},"discord.AppInfo":{bot_public:[0,1,1,""],bot_require_code_grant:[0,1,1,""],cover_image:[0,2,1,""],description:[0,1,1,""],guild:[0,2,1,""],guild_id:[0,1,1,""],icon:[0,2,1,""],id:[0,1,1,""],name:[0,1,1,""],owner:[0,1,1,""],primary_sku_id:[0,1,1,""],privacy_policy_url:[0,1,1,""],rpc_origins:[0,1,1,""],slug:[0,1,1,""],summary:[0,1,1,""],team:[0,1,1,""],terms_of_service_url:[0,1,1,""],verify_key:[0,1,1,""]},"discord.ApplicationFlags":{embedded:[0,1,1,""],gateway_guild_members:[0,1,1,""],gateway_guild_members_limited:[0,1,1,""],gateway_presence:[0,1,1,""],gateway_presence_limited:[0,1,1,""],value:[0,1,1,""],verification_pending_guild_limit:[0,1,1,""]},"discord.Asset":{is_animated:[0,3,1,""],key:[0,2,1,""],read:[0,3,1,""],replace:[0,3,1,""],save:[0,3,1,""],url:[0,2,1,""],with_format:[0,3,1,""],with_size:[0,3,1,""],with_static_format:[0,3,1,""]},"discord.AsyncIterator":{chunk:[0,3,1,""],filter:[0,3,1,""],find:[0,3,1,""],flatten:[0,3,1,""],get:[0,3,1,""],map:[0,3,1,""],next:[0,3,1,""]},"discord.Attachment":{content_type:[0,1,1,""],ephemeral:[0,1,1,""],filename:[0,1,1,""],height:[0,1,1,""],id:[0,1,1,""],is_spoiler:[0,3,1,""],proxy_url:[0,1,1,""],read:[0,3,1,""],save:[0,3,1,""],size:[0,1,1,""],to_file:[0,3,1,""],url:[0,1,1,""],width:[0,1,1,""]},"discord.AudioSource":{cleanup:[0,3,1,""],is_opus:[0,3,1,""],read:[0,3,1,""]},"discord.AuditLogAction":{ban:[0,1,1,""],bot_add:[0,1,1,""],channel_create:[0,1,1,""],channel_delete:[0,1,1,""],channel_update:[0,1,1,""],emoji_create:[0,1,1,""],emoji_delete:[0,1,1,""],emoji_update:[0,1,1,""],guild_update:[0,1,1,""],integration_create:[0,1,1,""],integration_delete:[0,1,1,""],integration_update:[0,1,1,""],invite_create:[0,1,1,""],invite_delete:[0,1,1,""],invite_update:[0,1,1,""],kick:[0,1,1,""],member_disconnect:[0,1,1,""],member_move:[0,1,1,""],member_prune:[0,1,1,""],member_role_update:[0,1,1,""],member_update:[0,1,1,""],message_bulk_delete:[0,1,1,""],message_delete:[0,1,1,""],message_pin:[0,1,1,""],message_unpin:[0,1,1,""],overwrite_create:[0,1,1,""],overwrite_delete:[0,1,1,""],overwrite_update:[0,1,1,""],role_create:[0,1,1,""],role_delete:[0,1,1,""],role_update:[0,1,1,""],stage_instance_create:[0,1,1,""],stage_instance_delete:[0,1,1,""],stage_instance_update:[0,1,1,""],sticker_create:[0,1,1,""],sticker_delete:[0,1,1,""],sticker_update:[0,1,1,""],thread_create:[0,1,1,""],thread_delete:[0,1,1,""],thread_update:[0,1,1,""],unban:[0,1,1,""],webhook_create:[0,1,1,""],webhook_delete:[0,1,1,""],webhook_update:[0,1,1,""]},"discord.AuditLogActionCategory":{"delete":[0,1,1,""],create:[0,1,1,""],update:[0,1,1,""]},"discord.AuditLogChanges":{after:[0,1,1,""],before:[0,1,1,""]},"discord.AuditLogDiff":{afk_channel:[0,1,1,""],afk_timeout:[0,1,1,""],allow:[0,1,1,""],archived:[0,1,1,""],auto_archive_duration:[0,1,1,""],available:[0,1,1,""],avatar:[0,1,1,""],banner:[0,1,1,""],bitrate:[0,1,1,""],channel:[0,1,1,""],code:[0,1,1,""],color:[0,1,1,""],colour:[0,1,1,""],deaf:[0,1,1,""],default_auto_archive_duration:[0,1,1,""],default_message_notifications:[0,1,1,""],default_notifications:[0,1,1,""],deny:[0,1,1,""],description:[0,1,1,""],discovery_splash:[0,1,1,""],emoji:[0,1,1,""],explicit_content_filter:[0,1,1,""],format_type:[0,1,1,""],hoist:[0,1,1,""],icon:[0,1,1,""],id:[0,1,1,""],inviter:[0,1,1,""],locked:[0,1,1,""],max_age:[0,1,1,""],max_uses:[0,1,1,""],mentionable:[0,1,1,""],mfa_level:[0,1,1,""],mute:[0,1,1,""],name:[0,1,1,""],nick:[0,1,1,""],overwrites:[0,1,1,""],owner:[0,1,1,""],permissions:[0,1,1,""],position:[0,1,1,""],privacy_level:[0,1,1,""],public_updates_channel:[0,1,1,""],region:[0,1,1,""],roles:[0,1,1,""],rtc_region:[0,1,1,""],rules_channel:[0,1,1,""],slowmode_delay:[0,1,1,""],splash:[0,1,1,""],system_channel:[0,1,1,""],temporary:[0,1,1,""],topic:[0,1,1,""],type:[0,1,1,""],uses:[0,1,1,""],vanity_url_code:[0,1,1,""],verification_level:[0,1,1,""],video_quality_mode:[0,1,1,""],widget_channel:[0,1,1,""],widget_enabled:[0,1,1,""]},"discord.AuditLogEntry":{action:[0,1,1,""],after:[0,1,1,""],before:[0,1,1,""],category:[0,1,1,""],changes:[0,1,1,""],created_at:[0,1,1,""],extra:[0,1,1,""],id:[0,1,1,""],reason:[0,1,1,""],target:[0,1,1,""],user:[0,1,1,""]},"discord.AutoShardedClient":{change_presence:[0,3,1,""],close:[0,3,1,""],connect:[0,3,1,""],get_shard:[0,3,1,""],is_ws_ratelimited:[0,3,1,""],latencies:[0,2,1,""],latency:[0,2,1,""],shard_ids:[0,1,1,""],shards:[0,2,1,""]},"discord.BanEntry":{reason:[0,1,1,""],user:[0,1,1,""]},"discord.BaseActivity":{created_at:[0,2,1,""]},"discord.BotIntegration":{account:[0,1,1,""],application:[0,1,1,""],enabled:[0,1,1,""],guild:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],type:[0,1,1,""],user:[0,1,1,""]},"discord.Button":{custom_id:[0,1,1,""],disabled:[0,1,1,""],emoji:[0,1,1,""],label:[0,1,1,""],style:[0,1,1,""],url:[0,1,1,""]},"discord.ButtonStyle":{blurple:[0,1,1,""],danger:[0,1,1,""],gray:[0,1,1,""],green:[0,1,1,""],grey:[0,1,1,""],link:[0,1,1,""],primary:[0,1,1,""],red:[0,1,1,""],secondary:[0,1,1,""],success:[0,1,1,""],url:[0,1,1,""]},"discord.CategoryChannel":{"delete":[0,3,1,""],category:[0,2,1,""],changed_roles:[0,2,1,""],channels:[0,2,1,""],clone:[0,3,1,""],create_invite:[0,3,1,""],create_stage_channel:[0,3,1,""],create_text_channel:[0,3,1,""],create_voice_channel:[0,3,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],guild:[0,1,1,""],id:[0,1,1,""],invites:[0,3,1,""],is_nsfw:[0,3,1,""],mention:[0,2,1,""],move:[0,3,1,""],name:[0,1,1,""],nsfw:[0,1,1,""],overwrites:[0,2,1,""],overwrites_for:[0,3,1,""],permissions_for:[0,3,1,""],permissions_synced:[0,2,1,""],position:[0,1,1,""],set_permissions:[0,3,1,""],stage_channels:[0,2,1,""],text_channels:[0,2,1,""],type:[0,2,1,""],voice_channels:[0,2,1,""]},"discord.ChannelType":{"private":[0,1,1,""],category:[0,1,1,""],group:[0,1,1,""],news:[0,1,1,""],news_thread:[0,1,1,""],private_thread:[0,1,1,""],public_thread:[0,1,1,""],stage_voice:[0,1,1,""],store:[0,1,1,""],text:[0,1,1,""],voice:[0,1,1,""]},"discord.Client":{activity:[0,2,1,""],add_view:[0,3,1,""],allowed_mentions:[0,2,1,""],application_flags:[0,2,1,""],application_id:[0,2,1,""],application_info:[0,3,1,""],before_identify_hook:[0,3,1,""],cached_messages:[0,2,1,""],change_presence:[0,3,1,""],clear:[0,3,1,""],close:[0,3,1,""],connect:[0,3,1,""],create_dm:[0,3,1,""],create_guild:[0,3,1,""],delete_invite:[0,3,1,""],emojis:[0,2,1,""],event:[0,3,1,""],fetch_channel:[0,3,1,""],fetch_guild:[0,3,1,""],fetch_guilds:[0,3,1,""],fetch_invite:[0,3,1,""],fetch_premium_sticker_packs:[0,3,1,""],fetch_stage_instance:[0,3,1,""],fetch_sticker:[0,3,1,""],fetch_template:[0,3,1,""],fetch_user:[0,3,1,""],fetch_webhook:[0,3,1,""],fetch_widget:[0,3,1,""],get_all_channels:[0,3,1,""],get_all_members:[0,3,1,""],get_channel:[0,3,1,""],get_emoji:[0,3,1,""],get_guild:[0,3,1,""],get_partial_messageable:[0,3,1,""],get_stage_instance:[0,3,1,""],get_sticker:[0,3,1,""],get_user:[0,3,1,""],guilds:[0,2,1,""],intents:[0,2,1,""],is_closed:[0,3,1,""],is_ready:[0,3,1,""],is_ws_ratelimited:[0,3,1,""],latency:[0,2,1,""],login:[0,3,1,""],loop:[0,1,1,""],on_error:[0,3,1,""],persistent_views:[0,2,1,""],private_channels:[0,2,1,""],run:[0,3,1,""],setup:[0,3,1,""],start:[0,3,1,""],status:[0,2,1,""],stickers:[0,2,1,""],try_user:[0,3,1,""],user:[0,2,1,""],users:[0,2,1,""],voice_clients:[0,2,1,""],wait_for:[0,3,1,""],wait_until_ready:[0,3,1,""],ws:[0,1,1,""]},"discord.ClientUser":{accent_color:[0,2,1,""],accent_colour:[0,2,1,""],avatar:[0,2,1,""],banner:[0,2,1,""],bot:[0,1,1,""],color:[0,2,1,""],colour:[0,2,1,""],created_at:[0,2,1,""],default_avatar:[0,2,1,""],discriminator:[0,1,1,""],display_avatar:[0,2,1,""],display_name:[0,2,1,""],edit:[0,3,1,""],id:[0,1,1,""],locale:[0,1,1,""],mention:[0,2,1,""],mentioned_in:[0,3,1,""],mfa_enabled:[0,1,1,""],name:[0,1,1,""],public_flags:[0,2,1,""],system:[0,1,1,""],verified:[0,1,1,""]},"discord.Colour":{"default":[0,3,1,""],b:[0,2,1,""],blue:[0,3,1,""],blurple:[0,3,1,""],brand_green:[0,3,1,""],brand_red:[0,3,1,""],dark_blue:[0,3,1,""],dark_blurple:[0,3,1,""],dark_gold:[0,3,1,""],dark_gray:[0,3,1,""],dark_green:[0,3,1,""],dark_grey:[0,3,1,""],dark_magenta:[0,3,1,""],dark_orange:[0,3,1,""],dark_purple:[0,3,1,""],dark_red:[0,3,1,""],dark_teal:[0,3,1,""],dark_theme:[0,3,1,""],darker_gray:[0,3,1,""],darker_grey:[0,3,1,""],from_hsv:[0,3,1,""],from_rgb:[0,3,1,""],fuchsia:[0,3,1,""],g:[0,2,1,""],gold:[0,3,1,""],green:[0,3,1,""],greyple:[0,3,1,""],light_gray:[0,3,1,""],light_grey:[0,3,1,""],lighter_gray:[0,3,1,""],lighter_grey:[0,3,1,""],magenta:[0,3,1,""],nitro_booster:[0,3,1,""],og_blurple:[0,3,1,""],orange:[0,3,1,""],purple:[0,3,1,""],r:[0,2,1,""],random:[0,3,1,""],red:[0,3,1,""],teal:[0,3,1,""],to_rgb:[0,3,1,""],value:[0,1,1,""],yellow:[0,3,1,""]},"discord.Component":{type:[0,1,1,""]},"discord.ComponentType":{action_row:[0,1,1,""],button:[0,1,1,""],select:[0,1,1,""]},"discord.ConnectionClosed":{code:[0,1,1,""],reason:[0,1,1,""],shard_id:[0,1,1,""]},"discord.ContentFilter":{all_members:[0,1,1,""],disabled:[0,1,1,""],no_role:[0,1,1,""]},"discord.CustomActivity":{emoji:[0,1,1,""],name:[0,1,1,""],type:[0,2,1,""]},"discord.DMChannel":{created_at:[0,2,1,""],fetch_message:[0,3,1,""],get_partial_message:[0,3,1,""],history:[0,3,1,""],id:[0,1,1,""],me:[0,1,1,""],permissions_for:[0,3,1,""],pins:[0,3,1,""],recipient:[0,1,1,""],send:[0,3,1,""],trigger_typing:[0,3,1,""],type:[0,2,1,""],typing:[0,3,1,""]},"discord.DefaultAvatar":{blurple:[0,1,1,""],gray:[0,1,1,""],green:[0,1,1,""],grey:[0,1,1,""],orange:[0,1,1,""],red:[0,1,1,""]},"discord.DeletedReferencedMessage":{channel_id:[0,2,1,""],guild_id:[0,2,1,""],id:[0,2,1,""]},"discord.Embed":{Empty:[0,1,1,""],add_field:[0,3,1,""],author:[0,2,1,""],clear_fields:[0,3,1,""],colour:[0,1,1,""],copy:[0,3,1,""],description:[0,1,1,""],fields:[0,2,1,""],footer:[0,2,1,""],from_dict:[0,3,1,""],image:[0,2,1,""],insert_field_at:[0,3,1,""],provider:[0,2,1,""],remove_author:[0,3,1,""],remove_field:[0,3,1,""],remove_footer:[0,3,1,""],set_author:[0,3,1,""],set_field_at:[0,3,1,""],set_footer:[0,3,1,""],set_image:[0,3,1,""],set_thumbnail:[0,3,1,""],thumbnail:[0,2,1,""],timestamp:[0,1,1,""],title:[0,1,1,""],to_dict:[0,3,1,""],type:[0,1,1,""],url:[0,1,1,""],video:[0,2,1,""]},"discord.Emoji":{"delete":[0,3,1,""],animated:[0,1,1,""],available:[0,1,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],guild:[0,2,1,""],guild_id:[0,1,1,""],id:[0,1,1,""],is_usable:[0,3,1,""],managed:[0,1,1,""],name:[0,1,1,""],read:[0,3,1,""],require_colons:[0,1,1,""],roles:[0,2,1,""],save:[0,3,1,""],url:[0,2,1,""],user:[0,1,1,""]},"discord.ExpireBehaviour":{kick:[0,1,1,""],remove_role:[0,1,1,""]},"discord.FFmpegAudio":{cleanup:[0,3,1,""]},"discord.FFmpegOpusAudio":{from_probe:[0,3,1,""],is_opus:[0,3,1,""],probe:[0,3,1,""],read:[0,3,1,""]},"discord.FFmpegPCMAudio":{is_opus:[0,3,1,""],read:[0,3,1,""]},"discord.File":{filename:[0,1,1,""],fp:[0,1,1,""],spoiler:[0,1,1,""]},"discord.Game":{end:[0,2,1,""],name:[0,1,1,""],start:[0,2,1,""],type:[0,2,1,""]},"discord.GroupChannel":{created_at:[0,2,1,""],fetch_message:[0,3,1,""],history:[0,3,1,""],icon:[0,2,1,""],id:[0,1,1,""],leave:[0,3,1,""],me:[0,1,1,""],name:[0,1,1,""],owner:[0,1,1,""],owner_id:[0,1,1,""],permissions_for:[0,3,1,""],pins:[0,3,1,""],recipients:[0,1,1,""],send:[0,3,1,""],trigger_typing:[0,3,1,""],type:[0,2,1,""],typing:[0,3,1,""]},"discord.Guild":{"delete":[0,3,1,""],active_threads:[0,3,1,""],afk_channel:[0,1,1,""],afk_timeout:[0,1,1,""],audit_logs:[0,3,1,""],ban:[0,3,1,""],banner:[0,2,1,""],bans:[0,3,1,""],bitrate_limit:[0,2,1,""],bots:[0,2,1,""],by_category:[0,3,1,""],categories:[0,2,1,""],change_voice_state:[0,3,1,""],channels:[0,2,1,""],chunk:[0,3,1,""],chunked:[0,2,1,""],create_category:[0,3,1,""],create_category_channel:[0,3,1,""],create_custom_emoji:[0,3,1,""],create_integration:[0,3,1,""],create_role:[0,3,1,""],create_stage_channel:[0,3,1,""],create_sticker:[0,3,1,""],create_template:[0,3,1,""],create_text_channel:[0,3,1,""],create_voice_channel:[0,3,1,""],created_at:[0,2,1,""],default_notifications:[0,1,1,""],default_role:[0,2,1,""],delete_emoji:[0,3,1,""],delete_sticker:[0,3,1,""],description:[0,1,1,""],discovery_splash:[0,2,1,""],edit:[0,3,1,""],edit_role_positions:[0,3,1,""],edit_widget:[0,3,1,""],emoji_limit:[0,2,1,""],emojis:[0,1,1,""],estimate_pruned_members:[0,3,1,""],explicit_content_filter:[0,1,1,""],features:[0,1,1,""],fetch_ban:[0,3,1,""],fetch_channel:[0,3,1,""],fetch_channels:[0,3,1,""],fetch_emoji:[0,3,1,""],fetch_emojis:[0,3,1,""],fetch_member:[0,3,1,""],fetch_members:[0,3,1,""],fetch_roles:[0,3,1,""],fetch_sticker:[0,3,1,""],fetch_stickers:[0,3,1,""],filesize_limit:[0,2,1,""],get_channel:[0,3,1,""],get_channel_or_thread:[0,3,1,""],get_member:[0,3,1,""],get_member_named:[0,3,1,""],get_role:[0,3,1,""],get_stage_instance:[0,3,1,""],get_thread:[0,3,1,""],humans:[0,2,1,""],icon:[0,2,1,""],id:[0,1,1,""],integrations:[0,3,1,""],invites:[0,3,1,""],kick:[0,3,1,""],large:[0,2,1,""],leave:[0,3,1,""],max_members:[0,1,1,""],max_presences:[0,1,1,""],max_video_channel_users:[0,1,1,""],me:[0,2,1,""],member_count:[0,2,1,""],members:[0,2,1,""],mfa_level:[0,1,1,""],name:[0,1,1,""],nsfw_level:[0,1,1,""],owner:[0,2,1,""],owner_id:[0,1,1,""],preferred_locale:[0,1,1,""],premium_subscriber_role:[0,2,1,""],premium_subscribers:[0,2,1,""],premium_subscription_count:[0,1,1,""],premium_tier:[0,1,1,""],prune_members:[0,3,1,""],public_updates_channel:[0,2,1,""],query_members:[0,3,1,""],region:[0,1,1,""],roles:[0,2,1,""],rules_channel:[0,2,1,""],self_role:[0,2,1,""],shard_id:[0,2,1,""],splash:[0,2,1,""],stage_channels:[0,2,1,""],stage_instances:[0,2,1,""],sticker_limit:[0,2,1,""],stickers:[0,1,1,""],system_channel:[0,2,1,""],system_channel_flags:[0,2,1,""],templates:[0,3,1,""],text_channels:[0,2,1,""],threads:[0,2,1,""],try_member:[0,3,1,""],unavailable:[0,1,1,""],unban:[0,3,1,""],vanity_invite:[0,3,1,""],verification_level:[0,1,1,""],voice_channels:[0,2,1,""],voice_client:[0,2,1,""],webhooks:[0,3,1,""],widget:[0,3,1,""]},"discord.GuildSticker":{"delete":[0,3,1,""],available:[0,1,1,""],description:[0,1,1,""],edit:[0,3,1,""],emoji:[0,1,1,""],format:[0,1,1,""],guild:[0,1,1,""],guild_id:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],user:[0,1,1,""]},"discord.HTTPException":{code:[0,1,1,""],response:[0,1,1,""],status:[0,1,1,""],text:[0,1,1,""]},"discord.Integration":{"delete":[0,3,1,""],account:[0,1,1,""],enabled:[0,1,1,""],guild:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],type:[0,1,1,""],user:[0,1,1,""]},"discord.IntegrationAccount":{id:[0,1,1,""],name:[0,1,1,""]},"discord.IntegrationApplication":{description:[0,1,1,""],icon:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],summary:[0,1,1,""],user:[0,1,1,""]},"discord.Intents":{all:[0,3,1,""],bans:[0,1,1,""],dm_messages:[0,1,1,""],dm_reactions:[0,1,1,""],dm_typing:[0,1,1,""],emojis:[0,1,1,""],emojis_and_stickers:[0,1,1,""],guild_messages:[0,1,1,""],guild_reactions:[0,1,1,""],guild_typing:[0,1,1,""],guilds:[0,1,1,""],integrations:[0,1,1,""],invites:[0,1,1,""],members:[0,1,1,""],messages:[0,1,1,""],none:[0,3,1,""],presences:[0,1,1,""],reactions:[0,1,1,""],typing:[0,1,1,""],value:[0,1,1,""],voice_states:[0,1,1,""],webhooks:[0,1,1,""]},"discord.Interaction":{application_id:[0,1,1,""],channel:[0,1,1,""],channel_id:[0,1,1,""],data:[0,1,1,""],delete_original_message:[0,3,1,""],edit_original_message:[0,3,1,""],followup:[0,1,1,""],guild:[0,2,1,""],guild_id:[0,1,1,""],id:[0,1,1,""],message:[0,1,1,""],original_message:[0,3,1,""],permissions:[0,2,1,""],response:[0,1,1,""],token:[0,1,1,""],type:[0,1,1,""],user:[0,1,1,""]},"discord.InteractionMessage":{"delete":[0,3,1,""],edit:[0,3,1,""]},"discord.InteractionResponded":{interaction:[0,1,1,""]},"discord.InteractionResponse":{defer:[0,3,1,""],edit_message:[0,3,1,""],is_done:[0,3,1,""],pong:[0,3,1,""],send_message:[0,3,1,""]},"discord.InteractionResponseType":{channel_message:[0,1,1,""],deferred_channel_message:[0,1,1,""],deferred_message_update:[0,1,1,""],message_update:[0,1,1,""],pong:[0,1,1,""]},"discord.InteractionType":{application_command:[0,1,1,""],component:[0,1,1,""],ping:[0,1,1,""]},"discord.Invite":{"delete":[0,3,1,""],approximate_member_count:[0,1,1,""],approximate_presence_count:[0,1,1,""],channel:[0,1,1,""],code:[0,1,1,""],created_at:[0,1,1,""],expires_at:[0,1,1,""],guild:[0,1,1,""],id:[0,2,1,""],inviter:[0,1,1,""],max_age:[0,1,1,""],max_uses:[0,1,1,""],revoked:[0,1,1,""],target_application:[0,1,1,""],target_type:[0,1,1,""],target_user:[0,1,1,""],temporary:[0,1,1,""],url:[0,2,1,""],uses:[0,1,1,""]},"discord.InviteTarget":{embedded_application:[0,1,1,""],stream:[0,1,1,""],unknown:[0,1,1,""]},"discord.Member":{accent_color:[0,2,1,""],accent_colour:[0,2,1,""],activities:[0,1,1,""],activity:[0,2,1,""],add_roles:[0,3,1,""],avatar:[0,2,1,""],ban:[0,3,1,""],banner:[0,2,1,""],bot:[0,2,1,""],color:[0,2,1,""],colour:[0,2,1,""],create_dm:[0,3,1,""],created_at:[0,2,1,""],default_avatar:[0,2,1,""],desktop_status:[0,2,1,""],discriminator:[0,2,1,""],display_avatar:[0,2,1,""],display_name:[0,2,1,""],dm_channel:[0,2,1,""],edit:[0,3,1,""],fetch_message:[0,3,1,""],get_role:[0,3,1,""],guild:[0,1,1,""],guild_avatar:[0,2,1,""],guild_permissions:[0,2,1,""],history:[0,3,1,""],id:[0,2,1,""],is_on_mobile:[0,3,1,""],joined_at:[0,1,1,""],kick:[0,3,1,""],mention:[0,2,1,""],mentioned_in:[0,3,1,""],mobile_status:[0,2,1,""],move_to:[0,3,1,""],mutual_guilds:[0,2,1,""],name:[0,2,1,""],nick:[0,1,1,""],pending:[0,1,1,""],pins:[0,3,1,""],premium_since:[0,1,1,""],public_flags:[0,2,1,""],raw_status:[0,2,1,""],remove_roles:[0,3,1,""],request_to_speak:[0,3,1,""],roles:[0,2,1,""],send:[0,3,1,""],status:[0,2,1,""],system:[0,2,1,""],top_role:[0,2,1,""],trigger_typing:[0,3,1,""],typing:[0,3,1,""],unban:[0,3,1,""],voice:[0,2,1,""],web_status:[0,2,1,""]},"discord.MemberCacheFlags":{all:[0,3,1,""],from_intents:[0,3,1,""],joined:[0,1,1,""],none:[0,3,1,""],value:[0,1,1,""],voice:[0,1,1,""]},"discord.Message":{"delete":[0,3,1,""],activity:[0,1,1,""],add_reaction:[0,3,1,""],application:[0,1,1,""],attachments:[0,1,1,""],author:[0,1,1,""],channel:[0,1,1,""],channel_mentions:[0,1,1,""],clean_content:[0,1,1,""],clear_reaction:[0,3,1,""],clear_reactions:[0,3,1,""],components:[0,1,1,""],content:[0,1,1,""],create_thread:[0,3,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],edited_at:[0,2,1,""],embeds:[0,1,1,""],flags:[0,1,1,""],guild:[0,1,1,""],id:[0,1,1,""],is_system:[0,3,1,""],jump_url:[0,2,1,""],mention_everyone:[0,1,1,""],mentions:[0,1,1,""],nonce:[0,1,1,""],pin:[0,3,1,""],pinned:[0,1,1,""],publish:[0,3,1,""],raw_channel_mentions:[0,1,1,""],raw_mentions:[0,1,1,""],raw_role_mentions:[0,1,1,""],reactions:[0,1,1,""],reference:[0,1,1,""],remove_reaction:[0,3,1,""],reply:[0,3,1,""],role_mentions:[0,1,1,""],stickers:[0,1,1,""],system_content:[0,1,1,""],to_reference:[0,3,1,""],tts:[0,1,1,""],type:[0,1,1,""],unpin:[0,3,1,""],webhook_id:[0,1,1,""]},"discord.MessageFlags":{crossposted:[0,1,1,""],ephemeral:[0,1,1,""],has_thread:[0,1,1,""],is_crossposted:[0,1,1,""],source_message_deleted:[0,1,1,""],suppress_embeds:[0,1,1,""],urgent:[0,1,1,""],value:[0,1,1,""]},"discord.MessageReference":{cached_message:[0,2,1,""],channel_id:[0,1,1,""],fail_if_not_exists:[0,1,1,""],from_message:[0,3,1,""],guild_id:[0,1,1,""],jump_url:[0,2,1,""],message_id:[0,1,1,""],resolved:[0,1,1,""]},"discord.MessageType":{"default":[0,1,1,""],application_command:[0,1,1,""],call:[0,1,1,""],channel_follow_add:[0,1,1,""],channel_icon_change:[0,1,1,""],channel_name_change:[0,1,1,""],guild_discovery_disqualified:[0,1,1,""],guild_discovery_grace_period_final_warning:[0,1,1,""],guild_discovery_grace_period_initial_warning:[0,1,1,""],guild_discovery_requalified:[0,1,1,""],guild_invite_reminder:[0,1,1,""],guild_stream:[0,1,1,""],new_member:[0,1,1,""],pins_add:[0,1,1,""],premium_guild_subscription:[0,1,1,""],premium_guild_tier_1:[0,1,1,""],premium_guild_tier_2:[0,1,1,""],premium_guild_tier_3:[0,1,1,""],recipient_add:[0,1,1,""],recipient_remove:[0,1,1,""],reply:[0,1,1,""],thread_created:[0,1,1,""],thread_starter_message:[0,1,1,""]},"discord.NSFWLevel":{"default":[0,1,1,""],age_restricted:[0,1,1,""],explicit:[0,1,1,""],safe:[0,1,1,""]},"discord.NotificationLevel":{all_messages:[0,1,1,""],only_mentions:[0,1,1,""]},"discord.Object":{created_at:[0,2,1,""],id:[0,1,1,""]},"discord.PCMAudio":{read:[0,3,1,""],stream:[0,1,1,""]},"discord.PCMVolumeTransformer":{cleanup:[0,3,1,""],read:[0,3,1,""],volume:[0,2,1,""]},"discord.PartialAppInfo":{description:[0,1,1,""],icon:[0,2,1,""],id:[0,1,1,""],name:[0,1,1,""],privacy_policy_url:[0,1,1,""],rpc_origins:[0,1,1,""],summary:[0,1,1,""],terms_of_service_url:[0,1,1,""],verify_key:[0,1,1,""]},"discord.PartialEmoji":{animated:[0,1,1,""],created_at:[0,2,1,""],from_str:[0,3,1,""],id:[0,1,1,""],is_custom_emoji:[0,3,1,""],is_unicode_emoji:[0,3,1,""],name:[0,1,1,""],read:[0,3,1,""],save:[0,3,1,""],url:[0,2,1,""]},"discord.PartialInviteChannel":{created_at:[0,2,1,""],id:[0,1,1,""],mention:[0,2,1,""],name:[0,1,1,""],type:[0,1,1,""]},"discord.PartialInviteGuild":{banner:[0,2,1,""],created_at:[0,2,1,""],description:[0,1,1,""],features:[0,1,1,""],icon:[0,2,1,""],id:[0,1,1,""],name:[0,1,1,""],splash:[0,2,1,""],verification_level:[0,1,1,""]},"discord.PartialMessage":{"delete":[0,3,1,""],add_reaction:[0,3,1,""],channel:[0,1,1,""],clear_reaction:[0,3,1,""],clear_reactions:[0,3,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],fetch:[0,3,1,""],guild:[0,1,1,""],id:[0,1,1,""],jump_url:[0,2,1,""],pin:[0,3,1,""],publish:[0,3,1,""],remove_reaction:[0,3,1,""],reply:[0,3,1,""],to_reference:[0,3,1,""],unpin:[0,3,1,""]},"discord.PartialMessageable":{fetch_message:[0,3,1,""],get_partial_message:[0,3,1,""],history:[0,3,1,""],id:[0,1,1,""],pins:[0,3,1,""],send:[0,3,1,""],trigger_typing:[0,3,1,""],type:[0,1,1,""],typing:[0,3,1,""]},"discord.PartialWebhookChannel":{id:[0,1,1,""],name:[0,1,1,""]},"discord.PartialWebhookGuild":{icon:[0,2,1,""],id:[0,1,1,""],name:[0,1,1,""]},"discord.PermissionOverwrite":{from_pair:[0,3,1,""],is_empty:[0,3,1,""],pair:[0,3,1,""],update:[0,3,1,""]},"discord.Permissions":{add_reactions:[0,1,1,""],admin:[0,1,1,""],administrator:[0,1,1,""],advanced:[0,3,1,""],all:[0,3,1,""],all_channel:[0,3,1,""],attach_files:[0,1,1,""],ban_members:[0,1,1,""],change_nickname:[0,1,1,""],connect:[0,1,1,""],create_instant_invite:[0,1,1,""],create_private_threads:[0,1,1,""],create_public_threads:[0,1,1,""],deafen_members:[0,1,1,""],embed_links:[0,1,1,""],external_emojis:[0,1,1,""],external_stickers:[0,1,1,""],general:[0,3,1,""],is_strict_subset:[0,3,1,""],is_strict_superset:[0,3,1,""],is_subset:[0,3,1,""],is_superset:[0,3,1,""],kick_members:[0,1,1,""],manage_channels:[0,1,1,""],manage_emojis:[0,1,1,""],manage_emojis_and_stickers:[0,1,1,""],manage_events:[0,1,1,""],manage_guild:[0,1,1,""],manage_messages:[0,1,1,""],manage_nicknames:[0,1,1,""],manage_permissions:[0,1,1,""],manage_roles:[0,1,1,""],manage_threads:[0,1,1,""],manage_webhooks:[0,1,1,""],membership:[0,3,1,""],mention_everyone:[0,1,1,""],move_members:[0,1,1,""],mute_members:[0,1,1,""],none:[0,3,1,""],priority_speaker:[0,1,1,""],read_message_history:[0,1,1,""],read_messages:[0,1,1,""],request_to_speak:[0,1,1,""],send_messages:[0,1,1,""],send_messages_in_threads:[0,1,1,""],send_tts_messages:[0,1,1,""],speak:[0,1,1,""],stage:[0,3,1,""],stage_moderator:[0,3,1,""],stream:[0,1,1,""],text:[0,3,1,""],update:[0,3,1,""],use_external_emojis:[0,1,1,""],use_external_stickers:[0,1,1,""],use_slash_commands:[0,1,1,""],use_voice_activation:[0,1,1,""],value:[0,1,1,""],view_audit_log:[0,1,1,""],view_channel:[0,1,1,""],view_guild_insights:[0,1,1,""],voice:[0,3,1,""]},"discord.PrivilegedIntentsRequired":{shard_id:[0,1,1,""]},"discord.PublicUserFlags":{all:[0,3,1,""],bug_hunter:[0,1,1,""],bug_hunter_level_2:[0,1,1,""],discord_certified_moderator:[0,1,1,""],early_supporter:[0,1,1,""],early_verified_bot_developer:[0,1,1,""],hypesquad:[0,1,1,""],hypesquad_balance:[0,1,1,""],hypesquad_bravery:[0,1,1,""],hypesquad_brilliance:[0,1,1,""],partner:[0,1,1,""],staff:[0,1,1,""],system:[0,1,1,""],team_user:[0,1,1,""],value:[0,1,1,""],verified_bot:[0,1,1,""],verified_bot_developer:[0,1,1,""]},"discord.RawBulkMessageDeleteEvent":{cached_messages:[0,1,1,""],channel_id:[0,1,1,""],guild_id:[0,1,1,""],message_ids:[0,1,1,""]},"discord.RawIntegrationDeleteEvent":{application_id:[0,1,1,""],guild_id:[0,1,1,""],integration_id:[0,1,1,""]},"discord.RawMessageDeleteEvent":{cached_message:[0,1,1,""],channel_id:[0,1,1,""],guild_id:[0,1,1,""],message_id:[0,1,1,""]},"discord.RawMessageUpdateEvent":{cached_message:[0,1,1,""],channel_id:[0,1,1,""],data:[0,1,1,""],guild_id:[0,1,1,""],message_id:[0,1,1,""]},"discord.RawReactionActionEvent":{channel_id:[0,1,1,""],emoji:[0,1,1,""],event_type:[0,1,1,""],guild_id:[0,1,1,""],member:[0,1,1,""],message_id:[0,1,1,""],user_id:[0,1,1,""]},"discord.RawReactionClearEmojiEvent":{channel_id:[0,1,1,""],emoji:[0,1,1,""],guild_id:[0,1,1,""],message_id:[0,1,1,""]},"discord.RawReactionClearEvent":{channel_id:[0,1,1,""],guild_id:[0,1,1,""],message_id:[0,1,1,""]},"discord.RawTypingEvent":{channel_id:[0,1,1,""],guild_id:[0,1,1,""],member:[0,1,1,""],user_id:[0,1,1,""],when:[0,1,1,""]},"discord.Reaction":{clear:[0,3,1,""],count:[0,1,1,""],emoji:[0,1,1,""],is_custom_emoji:[0,3,1,""],me:[0,1,1,""],message:[0,1,1,""],remove:[0,3,1,""],users:[0,3,1,""]},"discord.Role":{"delete":[0,3,1,""],color:[0,2,1,""],colour:[0,2,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],guild:[0,1,1,""],hoist:[0,1,1,""],id:[0,1,1,""],is_assignable:[0,3,1,""],is_bot_managed:[0,3,1,""],is_default:[0,3,1,""],is_integration:[0,3,1,""],is_premium_subscriber:[0,3,1,""],managed:[0,1,1,""],members:[0,2,1,""],mention:[0,2,1,""],mentionable:[0,1,1,""],name:[0,1,1,""],permissions:[0,2,1,""],position:[0,1,1,""],tags:[0,1,1,""]},"discord.RoleTags":{bot_id:[0,1,1,""],integration_id:[0,1,1,""],is_bot_managed:[0,3,1,""],is_integration:[0,3,1,""],is_premium_subscriber:[0,3,1,""]},"discord.SelectMenu":{custom_id:[0,1,1,""],disabled:[0,1,1,""],max_values:[0,1,1,""],min_values:[0,1,1,""],options:[0,1,1,""],placeholder:[0,1,1,""]},"discord.SelectOption":{"default":[0,1,1,""],description:[0,1,1,""],emoji:[0,1,1,""],label:[0,1,1,""],value:[0,1,1,""]},"discord.ShardInfo":{connect:[0,3,1,""],disconnect:[0,3,1,""],id:[0,1,1,""],is_closed:[0,3,1,""],is_ws_ratelimited:[0,3,1,""],latency:[0,2,1,""],reconnect:[0,3,1,""],shard_count:[0,1,1,""]},"discord.Spotify":{album:[0,2,1,""],album_cover_url:[0,2,1,""],artist:[0,2,1,""],artists:[0,2,1,""],color:[0,2,1,""],colour:[0,2,1,""],created_at:[0,2,1,""],duration:[0,2,1,""],end:[0,2,1,""],name:[0,2,1,""],party_id:[0,2,1,""],start:[0,2,1,""],title:[0,2,1,""],track_id:[0,2,1,""],track_url:[0,2,1,""],type:[0,2,1,""]},"discord.StageChannel":{"delete":[0,3,1,""],bitrate:[0,1,1,""],category:[0,2,1,""],category_id:[0,1,1,""],changed_roles:[0,2,1,""],clone:[0,3,1,""],connect:[0,3,1,""],create_instance:[0,3,1,""],create_invite:[0,3,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],fetch_instance:[0,3,1,""],guild:[0,1,1,""],id:[0,1,1,""],instance:[0,2,1,""],invites:[0,3,1,""],listeners:[0,2,1,""],members:[0,2,1,""],mention:[0,2,1,""],moderators:[0,2,1,""],move:[0,3,1,""],name:[0,1,1,""],overwrites:[0,2,1,""],overwrites_for:[0,3,1,""],permissions_for:[0,3,1,""],permissions_synced:[0,2,1,""],position:[0,1,1,""],requesting_to_speak:[0,2,1,""],rtc_region:[0,1,1,""],set_permissions:[0,3,1,""],speakers:[0,2,1,""],topic:[0,1,1,""],type:[0,2,1,""],user_limit:[0,1,1,""],video_quality_mode:[0,1,1,""],voice_states:[0,2,1,""]},"discord.StageInstance":{"delete":[0,3,1,""],channel:[0,1,1,""],channel_id:[0,1,1,""],discoverable_disabled:[0,1,1,""],edit:[0,3,1,""],guild:[0,1,1,""],id:[0,1,1,""],privacy_level:[0,1,1,""],topic:[0,1,1,""]},"discord.StagePrivacyLevel":{"public":[0,1,1,""],closed:[0,1,1,""],guild_only:[0,1,1,""]},"discord.StandardSticker":{description:[0,1,1,""],format:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],pack:[0,3,1,""],pack_id:[0,1,1,""],sort_value:[0,1,1,""],tags:[0,1,1,""]},"discord.Status":{dnd:[0,1,1,""],do_not_disturb:[0,1,1,""],idle:[0,1,1,""],invisible:[0,1,1,""],offline:[0,1,1,""],online:[0,1,1,""]},"discord.Sticker":{created_at:[0,2,1,""],description:[0,1,1,""],format:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],pack_id:[0,1,1,""],url:[0,1,1,""]},"discord.StickerFormatType":{apng:[0,1,1,""],lottie:[0,1,1,""],png:[0,1,1,""]},"discord.StickerItem":{fetch:[0,3,1,""],format:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],url:[0,1,1,""]},"discord.StickerPack":{banner:[0,2,1,""],cover_sticker:[0,1,1,""],cover_sticker_id:[0,1,1,""],description:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],sku_id:[0,1,1,""],stickers:[0,1,1,""]},"discord.StickerType":{guild:[0,1,1,""],standard:[0,1,1,""]},"discord.StoreChannel":{"delete":[0,3,1,""],category:[0,2,1,""],category_id:[0,1,1,""],changed_roles:[0,2,1,""],clone:[0,3,1,""],create_invite:[0,3,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],guild:[0,1,1,""],id:[0,1,1,""],invites:[0,3,1,""],is_nsfw:[0,3,1,""],mention:[0,2,1,""],move:[0,3,1,""],name:[0,1,1,""],nsfw:[0,1,1,""],overwrites:[0,2,1,""],overwrites_for:[0,3,1,""],permissions_for:[0,3,1,""],permissions_synced:[0,2,1,""],position:[0,1,1,""],set_permissions:[0,3,1,""],type:[0,2,1,""]},"discord.StreamIntegration":{account:[0,1,1,""],edit:[0,3,1,""],enable_emoticons:[0,1,1,""],enabled:[0,1,1,""],expire_behavior:[0,2,1,""],expire_behaviour:[0,1,1,""],expire_grace_period:[0,1,1,""],guild:[0,1,1,""],id:[0,1,1,""],name:[0,1,1,""],role:[0,2,1,""],sync:[0,3,1,""],synced_at:[0,1,1,""],syncing:[0,1,1,""],type:[0,1,1,""],user:[0,1,1,""]},"discord.Streaming":{assets:[0,1,1,""],details:[0,1,1,""],game:[0,1,1,""],name:[0,1,1,""],platform:[0,1,1,""],twitch_name:[0,2,1,""],type:[0,2,1,""],url:[0,1,1,""]},"discord.SyncWebhook":{"delete":[0,3,1,""],avatar:[0,2,1,""],channel:[0,2,1,""],channel_id:[0,1,1,""],created_at:[0,2,1,""],delete_message:[0,3,1,""],edit:[0,3,1,""],edit_message:[0,3,1,""],fetch:[0,3,1,""],fetch_message:[0,3,1,""],from_url:[0,3,1,""],guild:[0,2,1,""],guild_id:[0,1,1,""],id:[0,1,1,""],is_authenticated:[0,3,1,""],is_partial:[0,3,1,""],name:[0,1,1,""],partial:[0,3,1,""],send:[0,3,1,""],source_channel:[0,1,1,""],source_guild:[0,1,1,""],token:[0,1,1,""],type:[0,1,1,""],url:[0,2,1,""],user:[0,1,1,""]},"discord.SyncWebhookMessage":{"delete":[0,3,1,""],edit:[0,3,1,""]},"discord.SystemChannelFlags":{guild_reminder_notifications:[0,1,1,""],join_notifications:[0,1,1,""],premium_subscriptions:[0,1,1,""],value:[0,1,1,""]},"discord.Team":{icon:[0,2,1,""],id:[0,1,1,""],members:[0,1,1,""],name:[0,1,1,""],owner:[0,2,1,""],owner_id:[0,1,1,""]},"discord.TeamMember":{avatar:[0,1,1,""],bot:[0,1,1,""],discriminator:[0,1,1,""],id:[0,1,1,""],membership_state:[0,1,1,""],name:[0,1,1,""],team:[0,1,1,""]},"discord.TeamMembershipState":{accepted:[0,1,1,""],invited:[0,1,1,""]},"discord.Template":{"delete":[0,3,1,""],code:[0,1,1,""],create_guild:[0,3,1,""],created_at:[0,1,1,""],creator:[0,1,1,""],description:[0,1,1,""],edit:[0,3,1,""],is_dirty:[0,1,1,""],name:[0,1,1,""],source_guild:[0,1,1,""],sync:[0,3,1,""],updated_at:[0,1,1,""],url:[0,2,1,""],uses:[0,1,1,""]},"discord.TextChannel":{"delete":[0,3,1,""],archived_threads:[0,3,1,""],bots:[0,2,1,""],category:[0,2,1,""],category_id:[0,1,1,""],changed_roles:[0,2,1,""],clone:[0,3,1,""],create_invite:[0,3,1,""],create_thread:[0,3,1,""],create_webhook:[0,3,1,""],created_at:[0,2,1,""],default_auto_archive_duration:[0,1,1,""],delete_messages:[0,3,1,""],edit:[0,3,1,""],fetch_message:[0,3,1,""],follow:[0,3,1,""],get_partial_message:[0,3,1,""],get_thread:[0,3,1,""],guild:[0,1,1,""],history:[0,3,1,""],humans:[0,2,1,""],id:[0,1,1,""],invites:[0,3,1,""],is_news:[0,3,1,""],is_nsfw:[0,3,1,""],last_message:[0,2,1,""],last_message_id:[0,1,1,""],members:[0,2,1,""],mention:[0,2,1,""],move:[0,3,1,""],name:[0,1,1,""],nsfw:[0,1,1,""],overwrites:[0,2,1,""],overwrites_for:[0,3,1,""],permissions_for:[0,3,1,""],permissions_synced:[0,2,1,""],pins:[0,3,1,""],position:[0,1,1,""],purge:[0,3,1,""],send:[0,3,1,""],set_permissions:[0,3,1,""],slowmode_delay:[0,1,1,""],threads:[0,2,1,""],topic:[0,1,1,""],trigger_typing:[0,3,1,""],type:[0,2,1,""],typing:[0,3,1,""],webhooks:[0,3,1,""]},"discord.Thread":{"delete":[0,3,1,""],add_user:[0,3,1,""],archive_timestamp:[0,1,1,""],archived:[0,1,1,""],archiver_id:[0,1,1,""],auto_archive_duration:[0,1,1,""],category:[0,2,1,""],category_id:[0,2,1,""],delete_messages:[0,3,1,""],edit:[0,3,1,""],fetch_members:[0,3,1,""],fetch_message:[0,3,1,""],get_partial_message:[0,3,1,""],guild:[0,1,1,""],history:[0,3,1,""],id:[0,1,1,""],invitable:[0,1,1,""],is_news:[0,3,1,""],is_nsfw:[0,3,1,""],is_private:[0,3,1,""],join:[0,3,1,""],last_message:[0,2,1,""],last_message_id:[0,1,1,""],leave:[0,3,1,""],locked:[0,1,1,""],me:[0,1,1,""],member_count:[0,1,1,""],members:[0,2,1,""],mention:[0,2,1,""],message_count:[0,1,1,""],name:[0,1,1,""],owner:[0,2,1,""],owner_id:[0,1,1,""],parent:[0,2,1,""],parent_id:[0,1,1,""],permissions_for:[0,3,1,""],pins:[0,3,1,""],purge:[0,3,1,""],remove_user:[0,3,1,""],send:[0,3,1,""],slowmode_delay:[0,1,1,""],trigger_typing:[0,3,1,""],type:[0,2,1,""],typing:[0,3,1,""]},"discord.ThreadMember":{fetch_member:[0,3,1,""],get_member:[0,3,1,""],id:[0,1,1,""],joined_at:[0,1,1,""],thread:[0,2,1,""],thread_id:[0,1,1,""]},"discord.User":{accent_color:[0,2,1,""],accent_colour:[0,2,1,""],avatar:[0,2,1,""],banner:[0,2,1,""],bot:[0,1,1,""],color:[0,2,1,""],colour:[0,2,1,""],create_dm:[0,3,1,""],created_at:[0,2,1,""],default_avatar:[0,2,1,""],discriminator:[0,1,1,""],display_avatar:[0,2,1,""],display_name:[0,2,1,""],dm_channel:[0,2,1,""],fetch_message:[0,3,1,""],history:[0,3,1,""],id:[0,1,1,""],mention:[0,2,1,""],mentioned_in:[0,3,1,""],mutual_guilds:[0,2,1,""],name:[0,1,1,""],pins:[0,3,1,""],public_flags:[0,2,1,""],send:[0,3,1,""],system:[0,1,1,""],trigger_typing:[0,3,1,""],typing:[0,3,1,""]},"discord.UserFlags":{bug_hunter:[0,1,1,""],bug_hunter_level_2:[0,1,1,""],discord_certified_moderator:[0,1,1,""],early_supporter:[0,1,1,""],has_unread_urgent_messages:[0,1,1,""],hypesquad:[0,1,1,""],hypesquad_balance:[0,1,1,""],hypesquad_bravery:[0,1,1,""],hypesquad_brilliance:[0,1,1,""],mfa_sms:[0,1,1,""],partner:[0,1,1,""],premium_promo_dismissed:[0,1,1,""],staff:[0,1,1,""],system:[0,1,1,""],team_user:[0,1,1,""],verified_bot:[0,1,1,""],verified_bot_developer:[0,1,1,""]},"discord.VerificationLevel":{high:[0,1,1,""],highest:[0,1,1,""],low:[0,1,1,""],medium:[0,1,1,""],none:[0,1,1,""]},"discord.VideoQualityMode":{auto:[0,1,1,""],full:[0,1,1,""]},"discord.VoiceChannel":{"delete":[0,3,1,""],bitrate:[0,1,1,""],category:[0,2,1,""],category_id:[0,1,1,""],changed_roles:[0,2,1,""],clone:[0,3,1,""],connect:[0,3,1,""],create_invite:[0,3,1,""],created_at:[0,2,1,""],edit:[0,3,1,""],guild:[0,1,1,""],id:[0,1,1,""],invites:[0,3,1,""],members:[0,2,1,""],mention:[0,2,1,""],move:[0,3,1,""],name:[0,1,1,""],overwrites:[0,2,1,""],overwrites_for:[0,3,1,""],permissions_for:[0,3,1,""],permissions_synced:[0,2,1,""],position:[0,1,1,""],rtc_region:[0,1,1,""],set_permissions:[0,3,1,""],type:[0,2,1,""],user_limit:[0,1,1,""],video_quality_mode:[0,1,1,""],voice_states:[0,2,1,""]},"discord.VoiceClient":{average_latency:[0,2,1,""],channel:[0,1,1,""],disconnect:[0,3,1,""],endpoint:[0,1,1,""],guild:[0,2,1,""],is_connected:[0,3,1,""],is_paused:[0,3,1,""],is_playing:[0,3,1,""],latency:[0,2,1,""],loop:[0,1,1,""],move_to:[0,3,1,""],pause:[0,3,1,""],play:[0,3,1,""],resume:[0,3,1,""],send_audio_packet:[0,3,1,""],session_id:[0,1,1,""],source:[0,2,1,""],stop:[0,3,1,""],token:[0,1,1,""],user:[0,2,1,""]},"discord.VoiceProtocol":{cleanup:[0,3,1,""],connect:[0,3,1,""],disconnect:[0,3,1,""],on_voice_server_update:[0,3,1,""],on_voice_state_update:[0,3,1,""]},"discord.VoiceRegion":{amsterdam:[0,1,1,""],brazil:[0,1,1,""],dubai:[0,1,1,""],eu_central:[0,1,1,""],eu_west:[0,1,1,""],europe:[0,1,1,""],frankfurt:[0,1,1,""],hongkong:[0,1,1,""],india:[0,1,1,""],japan:[0,1,1,""],london:[0,1,1,""],russia:[0,1,1,""],singapore:[0,1,1,""],south_korea:[0,1,1,""],southafrica:[0,1,1,""],sydney:[0,1,1,""],us_central:[0,1,1,""],us_east:[0,1,1,""],us_south:[0,1,1,""],us_west:[0,1,1,""],vip_amsterdam:[0,1,1,""],vip_us_east:[0,1,1,""],vip_us_west:[0,1,1,""]},"discord.VoiceState":{afk:[0,1,1,""],channel:[0,1,1,""],deaf:[0,1,1,""],mute:[0,1,1,""],requested_to_speak_at:[0,1,1,""],self_deaf:[0,1,1,""],self_mute:[0,1,1,""],self_stream:[0,1,1,""],self_video:[0,1,1,""],suppress:[0,1,1,""]},"discord.Webhook":{"delete":[0,3,1,""],avatar:[0,2,1,""],channel:[0,2,1,""],channel_id:[0,1,1,""],created_at:[0,2,1,""],delete_message:[0,3,1,""],edit:[0,3,1,""],edit_message:[0,3,1,""],fetch:[0,3,1,""],fetch_message:[0,3,1,""],from_url:[0,3,1,""],guild:[0,2,1,""],guild_id:[0,1,1,""],id:[0,1,1,""],is_authenticated:[0,3,1,""],is_partial:[0,3,1,""],name:[0,1,1,""],partial:[0,3,1,""],send:[0,3,1,""],source_channel:[0,1,1,""],source_guild:[0,1,1,""],token:[0,1,1,""],type:[0,1,1,""],url:[0,2,1,""],user:[0,1,1,""]},"discord.WebhookMessage":{"delete":[0,3,1,""],edit:[0,3,1,""]},"discord.WebhookType":{application:[0,1,1,""],channel_follower:[0,1,1,""],incoming:[0,1,1,""]},"discord.Widget":{channels:[0,1,1,""],created_at:[0,2,1,""],fetch_invite:[0,3,1,""],id:[0,1,1,""],invite_url:[0,2,1,""],json_url:[0,2,1,""],members:[0,1,1,""],name:[0,1,1,""]},"discord.WidgetChannel":{created_at:[0,2,1,""],id:[0,1,1,""],mention:[0,2,1,""],name:[0,1,1,""],position:[0,1,1,""]},"discord.WidgetMember":{accent_color:[0,2,1,""],accent_colour:[0,2,1,""],activity:[0,1,1,""],avatar:[0,1,1,""],banner:[0,2,1,""],bot:[0,1,1,""],color:[0,2,1,""],colour:[0,2,1,""],connected_channel:[0,1,1,""],created_at:[0,2,1,""],deafened:[0,1,1,""],default_avatar:[0,2,1,""],discriminator:[0,1,1,""],display_avatar:[0,2,1,""],display_name:[0,2,1,""],id:[0,1,1,""],mention:[0,2,1,""],mentioned_in:[0,3,1,""],muted:[0,1,1,""],name:[0,1,1,""],nick:[0,1,1,""],public_flags:[0,2,1,""],status:[0,1,1,""],suppress:[0,1,1,""]},"discord.abc":{Connectable:[0,0,1,""],GuildChannel:[0,0,1,""],Messageable:[0,0,1,""],PrivateChannel:[0,0,1,""],Snowflake:[0,0,1,""],User:[0,0,1,""]},"discord.abc.GuildChannel":{"delete":[0,3,1,""],category:[0,2,1,""],changed_roles:[0,2,1,""],clone:[0,3,1,""],create_invite:[0,3,1,""],created_at:[0,2,1,""],guild:[0,1,1,""],invites:[0,3,1,""],mention:[0,2,1,""],move:[0,3,1,""],name:[0,1,1,""],overwrites:[0,2,1,""],overwrites_for:[0,3,1,""],permissions_for:[0,3,1,""],permissions_synced:[0,2,1,""],position:[0,1,1,""],set_permissions:[0,3,1,""]},"discord.abc.Messageable":{fetch_message:[0,3,1,""],history:[0,3,1,""],pins:[0,3,1,""],send:[0,3,1,""],trigger_typing:[0,3,1,""],typing:[0,3,1,""]},"discord.abc.PrivateChannel":{me:[0,1,1,""]},"discord.abc.Snowflake":{id:[0,1,1,""]},"discord.abc.User":{avatar:[0,1,1,""],bot:[0,1,1,""],discriminator:[0,1,1,""],display_name:[0,2,1,""],mention:[0,2,1,""],name:[0,1,1,""]},"discord.discord.ext.commands":{on_command:[2,6,1,""],on_command_completion:[2,6,1,""],on_command_error:[2,6,1,""]},"discord.ext.commands":{ArgumentParsingError:[2,4,1,""],AutoShardedBot:[2,0,1,""],BadArgument:[2,4,1,""],BadBoolArgument:[2,4,1,""],BadColourArgument:[2,4,1,""],BadFlagArgument:[2,4,1,""],BadInviteArgument:[2,4,1,""],BadLiteralArgument:[2,4,1,""],BadUnionArgument:[2,4,1,""],Bot:[2,0,1,""],BotMissingAnyRole:[2,4,1,""],BotMissingPermissions:[2,4,1,""],BotMissingRole:[2,4,1,""],BucketType:[2,0,1,""],CategoryChannelConverter:[2,0,1,""],ChannelNotFound:[2,4,1,""],ChannelNotReadable:[2,4,1,""],CheckAnyFailure:[2,4,1,""],CheckFailure:[2,4,1,""],Cog:[2,0,1,""],CogMeta:[2,0,1,""],ColourConverter:[2,0,1,""],Command:[2,0,1,""],CommandError:[2,4,1,""],CommandInvokeError:[2,4,1,""],CommandNotFound:[2,4,1,""],CommandOnCooldown:[2,4,1,""],CommandRegistrationError:[2,4,1,""],Context:[2,0,1,""],ConversionError:[2,4,1,""],Converter:[2,0,1,""],Cooldown:[2,0,1,""],DefaultHelpCommand:[2,0,1,""],DisabledCommand:[2,4,1,""],EmojiConverter:[2,0,1,""],EmojiNotFound:[2,4,1,""],ExpectedClosingQuoteError:[2,4,1,""],ExtensionAlreadyLoaded:[2,4,1,""],ExtensionError:[2,4,1,""],ExtensionFailed:[2,4,1,""],ExtensionNotFound:[2,4,1,""],ExtensionNotLoaded:[2,4,1,""],Flag:[2,0,1,""],FlagConverter:[2,0,1,""],FlagError:[2,4,1,""],GameConverter:[2,0,1,""],Greedy:[2,0,1,""],Group:[2,0,1,""],GroupMixin:[2,0,1,""],GuildChannelConverter:[2,0,1,""],GuildConverter:[2,0,1,""],GuildNotFound:[2,4,1,""],GuildStickerConverter:[2,0,1,""],GuildStickerNotFound:[2,4,1,""],HelpCommand:[2,0,1,""],InvalidEndOfQuotedStringError:[2,4,1,""],InviteConverter:[2,0,1,""],MaxConcurrencyReached:[2,4,1,""],MemberConverter:[2,0,1,""],MemberNotFound:[2,4,1,""],MessageConverter:[2,0,1,""],MessageNotFound:[2,4,1,""],MinimalHelpCommand:[2,0,1,""],MissingAnyRole:[2,4,1,""],MissingFlagArgument:[2,4,1,""],MissingPermissions:[2,4,1,""],MissingRequiredArgument:[2,4,1,""],MissingRequiredFlag:[2,4,1,""],MissingRole:[2,4,1,""],NSFWChannelRequired:[2,4,1,""],NoEntryPointError:[2,4,1,""],NoPrivateMessage:[2,4,1,""],NotOwner:[2,4,1,""],ObjectConverter:[2,0,1,""],Option:[2,0,1,""],Paginator:[2,0,1,""],PartialEmojiConversionFailure:[2,4,1,""],PartialEmojiConverter:[2,0,1,""],PartialMessageConverter:[2,0,1,""],PrivateMessageOnly:[2,4,1,""],RoleConverter:[2,0,1,""],RoleNotFound:[2,4,1,""],StageChannelConverter:[2,0,1,""],StoreChannelConverter:[2,0,1,""],TextChannelConverter:[2,0,1,""],ThreadConverter:[2,0,1,""],ThreadNotFound:[2,4,1,""],TooManyArguments:[2,4,1,""],TooManyFlags:[2,4,1,""],UnexpectedQuoteError:[2,4,1,""],UserConverter:[2,0,1,""],UserInputError:[2,4,1,""],UserNotFound:[2,4,1,""],VoiceChannelConverter:[2,0,1,""],after_invoke:[2,6,1,""],before_invoke:[2,6,1,""],bot_has_any_role:[2,6,1,""],bot_has_guild_permissions:[2,6,1,""],bot_has_permissions:[2,6,1,""],bot_has_role:[2,6,1,""],check:[2,6,1,""],check_any:[2,6,1,""],clean_content:[2,0,1,""],command:[2,6,1,""],cooldown:[2,6,1,""],dm_only:[2,6,1,""],dynamic_cooldown:[2,6,1,""],flag:[2,6,1,""],group:[2,6,1,""],guild_only:[2,6,1,""],has_any_role:[2,6,1,""],has_guild_permissions:[2,6,1,""],has_permissions:[2,6,1,""],has_role:[2,6,1,""],is_nsfw:[2,6,1,""],is_owner:[2,6,1,""],max_concurrency:[2,6,1,""],run_converters:[2,6,1,""],when_mentioned:[2,6,1,""],when_mentioned_or:[2,6,1,""]},"discord.ext.commands.BadBoolArgument":{argument:[2,1,1,""]},"discord.ext.commands.BadColourArgument":{argument:[2,1,1,""]},"discord.ext.commands.BadFlagArgument":{flag:[2,1,1,""]},"discord.ext.commands.BadInviteArgument":{argument:[2,1,1,""]},"discord.ext.commands.BadLiteralArgument":{errors:[2,1,1,""],literals:[2,1,1,""],param:[2,1,1,""]},"discord.ext.commands.BadUnionArgument":{converters:[2,1,1,""],errors:[2,1,1,""],param:[2,1,1,""]},"discord.ext.commands.Bot":{activity:[2,2,1,""],add_check:[2,3,1,""],add_cog:[2,3,1,""],add_command:[2,3,1,""],add_listener:[2,3,1,""],add_view:[2,3,1,""],after_invoke:[2,3,1,""],allowed_mentions:[2,2,1,""],application_flags:[2,2,1,""],application_id:[2,2,1,""],application_info:[2,3,1,""],before_identify_hook:[2,3,1,""],before_invoke:[2,3,1,""],cached_messages:[2,2,1,""],case_insensitive:[2,1,1,""],change_presence:[2,3,1,""],check:[2,3,1,""],check_once:[2,3,1,""],clear:[2,3,1,""],close:[2,3,1,""],cogs:[2,2,1,""],command:[2,3,1,""],command_prefix:[2,1,1,""],commands:[2,2,1,""],connect:[2,3,1,""],create_dm:[2,3,1,""],create_guild:[2,3,1,""],delete_invite:[2,3,1,""],description:[2,1,1,""],emojis:[2,2,1,""],event:[2,3,1,""],extensions:[2,2,1,""],fetch_channel:[2,3,1,""],fetch_guild:[2,3,1,""],fetch_guilds:[2,3,1,""],fetch_invite:[2,3,1,""],fetch_premium_sticker_packs:[2,3,1,""],fetch_stage_instance:[2,3,1,""],fetch_sticker:[2,3,1,""],fetch_template:[2,3,1,""],fetch_user:[2,3,1,""],fetch_webhook:[2,3,1,""],fetch_widget:[2,3,1,""],get_all_channels:[2,3,1,""],get_all_members:[2,3,1,""],get_channel:[2,3,1,""],get_cog:[2,3,1,""],get_command:[2,3,1,""],get_context:[2,3,1,""],get_emoji:[2,3,1,""],get_guild:[2,3,1,""],get_partial_messageable:[2,3,1,""],get_prefix:[2,3,1,""],get_stage_instance:[2,3,1,""],get_sticker:[2,3,1,""],get_user:[2,3,1,""],group:[2,3,1,""],guilds:[2,2,1,""],help_command:[2,1,1,""],intents:[2,2,1,""],invoke:[2,3,1,""],is_closed:[2,3,1,""],is_owner:[2,3,1,""],is_ready:[2,3,1,""],is_ws_ratelimited:[2,3,1,""],latency:[2,2,1,""],listen:[2,3,1,""],load_extension:[2,3,1,""],login:[2,3,1,""],message_commands:[2,1,1,""],on_command_error:[2,3,1,""],on_error:[2,3,1,""],owner_id:[2,1,1,""],owner_ids:[2,1,1,""],persistent_views:[2,2,1,""],populate_owners:[2,3,1,""],private_channels:[2,2,1,""],process_commands:[2,3,1,""],process_slash_commands:[2,3,1,""],reload_extension:[2,3,1,""],remove_check:[2,3,1,""],remove_cog:[2,3,1,""],remove_command:[2,3,1,""],remove_listener:[2,3,1,""],run:[2,3,1,""],setup:[2,3,1,""],slash_command_guilds:[2,1,1,""],slash_commands:[2,1,1,""],start:[2,3,1,""],status:[2,2,1,""],stickers:[2,2,1,""],strip_after_prefix:[2,1,1,""],try_owners:[2,3,1,""],try_user:[2,3,1,""],unload_extension:[2,3,1,""],user:[2,2,1,""],users:[2,2,1,""],voice_clients:[2,2,1,""],wait_for:[2,3,1,""],wait_until_ready:[2,3,1,""],walk_commands:[2,3,1,""]},"discord.ext.commands.BotMissingAnyRole":{missing_roles:[2,1,1,""]},"discord.ext.commands.BotMissingPermissions":{missing_permissions:[2,1,1,""]},"discord.ext.commands.BotMissingRole":{missing_role:[2,1,1,""]},"discord.ext.commands.BucketType":{"default":[2,1,1,""],category:[2,1,1,""],channel:[2,1,1,""],guild:[2,1,1,""],member:[2,1,1,""],role:[2,1,1,""],user:[2,1,1,""]},"discord.ext.commands.CategoryChannelConverter":{convert:[2,3,1,""]},"discord.ext.commands.ChannelNotFound":{argument:[2,1,1,""]},"discord.ext.commands.ChannelNotReadable":{argument:[2,1,1,""]},"discord.ext.commands.CheckAnyFailure":{checks:[2,1,1,""],errors:[2,1,1,""]},"discord.ext.commands.Cog":{bot_check:[2,3,1,""],bot_check_once:[2,3,1,""],cog_after_invoke:[2,3,1,""],cog_before_invoke:[2,3,1,""],cog_check:[2,3,1,""],cog_command_error:[2,3,1,""],cog_unload:[2,3,1,""],description:[2,2,1,""],get_commands:[2,3,1,""],get_listeners:[2,3,1,""],has_error_handler:[2,3,1,""],listener:[2,3,1,""],qualified_name:[2,2,1,""],walk_commands:[2,3,1,""]},"discord.ext.commands.CogMeta":{command_attrs:[2,1,1,""],description:[2,1,1,""],name:[2,1,1,""]},"discord.ext.commands.ColourConverter":{convert:[2,3,1,""]},"discord.ext.commands.Command":{__call__:[2,3,1,""],add_check:[2,3,1,""],after_invoke:[2,3,1,""],aliases:[2,1,1,""],before_invoke:[2,3,1,""],brief:[2,1,1,""],callback:[2,1,1,""],can_run:[2,3,1,""],checks:[2,1,1,""],clean_params:[2,2,1,""],cog:[2,1,1,""],cog_name:[2,2,1,""],cooldown_after_parsing:[2,1,1,""],copy:[2,3,1,""],description:[2,1,1,""],enabled:[2,1,1,""],error:[2,3,1,""],extras:[2,1,1,""],full_parent_name:[2,2,1,""],get_cooldown_retry_after:[2,3,1,""],has_error_handler:[2,3,1,""],help:[2,1,1,""],hidden:[2,1,1,""],ignore_extra:[2,1,1,""],invoked_subcommand:[2,1,1,""],is_on_cooldown:[2,3,1,""],message_command:[2,1,1,""],name:[2,1,1,""],option_descriptions:[2,1,1,""],parent:[2,1,1,""],parents:[2,2,1,""],qualified_name:[2,2,1,""],remove_check:[2,3,1,""],require_var_positional:[2,1,1,""],reset_cooldown:[2,3,1,""],rest_is_raw:[2,1,1,""],root_parent:[2,2,1,""],short_doc:[2,2,1,""],signature:[2,2,1,""],slash_command:[2,1,1,""],slash_command_guilds:[2,1,1,""],update:[2,3,1,""],usage:[2,1,1,""]},"discord.ext.commands.CommandInvokeError":{original:[2,1,1,""]},"discord.ext.commands.CommandOnCooldown":{cooldown:[2,1,1,""],retry_after:[2,1,1,""],type:[2,1,1,""]},"discord.ext.commands.CommandRegistrationError":{alias_conflict:[2,1,1,""],name:[2,1,1,""]},"discord.ext.commands.Context":{args:[2,1,1,""],author:[2,1,1,""],author_permissions:[2,3,1,""],bot:[2,1,1,""],channel:[2,1,1,""],clean_prefix:[2,2,1,""],cog:[2,2,1,""],command:[2,1,1,""],command_failed:[2,1,1,""],current_parameter:[2,1,1,""],fetch_message:[2,3,1,""],guild:[2,1,1,""],history:[2,3,1,""],invoke:[2,3,1,""],invoked_parents:[2,1,1,""],invoked_subcommand:[2,1,1,""],invoked_with:[2,1,1,""],kwargs:[2,1,1,""],me:[2,1,1,""],message:[2,1,1,""],pins:[2,3,1,""],prefix:[2,1,1,""],reinvoke:[2,3,1,""],reply:[2,3,1,""],send:[2,3,1,""],send_help:[2,3,1,""],subcommand_passed:[2,1,1,""],trigger_typing:[2,3,1,""],typing:[2,3,1,""],valid:[2,2,1,""],voice_client:[2,2,1,""]},"discord.ext.commands.ConversionError":{converter:[2,1,1,""],original:[2,1,1,""]},"discord.ext.commands.Converter":{convert:[2,3,1,""]},"discord.ext.commands.Cooldown":{copy:[2,3,1,""],get_retry_after:[2,3,1,""],get_tokens:[2,3,1,""],per:[2,1,1,""],rate:[2,1,1,""],reset:[2,3,1,""],update_rate_limit:[2,3,1,""]},"discord.ext.commands.DefaultHelpCommand":{add_command_formatting:[2,3,1,""],add_indented_commands:[2,3,1,""],commands_heading:[2,1,1,""],dm_help:[2,1,1,""],dm_help_threshold:[2,1,1,""],get_destination:[2,3,1,""],get_ending_note:[2,3,1,""],indent:[2,1,1,""],no_category:[2,1,1,""],paginator:[2,1,1,""],send_pages:[2,3,1,""],shorten_text:[2,3,1,""],sort_commands:[2,1,1,""],width:[2,1,1,""]},"discord.ext.commands.EmojiConverter":{convert:[2,3,1,""]},"discord.ext.commands.EmojiNotFound":{argument:[2,1,1,""]},"discord.ext.commands.ExpectedClosingQuoteError":{close_quote:[2,1,1,""]},"discord.ext.commands.ExtensionError":{name:[2,1,1,""]},"discord.ext.commands.ExtensionFailed":{name:[2,1,1,""],original:[2,1,1,""]},"discord.ext.commands.ExtensionNotFound":{name:[2,1,1,""]},"discord.ext.commands.Flag":{"default":[2,1,1,""],aliases:[2,1,1,""],annotation:[2,1,1,""],attribute:[2,1,1,""],max_args:[2,1,1,""],name:[2,1,1,""],override:[2,1,1,""],required:[2,2,1,""]},"discord.ext.commands.FlagConverter":{convert:[2,3,1,""],get_flags:[2,3,1,""]},"discord.ext.commands.GameConverter":{convert:[2,3,1,""]},"discord.ext.commands.Group":{add_check:[2,3,1,""],add_command:[2,3,1,""],after_invoke:[2,3,1,""],before_invoke:[2,3,1,""],can_run:[2,3,1,""],case_insensitive:[2,1,1,""],clean_params:[2,2,1,""],cog_name:[2,2,1,""],command:[2,3,1,""],commands:[2,2,1,""],copy:[2,3,1,""],error:[2,3,1,""],full_parent_name:[2,2,1,""],get_command:[2,3,1,""],get_cooldown_retry_after:[2,3,1,""],group:[2,3,1,""],has_error_handler:[2,3,1,""],invoke_without_command:[2,1,1,""],is_on_cooldown:[2,3,1,""],parents:[2,2,1,""],qualified_name:[2,2,1,""],remove_check:[2,3,1,""],remove_command:[2,3,1,""],reset_cooldown:[2,3,1,""],root_parent:[2,2,1,""],short_doc:[2,2,1,""],signature:[2,2,1,""],update:[2,3,1,""],walk_commands:[2,3,1,""]},"discord.ext.commands.GroupMixin":{add_command:[2,3,1,""],all_commands:[2,1,1,""],case_insensitive:[2,1,1,""],command:[2,3,1,""],commands:[2,2,1,""],get_command:[2,3,1,""],group:[2,3,1,""],remove_command:[2,3,1,""],walk_commands:[2,3,1,""]},"discord.ext.commands.GuildChannelConverter":{convert:[2,3,1,""]},"discord.ext.commands.GuildConverter":{convert:[2,3,1,""]},"discord.ext.commands.GuildNotFound":{argument:[2,1,1,""]},"discord.ext.commands.GuildStickerConverter":{convert:[2,3,1,""]},"discord.ext.commands.GuildStickerNotFound":{argument:[2,1,1,""]},"discord.ext.commands.HelpCommand":{add_check:[2,3,1,""],cog:[2,2,1,""],command_attrs:[2,1,1,""],command_callback:[2,3,1,""],command_not_found:[2,3,1,""],context:[2,1,1,""],filter_commands:[2,3,1,""],get_bot_mapping:[2,3,1,""],get_command_signature:[2,3,1,""],get_destination:[2,3,1,""],get_max_size:[2,3,1,""],invoked_with:[2,2,1,""],on_help_command_error:[2,3,1,""],prepare_help_command:[2,3,1,""],remove_check:[2,3,1,""],remove_mentions:[2,3,1,""],send_bot_help:[2,3,1,""],send_cog_help:[2,3,1,""],send_command_help:[2,3,1,""],send_error_message:[2,3,1,""],send_group_help:[2,3,1,""],show_hidden:[2,1,1,""],subcommand_not_found:[2,3,1,""],verify_checks:[2,1,1,""]},"discord.ext.commands.InvalidEndOfQuotedStringError":{"char":[2,1,1,""]},"discord.ext.commands.InviteConverter":{convert:[2,3,1,""]},"discord.ext.commands.MaxConcurrencyReached":{number:[2,1,1,""],per:[2,1,1,""]},"discord.ext.commands.MemberConverter":{convert:[2,3,1,""]},"discord.ext.commands.MemberNotFound":{argument:[2,1,1,""]},"discord.ext.commands.MessageConverter":{convert:[2,3,1,""]},"discord.ext.commands.MessageNotFound":{argument:[2,1,1,""]},"discord.ext.commands.MinimalHelpCommand":{add_aliases_formatting:[2,3,1,""],add_bot_commands_formatting:[2,3,1,""],add_command_formatting:[2,3,1,""],add_subcommand_formatting:[2,3,1,""],aliases_heading:[2,1,1,""],commands_heading:[2,1,1,""],dm_help:[2,1,1,""],dm_help_threshold:[2,1,1,""],get_command_signature:[2,3,1,""],get_destination:[2,3,1,""],get_ending_note:[2,3,1,""],get_opening_note:[2,3,1,""],no_category:[2,1,1,""],paginator:[2,1,1,""],send_pages:[2,3,1,""],sort_commands:[2,1,1,""]},"discord.ext.commands.MissingAnyRole":{missing_roles:[2,1,1,""]},"discord.ext.commands.MissingFlagArgument":{flag:[2,1,1,""]},"discord.ext.commands.MissingPermissions":{missing_permissions:[2,1,1,""]},"discord.ext.commands.MissingRequiredArgument":{param:[2,1,1,""]},"discord.ext.commands.MissingRequiredFlag":{flag:[2,1,1,""]},"discord.ext.commands.MissingRole":{missing_role:[2,1,1,""]},"discord.ext.commands.ObjectConverter":{convert:[2,3,1,""]},"discord.ext.commands.Option":{"default":[2,1,1,""],description:[2,1,1,""]},"discord.ext.commands.Paginator":{add_line:[2,3,1,""],clear:[2,3,1,""],close_page:[2,3,1,""],linesep:[2,1,1,""],max_size:[2,1,1,""],pages:[2,2,1,""],prefix:[2,1,1,""],suffix:[2,1,1,""]},"discord.ext.commands.PartialEmojiConversionFailure":{argument:[2,1,1,""]},"discord.ext.commands.PartialEmojiConverter":{convert:[2,3,1,""]},"discord.ext.commands.PartialMessageConverter":{convert:[2,3,1,""]},"discord.ext.commands.RoleConverter":{convert:[2,3,1,""]},"discord.ext.commands.RoleNotFound":{argument:[2,1,1,""]},"discord.ext.commands.StageChannelConverter":{convert:[2,3,1,""]},"discord.ext.commands.StoreChannelConverter":{convert:[2,3,1,""]},"discord.ext.commands.TextChannelConverter":{convert:[2,3,1,""]},"discord.ext.commands.ThreadConverter":{convert:[2,3,1,""]},"discord.ext.commands.ThreadNotFound":{argument:[2,1,1,""]},"discord.ext.commands.TooManyFlags":{flag:[2,1,1,""],values:[2,1,1,""]},"discord.ext.commands.UnexpectedQuoteError":{quote:[2,1,1,""]},"discord.ext.commands.UserConverter":{convert:[2,3,1,""]},"discord.ext.commands.UserNotFound":{argument:[2,1,1,""]},"discord.ext.commands.VoiceChannelConverter":{convert:[2,3,1,""]},"discord.ext.commands.clean_content":{convert:[2,3,1,""],escape_markdown:[2,1,1,""],fix_channel_mentions:[2,1,1,""],remove_markdown:[2,1,1,""],use_nicknames:[2,1,1,""]},"discord.ext.tasks":{Loop:[8,0,1,""],loop:[8,6,1,""]},"discord.ext.tasks.Loop":{__call__:[8,3,1,""],add_exception_type:[8,3,1,""],after_loop:[8,3,1,""],before_loop:[8,3,1,""],cancel:[8,3,1,""],change_interval:[8,3,1,""],clear_exception_types:[8,3,1,""],current_loop:[8,2,1,""],error:[8,3,1,""],failed:[8,3,1,""],get_task:[8,3,1,""],hours:[8,2,1,""],is_being_cancelled:[8,3,1,""],is_running:[8,3,1,""],minutes:[8,2,1,""],next_iteration:[8,2,1,""],remove_exception_type:[8,3,1,""],restart:[8,3,1,""],seconds:[8,2,1,""],start:[8,3,1,""],stop:[8,3,1,""],time:[8,2,1,""]},"discord.opus":{OpusError:[0,4,1,""],OpusNotLoaded:[0,4,1,""],is_loaded:[0,6,1,""],load_opus:[0,6,1,""]},"discord.opus.OpusError":{code:[0,1,1,""]},"discord.ui":{Button:[0,0,1,""],Item:[0,0,1,""],Select:[0,0,1,""],View:[0,0,1,""],button:[0,6,1,""],select:[0,6,1,""]},"discord.ui.Button":{callback:[0,3,1,""],custom_id:[0,2,1,""],disabled:[0,2,1,""],emoji:[0,2,1,""],label:[0,2,1,""],style:[0,2,1,""],url:[0,2,1,""],view:[0,2,1,""]},"discord.ui.Item":{callback:[0,3,1,""],view:[0,2,1,""]},"discord.ui.Select":{add_option:[0,3,1,""],append_option:[0,3,1,""],callback:[0,3,1,""],custom_id:[0,2,1,""],disabled:[0,2,1,""],max_values:[0,2,1,""],min_values:[0,2,1,""],options:[0,2,1,""],placeholder:[0,2,1,""],values:[0,2,1,""],view:[0,2,1,""]},"discord.ui.View":{add_item:[0,3,1,""],children:[0,1,1,""],clear_items:[0,3,1,""],from_message:[0,3,1,""],interaction_check:[0,3,1,""],is_dispatching:[0,3,1,""],is_finished:[0,3,1,""],is_persistent:[0,3,1,""],on_error:[0,3,1,""],on_timeout:[0,3,1,""],remove_item:[0,3,1,""],stop:[0,3,1,""],timeout:[0,1,1,""],wait:[0,3,1,""]},"discord.utils":{as_chunks:[0,6,1,""],escape_markdown:[0,6,1,""],escape_mentions:[0,6,1,""],find:[0,6,1,""],format_dt:[0,6,1,""],get:[0,6,1,""],oauth_url:[0,6,1,""],remove_markdown:[0,6,1,""],resolve_invite:[0,6,1,""],resolve_template:[0,6,1,""],sleep_until:[0,6,1,""],snowflake_time:[0,6,1,""],utcnow:[0,6,1,""]},discord:{ActionRow:[0,0,1,""],Activity:[0,0,1,""],ActivityType:[0,0,1,""],AllowedMentions:[0,0,1,""],AppInfo:[0,0,1,""],ApplicationFlags:[0,0,1,""],Asset:[0,0,1,""],AsyncIterator:[0,0,1,""],Attachment:[0,0,1,""],AudioSource:[0,0,1,""],AuditLogAction:[0,0,1,""],AuditLogActionCategory:[0,0,1,""],AuditLogChanges:[0,0,1,""],AuditLogDiff:[0,0,1,""],AuditLogEntry:[0,0,1,""],AutoShardedClient:[0,0,1,""],BanEntry:[0,0,1,""],BaseActivity:[0,0,1,""],BotIntegration:[0,0,1,""],Button:[0,0,1,""],ButtonStyle:[0,0,1,""],CategoryChannel:[0,0,1,""],ChannelType:[0,0,1,""],Client:[0,0,1,""],ClientException:[0,4,1,""],ClientUser:[0,0,1,""],Colour:[0,0,1,""],Component:[0,0,1,""],ComponentType:[0,0,1,""],ConnectionClosed:[0,4,1,""],ContentFilter:[0,0,1,""],CustomActivity:[0,0,1,""],DMChannel:[0,0,1,""],DefaultAvatar:[0,0,1,""],DeletedReferencedMessage:[0,0,1,""],DiscordException:[0,4,1,""],DiscordServerError:[0,4,1,""],Embed:[0,0,1,""],Emoji:[0,0,1,""],ExpireBehaviour:[0,0,1,""],FFmpegAudio:[0,0,1,""],FFmpegOpusAudio:[0,0,1,""],FFmpegPCMAudio:[0,0,1,""],File:[0,0,1,""],Forbidden:[0,4,1,""],Game:[0,0,1,""],GatewayNotFound:[0,4,1,""],GroupChannel:[0,0,1,""],Guild:[0,0,1,""],GuildSticker:[0,0,1,""],HTTPException:[0,4,1,""],Integration:[0,0,1,""],IntegrationAccount:[0,0,1,""],IntegrationApplication:[0,0,1,""],Intents:[0,0,1,""],Interaction:[0,0,1,""],InteractionMessage:[0,0,1,""],InteractionResponded:[0,4,1,""],InteractionResponse:[0,0,1,""],InteractionResponseType:[0,0,1,""],InteractionType:[0,0,1,""],InvalidArgument:[0,4,1,""],InvalidData:[0,4,1,""],Invite:[0,0,1,""],InviteTarget:[0,0,1,""],LoginFailure:[0,4,1,""],Member:[0,0,1,""],MemberCacheFlags:[0,0,1,""],Message:[0,0,1,""],MessageFlags:[0,0,1,""],MessageReference:[0,0,1,""],MessageType:[0,0,1,""],NSFWLevel:[0,0,1,""],NoMoreItems:[0,4,1,""],NotFound:[0,4,1,""],NotificationLevel:[0,0,1,""],Object:[0,0,1,""],PCMAudio:[0,0,1,""],PCMVolumeTransformer:[0,0,1,""],PartialAppInfo:[0,0,1,""],PartialEmoji:[0,0,1,""],PartialInviteChannel:[0,0,1,""],PartialInviteGuild:[0,0,1,""],PartialMessage:[0,0,1,""],PartialMessageable:[0,0,1,""],PartialWebhookChannel:[0,0,1,""],PartialWebhookGuild:[0,0,1,""],PermissionOverwrite:[0,0,1,""],Permissions:[0,0,1,""],PrivilegedIntentsRequired:[0,4,1,""],PublicUserFlags:[0,0,1,""],RawBulkMessageDeleteEvent:[0,0,1,""],RawIntegrationDeleteEvent:[0,0,1,""],RawMessageDeleteEvent:[0,0,1,""],RawMessageUpdateEvent:[0,0,1,""],RawReactionActionEvent:[0,0,1,""],RawReactionClearEmojiEvent:[0,0,1,""],RawReactionClearEvent:[0,0,1,""],RawTypingEvent:[0,0,1,""],Reaction:[0,0,1,""],Role:[0,0,1,""],RoleTags:[0,0,1,""],SelectMenu:[0,0,1,""],SelectOption:[0,0,1,""],ShardInfo:[0,0,1,""],Spotify:[0,0,1,""],StageChannel:[0,0,1,""],StageInstance:[0,0,1,""],StagePrivacyLevel:[0,0,1,""],StandardSticker:[0,0,1,""],Status:[0,0,1,""],Sticker:[0,0,1,""],StickerFormatType:[0,0,1,""],StickerItem:[0,0,1,""],StickerPack:[0,0,1,""],StickerType:[0,0,1,""],StoreChannel:[0,0,1,""],StreamIntegration:[0,0,1,""],Streaming:[0,0,1,""],SyncWebhook:[0,0,1,""],SyncWebhookMessage:[0,0,1,""],SystemChannelFlags:[0,0,1,""],Team:[0,0,1,""],TeamMember:[0,0,1,""],TeamMembershipState:[0,0,1,""],Template:[0,0,1,""],TextChannel:[0,0,1,""],Thread:[0,0,1,""],ThreadMember:[0,0,1,""],User:[0,0,1,""],UserFlags:[0,0,1,""],VerificationLevel:[0,0,1,""],VideoQualityMode:[0,0,1,""],VoiceChannel:[0,0,1,""],VoiceClient:[0,0,1,""],VoiceProtocol:[0,0,1,""],VoiceRegion:[0,0,1,""],VoiceState:[0,0,1,""],Webhook:[0,0,1,""],WebhookMessage:[0,0,1,""],WebhookType:[0,0,1,""],Widget:[0,0,1,""],WidgetChannel:[0,0,1,""],WidgetMember:[0,0,1,""],__version__:[0,5,1,""],on_bulk_message_delete:[0,6,1,""],on_connect:[0,6,1,""],on_disconnect:[0,6,1,""],on_error:[0,6,1,""],on_group_join:[0,6,1,""],on_group_remove:[0,6,1,""],on_guild_available:[0,6,1,""],on_guild_channel_create:[0,6,1,""],on_guild_channel_delete:[0,6,1,""],on_guild_channel_pins_update:[0,6,1,""],on_guild_channel_update:[0,6,1,""],on_guild_emojis_update:[0,6,1,""],on_guild_integrations_update:[0,6,1,""],on_guild_join:[0,6,1,""],on_guild_remove:[0,6,1,""],on_guild_role_create:[0,6,1,""],on_guild_role_delete:[0,6,1,""],on_guild_role_update:[0,6,1,""],on_guild_stickers_update:[0,6,1,""],on_guild_unavailable:[0,6,1,""],on_guild_update:[0,6,1,""],on_integration_create:[0,6,1,""],on_integration_update:[0,6,1,""],on_interaction:[0,6,1,""],on_invite_create:[0,6,1,""],on_invite_delete:[0,6,1,""],on_member_ban:[0,6,1,""],on_member_join:[0,6,1,""],on_member_remove:[0,6,1,""],on_member_unban:[0,6,1,""],on_member_update:[0,6,1,""],on_message:[0,6,1,""],on_message_delete:[0,6,1,""],on_message_edit:[0,6,1,""],on_presence_update:[0,6,1,""],on_private_channel_pins_update:[0,6,1,""],on_private_channel_update:[0,6,1,""],on_raw_bulk_message_delete:[0,6,1,""],on_raw_integration_delete:[0,6,1,""],on_raw_message_delete:[0,6,1,""],on_raw_message_edit:[0,6,1,""],on_raw_reaction_add:[0,6,1,""],on_raw_reaction_clear:[0,6,1,""],on_raw_reaction_clear_emoji:[0,6,1,""],on_raw_reaction_remove:[0,6,1,""],on_raw_typing:[0,6,1,""],on_reaction_add:[0,6,1,""],on_reaction_clear:[0,6,1,""],on_reaction_clear_emoji:[0,6,1,""],on_reaction_remove:[0,6,1,""],on_ready:[0,6,1,""],on_resumed:[0,6,1,""],on_shard_connect:[0,6,1,""],on_shard_disconnect:[0,6,1,""],on_shard_ready:[0,6,1,""],on_shard_resumed:[0,6,1,""],on_socket_event_type:[0,6,1,""],on_socket_raw_receive:[0,6,1,""],on_socket_raw_send:[0,6,1,""],on_stage_instance_create:[0,6,1,""],on_stage_instance_delete:[0,6,1,""],on_stage_instance_update:[0,6,1,""],on_thread_delete:[0,6,1,""],on_thread_join:[0,6,1,""],on_thread_member_join:[0,6,1,""],on_thread_member_remove:[0,6,1,""],on_thread_remove:[0,6,1,""],on_thread_update:[0,6,1,""],on_typing:[0,6,1,""],on_user_update:[0,6,1,""],on_voice_state_update:[0,6,1,""],on_webhooks_update:[0,6,1,""],version_info:[0,5,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","attribute","Python attribute"],"2":["py","property","Python property"],"3":["py","method","Python method"],"4":["py","exception","Python exception"],"5":["py","data","Python data"],"6":["py","function","Python function"]},objtypes:{"0":"py:class","1":"py:attribute","2":"py:property","3":"py:method","4":"py:exception","5":"py:data","6":"py:function"},terms:{"0":[0,2,3,4,8,10,13],"0001":0,"05":0,"0rc1":0,"0x":2,"0x11806a":0,"0x1abc9c":0,"0x1f8b4c":0,"0x206694":0,"0x2ecc71":0,"0x3498db":0,"0x36393f":0,"0x4e5d94":0,"0x546e7a":0,"0x57f287":0,"0x5865f2":0,"0x607d8b":0,"0x71368a":0,"0x7289da":0,"0x95a5a6":0,"0x979c9f":0,"0x992d22":0,"0x99aab5":0,"0x9b59b6":0,"0xa84300":0,"0xad1457":0,"0xc27c0e":0,"0xe67e22":0,"0xe74c3c":0,"0xe91e63":0,"0xeb459":0,"0xed4245":0,"0xf1c40f":0,"0xf47fff":0,"0xfee75c":0,"1":[0,2,3,4,8,9,11,14],"10":[0,2,4,7,8,9,14],"100":[0,2,4,11,18],"1000":[0,2,14,18],"10080":0,"101":[0,2],"106k":18,"1083":18,"109":18,"11":[4,14],"12":4,"120":11,"123":[0,2],"12324234183172":9,"128":[0,2],"13":4,"14":0,"1440":0,"15":[0,2],"150":[0,2],"1584":18,"16":0,"17":0,"1738":0,"176995180300206080":14,"180":0,"1874":18,"1986":18,"2":[0,2,4,8,11,12,14,15],"20":[0,11,18],"200":[0,2,9],"2000":2,"2002":2,"2008":18,"2016":0,"2051":18,"2056":18,"2061":18,"2063":18,"2077":18,"2085":18,"2086":18,"2093":18,"2094":18,"2095":18,"20m":0,"2101":18,"2104":18,"2107":18,"2113":18,"2117":18,"2118":18,"2123":[2,18],"2135":18,"2139":18,"2140":18,"2143":18,"2145":18,"2154":18,"2158":18,"21600":0,"2162":18,"2169":18,"2170":18,"2178":18,"2185":18,"2198":18,"22":0,"2201":18,"2204":18,"2208":18,"2213":18,"2218":18,"2232":18,"2237":18,"2239":18,"2244":18,"2251":18,"2253":18,"2258":18,"2265":18,"2272":18,"2274":18,"2275":18,"2287":18,"2291":18,"2294":18,"2300":18,"2301":18,"2305":18,"2314":18,"2324":18,"232720527448342530":9,"2331":18,"2333":18,"2343":18,"2349":18,"2354":18,"2358":18,"2360":18,"2364":18,"2367":18,"2368":18,"2369":18,"2372":18,"2373":18,"2374":18,"2375":18,"2376":18,"2377":18,"2380":18,"2400":18,"2411":18,"2415":18,"2420":18,"2427":18,"2433":18,"2441":18,"2443":18,"2445":18,"2446":18,"2453":18,"2460":18,"2463":18,"2465":18,"2470":18,"2471":18,"2482":18,"2489":18,"2490":18,"2496":18,"2498":18,"25":0,"250":[0,11],"2501":18,"2502":18,"2504":18,"2516":18,"2517":18,"2519":18,"2531":18,"2535":18,"2539":18,"2540":18,"2544":18,"255":2,"2570":18,"2572":18,"2577":18,"2591":18,"2619":18,"2621":18,"2623":18,"2650":18,"2652":18,"2654":18,"27k":18,"2fa":[0,1,18],"2x":18,"3":[0,2,4,8,12,14,15,16],"303":18,"309":18,"3090":18,"310177266011340803":9,"3107":4,"316026178463072268":4,"32":[9,18],"329":14,"3300":18,"340":18,"381870129706958858":9,"3996":18,"3999":18,"3rd":[8,9],"4":[0,2,8,14,15],"4000":18,"4002":18,"4015":18,"4016":18,"4019":18,"4021":18,"403":0,"4036":18,"404":[0,18],"4043":18,"4047":18,"4049":18,"4053":18,"4057":18,"4058":18,"4068":18,"4071":18,"4074":18,"4082":18,"4087":18,"4095":18,"4112":18,"4114":18,"4115":18,"4120":18,"4121":18,"4152":18,"4153":18,"4157":18,"41771983423143937":4,"4180":18,"4181":18,"4182":18,"4186":18,"42":18,"420":18,"4206":18,"4207":18,"4210":18,"4217":18,"429":[10,18],"4320":0,"440":0,"477":18,"48k":18,"48khz":0,"492212595072434186":2,"4x":18,"5":[0,2,3,8,11,14,15],"50":0,"500":[0,18],"5000":18,"502":18,"503":18,"504":18,"5068":18,"5086":18,"5088":18,"5109":18,"5124":18,"512kbp":18,"5130":18,"5133":18,"5143":18,"5154":18,"5181":18,"5188":18,"5191":18,"5193":18,"5195":18,"5197":18,"5198":18,"5207":18,"5210":18,"5212":18,"5213":18,"5221":18,"5233":18,"526":[2,4],"53":0,"57":[0,18],"5748":18,"5754":18,"5756":18,"5757":18,"5762":18,"5763":18,"5772":18,"5773":18,"5785":18,"5789":18,"5793":18,"5797":18,"5798":18,"5799":18,"58":0,"5800":18,"5804":18,"5808":18,"5819":18,"5823":18,"5832":18,"5834":18,"5835":18,"5849":18,"5866":18,"5888":18,"5897":18,"5901":18,"5904":18,"5905":18,"5923":18,"5929":18,"5930":18,"5945":18,"5946":18,"5949":18,"5953":18,"5970":18,"5975":18,"5984":18,"5986":18,"5x":18,"6":[0,2,4,8,13,14],"60":[0,2,11,14],"6000":0,"6002":18,"6016":18,"6028":18,"6038":18,"6039":18,"6044":18,"6058":18,"6061":18,"6067":18,"6082":18,"6093":18,"6095":18,"6100":18,"6113":18,"6128":18,"6153":18,"6161":18,"6162":18,"6172":18,"6192":18,"6195":18,"6217":18,"6308":18,"6309":18,"6313":18,"6315":18,"6316":18,"6317":18,"6318":18,"6341":18,"6365":18,"6374":18,"639":0,"6390":18,"64":0,"64000":0,"6430":18,"6431":18,"6436":18,"6444":18,"6445":18,"6446":18,"6451":18,"6458":18,"6462":18,"6476":18,"6478":18,"6483":18,"6484":18,"6489":18,"6495":18,"6529":18,"6530":18,"6531":18,"6538":18,"6562":18,"6563":18,"6568":18,"6573":18,"6574":18,"6602":18,"6603":18,"6606":18,"6608":18,"6618":18,"67":18,"6726":18,"6730":18,"6744":18,"6x":18,"7":[0,2,4,11,12,14,15],"735":18,"75":11,"75x":11,"7th":18,"8":[2,4,12,13,18],"80":2,"80088516616269824":2,"80528701850124288":14,"840":[0,11],"84319995256905728":14,"85309593344815104":2,"9":[15,18],"95":11,"953":18,"99":4,"abstract":[2,8,14,15],"boolean":[0,2],"break":[14,15],"byte":[0,2,18],"case":[0,2,4,5,9,14,16,18],"catch":[2,4],"char":2,"class":[2,3,4,8,11,12,14,17,18],"default":[0,2,4,8,9,11,13,14,17,18],"do":[0,1,2,3,4,5,8,10,14,15,16,18],"enum":[0,6,9,15,18],"final":[0,2,5,15,16,18],"float":[0,2,8],"function":[1,2,3,4,5,6,7,8,10,11,12,13,14,16,17,18],"import":[0,2,4,5,8,9,11,12,13,15,16,18],"int":[0,2,3,4,8,18],"long":[0,2,9,14,18],"new":[0,1,2,4,8,9,11,13,14,17],"null":18,"public":[0,1,17,18],"return":[0,2,3,4,8,9,14,15,16,18],"short":[0,2,15],"static":[0,9],"super":4,"switch":18,"throw":[0,18],"true":[0,2,4,8,9,11,14,18],"try":[0,2,9,10,14,15,16],"while":[0,2,4,9,14,15,18],A:[0,2,3,4,8,9,10,12,14,15,18],AND:0,And:[1,14],As:[0,2,3,4,11,14,15,18],At:[3,4],Be:[4,15],But:14,By:[0,2,4,8,14,18],For:[0,2,3,4,5,6,7,9,11,12,13,15,18],If:[0,1,2,3,4,5,7,8,9,10,11,12,14,15,16,17,18],In:[0,1,2,4,5,9,11,14,15,16],Is:10,It:[0,1,2,3,4,5,9,11,13,14,16,18],Its:0,No:[0,2,14,18],Not:[0,4,18],OR:[0,2,18],Of:14,On:[0,4,12,16],One:[0,4,8,14],Or:[14,15],That:[0,2],The:[0,1,2,3,4,5,8,9,11,13,14,15,16,17,18],Then:[11,14],There:[0,2,3,4,5,7,9,11,14,15,16,18],These:[0,2,4,9,10,11,14,18],To:[0,2,3,4,5,9,11,12,14,15,18],With:[4,11,14],_:[0,2,18],__call__:[2,8,18],__cause__:2,__eq__:18,__init__:[0,2,3,4,8,14,18],__iter__:18,__name__:2,__path__:18,__repr__:18,__slots__:[0,17,18],__str__:18,__version__:0,_batch:8,_eval:4,_last_memb:3,_list:4,_original_help_command:14,_updat:15,abc:[0,2,4,9,14,18],abcmeta:2,abil:[5,11,14,18],abl:[0,9,18],about:[0,2,4,5,10,11,12,14,18],abov:[0,4,9],absolut:11,abstracteventloop:[0,8],abus:[0,2],accent:0,accent_color:0,accent_colour:[0,18],accept:[0,2,4,9,14,18],accept_invit:14,access:[0,2,4,9,14,18],accident:1,accommod:18,accompani:14,accomplish:[0,14],accord:0,account:[0,2,10,14,16,18],accumul:2,accur:0,accuraci:11,achiev:0,ack:18,acknowledg:0,acquir:8,act:[0,2,18],action:[0,1,14],action_row:0,activ:[2,9,11,12,14,18],active_thread:[0,18],activitytyp:[0,9,18],actual:[0,1,2,3,4,9,14,18],ad:[0,1,2,3,4,5,8,14,17,18],add:[0,1,2,4,5,7,8,11,14,18],add_aliases_format:2,add_bot_commands_format:2,add_check:[2,18],add_cog:[2,3],add_command:[2,4,5],add_command_format:2,add_exception_typ:[8,18],add_field:0,add_indented_command:2,add_item:0,add_lin:2,add_listen:2,add_opt:0,add_react:[0,9,14,18],add_rol:[0,14],add_subcommand_format:2,add_us:0,add_view:[0,2],addhandl:13,addit:[0,11,18],adher:4,admin:0,admin_rol:0,administr:[0,1],advanc:[0,13],advis:[0,11],affect:[0,15],afk:[0,2,18],afk_channel:0,afk_timeout:0,africa:0,after:[0,2,4,8,15,18],after_any_command:14,after_foo_command:14,after_invok:[2,14,18],after_loop:8,after_slow_count:8,afterward:[2,16],ag:0,again:[0,2,14,18],against:2,age_restrict:0,aggreg:14,ago:0,aid:[0,2,4,10,11,12,18],aiohttp:[0,9,14,18],aka:0,akin:14,album:0,album_cover_url:0,algorithm:[0,8],alia:[0,2,17,18],alias:[0,2,14,18],alias_conflict:2,aliases_head:2,aliv:[0,18],all:[0,1,2,3,4,8,9,10,11,12,14,15,18],all_channel:0,all_command:[2,14],all_memb:0,all_messag:0,allevi:14,alloc:14,allow:[0,2,3,4,8,9,11,14,15,18],allowed_command:2,allowed_ment:[0,2,18],allowedment:[2,18],almost:[0,15,18],alon:[0,18],along:[0,2,11,14,17,18],alongsid:3,alpha:[0,18],alphabet:2,alreadi:[0,2,8,9,11,18],also:[0,1,2,3,4,5,7,9,11,12,14,18],altern:[0,2,9],although:[0,5],alwai:[0,2,4,14,18],am:[2,5],amaz:9,ambigu:4,amount:[0,2,4,8,14,18],amsterdam:0,an:[0,1,2,3,4,5,6,8,10,11,12,14,16,17,18],analog:0,analogu:0,analysi:0,ani:[0,1,2,4,5,9,13,14,15,18],anim:[0,2,18],animated_icon:0,annot:[2,4],announc:[0,18],anonym:0,anoth:[0,2,4,5,9,11,14,18],answer:10,anticip:18,anymor:[0,18],anyon:0,anyth:[0,2,4,9,15],anywai:8,anywher:0,apart:[8,18],api:[1,4,6,9,10,11,12,14,15,17],apng:0,appeal:4,appear:[0,18],append:[0,2],append_opt:0,appinfo:[2,18],appli:[0,2,4,5,14,17,18],applic:[1,2,9,11,12,13,14],application_command:0,application_flag:[0,2],application_id:[0,2],application_info:[0,2,14,18],applicationflag:2,approach:14,appropri:[0,2,4,9,14,18],approxim:0,approximate_member_count:[0,2],approximate_presence_count:[0,2],apt:12,ar:[0,1,2,3,4,5,7,8,9,10,12,13,15,17,18],arbitrari:0,arbitrarili:[4,9],archiv:0,archive_timestamp:0,archived_thread:0,archiver_id:0,aren:[0,18],arg1:4,arg2:4,arg:[0,2,4,8],argument:[0,2,3,8,11,13,14,18],argumentparsingerror:2,aris:15,around:[0,2,11,12,16,18],arrai:0,arrang:0,artist:0,as_chunk:0,as_need:0,asctim:13,ask:[0,2,4,10],aspect:[0,2,4,6,9,14],asset:18,assign:[0,2,4,14,15],associ:[0,2,14],assum:[0,2,8,16],assume_synced_clock:18,assume_unsync_clock:0,async:[2,3,4,5,8,9,10,12,14,15,16],async_ev:15,asynchron:[0,2,4,9,16],asyncio:[0,2,9,10,14,15,18],asynciter:[0,2,14,18],asyncpg:8,atom:[0,2],attach:[2,4,9,14,18],attach_fil:0,attempt:[0,2,4,9,18],attr:[0,2],attribut:[0,2,3,4,8,9,11,14,15,17,18],attributeerror:[0,18],audio:[0,14,18],audioplay:14,audiosourc:14,audit:[14,18],audit_log:[0,14],auditlogact:0,auditlogactioncategori:0,auditlogentri:18,augment:4,authent:[0,2],author:[0,1,2,3,4,5,9,11,12,14,16,18],author__nam:0,author_permiss:2,authoris:0,auto:[0,14],auto_archive_dur:0,autom:16,automat:[0,2,3,14,18],autoshardedbot:[11,14,18],autoshardedcli:[2,11,14,18],avail:[0,2,10,18],avatar:[0,11,14,18],avatar_url:[0,14,15,18],avatar_url_a:14,avconv:0,averag:0,average_lat:[0,18],avoid:[0,2,18],avprob:0,aw:9,awai:[0,2,8],await:[0,2,3,4,5,8,10,14,15,16],awar:[0,1,2,9,15],b:[0,2,4,9],back:[0,2,4,8,9,11,14,18],background:[0,8,18],background_task:9,backport:18,backslash:9,backtick:2,backward:[14,18],bad:[0,2,4,9],badargu:[2,4,18],badboolargu:2,badcolourargu:2,badflagargu:2,badinviteargu:2,badliteralargu:[2,4],badunionargu:[2,4],balanc:0,ban:[0,1,2,4,14,15,18],ban_memb:[0,18],banentri:0,banflag:4,banner:[0,18],bar:[2,4],base:[2,4,12,14,18],baseact:2,baseconnector:0,baseexcept:8,basi:[0,2,14,18],basic:[0,2,11,14,15,16],basic_ext:5,basicauth:0,basicconfig:13,bat:12,batch:8,batch_upd:8,becaus:[0,2,4,9,14,15],becom:[0,2,15],been:[0,2,4,8,14,15,18],beer:4,befor:[0,2,8,15,18],before_any_command:14,before_foo_command:14,before_identify_hook:[0,2,18],before_invok:[2,14,18],before_loop:[8,18],before_opt:0,before_print:8,beforehand:0,begin:[0,2,11],behav:[2,14],behaviour:[0,2,3,4,9,11,14,15,17,18],being:[0,2,3,4,5,8,11,14,18],belong:[0,2,9,14],below:[0,2,4,14,15,17,18],benefit:14,best:[0,18],beta:0,better:[14,18],between:[0,2,4,8,14,18],beyond:4,big:[2,18],biggest:[14,15],bin:12,binari:[0,18],bind:[3,14],bit:[0,4,14,18],bitrat:[0,18],bitrate_limit:[0,18],blank:[0,2],block:[0,2,4,15,18],blue:0,blurpl:0,bodi:[0,2,18],bold:2,bool:[0,2,8],boost:[0,18],booster:18,boot:18,bot:[3,4,5,7,8,10,11,12,14,18],bot_add:0,bot_check:[2,3,14],bot_check_onc:[2,3,14],bot_has_any_rol:2,bot_has_guild_permiss:[2,18],bot_has_permiss:2,bot_has_rol:2,bot_id:0,bot_publ:0,bot_require_code_gr:0,bot_token:0,both:[0,2,9,10,11,18],botintegr:0,botmissinganyrol:2,botmissingpermiss:2,botmissingrol:2,bots_rol:0,bottl:4,bottom:0,bound:[0,2,17],box:7,branch:9,brand:0,brand_green:[0,18],brand_r:[0,18],braveri:0,brazil:[0,18],brief:[2,16],brillianc:0,bring:[0,18],broadcast:0,browser:1,bucket:[0,2,11,18],buckettyp:[2,18],buffer:0,bufferediobas:0,bug:[0,9,10,17],bug_hunt:0,bug_hunter_level_2:0,bui:4,build:[4,18],built:[0,2,4,5,14,18],bulk:[0,8,18],bulker:8,bump:18,button:[1,18],buttonstyl:[0,18],buy_sel:4,by_categori:[0,14,18],bypass:[0,2,11,14],bytearrai:0,bytesio:[0,9,18],c:[2,3,9],cach:[0,2,14,18],cache_auth:18,cached_messag:[0,2,14,18],calcul:[0,2,18],call:[0,2,3,4,5,8,9,11,12,13,14,15,16,18],call_hook:2,call_onc:2,callabl:[0,2,4,9,14,18],callback:[0,2,8,9,16],caller:[0,2],callmessag:18,came:[14,18],camera:0,can:[0,1,2,3,4,6,7,8,10,11,12,13,14,15,16,17,18],can_:15,can_manage_messag:15,can_run:[2,18],cancel:[0,2,8,14,18],cancellederror:[8,18],candid:[0,2],cannot:[0,2,4,8,9,18],cap:[0,2],capabl:0,capit:4,care:[0,2,4],carri:2,case_insensit:[2,4],cast:[0,4,15,18],cat:9,categori:[0,2,3,14,18],categoris:0,category_id:0,categorychannel:[2,4,14],categorychannelconvert:[2,4],caught:[0,2],caus:[0,2,11,18],caution:9,caveat:[14,18],cd:12,cdn:[0,18],central:0,certain:[0,1,2,3,4,8,9,11,14,15,18],certifi:0,ch:14,chain:[0,2,14],chanc:[0,9],chang:[0,2,3,4,5,8,9,11],change_interv:[8,18],change_nicknam:[0,14,18],change_pres:[0,2,9,18],change_statu:18,change_voice_st:[0,18],changed_rol:0,changelog:10,changeset:18,channel:[0,2,3,4,15,16,18],channel_cr:0,channel_delet:0,channel_follow:0,channel_follow_add:[0,18],channel_icon_chang:0,channel_id:[0,2,18],channel_ment:0,channel_messag:0,channel_name_chang:0,channel_upd:0,channelconvert:14,channelnotfound:2,channelnotread:2,channeltyp:[0,2,15,18],charact:[0,2,9,18],check:[0,1,5,6,8,9,11,12,13,16,18],check_ani:[2,18],check_command:2,check_if_it_is_m:2,check_onc:[2,14],checkanyfailur:2,checkbox:1,checkfailur:[2,4],checklist:11,child:2,children:0,choic:[0,4,9],choos:[0,1,2],chosen:0,chunk:[0,11,14,18],chunk_guilds_at_startup:[0,11],circumst:0,citizen:14,cl:[0,2,4,14,18],clamp:4,clash:4,classmethod:[0,2,4],clean:[0,2,4,6,14],clean_cont:[0,2,4,14,18],clean_param:2,clean_prefix:[2,14,18],cleandoc:2,cleanup:[0,14,18],clear:[0,2,18],clear_exception_typ:8,clear_field:0,clear_item:0,clear_react:[0,14,18],clever:0,click:[0,1,2,11],client:[1,2,8,9,11,12,14,16,18],client_id:0,clientexcept:[0,2,18],clientrespons:0,clientsess:[0,9,14],clientus:[2,14],clock:[0,18],clog:13,clone:[0,18],close:[0,2,11,14,15,18],close_pag:2,close_quot:2,closur:0,cloudflar:18,cluster:[0,18],cn:0,co:[0,2],code:[0,1,2,4,5,9,11,18],codec:0,codepoint:[0,2],cog:[6,8,18],cog_after_invok:[2,3,14],cog_before_invok:[2,3,14],cog_check:[2,3,14],cog_command_error:[2,3,14],cog_nam:2,cog_unload:[2,3,8,14],cogabcmeta:2,cogmeta:[3,14],coincid:0,coinflip:3,collect:[0,2,3,9],colon:0,color:0,colorconvert:[2,18],colour:[2,4,14,18],colourconvert:[2,4,18],com:[0,18],combin:[0,14],combo:0,come:[0,3,4,5,6,9,10,11,12,14,17,18],comma:2,command:[0,3,5,8,10,11,12,16],command_attr:[2,18],command_callback:2,command_fail:[2,14],command_nam:2,command_not_found:[2,14],command_prefix:[2,4,11,18],commanderror:[2,4],commandinvokeerror:2,commandnotfound:2,commandoncooldown:[2,18],commandregistrationerror:[2,18],commands_head:2,commerc:0,common:[0,2,4,8,9,10,11,14,15],commun:[0,2,3],compar:[0,2,18],comparison:[0,18],compart:0,compat:[0,18],compet:[0,18],complet:[0,2,14,18],complic:[0,3,4,9,14],compon:[2,18],componenttyp:0,compos:0,compound:11,comprehend:4,compress:18,compris:[0,2],comput:[0,2,15,18],compute_prune_count:0,compute_prune_memb:18,comrad:4,con:8,concept:[0,4,5,14],concret:[0,18],concurr:[2,18],condit:[2,18],configur:[0,2,13],conflict:[0,2,16,18],confus:[2,6],congratul:12,conjunct:[5,8],connect:[2,8,9,15,16,18],connected_channel:0,connectionclos:[0,2],connector:0,consequ:[0,1,2,14,15,18],consid:[0,2,4,9,15,17,18],consider:[0,3,18],consist:[0,14,18],consol:[4,13],constant:15,constraint:18,construct:[0,2,4,11,14,18],constructor:[0,2,4,9,11,18],consum:[2,9],contact:11,contain:[0,2,4,9,11,18],content:[0,2,4,9,12,14,16,18],content_typ:[0,18],contentfilt:0,context:[0,6,8,9,15,18],continu:[0,1,2,4],contribut:18,contributor:18,control:[0,2,4,11,14,15,18],conveni:[0,8],convers:[0,2,14],conversionerror:2,convert:[0,6,18],cool:[0,2,9,14],cool_filenam:14,cool_imag:9,cooldown:[6,14,18],cooldown_after_pars:2,coordin:4,copi:[0,1,2,14,18],core:[4,5,18],coro:[2,8,9],coroutin:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,16,17,18],correct:[0,2,18],correctli:[2,6],correspond:[0,2,4,11,14,15],cost:0,could:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],count:[0,2,8,18],counter:[0,2],counterpart:[0,18],coupl:[0,3,9,14,18],cours:14,cover:0,cover_imag:0,cover_image_url_a:18,cover_stick:0,cover_sticker_id:0,covert:2,cpu:18,crash:[14,18],creat:[0,2,4,6,8,10,12,14,16,18],create_categori:[0,18],create_category_channel:0,create_channel:14,create_custom_emoji:[0,14,18],create_dm:[0,2,14],create_ffmpeg_play:[14,18],create_guild:[0,2,14,18],create_inst:0,create_instant_invit:0,create_integr:[0,18],create_invit:[0,14],create_private_thread:0,create_public_thread:0,create_rol:[0,14,18],create_serv:[14,18],create_stage_channel:0,create_stick:0,create_stream_play:14,create_templ:0,create_text_channel:[0,14],create_thread:[0,18],create_voice_channel:[0,14],create_webhook:0,create_ytdl_play:14,created_at:[0,2,4,14,18],creation:[0,2,6,10,18],creator:0,credenti:[0,2,15,18],criteria:0,critic:13,crosspost:0,css:[2,18],ctx:[2,3,4,5,9,14],ctype:0,cumul:18,current:[0,2,4,7,8,9,11,18],current_loop:8,current_paramet:2,current_s:0,custom:[0,2,4,9,14,18],custom_emoji:9,custom_id:[0,2],custom_prob:0,customact:18,customis:[2,3,4,14],d:[0,2,18],dai:[0,4],danger:0,danni:18,dark:[0,18],dark_blu:0,dark_blurpl:0,dark_gold:0,dark_grai:0,dark_green:0,dark_grei:0,dark_magenta:0,dark_orang:0,dark_purpl:0,dark_r:0,dark_teal:0,dark_them:[0,18],darker_grai:0,darker_grei:0,dash:2,data:[2,3,4,8,9,15,17,18],databas:[2,8,14],dataclass:[2,4],date:[0,2,14,18],datetim:[0,2,8,18],daunt:6,dave:0,deaf:[0,14],deafen:[0,18],deafen_memb:0,deal:[0,2,11,14,18],dealloc:18,debian:12,debug:[0,9,13,18],decid:[0,2,4,14,18],decod:2,decompress:18,decor:[0,3,4,7,8,9,14,15,16,18],dedic:18,deep:2,def:[0,2,3,4,5,8,9,12,14,15,16],default_auto_archive_dur:[0,18],default_avatar:0,default_channel:[14,15],default_message_notif:0,default_notif:0,default_rol:[0,15,18],defaultavatar:0,defaulthelpcommand:14,defer:0,deferred_channel_messag:0,deferred_message_upd:0,defin:[0,2,3,4,5,9],definit:[3,4,14],delai:[0,18],delet:[0,4,14,18],delete_aft:0,delete_channel:14,delete_channel_permiss:14,delete_custom_emoji:[14,18],delete_dai:4,delete_emoji:0,delete_invit:[0,2,14,18],delete_members_dai:0,delete_messag:[0,14],delete_message_dai:[0,4],delete_original_messag:[0,18],delete_rol:14,delete_serv:14,delete_stick:0,delimit:[2,4],delta:4,deni:[0,15],denot:[0,2,14,18],departur:18,depend:[0,2,4,12,17,18],deposit_monei:3,deprec:[14,18],depth:[4,12],deriv:[2,3,4,14],describ:4,descript:[0,2,7,18],design:[4,10,14],desir:[8,11,18],desktop:0,desktop_statu:0,despair:9,despit:[4,18],destin:[0,2],detail:[0,2,3,9,10,14,15,18],detect:0,determin:0,dev:[2,12],develop:[0,1,3,5,9,10,11,14,18],devic:0,diagnost:0,dict:[0,2,18],dictat:[0,2,11],dictionari:[0,2,14,15,18],did:[0,2,5,14,18],diff:0,differ:[0,2,4,8,9,12,14],differenti:[0,14],digit:[0,2],direct:[0,11],directli:[0,2,4,9,12,13,16],directori:12,dirti:12,disabl:[0,2,4,9,11,14,18],disable_guild_select:0,disabledcommand:2,disallow:[0,18],disambigu:[2,4,18],discard:[2,18],discern:17,disconnect:[0,2,8,9,14,18],discord:[1,2,3,5,7,9,11,12,13,14,15,16,17],discord_certified_moder:0,discordapp:18,discordexcept:[0,2],discordservererror:[0,18],discourag:9,discover:0,discoverable_dis:0,discoverable_en:18,discoveri:[0,18],discovery_splash:0,discovery_splash_url:18,discrim:2,discrimin:[0,4,11,18],discuss:[4,10],dislik:11,dismiss:0,dispatch:[0,2,9,18],displai:[0,2,9,18],display_avatar:[0,18],display_nam:[0,5],dispos:14,disregard:9,disturb:[0,18],dll:0,dm:[0,2,4,14,18],dm_channel:0,dm_help:2,dm_help_threshold:2,dm_messag:0,dm_onli:[2,18],dm_reaction:0,dm_type:0,dmchannel:[2,14,18],dnd:[0,18],do_bulk:8,do_not_disturb:[0,18],doc:[0,7,18],docstr:[2,18],document:[0,2,3,4,5,9,11,12,13,14,15,17,18],doe:[0,2,14,16],doesn:[0,2,4,11,14,18],domain:18,don:[0,2,4,9,11,16,18],done:[0,2,4,8,9,14,15,18],dot:[0,2,5],down:[0,4,9,11,18],download:[0,9,18],drive:0,drop:[0,14,15,18],dropdown:0,dt:0,dubai:[0,18],duck:18,due:[0,2,4,8,9,11,14,15,17,18],duplic:[2,8,18],durat:0,dure:[0,2,5,8,10,18],dy:18,dynam:[0,1,2,4,14,17,18],dynamic_cooldown:2,e:[0,2,12,14,18],each:[0,3,8,9,11],earli:0,earlier:[4,12,14,15],early_support:0,early_verified_bot_develop:[0,18],eas:[0,2,15],easi:[0,4,10,14,18],easier:[0,4,14,15,18],easili:[0,14,18],east:0,echo:9,economi:3,edit:[0,2,14,18],edit_channel:14,edit_channel_permiss:[14,15],edit_custom_emoji:[14,18],edit_messag:[0,14,18],edit_original_messag:[0,18],edit_profil:14,edit_rol:14,edit_role_posit:[0,18],edit_serv:[14,18],edit_widget:0,edited_at:[0,14,18],edited_timestamp:14,effect:2,effort:[14,18],either:[0,2,4,7,8,9,14,18],eject:[2,18],elaps:0,elem:0,element:[0,3,4,14,17],elif:4,elig:0,els:[0,1,2,3,4,9,11,14,17],email:[0,14,18],emb:[14,18],embed:0,embed_link:0,embedded_appl:0,embedproxi:0,emoji:[2,4,9,14,18],emoji_cr:0,emoji_delet:0,emoji_id:0,emoji_limit:[0,18],emoji_upd:0,emojiconvert:[2,4],emojinotfound:2,emojis_and_stick:0,emoticon:0,employe:0,empti:[0,2,4,8,18],emptiv:18,en:[0,2],enabl:[0,1,2,4,7,11,14,18],enable_debug_ev:[0,18],enable_emoticon:0,encod:[0,2,13,18],encount:[0,2,8,9,18],encrypt:18,end:[0,2,4,9,18],endian:18,endless:1,endpoint:[0,14,18],english:0,enhanc:[7,9,18],enough:[2,4],ensur:[0,2,4,18],entir:[0,2,3,11,14,18],entiti:[2,14],entri:[0,2,5],enumer:[14,18],env:12,environ:0,ephemer:[0,2,18],epoch:[0,2],equal:[0,2,4,18],equival:[0,2,4,14,18],ergo:[9,14],error:[0,2,5,6,8,9,13,14,15,18],escap:[0,2,18],escape_markdown:[0,2,18],escape_ment:0,especi:[2,13],essenti:[0,1,4,9,14,16],establish:0,estim:0,estimate_pruned_memb:[0,14,18],etc:[0,2,11,14,18],etf:14,eu:0,eu_centr:[0,18],eu_west:[0,18],europ:[0,18],eval:[4,18],evalu:[2,4],even:[0,2,8,11,18],event:[3,4,6,8,11,12,13,16,17,18],event_method:[0,2],event_typ:[0,18],eventu:[0,3,14],ever:3,everi:[0,2,3,4,8,11,14,15,16,17],everyon:[0,1,2,4,14,18],everyth:[0,10,14],evict:[11,18],exact:[0,2,8],exactli:2,examin:4,exampl:[0,2,4,5,6,10,11,12,13,14,15,18],example_bot:16,exc_info:0,exce:[0,2,18],exceed:0,except:[4,5,6,8,9,11,14,15,18],excess:9,exclud:0,exclus:[0,4,15],execut:[0,2,4,9,15,18],exercis:18,exhaust:[0,17,18],exist:[0,2,4,14,18],exit:8,expand:14,expect:[0,2,4,11,14,18],expectedclosingquoteerror:2,experi:[0,18],experienc:18,expir:[0,2],expire_behavior:0,expire_behaviour:0,expire_grace_period:0,expirebehavior:0,expirebehaviour:0,expires_at:[0,2],explicit:[0,8],explicit_content_filt:[0,14],explicitli:[0,2,3,11,14,15,18],exponenti:[8,14],expos:[2,15,18],express:[0,4],ext:[2,4,5,7,9,10,11,16],extend:[0,2,5,18],extended_check:2,extens:[0,2,3,4,6,8,18],extensionalreadyload:2,extensionerror:2,extensionfail:2,extensionnotfound:[2,18],extensionnotload:2,extern:[0,2,4],external_emoji:[0,18],external_stick:0,extra:[0,2,4,9,18],extract:2,extran:[0,2,14],extrem:[0,18],f:[0,2,3,4,5,9,12,16],face:18,facil:18,facilit:[2,14,18],fact:[0,2,11,18],factor:0,factori:[0,2,18],fail:[0,2,4,8,14,18],fail_if_not_exist:[0,18],failur:[0,2,18],fairli:[4,17],fake:4,fall:0,fallback:[0,18],fals:[0,2,4,9,11,14,15,18],falsei:18,familiar:3,famou:9,faq:7,far:0,fast:18,faster:[15,18],favour:[14,18],featur:[0,4,10,14],feel:[2,3,4,9,18],fetch:[2,4,8,9,11,14,18],fetch_ban:0,fetch_channel:[0,2,18],fetch_emoji:[0,9],fetch_guild:[0,2,9],fetch_inst:0,fetch_invit:[0,2,14,18],fetch_memb:[0,9,11,18],fetch_messag:[0,2,9,14],fetch_offline_memb:18,fetch_premium_sticker_pack:[0,2],fetch_rol:[0,18],fetch_stage_inst:[0,2],fetch_stick:[0,2],fetch_templ:[0,2,18],fetch_us:[0,2,9,14,18],fetch_webhook:[0,2],fetch_widget:[0,2],few:[0,4,9,11,18],fewer:[0,14],fff:2,ffmpeg:[0,18],ffmpegopusaudio:18,ffmpegpcmaudio:[9,14,18],ffprobe:0,field:[0,2,18],figur:[0,9,18],file:[2,5,13,14,16,18],filehandl:13,filenam:[0,9,13,14],filesize_limit:[0,18],fill:[0,2],filter:[0,2,14,18],filter_command:2,find:[0,2,4,14],find_librari:0,fine:[0,2,4],finer:0,finicki:15,finish:[0,8,9,16],fire:[0,2,18],first:[0,1,2,3,4,6,9,10,11,14,16,17],fit:2,five:0,fix:[9,11,17],fix_channel_ment:2,flag:[0,4,11,18],flag_nam:2,flag_valu:2,flagconvert:2,flagerror:2,flatten:[0,2,14],flavour:4,flexibl:6,flip:18,flow:[0,18],fluent:0,folder:[5,9],follow:[0,2,3,4,9,11,12,13,14,15,17,18],followup:0,foo:[0,2,4,14,15],food:4,footer:[0,9],forbid:9,forbidden:[0,2,4,18],forc:[0,11,18],forget:9,form:[0,4,9],format:[0,2,14,15,18],format_dt:0,format_typ:0,formatt:[2,13],former:0,found:[0,2,4,9,12,14,15,18],fp:[0,9],fragment:[0,18],frame:[0,2],framework:[5,10,14,16],frankfurt:0,free:[2,9,18],freez:9,frequenc:18,frequent:[10,14],friendli:[0,2,4,18],from:[0,2,3,4,5,8,9,11,12,13,14,15,16,18],from_dict:0,from_hsv:0,from_int:0,from_messag:[0,18],from_pair:0,from_prob:0,from_rgb:[0,14],from_str:0,from_url:0,fuchsia:0,full:[0,2,4,9,11,14,18],full_parent_nam:2,fulli:[0,2,18],func:[0,2,3],fundament:15,further:[4,11],fut:9,futur:[0,9,14,18],g:[0,2,12,14,18],gain:[0,14],gambl:3,game:[2,4,9,14,18],gameconvert:[2,4],gamesdk:0,gap:[0,2,18],gate:[4,18],gatewai:[0,2,9,10,14,18],gateway_guild_memb:0,gateway_guild_members_limit:0,gateway_pres:0,gateway_presence_limit:0,gatewaynotfound:[0,2],gather:0,gb:0,gc:18,gener:[0,1,2,3,4,14,18],generalis:[4,14],get:[0,2,3,4,6,11,12,14,15,16,18],get_:18,get_all_channel:[0,2],get_all_emoji:[14,18],get_all_memb:[0,2],get_ban:[14,18],get_bot_map:[2,18],get_channel:[0,2,9,14],get_channel_or_thread:[0,18],get_cog:[2,3],get_command:[2,3,18],get_command_signatur:[2,14],get_context:[2,14],get_cooldown_retry_aft:[2,18],get_default_channel:15,get_default_rol:15,get_destin:[2,14],get_emoji:[0,2,9],get_ending_not:2,get_event_loop:[0,8,15],get_flag:2,get_guild:[0,2,9,14],get_invit:14,get_listen:[2,3],get_max_s:2,get_memb:[0,9],get_member_nam:0,get_messag:14,get_opening_not:2,get_partial_messag:[0,2,18],get_prefix:2,get_raw_channel_ment:15,get_raw_ment:15,get_reaction_us:[14,18],get_retry_aft:2,get_rol:[0,9,14],get_serv:14,get_shard:[0,18],get_stage_inst:[0,2],get_stick:[0,2],get_task:8,get_thread:[0,18],get_token:2,get_us:[0,2,9,14],get_user_info:[14,18],getlogg:13,getticket:0,gg:[0,2],gh:[0,2,18],gib:18,gif:0,gigant:18,gist:3,git:9,github:10,give:[0,1,2,4,15,16],given:[0,2,4,8,9],global:[2,7,9,14,18],globally_block_dm:4,go:[0,1,2,4,9,10,12,14,16,18],goal:[0,4,8,14],goe:[0,8,11,12,14],gold:0,gone:[0,14,18],good:[4,9],googl:0,got:[0,4,10,14,18],gotcha:9,grab:0,grace:0,gracefulli:[8,18],grai:[0,18],grain:[0,2],grammar:4,grant:[0,1],granular:[0,2,18],great:10,greater:[0,2,4],greatli:18,greedi:[2,18],greedili:2,green:0,greet:[0,2,3],grei:[0,18],greypl:0,ground:18,group:[0,4,9,14,18],groupcal:18,groupchannel:[14,18],guarante:[0,2,10,15],guild:[2,3,4,7,9,11,18],guild__nam:0,guild_avatar:[0,18],guild_creat:[0,18],guild_discovery_disqualifi:0,guild_discovery_grace_period_final_warn:0,guild_discovery_grace_period_initial_warn:0,guild_discovery_requalifi:0,guild_id:[0,2,4,18],guild_invite_remind:0,guild_member_upd:18,guild_messag:0,guild_onli:[0,2,4,14],guild_permiss:0,guild_react:0,guild_ready_timeout:[0,18],guild_reminder_notif:0,guild_stream:0,guild_typ:0,guild_upd:0,guildchannel:[2,4,14,18],guildchannelconvert:[2,4],guildconvert:[2,4,18],guildnotfound:2,guildstick:2,guildstickerconvert:2,guildstickernotfound:2,h:0,ha:[0,2,4,8,9,11,14,15,16,18],had:[0,2,14,15,18],handi:[4,14],handl:[0,2,6,8,10,14,15,16,17,18],handler:[0,2,4,13,14,18],handshak:[0,14,18],hang:[10,18],happen:[0,2,4,5,9,12,14,16,18],hard:[0,17],has_any_rol:2,has_error_handl:[2,18],has_guild_permiss:[2,18],has_permiss:2,has_rol:2,has_thread:0,has_unread_urgent_messag:0,hash:[0,18],hashabl:[0,18],have:[0,1,2,3,4,8,9,10,11,12,14,15,16,18],head:[2,14,16],header:18,heard:0,heart:3,heartbeat:[0,2,9,18],heartbeat_ack:[0,2,18],heartbeat_timeout:0,heavi:[0,2],hei:4,height:0,held:18,hello:[0,2,3,4,5,9,14,15,16],help:[0,3,4,6,9,12,16,18],help_command:[2,14],helpcommand:[14,18],helper:[0,6,10,18],helpformatt:18,here:[0,2,3,4,8,9,10,12,14,16,17,18],hex:[0,2],hidden:[2,18],hierarchi:[14,18],high:[0,9,11],higher:[0,12,14,18],highest:0,highli:[0,9,18],hint:[4,14,18],histori:[0,2,14,18],hit:[0,18],hm:4,hmm:9,hoist:0,hold:[0,2,8],hong:0,hongkong:0,hood:[2,4],hook:[0,2,18],hot:5,hour:[8,9],hover:0,how:[0,2,4,8,11,12,14,15,18],howev:[0,2,4,6,7,8,9,11,12,14,15,17,18],hsv:0,http:[0,2,9,11,17,18],httpexcept:[0,2,18],hue:0,human:[0,9,18],hunter:0,hypesquad:0,hypesquad_bal:0,hypesquad_braveri:0,hypesquad_brilli:0,i18n:2,i:[0,2,4,5,8,14,18],icon:[0,2,9,18],icon_url:[0,15,18],icon_url_a:18,id:[0,2,3,4,7,11,14,18],ideal:[0,2,14],idempot:2,ident:0,identifi:[0,2,18],idiom:4,idl:[0,2],ie:0,ietf:0,ignor:[0,2,4,8,16,18],ignore_extra:2,ignore_link:0,illustr:[0,11],imag:[0,2,14,18],immedi:18,implement:[0,2,3,4,8,14,18],impli:0,implic:[0,15],implicit:[0,18],implicitli:[0,18],importerror:[16,18],imposs:0,improp:0,improperli:18,inaccess:0,inact:0,includ:[0,2,8,9,14,15,17,18],inclus:0,incom:0,incompat:[14,17],incomplet:[2,18],incorrect:[0,2,14,18],increas:0,incred:0,incur:18,inde:[2,15],indefinit:[0,2],indent:2,independ:0,index:[0,8,10,15],indexerror:0,india:[0,18],indic:[0,2,18],individu:[0,11],inevit:9,infinit:8,info:[2,4,9,13,18],info_error:4,inform:[0,1,2,4,9,11,13,14,15,18],infrastructur:0,ing:4,inher:0,inherit:[0,2,4,8,14],initi:[0,2,11,14],initialis:[0,2],inject:18,inlin:0,inner:[4,18],input:[0,2,4,18],insensit:2,insert:[0,2,8],insert_field_at:[0,18],insid:[0,1,2,4,9,14,18],insight:0,inspect:[2,6],inspir:4,instal:[0,9,16],instanc:[0,2,3,4,9,14,16,18],instant:0,instanti:0,instantli:0,instead:[0,2,4,8,9,12,13,14,18],integ:[0,2,4],integr:18,integration_cr:0,integration_delet:0,integration_id:0,integration_upd:0,integrationaccount:[0,18],integrationappl:0,intellig:4,intend:[0,18],intent:[2,10,14,18],intention:0,inter:3,interact:[2,4,6,8,18],interaction_check:0,interactionmessag:18,interactionrespond:[0,18],interactionresponsetyp:0,interactiontyp:0,interfac:[0,1,2,4,8,14,18],intermix:2,intern:[0,2,4,8,14,15,17,18],internet:[0,2,8,14],interpret:0,intersect:18,interv:[8,18],intric:4,introduc:[4,18],introduct:[10,11,16],introspect:2,invalid:[0,2,8,9,15,18],invalidargu:[0,2],invaliddata:[0,2],invalidendofquotedstringerror:2,invis:[0,18],invit:[2,4,9,14,18],invite_cr:0,invite_delet:0,invite_splash:0,invite_upd:0,invite_url:0,inviteconvert:[2,4],invites_from:[14,18],invitetarget:0,invoc:[0,2,6],invok:[0,2,4,9,14,18],invoke_without_command:2,invoked_par:[2,18],invoked_subcommand:[2,9,18],invoked_with:[2,18],involv:[0,2,14,15,18],io:[0,9,18],ipc:[0,14],irrelev:18,is_anim:0,is_assign:0,is_authent:0,is_being_cancel:8,is_binari:15,is_bot_manag:[0,18],is_clos:[0,2,14],is_connect:0,is_crosspost:0,is_custom_emoji:0,is_default:[0,14,15],is_default_channel:15,is_dirti:0,is_dispatch:0,is_don:0,is_empti:[0,18],is_everyon:[15,18],is_finish:0,is_guild_own:2,is_icon_anim:18,is_in_guild:4,is_integr:[0,18],is_load:[0,18],is_m:[0,2],is_new:[0,4],is_nsfw:[0,2,14,18],is_on_cooldown:2,is_on_mobil:0,is_opu:0,is_own:[2,4,14],is_parti:0,is_paus:0,is_persist:0,is_plai:[0,14],is_premium_subscrib:[0,18],is_priv:[0,14],is_readi:[0,2,14],is_run:[8,18],is_spoil:0,is_strict_subset:0,is_strict_superset:0,is_subset:0,is_superset:0,is_system:[0,18],is_unicode_emoji:0,is_us:[0,18],is_ws_ratelimit:[0,2,18],isinst:[0,4,14],isn:[0,2,8,14,17],iso:0,issu:[2,10,11,15,18],issubclass:0,item:[2,4,18],iter:[2,8,18],its:[0,2,3,4,5,8,9,11,14,15,18],itself:[0,2,3,4,10,14],ja:0,jake:0,japan:0,japanes:18,join:[0,2,4,11,18],join_notif:0,join_voice_channel:14,joindist:4,joindistanceconvert:4,joined_at:[0,4],jpeg:[0,18],jpg:[0,2],js:9,json:[0,9,14],json_url:0,jump:0,jump_url:[0,18],just:[0,2,3,4,9,11,14,16,18],k:4,kbp:0,keep:[0,4,12,14,17,18],kei:[0,2,18],kept:[0,14,18],keyboardinterrupt:[0,2],keyword:[0,2,3,8,9,14,18],kick:[0,14,15,18],kick_memb:[0,18],kind:11,knob:4,know:[0,2,4,5,14,15,18],known:[0,2],kong:0,korea:0,kwarg:[0,2,8],la:[0,14],label:[0,18],lack:[2,17],lambda:[0,4,14,18],languag:0,laps:0,larg:[0,11,18],large_imag:0,large_image_text:0,large_image_url:0,large_text:0,large_threshold:0,largest:2,last:[0,2,15,18],last_messag:0,last_message_id:0,last_pin:0,latenc:[0,2,18],later:[0,2,16],latest:[0,18],launch:[0,8,9,14,18],lavalink:0,layer:18,lazili:[2,18],lead:[0,2,18],leader:0,leak:[1,18],learn:0,least:[0,2,4],leav:[0,1,4,11,14],leave_serv:14,led:0,left:[0,2,4,8,11,18],legaci:18,len:[0,2,4,8,9],length:[0,2,9],less:[0,2,11,18],let:[0,2,8,16],level:[0,2,4,6,13,14,18],levelnam:13,lib:0,libffi:12,libnacl:12,libopu:0,librari:[1,2,4,5,6,8,9,10,11,12,13,14,15,16,17,18],lifecycl:[0,2],light_grai:0,light_grei:0,lighter_grai:0,lighter_grei:0,like:[0,2,4,5,8,9,11,12,14,15,16,18],likewis:[0,18],limit:[0,2,9,10,11,18],line:[0,2,3,4,9,14,16,18],linear:[0,4],linesep:[2,18],linger:[0,2,18],link:[0,18],linter:18,linux:[0,12,18],liquid:4,list:[0,2,3,8,9,11,14,15,17,18],listen:[0,2,3,9,12,14],liter:2,littl:[11,18],live:[0,18],ll:[0,2,16],load:[0,2,5,11,18],load_extens:[2,5],load_opu:0,local:[0,2,4,14],locat:0,lock:[0,4,8,18],log:[1,2,10,11,12,14,16,18],logger:13,logic:[0,2,8,9,14,18],login:[0,1,2,14,15,16,18],loginfailur:[0,2],logout:15,logs_from:[14,15,18],london:0,longer:[0,2,14,15,18],look:[0,2,5,7,8,10,14,16],lookup:[0,2,9,15,18],loop:[0,2,8,9,15,18],lose:0,lost:0,lot:[0,2,4,8,13,14,15,16,18],lotti:0,low:[0,2],lower:[0,4,6,12,14,15,18],lowercas:9,lowest:0,luckili:[4,9,16],lul:9,m:[0,2,12,14,18],m_id:14,machin:[0,18],machineri:[0,14],made:[0,1,2,4,15,16,18],magenta:0,magic:18,mai:[0,2,9,18],main:[0,2,8,15,18],main_task:15,mainli:[0,2,4,18],maintain:[3,11,12],mainten:18,major:[15,17,18],make:[0,1,2,4,5,8,11,14,15,16,18],malici:1,manag:[0,1,2,18],manage_channel:[0,2],manage_emoji:[0,18],manage_emojis_and_stick:0,manage_ev:0,manage_guild:[0,14],manage_messag:[0,2,15],manage_nicknam:0,manage_permiss:[0,18],manage_rol:0,manage_serv:14,manage_thread:0,manage_webhook:[0,18],mandat:11,mandatori:11,mani:[0,2,4,6,9,10,14,15,16,18],manner:[0,2,4,16],manual:[0,2,9,11,18],map:[0,2,4,14],mark:[0,2,3,4,14,15],markdown:[0,2,18],mask:18,mass:[0,4],massiv:[14,15],master:9,match:[0,2,4,9,11,18],mate:[0,2],matter:2,max:[0,2,18],max_ag:0,max_arg:2,max_concurr:[2,18],max_memb:0,max_messag:[0,18],max_pres:0,max_siz:[0,2,18],max_us:0,max_valu:0,max_video_channel_us:[0,18],maxconcurrencyreach:2,maximum:[0,2,8,18],maximum_s:0,mayb:[4,18],me:[0,2,14,18],mean:[0,2,4,5,11,14,15,17,18],meant:[0,2,15,18],measur:[0,2],mechan:[2,5,18],media:0,medium:0,meet:[0,2,14],member2:4,member:[1,2,3,4,9,18],member_cache_flag:0,member_count:[0,18],member_disconnect:0,member_id:0,member_mov:0,member_prun:0,member_role_upd:0,member_upd:0,member_verification_gate_en:0,membercacheflag:[2,11,18],memberconvert:[2,4,18],membernotfound:2,memberrol:4,members_remov:0,membership:[0,18],membership_st:0,memori:[0,9,10,14,18],mention:[0,2,3,4,14,15,18],mention_author:[0,18],mention_everyon:0,mentioned_in:[0,18],menu:0,meow:9,merg:0,merger:14,messag:[2,4,11,12,13,15,16,18],message_bulk_delet:0,message_command:2,message_count:0,message_delet:0,message_id:[0,2,9,18],message_length:0,message_pin:0,message_reaction_remov:18,message_reaction_remove_al:18,message_unpin:0,message_upd:0,messageconvert:[2,4,18],messageflag:18,messagenotfound:2,messagerefer:18,messagetyp:[0,18],messsag:12,met:2,meta:[2,6],metaclass:[2,3,14],metadata:[0,9],method:[0,2,4,6,8,9,14,18],mfa:0,mfa_en:0,mfa_level:[0,18],mfa_sm:0,mid:2,might:[0,4,10,11,12,18],mighti:0,migrat:[10,18],millisecond:[0,18],mimic:0,min_valu:0,mind:[0,4,14,17],miniatur:0,minifi:2,minim:2,minimalhelpcommand:[14,18],minimalist:14,minimis:4,minimum:0,minor:18,minut:[0,2,8,11],mirror:[0,2,18],misc:0,miscellan:[0,2],mismatch:[0,18],miss:[0,2,18],missing_permiss:2,missing_rol:2,missinganyrol:2,missingflagargu:2,missingpermiss:2,missingrequiredargu:2,missingrequiredflag:2,missingrol:2,mister:2,misus:14,mitig:11,mix:[0,4],mixin:2,mobil:0,mobile_statu:0,mode:[0,13,18],model:4,moder:[0,2],modern:10,modif:2,modifi:[0,17],modul:[0,2,4,9,13,14,18],modulenotfounderror:16,moduletyp:2,moment:0,monei:3,monet:0,monetization_en:0,month:18,more:[0,1,2,3,4,5,9,11,12,13,14,15,18],more_emoji:0,more_stick:0,most:[0,2,4,8,14,18],mostli:11,move:[0,14,18],move_channel:14,move_memb:[0,14,18],move_rol:14,move_to:[0,18],movement:0,mp3:14,msg:[0,2,4,14],much:[0,2,4,14,18],multi:[0,4,18],multipl:[0,2,4,9,14,18],multiprocess:9,music:9,must:[0,1,2,3,4,5,8,9,11,14,15],mute:[0,18],mute_memb:0,mutual:[0,18],mutual_guild:[0,18],my:[2,3,12,14],my_aft:9,my_fil:[9,14],my_last_messag:14,my_messag:2,my_url:9,my_whitelist:2,mybot:14,myclient:[0,12],mycog:[2,3,8,14],mycontext:14,myconvert:14,myhelpcommand:14,n:[2,4,9,18],naiv:[0,2],name:[0,1,2,3,4,5,9,13,14,15,16,18],namedtupl:[0,14,18],namespac:0,nan:0,nativ:[0,2],natur:[0,2,14,17],navig:[1,11,18],nearli:0,necessari:[0,2,11,14],need:[0,1,2,3,4,5,8,9,14,15,16,18],neg:[0,2],nest:[0,4,9],never:[0,1,2,5,9],new_filenam:9,new_memb:0,newer:[15,18],newest:[0,2],newli:0,newlin:2,news_thread:0,next:[0,2,4,8,16,18],next_iter:[8,18],nice:4,nicer:0,nick:0,nicknam:[0,2,4,11,18],nitro:[0,18],nitro_boost:0,no_categori:2,no_pm:14,no_rol:0,nobodi:0,noentrypointerror:2,nois:18,noisi:4,nomoreitem:0,non:[0,2,4,8,9,18],nonc:[0,18],none:[0,2,3,4,8,9,14,18],nonsens:2,noprivatemessag:[2,4],nor:0,normal:[0,2,4,9,14,18],note:[0,1,2,3,4,11,14,15,18],notfound:[0,2,18],noth:[0,2,4,11],notic:0,notif:[0,18],notifi:0,notificationlevel:0,notown:2,now:[0,1,2,3,5,11,12,15,16,18],nowher:9,nsfw:[0,2,4,14,18],nsfw_level:0,nsfwchannelrequir:2,nsfwlevel:0,ntp:0,number:[0,2,4,8,11,18],o:18,oauth2:[0,1],oauth_url:[0,1,18],obj:[0,18],object:[2,4,9,10,14,18],objectconvert:[2,4],obtain:0,obvious:8,occur:[0,2,5,8,9,18],octob:18,off:[0,2,4,8,9,14,18],offer:[0,6,9,11],offici:[0,14,18],offlin:[0,14,18],offset:0,often:[0,4,6,18],og_blurpl:0,okai:18,old:[0,1,2,11,14,15,17,18],older:[0,15],oldest:[0,2],oldest_first:[0,2],omit:[0,4],on_:[0,2],on_bulk_message_delet:0,on_bulker_cancel:8,on_channel_:14,on_channel_cr:14,on_channel_delet:14,on_channel_upd:[14,15],on_command:[2,14],on_command_complet:[2,14],on_command_error:[2,4,14,18],on_connect:[0,2],on_disconnect:0,on_error:[0,2],on_group_join:0,on_group_remov:0,on_guild_avail:[0,14],on_guild_channel_:14,on_guild_channel_cr:[0,14],on_guild_channel_delet:[0,14],on_guild_channel_pins_upd:0,on_guild_channel_upd:[0,14],on_guild_emojis_upd:[0,14],on_guild_integrations_upd:0,on_guild_join:[0,14],on_guild_remov:[0,14],on_guild_role_cr:[0,14],on_guild_role_delet:[0,14],on_guild_role_upd:[0,14],on_guild_stickers_upd:0,on_guild_unavail:[0,14],on_guild_upd:[0,14],on_help_command_error:[2,14,18],on_integration_cr:0,on_integration_upd:0,on_interact:[0,2],on_invite_cr:[0,18],on_invite_delet:[0,18],on_member_ban:[0,14,18],on_member_join:[0,3,11],on_member_remov:[0,11],on_member_unban:[0,18],on_member_upd:[0,15,18],on_messag:[0,2,11,12,14,15,16],on_message_delet:0,on_message_edit:0,on_presence_upd:[0,18],on_private_channel_:14,on_private_channel_cr:14,on_private_channel_delet:14,on_private_channel_pins_upd:0,on_private_channel_upd:[0,14],on_raw_bulk_message_delet:0,on_raw_integration_delet:0,on_raw_message_delet:0,on_raw_message_edit:0,on_raw_reaction_add:[0,11],on_raw_reaction_clear:0,on_raw_reaction_clear_emoji:[0,18],on_raw_reaction_remov:0,on_raw_typ:0,on_reaction_add:[0,11,18],on_reaction_clear:[0,18],on_reaction_clear_emoji:[0,18],on_reaction_remov:[0,18],on_readi:[0,2,9,12,16,18],on_resum:[0,18],on_server_avail:14,on_server_emojis_upd:[14,18],on_server_join:14,on_server_remov:14,on_server_role_cr:14,on_server_role_delet:14,on_server_role_upd:[14,15],on_server_unavail:14,on_server_upd:14,on_shard_connect:[0,18],on_shard_disconnect:[0,18],on_shard_readi:[0,18],on_shard_resum:[0,18],on_socket_clos:15,on_socket_event_typ:[0,18],on_socket_open:15,on_socket_raw_rec:[0,18],on_socket_raw_send:[0,15,18],on_socket_rec:15,on_socket_respons:18,on_stage_instance_cr:0,on_stage_instance_delet:0,on_stage_instance_upd:0,on_statu:15,on_thread_delet:0,on_thread_join:[0,18],on_thread_member_join:0,on_thread_member_remov:[0,18],on_thread_remov:0,on_thread_upd:0,on_timeout:0,on_typ:[0,18],on_user_upd:[0,18],on_voice_server_upd:0,on_voice_state_upd:[0,11,14,15,18],on_webhooks_upd:0,onc:[0,2,3,5,8,9,11,14,18],one:[0,1,2,3,4,8,9,11,14,15,18],ones:[0,2,11,12,14],onli:[0,2,8,9,11,14,15,17,18],onlin:[0,2,11,15],only_for_m:2,only_for_own:2,only_m:2,only_ment:0,onto:[0,2],opcod:18,open:[0,2,4,9,18],oper:[0,2,8,9,14,15],opportun:14,opportunist:0,opposit:14,opt:[0,11,18],optim:18,optimis:[0,9,10,14],option:[0,6,7,8,9,13,14,18],option_descript:2,opu:18,opuserror:0,opusnotload:0,orang:0,order:[0,1,2,4,7,9,11,14,15,18],organ:3,orient:10,origin:[0,2,11,18],original_messag:[0,18],os:0,other:[0,1,2,4,9,11,13,14,15,16,18],otherwis:[0,2,17,18],our:[0,4,5,8,10,11,14,16],ourselv:[0,16],out:[0,2,4,5,8,9,10,13,14,15,18],outag:[0,2],outlin:[0,2],output:[0,2,13,18],outsid:[0,2,14],over:[0,2,11,14,16,18],overal:0,overrid:[0,2,3,4,9,14],overridden:[0,2,3,8,14],overriden:0,overwrit:[0,2,14,18],overwrite_cr:0,overwrite_delet:0,overwrite_upd:0,overwrites_for:0,overwritten:[2,18],own:[0,2,4,8,18],owner:[0,1,2,4,14,18],owner_id:[0,2,14,18],owner_or_permiss:2,ownership:0,p:[2,18],pack:[0,2],pack_id:0,packag:[2,12,18],packet:0,pad:2,page:[0,1,2,4,10,11,14,15,16,18],pagin:[0,18],pair:[0,2,4],param:2,paramet:[0,2,3,5,6,7,8,9,11,14,15,17,18],parent:[0,2,14,18],parent_id:0,parenthes:[14,18],pars:[0,2,4,18],parser:[2,4],part:[0,2,7,9,11,14,17],parti:[0,8,9],partial:[0,2],partialemoji:[2,4,18],partialemojiconversionfailur:2,partialemojiconvert:[2,4],partialinvitechannel:2,partialinviteguild:[2,18],partialmessag:[2,4,18],partialmessageconvert:[2,4,18],particip:[0,2],particular:[0,14],partli:18,partner:[0,18],party_id:0,pass:[0,2,3,4,7,8,11,14,15,18],pass_context:14,password:[1,14],past:[0,1],patch:14,path:[0,2,5,9,18],pathlik:0,patienc:18,pattern:8,paus:[0,14],payload:[0,2,15,18],pcm:0,pcmvolumetransform:14,pend:[0,18],penultim:0,peopl:[0,2,4],pep:[0,2,4],per:[0,2,11,14,18],percentag:0,perform:[0,2,15],period:[0,2],perm:[0,2],permiss:[1,2,4,9,12,14,15,18],permissionoverwrit:18,permissions_for:[0,2,18],permissions_in:18,permissions_sync:[0,18],permit:0,persist:[0,2,18],persistent_view:[0,2],person:[1,2,4],perspect:0,phone:0,piec:[0,9],pin:[0,2,14,18],pin_messag:14,ping:[0,1],pins_add:[0,18],pins_from:14,pip:12,pipe:0,pixel:0,pjsalt:0,place:[0,2,9,10,13,15,18],placehold:0,plai:[0,2,14,16,18],plain:5,plan:18,platform:[0,18],player:[0,14,18],pleas:[0,1,2,4,18],plu:2,plug:14,plugin:5,plural:4,png:[0,2,9,14],po:18,point:[0,2,3,4,5,9],pointless:0,pointlessli:0,polici:[0,11,18],pollut:12,pong:0,pool:[0,2,8],popen:0,popul:2,populate_own:2,pornographi:0,port:18,portal:[0,11],portion:[0,2,16],posit:[0,2,14,18],posix:2,posixlikeflag:4,possibl:[0,1,4,9,11,13,15,18],post:[0,2,14],postgresconnectionerror:8,potenti:[0,4,18],power:[2,4,6,14,15,18],pre:[0,2,18],precis:[0,18],pred:14,predefin:2,predic:[0,2,4,18],prefer:0,prefer_auth:0,preferred_local:0,prefix:[0,4,6,9,11,15,18],prefixes_for:2,prematur:2,premium:[0,2,18],premium_guild_subscript:0,premium_guild_tier_1:0,premium_guild_tier_2:0,premium_guild_tier_3:0,premium_promo_dismiss:0,premium_sinc:[0,18],premium_subscrib:[0,18],premium_subscriber_rol:[0,18],premium_subscript:0,premium_subscription_count:[0,18],premium_ti:[0,18],prepar:[0,2,18],prepare_help_command:[2,14],presenc:[0,2,9,14,18],present:[0,14],press:0,pretend:[5,14],pretti:[1,4,15],prevent:[0,2,10,18],preview_en:0,previou:[0,2,4,14,18],previous:[0,2,15,18],price:4,primari:0,primary_sku_id:0,primer:[6,10,18],principl:17,print:[0,2,3,5,8,9,12,14,16],printer:8,prior:[0,2,14,15],priority_speak:0,privaci:0,privacy_level:0,privacy_policy_url:0,privat:[0,2,14,17,18],private_channel:[0,2,15],private_thread:0,privatechannel:[2,14],privatemessageonli:2,privileg:[0,18],privilegedintentsrequir:0,probabl:[0,2],probe:0,problem:[0,9,14],procedur:2,process:[0,1,2,4,5,9,14,18],process_command:[2,9],process_slash_command:2,produc:0,profil:[0,18],program:[0,2,9,13],project:[10,12],promis:0,promot:0,prone:0,proof:14,propag:[0,2,4,18],proper:[0,2,4,18],properli:[0,2,11,16,18],properti:[0,2,3,4,8,18],protocol:[0,2,3],provid:[0,2,4,9,11,12,14,15,18],proxi:0,proxy_auth:0,proxy_url:0,prune:[0,18],prune_memb:[0,14,18],pseudo:14,public_flag:[0,18],public_thread:0,public_updates_channel:[0,18],publicli:[0,17,18],publicuserflag:18,publish:0,pull:9,pure:[0,2],purg:[0,14],purge_from:14,purpl:0,purpos:[0,2,9,12,14],push:9,put:[9,14],py:[0,2,5,6,7,8,9,12,13,15,16,18],pypi:12,pyright:18,python3:[9,12,16],python:[0,2,3,4,5,9,10,12,13,15,16,17,18],qualifi:[2,5],qualified_nam:[2,3,14],qualiti:0,queri:[0,2,3,11,18],query_memb:[0,11,18],question:[10,15],queue:2,quick:[6,9,11,12,14],quickli:[5,18],quickstart:10,quirk:0,quit:15,quot:[2,4,14,18],r:[0,4,9,14],race:[2,18],radic:11,raffl:0,rais:[0,2,4,8,14,16,18],ram:18,randint:3,random:[0,3,4,9,18],randomli:18,rang:[0,4],rare:[0,2,5],rate:[0,2,10,11,18],ratelimit:0,rather:[0,2,4,18],raw:[0,2,18],raw_channel_ment:[0,15],raw_ment:[0,15],raw_role_ment:0,raw_statu:0,rawmessageupdateev:18,rawreactionactionev:[11,18],rb:[0,9],re:[0,1,2,4,8,10,11,14,18],reach:[0,2,4,14,18],react:[0,2,18],reaction:[2,11,14,18],reaction_add:[0,2,14],reaction_remov:0,read:[0,2,5,8,9,14,18],read_messag:[0,18],read_message_histori:[0,2],readabl:2,reader:18,readi:[0,2,8,10,18],realiti:0,realli:0,reason:[0,2,4,6,14,15,18],reassign:18,receiv:[0,2,4,12,14,15,16,18],recent:[0,2],recipi:0,recipient_add:0,recipient_remov:0,recognis:[0,18],recommend:[0,2,4,9,13,14,18],reconnect:[0,2,8,14,18],record_usag:2,recoveri:0,recurs:[0,2],red:0,redesign:[14,18],redirect:[0,18],redirect_uri:0,reduc:[11,15,18],refer:[3,4,5,6,10,14,15,18],referenc:[0,4],refresh:[0,2,9],regard:[2,9,11,18],regardless:[0,2,14],regener:1,regex:[2,9,18],region:[0,2,14,15,18],regist:[0,2,3,4,8,14,15,16,18],registr:[0,2,6,14],regress:18,regular:[0,2,4,14,18],regularli:2,reinvok:[2,14,18],reiter:15,rejoin:0,rel:[0,2,8,18],relat:[2,10,11,14,15,18],relationship:0,relax:4,releas:18,releaselevel:0,relev:14,reli:[0,2,18],reliabl:18,reload:[2,6],reload_extens:[2,5],remain:[0,18],rememb:[9,12],remind:0,reminisc:4,remot:9,remov:[0,2,3,4,5,8,11,15,17,18],remove_author:[0,18],remove_check:[2,18],remove_cog:[2,3],remove_command:[2,18],remove_exception_typ:8,remove_field:0,remove_foot:0,remove_item:0,remove_listen:2,remove_markdown:[0,2,18],remove_ment:2,remove_react:[0,14,18],remove_rol:[0,14],remove_us:0,renam:[14,17,18],render:[0,2,18],reorder:4,repeat:0,repeatedli:[4,18],repetit:[4,6],replac:[0,2,14,18],replace_rol:14,repli:[0,2,14,18],replied_us:[0,18],report:[0,2,10],repositori:[9,10],repres:[0,2,8,14,18],represent:[0,18],request:[0,2,4,11,14,18],request_to_speak:[0,18],requested_to_speak_at:0,requesting_to_speak:0,requestswebhookadapt:18,requir:[0,1,2,4,11,12,14,18],require_colon:0,require_var_posit:[2,18],resend:18,reset:[0,2,18],reset_cooldown:2,resid:3,resili:14,resolut:[0,18],resolv:[0,2,18],resolve_invit:0,resolve_templ:0,resourc:[0,10,14],resp:[9,14],respect:[0,2,14],respond:[0,9,12,16,18],respons:[0,9,18],rest:[2,4,9],rest_is_raw:[2,4],restart:[0,2,5,8,18],restrict:[11,18],result:[0,1,2,4,9,11,14,18],resum:[0,2,4,14,18],retri:[2,8,14,18],retriev:[0,2,3,14,18],retry_aft:[2,18],return_messag:2,reus:0,revamp:14,revert:[14,18],revok:[0,1,2,18],revolv:12,rework:18,rewritten:18,rgb:[0,2,14,18],rich:[0,4,10,14,18],right:[0,4,9,14],rng:0,robust:4,role:[2,4,11,14,15,18],role_a:18,role_b:18,role_cr:0,role_delet:0,role_hierarchi:[14,18],role_id:0,role_ment:0,role_upd:0,roleconvert:[2,4],rolenotfound:2,roll:2,root:[2,14],root_par:[2,14],roughli:[0,2,11],routin:2,row:0,rpc:0,rpc_origin:0,rtc_region:[0,18],rule:[0,2,4,18],rules_channel:[0,18],run:[0,1,2,4,5,8,12,14,16,18],run_convert:2,run_coroutine_threadsaf:9,run_until_complet:[0,2,15],runtim:[2,9,14,18],runtime_check:0,runtimeerror:[2,8,14],russia:0,s:[0,1,2,3,4,5,8,10,11,12,13,14,15,16,17,18],safe:[0,9],safeti:[0,18],sai:[0,2,3,14],said:[0,2,9,14,15],same:[0,2,3,4,9,16,18],san:2,sane:10,satur:0,save:[0,4,14,18],scenario:[0,2],schedul:8,scheme:18,scope:[0,1,9,18],screen:[0,11,18],script:[12,16,18],scroll:11,scrub:[2,14],search:[0,2,4,10],second:[0,2,3,4,8,9,11,18],secondari:0,secret:[0,1,4,14],secret_cog_data:14,secretguilddata:4,secretguilddata_error:4,section:[0,2,11,16],see:[0,2,3,4,7,8,9,11,14,15,18],seed:[0,18],seek:0,seek_begin:0,seem:18,seemingli:18,seen:[0,4,15],selectopt:18,self:[0,2,3,4,8,12,14],self_deaf:0,self_mut:0,self_rol:[0,18],self_stream:[0,18],self_video:0,sell:[0,4],semant:[4,17],send:[0,2,3,4,5,11,16,18],send_audio_packet:0,send_bot_help:[2,14],send_cog_help:[2,14],send_command_help:[2,14],send_error_messag:[2,14],send_fil:[14,18],send_group_help:[2,14],send_help:[2,14,18],send_messag:[0,14,15,18],send_messages_in_thread:0,send_pag:2,send_tts_messag:0,send_typ:14,sens:15,sent:[0,2,4,18],sentinel:0,separ:[0,2,9,12,15,18],seq:0,sequenc:[0,2,8,15,18],seri:18,serialis:18,serv:9,server:[0,1,2,9,10,15,18],server_permiss:18,server_voice_st:[14,18],serverregion:[15,18],servic:[0,1],sess:14,session:[0,2,9,14,18],session_id:0,set:[0,2,3,4,8,10,11,12,14,16,18],set_author:0,set_channel_permiss:15,set_field_at:0,set_foot:0,set_imag:[0,9],set_permiss:[0,14],set_thumbnail:0,setformatt:13,setlevel:13,settabl:0,setup:[0,2,5,9,13],seven:0,seven_day_thread_arch:0,sever:[2,14],shallow:0,shard:[0,2,18],shard_count:[0,14],shard_id:[0,2,14],shardinfo:18,share:[0,1,2,3],shift:[0,2],shim:18,shop:4,short_doc:2,shortcut:[0,2,14,18],shorten:2,shorten_text:2,shorter:4,shorthand:[0,2,9],should:[0,1,2,3,4,7,8,9,11,12,14,15,18],shouldn:18,show:[0,11,14,18],show_hidden:2,showcas:12,shown:[0,2,18],side:[4,9,11,17],sidestep:18,sign:9,signal:[0,2,4,18],signatur:[2,4,9,14,15,18],signific:14,significantli:[11,14,18],silent:[0,2,4],similar:[0,2,4,5,8,9,14,18],similarli:[0,2,4,14],simpl:[4,5,7,8,9,13,14,16,18],simplifi:18,simul:[0,2,4],sinc:[0,2,3,4,9,11,14,15,16,18],singapor:0,singl:[0,2,3,4,5,8,14,18],singular:[4,14],situat:0,size:[0,2,14,18],skip:[0,4],sku:0,sku_id:0,slap:4,slapper:4,slash:[0,2,6],slash_command:[2,7,9],slash_command_guild:[2,7,9],slate:18,sleep:[0,2,8,9,18],sleep_until:[0,18],slightli:[0,4,11],slim:[0,9],slot:[0,18],slow:[0,2],slow_count:8,slowdown:11,slowmod:[0,4],slowmode_delai:[0,18],slug:0,sm:0,small:[0,7,18],small_imag:0,small_image_text:0,small_image_url:0,small_text:0,snippet:[13,14],snowflak:2,snowflake_tim:0,so:[0,1,2,3,4,9,14,15,16,18],socket:0,sold:0,sole:[0,2,4],solut:11,some:[0,2,3,4,8,9,11,14,15,18],some_channel:9,some_filenam:0,some_fp:14,somecogmixin:2,somehow:[0,2,18],somemixin:2,someon:[0,1,2,18],someth:[0,2,4,8,10,12,14,15,16,17,18],sometim:[0,4,5,12,18],somewhat:18,somewher:11,song:[0,9],soon:[0,1],sort:[0,2,14],sort_command:2,sort_valu:0,sourc:[0,9,12,14,18],source_channel:0,source_guild:0,source_message_delet:0,south:0,south_korea:[0,18],southafrica:0,space:[2,4,14],spam:[4,18],spammi:11,spawn:18,speak:[0,18],speaker:0,special:[0,2,6,9,14],specif:[0,2,4,7,10,11,14,16,18],specifi:[0,2,4,8,9,11,13,14,15,18],spectat:0,speech:0,speed:10,spell:2,spent:18,spike:18,splash:[0,18],split:[0,4],spoiler:[0,18],spotifi:18,stack:18,staff:0,stage:[0,2,18],stage_channel:0,stage_inst:0,stage_instance_cr:0,stage_instance_delet:0,stage_instance_id:0,stage_instance_upd:0,stage_moder:0,stage_voic:0,stagechannel:[2,4,18],stagechannelconvert:[2,4],stageinst:2,stageprivacylevel:0,stale:18,stand:[0,18],standard:[0,2,12,18],standardstick:2,start:[0,2,8,13,14,16,17,18],start_private_messag:14,start_thread:18,starter:18,startswith:[0,2,16],startup:11,state:[0,2,3,4,8,15,18],statement:0,static_format:[0,18],statu:[0,2,11,14,15,18],status:[11,18],status_cod:9,stderr:[0,2,4,8,18],stdin:[0,18],stdout:13,step:[0,4,5,10,11,16],stereo:0,sticker:[2,18],sticker_cr:0,sticker_delet:0,sticker_id:[0,2],sticker_limit:0,sticker_upd:0,stickerformattyp:0,stickerpack:2,stickertyp:0,still:[0,2,4,11,15,18],stop:[0,2,8,14,18],store:[0,14,18],storechannel:[2,4,18],storechannelconvert:[2,4,18],str:[0,2,4,9,18],straightforward:[1,15],strang:[0,18],strategi:2,stream:[9,18],streamintegr:0,streamplay:18,strict:[0,11],string:[0,2,4,5,9,14,15,18],stringli:0,strip:[2,4,18],strip_after_prefix:[2,18],strongli:13,structur:[15,18],stuff:[0,4,9],style:[0,9,16,18],sub:[0,2,4],subclass:[0,2,3,11,18],subcommand:[2,3,14],subcommand_not_found:[2,14],subcommand_pass:[2,18],subject:[0,18],submit:9,subprocess:0,subprocess_kwarg:0,subscrib:[0,11],subscript:[0,18],subsequ:[0,3],subset:0,substitut:0,subtl:0,succe:[2,8],succeed:2,success:[0,18],successfulli:[0,8],suffix:[2,18],suggest:9,suit:[0,18],suitabl:0,summari:0,superset:0,suppli:[0,2],support:[1,2,4,7,8,11,12,14,15,18],suppress:[0,18],suppress_emb:0,sure:[1,2,9,11,16],surpass:0,surpris:[4,18],swallow:0,sy:[0,2,8],sydnei:0,sync:[0,18],sync_permiss:0,synced_at:0,synchron:[0,2,14],syncwebhook:18,syntax:[0,2,4,10],syntaxerror:18,system:[0,2,4,7,11,12,14,16,18],system_channel:[0,3,18],system_channel_flag:[0,18],system_cont:[0,18],systemchannelflag:18,t:[0,2,4,8,11,14,16,17,18],tab:[1,11],tabl:[0,4],tag:[0,18],take:[0,2,3,4,5,8,9,14,15,18],taken:[0,2,18],talk:[0,11],target:[0,4],target_appl:0,target_application_id:0,target_typ:0,target_us:0,targettyp:0,task:[0,2,6,10,14,18],teal:0,team:[2,18],team_us:[0,18],teammembershipst:0,teardown:[2,5],teaser_graph:9,technic:[0,3,4,9,18],techniqu:[4,11],tediou:4,tell:[2,3,4,8,15,18],templat:[2,18],temporari:[0,18],ten:0,term:[0,2,4],termin:[0,2,18],terms_of_service_url:0,test:[2,4,7,14,15],test_error:4,tester_rol:0,text:[0,2,14,15,18],text_channel:[0,9,14],textchannel:[2,4,14,18],textchannelconvert:[2,4,14],than:[0,2,4,9,11,12,14,15,18],thank:18,thei:[0,2,3,4,9,14,15,18],them:[0,2,3,4,5,9,11,13,14,15,18],theme:[0,18],themselv:0,thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],thing:[0,1,4,8,9,11,14,15,16,17,18],third:2,those:[0,2,4,8,14,18],though:[0,18],thousand:18,thread:[2,4,9,15,18],thread_creat:0,thread_delet:0,thread_id:0,thread_starter_messag:0,thread_upd:0,threadconvert:[2,4],threadmemb:18,threadnotfound:2,three:[0,2],three_day_thread_arch:0,through:[0,2,3,4,8,9,11,14,15,16,18],throughout:4,thrown:[0,2],thu:[0,2,14,17],thumb:[0,2,9],thumbnail:[0,9,18],thumbsup:9,ti:0,tick:[0,1],ticket:0,ticketed_events_en:0,tier:0,tighten:18,time:[0,1,2,4,5,6,8,9,10,11,14,17,18],timedelta:0,timeout:[0,2,14,18],timeouterror:[0,2,14],timestamp:[0,14,18],timezon:[0,8],tip:0,titl:[0,14],to_dict:0,to_fil:[0,18],to_refer:[0,18],to_rgb:[0,14],to_slap:4,to_tupl:14,to_upp:4,togeth:[2,4,9,14],toggl:[2,4,18],token:[0,1,2,12,14,15,16,18],too:[0,2,9,14,18],took:[0,14],tool:[2,3,18],toomanyargu:2,toomanyflag:2,top:[0,7],top_rol:[0,18],topic:[0,4],total:[0,2,11],toward:14,trace:18,traceback:0,track:[0,11],track_id:0,track_url:0,tracker:10,tradit:0,traffic:0,trait:0,transfer:0,transform:[0,2,9],transmit:0,transpar:[0,2,14],trap:18,treat:4,tri:[0,2,4,18],tribool:2,trigger:[0,2,16,18],trigger_typ:[0,2,14],trim:0,troubl:10,troubleshoot:7,truli:11,trust:[0,18],try_memb:0,try_own:2,try_us:[0,2],tt:[0,15],tuesdai:0,tune:4,tupl:[0,2,3,14,18],turn:[0,4,14],tutori:[12,13],twice:18,twitch:0,twitch_nam:0,two:[0,2,4,9,14,18],type:[0,2,8,9,11,15,18],typeerror:[0,2,8,18],typic:[0,2,3],u0001f44d:9,u:[2,12,14],ui:[2,18],ultim:[3,5],un:[0,2],unabl:0,unarch:0,unarchiv:[0,18],unauthent:0,unavail:[0,18],unban:[0,14,18],unbind:2,unbound:14,unboundlocalerror:18,uncaught:0,unchang:2,uncheck:1,uncondition:18,under:[0,1,2,4,11,18],undergo:14,underli:[0,2,14],underlin:2,underscor:[9,17],understand:2,undesir:8,undetermin:4,undo:[0,2],undocu:18,undon:[0,8],unexpect:[0,2,18],unexpectedquoteerror:2,unfortun:11,unhandl:8,unicod:[0,9,18],uninitialis:18,unintend:[2,4],union:[0,2,8],uniqu:[0,2],unix:[0,2],unknown:[0,2,18],unless:[0,1,2,14],unlik:[0,2,4,8],unlimit:[0,2],unload:[2,5,14,18],unload_extens:2,unlock:0,unnecessari:[0,18],unpack:[2,18],unpin:[0,14,18],unpin_messag:14,unread:0,unrestrict:0,unset:2,unspecifi:[0,2],unsuppress:0,unsur:1,unsync:0,until:[0,2,4,8,9,15,18],unus:18,up:[0,2,4,6,10,12,14,16,18],updat:[0,2,8,9,11,14,17,18],update_rate_limit:2,updated_at:0,upgrad:[17,18],upload:[0,2,7,14,18],upon:[0,2,18],upper:4,urgent:0,uri:0,url:[0,1,2,9,14,18],url_a:18,us:[0,1,2,4,5,6,7,8,10,11,12,13,14,15,16,18],us_centr:0,us_east:0,us_south:0,us_west:[0,2,15],usabl:[0,2,18],usag:[0,2,3,4,14,18],use_cach:[0,18],use_external_emoji:[0,18],use_external_stick:0,use_nicknam:[2,4],use_private_thread:0,use_slash_command:[0,9,18],use_thread:0,use_voice_activ:0,useless:15,user:[1,2,4,9,11,12,15,16,18],user_id:[0,2,18],user_limit:0,userbot:18,userconvert:[2,4,14,18],userflag:0,userinputerror:[2,18],usernam:[0,4,11,18],usernotfound:2,usual:[0,2,4,5,12],utc:[0,2,8],utcnow:0,utf:[2,13],util:[1,2,9,14,15,18],utilis:12,v0:14,v1:[4,10],v2:[4,14],v5:18,v6:18,v:[0,4],valid:[0,2,4,9,14,15,18],valu:[0,2,4,8,15,17,18],valueerror:[0,2,8,18],vaniti:[0,14],vanity_cod:0,vanity_invit:[0,14],vanity_url:0,vanity_url_cod:0,variabl:[0,14,15],variad:[2,4],variou:[3,11,18],vc:14,ve:[0,1,14,16],venv:12,verbos:13,veri:[0,2,4,7,8],verif:[0,11,18],verifi:[0,2,11,18],verification_level:[0,18],verification_pending_guild_limit:0,verificationlevel:[0,18],verified_bot:0,verified_bot_develop:[0,18],verify_check:[2,18],verify_kei:0,version:[2,4,8,9,10,11,12,13,15,18],version_info:[0,18],versionad:0,very_high:18,via:[0,2,3,4,7,8,9,11,13,14,15,18],video:0,video_quality_mod:0,videoqualitymod:0,view:[2,14,18],view_audit_log:[0,14],view_channel:[0,18],view_guild_insight:[0,18],viewabl:0,vip:[0,18],vip_amsterdam:0,vip_region:0,vip_us_east:0,vip_us_west:0,visibl:[0,2,14,18],visit:3,voic:[2,9,12,18],voice_channel:[0,14],voice_cli:[0,2,14,18],voice_client_in:18,voice_memb:14,voice_server_upd:0,voice_st:[0,18],voice_state_upd:0,voicechannel:[2,4,14,18],voicechannelconvert:[2,4,14],voicecli:[2,14,18],voiceprotocol:[2,18],voiceregion:[0,2,18],voicest:[14,18],volum:[0,14],vs:0,w:[9,13],wa:[0,2,4,8,9,14,15,16,18],wai:[0,2,4,8,9,11,14,16,18],wait:[0,2,8,11,18],wait_for:[0,2,14],wait_for_messag:[14,18],wait_for_react:[14,18],wait_until_login:[14,18],wait_until_readi:[0,2,8,14,18],walk:[2,16],walk_command:[2,3,18],wall:4,want:[0,1,2,3,4,5,7,8,9,11,12,14,15,18],warn:[0,4,9,13,18],watch:[0,9],we:[0,1,2,3,4,5,8,9,11,14,15,16,18],web:0,web_statu:0,webhook:[2,14,18],webhook_cr:0,webhook_delet:0,webhook_id:[0,2,14],webhook_upd:0,webhookmessag:[2,18],webhooktyp:[0,18],webm:0,webp:0,websit:[1,11],websocket:[0,2,14,18],week:0,welcom:[0,3],welcome_screen_en:0,well:[0,2,3,4,9,11,13,14,18],went:15,were:[0,2,8,11,14,15,18],west:[0,2,15],what:[0,2,4,5,8,13,14,15,17,18],whatev:[0,18],whatever_you_want_to_call_it:9,when:[0,1,2,3,4,5,8,9,10,11,12,14,15,16,17,18],when_ment:2,when_mentioned_or:2,whenev:[0,2,14],where:[0,2,3,4,14,15,18],whether:[0,2,8,11,14,18],which:[0,2,3,4,5,7,8,9,11,14,15,16,17,18],whisper:14,white:4,whitelist:2,whitespac:[2,18],who:[0,2,11,18],whose:0,why:2,wide:[0,1,2,12],widget:[2,18],widget_channel:0,widget_en:0,width:[0,2,18],window:[0,12,16,18],windowslikeflag:4,winner:0,wise:[0,2,14,18],wish:[0,2],with_:18,with_count:[0,2],with_expir:[0,2],with_format:0,with_siz:0,with_static_format:0,withdraw_monei:3,within:[0,2,4,9,18],without:[0,2,5,9,11,14,17,18],won:0,word:4,work:[0,1,2,4,8,10,12,14,15,18],world:[0,4],worri:8,worth:[0,1,4],would:[0,2,3,4,9,11,13,14,18],wrap:[0,4,9,14,18],wrapper:10,write:[4,9,13,18],written:[0,4,11],wrong:[0,2],ws:[0,18],www:18,x:[0,2,4,14,18],x__y:0,xsalsa20_poly1305_lit:18,y:[0,4],ye:[1,4],year:0,yellow:0,yet:[0,18],yield:[0,2,9,15,18],you:[0,1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,18],your:[0,2,3,4,7,9,10,11,12,13,14,15,16,18],yourself:[0,2,4,11,14],youtub:[0,18],zero:0,zerodivisionerror:18,zh:0,zip:9},titles:["API Reference","Creating a Bot Account","API Reference","Cogs","Commands","Extensions","discord.ext.commands \u2013 Bot commands framework","Slash Commands","discord.ext.tasks \u2013 asyncio.Task helpers","Frequently Asked Questions","Welcome to discord.py","A Primer to Gateway Intents","Introduction","Setting Up Logging","Migrating to v1.0","Migrating to v0.10.0","Quickstart","Version Guarantees","Changelog"],titleterms:{"0":[14,15,18],"1":18,"10":[15,18],"11":18,"12":18,"13":18,"14":18,"15":18,"16":18,"2":18,"3":18,"4":18,"5":18,"6":18,"7":18,"abstract":0,"break":[17,18],"class":0,"do":[9,11],"enum":2,"function":[0,9,15],"int":14,"long":11,"new":18,A:[11,16],For:14,Is:9,account:1,actionrow:0,activ:0,add:9,advanc:4,after:[9,14],allowedment:0,an:9,api:[0,2,8,18],appinfo:0,applic:0,applicationflag:0,ar:[11,14],aren:9,argument:[4,9,15],ask:9,asset:0,async:0,asynchron:14,asyncio:8,attach:0,audiosourc:0,audit:[0,9],auditlogchang:0,auditlogdiff:0,auditlogentri:0,autoshardedbot:2,autoshardedcli:0,await:9,background:9,base:0,baseact:0,basic:[4,12],befor:14,being:9,block:9,bool:4,bot:[0,1,2,6,9,16],bug:18,button:0,cach:11,can:9,categorychannel:0,chang:[14,15,17,18],changelog:18,channel:[9,14],check:[2,4,14],clean:5,client:[0,15],clientus:0,cog:[2,3,5,14],cogmeta:2,colour:0,command:[2,4,6,7,9,14,18],compon:0,concept:12,connect:[0,14],context:[2,4,14],convert:[2,4,14],cooldown:2,coroutin:[9,15],creat:[1,9],customact:0,d:11,data:0,decor:2,defaulthelpcommand:2,deletedreferencedmessag:0,depend:14,dict:[4,14],discord:[0,4,6,8,10,18],dm:9,dmchannel:0,doe:[9,11],emb:[0,9],emoji:0,enabl:9,entri:9,enumer:[0,15],environ:12,error:4,event:[0,2,9,14,15],exampl:[3,9,17],except:[0,2],ext:[6,8,18],extens:[5,9,10,14],featur:18,fetch:0,ffmpegaudio:0,ffmpegopusaudio:0,ffmpegpcmaudio:0,file:[0,9],find:9,fire:11,fix:18,flag:2,flagconvert:4,forc:15,framework:6,frequent:9,game:0,gatewai:11,gener:9,get:[9,10],global:4,go:11,greedi:4,group:2,groupchannel:0,groupmixin:2,guarante:17,guild:[0,14],guildchannel:0,guildstick:0,handl:4,help:[2,10,14],helpcommand:2,helper:[2,8,14],helpformatt:14,hierarchi:[0,2],hook:14,how:9,i:[9,11],id:9,imag:9,improv:[14,18],info:0,inlin:4,inspect:3,instal:12,integr:0,intent:[0,11],interact:0,interactionmessag:0,interactionrespons:0,introduct:12,invit:[0,1],invoc:[4,14],item:0,iter:[0,14,15],keyword:[4,15],kit:0,librari:0,list:4,liter:4,local:9,log:[0,9,13],major:14,make:9,manag:15,manual:10,mean:9,member:[0,11,14,15],membercacheflag:0,messag:[0,9,14],messageflag:0,messagerefer:0,meta:[3,10],method:3,migrat:[14,15],minim:16,minimalhelpcommand:2,miscellan:[14,18],model:[0,9,14],my:[9,11],need:11,network:0,non:17,now:14,object:0,on_messag:9,on_readi:11,onli:[4,7],option:[2,3,4],opu:0,origin:9,pagin:2,paramet:4,partialappinfo:0,partialemoji:0,partialinvitechannel:0,partialinviteguild:0,partialmessag:0,partialwebhookchannel:0,partialwebhookguild:0,pass:9,pcmaudio:0,pcmvolumetransform:0,perform:18,permiss:0,permissionoverwrit:0,plai:9,player:9,posit:4,prefix:2,prerequisit:12,presenc:11,primer:[5,11],privatechannel:0,privileg:11,properti:[14,15],publicuserflag:0,py:10,python:14,question:9,quick:3,quickstart:16,quot:9,rawbulkmessagedeleteev:0,rawintegrationdeleteev:0,rawmessagedeleteev:0,rawmessageupdateev:0,rawreactionactionev:0,rawreactionclearemojiev:0,rawreactionclearev:0,rawtypingev:0,reaction:[0,9],recip:8,refer:[0,2,8],registr:[3,15],relat:0,reliabl:0,reload:5,remov:14,renam:15,request:9,requir:9,retriev:11,role:0,roletag:0,run:[9,15],s:9,select:0,selectmenu:0,selectopt:0,send:[9,14],sent:9,server:14,set:[9,13],shard:14,shardinfo:0,show:[2,9],slash:[4,7,9],snowflak:[0,14],so:11,someth:9,special:[3,4],specif:9,split:14,spotifi:0,stagechannel:0,stageinst:0,standardstick:0,start:[9,10],state:14,statu:9,sticker:0,stickeritem:0,stickerpack:0,stop:9,storechannel:0,stream:0,subclass:14,subcommand:9,support:0,syncwebhook:0,syncwebhookmessag:0,systemchannelflag:0,t:9,take:11,task:8,team:0,teammemb:0,templat:0,textchannel:0,thread:0,threadmemb:0,troubleshoot:11,tupl:4,type:[4,14],ui:0,union:4,up:[5,9,13],upgrad:14,upload:9,us:[3,9],usag:9,user:[0,14],util:0,v0:[15,18],v1:[14,18],v2:18,valu:14,variabl:4,version:[0,14,17],view:0,virtual:12,voic:[0,14],voicechannel:0,voicecli:0,voiceprotocol:0,voicest:0,wait:14,web:9,webhook:0,webhookmessag:0,welcom:10,what:[9,11],where:[9,11],why:[9,11],widget:0,widgetchannel:0,widgetmemb:0,won:9,work:9,your:1}}) \ No newline at end of file diff --git a/docs/Python/html/version_guarantees.html b/docs/Python/html/version_guarantees.html deleted file mode 100644 index 9861d93a..00000000 --- a/docs/Python/html/version_guarantees.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - Version Guarantees - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

Version Guarantees

-

The library follows a semantic versioning principle which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn’t.

-

The first thing to keep in mind is that breaking changes only apply to publicly documented functions and classes. If it’s not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented.

-
-

Note

-

The examples below are non-exhaustive.

-
-
-

Examples of Breaking Changes

-
    -
  • Changing the default parameter value to something else.

  • -
  • Renaming a function without an alias to an old function.

  • -
  • Adding or removing parameters to an event.

  • -
-
-
-

Examples of Non-Breaking Changes

-
    -
  • Adding or removing private underscored attributes.

  • -
  • Adding an element into the __slots__ of a data class.

  • -
  • Changing the behaviour of a function to fix a bug.

  • -
  • Changes in the documentation.

  • -
  • Modifying the internal HTTP handling.

  • -
  • Upgrading the dependencies to a new version, major or otherwise.

  • -
-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file diff --git a/docs/Python/html/whats_new.html b/docs/Python/html/whats_new.html deleted file mode 100644 index dc637d88..00000000 --- a/docs/Python/html/whats_new.html +++ /dev/null @@ -1,1885 +0,0 @@ - - - - - - Changelog - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - settings -
- -
- -
-

Changelog

-

This page keeps a detailed human friendly rendering of what’s new and changed -in specific versions.

-
-

v2.0.0

-

This version was partly developed by Danny, and partly by the enhanced-discord.py contributors. -The library has been updated with breaking changes, and as such the major version was changed.

-
    -
  • -
    Performance of the library has improved significantly (all times with 1 process and 1 AutoShardedBot):
      -
    • 735 guilds boot up time (with chunking): 57s/1.7 GiB RAM -> 42s/1.4 GiB RAM

    • -
    • 27k guilds boot up time (with chunking): 477s/8 GiB RAM -> 303s/7.2 GiB RAM

    • -
    • 48k guilds boot up time (without chunking): 109s -> 67s

    • -
    • 106k guilds boot up time (without chunking): 3300s -> 3090s

    • -
    -
    -
    -
  • -
  • -
    The entire public API of the library is now completely type hinted.
      -
    • There may still be bugs however.

    • -
    • For best type hinting experience consider using Pyright.

    • -
    -
    -
    -
  • -
  • Almost all edit methods now return their updated counterpart rather than doing an in-place edit.

  • -
  • Japanese docs were removed, as we are no longer able to keep them in sync.

  • -
-
-

Breaking Changes

- -
-
-

New Features

- -
-
-

Bug Fixes

- -
-
-
-

v1.7.3

-
-

Bug Fixes

- -
-
-
-

v1.7.2

-
-

Bug Fixes

- -
-
-
-

v1.7.1

-
-

Bug Fixes

- -
-
-
-

v1.7.0

-

This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. -Work after this will be spent on v2.0. As a result, this is the last version to support Python 3.5. -Likewise, this is the last version to support user bots.

-

Development of v2.0 will have breaking changes and support for newer API features.

-
-

New Features

- -
-
-

Bug Fixes

- -
-
-

Miscellaneous

-
    -
  • User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library.

  • -
  • Permission class methods were updated to match the UI of the Discord client (GH-6476)

  • -
  • _ and - characters are now stripped when making a new cog using the discord package (GH-6313)

  • -
-
-
-
-

v1.6.0

-

This version comes with support for replies and stickers.

-
-

New Features

- -
-
-

Bug Fixes

- -
-
-

Miscellaneous

- -
-
-
-

v1.5.1

-
-

Bug Fixes

-
    -
  • Fix utils.escape_markdown() not escaping quotes properly (GH-5897)

  • -
  • Fix Message not being hashable (GH-5901, GH-5866)

  • -
  • Fix moving channels to the end of the channel list (GH-5923)

  • -
  • Fix seemingly strange behaviour in __eq__ for PermissionOverwrite (GH-5929)

  • -
  • Fix aliases showing up in __iter__ for Intents (GH-5945)

  • -
  • Fix the bot disconnecting from voice when moving them to another channel (GH-5904)

  • -
  • Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching.

  • -
  • Ensure that the bot’s own member is not evicted from the cache (GH-5949)

  • -
-
-
-

Miscellaneous

-
    -
  • Members are now loaded during GUILD_MEMBER_UPDATE events if MemberCacheFlags.joined is set. (GH-5930)

  • -
  • -
    [ext.commands] MemberConverter now properly lazily fetches members if not available from cache.
      -
    • This is the same as having discord.Member as the type-hint.

    • -
    -
    -
    -
  • -
  • Guild.chunk() now allows concurrent calls without spamming the gateway with requests.

  • -
-
-
-
-

v1.5.0

-

This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, A Primer to Gateway Intents.

-
-

API Changes

-
    -
  • Members and presences will no longer be retrieved due to an API change. See Privileged Intents for more info.

  • -
  • As a consequence, fetching offline members is disabled if the members intent is not enabled.

  • -
-
-
-

New Features

- -
-
-

Bug Fixes

- -
-
-

Miscellaneous

-
    -
  • Webhook requests are now logged (GH-5798)

  • -
  • Remove caching layer from AutoShardedClient.shards. This was causing issues if queried before launching shards.

  • -
  • Gateway rate limits are now handled.

  • -
  • Warnings logged due to missed caches are now changed to DEBUG log level.

  • -
  • Some strings are now explicitly interned to reduce memory usage.

  • -
  • Usage of namedtuples has been reduced to avoid potential breaking changes in the future (GH-5834)

  • -
  • [ext.commands] All BadArgument exceptions from the built-in converters now raise concrete exceptions to better tell them apart (GH-5748)

  • -
  • [ext.tasks] Lazily fetch the event loop to prevent surprises when changing event loop policy (GH-5808)

  • -
-
-
-
-

v1.4.2

-

This is a maintenance release with backports from v1.5.0.

-
-

Bug Fixes

- -
-
-

Miscellaneous

-
    -
  • Remove caching layer from AutoShardedClient.shards. This was causing issues if queried before launching shards.

  • -
  • [ext.tasks] Lazily fetch the event loop to prevent surprises when changing event loop policy (GH-5808)

  • -
-
-
-
-

v1.4.1

-
-

Bug Fixes

-
    -
  • Properly terminate the connection when Client.close() is called (GH-5207)

  • -
  • Fix error being raised when clearing embed author or image when it was already cleared (GH-5210, GH-5212)

  • -
  • Fix __path__ to allow editable extensions (GH-5213)

  • -
-
-
-
-

v1.4.0

-

Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!

-
-

New Features

- -
-
-

Bug Fixes

- -
-
-

Miscellaneous

- -
-
-
-

v1.3.4

-
-

Bug Fixes

-
    -
  • Fix an issue with channel overwrites causing multiple issues including crashes (GH-5109)

  • -
-
-
-
-

v1.3.3

-
-

Bug Fixes

-
    -
  • -
    Change default WS close to 4000 instead of 1000.
      -
    • The previous close code caused sessions to be invalidated at a higher frequency than desired.

    • -
    -
    -
    -
  • -
  • Fix None appearing in Member.activities. (GH-2619)

  • -
-
-
-
-

v1.3.2

-

Another minor bug fix release.

-
-

Bug Fixes

- -
-
-
-

v1.3.1

-

Minor bug fix release.

-
-

Bug Fixes

-
    -
  • Fix fetching invites in guilds that the user is not in.

  • -
  • Fix the channel returned from Client.fetch_channel() raising when sending messages. (GH-2531)

  • -
-
-
-

Miscellaneous

-
    -
  • Fix compatibility warnings when using the Python 3.9 alpha.

  • -
  • Change the unknown event logging from WARNING to DEBUG to reduce noise.

  • -
-
-
-
-

v1.3.0

-

This version comes with a lot of bug fixes and new features. It’s been in development for a lot longer than was anticipated!

-
-

New Features

- -
-
-

Bug Fixes

- -
-
-

Miscellaneous

-
    -
  • The library now fully supports Python 3.8 without warnings.

  • -
  • Bump the dependency of websockets to 8.0 for those who can use it. (GH-2453)

  • -
  • Due to Discord providing Member data in mentions, users will now be upgraded to Member more often if mentioned.

  • -
  • utils.escape_markdown() now properly escapes new quote markdown.

  • -
  • The message cache can now be disabled by passing None to max_messages in Client.

  • -
  • The default message cache size has changed from 5000 to 1000 to accommodate small bots.

  • -
  • Lower memory usage by only creating certain objects as needed in Role.

  • -
  • There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation.

  • -
  • -
    The rate limiting code now uses millisecond precision to have more granular rate limit handling.
      -
    • Along with that, the rate limiting code now uses Discord’s response to wait. If you need to use the system clock again for whatever reason, consider passing assume_synced_clock in Client.

    • -
    -
    -
    -
  • -
  • The performance of Guild.default_role has been improved from O(N) to O(1). (GH-2375)

  • -
  • The performance of Member.roles has improved due to usage of caching to avoid surprising performance traps.

  • -
  • The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation.

  • -
  • There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those.

  • -
  • The loading of the opus module has been delayed which would make the result of opus.is_loaded() somewhat surprising.

  • -
  • [ext.commands] Usernames prefixed with @ inside DMs will properly convert using the User converter. (GH-2498)

  • -
  • [ext.tasks] The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (GH-2516)

  • -
-
-
-
-

v1.2.5

-
-

Bug Fixes

-
    -
  • Fix a bug that caused crashes due to missing animated field in Emoji structures in reactions.

  • -
-
-
-
-

v1.2.4

-
-

Bug Fixes

- -
-
-
-

v1.2.3

-
-

Bug Fixes

- -
-
-
-

v1.2.2

-
-

Bug Fixes

-
    -
  • Audit log related attribute access have been fixed to not error out when they shouldn’t have.

  • -
-
-
-
-

v1.2.1

-
-

Bug Fixes

-
    -
  • User.avatar_url and related attributes no longer raise an error.

  • -
  • More compatibility shims with the enum.Enum code.

  • -
-
-
-
-

v1.2.0

-

This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as “premium guilds”).

-
-

New Features

- -
-
-

Bug Fixes

- -
-
-

Miscellaneous

-
    -
  • -
    Improve performance of all Enum related code significantly.
      -
    • This was done by replacing the enum.Enum code with an API compatible one.

    • -
    • This should not be a breaking change for most users due to duck-typing.

    • -
    -
    -
    -
  • -
  • Improve performance of message creation by about 1.5x.

  • -
  • Improve performance of message editing by about 1.5-4x depending on payload size.

  • -
  • Improve performance of attribute access on Member about by 2x.

  • -
  • Improve performance of utils.get() by around 4-6x depending on usage.

  • -
  • Improve performance of event parsing lookup by around 2.5x.

  • -
  • Keyword arguments in Client.start() and Client.run() are now validated (GH-953, GH-2170)

  • -
  • The Discord error code is now shown in the exception message for HTTPException.

  • -
  • Internal tasks launched by the library will now have their own custom __repr__.

  • -
  • All public facing types should now have a proper and more detailed __repr__.

  • -
  • [ext.tasks] Errors are now logged via the standard logging module.

  • -
-
-
-
-

v1.1.1

-
-

Bug Fixes

-
    -
  • Webhooks do not overwrite data on retrying their HTTP requests (GH-2140)

  • -
-
-
-

Miscellaneous

-
    -
  • Add back signal handling to Client.run() due to issues some users had with proper cleanup.

  • -
-
-
-
-

v1.1.0

-
-

New Features

- -
-

discord.ext.commands

- -
-
-
-

Bug Fixes

- -
-

discord.ext.commands

-
    -
  • Fix lambda converters in a non-module context (e.g. eval).

  • -
  • -
    Use message creation time for reference time when computing cooldowns.
      -
    • This prevents cooldowns from triggering during e.g. a RESUME session.

    • -
    -
    -
    -
  • -
  • Fix the default on_command_error() to work with new-style cogs (GH-2094)

  • -
  • DM channels are now recognised as NSFW in is_nsfw() check.

  • -
  • Fix race condition with help commands (GH-2123)

  • -
  • Fix cog descriptions not showing in MinimalHelpCommand (GH-2139)

  • -
-
-
-
-

Miscellaneous

-
    -
  • Improve the performance of internal enum creation in the library by about 5x.

  • -
  • Make the output of python -m discord --version a bit more useful.

  • -
  • The loop cleanup facility has been rewritten again.

  • -
  • The signal handling in Client.run() has been removed.

  • -
-
-

discord.ext.commands

-
    -
  • Custom exception classes are now used for all default checks in the library (GH-2101)

  • -
-
-
-
-
-

v1.0.1

-
-

Bug Fixes

-
    -
  • Fix issue with speaking state being cast to int when it was invalid.

  • -
  • Fix some issues with loop cleanup that some users experienced on Linux machines.

  • -
  • Fix voice handshake race condition (GH-2056, GH-2063)

  • -
-
-
-
-

v1.0.0

-

The changeset for this version are too big to be listed here, for more information please -see the migrating page.

-
-
-

v0.16.6

-
-

Bug Fixes

-
    -
  • Fix issue with Client.create_server() that made it stop working.

  • -
  • Fix main thread being blocked upon calling StreamPlayer.stop.

  • -
  • Handle HEARTBEAT_ACK and resume gracefully when it occurs.

  • -
  • Fix race condition when pre-emptively rate limiting that caused releasing an already released lock.

  • -
  • Fix invalid state errors when immediately cancelling a coroutine.

  • -
-
-
-
-

v0.16.1

-

This release is just a bug fix release with some better rate limit implementation.

-
-

Bug Fixes

-
    -
  • Servers are now properly chunked for user bots.

  • -
  • The CDN URL is now used instead of the API URL for assets.

  • -
  • Rate limit implementation now tries to use header information if possible.

  • -
  • Event loop is now properly propagated (GH-420)

  • -
  • Allow falsey values in Client.send_message() and Client.send_file().

  • -
-
-
-
-

v0.16.0

-
-

New Features

-
    -
  • Add Channel.overwrites to get all the permission overwrites of a channel.

  • -
  • Add Server.features to get information about partnered servers.

  • -
-
-
-

Bug Fixes

-
    -
  • Timeout when waiting for offline members while triggering on_ready().

    -
    -
      -
    • The fact that we did not timeout caused a gigantic memory leak in the library that caused -thousands of duplicate Member instances causing big memory spikes.

    • -
    -
    -
  • -
  • Discard null sequences in the gateway.

    -
    -
      -
    • The fact these were not discarded meant that on_ready() kept being called instead of -on_resumed(). Since this has been corrected, in most cases on_ready() will be -called once or twice with on_resumed() being called much more often.

    • -
    -
    -
  • -
-
-
-
-

v0.15.1

-
    -
  • Fix crash on duplicate or out of order reactions.

  • -
-
-
-

v0.15.0

-
-

New Features

-
    -
  • Rich Embeds for messages are now supported.

    -
    -
      -
    • To do so, create your own Embed and pass the instance to the embed keyword argument to Client.send_message() or Client.edit_message().

    • -
    -
    -
  • -
  • Add Client.clear_reactions() to remove all reactions from a message.

  • -
  • Add support for MESSAGE_REACTION_REMOVE_ALL event, under on_reaction_clear().

  • -
  • Add Permissions.update() and PermissionOverwrite.update() for bulk permission updates.

    -
    -
      -
    • This allows you to use e.g. p.update(read_messages=True, send_messages=False) in a single line.

    • -
    -
    -
  • -
  • Add PermissionOverwrite.is_empty() to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false).

  • -
-

For the command extension, the following changed:

-
    -
  • Context is no longer slotted to facilitate setting dynamic attributes.

  • -
-
-
-
-

v0.14.3

-
-

Bug Fixes

-
    -
  • Fix crash when dealing with MESSAGE_REACTION_REMOVE

  • -
  • Fix incorrect buckets for reactions.

  • -
-
-
-
-

v0.14.2

-
-

New Features

-
    -
  • -
    Client.wait_for_reaction() now returns a namedtuple with reaction and user attributes.
      -
    • This is for better support in the case that None is returned since tuple unpacking can lead to issues.

    • -
    -
    -
    -
  • -
-
-
-

Bug Fixes

-
    -
  • Fix bug that disallowed None to be passed for emoji parameter in Client.wait_for_reaction().

  • -
-
-
-
-

v0.14.1

-
-

Bug fixes

-
    -
  • -
    Fix bug with Reaction not being visible at import.
      -
    • This was also breaking the documentation.

    • -
    -
    -
    -
  • -
-
-
-
-

v0.14.0

-

This update adds new API features and a couple of bug fixes.

-
-

New Features

-
    -
  • Add support for Manage Webhooks permission under Permissions.manage_webhooks

  • -
  • Add support for around argument in 3.5+ Client.logs_from().

  • -
  • -
    Add support for reactions.
    -
    -
    -
  • -
-
-
-

Bug Fixes

- -
-
-
-

v0.13.0

-

This is a backwards compatible update with new features.

-
-

New Features

-
    -
  • Add the ability to manage emojis.

    -
    -
      -
    • Client.create_custom_emoji() to create new emoji.

    • -
    • Client.edit_custom_emoji() to edit an old emoji.

    • -
    • Client.delete_custom_emoji() to delete a custom emoji.

    • -
    -
    -
  • -
  • Add new Permissions.manage_emojis toggle.

    -
    -
    -
    -
  • -
  • Add new statuses for Status.

    -
    -
    -
    -
  • -
  • Deprecate Client.change_status()

    -
    -
      -
    • Use Client.change_presence() instead for better more up to date functionality.

    • -
    • This method is subject for removal in a future API version.

    • -
    -
    -
  • -
  • Add Client.change_presence() for changing your status with the new Discord API change.

    -
    -
      -
    • This is the only method that allows changing your status to invisible or do not disturb.

    • -
    -
    -
  • -
-
-
-

Bug Fixes

-
    -
  • Paginator pages do not exceed their max_size anymore (GH-340)

  • -
  • Do Not Disturb users no longer show up offline due to the new Status changes.

  • -
-
-
-
-

v0.12.0

-

This is a bug fix update that also comes with new features.

-
-

New Features

-
    -
  • Add custom emoji support.

    -
    -
      -
    • Adds a new class to represent a custom Emoji named Emoji

    • -
    • Adds a utility generator function, Client.get_all_emojis().

    • -
    • Adds a list of emojis on a server, Server.emojis.

    • -
    • Adds a new event, on_server_emojis_update().

    • -
    -
    -
  • -
  • Add new server regions to ServerRegion

    -
    -
      -
    • ServerRegion.eu_central and ServerRegion.eu_west.

    • -
    -
    -
  • -
  • Add support for new pinned system message under MessageType.pins_add.

  • -
  • Add order comparisons for Role to allow it to be compared with regards to hierarchy.

    -
    -
      -
    • This means that you can now do role_a > role_b etc to check if role_b is lower in the hierarchy.

    • -
    -
    -
  • -
  • Add Server.role_hierarchy to get the server’s role hierarchy.

  • -
  • Add Member.server_permissions to get a member’s server permissions without their channel specific overwrites.

  • -
  • Add Client.get_user_info() to retrieve a user’s info from their ID.

  • -
  • Add a new Player property, Player.error to fetch the error that stopped the player.

    -
    -
      -
    • To help with this change, a player’s after function can now take a single parameter denoting the current player.

    • -
    -
    -
  • -
  • Add support for server verification levels.

    -
    -
      -
    • Adds a new enum called VerificationLevel.

    • -
    • This enum can be used in Client.edit_server() under the verification_level keyword argument.

    • -
    • Adds a new attribute in the server, Server.verification_level.

    • -
    -
    -
  • -
  • Add Server.voice_client shortcut property for Client.voice_client_in().

    -
    -
      -
    • This is technically old (was added in v0.10.0) but was undocumented until v0.12.0.

    • -
    -
    -
  • -
-

For the command extension, the following are new:

-
    -
  • Add custom emoji converter.

  • -
  • All default converters that can take IDs can now convert via ID.

  • -
  • Add coroutine support for Bot.command_prefix.

  • -
  • Add a method to reset command cooldown.

  • -
-
-
-

Bug Fixes

-
    -
  • Fix bug that caused the library to not work with the latest websockets library.

  • -
  • Fix bug that leaked keep alive threads (GH-309)

  • -
  • Fix bug that disallowed ServerRegion from being used in Client.edit_server().

  • -
  • Fix bug in Channel.permissions_for() that caused permission resolution to happen out of order.

  • -
  • Fix bug in Member.top_role that did not account for same-position roles.

  • -
-
-
-
-

v0.11.0

-

This is a minor bug fix update that comes with a gateway update (v5 -> v6).

-
-

Breaking Changes

- -
-
-

New Features

-
    -
  • Add the ability to prune members via Client.prune_members().

  • -
  • Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls.

  • -
  • Add AppInfo.owner attribute.

  • -
  • Add CallMessage for group voice call messages.

  • -
  • Add GroupCall for group voice call information.

  • -
  • Add Message.system_content to get the system message.

  • -
  • Add the remaining VIP servers and the Brazil servers into ServerRegion enum.

  • -
  • Add stderr argument to VoiceClient.create_ffmpeg_player() to redirect stderr.

  • -
  • The library now handles implicit permission resolution in Channel.permissions_for().

  • -
  • Add Server.mfa_level to query a server’s 2FA requirement.

  • -
  • Add Permissions.external_emojis permission.

  • -
  • Add Member.voice attribute that refers to a VoiceState.

    -
    -
      -
    • For backwards compatibility, the member object will have properties mirroring the old behaviour.

    • -
    -
    -
  • -
-

For the command extension, the following are new:

-
    -
  • Command cooldown system with the cooldown decorator.

  • -
  • UserInputError exception for the hierarchy for user input related errors.

  • -
-
-
-

Bug Fixes

-
    -
  • Client.email is now saved when using a token for user accounts.

  • -
  • Fix issue when removing roles out of order.

  • -
  • Fix bug where discriminators would not update.

  • -
  • Handle cases where HEARTBEAT opcode is received. This caused bots to disconnect seemingly randomly.

  • -
-

For the command extension, the following bug fixes apply:

-
    -
  • Bot.check decorator is actually a decorator not requiring parentheses.

  • -
  • Bot.remove_command and Group.remove_command no longer throw if the command doesn’t exist.

  • -
  • Command names are no longer forced to be lower().

  • -
  • Fix a bug where Member and User converters failed to work in private message contexts.

  • -
  • HelpFormatter now ignores hidden commands when deciding the maximum width.

  • -
-
-
-
-

v0.10.0

-

For breaking changes, see Migrating to v0.10.0. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive.

-
-

New Features

-
    -
  • The library is now fully asyncio compatible, allowing you to write non-blocking code a lot more easily.

  • -
  • The library now fully handles 429s and unconditionally retries on 502s.

  • -
  • A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader.

  • -
  • Two new exception types, Forbidden and NotFound to denote permission errors or 404 errors.

  • -
  • Added Client.delete_invite() to revoke invites.

  • -
  • Added support for sending voice. Check VoiceClient for more details.

  • -
  • Added Client.wait_for_message() coroutine to aid with follow up commands.

  • -
  • Added version_info named tuple to check version info of the library.

  • -
  • Login credentials are now cached to have a faster login experience. You can disable this by passing in cache_auth=False -when constructing a Client.

  • -
  • New utility function, discord.utils.get() to simplify retrieval of items based on attributes.

  • -
  • All data classes now support !=, ==, hash(obj) and str(obj).

  • -
  • Added Client.get_bans() to get banned members from a server.

  • -
  • Added Client.invites_from() to get currently active invites in a server.

  • -
  • Added Server.me attribute to get the Member version of Client.user.

  • -
  • Most data classes now support a hash(obj) function to allow you to use them in set or dict classes or subclasses.

  • -
  • Add Message.clean_content() to get a text version of the content with the user and channel mentioned changed into their names.

  • -
  • Added a way to remove the messages of the user that just got banned in Client.ban().

  • -
  • Added Client.wait_until_ready() to facilitate easy creation of tasks that require the client cache to be ready.

  • -
  • Added Client.wait_until_login() to facilitate easy creation of tasks that require the client to be logged in.

  • -
  • Add discord.Game to represent any game with custom text to send to Client.change_status().

  • -
  • Add Message.nonce attribute.

  • -
  • Add Member.permissions_in() as another way of doing Channel.permissions_for().

  • -
  • Add Client.move_member() to move a member to another voice channel.

  • -
  • You can now create a server via Client.create_server().

  • -
  • Added Client.edit_server() to edit existing servers.

  • -
  • Added Client.server_voice_state() to server mute or server deafen a member.

  • -
  • If you are being rate limited, the library will now handle it for you.

  • -
  • Add on_member_ban() and on_member_unban() events that trigger when a member is banned/unbanned.

  • -
-
-
-

Performance Improvements

-
    -
  • All data classes now use __slots__ which greatly reduce the memory usage of things kept in cache.

  • -
  • Due to the usage of asyncio, the CPU usage of the library has gone down significantly.

  • -
  • A lot of the internal cache lists were changed into dictionaries to change the O(n) lookup into O(1).

  • -
  • Compressed READY is now on by default. This means if you’re on a lot of servers (or maybe even a few) you would -receive performance improvements by having to download and process less data.

  • -
  • While minor, change regex from \d+ to [0-9]+ to avoid unnecessary unicode character lookups.

  • -
-
-
-

Bug Fixes

-
    -
  • Fix bug where guilds being updated did not edit the items in cache.

  • -
  • Fix bug where member.roles were empty upon joining instead of having the @everyone role.

  • -
  • Fix bug where Role.is_everyone() was not being set properly when the role was being edited.

  • -
  • Client.logs_from() now handles cases where limit > 100 to sidestep the discord API limitation.

  • -
  • Fix bug where a role being deleted would trigger a ValueError.

  • -
  • Fix bug where Permissions.kick_members() and Permissions.ban_members() were flipped.

  • -
  • Mentions are now triggered normally. This was changed due to the way discord handles it internally.

  • -
  • Fix issue when a Message would attempt to upgrade a Message.server when the channel is -a Object.

  • -
  • Unavailable servers were not being added into cache, this has been corrected.

  • -
-
-
-
- - -
-
- © Copyright 2015-present, Rapptz. - Created using Sphinx 4.2.0. -
-
- - - - - - - \ No newline at end of file -- 2.47.2

+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 diff --git a/docs/Python/doctrees/ext/commands/cogs.doctree b/docs/Python/doctrees/ext/commands/cogs.doctree deleted file mode 100644 index 89b581f2f46c6df322fb70a164f6bfe8816e6110..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 32844 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 A0ssI2 diff --git a/docs/Python/doctrees/ext/commands/commands.doctree b/docs/Python/doctrees/ext/commands/commands.doctree deleted file mode 100644 index 2112459f667197d04954358f153dd376a30d62eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 184097 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 diff --git a/docs/Python/doctrees/ext/commands/slash-commands.doctree b/docs/Python/doctrees/ext/commands/slash-commands.doctree deleted file mode 100644 index dd3032883e5f5b19aa7c158cc1f21f9ab5031a7f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9140 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 diff --git a/docs/Python/doctrees/ext/tasks/index.doctree b/docs/Python/doctrees/ext/tasks/index.doctree deleted file mode 100644 index 1200a86f3d1798029469229e567662a0da9c0e09..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 113317 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≫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%0D%z{!4Lu=5gK6-4&f025fK?t5Dn206R{8n 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Ƚ$rm7^RNI5u^3CR49l?+tFQ)Zu^t<+37fGM+pq&W zu^W4^5BqTthj0W(aU3Ub3a4=v=WqcRaT$dQ2T%k>Q5+>u3Z+pNvVsOvEHi!BkAg49vo8%*8w`z(Op>5-h`Vti&p;!CI`x25iD+ zY{fS0z)tMO9_+(@9K<0U!BHH?37o=doW(g@z(rif6385B$P!{6(OL0R%x%1V;#jLTH3VIQ)YMh=j<9ifD*|n23!y zh==${h(t(&q)3hwNQKl$i*(3QbD2MW> zh)Sq}s;G_{sD;|7i+X5)hG>i?Xolu!iB|Xz|3e$JMSFBWCv-+vbVCpHL~ry#KlH~y z48jl$#c+(kD2&EfjKc&>#AHmtG)%`#%)%VZ#e6KlA}q#IEW-+{#A>X;I;_V=Y{C|7 z#dhq#F6_o$?85;Z#917bJi-$^#dEyC zE4;>Ayu$~4#AkfLH+;uW{K6mnMc_vP1VJzaM@WQ17=%T5{DX*ygeZuL=!k(>h>f_2 zhXhE7#7KfJTBrAuHY)J;|6ZwHtymc9^fG!;|ZSOIbPxw z-rz0X;{!h7Grr;*e&8p5;|~Ho4j?dsA{as-Btjz$!XZ2&AR;0o3Zfx8Vj>peATHt~ z0TLlGk|G&WASF^G4bmY!G9nYQAS<#X2XY}d@**D!pdbpP2#TRNN}?3Xpe)Lx0xF?0 zs-hZdpeAag4(g#k8ln-JpedT81zI6sP%EHNp*7l~9Xg;RI-?7^p*wn_7y6(t`eOhF zVK9bb7)D?uMq>=dVLT>c5~g4(reg+XVK(Ms9u{CB7GnvPVL4V}71m%a)?))UVKcU3 z8+KqPc4H6rVLuMy5RTv|j^hMQ;WWO7Vh9K?&AR-;W3`#8D8Ke zUgHhk;XOX$6TaXpzT*de;Wz#w(31dyASi+(1VSM+!Xh00K?FoXWJE)fMqm_1V=TsD0w!WIreGSTVBFV=wmM01o0Xj^G%M<0MYu49?;_F5nU_<0`J<25#au?%*Eo;~^g537+CPUf>m8 z<1OCd13uz2zTg|a<0pRM5B?(X(*S}X7=j}tLLm&oB0T;q(ypUKqh2HR%AmCs}6h(2AKq-_)S(HNsR77P| zK{ZrIP1Hgi)J1(XKqE9pQ#3;hw8X#o53SJ#?a&?_(FtA972VMTz0ezd(GLSK5Q8xU z!!R5pF$!Za7UMAilQ0=mF%2^?6SFY~^DrL^u?S1B6w9#!tFRhtu?`!s5u33E+prxw zu?u^!7yEGlhj182aSSJL5~pzn=WreuaS2y&71wbCw{RPGaSsph5RdT$&+r^C@d|J7 z7Vq%^pYR!9@eM!l6Tk5Xfu02r7(o#XArKOw5eDH99uW``kr4&a5FIfQ3vmz^@sR+D zkQhmk3@MNjsgVZhkRBP430aU8*^vXekQ;fC4+T&Vg;4~>P#h&u3T03hMjcJ<$t&&=>tN0D~|X zLoo~^FcPCN2IDXu6EO)>Fcs4=1G6w2b1@GKun>!}1k11-E3pb|uommF0h_QHTd@s0 zuoJtn2m7!e2XP2Ta1_UJ0;g~qXK@Y}a1obr1=nyLH*pJha2NOS0FUq(Pw@;d@Di`_ z2Ji45AMpua@D<-{neQK?$>eJ|jf6xbg(H{da2!k;c!!QCP zF&bkq4&yNqlQ0ESFȽ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 z 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

$T#i$Ioo@NH=`gWxJ9(5~lt!FvaA3dz)K(oK| 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 literal 0 HcmV?d00001 diff --git a/docs/Python/doctrees/ext/commands/cogs.doctree b/docs/Python/doctrees/ext/commands/cogs.doctree new file mode 100644 index 0000000000000000000000000000000000000000..89b581f2f46c6df322fb70a164f6bfe8816e6110 GIT binary patch literal 32844 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 A0ssI2 literal 0 HcmV?d00001 diff --git a/docs/Python/doctrees/ext/commands/commands.doctree b/docs/Python/doctrees/ext/commands/commands.doctree new file mode 100644 index 0000000000000000000000000000000000000000..2112459f667197d04954358f153dd376a30d62eb GIT binary patch literal 184097 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 literal 0 HcmV?d00001 diff --git a/docs/Python/doctrees/ext/commands/slash-commands.doctree b/docs/Python/doctrees/ext/commands/slash-commands.doctree new file mode 100644 index 0000000000000000000000000000000000000000..dd3032883e5f5b19aa7c158cc1f21f9ab5031a7f GIT binary patch literal 9140 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 literal 0 HcmV?d00001 diff --git a/docs/Python/doctrees/ext/tasks/index.doctree b/docs/Python/doctrees/ext/tasks/index.doctree new file mode 100644 index 0000000000000000000000000000000000000000..1200a86f3d1798029469229e567662a0da9c0e09 GIT binary patch literal 113317 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≫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%0D%z{!4Lu=5gK6-4&f025fK?t5Dn206R{8n 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Ƚ$rm7^RNI5u^3CR49l?+tFQ)Zu^t<+37fGM+pq&W zu^W4^5BqTthj0W(aU3Ub3a4=v=WqcRaT$dQ2T%k>Q5+>u3Z+pNvVsOvEHi!BkAg49vo8%*8w`z(Op>5-h`Vti&p;!CI`x25iD+ zY{fS0z)tMO9_+(@9K<0U!BHH?37o=doW(g@z(rif6385B$P!{6(OL0R%x%1V;#jLTH3VIQ)YMh=j<9ifD*|n23!y zh==${h(t(&q)3hwNQKl$i*(3QbD2MW> zh)Sq}s;G_{sD;|7i+X5)hG>i?Xolu!iB|Xz|3e$JMSFBWCv-+vbVCpHL~ry#KlH~y z48jl$#c+(kD2&EfjKc&>#AHmtG)%`#%)%VZ#e6KlA}q#IEW-+{#A>X;I;_V=Y{C|7 z#dhq#F6_o$?85;Z#917bJi-$^#dEyC zE4;>Ayu$~4#AkfLH+;uW{K6mnMc_vP1VJzaM@WQ17=%T5{DX*ygeZuL=!k(>h>f_2 zhXhE7#7KfJTBrAuHY)J;|6ZwHtymc9^fG!;|ZSOIbPxw z-rz0X;{!h7Grr;*e&8p5;|~Ho4j?dsA{as-Btjz$!XZ2&AR;0o3Zfx8Vj>peATHt~ z0TLlGk|G&WASF^G4bmY!G9nYQAS<#X2XY}d@**D!pdbpP2#TRNN}?3Xpe)Lx0xF?0 zs-hZdpeAag4(g#k8ln-JpedT81zI6sP%EHNp*7l~9Xg;RI-?7^p*wn_7y6(t`eOhF zVK9bb7)D?uMq>=dVLT>c5~g4(reg+XVK(Ms9u{CB7GnvPVL4V}71m%a)?))UVKcU3 z8+KqPc4H6rVLuMy5RTv|j^hMQ;WWO7Vh9K?&AR-;W3`#8D8Ke zUgHhk;XOX$6TaXpzT*de;Wz#w(31dyASi+(1VSM+!Xh00K?FoXWJE)fMqm_1V=TsD0w!WIreGSTVBFV=wmM01o0Xj^G%M<0MYu49?;_F5nU_<0`J<25#au?%*Eo;~^g537+CPUf>m8 z<1OCd13uz2zTg|a<0pRM5B?(X(*S}X7=j}tLLm&oB0T;q(ypUKqh2HR%AmCs}6h(2AKq-_)S(HNsR77P| zK{ZrIP1Hgi)J1(XKqE9pQ#3;hw8X#o53SJ#?a&?_(FtA972VMTz0ezd(GLSK5Q8xU z!!R5pF$!Za7UMAilQ0=mF%2^?6SFY~^DrL^u?S1B6w9#!tFRhtu?`!s5u33E+prxw zu?u^!7yEGlhj182aSSJL5~pzn=WreuaS2y&71wbCw{RPGaSsph5RdT$&+r^C@d|J7 z7Vq%^pYR!9@eM!l6Tk5Xfu02r7(o#XArKOw5eDH99uW``kr4&a5FIfQ3vmz^@sR+D zkQhmk3@MNjsgVZhkRBP430aU8*^vXekQ;fC4+T&Vg;4~>P#h&u3T03hMjcJ<$t&&=>tN0D~|X zLoo~^FcPCN2IDXu6EO)>Fcs4=1G6w2b1@GKun>!}1k11-E3pb|uommF0h_QHTd@s0 zuoJtn2m7!e2XP2Ta1_UJ0;g~qXK@Y}a1obr1=nyLH*pJha2NOS0FUq(Pw@;d@Di`_ z2Ji45AMpua@D<-{neQK?$>eJ|jf6xbg(H{da2!k;c!!QCP zF&bkq4&yNqlQ0ESFȽ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 z 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

$T#i$Ioo@NH=`gWxJ9(5~lt!FvaA3dz)K(oK| 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