L iD.UddlmZddlZddlZddlmZddlmZddlm Z ddl m Z m Z m Z mZmZmZmZddlmZddlmZmZdd lmZmZmZdd lmZdd lmZmZm Z m!Z!dd l"m#Z#m$Z$m%Z%dd l&m'Z'm(Z(ddl)m*Z*ddl+m,Z-ddl.m/Z0ddl1m2Z3ddl4m5Z6ddl7m8Z8ddl9m:Z:ddl;mm?Z?m@Z@mAZAmBZBddlCmDZDddlEmFZFddlGmHZHe rddlImJZJdZKdeLd<eMeNzeze zejzZPdeLd<eGd d!ZQGd"d#ZR d% d&d$ZSy)') annotationsN) dataclass)Path)dedent) TYPE_CHECKINGBinaryIOFinalLiteralTextIO TypeAliascast)runtime)current_form_id is_in_form) LayoutConfigWidthvalidate_width)check_widget_policies)Keycompute_and_register_element_idsave_for_app_testingto_key)StreamlitAPIExceptionStreamlitMissingPageLabelErrorStreamlitPageNotFoundError)get_main_script_directorynormalize_path_join) StreamlitPage)Button)DownloadButton) LinkButton)PageLink)gather_metrics) PagesManager)ScriptRunContextget_script_run_ctx) WidgetArgsWidgetCallback WidgetKwargsregister_widget)validate_icon_or_emoji)is_url) in_sidebar)DeltaGeneratorz For more information, refer to the [documentation for forms](https://docs.streamlit.io/develop/api-reference/execution-flow/st.form). r FORM_DOCS_INFOr DownloadButtonDataTypeceZdZddZddZy) ButtonSerdect|SN)bool)selfvs g/mnt/ssd/data/python-lab/Trading/venv/lib/python3.12/site-packages/streamlit/elements/widgets/button.py serializezButtonSerde.serializePs Awc|xsdS)NF)r6ui_values r8 deserializezButtonSerde.deserializeSs  5 r:N)r7r5returnr5)r= bool | Noner?r5)__name__ __module__ __qualname__r9r>r<r:r8r2r2Ns !r:r2ceZdZed ddddddd ddZed ddddddd dd Zed ddddddd  dd Zed ddddddd ddZ ddddddd ddZddddd ddZ dddddd d dZ d!dddddd d"dZ e d#dZ y)$ ButtonMixinbuttonN secondaryFcontent)typeicondisableduse_container_widthwidthct|}t} | | rdnd} |dvrtd|d|jj |||d|||| ||| |  S)uDisplay a button widget. Parameters ---------- label : str A short label explaining to the user what this button is for. The label can optionally contain GitHub-flavored Markdown of the following types: Bold, Italics, Strikethroughs, Inline Code, Links, and Images. Images display like icons, with a max height equal to the font height. Unsupported Markdown elements are unwrapped so only their children (text contents) render. Display unsupported elements as literal characters by backslash-escaping them. E.g., ``"1\. Not an ordered list"``. See the ``body`` parameter of |st.markdown|_ for additional, supported Markdown directives. .. |st.markdown| replace:: ``st.markdown`` .. _st.markdown: https://docs.streamlit.io/develop/api-reference/text/st.markdown key : str or int An optional string or integer to use as the unique key for the widget. If this is omitted, a key will be generated for the widget based on its content. No two widgets may have the same key. help : str or None A tooltip that gets displayed when the button is hovered over. If this is ``None`` (default), no tooltip is displayed. The tooltip can optionally contain GitHub-flavored Markdown, including the Markdown directives described in the ``body`` parameter of ``st.markdown``. on_click : callable An optional callback invoked when this button is clicked. args : list or tuple An optional list or tuple of args to pass to the callback. kwargs : dict An optional dict of kwargs to pass to the callback. type : "primary", "secondary", or "tertiary" An optional string that specifies the button type. This can be one of the following: - ``"primary"``: The button's background is the app's primary color for additional emphasis. - ``"secondary"`` (default): The button's background coordinates with the app's background color for normal emphasis. - ``"tertiary"``: The button is plain text without a border or background for subtlety. icon : str or None An optional emoji or icon to display next to the button label. If ``icon`` is ``None`` (default), no icon is displayed. If ``icon`` is a string, the following options are valid: - A single-character emoji. For example, you can set ``icon="🚨"`` or ``icon="🔥"``. Emoji short codes are not supported. - An icon from the Material Symbols library (rounded style) in the format ``":material/icon_name:"`` where "icon_name" is the name of the icon in snake case. For example, ``icon=":material/thumb_up:"`` will display the Thumb Up icon. Find additional icons in the `Material Symbols \ `_ font library. disabled : bool An optional boolean that disables the button if set to ``True``. The default is ``False``. use_container_width : bool Whether to expand the button's width to fill its parent container. If ``use_container_width`` is ``False`` (default), Streamlit sizes the button to fit its contents. If ``use_container_width`` is ``True``, the width of the button matches its parent container. In both cases, if the contents of the button are wider than the parent container, the contents will line wrap. .. deprecated:: ``use_container_width`` is deprecated and will be removed in a future release. For ``use_container_width=True``, use ``width="stretch"``. For ``use_container_width=False``, use ``width="content"``. width : "content", "stretch", or int The width of the button. This can be one of the following: - ``"content"`` (default): The width of the button matches the width of its content, but doesn't exceed the width of the parent container. - ``"stretch"``: The width of the button matches the width of the parent container. - An integer specifying the width in pixels: The button has a fixed width. If the specified width is greater than the width of the parent container, the width of the button matches the width of the parent container. Returns ------- bool True if the button was clicked on the last run of the app, False otherwise. Examples -------- **Example 1: Customize your button type** >>> import streamlit as st >>> >>> st.button("Reset", type="primary") >>> if st.button("Say hello"): ... st.write("Why hello there") ... else: ... st.write("Goodbye") >>> >>> if st.button("Aloha", type="tertiary"): ... st.write("Ciao") .. output:: https://doc-buton.streamlit.app/ height: 300px **Example 2: Add icons to your button** Although you can add icons to your buttons through Markdown, the ``icon`` parameter is a convenient and consistent alternative. >>> import streamlit as st >>> >>> left, middle, right = st.columns(3) >>> if left.button("Plain button", width="stretch"): ... left.markdown("You clicked the plain button.") >>> if middle.button("Emoji button", icon="😃", width="stretch"): ... middle.markdown("You clicked the emoji button.") >>> if right.button("Material button", icon=":material/mood:", width="stretch"): ... right.markdown("You clicked the Material button.") .. output:: https://doc-button-icons.streamlit.app/ height: 220px stretchrHprimaryrGtertiaryzhThe type argument to st.button must be "primary", "secondary", or "tertiary". The argument passed was "".F) is_form_submitteron_clickargskwargsrKrIrJctxrM)rr&rdg_button) r6labelkeyhelprUrVrWrIrJrKrLrMrXs r8rFzButtonMixin.buttonXsJSk "  *!4I)E ; ;'..2V27  ww   #  r:download_buttonc t}| | rdnd}| dvrtd| d|j||||||||| | | | ||S)u,Display a download button widget. This is useful when you would like to provide a way for your users to download a file directly from your app. Note that the data to be downloaded is stored in-memory while the user is connected, so it's a good idea to keep file sizes under a couple hundred megabytes to conserve memory. If you want to prevent your app from rerunning when a user clicks the download button, wrap the download button in a `fragment `_. Parameters ---------- label : str A short label explaining to the user what this button is for. The label can optionally contain GitHub-flavored Markdown of the following types: Bold, Italics, Strikethroughs, Inline Code, Links, and Images. Images display like icons, with a max height equal to the font height. Unsupported Markdown elements are unwrapped so only their children (text contents) render. Display unsupported elements as literal characters by backslash-escaping them. E.g., ``"1\. Not an ordered list"``. See the ``body`` parameter of |st.markdown|_ for additional, supported Markdown directives. .. |st.markdown| replace:: ``st.markdown`` .. _st.markdown: https://docs.streamlit.io/develop/api-reference/text/st.markdown data : str, bytes, or file The contents of the file to be downloaded. To prevent unncecessary recomputation, use caching when converting your data for download. For more information, see the Example 1 below. file_name: str An optional string to use as the name of the file to be downloaded, such as ``"my_file.csv"``. If not specified, the name will be automatically generated. mime : str or None The MIME type of the data. If this is ``None`` (default), Streamlit sets the MIME type depending on the value of ``data`` as follows: - If ``data`` is a string or textual file (i.e. ``str`` or ``io.TextIOWrapper`` object), Streamlit uses the "text/plain" MIME type. - If ``data`` is a binary file or bytes (i.e. ``bytes``, ``io.BytesIO``, ``io.BufferedReader``, or ``io.RawIOBase`` object), Streamlit uses the "application/octet-stream" MIME type. For more information about MIME types, see https://www.iana.org/assignments/media-types/media-types.xhtml. key : str or int An optional string or integer to use as the unique key for the widget. If this is omitted, a key will be generated for the widget based on its content. No two widgets may have the same key. help : str or None A tooltip that gets displayed when the button is hovered over. If this is ``None`` (default), no tooltip is displayed. The tooltip can optionally contain GitHub-flavored Markdown, including the Markdown directives described in the ``body`` parameter of ``st.markdown``. on_click : callable, "rerun", "ignore", or None How the button should respond to user interaction. This controls whether or not the button triggers a rerun and if a callback function is called. This can be one of the following values: - ``"rerun"`` (default): The user downloads the file and the app reruns. No callback function is called. - ``"ignore"``: The user downloads the file and the app doesn't rerun. No callback function is called. - A ``callable``: The user downloads the file and app reruns. The callable is called before the rest of the app. - ``None``: This is same as ``on_click="rerun"``. This value exists for backwards compatibility and shouldn't be used. args : list or tuple An optional list or tuple of args to pass to the callback. kwargs : dict An optional dict of kwargs to pass to the callback. type : "primary", "secondary", or "tertiary" An optional string that specifies the button type. This can be one of the following: - ``"primary"``: The button's background is the app's primary color for additional emphasis. - ``"secondary"`` (default): The button's background coordinates with the app's background color for normal emphasis. - ``"tertiary"``: The button is plain text without a border or background for subtlety. icon : str or None An optional emoji or icon to display next to the button label. If ``icon`` is ``None`` (default), no icon is displayed. If ``icon`` is a string, the following options are valid: - A single-character emoji. For example, you can set ``icon="🚨"`` or ``icon="🔥"``. Emoji short codes are not supported. - An icon from the Material Symbols library (rounded style) in the format ``":material/icon_name:"`` where "icon_name" is the name of the icon in snake case. For example, ``icon=":material/thumb_up:"`` will display the Thumb Up icon. Find additional icons in the `Material Symbols \ `_ font library. disabled : bool An optional boolean that disables the download button if set to ``True``. The default is ``False``. use_container_width : bool Whether to expand the button's width to fill its parent container. If ``use_container_width`` is ``False`` (default), Streamlit sizes the button to fit its contents. If ``use_container_width`` is ``True``, the width of the button matches its parent container. In both cases, if the contents of the button are wider than the parent container, the contents will line wrap. .. deprecated:: ``use_container_width`` is deprecated and will be removed in a future release. For ``use_container_width=True``, use ``width="stretch"``. For ``use_container_width=False``, use ``width="content"``. width : "content", "stretch", or int The width of the download button. This can be one of the following: - ``"content"`` (default): The width of the button matches the width of its content, but doesn't exceed the width of the parent container. - ``"stretch"``: The width of the button matches the width of the parent container. - An integer specifying the width in pixels: The button has a fixed width. If the specified width is greater than the width of the parent container, the width of the button matches the width of the parent container. Returns ------- bool True if the button was clicked on the last run of the app, False otherwise. Examples -------- **Example 1: Download a dataframe as a CSV file** When working with a large dataframe, it's recommended to fetch your data with a cached function. When working with a download button, it's similarly recommended to convert your data into a downloadable format with a cached function. Caching ensures that the app reruns efficiently. >>> import streamlit as st >>> import pandas as pd >>> import numpy as np >>> >>> @st.cache_data >>> def get_data(): >>> df = pd.DataFrame( ... np.random.randn(50, 20), columns=("col %d" % i for i in range(20)) ... ) >>> return df >>> >>> @st.cache_data >>> def convert_for_download(df): >>> return df.to_csv().encode("utf-8") >>> >>> df = get_data() >>> csv = convert_for_download(df) >>> >>> st.download_button( ... label="Download CSV", ... data=csv, ... file_name="data.csv", ... mime="text/csv", ... icon=":material/download:", ... ) .. output:: https://doc-download-button-csv.streamlit.app/ height: 200px **Example 2: Download a string as a text file** If you pass a string to the ``data`` argument, Streamlit will automatically use the "text/plain" MIME type. When you have a widget (like a text area) affecting the value of your download, it's recommended to use another button to prepare the download. In this case, use ``on_click="ignore"`` in your download button to prevent the download button from rerunning your app. This turns the download button into a frontend-only element that can be nested in another button. Without a preparation button, a user can type something into the text area and immediately click the download button. Because a download is initiated concurrently with the app rerun, this can create a race-like condition where the user doesn't see the updated data in their download. .. important:: Even when you prevent your download button from triggering a rerun, another widget with a pending change can still trigger a rerun. For example, if a text area has a pending change when a user clicks a download button, the text area will trigger a rerun. >>> import streamlit as st >>> >>> message = st.text_area("Message", value="Lorem ipsum.\nStreamlit is cool.") >>> >>> if st.button("Prepare download"): >>> st.download_button( ... label="Download text", ... data=message, ... file_name="message.txt", ... on_click="ignore", ... type="primary", ... icon=":material/download:", ... ) .. output:: https://doc-download-button-text.streamlit.app/ height: 250px **Example 3: Download a file** Use a context manager to open and read a local file on your Streamlit server. Pass the ``io.BufferedReader`` object directly to ``data``. Remember to specify the MIME type if you don't want the default type of ``"application/octet-stream"`` for generic binary data. In the example below, the MIME type is set to ``"image/png"`` for a PNG file. >>> import streamlit as st >>> >>> with open("flower.png", "rb") as file: ... st.download_button( ... label="Download image", ... data=file, ... file_name="flower.png", ... mime="image/png", ... ) .. output:: https://doc-download-button-file.streamlit.app/ height: 200px rOrHrPzqThe type argument to st.download_button must be "primary", "secondary", or "tertiary". The argument passed was "rS)r[data file_namemimer\r]rUrVrWrIrJrKrXrM)r&r_download_button)r6r[r`rarbr\r]rUrVrWrIrJrKrLrMrXs r8r^zButtonMixin.download_buttonst!"  *!4I)E ; ;',,065  $$%  r: link_button)r]rIrJrKrLrMc h|dvrtd|d||rdnd}|j|||||||S)uDisplay a link button element. When clicked, a new tab will be opened to the specified URL. This will create a new session for the user if directed within the app. Parameters ---------- label : str A short label explaining to the user what this button is for. The label can optionally contain GitHub-flavored Markdown of the following types: Bold, Italics, Strikethroughs, Inline Code, Links, and Images. Images display like icons, with a max height equal to the font height. Unsupported Markdown elements are unwrapped so only their children (text contents) render. Display unsupported elements as literal characters by backslash-escaping them. E.g., ``"1\. Not an ordered list"``. See the ``body`` parameter of |st.markdown|_ for additional, supported Markdown directives. .. |st.markdown| replace:: ``st.markdown`` .. _st.markdown: https://docs.streamlit.io/develop/api-reference/text/st.markdown url : str The url to be opened on user click help : str or None A tooltip that gets displayed when the button is hovered over. If this is ``None`` (default), no tooltip is displayed. The tooltip can optionally contain GitHub-flavored Markdown, including the Markdown directives described in the ``body`` parameter of ``st.markdown``. type : "primary", "secondary", or "tertiary" An optional string that specifies the button type. This can be one of the following: - ``"primary"``: The button's background is the app's primary color for additional emphasis. - ``"secondary"`` (default): The button's background coordinates with the app's background color for normal emphasis. - ``"tertiary"``: The button is plain text without a border or background for subtlety. icon : str or None An optional emoji or icon to display next to the button label. If ``icon`` is ``None`` (default), no icon is displayed. If ``icon`` is a string, the following options are valid: - A single-character emoji. For example, you can set ``icon="🚨"`` or ``icon="🔥"``. Emoji short codes are not supported. - An icon from the Material Symbols library (rounded style) in the format ``":material/icon_name:"`` where "icon_name" is the name of the icon in snake case. For example, ``icon=":material/thumb_up:"`` will display the Thumb Up icon. Find additional icons in the `Material Symbols \ `_ font library. disabled : bool An optional boolean that disables the link button if set to ``True``. The default is ``False``. use_container_width : bool Whether to expand the button's width to fill its parent container. If ``use_container_width`` is ``False`` (default), Streamlit sizes the button to fit its contents. If ``use_container_width`` is ``True``, the width of the button matches its parent container. In both cases, if the contents of the button are wider than the parent container, the contents will line wrap. .. deprecated:: ``use_container_width`` is deprecated and will be removed in a future release. For ``use_container_width=True``, use ``width="stretch"``. For ``use_container_width=False``, use ``width="content"``. width : "content", "stretch", or int The width of the link button. This can be one of the following: - ``"content"`` (default): The width of the button matches the width of its content, but doesn't exceed the width of the parent container. - ``"stretch"``: The width of the button matches the width of the parent container. - An integer specifying the width in pixels: The button has a fixed width. If the specified width is greater than the width of the parent container, the width of the button matches the width of the parent container. Example ------- >>> import streamlit as st >>> >>> st.link_button("Go to gallery", "https://streamlit.io/gallery") .. output:: https://doc-link-button.streamlit.app/ height: 200px rPzmThe type argument to st.link_button must be "primary", "secondary", or "tertiary". The argument passed was "rSrOrH)r[urlr]rKrIrJrM)r _link_button) r6r[rfr]rIrJrKrLrMs r8rdzButtonMixin.link_buttonOsjr ; ;'..2V27   *!4I)E  !  r: page_link)r[rJr]rKrLrMcn||rdnd}t|jrd}|j||||||S)uDisplay a link to another page in a multipage app or to an external page. If another page in a multipage app is specified, clicking ``st.page_link`` stops the current page execution and runs the specified page as if the user clicked on it in the sidebar navigation. If an external page is specified, clicking ``st.page_link`` opens a new tab to the specified page. The current script run will continue if not complete. Parameters ---------- page : str, Path, or StreamlitPage The file path (relative to the main script) or a ``StreamlitPage`` indicating the page to switch to. Alternatively, this can be the URL to an external page (must start with "http://" or "https://"). label : str The label for the page link. Labels are required for external pages. The label can optionally contain GitHub-flavored Markdown of the following types: Bold, Italics, Strikethroughs, Inline Code, Links, and Images. Images display like icons, with a max height equal to the font height. Unsupported Markdown elements are unwrapped so only their children (text contents) render. Display unsupported elements as literal characters by backslash-escaping them. E.g., ``"1\. Not an ordered list"``. See the ``body`` parameter of |st.markdown|_ for additional, supported Markdown directives. .. |st.markdown| replace:: ``st.markdown`` .. _st.markdown: https://docs.streamlit.io/develop/api-reference/text/st.markdown icon : str or None An optional emoji or icon to display next to the button label. If ``icon`` is ``None`` (default), the icon is inferred from the ``StreamlitPage`` object or no icon is displayed. If ``icon`` is a string, the following options are valid: - A single-character emoji. For example, you can set ``icon="🚨"`` or ``icon="🔥"``. Emoji short codes are not supported. - An icon from the Material Symbols library (rounded style) in the format ``":material/icon_name:"`` where "icon_name" is the name of the icon in snake case. For example, ``icon=":material/thumb_up:"`` will display the Thumb Up icon. Find additional icons in the `Material Symbols \ `_ font library. help : str or None A tooltip that gets displayed when the link is hovered over. If this is ``None`` (default), no tooltip is displayed. The tooltip can optionally contain GitHub-flavored Markdown, including the Markdown directives described in the ``body`` parameter of ``st.markdown``. disabled : bool An optional boolean that disables the page link if set to ``True``. The default is ``False``. use_container_width : bool Whether to expand the link's width to fill its parent container. The default is ``True`` for page links in the sidebar and ``False`` for those in the main app. .. deprecated:: ``use_container_width`` is deprecated and will be removed in a future release. For ``use_container_width=True``, use ``width="stretch"``. For ``use_container_width=False``, use ``width="content"``. width : "content", "stretch", or int The width of the page-link button. This can be one of the following: - ``"content"`` (default): The width of the button matches the width of its content, but doesn't exceed the width of the parent container. - ``"stretch"``: The width of the button matches the width of the parent container. - An integer specifying the width in pixels: The button has a fixed width. If the specified width is greater than the width of the parent container, the width of the button matches the width of the parent container. Example ------- Consider the following example given this file structure: >>> your-repository/ >>> ├── pages/ >>> │ ├── page_1.py >>> │ └── page_2.py >>> └── your_app.py >>> import streamlit as st >>> >>> st.page_link("your_app.py", label="Home", icon="🏠") >>> st.page_link("pages/page_1.py", label="Page 1", icon="1️⃣") >>> st.page_link("pages/page_2.py", label="Page 2", icon="2️⃣", disabled=True) >>> st.page_link("http://www.google.com", label="Google", icon="🌎") The default navigation is shown here for comparison, but you can hide the default navigation using the |client.showSidebarNavigation|_ configuration option. This allows you to create custom, dynamic navigation menus for your apps! .. |client.showSidebarNavigation| replace:: ``client.showSidebarNavigation`` .. _client.showSidebarNavigation: https://docs.streamlit.io/develop/api-reference/configuration/config.toml#client .. output :: https://doc-page-link.streamlit.app/ height: 350px rOrH)pager[rJr]rKrM)r-rY _page_link)r6rjr[rJr]rKrLrMs r8rhzButtonMixin.page_linksMF  *!4I)E dgg E   r:)rIrJrKrXrMc  t|}||dvrdn td|}t|j||ddt d|d|j|| |||| | }t |jrt dtt}||_ ||_ d|_ | |_ t|jj||||| |_|t!||_| t%| |_|d k(rd|_nd|_t+}t-|j||| |j.|j0| d }t3|d t5| }|jj7d|||j8S)N>rerunignorer(F) on_change default_valuewrites_allowedr^T) user_keykey_as_main_identityrYr[rJrarbr]rIrMz7`st.download_button()` can't be used in an `st.form()`.rn trigger_valueon_change_handlerrVrW deserializer serializerrX value_type allow_contentrM layout_config)rr rrYrrrr/DownloadButtonProtoidr[defaultrI marshall_file_get_delta_path_strrKrr]r+rJ ignore_rerunr2r*r>r9rr_enqueuevalue)r6r[r`rarbr\r]rUrVrWrIrJrKrXrMon_click_callback element_iddownload_button_protoserde button_stater~s r8rczButtonMixin._download_buttonns$Sk8/B#B &1   GG '  5 !%ww   dgg 'I.IYZ !4 5#- &+#(-%%)" GG ' ' )41Fi *2&  )/ ! &  )?)E ! & x 15 ! .16 ! . & ! $ $/**&   uD1$51   4M  !!!r:)rIrJrKrMct}||_||_||_||_|t ||_|t||_t|dt|} |jjd|| S)NTrzr|rdr}) LinkButtonProtor[rfrIrKrr]r+rJrrrYr) r6r[rfr]rIrJrKrMlink_button_protor~s r8rgzButtonMixin._link_buttons,-"' #!%%-"  %+D\  "  %;D%A  "uD1$51 ww ,M   r:)r[rJr]rKrMct}t|dt}|s*t|} |jj d|| S||_|||_|t||_ |t||_ t|trK|j|_|j |_||j$|_|Y|j|_ nFt|t&r t)|}t+|rI||dk(r t-||_d|_t|} |jj d|| Sd} i} |j0} |j2j5} t7| } t8j:j=t?| |} | jAD]2}|d}|d}|d }| |k(s|||_|d |_||_n|jdk(r%tC|| tEtFjH t|} |jj d|| S) NTrzr|rhr} script_path page_name url_pathnamepage_script_hash)rjmain_script_directoryuses_pages_directory)% PageLinkProtorr&rrYrrKr[r+rJrr] isinstancer _script_hashrurl_pathrjtitlerstrr,rexternalmain_script_path pages_manager get_pagesrospathrealpathrvaluesrr5r$r)r6rjr[rJr]rKrMpage_link_protorXr~ctx_main_script all_app_pagesrrequested_page page_data full_pathrrs r8rkzButtonMixin._page_linksZ(/uD1 "(u5M77##_M$ $,  $)O !  #9$#?O  #)$r9rrrrr)r6r[r\r]rTrUrVrWrIrJrKrXrMrr button_protorrr~s r8rZzButtonMixin._buttonCs Sk GG   ,=(=  /@/$''*R4$5 8!%ww/  $ >> $''"+<+D^DTUdgg&+<+STbScd#} $ " $ ): &&   (    &t L    6t rs # !ISSA  O3<THB98O 9%%8 %(%K&$88$Cbll$R R !! !M,M,j"! .).) .)/.) .)  .)  .)r: