ELF          >            @       82          @ 8  @                                 H
      H
                                                                                                                  X-      X=      X=                               h-      h=      h=                                                                                                $       $              Std                                            Ptd   P&      P&      P&      L       L              Qtd                                                  Rtd   X-      X=      X=                                  GNU                      GNU ]obNhn¦YV*F                             )@                                                   w                      G                                           j                                                                  c                      ^                     1                                                                                                                                                         ,                                             F   "                   U                                 z        __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize PyUnicode_New memcpy PyObject_Str PyFloat_Type PyLong_Type _Py_NoneStruct PyBool_Type PyObject_GetAttr PyObject_CallObject PyObject_CallFunctionObjArgs _Py_Dealloc PyUnicode_InternFromString PyErr_Clear PyInit__speedups PyImport_ImportModule PyObject_GetAttrString PyModule_Create2 libc.so.6 GLIBC_2.2.5 GLIBC_2.14                              o         ui	   y              X=             p      `=             0       @              @       @             w!      (@             @      8@             !      @@             ~!      H@                   X@             X#      `@             !      h@                   x@             @$      @             !      @              @      ?                    ?                    ?                    ?                    ?                    ?                    ?                    ?                    `?                    h?                    p?                    x?                    ?                    ?         	           ?         
           ?                    ?                    ?                    ?                    ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HH/  HtH     5*/  %,/  @ h    fh   fh   fh   fh   fh   fh   fh   rfh   bfh	   Rfh
   Bfh   2f%.  fD  %V.  fD  %N.  fD  %F.  fD  %>.  fD  %6.  fD  %..  fD  %&.  fD  %.  fD  %.  fD  %.  fD  %.  fD  %-  fD  H=A/  H:/  H9tH-  Ht	        H=/  H5
/  H)HH?HHHtH-  HtfD      =.   u+UH=-   HtH=-  d.  ]     w    UHAWAVAUATSHHw <   <t$<  E1HL[A\A]A^A_]    @   HG8HKL4L9  1D  "t&wHL9sH<tv݃>uHL9rH  HϾ qIHiC  Q  H[8AD$    I|$8I1L9o  @ A"Q  Hj  HcH>@   HG8H{L,xL9  1D  f"t	&fwHL9sHf<tvf>uHL9rH  H  IHC    H[8AD$    I|$8I1L9      A"f  H5  HcH> @    HG8H{L48L9  E1@ "t&wII9tH<tv܀>uII9uM   @@Lǁ   IHC  w  H[8AD$  M  I|$8E1L9  D=  D  "<w~H5  HcH>f.     HW(HG8@HEZ@ HW(HG8@@HE HW(HG8@HE@ tI    I@ HI9cLL)HM     HLL)2J(  E1HzD  HLL)
J(E1D:Hzf.     HLL)J(X  E1B;Hz^fD  HLL)J(,  E1B;Hz.fD  HLL)HJ(B/&#34HxE1@; H@ IM9IHI)IJ   H)Hf     L,    LLL)
fo%  J(Hz"1 L,    LLL)fo  J(Hz1hL,    LLL)for  J(B;   Hz
11f     L,    LLL)jfoB  J(B;   Hz1f     L,    LLL)*fo  J(B;   Hz1f     H@ IM9IMHH)HHD	H)HyfD  L<LLL)J8H[  HzH1L<LLL)J8H+  HzH1     L<LLL)^;   J8H  fJHz
H1D@ L<LLL)&J8H  Hz
H;   fB1@ L<LL)L;   J8Hn  frHz
H1@ IT$(I|$8@HE HS(H8@HEzD  HS(H8@HED  IT$(I|$8@HEn HS(H8@HEED  IT$(I|$8@HEi1@ HVH   ttfH     UHATSHHH=&      HSH;]%  H;s%  	H;W%  uxH;Q%  toH5&  H IH   1HHI$x
HI$tmH   H=5&  1H1Hx	HHt)H[A\]H=	&  HH1[1A\]eD  HHEHEfD  LfD  H=  <H%  H@ 1@ HCH   uCIHtHHI$+HI$LQ@ Hff.     H;5#  tNfD  H=%  11x     UH=I  HSH7HtBH5;  HHH$  Hx	HHt)H]  H=9$   H]1     H  HH                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        P \,h@__html__ markupsafe Markup escape escape_silent soft_str markupsafe._speedups       Replace the characters ``&``, ``<``, ``>``, ``'``, and ``"`` in the string with HTML-safe sequences. Use this if you need to display text that might contain such characters in HTML.

If the object has an ``__html__`` method, it is called and the return value is assumed to already be safe for HTML.

:param s: An object to be converted to a string and escaped.
:return: A :class:`Markup` string with the escaped text.
      Like :func:`escape` but treats ``None`` as the empty string. Useful with optional values, as otherwise you get the string ``'None'`` when the value is ``None``.

>>> escape(None)
Markup('None')
>>> escape_silent(None)
Markup('')
   Convert an object to a string if it isn't already. This preserves a :class:`Markup` string rather than converting it back to a basic string, so it will still be marked as safe and won't be escaped again.

>>> value = escape("<User 1>")
>>> value
Markup('&lt;User 1&gt;')
>>> escape(str(value))
Markup('&amp;lt;User 1&amp;gt;')
>>> escape(soft_str(value))
Markup('&lt;User 1&gt;')
    &#39&amp&lt;&gt;& # 3 4 & # 3 9 & a m p & l t ; & g t ;         &   #   3   4   &   #   3   9   &   a   m   p   &   l   t   ;   &   g   t   ;   ;L      h         0         0  D             zR x  $      `    FJw ?9*3$"       D                 \               (   t   h   ACI{
H       (       ,         ECC
AV
J         X(       (      tz    EJED
HG
I                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         p      0             o                                        X=                           `=                    o                 (                   
                                  H?                                         (	                                	                            o           o          o           o          o                                                                                           h=                      0      @      P      `      p                                                                                                                 @                              w!      @             !      ~!                   X#      !                   @$                                                                             !               @                                      5d6f624e686ec2a61559561edae487d92a1046.debug    ŰN .shstrtab .note.gnu.property .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.got .plt.sec .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .dynamic .data .bss .gnu_debuglink                                                                                                                                                    $                              1   o                   $                             ;                                                   C             (      (                                   K   o                   ,                            X   o                   0                            g                                                    q      B       (	      (	                                 {                                                         v                                                                                                                                                                                               
                                                                                                                 P                                          P&      P&      L                                           &      &      $                                          X=      X-                                                `=      `-                                                h=      h-                                              H?      H/                                                 @       0                                                 A      1                                                          1      4                                                    <1                                    