diff --git a/cosmic/app/cosmic/index.html b/cosmic/app/cosmic/index.html index 6e905ebb690..9f48514d37b 100644 --- a/cosmic/app/cosmic/index.html +++ b/cosmic/app/cosmic/index.html @@ -1,2 +1,2 @@ cosmic::app::cosmic - Rust -

Module cosmic::app::cosmic

source ·

Structs

Enums

  • A message managed internally by COSMIC.
\ No newline at end of file +

Module cosmic::app::cosmic

source ·

Structs

Enums

  • A message managed internally by COSMIC.
\ No newline at end of file diff --git a/cosmic/app/cosmic/struct.Cosmic.html b/cosmic/app/cosmic/struct.Cosmic.html index 51d4cd2d566..bc38ff5310c 100644 --- a/cosmic/app/cosmic/struct.Cosmic.html +++ b/cosmic/app/cosmic/struct.Cosmic.html @@ -1,7 +1,7 @@ Cosmic in cosmic::app::cosmic - Rust

Struct cosmic::app::cosmic::Cosmic

source ·
pub struct Cosmic<App> {
     pub app: App,
-}

Fields§

§app: App

Implementations§

source§

impl<T: Application> Cosmic<T>

source

pub fn close(&mut self) -> Command<Message<T::Message>>

source§

impl<App: Application> Cosmic<App>

source

pub fn new(app: App) -> Self

Trait Implementations§

source§

impl<T: Application> Application for Cosmic<T>
where +}

Fields§

§app: App

Implementations§

source§

impl<T: Application> Cosmic<T>

source

pub fn close(&mut self) -> Command<Message<T::Message>>

source§

impl<App: Application> Cosmic<App>

source

pub fn new(app: App) -> Self

Trait Implementations§

source§

impl<T: Application> Application for Cosmic<T>
where T::Message: Send + 'static,

§

type Executor = <T as Application>::Executor

The Executor that will run commands and subscriptions. Read more
§

type Flags = (Core, <T as Application>::Flags)

The data needed to initialize your Application.
§

type Message = Message<<T as Application>::Message>

The type of messages your Application will produce.
§

type Theme = Theme

The theme of your Application.
source§

fn new((core, flags): Self::Flags) -> (Self, Command<Self::Message>)

Initializes the Application with the flags provided to run as part of the Settings. Read more
source§

fn title(&self) -> String

Returns the current title of the Application. Read more
source§

fn update(&mut self, message: Self::Message) -> Command<Self::Message>

Handles a message and updates the state of the Application. Read more
source§

fn scale_factor(&self) -> f64

Returns the scale factor of the Application. Read more
source§

fn style(&self) -> <Self::Theme as StyleSheet>::Style

Returns the current Style of the Theme.
source§

fn subscription(&self) -> Subscription<Self::Message>

Returns the event Subscription for the current state of the application. Read more
source§

fn theme(&self) -> Self::Theme

Returns the current Theme of the Application.
source§

fn view(&self) -> Element<'_, Self::Message>

Returns the widgets to display in the Application. Read more
source§

fn run(settings: Settings<Self::Flags>) -> Result<(), Error>
where diff --git a/cosmic/app/enum.DbusActivationDetails.html b/cosmic/app/enum.DbusActivationDetails.html index 7d111f7e695..94efe9da12b 100644 --- a/cosmic/app/enum.DbusActivationDetails.html +++ b/cosmic/app/enum.DbusActivationDetails.html @@ -1,5 +1,5 @@ DbusActivationDetails in cosmic::app - Rust -
pub enum DbusActivationDetails<Action = String, Args = Vec<String>> {
+    
pub enum DbusActivationDetails<Action = String, Args = Vec<String>> {
     Activate,
     Open {
         url: Vec<Url>,
@@ -9,7 +9,7 @@
         args: Args,
     },
 }

Variants§

§

Activate

§

Open

Fields

§url: Vec<Url>
§

ActivateAction

Fields

§action: Action
§args: Args

action can be deserialized as Flags

-

Trait Implementations§

source§

impl<Action: Clone, Args: Clone> Clone for DbusActivationDetails<Action, Args>

source§

fn clone(&self) -> DbusActivationDetails<Action, Args>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Action: Debug, Args: Debug> Debug for DbusActivationDetails<Action, Args>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<Action, Args> RefUnwindSafe for DbusActivationDetails<Action, Args>
where +

Trait Implementations§

source§

impl<Action: Clone, Args: Clone> Clone for DbusActivationDetails<Action, Args>

source§

fn clone(&self) -> DbusActivationDetails<Action, Args>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Action: Debug, Args: Debug> Debug for DbusActivationDetails<Action, Args>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<Action, Args> RefUnwindSafe for DbusActivationDetails<Action, Args>
where Action: RefUnwindSafe, Args: RefUnwindSafe,

§

impl<Action, Args> Send for DbusActivationDetails<Action, Args>
where Action: Send, diff --git a/cosmic/app/fn.run.html b/cosmic/app/fn.run.html index a04ed25fc4e..e0eb27c24b7 100644 --- a/cosmic/app/fn.run.html +++ b/cosmic/app/fn.run.html @@ -1,5 +1,5 @@ run in cosmic::app - Rust -

Function cosmic::app::run

source ·
pub fn run<App: Application>(settings: Settings, flags: App::Flags) -> Result
Expand description

Launch a COSMIC application with the given Settings.

+

Function cosmic::app::run

source ·
pub fn run<App: Application>(settings: Settings, flags: App::Flags) -> Result
Expand description

Launch a COSMIC application with the given Settings.

Errors

Returns error on application failure.

\ No newline at end of file diff --git a/cosmic/app/index.html b/cosmic/app/index.html index dc36e9d5c50..75f79fa4cfe 100644 --- a/cosmic/app/index.html +++ b/cosmic/app/index.html @@ -1,5 +1,5 @@ cosmic::app - Rust -

Module cosmic::app

source ·
Expand description

Build interactive cross-platform COSMIC applications.

+

Module cosmic::app

source ·
Expand description

Build interactive cross-platform COSMIC applications.

Check out our application example in our repository.

Re-exports

Modules

Structs

  • COSMIC-specific application settings

Enums

Traits

Functions

  • Launch a COSMIC application with the given Settings.
\ No newline at end of file diff --git a/cosmic/app/struct.Core.html b/cosmic/app/struct.Core.html index 0b46c07c05c..2f920767750 100644 --- a/cosmic/app/struct.Core.html +++ b/cosmic/app/struct.Core.html @@ -1,28 +1,28 @@ Core in cosmic::app - Rust -

Struct cosmic::app::Core

source ·
pub struct Core {
+    

Struct cosmic::app::Core

source ·
pub struct Core {
     pub debug: bool,
     pub window: Window,
     /* private fields */
 }
Expand description

COSMIC-specific application settings

Fields§

§debug: bool

Enables debug features in cosmic/iced.

-
§window: Window

Implementations§

source§

impl Core

source

pub fn is_condensed(&self) -> bool

Whether the window is too small for the nav bar + main content.

-
source

pub fn scale_factor(&self) -> f32

The scaling factor used by the application.

-
source

pub fn set_keyboard_nav(&mut self, enabled: bool)

Enable or disable keyboard navigation

-
source

pub fn keyboard_nav(&self) -> bool

Enable or disable keyboard navigation

-
source

pub fn set_context_title(&mut self, title: String)

Set context drawer header title

-
source

pub fn set_header_title(&mut self, title: String)

Set header bar title

-
source

pub fn nav_bar_active(&self) -> bool

Whether the nav panel is visible or not

-
source

pub fn nav_bar_toggle(&mut self)

source

pub fn nav_bar_toggle_condensed(&mut self)

source

pub fn nav_bar_set_toggled(&mut self, toggled: bool)

source

pub fn system_theme(&self) -> &Theme

Get the current system theme

-
source

pub fn system_theme_mode(&self) -> ThemeMode

Get the current system theme mode

-
source

pub fn watch_config<T: CosmicConfigEntry + Send + Sync + Default + 'static + Clone + PartialEq>( +

§window: Window

Implementations§

source§

impl Core

source

pub fn is_condensed(&self) -> bool

Whether the window is too small for the nav bar + main content.

+
source

pub fn scale_factor(&self) -> f32

The scaling factor used by the application.

+
source

pub fn set_keyboard_nav(&mut self, enabled: bool)

Enable or disable keyboard navigation

+
source

pub fn keyboard_nav(&self) -> bool

Enable or disable keyboard navigation

+
source

pub fn set_context_title(&mut self, title: String)

Set context drawer header title

+
source

pub fn set_header_title(&mut self, title: String)

Set header bar title

+
source

pub fn nav_bar_active(&self) -> bool

Whether the nav panel is visible or not

+
source

pub fn nav_bar_toggle(&mut self)

source

pub fn nav_bar_toggle_condensed(&mut self)

source

pub fn nav_bar_set_toggled(&mut self, toggled: bool)

source

pub fn system_theme(&self) -> &Theme

Get the current system theme

+
source

pub fn system_theme_mode(&self) -> ThemeMode

Get the current system theme mode

+
source

pub fn watch_config<T: CosmicConfigEntry + Send + Sync + Default + 'static + Clone + PartialEq>( &self, config_id: &'static str -) -> Subscription<Update<T>>

source

pub fn watch_state<T: CosmicConfigEntry + Send + Sync + Default + 'static + Clone + PartialEq>( +) -> Subscription<Update<T>>

source

pub fn watch_state<T: CosmicConfigEntry + Send + Sync + Default + 'static + Clone + PartialEq>( &self, state_id: &'static str -) -> Subscription<Update<T>>

source

pub fn focused_window(&self) -> Option<Id>

Get the current focused window if it exists

-
source

pub fn system_is_dark(&self) -> bool

Whether the application should use a dark theme, according to the system

-

Trait Implementations§

source§

impl Clone for Core

source§

fn clone(&self) -> Core

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for Core

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for Core

§

impl Send for Core

§

impl Sync for Core

§

impl Unpin for Core

§

impl UnwindSafe for Core

Blanket Implementations§

source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where +) -> Subscription<Update<T>>

source

pub fn focused_window(&self) -> Option<Id>

Get the current focused window if it exists

+
source

pub fn system_is_dark(&self) -> bool

Whether the application should use a dark theme, according to the system

+

Trait Implementations§

source§

impl Clone for Core

source§

fn clone(&self) -> Core

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for Core

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for Core

§

impl Send for Core

§

impl Sync for Core

§

impl Unpin for Core

§

impl UnwindSafe for Core

Blanket Implementations§

source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where T: Real + Zero + Arithmetics + Clone, Swp: WhitePoint<T>, Dwp: WhitePoint<T>, diff --git a/cosmic/app/trait.Application.html b/cosmic/app/trait.Application.html index 46565105570..2ec411117e0 100644 --- a/cosmic/app/trait.Application.html +++ b/cosmic/app/trait.Application.html @@ -1,5 +1,5 @@ Application in cosmic::app - Rust -

Trait cosmic::app::Application

source ·
pub trait Application
where +

Trait cosmic::app::Application

source ·
pub trait Application
where Self: Sized + 'static,
{ type Executor: Executor; type Flags; @@ -50,45 +50,45 @@ fn view_window(&self, id: Id) -> Element<'_, Self::Message> { ... } fn style(&self) -> Option<<Theme as StyleSheet>::Style> { ... }

}
Expand description

An interactive cross-platform COSMIC application.

-

Required Associated Types§

source

type Executor: Executor

Default async executor to use with the app.

-
source

type Flags

Argument received [Application::new].

-
source

type Message: Clone + Debug + Send + 'static

Message type specific to our app.

-

Required Associated Constants§

source

const APP_ID: &'static str

An ID that uniquely identifies the application. +

Required Associated Types§

source

type Executor: Executor

Default async executor to use with the app.

+
source

type Flags

Argument received [Application::new].

+
source

type Message: Clone + Debug + Send + 'static

Message type specific to our app.

+

Required Associated Constants§

source

const APP_ID: &'static str

An ID that uniquely identifies the application. The standard is to pick an ID based on a reverse-domain name notation. IE: com.system76.Settings

-

Required Methods§

source

fn core(&self) -> &Core

Grants access to the COSMIC Core.

-
source

fn core_mut(&mut self) -> &mut Core

Grants access to the COSMIC Core.

-
source

fn init( +

Required Methods§

source

fn core(&self) -> &Core

Grants access to the COSMIC Core.

+
source

fn core_mut(&mut self) -> &mut Core

Grants access to the COSMIC Core.

+
source

fn init( core: Core, flags: Self::Flags ) -> (Self, Command<Message<Self::Message>>)

Creates the application, and optionally emits command on initialize.

-
source

fn view(&self) -> Element<'_, Self::Message>

Constructs the view for the main window.

-

Provided Methods§

source

fn context_drawer(&self) -> Option<Element<'_, Self::Message>>

Displays a context drawer on the side of the application window when Some.

-
source

fn dialog(&self) -> Option<Element<'_, Self::Message>>

Displays a dialog in the center of the application window when Some.

-
source

fn header_start(&self) -> Vec<Element<'_, Self::Message>>

Attaches elements to the start section of the header.

-
source

fn header_center(&self) -> Vec<Element<'_, Self::Message>>

Attaches elements to the center of the header.

-
source

fn header_end(&self) -> Vec<Element<'_, Self::Message>>

Attaches elements to the end section of the header.

-
source

fn main_window_id(&self) -> Id

Get the main window::Id, which is window::Id::MAIN by default

-
source

fn nav_bar(&self) -> Option<Element<'_, Message<Self::Message>>>

Allows overriding the default nav bar widget

-
source

fn nav_model(&self) -> Option<&Model>

Allows COSMIC to integrate with your application’s nav_bar::Model.

-
source

fn on_app_exit(&mut self)

Called before closing the application.

-
source

fn on_close_requested(&self, id: Id) -> Option<Self::Message>

Called when a window requests to be closed.

-
source

fn on_context_drawer(&mut self) -> Command<Message<Self::Message>>

source

fn on_escape(&mut self) -> Command<Message<Self::Message>>

Called when the escape key is pressed.

-
source

fn on_nav_select(&mut self, id: Id) -> Command<Message<Self::Message>>

Called when a navigation item is selected.

-

Called when the search function is requested.

-
source

fn on_window_resize(&mut self, id: Id, width: u32, height: u32)

Called when a window is resized.

-
source

fn subscription(&self) -> Subscription<Self::Message>

Event sources that are to be listened to.

-
source

fn update(&mut self, message: Self::Message) -> Command<Message<Self::Message>>

Respond to an application-specific message.

-
source

fn system_theme_update( +

source

fn view(&self) -> Element<'_, Self::Message>

Constructs the view for the main window.

+

Provided Methods§

source

fn context_drawer(&self) -> Option<Element<'_, Self::Message>>

Displays a context drawer on the side of the application window when Some.

+
source

fn dialog(&self) -> Option<Element<'_, Self::Message>>

Displays a dialog in the center of the application window when Some.

+
source

fn header_start(&self) -> Vec<Element<'_, Self::Message>>

Attaches elements to the start section of the header.

+
source

fn header_center(&self) -> Vec<Element<'_, Self::Message>>

Attaches elements to the center of the header.

+
source

fn header_end(&self) -> Vec<Element<'_, Self::Message>>

Attaches elements to the end section of the header.

+
source

fn main_window_id(&self) -> Id

Get the main window::Id, which is window::Id::MAIN by default

+
source

fn nav_bar(&self) -> Option<Element<'_, Message<Self::Message>>>

Allows overriding the default nav bar widget

+
source

fn nav_model(&self) -> Option<&Model>

Allows COSMIC to integrate with your application’s nav_bar::Model.

+
source

fn on_app_exit(&mut self)

Called before closing the application.

+
source

fn on_close_requested(&self, id: Id) -> Option<Self::Message>

Called when a window requests to be closed.

+
source

fn on_context_drawer(&mut self) -> Command<Message<Self::Message>>

source

fn on_escape(&mut self) -> Command<Message<Self::Message>>

Called when the escape key is pressed.

+
source

fn on_nav_select(&mut self, id: Id) -> Command<Message<Self::Message>>

Called when a navigation item is selected.

+

Called when the search function is requested.

+
source

fn on_window_resize(&mut self, id: Id, width: u32, height: u32)

Called when a window is resized.

+
source

fn subscription(&self) -> Subscription<Self::Message>

Event sources that are to be listened to.

+
source

fn update(&mut self, message: Self::Message) -> Command<Message<Self::Message>>

Respond to an application-specific message.

+
source

fn system_theme_update( &mut self, keys: &[&'static str], new_theme: &Theme ) -> Command<Message<Self::Message>>

Respond to a system theme change

-
source

fn system_theme_mode_update( +

source

fn system_theme_mode_update( &mut self, keys: &[&'static str], new_theme: &ThemeMode ) -> Command<Message<Self::Message>>

Respond to a system theme mode change

-
source

fn view_window(&self, id: Id) -> Element<'_, Self::Message>

Constructs views for other windows.

-
source

fn style(&self) -> Option<<Theme as StyleSheet>::Style>

Overrides the default style for applications

+
source

fn view_window(&self, id: Id) -> Element<'_, Self::Message>

Constructs views for other windows.

+
source

fn style(&self) -> Option<<Theme as StyleSheet>::Style>

Overrides the default style for applications

Object Safety§

This trait is not object safe.

Implementors§

\ No newline at end of file diff --git a/cosmic/app/trait.ApplicationExt.html b/cosmic/app/trait.ApplicationExt.html index 5b79d3bcd37..edea020badb 100644 --- a/cosmic/app/trait.ApplicationExt.html +++ b/cosmic/app/trait.ApplicationExt.html @@ -1,5 +1,5 @@ ApplicationExt in cosmic::app - Rust -
pub trait ApplicationExt: Application {
+    
pub trait ApplicationExt: Application {
     // Required methods
     fn drag(&mut self) -> Command<Message<Self::Message>>;
     fn maximize(&mut self) -> Command<Message<Self::Message>>;
@@ -15,12 +15,12 @@
     fn set_context_title(&mut self, title: String) { ... }
     fn set_header_title(&mut self, title: String) { ... }
 }
Expand description

Methods automatically derived for all types implementing Application.

-

Required Methods§

source

fn drag(&mut self) -> Command<Message<Self::Message>>

Initiates a window drag.

-
source

fn maximize(&mut self) -> Command<Message<Self::Message>>

Maximizes the window.

-
source

fn minimize(&mut self) -> Command<Message<Self::Message>>

Minimizes the window.

-
source

fn title(&self) -> &str

Get the title of the main window.

-
source

fn set_window_title(&mut self, title: String) -> Command<Message<Self::Message>>

Set the title of the main window.

-
source

fn view_main(&self) -> Element<'_, Message<Self::Message>>

View template for the main window.

-

Provided Methods§

source

fn set_context_title(&mut self, title: String)

Set the context drawer title.

-
source

fn set_header_title(&mut self, title: String)

Set the header bar title.

-

Object Safety§

This trait is not object safe.

Implementors§

\ No newline at end of file +

Required Methods§

source

fn drag(&mut self) -> Command<Message<Self::Message>>

Initiates a window drag.

+
source

fn maximize(&mut self) -> Command<Message<Self::Message>>

Maximizes the window.

+
source

fn minimize(&mut self) -> Command<Message<Self::Message>>

Minimizes the window.

+
source

fn title(&self) -> &str

Get the title of the main window.

+
source

fn set_window_title(&mut self, title: String) -> Command<Message<Self::Message>>

Set the title of the main window.

+
source

fn view_main(&self) -> Element<'_, Message<Self::Message>>

View template for the main window.

+

Provided Methods§

source

fn set_context_title(&mut self, title: String)

Set the context drawer title.

+
source

fn set_header_title(&mut self, title: String)

Set the header bar title.

+

Object Safety§

This trait is not object safe.

Implementors§

\ No newline at end of file diff --git a/cosmic/app/trait.CosmicFlags.html b/cosmic/app/trait.CosmicFlags.html index 0502c4c46cf..b8a119275fb 100644 --- a/cosmic/app/trait.CosmicFlags.html +++ b/cosmic/app/trait.CosmicFlags.html @@ -1,9 +1,9 @@ CosmicFlags in cosmic::app - Rust -

Trait cosmic::app::CosmicFlags

source ·
pub trait CosmicFlags {
+    

Trait cosmic::app::CosmicFlags

source ·
pub trait CosmicFlags {
     type SubCommand: ToString + Debug + Clone + Send + 'static;
     type Args: Into<Vec<String>> + Debug + Clone + Send + 'static;
 
     // Provided methods
     fn action(&self) -> Option<&Self::SubCommand> { ... }
     fn args(&self) -> Vec<&str> { ... }
-}

Required Associated Types§

source

type SubCommand: ToString + Debug + Clone + Send + 'static

source

type Args: Into<Vec<String>> + Debug + Clone + Send + 'static

Provided Methods§

source

fn action(&self) -> Option<&Self::SubCommand>

source

fn args(&self) -> Vec<&str>

Implementors§

\ No newline at end of file +}

Required Associated Types§

source

type SubCommand: ToString + Debug + Clone + Send + 'static

source

type Args: Into<Vec<String>> + Debug + Clone + Send + 'static

Provided Methods§

source

fn action(&self) -> Option<&Self::SubCommand>

source

fn args(&self) -> Vec<&str>

Implementors§

\ No newline at end of file diff --git a/cosmic/config/toolkit/index.html b/cosmic/config/toolkit/index.html index 2b4ddb8826d..f14a1a90749 100644 --- a/cosmic/config/toolkit/index.html +++ b/cosmic/config/toolkit/index.html @@ -1,3 +1,3 @@ cosmic::config::toolkit - Rust -

Module cosmic::config::toolkit

source ·
Expand description

Configurations for the libcosmic toolkit.

+

Module cosmic::config::toolkit

source ·
Expand description

Configurations for the libcosmic toolkit.

Structs

Constants

  • ID for the CosmicTk config.
\ No newline at end of file diff --git a/cosmic/config/toolkit/struct.CosmicTk.html b/cosmic/config/toolkit/struct.CosmicTk.html index 062188cfe2b..86a8ee8b178 100644 --- a/cosmic/config/toolkit/struct.CosmicTk.html +++ b/cosmic/config/toolkit/struct.CosmicTk.html @@ -1,9 +1,11 @@ -CosmicTk in cosmic::config::toolkit - Rust -

Struct cosmic::config::toolkit::CosmicTk

source ·
pub struct CosmicTk {
+CosmicTk in cosmic::config::toolkit - Rust
+    

Struct cosmic::config::toolkit::CosmicTk

source ·
pub struct CosmicTk {
     pub show_minimize: bool,
     pub show_maximize: bool,
+    pub icon_theme: String,
 }

Fields§

§show_minimize: bool

Show minimize button in window header.

§show_maximize: bool

Show maximize button in window header.

+
§icon_theme: String

Preferred icon theme

Implementations§

source§

impl CosmicTk

source

pub fn set_show_minimize( &mut self, config: &Config, @@ -16,11 +18,17 @@ value: bool ) -> Result<bool, Error>

Sets CosmicTk::show_maximize and writes to cosmic_config::Config if changed

Returns Ok(true) when the field’s value has changed and was written to disk

-
source§

impl CosmicTk

Trait Implementations§

source§

impl Clone for CosmicTk

source§

fn clone(&self) -> CosmicTk

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl CosmicConfigEntry for CosmicTk

source§

const VERSION: u64 = 1u64

source§

fn write_entry(&self, config: &Config) -> Result<(), Error>

source§

fn get_entry(config: &Config) -> Result<Self, (Vec<Error>, Self)>

source§

fn update_keys<T: AsRef<str>>( +

source

pub fn set_icon_theme( + &mut self, + config: &Config, + value: String +) -> Result<bool, Error>

Sets CosmicTk::icon_theme and writes to cosmic_config::Config if changed

+

Returns Ok(true) when the field’s value has changed and was written to disk

+
source§

impl CosmicTk

Trait Implementations§

source§

impl Clone for CosmicTk

source§

fn clone(&self) -> CosmicTk

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl CosmicConfigEntry for CosmicTk

source§

const VERSION: u64 = 1u64

source§

fn write_entry(&self, config: &Config) -> Result<(), Error>

source§

fn get_entry(config: &Config) -> Result<Self, (Vec<Error>, Self)>

source§

fn update_keys<T: AsRef<str>>( &mut self, config: &Config, changed_keys: &[T] -) -> (Vec<Error>, Vec<&'static str>)

Returns the keys that were updated
source§

impl Debug for CosmicTk

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for CosmicTk

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl PartialEq for CosmicTk

source§

fn eq(&self, other: &CosmicTk) -> bool

This method tests for self and other values to be equal, and is used +) -> (Vec<Error>, Vec<&'static str>)
Returns the keys that were updated
source§

impl Debug for CosmicTk

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for CosmicTk

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl PartialEq for CosmicTk

source§

fn eq(&self, other: &CosmicTk) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for CosmicTk

source§

impl StructuralEq for CosmicTk

source§

impl StructuralPartialEq for CosmicTk

Auto Trait Implementations§

Blanket Implementations§

source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where T: Real + Zero + Arithmetics + Clone, diff --git a/getrandom/struct.Error.html b/getrandom/struct.Error.html index 2511521a1f9..54d54581ec7 100644 --- a/getrandom/struct.Error.html +++ b/getrandom/struct.Error.html @@ -39,7 +39,7 @@

source

pub const fn code(self) -> NonZeroU32

Extract the bare error code.

This code can either come from the underlying OS, or be a custom error. Use Error::raw_os_error() to disambiguate.

-

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<NonZeroU32> for Error

source§

fn from(code: NonZeroU32) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Error

source§

fn eq(&self, other: &Error) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<NonZeroU32> for Error

source§

fn from(code: NonZeroU32) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Error

source§

fn eq(&self, other: &Error) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Error

source§

impl Eq for Error

source§

impl StructuralEq for Error

source§

impl StructuralPartialEq for Error

Auto Trait Implementations§

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where diff --git a/search-index.js b/search-index.js index d3484cb9ac4..958672b213d 100644 --- a/search-index.js +++ b/search-index.js @@ -26,7 +26,7 @@ var searchIndex = new Map(JSON.parse('[\ ["color_quant",{"doc":"Color quantization library","t":"FNNNNNNNNNNNNNN","n":["NeuQuant","borrow","borrow_mut","color_map_rgb","color_map_rgba","from","index_of","init","into","lookup","map_pixel","new","try_from","try_into","type_id"],"q":[[0,"color_quant"],[15,"alloc::vec"],[16,"core::option"],[17,"core::result"],[18,"core::any"]],"d":["","","","Returns the RGBA color map calculated from the sample.","Returns the RGBA color map calculated from the sample.","Returns the argument unchanged.","Finds the best-matching index in the color map.","Initializes the neuronal network and trains it with the …","Calls U::from(self).","Lookup pixel values for color at idx in the colormap.","Maps the rgba-pixel in-place to the best-matching color in …","Creates a new neuronal network and trains it with the …","","",""],"i":[0,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"f":[0,[-1,-2,[],[]],[-1,-2,[],[]],[1,[[3,[2]]]],[1,[[3,[2]]]],[-1,-1,[]],[[1,[4,[2]]],5],[[1,[4,[2]]],6],[-1,-2,[],[]],[[1,5],[[8,[[7,[2]]]]]],[[1,[4,[2]]],6],[[9,5,[4,[2]]],1],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,11,[]]],"c":[],"p":[[5,"NeuQuant",0],[1,"u8"],[5,"Vec",15],[1,"slice"],[1,"usize"],[1,"tuple"],[1,"array"],[6,"Option",16],[1,"i32"],[6,"Result",17],[5,"TypeId",18]],"b":[]}],\ ["const_random",{"doc":"","t":"Q","n":["const_random"],"q":[[0,"const_random"]],"d":["Random constants"],"i":[0],"f":[0],"c":[],"p":[],"b":[]}],\ ["const_random_macro",{"doc":"","t":"Q","n":["const_random"],"q":[[0,"const_random_macro"]],"d":[""],"i":[0],"f":[0],"c":[],"p":[],"b":[]}],\ -["cosmic",{"doc":"","t":"KEEKFIIEEPNNNCNNNNNNNNNNCNCEENNNNCNCNNNNNNNNNNNNNNNNNNNNNNNEEEEEEEECNNNNNNNNCNQNNCNNECNNNNNNNCNTPPKKREFKGRRERPERNNNNNNNNNNNNNNNNNNNNCNNNMMCONNNNNNMNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNMCMNNNNNNNNNNNNNHNNNNNNMCNNNNNNNMNNNNNNNNNNNNNNNNNMMNNNOOOOIHHCHHHHHHHHHPPPPFPPPPGPPPPPPPPPPPPPNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPGPNHNNNNNNNNNHNNNNNNNNNNNNNNNNHNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHHHHHHHECFSNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNICCFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNSTSSSSSSSSSSFTNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNHOONNNNNNNNONHHPPPPGPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNHKEKKKEKEENMNNNMMNNMNNFFFFIIIPPPPPPFFGOOHNNNNNNNNNNNOHNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNONNNNONNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNOONNONNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOOHNOONNOOOOONNNNOOOOONNNNNOOCHOONHHHOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOPPEGEEPPPPPPPPPPPPPPPEEPGPPEPEPGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOPGPGPPGPGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGGGPPPPGPPPGGPGGPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOFPPGRKNNMNNNNNNNNOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNEEFEEEFFETTTTTEEEEFEEFFEFEFEKFEFFEFEFFEFIEEFKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCECECNNNCHNNNNNNNNCCECHNNNNNNNNNNNNNNNNCHMNNCENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCENNNNNCMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCENNNNNNCENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCENHNNNNNNNHCENNNNNNNNNNCHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCEMNNNNNNNNNNNNNNHNCNNCHNNNNNNNNNNNCECENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCECHCHCENHCEHNCCNNNNNNNCMNNNNNNNNNNNNNNNNNNNCHCNNNCENNNNNNNNNNNNNNNNNNNNNNNCHNCNNNNNNNNNNNCECNNNNNNNNNNNHCENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHHCNNNNNNNNNNNNFFRKNNNMNNNNHOONNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNONNONNNNNNNNFFFIIEERKIMNNNNNNNNNNNNNNNOOOONNNNNNHNNNNNNHNNNNNNNHNMHNNNNNNNNNNNHNNNNNNNNNNNNNMHONNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNCENNHNNNNNNNNNNNNNNNNNNNNNOONNNMNNNNNMNONNHNNNHNHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNIFNNNNNNNNNNNNNNHNNNNNNNNNHNNNNNNNNNFNNNNNNNHNNNNNNNHNNNNNNNNHHHNNNNNNNCFKNNNNNNNOONNNMNNNNNNNNNNNNNNNNNNNNNNNNFFFRKMNNNNNNNNNNOONNNNNNNNONNNNNNNNNNNONNNNNNMONNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNPPPPPFFFGPFPPFPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNINHNHHFFNNNNNNNHNNNNNNNNNNNNNNNNNNNHNNNNNNNNNFFRKNMNNNNOONNNNNNNNHNNNNNONNNNNNNNNHOONNNNNNNNHNNFNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNCCHHHHHHFTTFEFRKMNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNHNNNNHNNNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNHNCHNCNNNHNNONNNONNNNNNNNNNNNNNNNNNNNNNNNHNFFFRKNNNMNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNFTTFFEFRKMNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNONNNNHNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOCHNNNONNOONNNONNNNNNNNNNNNNNNNNNNNNNNNEFENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNEHCCHFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNEHCCHFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGPFFGPPFPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNHHHHNNNNNHNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNONNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGFFPPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHNFFNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNFFRKNNNMNNNNOONNNNNNNNNNNNNNNONNNNNNNNNHNNNNNNNNONNNNONNNNNNNNECHEFNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNEFPPGGPIIPGPPEPPCNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOCCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKRMPPFGPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPGFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNNNNNNNNIIHHFNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNPFGPPPGFGGPGKPGPPPPPFPGFPPPFPGFPPFPPFRKGFPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNHNNNNNNONNMONNNNONNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHONOOOOOOOOOOOOOGPPPFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNOOOOOOFPPFPFGRKNNNMNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNONONNNNNNNNNNNNNNNNNNNNNNFFRKNMNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFRKMNNNNNOOONNNNNNNONNNNNMNNNNNNNNNONNNNNNNNFPPPPFFGGRKPNNNNNNMNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHONNNHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNINNHHHFFFFIFFFFFFIIIFKKFIIIRKIMNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHMONNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNMNNMNNHMNNNHHFNNNNNNNNNNNNNNNNNNNNNNNCEENNNNNNNHHFNNNNNNNHNNNNNNNNNNNNNNNNNNHHNNNNNNNNNFPPFGPFGPFFRKMNNNNNNNNNNNNNNNOOONNNNNNONNNNNNOONNNNNNNNNNMHNNNNNNNNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOONNNNNNNNNNNNNNNNNNNNNNNNHOOOOOOFPPGFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONHNONNNNNNNNNNNNNNNNNNNNNNNNOFFRKFNNMNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHPPPPPIPPPPGNNNNNHNNHHNNNNNNNNNNNNNNHNNNNNNNNNHHHHHHNNNNNNNNFEIFERKFFEMNNNNNNNNNNNNNNNNNNNNOOOOONNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNOMNHNNNNNNCMNNNNHNNMNNNNNNNNNNNNNNNONNONNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONOOHNNNHNHNNHNNHNNNNNNNNNNNNNNOOHHHNNONONNNNNNOHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHCONFPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPGPIPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNFPFGPFRKFMNNNNNNNNNNNNNNNNNNNNOONNNNNNNNONNNNNNNNONNNNNNNNNNNNNMHNNNNNNNNNNNNNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOOOFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHH","n":["Also","Application","ApplicationExt","Apply","Command","Element","Renderer","SingleThreadExecutor","Theme","TinySkia","actions","adapt_into_using","also","app","apply","apply_mut","apply_ref","arrays_from","arrays_into","as_any","as_any_mut","batch","borrow","borrow_mut","command","components_from","config","cosmic_config","cosmic_theme","debug","deref","deref_mut","drop","executor","fmt","font","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_stimulus","iced","iced_core","iced_futures","iced_renderer","iced_runtime","iced_style","iced_widget","iced_winit","icon_theme","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","keyboard_nav","map","menu_button","none","perform","prelude","run","single","style","theme","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","widget","widget","APP_ID","Activate","ActivateAction","Application","ApplicationExt","Args","Command","Core","CosmicFlags","DbusActivationDetails","Executor","Flags","Message","Message","Open","Settings","SubCommand","action","adapt_into_using","adapt_into_using","args","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","command","components_from","components_from","context_drawer","core","core_mut","cosmic","debug","default","deref","deref","deref_mut","deref_mut","dialog","drag","drop","drop","fmt","focused_window","from","from","from_angle","from_angle","from_stimulus","from_stimulus","header_center","header_end","header_start","init","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_condensed","keyboard_nav","main_window_id","maximize","message","minimize","nav_bar","nav_bar_active","nav_bar_set_toggled","nav_bar_toggle","nav_bar_toggle_condensed","nav_model","on_app_exit","on_close_requested","on_context_drawer","on_escape","on_nav_select","on_search","on_window_resize","run","scale_factor","set_context_title","set_context_title","set_header_title","set_header_title","set_keyboard_nav","set_window_title","settings","style","subscription","system_is_dark","system_theme","system_theme_mode","system_theme_mode_update","system_theme_update","title","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","update","view","view_main","view_window","watch_config","watch_state","window","action","args","url","Command","drag","maximize","message","message","minimize","set_scaling_factor","set_theme","set_title","set_windowed","toggle_maximize","app","cosmic","Activate","AppThemeChange","Close","ContextDrawer","Cosmic","Drag","Focus","KeyboardNav","Maximize","Message","Minimize","NavBar","ScaleFactor","ShowWindowMenu","SurfaceClosed","SystemThemeChange","SystemThemeModeChange","ToggleNavBar","ToggleNavBarCondensed","ToolkitConfig","Unfocus","WindowMaximized","WindowResize","adapt_into_using","adapt_into_using","app","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","close","components_from","components_from","default","deref","deref","deref_mut","deref_mut","drop","drop","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","new","scale_factor","style","subscription","theme","title","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","update","view","App","Cosmic","Message","None","adapt_into_using","app","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","cosmic","deref","deref_mut","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","none","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Settings","adapt_into_using","antialiasing","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","client_decorations","components_from","debug","default","default_font","default_icon_theme","default_text_size","deref","deref_mut","drop","exit_on_close","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","resizable","scale_factor","size","size_limits","theme","transparent","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","batch","drag","future","maximize","message","minimize","set_title","set_windowed","toggle_maximize","CosmicTk","toolkit","CosmicTk","ID","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","config","default","deref","deref_mut","drop","eq","equivalent","equivalent","fmt","from","from_angle","from_stimulus","get_entry","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","set_show_maximize","set_show_minimize","show_maximize","show_minimize","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","update_keys","write_entry","Default","multi","single","Executor","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","drop","enter","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","spawn","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Executor","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","drop","enter","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","spawn","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","DEFAULT","DEFAULT","FONT","FONT_BOLD","FONT_BOLD_DATA","FONT_DATA","FONT_LIGHT","FONT_LIGHT_DATA","FONT_MONO_REGULAR","FONT_MONO_REGULAR_DATA","FONT_SEMIBOLD","FONT_SEMIBOLD_DATA","Font","MONOSPACE","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","default","deref","deref_mut","drop","eq","equivalent","equivalent","family","fmt","from","from_angle","from_stimulus","hash","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","load_fonts","stretch","style","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","weight","with_name","default","set_default","Escape","FocusNext","FocusPrevious","Fullscreen","Message","Search","Unfocus","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","drop","eq","equivalent","equivalent","fmt","from","from_angle","from_stimulus","hash","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","subscription","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","unfocus","Also","ApplicationExt","Apply","CollectionWidget","ColorExt","Element","ElementExt","Renderer","Theme","also","append","apply","apply_mut","apply_ref","blend_alpha","debug","extend","extend","push","push_maybe","push_maybe","COSMIC_DARK","COSMIC_HC_DARK","COSMIC_HC_LIGHT","COSMIC_LIGHT","CosmicColor","CosmicComponent","CosmicTheme","Custom","Dark","HighContrastDark","HighContrastLight","Light","System","TRANSPARENT_COMPONENT","Theme","ThemeType","accent","accent_button","active","active","active","active","active","active","active","active","active","active","active","active","active_hint","active_type","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","alpha","appearance","appearance","appearance","appearance","appearance","appearance","appearance","appearance","appearance","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","base","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","button","clone","clone","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","corner_radii","cosmic","current_container","custom","dark","dark_hc","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","destructive","destructive_button","disabled","disabled","disabled","disabled","disabled","disabled","disabled_border","disabled_color","disabled_color","divider","dragging","drop","drop","drop","drop","drop","drop","drop","drop_target","eq","eq","error","fmt","fmt","focus","focused","focused","focused","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gaps","horizontal","hover","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered_region","hovered_split","icon_button","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_dark","is_dark","is_dark","is_frosted","is_high_contrast","is_high_contrast","is_high_contrast","layer","light","light_hc","link_button","name","on","on_disabled","palette","picked_split","placeholder_color","placeholder_color","pressed","pressed","primary","secondary","selected","selected_text","selection_background","selection_color","selection_color","set_layer","set_theme","shade","spacing","style","subscription","success","success_button","system","system_dark","system_light","system_preference","text_button","theme_type","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","value_color","value_color","vertical","warning","warning_button","window_hint","AppletIcon","AppletMenu","Application","Button","Checkbox","Container","Control","Custom","Custom","Custom","Default","Destructive","ExpandableSearch","HeaderBar","Icon","IconVertical","Image","Inline","Link","MenuItem","MenuRoot","ProgressBar","Rule","Search","SegmentedButton","Standard","Suggested","Svg","TabBar","Text","Text","TextInput","Transparent","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","components_from","components_from","components_from","default","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","iced","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","menu_bar","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","active","disabled","hovered","pressed","active","disabled","error","focused","hovered","Accent","Application","Background","Button","Card","Card","Checkbox","Color","Container","ContextDrawer","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Danger","Danger","Deactivated","Default","Default","Default","Default","Default","Default","Destructive","Dialog","Dropdown","HeaderBar","HeavyDivider","LightDivider","Link","LinkActive","List","Minimal","Permanent","Positive","Primary","Primary","Primary","Primary","ProgressBar","Rule","Scrollable","Search","Secondary","Secondary","Secondary","Slider","Standard","Success","Success","Svg","Text","Text","TextEditor","TextInput","Tooltip","Transparent","Transparent","WindowBackground","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","custom","custom","custom","custom","custom","default","default","default","default","default","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","equivalent","equivalent","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","primary","secondary","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","active","hover","active","dragging","hovered","Appearance","Custom","Default","MenuBarStyle","Style","StyleSheet","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","background_expand","bar_border_radius","border_color","border_width","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","drop","drop","fmt","from","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","menu_border_radius","path","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","Button","Calendar","Checkbox","ColorPicker","ColorPickerModel","Column","ComboBox","Container","ContextDrawer","DEFAULT_HEIGHT","DEFAULT_HEIGHT","DEFAULT_SIZE","DEFAULT_SPACING","DEFAULT_WIDTH","Dialog","Dropdown","FlexRow","Grid","HeaderBar","Icon","IconButton","Id","Image","LayerContainer","Lazy","LinkButton","MouseArea","NavBarToggle","Operation","PaneGrid","Popover","ProgressBar","Radio","RectangleTracker","Responsive","Row","Slider","Space","SpinButton","Svg","Text","TextButton","Tooltip","VerticalSlider","Widget","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","align_x","align_y","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","aspect_ratio","border_radius","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","breakpoints","build","button","button","calendar","calendar","card","center","center_x","center_y","checkbox","checkbox","children","children","children","children","children","children","clone","clone_into","color_picker","column","column","combo_box","combo_box","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","container","container","container","content_fit","content_fit","context_drawer","context_drawer","custom","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","dialog","dialog","diff","diff","diff","diff","diff","divider","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dropdown","dropdown","end","eq","equivalent","equivalent","filter_method","finish","flex_row","flex_row","fmt","fmt","fmt","focusable","focused","font","font","font","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_path","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","grid","grid","hash","header_bar","height","height","height","height","height","height","height","horizontal_space","icon","icon","icon","icon","id","id","id","id","id","id","id","id","image","image","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_element","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layer_container","layer_container","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","lazy","line_height","list","max_height","max_width","menu","mouse_area","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","nav_bar","nav_bar","nav_bar_toggle","nav_bar_toggle","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","on_click","on_close","on_close","on_drag","on_drag","on_drag","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_input","on_maximize","on_middle_press","on_middle_release","on_minimize","on_option_hovered","on_press","on_release","on_release","on_release","on_resize","on_right_click","on_right_press","on_right_release","operate","operate","operate","operate","operate","operate","overlay","overlay","overlay","overlay","overlay","overlay","overlay","padding","padding","pane_grid","popover","popover","progress_bar","progress_bar","radio","radio","rectangle_tracker","rectangle_tracker","reset","responsive","row","row","scrollable","scrollable","segmented_button","segmented_control","set_id","set_id","set_id","set_id","set_id","set_id","set_id","settings","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size_hint","size_hint","slider","slider","space","spacing","spacing","spacing","spin_button","spin_button","start","state","state","state","state","state","state","state","state","state","state","state","step","step","style","style","style","style","style","style","style","style","style","svg","svg","symbolic","tab_bar","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","text","text","text_input","text_input","text_input_style","text_line_height","text_line_height","text_shaping","text_shaping","text_size","text_size","title","to_owned","to_string","toggler","tooltip","tooltip","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unique","vertical_slider","vertical_slider","vertical_space","warning","width","width","width","width","width","width","width","width","width","width","with_height","with_width","Appearance","AspectRatio","Style","StyleSheet","adapt_into_using","align_x","align_y","appearance","arrays_from","arrays_into","as_any","as_any_mut","aspect_ratio_container","background","border","borrow","borrow_mut","center_x","center_y","children","components_from","deref","deref_mut","diff","draw","drop","from","from_angle","from_stimulus","height","icon_color","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","layout","max_height","max_width","mouse_interaction","on_event","operate","overlay","padding","shadow","size","style","text_color","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","width","Appearance","Builder","Button","IconButton","ImageButton","LinkButton","Style","Style","StyleSheet","TextButton","active","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border_color","border_radius","border_width","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","button","children","clone","clone_into","components_from","components_from","components_from","custom_image_button","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","destructive","diff","disabled","draw","draw","drop","drop","drop","drop_target","drop_target","extra_large","extra_large","extra_small","extra_small","fmt","focus","font_size","font_weight","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","height","height","hovered","icon","icon_color","icon_size","id","id","id","image","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","label","large","large","layout","layout","leading_icon","leading_icon","line_height","link","link","medium","medium","mouse_interaction","mouse_interaction","new","new","new","new","new","new","new","new","new","new_image","on_event","on_press","on_press","on_press_maybe","on_press_maybe","on_remove","on_remove","on_remove_maybe","on_remove_maybe","operate","outline_color","outline_width","overlay","padding","padding","pressed","selected","selected","selected","selected","selected","selection_background","set_id","shadow_offset","size","spacing","standard","state","style","style","suggested","tag","text","text_color","to_owned","tooltip","trailing_icon","trailing_icon","trailing_icon","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","vertical","vertical","width","width","Button","Hyperlink","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","drop","from","from_angle","from_stimulus","icon","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","link","new","trailing_icon","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Calendar","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","calendar","components_from","deref","deref_mut","drop","from","from_angle","from_stimulus","get_calender_first","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","set_day","set_next_month","set_prev_month","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","style","Appearance","StyleSheet","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","card_1","card_2","clone","clone_into","components_from","default","default","deref","deref_mut","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Checkbox","Icon","Style","StyleSheet","active","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","code_point","components_from","components_from","deref","deref","deref_mut","deref_mut","drop","drop","eq","fmt","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hovered","icon_color","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line_height","shaping","size","text_color","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","ActionFinished","ActivateSegmented","ActiveColor","AppliedColor","Cancel","ColorPicker","ColorPickerBuilder","ColorPickerModel","ColorPickerUpdate","Copied","HSV_RAINBOW","Input","Reset","State","ToggleColorPicker","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","builder","cancel_label","children","clone","clone","clone_into","clone_into","color_button","components_from","components_from","components_from","components_from","components_from","components_from","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","diff","draw","drop","drop","drop","drop","drop","drop","fmt","fmt","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_applied_color","get_is_active","height","height","init","init","init","init","init","init","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_hex","layout","new","on_event","overlay","picker_button","reset_label","save_label","size","state","tag","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","update","width","width","Column","append","column","push","with_capacity","with_children","ComboBox","State","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","build_matchers","clone","clone_into","components_from","deref","deref_mut","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","search","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","with_selection","Appearance","Container","Style","StyleSheet","adapt_into_using","appearance","arrays_from","arrays_into","as_any","as_any_mut","background","border","borrow","borrow_mut","clone","clone_into","components_from","default","deref","deref_mut","draw_background","drop","fmt","from","from_angle","from_stimulus","icon_color","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","layout","shadow","text_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","visible_bounds","with_background","with_border","ContextDrawer","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","children","components_from","context_drawer","deref","deref_mut","diff","draw","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","layout","mouse_interaction","new","on_close_maybe","on_event","operate","overlay","size","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Dialog","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","body","borrow","borrow_mut","components_from","control","deref","deref_mut","dialog","drop","from","from_angle","from_stimulus","icon","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","primary_action","secondary_action","tertiary_action","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","horizontal","vertical","default","heavy","light","default","heavy","light","Appearance","DEFAULT_GAP","DEFAULT_PADDING","Dropdown","Menu","State","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","diff","draw","draw","drop","drop","drop","dropdown","fmt","fmt","font","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","gap","handle_color","hovered","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","menu","mouse_interaction","mouse_interaction","multi","new","new","on_event","overlay","overlay","padding","placeholder_color","size","state","tag","text_color","text_line_height","text_size","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","update","width","Appearance","Menu","State","Style","StyleSheet","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border_color","border_radius","border_width","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","description_color","drop","drop","drop","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","hovered_background","hovered_text_color","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","new","new","overlay","padding","selected_background","selected_text_color","text_color","text_line_height","text_size","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","width","Appearance","DEFAULT_GAP","DEFAULT_PADDING","Dropdown","List","Menu","Model","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clear","components_from","components_from","components_from","deref","deref","deref","deref_mut","deref_mut","deref_mut","description","draw","drop","drop","drop","dropdown","font","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","gap","handle_color","hovered","init","init","init","insert","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","list","lists","menu","model","mouse_interaction","new","on_event","options","overlay","padding","placeholder_color","selected","size","state","tag","text_color","text_line_height","text_size","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","width","Appearance","Menu","StyleSheet","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","overlay","padding","text_line_height","text_size","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","width","FlexRow","flex_row","layout","widget","resolve","FlexRow","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","children","column_spacing","components_from","deref","deref_mut","diff","draw","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","layout","max_width","mouse_interaction","new","on_event","operate","overlay","padding","row_spacing","size","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","width","Grid","grid","layout","widget","resolve","Assignment","Grid","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","children","clone","clone_into","column","column_alignment","column_spacing","components_from","components_from","deref","deref","deref_mut","deref_mut","diff","draw","drop","drop","fmt","from","from","from","from","from_angle","from_angle","from_stimulus","from_stimulus","height","height","init","init","insert_row","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","max_width","mouse_interaction","new","new","on_event","operate","overlay","padding","push","push_with","row","row_alignment","row_spacing","size","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","width","width","Data","Default","Handle","Icon","IconFallback","Image","Name","Named","Names","Svg","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","content_fit","data","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","fallback","fallback","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_name","from_path","from_raster_bytes","from_raster_pixels","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_svg_bytes","handle","hash","hash","hash","hash","height","icon","icon","icon","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_svg_handle","name","new","path","prefer_svg","prefer_svg","scale","scale","size","size","size","style","symbolic","symbolic","symbolic","symbolic","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","width","FilterMethod","Handle","Image","Linear","Nearest","Viewer","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","components_from","data","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","draw","draw","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_memory","from_path","from_pixels","from_stimulus","from_stimulus","from_stimulus","hash","hash","height","id","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","max_scale","min_scale","mouse_interaction","new","on_event","padding","scale_step","size","state","tag","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","viewer","viewer","width","State","Viewer","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","default","deref","deref_mut","drop","fmt","from","from_angle","from_stimulus","image_size","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","is_cursor_grabbed","new","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","LayerContainer","Style","StyleSheet","adapt_into_using","align_x","align_y","appearance","arrays_from","arrays_into","as_any","as_any_mut","background","border","borrow","borrow_mut","center_x","center_y","children","components_from","deref","deref_mut","diff","draw","drop","from","from_angle","from_stimulus","height","icon_color","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","layer","layer_container","layout","max_height","max_width","mouse_interaction","on_event","operate","overlay","padding","shadow","size","state","style","tag","text_color","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","width","ListColumn","column","container","list_column","ListColumn","adapt_into_using","add","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","default","deref","deref_mut","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_element","into_stimulus","list_column","new","padding","spacing","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","CloseCondition","Dynamic","Full","ItemHeight","ItemWidth","MenuActive","MenuBar","MenuTree","OmitActive","PathHighlight","Static","Static","StyleSheet","Uniform","Uniform","action","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","click_inside","click_outside","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","fmt","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","key_bind","leave","menu_bar","menu_tree","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","MenuAction","Message","message","Alt","Ctrl","KeyBind","Modifier","Shift","Super","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","cmp","components_from","components_from","deref","deref","deref_mut","deref_mut","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hash","hash","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","key","matches","modifiers","partial_cmp","partial_cmp","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","MenuBar","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","bounds_expand","children","close_condition","components_from","cross_offset","deref","deref_mut","diff","draw","drop","from","from_angle","from_stimulus","height","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","item_height","item_width","layout","main_offset","new","on_event","overlay","padding","path_highlight","size","spacing","state","style","tag","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","width","Button","CheckBox","Divider","Folder","MenuItem","MenuTree","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","components_from","components_from","deref","deref","deref_mut","deref_mut","drop","drop","from","from","from","from_angle","from_angle","from_stimulus","from_stimulus","height","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","menu_items","menu_root","new","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","width","with_children","Id","Model","nav_bar","nav_bar_style","NavBarToggle","active","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","nav_bar_toggle","on_toggle","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","All","Appearance","Axis","Bottom","Canceled","Center","Configuration","Content","Contents","Direction","Down","DragEvent","Draggable","Dropped","Edge","Edge","Edge","Horizontal","Left","Left","Line","Maximized","Node","Pane","Pane","Pane","Pane","PaneGrid","Picked","Region","ResizeEvent","Right","Right","Split","Split","Split","State","Style","StyleSheet","Target","TitleBar","Top","Up","Vertical","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adjacent","always_show_controls","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","can_be_dragged_at","can_be_dragged_at","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","close","cmp","cmp","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","controls","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","draw","draw","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get","get_mut","hash","hash","hash","hash","hovered_region","hovered_split","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","internal","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_empty","is_over_pick_area","iter","iter","iter_mut","layout","layout","layout","len","maximize","maximized","mouse_interaction","move_to_edge","new","new","new","padding","pane_regions","panes","partial_cmp","partial_cmp","picked_split","ratio","resize","restore","split","split","split","split_line_bounds","split_regions","split_with","splits","state","style","style","swap","title_bar","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","update","width","with_configuration","a","axis","b","ratio","pane","pane","pane","target","a","axis","b","id","ratio","Action","Clicking","Dragging","Idle","Internal","Resizing","State","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clicked_pane","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","drop","drop","eq","fmt","fmt","from","from","from_angle","from_angle","from_configuration","from_stimulus","from_stimulus","init","init","internal","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","panes","picked_pane","picked_split","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","axis","origin","origin","pane","pane","split","Appearance","Bottom","Center","Overlay","Point","Popover","Position","Style","StyleSheet","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","children","clone","clone_into","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","diff","draw","draw","drop","drop","drop","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","icon_color","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","mouse_interaction","mouse_interaction","new","on_event","on_event","operate","operate","overlay","popover","popup","position","shadow","size","text_color","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","Appearance","ProgressBar","Style","StyleSheet","adapt_into_using","appearance","arrays_from","arrays_into","as_any","as_any_mut","background","bar","border_radius","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Radio","Style","StyleSheet","active","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","background","border_color","border_width","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","dot_color","drop","fmt","from","from_angle","from_stimulus","hovered","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","text_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Finished","Init","Ready","Rectangle","RectangleTracker","RectangleTrackingContainer","RectangleUpdate","State","Style","StyleSheet","Waiting","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","align_x","align_y","appearance","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","center_x","center_y","children","clone","clone","clone_into","clone_into","components_from","components_from","components_from","components_from","container","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","diff","diff","draw","drop","drop","drop","drop","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","height","icon_color","ignore_bounds","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","max_height","max_width","mouse_interaction","on_event","operate","overlay","padding","rectangle_tracker","rectangle_tracker_subscription","shadow","size","state","style","subscription","text_color","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","width","Row","append","push","row","with_capacity","with_children","Appearance","BuilderEntity","Entity","EntityMut","HorizontalSegmentedButton","Id","ItemAppearance","ItemStatusAppearance","Model","ModelBuilder","MultiSelect","MultiSelectEntityMut","MultiSelectModel","SecondaryMap","SegmentedButton","SegmentedVariant","Selectable","SingleSelect","SingleSelectEntityMut","SingleSelectModel","SparseSecondaryMap","Style","StyleSheet","VerticalSegmentedButton","activate","activate","activate","activate","activate","activate","activate_position","active","active","active","active","active","active_data","active_data_mut","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","background","border_bottom","border_bottom","border_end","border_end","border_radius","border_radius","border_start","border_start","border_top","border_top","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","builder","button_alignment","button_height","button_padding","button_spacing","clear","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","closable","closable","closable_set","close_icon","cmp","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains_item","data","data","data","data","data_mut","data_remove","data_set","deactivate","deactivate","deactivate","deactivate","deactivate","default","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","diff","dividers","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","enable","entity_at","eq","eq","equivalent","equivalent","first","fmt","fmt","fmt","fmt","focus","focus","font_active","font_hovered","font_inactive","font_size","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","height","horizontal","horizontal","hover","icon","icon","icon","icon_remove","icon_set","id","id","inactive","indent","indent","indent_remove","indent_set","indent_spacing","init","init","init","init","init","init","init","init","init","init","init","init","insert","insert","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_active","is_active","is_active","is_active","is_closable","is_enabled","iter","last","layout","line_height","maximum_button_width","middle","minimum_button_width","mouse_interaction","new","new","on_activate","on_close","on_event","operate","overlay","padding","partial_cmp","position","position","position","position_set","position_swap","position_swap","position_swap","remove","scrollable_focus","secondary","secondary","secondary_sparse","secondary_sparse","show_close_icon_on_hover","size","spacing","state","style","tag","text","text","text","text_color","text_remove","text_set","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unique","variant_appearance","variant_appearance","variant_appearance","variant_bounds","variant_bounds","variant_bounds","variant_layout","variant_layout","variant_layout","vertical","vertical","width","with_id","with_id","horizontal","vertical","Section","adapt_into_using","add","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","item","item","item_row","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","view_column","view_section","Item","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","builder","components_from","control","deref","deref_mut","description","drop","from","from_angle","from_stimulus","icon","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","item","item_row","title","toggler","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Circle","Gradient","Handle","HandleShape","Pair","Rail","RailBackground","Rectangle","Slider","State","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","border_color","border_radius","border_width","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","breakpoint","clone","clone","clone","clone_into","clone_into","clone_into","color","colors","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","dragging","draw","drop","drop","drop","eq","equivalent","equivalent","fmt","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","handle","hovered","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","mouse_interaction","new","rail","shape","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","update","width","border_radius","radius","width","auto_angle","gradient","Space","Decrement","Increment","Message","Model","SpinButton","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","components_from","default","default","default","default","default","default","default","default","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","hash","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_element","into_stimulus","into_stimulus","into_stimulus","max","max","min","min","new","spin_button","step","step","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","update","value","value","Appearance","Handle","Style","StyleSheet","Svg","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","data","default","deref","deref","deref_mut","deref_mut","drop","drop","eq","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_memory","from_path","from_stimulus","from_stimulus","hash","hovered","id","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","horizontal","vertical","Body","Caption","CaptionHeading","Heading","Monotext","Text","Title1","Title2","Title3","Title4","Typography","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","body","borrow","borrow_mut","caption","caption_heading","clone","clone_into","components_from","deref","deref_mut","drop","eq","equivalent","equivalent","fmt","from","from_angle","from_stimulus","hash","heading","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","monotext","text","title1","title2","title3","title4","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Cursor","DnDCommand","State","Style","Style","StyleSheet","TextInput","TextInputString","Value","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border_color","border_offset","border_radius","border_width","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","children","clone","clone","clone","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","cursor","cursor","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","diff","dirty","disabled","dnd_icon","draw","draw","draw","drop","drop","drop","drop","editor","error","error","fmt","fmt","fmt","focus","focus","focus","focused","focused","font","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","helper_text","helper_text","hovered","hovered","icon_color","id","init","init","init","init","inline_input","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_focused","is_focused","is_secure","label","label","label_color","layout","layout","leading_icon","line_height","mouse_interaction","mouse_interaction","move_cursor_to","move_cursor_to","move_cursor_to","move_cursor_to_end","move_cursor_to_end","move_cursor_to_end","move_cursor_to_front","move_cursor_to_front","move_cursor_to_front","new","new","on_clear","on_event","on_input","on_paste","on_submit","on_submit_maybe","operate","overlay","padding","password","placeholder","placeholder_color","search_input","secure_input","select_all","select_all","select_all","selected_fill","selected_text","selected_text_color","size","size","state","style","surface_ids","tag","text_color","text_input","to_owned","to_owned","to_owned","trailing_icon","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","unfocus","unfocus","update","value","value","width","Cursor","Index","Selection","State","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","drop","drop","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","selection","state","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","end","start","Editor","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","backspace","borrow","borrow_mut","components_from","contents","delete","deref","deref_mut","drop","from","from_angle","from_stimulus","init","insert","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","paste","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Value","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","drop","fmt","from","from_angle","from_stimulus","init","insert","insert_many","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","is_empty","len","new","next_end_of_word","previous_start_of_word","remove","remove_many","secure","select","to_owned","to_string","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","until","Bottom","FollowCursor","Left","Position","Right","Tooltip","Top","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","drop","eq","equivalent","equivalent","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","tooltip","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Circle","Handle","HandleShape","Rectangle","State","Style","StyleSheet","VerticalSlider","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","border_color","border_width","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","breakpoint","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","dragging","draw","drop","drop","drop","drop","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","handle","hovered","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","mouse_interaction","new","rail","shape","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","update","border_radius","radius","width","Warning","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","into_widget","on_close","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","warning","warning_container"],"q":[[0,"cosmic"],[95,"cosmic::app"],[238,"cosmic::app::DbusActivationDetails"],[241,"cosmic::app::command"],[252,"cosmic::app::command::message"],[254,"cosmic::app::cosmic"],[353,"cosmic::app::message"],[394,"cosmic::app::settings"],[439,"cosmic::command"],[448,"cosmic::config"],[450,"cosmic::config::toolkit"],[498,"cosmic::executor"],[501,"cosmic::executor::multi"],[535,"cosmic::executor::single"],[569,"cosmic::font"],[628,"cosmic::icon_theme"],[630,"cosmic::keyboard_nav"],[677,"cosmic::prelude"],[698,"cosmic::theme"],[1062,"cosmic::theme::style"],[1187,"cosmic::theme::style::Button"],[1191,"cosmic::theme::style::TextInput"],[1196,"cosmic::theme::style::iced"],[1652,"cosmic::theme::style::iced::Button"],[1654,"cosmic::theme::style::iced::Slider"],[1657,"cosmic::theme::style::menu_bar"],[1736,"cosmic::widget"],[2584,"cosmic::widget::aspect_ratio"],[2643,"cosmic::widget::button"],[2844,"cosmic::widget::button::link"],[2880,"cosmic::widget::calendar"],[2915,"cosmic::widget::card"],[2916,"cosmic::widget::card::style"],[2955,"cosmic::widget::checkbox"],[3040,"cosmic::widget::color_picker"],[3267,"cosmic::widget::column"],[3273,"cosmic::widget::combo_box"],[3312,"cosmic::widget::container"],[3362,"cosmic::widget::context_drawer"],[3404,"cosmic::widget::dialog"],[3442,"cosmic::widget::divider"],[3444,"cosmic::widget::divider::horizontal"],[3447,"cosmic::widget::divider::vertical"],[3450,"cosmic::widget::dropdown"],[3584,"cosmic::widget::dropdown::menu"],[3701,"cosmic::widget::dropdown::multi"],[3831,"cosmic::widget::dropdown::multi::menu"],[3868,"cosmic::widget::flex_row"],[3872,"cosmic::widget::flex_row::layout"],[3873,"cosmic::widget::flex_row::widget"],[3918,"cosmic::widget::grid"],[3922,"cosmic::widget::grid::layout"],[3923,"cosmic::widget::grid::widget"],[4016,"cosmic::widget::icon"],[4232,"cosmic::widget::image"],[4369,"cosmic::widget::image::viewer"],[4409,"cosmic::widget::layer_container"],[4471,"cosmic::widget::list"],[4475,"cosmic::widget::list::column"],[4512,"cosmic::widget::menu"],[4671,"cosmic::widget::menu::action"],[4674,"cosmic::widget::menu::key_bind"],[4766,"cosmic::widget::menu::menu_bar"],[4818,"cosmic::widget::menu::menu_tree"],[4890,"cosmic::widget::nav_bar"],[4894,"cosmic::widget::nav_bar_toggle"],[4928,"cosmic::widget::pane_grid"],[5616,"cosmic::widget::pane_grid::Configuration"],[5620,"cosmic::widget::pane_grid::DragEvent"],[5624,"cosmic::widget::pane_grid::Node"],[5629,"cosmic::widget::pane_grid::state"],[5712,"cosmic::widget::pane_grid::state::Action"],[5718,"cosmic::widget::popover"],[5844,"cosmic::widget::progress_bar"],[5886,"cosmic::widget::radio"],[5931,"cosmic::widget::rectangle_tracker"],[6102,"cosmic::widget::row"],[6108,"cosmic::widget::segmented_button"],[6665,"cosmic::widget::segmented_control"],[6667,"cosmic::widget::settings"],[6703,"cosmic::widget::settings::item"],[6741,"cosmic::widget::slider"],[6877,"cosmic::widget::slider::HandleShape"],[6880,"cosmic::widget::slider::RailBackground"],[6882,"cosmic::widget::space"],[6883,"cosmic::widget::spin_button"],[7004,"cosmic::widget::svg"],[7089,"cosmic::widget::tab_bar"],[7091,"cosmic::widget::text"],[7150,"cosmic::widget::text_input"],[7382,"cosmic::widget::text_input::cursor"],[7457,"cosmic::widget::text_input::cursor::State"],[7459,"cosmic::widget::text_input::editor"],[7496,"cosmic::widget::text_input::value"],[7544,"cosmic::widget::tooltip"],[7589,"cosmic::widget::vertical_slider"],[7752,"cosmic::widget::vertical_slider::HandleShape"],[7755,"cosmic::widget::warning"],[7790,"iced_runtime::command::action"],[7791,"alloc::vec"],[7792,"palette::chromatic_adaptation"],[7793,"core::ops::function"],[7794,"core::any"],[7795,"core::iter::traits::collect"],[7796,"core::fmt"],[7797,"core::fmt"],[7798,"core::clone"],[7799,"core::convert"],[7800,"core::default"],[7801,"core::cmp"],[7802,"alloc::boxed"],[7803,"alloc::rc"],[7804,"core::ops::function"],[7805,"core::marker"],[7806,"core::future::future"],[7807,"futures_core::stream"],[7808,"palette::convert::try_from_into_color"],[7809,"core::any"],[7810,"alloc::string"],[7811,"core::fmt"],[7812,"core::fmt"],[7813,"alloc::sync"],[7814,"iced"],[7815,"iced_futures::subscription"],[7816,"cosmic_theme::model::mode"],[7817,"cosmic_theme::model::theme"],[7818,"cosmic_config"],[7819,"cosmic_config"],[7820,"iced_core::layout::limits"],[7821,"cosmic_config"],[7822,"core::hash"],[7823,"iced_runtime::font"],[7824,"alloc::borrow"],[7825,"core::iter::traits::iterator"],[7826,"iced_style::text_input"],[7827,"iced_style::button"],[7828,"iced_style::scrollable"],[7829,"iced_style::toggler"],[7830,"iced_style::text_editor"],[7831,"iced_style::rule"],[7832,"iced_style::menu"],[7833,"iced_core::widget::text"],[7834,"iced_style::application"],[7835,"cosmic_theme::model::derivation"],[7836,"cosmic_theme::model::derivation"],[7837,"iced_core::background"],[7838,"cosmic_theme::model::theme"],[7839,"iced_core::renderer"],[7840,"iced_core::alignment"],[7841,"iced_core::widget::tree"],[7842,"core::fmt"],[7843,"iced_core::rectangle"],[7844,"core::ops::function"],[7845,"iced_core::renderer"],[7846,"iced_core::mouse::cursor"],[7847,"num_traits::cast"],[7848,"iced_core::svg"],[7849,"iced_core::image"],[7850,"iced_core::widget::operation"],[7851,"iced_core::widget::operation::focusable"],[7852,"std::path"],[7853,"iced_core::length"],[7854,"iced_core::pixels"],[7855,"iced_widget::text_input::text_input"],[7856,"iced_core::layout::node"],[7857,"iced_core::text"],[7858,"core::ops::range"],[7859,"core::cmp"],[7860,"iced_core::clipboard"],[7861,"iced_core::shell"],[7862,"iced_core::event"],[7863,"iced_core::padding"],[7864,"iced_widget::scrollable"],[7865,"iced_core::widget::operation::scrollable"],[7866,"iced_core::vector"],[7867,"iced_core::widget::tree"],[7868,"iced_core::text"],[7869,"iced_style::toggler"],[7870,"chrono::naive::date"],[7871,"chrono::weekday"],[7872,"iced_core::gradient"],[7873,"iced_widget::rule"],[7874,"iced_core::point"],[7875,"iced_core::alignment"],[7876,"iced_core::keyboard::key"],[7877,"smol_str"],[7878,"std::collections::hash::map"],[7879,"alloc::collections::btree::map"],[7880,"futures_channel::mpsc"],[7881,"slotmap"],[7882,"slotmap::secondary"],[7883,"slotmap::sparse_secondary"],[7884,"fraction::prelude"],[7885,"core::ops::arith"],[7886,"core::ops::arith"]],"d":["Represents a type that you can apply arbitrary functions …","","","Represents a type which can have functions applied to it …","A set of asynchronous actions to be performed by some …","","","","","","Returns all of the actions of the Command.","","Apply a function to this value and return the (possibly) …","Build interactive cross-platform COSMIC applications.","Apply a function which takes the parameter by value.","Apply a function which takes the parameter by mutable …","Apply a function which takes the parameter by reference.","","","","","Creates a Command that performs the actions of all the …","","","Create asynchronous actions to be performed in the …","","Configurations available to libcosmic applications.","","","","","","","Select the preferred async executor for an application.","","Select preferred fonts.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Select the preferred icon theme.","","Calls U::from(self).","","","","","","","Subscribe to common application keyboard shortcuts.","Applies a transformation to the result of a Command.","This macro creates a button for a MenuTree.","Creates an empty Command.","Creates a Command that performs the action of the given …","Recommended default imports.","Creates a Command that runs the given stream to completion.","Creates a Command that performs a single Action.","","Contains the Theme type and its widget stylesheet …","","","","","","","","Cosmic-themed widget implementations.","Creates a Command that performs a widget::Operation.","An ID that uniquely identifies the application. The …","","action can be deserialized as Flags","An interactive cross-platform COSMIC application.","Methods automatically derived for all types implementing …","","","COSMIC-specific application settings","","","Default async executor to use with the app.","Argument received [Application::new].","","Message type specific to our app.","","","","","","","","","","","","","","","","","","","","","","","","","","","Displays a context drawer on the side of the application …","Grants access to the COSMIC Core.","Grants access to the COSMIC Core.","","Enables debug features in cosmic/iced.","","","","","","Displays a dialog in the center of the application window …","Initiates a window drag.","","","","Get the current focused window if it exists","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Attaches elements to the center of the header.","Attaches elements to the end section of the header.","Attaches elements to the start section of the header.","Creates the application, and optionally emits command on …","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Whether the window is too small for the nav bar + main …","Enable or disable keyboard navigation","Get the main window::Id, which is window::Id::MAIN by …","Maximizes the window.","","Minimizes the window.","Allows overriding the default nav bar widget","Whether the nav panel is visible or not","","","","Allows COSMIC to integrate with your application’s …","Called before closing the application.","Called when a window requests to be closed.","","Called when the escape key is pressed.","Called when a navigation item is selected.","Called when the search function is requested.","Called when a window is resized.","Launch a COSMIC application with the given Settings.","The scaling factor used by the application.","Set the context drawer title.","Set context drawer header title","Set the header bar title.","Set header bar title","Enable or disable keyboard navigation","Set the title of the main window.","Configure a new COSMIC application.","Overrides the default style for applications","Event sources that are to be listened to.","Whether the application should use a dark theme, according …","Get the current system theme","Get the current system theme mode","Respond to a system theme mode change","Respond to a system theme change","Get the title of the main window.","","","","","","","","","","","","","","","","","Respond to an application-specific message.","Constructs the view for the main window.","View template for the main window.","Constructs views for other windows.","","","","","","","Commands for COSMIC applications.","","","Convenience methods for building message-based commands.","Creates a command which yields a crate::app::Message.","","","","","","","Creates a command which yields an application message.","Creates a command which yields a cosmic message.","Activate the application","Application requests theme change.","Requests to close the window.","Closes or shows the context drawer.","","Requests to drag the window.","Window focus changed","Keyboard shortcuts managed by libcosmic.","Requests to maximize the window.","A message managed internally by COSMIC.","Requests to minimize the window.","Activates a navigation element from the nav bar.","Set scaling factor","","Notifies that a surface was closed. Any data relating to …","Notification of system theme changes.","Notification of system theme mode changes.","Toggles visibility of the nav bar.","Toggles the condensed status of the nav bar.","Toolkit configuration update","Window focus lost","Updates the window maximized state","Updates the tracked window geometry.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Messages from the application, for the application.","Internal messages to be handled by libcosmic.","","Do nothing","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","Configure a new COSMIC application.","","Produces a smoother result in some widgets, at a …","","","","","","","Whether the window should have a border, a title bar, etc. …","","Enables debug features in cosmic/iced.","","The default Font to be used.","Sets the default icon theme, passing an empty string will …","Default size of fonts.","","","","Whether the application should exit when there are no open …","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Whether the window should be resizable or not. and the …","Scale factor to use by default.","Initial size of the window.","Limitations of the window size","The theme to apply to the application.","Whether the window should be transparent.","","","","","","","","Yields a command which contains a batch of commands.","Initiates a window drag.","Yields a command which will run the future on the runtime …","Maximizes the window.","Yields a command which will return a message.","Minimizes the window.","Sets the title of a window.","Sets the window mode to windowed.","Toggles the windows’ maximize state.","","Configurations for the libcosmic toolkit.","","ID for the CosmicTk config.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","Sets CosmicTk::show_maximize and writes to …","Sets CosmicTk::show_minimize and writes to …","Show maximize button in window header.","Show minimize button in window header.","","","","","","","","","","","Uses the single thread executor by default.","An async executor that schedules tasks across a pol …","An async executor that schedules tasks on the same …","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","A non-monospaced sans-serif font with normal Weight.","","","","","","","","","","","A font.","A monospaced font with normal Weight.","","","","","","","","","","","","","","","","","","The Family of the Font.","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","The Stretch of the Font.","The Style of the Font.","","","","","","","","","The Weight of the Font.","Creates a non-monospaced Font with the given Family::Name …","The fallback icon theme to search if no icon theme was …","Set the fallback icon theme to search when loading system …","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","Unfocuses any actively-focused widget.","Represents a type that you can apply arbitrary functions …","","Represents a type which can have functions applied to it …","Additional methods for the [Column] and [Row] widgets.","","","","","","Apply a function to this value and return the (possibly) …","Moves all the elements of other into self, leaving other …","Apply a function which takes the parameter by value.","Apply a function which takes the parameter by mutable …","Apply a function which takes the parameter by reference.","Combines color with background to create appearance of …","","Appends all elements in an iterator to the widget.","Appends all elements in an iterator to the widget.","Pushes an element into the widget.","Conditionally pushes an element to the widget.","Conditionally pushes an element to the widget.","","","","","","","","","","","","","","","","","accent element colors","accent button element colors","Currently-defined theme.","","","","","","","","","","","","cosmic-comp active hint window outline width","Currently-defined theme type.","","","","","","","","The transparency component. 0.0 (or 0u8) is fully …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","background element colors","The base color of the widget","the color of the border for the widget","","","","","","","","","","","","","","","button component styling","","","","","The color.","","","","","","","","corner radii","","get current container can be used in a component that is …","","","","","","","","","","","","","","","","","","","","","","","","","","destructive element colors","destructive button element colors","","","","","","the color of the widget when it is disabled","the color of the border for the widget when it is disabled","","","the color of dividers for this widget","","","","","","","","","","","","","","","the color of the widget when it is focused","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","cosmic-comp window gaps size (outer, inner)","","The color of the widget when it is hovered","","","","","","","","","","","","","","icon button element colors","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether the active theme has a dark preference.","Whether the theme has a dark preference.","is dark","enables blurred transparency","Whether the active theme is high contrast.","Whether the theme has a high contrast.","is high contrast","","","","link button element colors","name of the theme","the color of text for this widget","the color of text in the widget when it is disabled","palette","","","","","the color of the widget when it is pressed","primary element colors","secondary element colors","the color of the widget when it is selected","the color of the widget when it is selected","","","","","set the theme","shade color for dialogs","spacing","Stylesheet implements for crate::Theme","Watches for changes to the system’s theme preference.","suggested element colors","suggested button element colors","","","","Loads the preferred system theme from cosmic-config.","text button element colors","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","warning element colors","warning button element colors","cosmic-comp custom window hint color","","","","","","","A widget for multiple choice selection.","","Or implement any custom theme of your liking.","","","","","","","","","","","","","","","","","","","","A tabbed widget for switching between views in an …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Contains stylesheet implementations for widgets native to …","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","Change the appearance of menu bars and their menus.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Styles for the button widget from iced-rs.","","","","","","","","","","","","","Apply a custom appearance filter","","","","","","","","No filtering is applied","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The appearance of a menu bar and its menus.","A Theme that uses a Custom palette.","The default style.","The style of a menu bar and its menus","The supported style of the StyleSheet.","The style sheet of a menu bar and its menus.","","","Produces the Appearance of a menu bar and its menus.","","","","","","","","","The background color of the menu bar and its menus.","The expand value of the menus’ background","The border radius of the menu bar.","The border Color of the menu bar and its menus.","The border width of the menu bar and its menus.","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","The border radius of the menus.","The highlighted path Color of the the menu bar and its …","","","","","","","","","","","","","","","","","","A box that can be checked.","","","","A widget for searching and selecting a single value from a …","An element decorating some content.","","The default height of a ProgressBar.","The default height of a Slider.","The default size of a Radio button.","The default spacing of a Radio button.","The default width of a VerticalSlider.","","","","","","","","The identifier of a generic widget.","A frame that displays an image while keeping aspect ratio.","","A widget that only rebuilds its contents when necessary.","","Emit messages on mouse events.","","A piece of logic that can traverse the widget tree of an …","A collection of panes distributed using either vertical or …","","A bar that displays progress.","A circular button representing a choice.","","A widget that is aware of its dimensions.","","An horizontal bar and a handle that selects a single value …","An amount of empty space.","","A vector graphics image.","A paragraph.","","","An vertical bar and a handle that selects a single value …","A component that displays information and allows …","","","","","","","","","","","","","","","","","Sets the content alignment for the horizontal axis of the …","Sets the content alignment for the vertical axis of the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the border radius of the image.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Defines breakpoints to visibly mark on the slider.","Build the widget","","","","","","Pushes an element to the center region.","Centers the contents in the horizontal axis of the …","Centers the contents in the vertical axis of the Container.","Show toggle controls using checkboxes.","Creates a new Checkbox.","","","","Returns the state Tree of the children of the Widget.","","","","","","","","Display a dropdown list of searchable and selectable …","Creates a new ComboBox.","","","","","","","","","","","","","","","","","Decorate content and apply alignment.","Creates a new Container with the provided content.","Operates on a widget that contains other widgets.","Sets the ContentFit of the Svg.","Sets the ContentFit of the Image.","","","Operates on a custom widget.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Reconciliates the Widget with the provided Tree.","","","An element to distinguish a boundary between two elements.","Draws the Widget using the associated Renderer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Pushes an element to the end region.","","","","Sets the FilterMethod of the Image.","Finishes the Operation and returns its Outcome.","","","","","","Operates on a widget that can be focused.","Focused state of the window","Sets the Renderer::Font of the text of the Checkbox.","Sets the Renderer::Font of the ComboBox.","Sets the text font of the Radio button.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","Creates a new Svg that will display the contents of the …","","","","","","","","","","","","","","","","","","","","","Sets the height of the Container.","Sets the height of the PaneGrid.","Sets the height of the ProgressBar.","Sets the height of the Slider.","Sets the height of the VerticalSlider.","Sets the height of the Svg.","Sets the height of the Image boundaries.","Creates a new horizontal Space with the given Length.","Lazily-generated SVG icon widget for Iced.","","Sets the Icon of the Checkbox.","Sets the text_input::Icon of the ComboBox.","","Sets the Id of the Container.","Returns the id of the widget","","","","","","Display images in your user interface.","Creates a new Image.","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Converts the headerbar builder into an Iced element.","","","","","","","","","","","","","","","","","","","Returns the layout::Node of the Widget.","","","","","","","","","","","","","","","Creates a new Lazy widget with the given data Dependency …","Sets the LineHeight of the ComboBox.","","Sets the maximum height of the Container.","Sets the maximum width of the Container.","A MenuBar widget for displaying MenuTrees","A container intercepting mouse events.","","","","","Returns the current mouse::Interaction of the Widget.","","","","","","","Navigation side panel for switching between views.","","A button for toggling the navigation side panel.","","Creates a MouseArea with the given content.","Creates a new Checkbox.","Creates a new ComboBox with the given list of options, a …","Creates an empty Container.","Creates a PaneGrid with the given State and view function.","Creates a new ProgressBar.","Creates a new Radio button.","Creates a new Slider.","Creates a new VerticalSlider.","Creates a new Responsive widget with a closure that …","Creates a new Lazy widget with the given data Dependency …","Creates a new Svg from the given Handle.","Creates an amount of empty Space with the given width and …","Creates a custom Id.","Creates a new Image with the given path.","Sets the message that will be produced when a Pane of the …","Sets the message that will be produced when the outside …","A message emitted when the close button is pressed.","The message to emit when a drag is initiated.","Enables the drag and drop interactions of the PaneGrid, …","A message emitted when dragged.","","","","","Processes a runtime Event.","","","","","","","Sets the message that should be produced when some text is …","A message emitted when the maximize button is pressed.","The message to emit on a middle button press.","The message to emit on a middle button release.","A message emitted when the minimize button is pressed.","Sets the message that will be produced when an option of …","The message to emit on a left button press.","The message to emit on a left button release.","Sets the release message of the Slider. This is called …","Sets the release message of the VerticalSlider. This is …","Enables the resize interactions of the PaneGrid, which will","A message emitted when the header is right clicked.","The message to emit on a right button press.","The message to emit on a right button release.","","","Applies an Operation to the Widget.","","","","","","","Returns the overlay of the Widget, if there is any.","","","","Sets the Padding of the ComboBox.","Sets the Padding of the Container.","Let your users split regions of your application and …","A widget showing a popup in an overlay positioned relative …","","Provide progress feedback to your users.","Creates a new ProgressBar.","Create choices using radio buttons.","Creates a new Radio.","","","resets the id counter","Creates a new Responsive widget with a closure that …","","","","Operates on a widget that can be scrolled.","A widget providing a conjoined set of linear items that …","A selection of multiple choices appearing as a conjoined …","","Sets the id of the widget This may be called while diffing …","","","","","","","Returns the Size of the Widget in lengths.","","Sets the size of the Checkbox.","","","Sets the text sixe of the ComboBox.","","","","","Sets the size of the Radio button.","","","","","","","","Returns a Size hint for laying out the Widget.","","Display an interactive selector of a single value from a …","Creates a new Slider.","Distribute content vertically.","Sets the spacing between the Checkbox and the text.","Sets the spacing between the panes of the PaneGrid.","Sets the spacing between the Radio button and the text.","","","Pushes an element to the start region.","","","","","Returns the State of the Widget.","","","","","","","Sets the step size of the Slider.","Sets the step size of the VerticalSlider.","Sets the style of the Checkbox.","Sets the style of the ComboBox.","Sets the style of the Container.","Sets the style of the PaneGrid.","Sets the style of the ProgressBar.","Sets the style of the Radio button.","Sets the style of the Slider.","Sets the style of the VerticalSlider.","Sets the style variant of this Svg.","Display vector graphics in your application.","Creates a new Svg widget from the given Handle.","Symbolic icons inherit their color from the renderer if a …","A collection of tabs for developing a tabbed interface.","","","","","Returns the Tag of the Widget.","","","","","","","","","A text input widget from iced widgets plus some added …","Operates on a widget that has text input.","Sets the style of the TextInput of the ComboBox.","Sets the text text::LineHeight of the Checkbox.","Sets the text text::LineHeight of the Radio button.","Sets the text::Shaping strategy of the Checkbox.","Sets the text::Shaping strategy of the Radio button.","Sets the text size of the Checkbox.","Sets the text size of the Radio button.","Defines the title of the window","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a unique Id.","Display an interactive selector of a single value from a …","Creates a new VerticalSlider.","Creates a new vertical Space with the given Length.","","Sets the width of the Checkbox.","Sets the width of the ComboBox.","Sets the width of the Container.","Sets the width of the PaneGrid.","Sets the width of the ProgressBar.","Sets the width of the Radio button.","Sets the width of the Slider.","Sets the width of the VerticalSlider.","Sets the width of the Svg.","Sets the width of the Image boundaries.","Creates an amount of vertical Space.","Creates an amount of horizontal Space.","The appearance of a container.","An element decorating some content.","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","Sets the content alignment for the horizontal axis of the …","Sets the content alignment for the vertical axis of the …","Produces the Appearance of a container.","","","","","","The Background of the container.","The Border of the container.","","","Centers the contents in the horizontal axis of the …","Centers the contents in the vertical axis of the Container.","","","","","","","","Returns the argument unchanged.","","","Sets the height of the Container.","The icon Color of the container.","","Calls U::from(self).","","","","","","","","Sets the maximum height of the Container in pixels.","Sets the maximum width of the Container.","","","","","Sets the Padding of the Container.","The Shadow of the container.","","Sets the style of the Container.","The text Color of the container.","","","","","","","","Sets the width of the [self.].","The appearance of a button.","","A generic button which emits a message when pressed.","","","","","The supported style of the StyleSheet.","A set of rules that dictate the style of a button.","","Produces the active Appearance of a button.","","","","","","","","","","","","","","","","The Background of the button.","The border Color of the button.","The border radius of the button.","The border width of the button.","","","","","","","","","","","","","","","","","","","","","","","","Produces the disabled Appearance of a button.","","","","","","Appearance when the button is the target of a DND …","Appearance when the button is the target of a DND …","Applies the Extra Large button size preset.","Applies the Extra Large button size preset.","Applies the Extra Small button size preset.","Applies the Extra Small button size preset.","","Produces a Command that focuses the Button with the given …","Sets the preferred font size.","Sets the preferred font weight.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Sets the height of the Button.","Sets the preferred height of the button.","Produces the hovered Appearance of a button.","","The icon Color of the button.","Sets the preferred size of icons.","Sets the Id of the Button.","","Sets the Id of the button.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","The label to display within the button.","Applies the Large button size preset.","Applies the Large button size preset.","Computes the layout of a Button.","","","","Sets the prefered font line height.","","","Applies the Medium button size preset.","Applies the Medium button size preset.","Returns the mouse::Interaction of a Button.","","","","","Creates a new Button with the given content.","","","","","","","","Sets the message that will be produced when the Button is …","Sets the message that will be produced when the button is …","Sets the message that will be produced when the Button is …","Set the value of [on_press] as either Some or None.","","","","","","The Color of the outline.","An outline placed around the border.","","Sets the Padding of the Button.","Sets the preferred padding of the button.","Produces the pressed Appearance of a button.","","","Sets the widget to a selected state.","","","Background color of the selection indicator","","The amount of offset to apply to the shadow of the button.","","Sets the preferred spacing between elements in the button.","","","Sets the style variant of this Button.","The preferred style of the button.","","","","The text Color of the button.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the width of the Button.","Sets the preferred width of the button.","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Gets the first date that will be visible on the calender","","Calls U::from(self).","","","","","","","","","","","","","","","","","","Appearance of the cards.","Defines the Appearance of a cards.","","","","","","","","","","","","","The default Appearance of the cards.","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","The appearance of a checkbox.","A box that can be checked.","The icon in a Checkbox.","The supported style of the StyleSheet.","A set of rules that dictate the style of a checkbox.","Produces the active Appearance of a checkbox.","","","","","","","","","","","The Background of the checkbox.","The Border of hte checkbox.","","","","","","","","","The unicode code point that will be used as the icon.","","","","","","","","","","","","Font that will be used to display the code_point,","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Produces the hovered Appearance of a checkbox.","The icon Color of the checkbox.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","The line height of the icon.","The shaping strategy of the icon.","Font size of the content.","The text Color of the checkbox.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Get the applied color of the picker","Get whether or not the picker should be visible","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a color picker button that displays the applied color","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A widget for searching and selecting a single value from a …","The local state of a ComboBox.","","","","","","","","Build matchers from given list of options.","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","Creates a new State for a ComboBox with the given list of …","Search list of options for a given query.","","","","","","","","","Creates a new State for a ComboBox with the given list of …","The appearance of a container.","An element decorating some content.","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","Produces the Appearance of a container.","","","","","The Background of the container.","The Border of the container.","","","","","","","","","Draws the background of a Container given its Appearance …","","","Returns the argument unchanged.","","","The icon Color of the container.","","Calls U::from(self).","","","","","","","","Computes the layout of a Container.","The Shadow of the container.","The text Color of the container.","","","","","","","","","Produces a Command that queries the visible screen bounds …","Derives a new Appearance with the given Background.","Derives a new Appearance with a border of the given Color …","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","Creates an empty ContextDrawer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","Horizontal variant of a divider.","Vertical variant of a divider.","Horizontal divider with default thickness","Horizontal divider with heavy thickness.","Horizontal divider with light thickness","Vertical divider with default thickness","Vertical divider with heavy thickness.","Vertical divider with light thickness","The appearance of a pick list.","The default gap.","The default padding.","A widget for selecting a single value from a list of …","","The local state of a Dropdown.","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","Produces the active Appearance of a pick list.","","","","","","","","","","","","","","","","The Background of the pick list.","The Border of the pick list.","","","","","","","","","","","","","","","","","","","","Draws a Dropdown.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","The handle Color of the pick list.","Produces the hovered Appearance of a pick list.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","Computes the layout of a Dropdown.","","","Returns the current mouse::Interaction of a Dropdown.","","","Creates a new Dropdown with the given list of selections, …","Creates a new State for a Dropdown.","","Returns the current overlay of a Dropdown.","","","The placeholder Color of the pick list.","","","","The text Color of the pick list.","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a Dropdown …","","The appearance of a menu.","A list of selectable options.","The local state of a Menu.","The supported style of the StyleSheet.","The style sheet of a menu.","","","","Produces the Appearance of a menu.","","","","","","","","","","","","","Menu background","Menu border color","Menu border radius","Menu border width","","","","","","","","","","","","","","","","","","","Description text color","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Background when hovered","Text color when hovered","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","Creates a new Menu with the given State, a list of …","Creates a new State for a Menu.","Turns the Menu into an overlay Element at the given target …","Sets the Padding of the Menu.","Background when selected","Text color when selected","Menu text color","Sets the text [LineHeight] of the Menu.","Sets the text size of the Menu.","","","","","","","","","","","","","","","","","","","","","","","Sets the width of the Menu.","The appearance of a pick list.","The default gap.","The default padding.","A widget for selecting a single value from a list of …","A list for a multi-list dropdown widget.","","A model for managing the options in a multi-list dropdown.","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","Produces the active Appearance of a pick list.","","","","","","","","","","","","","","","","The Background of the pick list.","The Border of the pick list.","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","The handle Color of the pick list.","Produces the hovered Appearance of a pick list.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Create a List for a multi-list dropdown widget.","","","Create a Model for a multi-list dropdown.","","Creates a new Dropdown with the given list of selections, …","","","","","The placeholder Color of the pick list.","","","","","The text Color of the pick list.","","","","","","","","","","","","","","","","","","","","","","","","","","A dropdown menu with multiple lists.","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","Turns the Menu into an overlay Element at the given target …","Sets the Padding of the Menu.","Sets the text [LineHeight] of the Menu.","Sets the text size of the Menu.","","","","","","","","Sets the width of the Menu.","","Responsively generates rows and columns of widgets based …","","","","Responsively generates rows and columns of widgets based …","","","","","","","","","Sets the space between each column of items.","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Sets the max width","","","","","","Sets the padding around the widget.","Sets the space between each item in a row.","","","","","","","","","Sets the width.","","Responsively generates rows and columns of widgets based …","","","","","Responsively generates rows and columns of widgets based …","","","","","","","","","","","","","","","","","","","Alignment across columns","Sets the space between each column of items.","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Sets the height of the grid.","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Sets the max width","","","","","","","Sets the padding around the widget.","Attach a new element with a given grid assignment.","Attach a new element with custom properties","","Alignment across rows","Sets the space between each item in a row.","","","","","","","","","","","","","","","","","Sets the width of the grid.","","","Default fallback using the icon name.","","An image which may be an SVG or PNG.","Fallback icon to use if the icon was not found.","","","","Fallback to specific icon names.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the fallback field of this struct.","Checks for a fallback if the icon was not found.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Create an icon handle from its XDG icon name.","Create an icon handle from its path.","Create an image handle from memory.","Create an image handle from RGBA data, where you must …","","","","","","Create a SVG handle from memory.","","","","","","","Create an Icon from a pre-existing Handle","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Name of icon to locate in an XDG icon path.","","","Sets the prefer_svg field of this struct.","Prioritizes SVG over PNG","Sets the scale field of this struct.","Restrict the lookup to a given scale.","Sets the size field of this struct.","","Restrict the lookup to a given size.","","Sets the symbolic field of this struct.","Sets the symbolic field of this struct.","Whether the icon is symbolic or not.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Image filtering strategy.","A handle of some image data.","A frame that displays an image while keeping aspect ratio.","Bilinear interpolation.","Nearest neighbor.","A frame that displays an image with the ability to zoom …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a reference to the image Data.","","","","","","","","Draws an Image","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Creates an image Handle containing the image data directly.","Creates an image Handle pointing to the image of the given …","Creates an image Handle containing the image pixels …","","","","","","Sets the height of the Viewer.","Returns the unique identifier of the Handle.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Computes the layout of an Image.","","Sets the max scale applied to the image of the Viewer.","Sets the min scale applied to the image of the Viewer.","","Creates a new Viewer with the given State.","","Sets the padding of the Viewer.","Sets the percentage the image of the Viewer will be scaled …","","","","","","","","","","","","","","","","","","","","","","","","","","","Zoom and pan on an image.","Creates a new Viewer with the given image Handle.","Sets the width of the Viewer.","The local state of a Viewer.","A frame that displays an image with the ability to zoom …","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the bounds of the underlying image, given the …","","Calls U::from(self).","","","","","","","","Returns if the cursor is currently grabbed by the Viewer.","Creates a new State.","","","","","","","","","The appearance of a container.","An element decorating some content.","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","Sets the content alignment for the horizontal axis of the …","Sets the content alignment for the vertical axis of the …","Produces the Appearance of a container.","","","","","The Background of the container.","The Border of the container.","","","Centers the contents in the horizontal axis of the …","Centers the contents in the vertical axis of the …","","","","","","","","Returns the argument unchanged.","","","Sets the height of the LayerContainer.","The icon Color of the container.","","Calls U::from(self).","","","","","","","Sets the [Layer] of the LayerContainer.","","","Sets the maximum height of the LayerContainer in pixels.","Sets the maximum width of the LayerContainer.","","","","","Sets the Padding of the LayerContainer.","The Shadow of the container.","","","Sets the style of the LayerContainer.","","The text Color of the container.","","","","","","","","Sets the width of the [self.].","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","The condition of when to close a menu","Dynamic tries to automatically choose the proper item …","Draw the full path,","The height of an item","The width of an item","Omit the active item if it’s not a menu","A MenuBar collects MenuTrees and handles","Nested menu is essentially a tree of items, a menu is a …","Omit the active item(the last item in the path)","Methods for drawing path highlight","Static tries to use the width value of each menu(menu tree …","Static tries to use MenuTree.height as item height, when it…","","Use uniform width","Use uniform height.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Close menus when the cursor clicks inside the check bounds","Close menus when the cursor clicks outside the check bounds","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Close menus when the cursor moves outside the check bounds","A widget that handles menu trees","A tree structure for constructing a hierarchical menu","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","MenuAction is a trait that represents an action in a menu.","The type of message that will be produced when the action …","Returns a message of type Self::Message when the action is …","","","Represents a combination of a key and modifiers. It is …","Represents the modifier keys on a keyboard.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","The key for the key binding.","Checks if the given key and modifiers match the KeyBind.","A vector of modifiers for the key binding.","","","","","","","","","","","","","","","","","","","","","A MenuBar collects MenuTrees and handles all the layout, …","","","","","","","","Sets the expand value for each menu’s check bounds","","CloseCondition","","Moves each menu in the horizontal open direction","","","","","","Returns the argument unchanged.","","","Sets the height of the MenuBar","","Calls U::from(self).","","","","","","","ItemHeight","ItemWidth","","Moves all the menus in the vertical open direction","Creates a new MenuBar with the given menu roots","","","Sets the Padding of the MenuBar","Sets the method for drawing path highlight","","Sets the spacing between menu roots","","Sets the style of the menu bar and its menus","","","","","","","","","Sets the width of the MenuBar","Represents a button menu item.","Represents a checkbox menu item.","Represents a divider between menu items.","Represents a folder menu item.","Represents a menu item that performs an action when …","Nested menu is essentially a tree of items, a menu is a …","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Sets the height of the menu tree. See ItemHeight","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Create a list of menu items from a vector of MenuItem.","Create a root menu item.","Create a new menu tree from a widget","","","","","","","","","","","","","","","Sets the width of the menu tree. See ItemWidth","Create a menu tree from a widget and a vector of sub trees","","","Navigation side panel for switching between views.","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","All panes are visible","The appearance of the hovered region of a pane grid.","A fixed reference line for the measurement of coordinates.","Bottom edge.","A Pane was picked and then dropped outside of other Pane …","Center region.","The arrangement of a PaneGrid.","The content of a Pane.","The visible contents of the PaneGrid","A four cardinal direction.","↓","An event produced during a drag and drop interaction of a …","A pane that can be dragged.","A Pane was dropped on top of another Pane.","The edges of an area.","An Edge of the full PaneGrid.","Edge region.","The horizontal axis: —","←","Left edge.","A line.","A maximized pane is visible","A layout node of a PaneGrid.","A rectangular region in a PaneGrid used to display widgets.","A Pane.","The region of this Node is taken by a Pane.","A single Pane of the PaneGrid.","A collection of panes distributed using either vertical or …","A Pane was picked for dragging.","The region of a Pane.","An event produced during a resize interaction of a PaneGrid…","→","Right edge.","A divider that splits a region in a PaneGrid into two …","A split of the available space.","The region of this Node is split into two.","The state of a PaneGrid.","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","The Target area a pane can be dropped on.","The title bar of a Pane.","Top edge.","↑","The vertical axis: |","","","","","","","","","","","","","","","","","","Returns the adjacent Pane of another Pane in the given …","Sets whether or not the controls attached to this TitleBar …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the pane region.","The Border of the pane region.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the Draggable with the given Layout can be …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Closes the given Pane and returns its internal state and …","","","The Color of the Line.","","","","","","","","","","","","","","","","","","Sets the controls of the TitleBar.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws a PaneGrid.","Draws the Content with the provided Renderer and Layout.","Draws the TitleBar with the provided Renderer and Layout.","","","","","","","","","","","Drops the given Pane into the provided Target.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the internal state of the given Pane, if it exists.","Returns the internal state of the given Pane with …","","","","","The Appearance to draw when a pane is hovered.","The Line to draw when a split is hovered.","","","","","","","","","","","","","","","","","","The internal state of the PaneGrid.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if the amount of panes in the State is 0.","Returns whether the mouse cursor is over the pick area of …","Returns an iterator over all the panes of the State, …","Returns an iterator over the values of the Contents","Returns a mutable iterator over all the panes of the State,","Calculates the Layout of a PaneGrid.","Returns the layout of the State.","Returns the layout Node of the Contents","Returns the total amount of panes in the State.","Maximize the given Pane. Only this pane will be rendered …","Returns the maximized Pane of the PaneGrid.","Returns the current mouse::Interaction of a PaneGrid.","Move Pane to an Edge of the PaneGrid.","Creates a new Content with the provided body.","Creates a new TitleBar with the given content.","Creates a new State, initializing the first pane with the …","Sets the Padding of the TitleBar.","Returns the rectangular region for each Pane in the Node …","The panes of the PaneGrid.","","","The Line to draw when a split is picked.","The new ratio of the Split.","Resizes two panes by setting the position of the provided …","Restore the currently maximized Pane to it’s normal …","Splits the provided Rectangle on the current Axis with the …","Splits the given Pane into two in the given Axis and …","The Split that is being dragged for resizing.","Calculates the bounds of the split line in a Rectangle …","Returns the axis, rectangular region, and ratio for each …","Split a target Pane with a given Pane on a given Region.","Returns an iterator over each Split in this Node.","The state of a PaneGrid.","Sets the style of the Content.","Sets the style of the TitleBar.","Swaps the position of the provided panes in the State.","Sets the TitleBar of this Content.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the state of a PaneGrid …","The width of the Line.","Creates a new State with the given Configuration.","The left/top Configuration of the split.","The direction of the split.","The right/bottom Configuration of the split.","The ratio of the split in [0.0, 1.0].","The picked Pane.","The picked Pane.","The picked Pane.","The Target where the picked Pane was dropped on.","The left/top Node of the split.","The direction of the split.","The right/bottom Node of the split.","The Split of this Node.","The ratio of the split in [0.0, 1.0].","The current action of a PaneGrid.","A Pane in the PaneGrid is being clicked.","A Pane in the PaneGrid is being dragged.","The PaneGrid is idle.","The internal state of a PaneGrid.","A Split in the PaneGrid is being dragged.","The state of a PaneGrid.","","","","","","","","","","","","","","","Returns the current Pane that is being clicked, if any.","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Initializes the Internal state of a PaneGrid from a …","","","","","The internal state of the PaneGrid.","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","The layout Node of the Internal state","The panes of the PaneGrid.","Returns the current Pane that is being dragged, if any.","Returns the current Split that is being dragged, if any.","","","","","","","","","","","","","","","","","The Axis of the Split.","The starting Point of the click interaction.","The starting Point of the drag interaction.","The Pane being clicked.","The Pane being dragged.","The Split being dragged.","The appearance of a container.","","","","","","","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","","","Produces the Appearance of a container.","","","","","","","","","","","","","The Background of the container.","The Border of the container.","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","The icon Color of the container.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Shadow of the container.","","The text Color of the container.","","","","","","","","","","","","","","","","","","","","","","","The appearance of a progress bar.","A bar that displays progress.","The supported style of the StyleSheet.","A set of rules that dictate the style of a progress bar.","","Produces the Appearance of the progress bar.","","","","","The Background of the progress bar.","The Background of the bar of the progress bar.","The border radius of the progress bar.","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","The appearance of a radio button.","A circular button representing a choice.","The supported style of the StyleSheet.","A set of rules that dictate the style of a radio button.","Produces the active Appearance of a radio button.","","","","","","The Background of the radio button.","The border Color of the radio button.","The border width of the radio button.","","","","","","","","The Color of the dot of the radio button.","","","Returns the argument unchanged.","","","Produces the hovered Appearance of a radio button.","","Calls U::from(self).","","","","","","","","The text Color of the radio button.","","","","","","","","","The appearance of a container.","","","","","","An element decorating some content.","","","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","","","","","Sets the content alignment for the horizontal axis of the …","Sets the content alignment for the vertical axis of the …","Produces the Appearance of a container.","","","","","","","","","","","","","","","","","The Background of the container.","The Border of the container.","","","","","","","","","Centers the contents in the horizontal axis of the …","Centers the contents in the vertical axis of the Container.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Sets the height of the Container.","The icon Color of the container.","Set to true to ignore parent container bounds when …","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the maximum height of the Container in pixels.","Sets the maximum width of the Container.","","","","","Sets the Padding of the Container.","","","The Shadow of the container.","","","Sets the style of the Container.","","The text Color of the container.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the width of the [self.].","","","","","","","Appearance of the segmented button.","Constructs a new item for the ModelBuilder.","A unique ID for an item in the Model.","A newly-inserted item which may have additional actions …","Horizontal SegmentedButton.","The iced identifier of a segmented button.","Appearance of an item in the segmented button.","Appearance of an item based on its status.","The model held by the application, containing the unique …","A builder for a Model.","Model<MultiSelect> permits multiple keys to be active at a …","Multi-select variant of an EntityMut.","A model for multi-select button selection.","Associates extra data with an external secondary map.","A conjoined group of items that function together as a …","Isolates variant-specific behaviors from SegmentedButton.","Describes a type that has selectable items.","Model<SingleSelect> Ensures that only one key may be …","Single-select variant of an EntityMut.","A model for single-select button selection.","Associates extra data with an external sparse secondary …","The supported style of the StyleSheet.","Defines the Appearance of a segmented button.","Vertical SegmentedButton.","Activate an item.","Activates the newly-inserted item.","Activates the newly-inserted item.","","","Activates the item in the model.","Activates the item at the given position, returning true …","The ID of the active item.","The IDs of the active items.","","","","Get an immutable reference to the data associated with the …","Get a mutable reference to the data associated with the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Consumes the builder and returns the model.","Creates a builder for initializing a model.","Alignment of button contents.","Desired height of a button.","Padding around a button.","Spacing between icon and text in button.","Removes all items from the model.","","","","","","","","","","","Defines that the close button should appear","Shows a close button for this item.","Shows or hides the item’s close button.","The icon used for the close button.","","","","","","","","","","","","","","Check if an item exists in the map.","Assigns extra data to the item.","Associates data with the item.","","Get an immutable reference to data associated with an item.","Get a mutable reference to data associated with an item.","Removes a specific data type from the item.","Associates data with the item.","Deactivate an item.","Deactivates the item in the model.","","","Deactivates the active item.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether to place dividers between buttons.","","","","","","","","","","","","","","Enable or disable an item.","Get the item that is located at a given position.","","","","","","","","","","A command that focuses a segmented item stored in a widget.","","Desired font for active tabs.","Desired font for hovered tabs.","Desired font for inactive tabs.","Size of the font.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","Desired height of the widget.","Horizontal implementation of the SegmentedButton.","The horizontal Appearance of the segmented button.","","Defines an icon for the item.","Define an icon for the item.","Immutable reference to the icon associated with the item.","Removes the icon from an item.","Sets a new icon for an item.","Returns the ID of the item that was inserted.","iced widget ID","","","","","","Spacing for each indent.","","","","","","","","","","","","","Inserts a new item and its associated data into the model.","Inserts a new item in the model.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Checks if the item is active.","","Check if the given ID is the active ID.","","Whether the item should contain a close button.","Check if the item is enabled.","Iterates across items in the model in the order that they …","","","LineHeight of the font.","Maximum width of a button.","","Minimum width of a button.","","","Creates a custom Id.","Emitted when a tab is pressed.","Emitted when a tab close button is pressed.","","","","Padding of the whole widget.","","Define the position of the newly-inserted item.","Define the position of the item.","The position of the item in the model.","Change the position of an item in the model.","Swap the position with another item in the model.","Swap the position with another item in the model.","Swap the position of two items in the model.","Removes an item from the model.","Scrolling switches focus between tabs.","Associates extra data with an external secondary map.","Associates extra data with an external secondary map.","Associates extra data with an external sparse secondary …","Associates extra data with an external sparse secondary …","Show the close icon only when item is hovered.","","Desired spacing between items.","","Style to draw the widget in.","","Defines the text for the item.","Defines the text for the item.","Immutable reference to the text assigned to the item.","","Removes text from an item.","Sets new text for an item.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a unique Id.","Get the appearance for this variant of the widget.","","","Calculates the bounds for visible buttons.","","","Calculates the layout of this variant.","","","Vertical implementation of the SegmentedButton.","The vertical Appearance of the segmented button.","Desired width of the widget.","Calls a function with the ID","Calls a function with the ID without consuming the wrapper.","A selection of multiple choices appearing as a conjoined …","A selection of multiple choices appearing as a conjoined …","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","A column with a predefined style for creating a settings …","A section within a settings view column.","A builder for a settings item.","","","","","","","","Creates a builder for an item, beginning with the title.","","Assigns a control to the item.","","","A description to display beneath the title.","","Returns the argument unchanged.","","","A custom icon to display before the text.","","Calls U::from(self).","","","","","","","A settings item aligned in a row","A settings item aligned in a row","Describes the item being controlled.","","","","","","","","","The appearance of a slider.","A circular handle.","Linear gradient for the background of the rail includes an …","The appearance of the handle of a slider.","The shape of the handle of a slider.","Start and end colors of the rail","The appearance of a slider rail","The background color of the rail","A rectangular shape.","An horizontal bar and a handle that selects a single value …","The local state of a Slider.","The supported style of the StyleSheet.","A set of rules that dictate the style of a slider.","Produces the style of an active slider.","","","","","","","","","","","","","","","","The border Color of the handle.","The border radius of the corners of the rail.","The border width of the handle.","","","","","","","The appearance of breakpoints.","","","","","","","The Color of the handle.","The colors of the rail of the slider.","","","","","","","","","","","Produces the style of a slider that is being dragged.","Draws a Slider.","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","The appearance of the Handle of the slider.","Produces the style of an hovered slider.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Computes the current mouse::Interaction of a Slider.","Creates a new State.","The colors of the rail of the slider.","The shape of the handle.","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a Slider …","The width of the stroke of a slider rail.","The border radius of the corners of the rectangle.","The radius of the circle.","The width of the rectangle.","Let the widget determin the angle of the gradient","the linear gradient of the slider","An amount of empty space.","","","A message emitted by the SpinButton widget.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Sets the max field of this struct.","The maximum value permitted.","Sets the min field of this struct.","The minimum value permitted.","","","Sets the step field of this struct.","The amount to increment the value.","","","","","","","","","","","","","","","","","","","","","","","","Sets the value field of this struct.","The current value of the spin button.","The appearance of an SVG.","A handle of Svg data.","The supported style of the StyleSheet.","The stylesheet of a svg.","A vector graphics image.","","","Produces the Appearance of the svg.","","","","","","","","","","","","","","","","","The Color filter of an SVG.","","","Returns a reference to the SVG Data.","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Creates an SVG Handle from raw bytes containing either an …","Creates an SVG Handle pointing to the vector image of the …","","","","Produces the hovered Appearance of a svg content.","Returns the unique identifier of the Handle.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A collection of tabs for developing a tabbed interface.","A collection of tabs for developing a tabbed interface.","","","","","","A paragraph.","","","","","Available presets for text typography","","","","","","Text widget with the Body typography preset.","","","Text widget with the Caption typography preset.","Text widget with the Caption Heading typography preset.","","","","","","","","","","","Returns the argument unchanged.","","","","Text widget with the Heading typography preset.","","Calls U::from(self).","","","","","","","","Text widget with the Monotext typography preset.","Creates a new Text widget with the provided content.","Text widget with the Title 1 typography preset.","Text widget with the Title 2 typography preset.","Text widget with the Title 3 typography preset.","Text widget with the Title 4 typography preset.","","","","","","","","","The appearance of a text input.","","","The state of a TextInput.","","The supported style of the StyleSheet.","A set of rules that dictate the style of a text input.","A field that can be filled with text.","A string which can be sent to the clipboard or …","","Produces the style of an active text input.","","","","","","","","","","","","","","","","","","","","","The Background of the text input.","The border Color of the text input.","The border offset","The border radius of the text input.","The border width of the text input.","","","","","","","","","","","","","","","","","","","","Track the cursor of a text input.","Returns the Cursor of the TextInput.","","","","","","","","","","","","Produces the style of a disabled text input.","Sets the mode of this TextInput to be a drag and drop icon.","Draws the TextInput with the given Renderer, overriding its","Draws the TextInput with the given Renderer, overriding its","","","","","","","Produces the style of an errored text input.","Sets the error message of the TextInput.","","","","Produces a Command that focuses the TextInput with the …","Focuses the TextInput.","","Produces the style of a focused text input.","Creates a new State, representing a focused TextInput.","Sets the Font of the TextInput.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Sets the helper text of the TextInput.","","Produces the style of an hovered text input.","Produces the style of an hovered text input.","The Color of symbolic icons.","Sets the Id of the TextInput.","","","","","Creates a new inline TextInput.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the TextInput is currently focused or not.","","","Sets the text of the TextInput.","","The label Color of the text input.","Computes the layout of a TextInput.","","Sets the start [Icon] of the TextInput.","Sets the [LineHeight] of the TextInput.","Computes the current mouse::Interaction of the TextInput.","","Produces a Command that moves the cursor of the TextInput …","","Moves the Cursor of the TextInput to an arbitrary location.","Produces a Command that moves the cursor of the TextInput …","","Moves the Cursor of the TextInput to the end of the input …","Produces a Command that moves the cursor of the TextInput …","","Moves the Cursor of the TextInput to the front of the …","Creates a new TextInput.","Creates a new State, representing an unfocused TextInput.","","","Sets the message that should be produced when some text is …","Sets the message that should be produced when some text is …","Sets the message that should be produced when the TextInput…","Maybe sets the message that should be produced when the …","","","Sets the Padding of the TextInput.","Converts the TextInput into a secure password input.","","The placeholder text Color.","Creates a new search TextInput.","Creates a new search TextInput.","Produces a Command that selects all the content of the …","Selects all the content of the TextInput.","","The selected fill Color of the text input.","Returns the current value of the selected text in the …","The text Color of the text input.","Sets the text size of the TextInput.","","","Sets the style of the TextInput.","Sets the window id of the TextInput and the window id of …","","The text Color of the text input.","Creates a new TextInput.","","","","Sets the end [Icon] of the TextInput.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Unfocuses the TextInput.","","Processes an Event and updates the State of a TextInput …","","","Sets the width of the TextInput.","The cursor of a text input.","Cursor without a selection","Cursor selecting a range of text","The state of a Cursor.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns the current selection of the Cursor for the given …","Returns the State of the Cursor.","","","","","","","","","","","","","","","","","The end of the selection","The start of the selection","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","The value of a TextInput.","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Inserts a new char at the given grapheme index.","Inserts a bunch of graphemes at the given grapheme index.","Calls U::from(self).","","","","","","","","Returns whether the Value is empty or not.","Returns the total amount of graphemes in the Value.","Creates a new Value from a string slice.","Returns the position of the next end of a word from the …","Returns the position of the previous start of a word from …","Removes the grapheme at the given index.","Removes the graphemes from start to end.","Returns a new Value with all its graphemes replaced with …","Returns a new Value containing the graphemes from start …","","","","","","","","","","Returns a new Value containing the graphemes until the …","The tooltip will appear on the bottom of the widget.","The tooltip will follow the cursor.","The tooltip will appear on the left of the widget.","The position of the tooltip. Defaults to following the …","The tooltip will appear on the right of the widget.","","The tooltip will appear on the top of the widget.","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","The appearance of a slider.","A circular handle.","The appearance of the handle of a slider.","The shape of the handle of a slider.","A rectangular shape.","The local state of a VerticalSlider.","The supported style of the StyleSheet.","A set of rules that dictate the style of a slider.","An vertical bar and a handle that selects a single value …","Produces the style of an active slider.","","","","","","","","","","","","","","","","","","","","","The border Color of the handle.","The border width of the handle.","","","","","","","","","The appearance of breakpoints.","","","","","","","","","The Color of the handle.","","","","","","","","","","","","","","Produces the style of a slider that is being dragged.","Draws a VerticalSlider.","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","The appearance of the Handle of the slider.","Produces the style of an hovered slider.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the current mouse::Interaction of a VerticalSlider…","Creates a new State.","The colors of the rail of the slider.","The shape of the handle.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a …","The border radius of the corners of the rectangle.","The radius of the circle.","The width of the rectangle.","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","A custom button that has the desired default spacing and …","The message to emit on button press.","","","","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,241,1,1,5,0,7,7,7,1,1,1,1,1,1,1,0,1,0,0,0,12,1,1,1,0,1,0,1,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1,0,0,1,1,1,1,1,1,1,0,1,68,64,64,0,0,56,0,0,0,0,68,68,0,68,64,0,56,56,63,64,56,63,64,63,64,63,64,63,64,63,64,63,64,63,64,63,64,0,63,64,68,68,68,0,63,63,63,64,63,64,68,70,63,64,64,63,63,64,63,64,63,64,68,68,68,68,63,64,63,64,63,64,63,64,63,64,63,64,63,64,63,64,63,64,63,63,68,70,0,70,68,63,63,63,63,68,68,68,68,68,68,68,68,0,63,70,63,70,63,63,70,0,68,68,63,63,63,68,68,70,63,64,63,64,63,64,63,64,63,64,63,64,63,64,63,64,68,68,70,68,63,63,63,377,377,378,0,0,0,0,0,0,0,0,0,0,0,0,0,89,89,89,89,0,89,89,89,89,0,89,89,89,89,89,89,89,89,89,89,89,89,89,89,90,90,89,90,89,90,89,90,89,90,89,90,89,90,89,89,90,89,90,90,89,90,89,90,89,90,89,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,90,90,90,90,90,90,90,89,89,90,89,90,89,90,89,90,89,90,89,90,89,90,90,90,71,71,0,71,71,0,71,71,71,71,71,71,71,71,71,0,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,0,71,71,71,71,71,71,71,71,0,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,0,0,0,0,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,0,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,0,92,0,0,0,0,0,0,0,0,0,0,0,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,0,92,92,92,92,92,92,92,92,92,92,92,92,0,0,104,104,104,104,0,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,0,104,104,104,104,104,104,104,104,0,0,0,0,0,0,0,0,0,0,5,105,7,7,7,106,107,105,105,105,105,105,0,0,0,0,0,0,0,120,120,120,120,120,120,0,0,0,131,131,0,82,82,82,82,82,82,82,82,82,82,82,131,0,133,134,135,136,137,120,82,379,82,82,82,82,82,82,82,82,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,131,380,380,133,134,135,136,137,120,82,133,134,135,136,137,120,82,131,120,82,120,82,379,133,134,135,136,137,120,82,131,82,82,82,82,82,120,82,82,133,133,134,134,135,135,136,136,137,137,120,82,133,134,135,136,137,120,82,131,131,82,82,82,82,82,380,380,82,82,380,82,133,134,135,136,137,120,82,82,120,82,82,120,82,380,82,82,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,131,82,380,82,82,82,82,82,82,82,82,82,82,82,82,82,131,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,0,120,131,131,0,120,131,82,82,82,131,131,380,380,131,82,82,82,82,380,131,131,380,380,82,82,82,82,82,131,131,0,0,131,131,82,0,0,0,131,82,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,82,82,82,131,131,131,145,145,0,0,0,0,146,145,146,147,147,145,147,145,145,145,145,147,145,145,145,0,0,147,0,145,145,0,146,0,145,0,145,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,0,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,0,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,381,381,381,381,382,382,382,382,382,151,0,154,0,157,154,0,151,0,154,153,157,154,158,155,156,150,151,159,148,155,157,153,156,150,151,152,159,157,154,154,154,156,156,157,157,154,149,149,157,157,148,154,155,0,0,0,152,157,148,154,0,158,148,155,0,0,157,0,0,154,157,154,154,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,154,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,148,149,150,151,152,148,149,150,151,152,153,157,148,154,158,155,156,149,150,151,152,159,153,154,155,156,150,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,148,148,148,148,153,157,148,154,158,155,156,149,150,151,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,148,149,151,152,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,154,154,148,149,150,151,152,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,383,383,384,384,384,0,162,162,0,161,0,129,162,161,129,162,129,162,129,162,129,162,129,129,129,129,129,129,162,129,162,129,129,129,162,162,129,162,129,162,129,162,129,129,162,162,129,162,129,162,129,162,129,162,129,162,129,162,129,129,162,129,162,129,162,129,162,129,129,129,129,162,129,162,129,162,129,162,129,162,129,162,129,162,0,0,0,0,0,0,0,0,0,203,170,205,205,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,163,163,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,0,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,170,36,0,0,0,0,0,36,163,163,0,0,180,182,163,187,188,190,193,193,0,0,0,0,0,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,0,0,53,197,168,0,0,53,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,0,0,180,163,187,188,190,0,187,180,176,182,163,188,203,205,170,208,209,190,197,211,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,0,0,36,193,193,193,168,53,0,0,211,193,168,53,36,176,182,205,180,176,182,163,188,203,205,170,208,209,190,197,211,193,193,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,197,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,0,0,193,0,163,188,203,170,208,197,168,0,0,0,176,182,176,163,187,170,209,190,197,168,0,0,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,203,205,197,211,193,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,36,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,0,0,187,180,176,182,163,188,203,205,170,208,209,190,197,211,168,0,182,0,163,163,0,0,180,176,182,163,187,188,205,170,208,209,190,0,0,0,0,180,176,182,163,188,203,205,170,208,209,190,197,211,193,168,188,182,36,180,188,36,180,176,182,163,187,188,205,170,208,209,190,182,36,180,180,36,182,180,180,170,208,188,36,180,180,180,163,187,188,209,190,180,182,163,187,188,209,190,182,163,0,0,0,0,0,0,0,0,0,193,0,0,0,0,53,0,0,176,187,170,209,190,197,168,0,187,180,176,176,182,182,163,188,203,205,205,170,208,209,190,197,211,168,187,190,0,0,0,176,188,205,0,0,36,180,176,182,163,187,188,205,170,208,209,190,170,208,176,182,163,188,203,205,170,208,197,0,0,197,0,180,176,182,163,187,188,205,170,208,209,190,0,0,0,53,182,176,205,176,205,176,205,36,193,193,0,0,0,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,36,168,193,0,0,0,0,176,182,163,188,203,205,170,208,197,168,211,211,0,0,165,0,251,251,251,165,251,251,251,251,0,121,121,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,121,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,121,251,251,121,251,251,251,251,251,251,251,251,0,0,0,0,0,0,0,252,0,0,252,253,116,255,253,116,255,253,116,255,253,116,255,253,116,255,116,116,116,116,253,116,255,253,116,255,0,253,116,116,253,116,255,0,116,253,116,255,253,116,255,0,253,252,0,253,253,116,255,252,252,20,255,20,255,116,0,255,255,253,116,255,253,116,255,253,116,255,253,255,252,0,116,255,253,253,255,0,253,116,255,253,116,255,253,116,255,253,116,255,116,253,116,255,253,116,255,253,116,255,253,116,255,255,20,255,0,253,23,255,255,0,0,20,255,0,253,20,31,23,253,116,255,255,255,255,253,253,253,255,253,255,31,255,31,255,253,116,116,253,253,255,252,20,31,253,255,255,252,253,116,253,255,0,253,253,255,0,253,0,116,116,255,23,255,255,253,116,255,253,116,255,253,116,255,253,116,255,253,116,255,253,116,255,253,116,255,20,255,253,255,0,0,260,260,260,260,260,260,260,260,260,260,260,260,260,260,0,260,260,260,260,260,260,260,260,260,0,25,25,260,260,260,260,260,260,260,0,39,39,39,39,39,39,39,0,39,39,39,39,39,39,39,0,39,39,39,39,39,39,39,39,0,0,0,39,39,39,39,39,39,39,0,0,0,132,132,132,132,132,132,132,132,132,132,132,132,264,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,0,0,0,177,0,177,119,222,119,222,119,222,119,222,119,222,119,119,119,222,119,222,119,222,119,222,222,119,222,119,222,119,222,119,222,222,119,222,222,119,222,119,222,119,222,177,119,119,222,119,222,119,222,119,222,119,222,119,222,119,222,119,222,119,222,222,222,222,119,119,222,119,222,119,222,119,222,119,222,119,222,119,222,119,222,268,268,268,268,268,0,0,0,0,268,0,268,268,0,268,265,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,266,265,266,267,268,266,268,266,0,267,270,268,265,266,269,269,267,270,270,268,265,266,269,267,270,268,265,266,269,267,267,267,270,268,265,266,269,268,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,265,265,265,266,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,270,268,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,265,267,265,267,267,265,266,266,267,267,267,268,266,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,265,265,266,0,272,0,272,0,0,0,0,194,194,194,194,194,194,194,0,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,0,194,194,194,194,194,194,194,194,194,0,0,165,0,121,165,121,121,121,121,121,121,121,121,121,121,121,121,121,121,0,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,0,121,121,121,121,121,121,121,121,121,121,0,121,121,0,42,42,42,42,42,42,42,42,42,0,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,0,32,32,32,32,32,32,32,32,32,32,32,32,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,0,28,28,0,0,0,274,0,274,110,28,275,110,28,275,110,28,275,110,28,275,110,28,275,110,110,110,28,275,110,28,275,110,110,110,28,275,275,110,28,275,110,28,275,28,0,28,110,28,275,0,110,275,28,110,28,275,110,28,275,110,28,275,28,110,274,110,28,275,110,28,275,110,28,275,110,28,275,110,110,28,275,110,28,275,110,28,275,110,28,275,0,28,0,0,28,0,28,275,28,0,28,28,110,28,28,28,110,28,28,110,110,28,275,110,28,275,110,28,275,110,28,275,110,28,275,110,28,275,110,28,275,0,28,0,0,0,276,0,278,125,277,276,278,125,277,278,125,277,278,125,277,278,125,277,125,125,125,125,278,125,277,278,125,277,125,125,278,125,277,277,278,125,277,278,125,277,125,278,125,277,125,277,278,125,277,278,125,277,278,125,277,125,125,278,125,277,278,125,277,278,125,277,278,125,277,125,278,125,277,278,125,277,278,125,277,278,125,277,278,277,278,278,125,125,125,278,278,125,278,125,277,278,125,277,278,125,277,278,125,277,278,125,277,278,125,277,278,125,277,278,0,37,37,0,0,0,0,274,0,274,280,281,37,280,281,37,280,281,37,280,281,37,280,281,37,110,110,280,281,37,280,281,37,280,280,281,37,280,281,37,280,281,37,281,37,280,281,37,0,37,280,281,37,280,281,37,280,281,37,37,110,274,280,281,37,280,280,281,37,280,281,37,280,281,37,280,281,280,281,37,280,281,37,280,281,37,280,281,37,37,0,280,0,0,37,37,37,281,37,37,110,280,37,37,37,110,37,37,280,281,37,280,281,37,280,281,37,280,281,37,280,281,37,280,281,37,280,281,37,37,0,0,0,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,0,0,0,0,0,0,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,0,0,0,0,27,283,27,283,27,283,27,283,27,283,27,283,27,283,27,283,283,283,27,27,27,283,27,283,27,283,27,27,27,283,283,27,283,283,283,27,283,27,283,27,283,27,283,27,27,283,27,283,27,283,283,27,283,27,283,27,283,27,283,27,27,27,27,283,27,27,27,27,27,27,283,27,27,27,283,27,283,27,283,27,283,27,283,27,283,27,283,27,283,27,283,0,285,0,0,0,286,286,0,285,286,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,19,258,285,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,22,22,285,22,258,286,285,22,258,258,286,19,19,285,22,258,286,19,0,0,0,0,285,22,258,286,19,0,22,285,22,258,286,19,0,22,258,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,19,22,22,22,22,22,22,22,22,19,22,19,22,258,22,258,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,285,22,258,286,19,19,0,0,0,214,214,0,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,259,214,259,214,288,259,214,259,214,288,259,214,288,0,288,259,214,288,259,214,259,259,214,214,259,214,259,259,214,288,259,214,288,259,259,259,259,214,288,259,214,288,259,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,0,288,288,288,288,288,288,288,288,288,288,288,259,214,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,0,0,288,0,0,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,0,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,0,0,165,0,290,290,290,165,290,290,290,290,121,121,290,290,290,290,290,290,290,290,290,290,290,290,290,290,290,121,290,290,290,290,290,290,290,290,290,0,290,290,290,290,290,290,290,290,121,290,290,290,290,121,290,290,290,290,290,290,290,290,0,0,0,0,0,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,0,40,40,40,40,40,40,40,40,40,40,0,0,294,295,0,0,295,0,0,295,0,293,294,0,293,294,0,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,292,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,0,292,0,0,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,0,296,296,298,298,0,0,298,298,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,298,299,299,298,299,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,299,299,299,298,299,298,299,299,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,0,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,307,307,307,307,0,0,305,307,305,307,305,307,305,307,305,307,305,307,305,307,305,307,305,307,305,307,305,307,305,305,307,305,307,305,307,305,305,307,305,307,305,307,305,307,307,305,307,305,307,305,307,305,307,0,0,305,305,307,305,307,305,307,305,307,305,307,305,307,305,307,305,305,0,0,0,0,0,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,0,26,26,26,26,26,26,26,26,320,0,0,318,233,317,0,0,0,0,309,0,0,233,0,316,317,312,309,318,0,320,0,0,313,314,316,0,233,0,0,309,318,0,313,314,0,189,0,0,0,318,309,312,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,227,310,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,141,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,311,229,141,142,312,313,309,314,228,315,227,233,316,317,318,238,141,142,312,313,309,314,228,315,227,233,316,317,318,238,227,228,315,142,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,310,317,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,0,229,310,141,142,229,310,312,313,309,314,228,315,227,227,233,316,317,318,238,320,142,312,309,228,315,312,312,309,309,228,228,315,315,141,142,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,227,227,312,314,228,315,189,189,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,227,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,227,310,227,320,227,0,227,320,227,227,227,0,227,229,310,227,310,314,227,228,315,189,238,227,227,312,227,238,312,314,227,314,0,229,310,227,229,141,142,312,313,309,314,228,315,227,233,316,317,318,238,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,0,142,227,385,385,385,385,386,387,388,387,389,389,389,389,389,0,319,319,319,0,319,0,322,319,322,319,322,319,322,319,322,319,322,319,322,319,319,322,319,322,319,322,319,322,319,322,319,322,319,319,322,319,322,319,322,319,322,322,319,322,319,227,322,319,322,319,322,319,322,319,322,319,322,319,322,319,322,319,322,227,319,319,322,319,322,319,322,319,322,319,322,319,322,319,322,319,322,319,390,391,392,391,392,390,0,324,324,0,324,0,0,165,0,323,325,324,165,323,325,324,323,325,324,323,325,324,323,325,324,121,121,323,325,324,323,325,324,323,324,324,323,325,324,324,323,325,324,323,325,324,323,323,325,323,325,324,324,323,325,324,323,325,324,323,325,324,121,323,325,324,323,325,324,323,325,324,323,325,324,324,323,325,324,323,325,324,323,325,324,323,325,324,323,325,323,325,323,323,325,323,325,323,0,323,323,121,323,121,324,323,325,324,323,325,324,323,325,324,323,325,324,323,325,324,323,325,324,323,325,324,0,0,204,0,124,204,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,0,0,206,0,206,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,206,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,0,393,327,393,327,0,0,0,0,165,0,393,393,326,327,328,326,326,165,393,326,327,328,393,326,327,328,393,326,327,328,393,326,327,328,121,121,393,326,327,328,393,326,327,328,326,326,326,327,328,327,328,393,326,327,328,328,393,326,327,328,393,326,327,328,326,326,326,393,326,327,328,327,328,393,326,327,328,393,326,327,328,393,326,327,328,326,121,326,393,326,327,328,393,326,327,328,393,326,327,328,393,326,327,328,393,327,328,393,326,327,328,393,326,327,328,393,326,327,328,393,326,327,328,326,326,326,326,326,326,326,326,0,0,121,326,326,326,0,121,327,328,393,326,327,328,393,326,327,328,393,326,327,328,393,326,327,328,393,326,327,328,393,326,327,328,393,326,327,328,326,0,330,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,331,332,333,335,335,335,335,335,335,336,334,140,335,335,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,140,339,140,338,140,338,140,338,140,338,140,338,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,337,335,34,34,34,34,335,297,140,338,339,218,297,140,338,339,218,332,333,335,34,297,332,333,337,336,334,297,335,140,338,339,34,218,335,332,333,297,335,335,335,335,331,335,335,335,335,337,336,334,297,335,140,338,339,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,34,34,34,332,333,337,336,334,297,335,140,338,339,34,218,335,335,297,218,297,297,339,336,334,297,218,0,140,34,34,34,34,332,333,337,336,334,297,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,297,34,0,341,140,332,333,335,335,335,333,34,140,333,335,335,335,34,332,333,337,336,334,297,335,140,338,339,34,218,337,335,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,336,334,297,140,338,339,218,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,331,335,335,335,335,335,335,339,34,34,34,339,34,34,34,218,34,34,34,34,34,34,297,332,333,335,335,332,333,335,335,34,332,333,332,333,34,34,34,34,34,34,332,333,335,339,335,335,297,140,338,339,218,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,332,333,337,336,334,297,335,140,338,339,34,218,218,344,34,34,344,34,34,344,34,34,0,341,34,332,333,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,0,0,24,24,24,24,24,24,24,0,0,0,347,347,347,347,347,347,347,0,347,347,347,347,347,347,347,347,347,347,347,347,347,347,347,347,347,347,0,0,347,347,347,347,347,347,347,347,347,0,375,349,0,0,349,0,0,375,0,0,175,0,175,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,374,348,374,348,349,350,348,349,350,115,348,349,350,348,349,350,374,348,348,349,350,350,348,349,350,348,349,350,175,0,348,349,350,350,350,350,348,349,350,348,349,350,348,349,350,348,349,350,115,175,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,0,350,115,374,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,0,348,394,395,394,396,396,0,351,351,0,0,0,43,351,352,43,351,352,43,351,352,43,351,352,43,351,352,43,351,352,43,351,352,351,351,43,351,352,352,352,352,352,352,352,352,352,352,352,43,351,352,43,351,352,43,351,352,351,43,351,352,43,351,352,43,351,352,351,43,351,352,43,351,352,43,351,352,43,351,352,351,352,43,351,352,43,351,352,43,351,352,43,43,351,352,352,352,352,352,43,0,352,352,351,43,351,352,43,351,352,43,351,352,43,351,352,43,351,352,43,351,352,43,351,352,352,352,352,0,0,199,0,0,122,232,199,122,232,122,232,122,232,122,232,122,232,122,232,122,232,122,232,122,122,232,232,122,122,232,122,232,122,232,232,232,232,122,232,122,232,122,232,232,232,122,232,232,199,232,122,232,122,232,122,232,122,232,122,232,122,232,122,232,122,232,122,232,122,232,122,232,122,232,122,232,122,232,122,232,122,232,122,232,0,0,362,362,362,362,362,0,362,362,362,362,0,362,362,362,362,362,0,362,362,0,0,362,362,362,362,362,362,362,362,362,362,362,362,362,362,0,362,362,362,362,362,362,362,362,362,0,0,0,0,0,0,362,362,362,362,362,362,362,362,0,0,0,0,0,363,0,0,0,0,363,364,365,366,118,364,365,366,118,364,365,366,118,364,365,366,118,364,365,366,118,118,118,118,118,118,364,365,366,118,364,365,366,118,364,365,366,118,365,366,118,364,365,366,118,0,366,366,364,365,366,118,364,365,366,118,364,366,363,364,0,364,364,364,365,366,118,0,363,364,365,366,118,0,366,366,363,366,364,364,365,366,118,364,365,366,118,364,365,366,118,364,366,363,363,118,364,364,365,366,118,0,364,365,366,118,364,365,366,118,364,365,366,118,365,366,118,364,365,366,118,364,365,366,118,364,365,366,118,364,365,366,118,366,366,366,364,366,118,0,364,364,364,0,364,0,366,366,0,366,366,0,366,366,364,366,364,364,364,364,364,364,364,364,364,364,366,118,0,0,0,366,366,118,366,118,364,364,364,364,364,364,118,0,365,366,118,364,364,365,366,118,364,365,366,118,364,365,366,118,364,365,366,118,364,365,366,118,364,365,366,118,364,365,366,118,366,366,0,0,366,364,0,369,369,0,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,367,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,397,397,0,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,0,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,372,372,372,0,372,0,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,0,372,372,372,372,372,372,372,0,375,0,0,375,0,175,0,0,175,115,374,375,376,115,374,375,376,115,374,375,376,115,374,375,376,115,374,375,376,374,374,115,374,375,376,115,374,375,376,115,115,374,375,376,115,374,375,376,374,115,374,375,376,376,115,374,375,376,115,374,375,376,175,0,115,374,375,376,376,376,376,115,374,375,376,115,374,375,376,115,374,375,376,115,374,375,376,115,175,115,374,375,376,115,374,375,376,115,374,375,376,115,374,375,376,115,374,375,376,115,374,375,376,115,374,375,376,115,374,375,376,115,374,375,376,0,376,115,374,115,374,375,376,115,374,375,376,115,374,375,376,115,374,375,376,115,374,375,376,115,374,375,376,115,374,375,376,115,374,375,376,0,394,395,394,0,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,0,0],"f":[0,0,0,0,0,0,0,0,0,0,[[[1,[-1]]],[[3,[[2,[-1]]]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[5,-1],5,[[6,[5]]]],0,[[7,-2],-1,[],[[6,[7],[[8,[-1]]]]]],[[7,-2],-1,[],[[6,[7],[[8,[-1]]]]]],[[7,-2],-1,[],[[6,[7],[[8,[-1]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-2,[[1,[-1]]],[],[[11,[],[[10,[[1,[-1]]]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],0,0,0,[[[12,[-1]],13],[[12,[-1]]],[]],[14,-1,[]],[14,-1,[]],[14,15],0,[[[1,[-1]],16],[[18,[15,17]]],[]],0,[-1,-1,[]],[19,[[12,[-1]]],[]],[[[20,[-1]]],[[12,[-1]]],21],[22,[[12,[-1]]],[]],[[[23,[-1]]],[[12,[-1]]],21],[[[24,[-1]]],[[12,[-1]]],[]],[[[25,[-1]]],[[12,[-1]]],21],[[[26,[-1]]],[[12,[-1]]],21],[[[27,[-1]]],[[12,[-1]]],21],[[[28,[-1,-2]]],[[12,[-2]]],[[30,[29]]],[]],[[[31,[-1]]],[[12,[-1]]],21],[[[32,[-1]]],[[12,[-1]]],21],[[[33,[-1]]],[[12,[-1]]],21],[[[34,[-1,-2,-3]]],[[12,[-3]]],[],35,21],[[[36,[-1]]],[[12,[-1]]],21],[[[37,[-1,-2,-3]]],[[12,[-2]]],[[30,[29]]],[],[21,38]],[[[39,[-1]]],[[12,[-1]]],21],[[[40,[-1]]],[[12,[-1]]],[]],[[[41,[-1]]],[[12,[-1]]],21],[[[42,[-1]]],[[12,[-1]]],21],[[[43,[-1]]],[[12,[-1]]],[]],[-1,-1,[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[1,[-1]],-3],[[1,[-2]]],[],[],[[46,[-1],[[8,[-2]]]],47,48,21]],0,[[],[[1,[-1]]],[]],[[-2,-4],[[1,[-3]]],[],[[49,[],[[8,[-1]]]],47],[],[[6,[-1],[[8,[-3]]]],47]],0,[[-2,-4],[[1,[-3]]],[],[[50,[],[[10,[-1]]]],47],[],[[46,[-1],[[8,[-3]]]],47]],[[[2,[-1]]],[[1,[-1]]],[]],0,0,[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-2,[[1,[-1]]],[],[[53,[-1]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[56,[],[[54,[-1]],[55,[-2]]]]],[[57,[-1]]],[58,59,21,60],[[62,[[3,[61]]]],59,21,60]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[56,[],[[54,[-1]],[55,[-2]]]]],[[3,[29]]],[58,59,21,60],[[62,[[3,[61]]]],59,21,60]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[63,63],[[[64,[-1,-2]]],[[64,[-1,-2]]],21,21],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[57,[[12,[-3]]]]],69,[],[21,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],63,69,[],[21,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],63,69,[],[21,59,60]],0,0,[[],63],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[57,[[12,[-3]]]]],69,[],[21,59,60]],[70,[[1,[[71,[-1]]]]],[]],[14,15],[14,15],[[[64,[-1,-2]],16],72,59,59],[63,[[57,[73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[3,[[12,[-3]]]]],69,[],[21,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[3,[[12,[-3]]]]],69,[],[21,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[3,[[12,[-3]]]]],69,[],[21,59,60]],[[63,-1],[[15,[[68,[],[[65,[-2]],[66,[-1]],[67,[-3]]]],[1,[[71,[-3]]]]]]],[],69,[21,59,60]],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[63,13],[63,13],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],73,69,[],[21,59,60]],[70,[[1,[[71,[-1]]]]],[]],0,[70,[[1,[[71,[-1]]]]],[]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[57,[[12,[[71,[-3]]]]]]],69,[],[21,59,60]],[63,13],[[63,13],15],[63,15],[63,15],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[57,[75]]],69,[],[21,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],15,69,[],[21,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]],73],[[57,[-3]]],69,[],[21,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[1,[[71,[-3]]]]],69,[],[21,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[1,[[71,[-3]]]]],69,[],[21,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]],76],[[1,[[71,[-3]]]]],69,[],[21,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[1,[[71,[-3]]]]],69,[],[21,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]],73,77,77],15,69,[],[21,59,60]],[78,79],[63,80],[[70,61],15],[[63,61],15],[[70,61],15],[[63,61],15],[[63,13],15],[[70,61],[[1,[[71,[-1]]]]],[]],0,[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],57,69,[],[21,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[81,[-3]]],69,[],[21,59,60]],[63,13],[63,82],[63,83],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]],[84,[29]],83],[[1,[[71,[-3]]]]],69,[],[21,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]],[84,[29]],85],[[1,[[71,[-3]]]]],69,[],[21,59,60]],[70,29],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]],-3],[[1,[[71,[-3]]]]],69,[],[21,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[12,[-3]]],69,[],[21,59,60]],[70,[[12,[[71,[-1]]]]],[]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]],73],[[12,[-3]]],69,[],[21,59,60]],[[63,29],[[81,[[86,[-1]]]]],[87,60,48,35,21,38]],[[63,29],[[81,[[86,[-1]]]]],[87,60,48,35,21,38]],0,0,0,0,0,[[[57,[73]]],[[1,[[71,[-1]]]]],60],[[[57,[73]],13],[[1,[[71,[-1]]]]],60],0,[[[71,[-1]]],[[88,[-1]]],60],[[[57,[73]]],[[1,[[71,[-1]]]]],60],[80,[[1,[[71,[-1]]]]],60],[82,[[1,[[71,[-1]]]]],60],[[[57,[73]],61],[[1,[[71,[-1]]]]],60],[[[57,[73]]],[[1,[[71,[-1]]]]],60],[[[57,[73]]],[[1,[[71,[-1]]]]],60],[-1,[[88,[-1]]],60],[89,[[88,[-1]]],60],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[89,89],[[-1,-2],15,[],[]],[[[90,[-1]]],[[1,[71]]],68],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[90,[-1]]],35],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[89,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[90,[-1]]],68],[-1,[[15,[[90,[-2]],[1,[-3]]]]],[],68,[]],[[[90,[-1]]],91,68],[[[90,[-1]]],[],68],[[[90,[-1]]],[[81,[-2]]],68,[]],[[[90,[-1]]],-2,68,[]],[[[90,[-1]]],61,68],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[90,[-1]],-2],[[1,[-2]]],68,[]],[[[90,[-1]]],[[12,[-2]]],68,[]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,[[71,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[71,[-1]]],[[71,[-1]]],21],[[-1,-2],15,[],[]],[-1,-2,[],[]],[89,[[71,[-1]]],[]],[14,-1,[]],[14,-1,[]],[14,15],[[[71,[-1]],16],72,59],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[71,[-1]]],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[78,13],78],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[78,13],78],[-1,-2,[],[]],[[78,13],78],[[],78],[[78,92],78],[[78,-1],78,[[62,[61]]]],[[78,80],78],[14,-1,[]],[14,-1,[]],[14,15],[[78,13],78],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[78,[57,[91]]],78],[[78,80],78],[[78,93],78],[[78,94],78],[[78,82],78],[[78,13],78],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-2,[[1,[-1]]],[],[[11,[],[[10,[[1,[-1]]]]]]]],[[[57,[73]]],[[1,[-1]]],[]],[-2,[[1,[-1]]],[],[[49,[],[[8,[-1]]]],60]],[[[57,[73]],13],[[1,[-1]]],[]],[-1,[[1,[-1]]],60],[[[57,[73]]],[[1,[-1]]],[]],[[[57,[73]],61],[[1,[-1]]],[]],[[[57,[73]]],[[1,[-1]]],[]],[[[57,[73]]],[[1,[-1]]],[]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[95,95],[[-1,-2],15,[],[]],[-1,-2,[],[]],[[],[[18,[96,97]]]],[[],95],[14,-1,[]],[14,-1,[]],[14,15],[[95,95],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[95,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[96,[[18,[95,[15,[[3,[97]],95]]]]]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[95,96,13],[[18,[13,97]]]],[[95,96,13],[[18,[13,97]]]],0,0,[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[95,96,[84,[-1]]],[[15,[[3,[97]],[3,[29]]]]],[[30,[29]]]],[[95,96],[[18,[15,97]]]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[98,-2],-1,[],[[6,[],[[8,[-1]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[18,[98,99]]]],[[98,-1],15,[[49,[],[[8,[15]]]],60]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[100,-2],-1,[],[[6,[],[[8,[-1]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[18,[100,99]]]],[[100,-1],15,[[49,[],[[8,[15]]]],60]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[92,92],[[-1,-2],15,[],[]],[-1,-2,[],[]],[[],92],[14,-1,[]],[14,-1,[]],[14,15],[[92,92],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],0,[[92,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[92,-1],15,101],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[1,[[18,[15,102]]]]]],0,0,[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[29,92],[[],61],[-1,15,[[62,[[103,[29]]]]]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[104,104],[[-1,-2],15,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[104,104],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[104,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[104,-1],15,101],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[81,[104]]]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[1,[-1]]],[]],0,0,0,0,0,0,0,0,0,[[5,-1],5,[[6,[5]]]],[[105,[3,[-2]]],105,[],[[62,[[12,[-1]]]]]],[[7,-2],-1,[],[[6,[7],[[8,[-1]]]]]],[[7,-2],-1,[],[[6,[7],[[8,[-1]]]]]],[[7,-2],-1,[],[[6,[7],[[8,[-1]]]]]],[[106,106,80],106],[[107,13],107],[[105,-3],105,[],[[62,[[12,[-1]]]]],[[108,[],[[10,[-2]]]]]],[[105,-3],105,[],[[62,[[12,[-1]]]]],[[108,[],[[10,[-2]]]]]],[[105,-2],105,[],[[62,[[12,[-1]]]]]],[[105,[57,[-2]]],105,[],[[62,[[12,[-1]]]]]],[[105,[57,[-2]]],105,[],[[62,[[12,[-1]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],82],[[82,-1],109,[]],[[82,15],110],[[82,-1],111,[]],[[82,-1],112,[]],[[82,-1,13],113,[]],[[82,-1,13],114,[]],[[82,-1],115,[]],[[82,13,13,-1],116,[]],[[82,-1],117,[]],[[82,-1],118,[]],[[82,-1,13],119,[]],0,[[],120],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],0,[[82,-1],121,[]],[[82,-1],122,[]],[[82,-1],123,[]],[[82,-1],124,[]],[[82,-1],125,[]],[[82,-1],126,[]],[[82,-1],127,[]],[[82,-1],128,[]],[[82,-1],129,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[120,120],[82,82],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[82,85],[82,130],[[[74,[131]]],82],[[],82],[[],82],[[],120],[82,132],[[],82],[133,131],[14,-1,[]],[14,-1,[]],[134,131],[135,131],[14,-1,[]],[14,-1,[]],[136,131],[14,-1,[]],[137,138],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],0,0,[[82,-1],118,[]],[[82,-1],116,[]],[[82,-1],109,[]],[[82,-1],111,[]],[[82,-1],117,[]],0,0,[[82,-1],139,[]],[[82,-1],139,[]],0,[[82,-1],115,[]],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[[82,-1],116,[]],[[120,120],13],[[82,82],13],[[82,-1],118,[]],[[120,16],72],[[82,16],72],0,[[82,-1],117,[]],[[82,-1],109,[]],[[82,-1],118,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[82,-1],140,[]],0,[[82,15],110],[[82,-1],118,[]],[[82,13,13,-1],116,[]],[[82,-1],109,[]],[[82,-1,13],119,[]],[[82,-1,13],112,[]],[[82,-1,13],114,[]],[[82,-1],122,[]],[[82,-1,13],113,[]],[[82,-1],115,[]],[[82,-1],111,[]],[[82,-1],141,[]],[[82,-1],[[57,[142]]],[]],0,[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],13],[120,13],0,0,[[],13],[120,13],0,0,[[],82],[[],82],0,0,0,0,0,[[82,-1],[[57,[142]]],[]],[[82,-1],139,[]],[[82,-1],139,[]],[[82,13,13,-1],116,[]],0,0,0,0,0,[82,143],[[82,-1],139,[]],[[82,-1],139,[]],[[82,144],15],[[82,120],15],0,0,0,[13,[[81,[82]]]],0,0,[[[74,[131]]],82],[[],82],[[],82],[[],82],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[82,-1],139,[]],[[82,-1],139,[]],[[82,-1],140,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],145],[[],146],[[],147],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[85,121],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[148,148],[149,149],[150,150],[151,151],[152,152],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,153,[[46,[82],[[8,[128]]]]]],[-1,154,[[46,[82],[[8,[121]]]]]],[-1,155,[[46,[82],[[8,[124]]]]]],[-1,156,[[46,[82],[[8,[123]]]]]],[-1,150,[[46,[82],[[8,[122]]]]]],[[],153],[[],157],[[],148],[[],154],[[],158],[[],155],[[],156],[[],149],[[],150],[[],151],[[],152],[[],159],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[[148,148],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[148,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[139,151],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[85,121],[85,121],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[161,[],[[160,[-1]]]],-1],129,35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[129,129],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],162],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[129,16],72],[-1,-1,[]],[-1,-1,[]],[[],162],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[163,[-1,-2,-3]],164],[[163,[-1,-2,-3]]],[],165,166],[[[163,[-1,-2,-3]],167],[[163,[-1,-2,-3]]],[],165,166],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,[[[168,[-1]],[169,[80]]],[[168,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[170,[-1,-2,-3]],[84,[-1]]],[[170,[-1,-2,-3]]],[171,[173,[172]],174],21,175],[[[36,[-1]]],[[0,[-1]]],21],0,0,0,0,0,[[[36,[-1]],-2],[[36,[-1]]],21,[[62,[[12,[-1]]]]]],[[[163,[-1,-2,-3]]],[[163,[-1,-2,-3]]],[],165,166],[[[163,[-1,-2,-3]]],[[163,[-1,-2,-3]]],[],165,166],0,[[-1,13,-3],[[176,[-2,-4,-5]]],[[62,[61]]],[],[[46,[13],[[8,[-2]]]]],[177,178],179],[[[180,[-1,-2,-3]]],[[3,[181]]],21,[],166],[[[182,[-1,-2,-3,-4]]],[[3,[181]]],[183,21],21,[165,184,185,186],179],[[[163,[-1,-2,-3]]],[[3,[181]]],[],165,166],[187,[[3,[181]]]],[[[188,[-1,-2,-3]]],[[3,[181]]],[],[189,165],166],[[[190,[-1,-2,-3,-4,-5]]],[[3,[181]]],[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[193,193],[[-1,-2],15,[],[]],0,0,0,0,[[[194,[-1]],29,[57,[-1]],-3],[[182,[-1,-2,-4,-5]]],[183,21],[],[[46,[-1],[[8,[-2]]]]],[184,186],179],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-4,[[163,[-1,-2,-3]]],[],165,166,[[62,[[192,[-1,-2,-3]]]]]],[[53,[57,[193]],195,196],15],[[[197,[-1]],198],[[197,[-1]]],199],[[[168,[-1]],198],[[168,[-1]]],[]],0,0,[[53,9,[57,[193]]],15],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],0,0,[[[180,[-1,-2,-3]],181],15,21,[],166],[[[163,[-1,-2,-3]],181],15,[],165,166],[[187,181],15],[[[188,[-1,-2,-3]],181],15,[],[189,165],166],[[[190,[-1,-2,-3,-4,-5]],181],15,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],0,[[187,181,-1,-2,200,201,202,195],15,166,[]],[[[180,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,21,[],166],[[[176,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,[],[177,178],179],[[[182,[-1,-2,-3,-4]],181,-4,-3,200,201,202,195],15,[183,21],21,[165,184,185,186],179],[[[163,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,[],165,166],[[[188,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,[],[189,165],166],[[[203,[-1]],181,-2,-1,200,201,202,195],15,204,166],[[[205,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,21,[206,178],179],[[[170,[-1,-2,-3]],181,-4,-3,200,201,202,195],15,[171,[62,[91]],207],21,175,166],[[[208,[-1,-2,-3]],181,-4,-3,200,201,202,195],15,[171,[62,[91]],207],21,175,166],[[[209,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,[],[],166],[[[190,[-1,-2,-3,-4,-5]],181,-3,-2,200,201,202,195],15,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[197,[-1]],181,-2,-1,200,201,202,195],15,199,210],[[211,181,-1,-2,200,201,202,195],15,166,[]],[[[168,[-1]],181,-2,-3,200,201,202,195],15,[21,191],[[213,[],[[212,[-1]]]]],[]],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],0,0,[[[36,[-1]],-2],[[36,[-1]]],21,[[62,[[12,[-1]]]]]],[[193,193],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[[168,[-1]],214],[[168,[-1]]],[]],[53,[[215,[-1]]],[]],0,0,[[211,16],[[18,[15,17]]]],[[193,16],[[18,[15,17]]]],[[[168,[-1]],16],[[18,[15,17]]],59],[[53,216,[57,[193]]],15],[[[36,[-1]],13],[[36,[-1]]],[]],[[[176,[-1,-2,-3]],-4],[[176,[-1,-2,-3]]],[],[177,178],179,62],[[[182,[-1,-2,-3,-4]]],[[182,[-1,-2,-3,-4]]],[183,21],[],[184,186],179],[[[205,[-1,-2,-3]],-4],[[205,[-1,-2,-3]]],21,206,179,62],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[217,193],[218,193],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,[[197,[-2]]],[[62,[219]]],199],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[193,-1],15,101],[[],[[36,[-1]]],[]],[[[163,[-1,-2,-3]],-4],[[163,[-1,-2,-3]]],[],165,166,[[62,[220]]]],[[[188,[-1,-2,-3]],-4],[[188,[-1,-2,-3]]],[],[189,165],166,[[62,[220]]]],[[[203,[-1]],-2],[[203,[-1]]],204,[[62,[220]]]],[[[170,[-1,-2,-3]],-4],[[170,[-1,-2,-3]]],[171,[173,[172]],174],21,175,[[62,[221]]]],[[[208,[-1,-2,-3]],-4],[[208,[-1,-2,-3]]],[171,[173,[172]],174],21,175,[[62,[220]]]],[[[197,[-1]],-2],[[197,[-1]]],199,[[62,[220]]]],[[[168,[-1]],-2],[[168,[-1]]],[],[[62,[220]]]],[-1,211,[[62,[220]]]],0,0,[[[176,[-1,-2,-3]],222],[[176,[-1,-2,-3]]],[],[177,178],179],[[[182,[-1,-2,-3,-4]],223],[[182,[-1,-2,-3,-4]]],[183,21],[],[184,186],179],[[[176,[-1,-2,-3]]],[[57,[193]]],[],[177,178],179],[[[163,[-1,-2,-3]],193],[[163,[-1,-2,-3]]],[],165,166],[187,[[57,[193]]]],[[[170,[-1,-2,-3]]],[[57,[193]]],[171,[62,[91]],207],21,175],[[[209,[-1,-2,-3]]],[[57,[193]]],[],[],166],[[[190,[-1,-2,-3,-4,-5]]],[[57,[193]]],[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[197,[-1]]],[[57,[193]]],199],[[[168,[-1]]],[[57,[193]]],[21,191]],0,[-2,[[168,[-1]]],[],[[62,[-1]]]],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[36,[-1]]],[[12,[-1]]],21],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[187,181,-1,94],224,166],[[[180,[-1,-2,-3]],181,-3,94],224,21,[],166],[[[176,[-1,-2,-3]],181,-3,94],224,[],[177,178],179],[[[182,[-1,-2,-3,-4]],181,-4,94],224,[183,21],21,[165,184,185,186],179],[[[163,[-1,-2,-3]],181,-3,94],224,[],165,166],[[[188,[-1,-2,-3]],181,-3,94],224,[],[189,165],166],[[[203,[-1]],181,-2,94],224,204,166],[[[205,[-1,-2,-3]],181,-3,94],224,21,[206,178],179],[[[170,[-1,-2,-3]],181,-4,94],224,[171,[62,[91]],207],21,175,166],[[[208,[-1,-2,-3]],181,-4,94],224,[171,[62,[91]],207],21,175,166],[[[209,[-1,-2,-3]],181,-3,94],224,[],[],166],[[[190,[-1,-2,-3,-4,-5]],181,-3,94],224,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[197,[-1]],181,-2,94],224,199,210],[[211,181,-1,94],224,166],[[[168,[-1]],181,-2,94],224,[21,191],[[213,[],[[212,[-1]]]]]],[[-1,-6],[[190,[-2,-3,-4,-1,-5]]],191,[],[],[],[[62,[[192,[-2,-3,-4]]]]],[[46,[-1],[[8,[-5]]]]]],[[[182,[-1,-2,-3,-4]],-5],[[182,[-1,-2,-3,-4]]],[183,21],[],[184,186],179,[[62,[225]]]],0,[[[163,[-1,-2,-3]],-4],[[163,[-1,-2,-3]]],[],165,166,[[62,[221]]]],[[[163,[-1,-2,-3]],-4],[[163,[-1,-2,-3]]],[],165,166,[[62,[221]]]],0,[-4,[[180,[-1,-2,-3]]],[],[],166,[[62,[[192,[-1,-2,-3]]]]]],[[[180,[-1,-2,-3]],181,201,202,195,-3],226,21,[],166],[[[176,[-1,-2,-3]],181,201,202,195,-3],226,[],[177,178],179],[[[182,[-1,-2,-3,-4]],181,201,202,195,-4],226,[183,21],21,[165,184,185,186],179],[[[163,[-1,-2,-3]],181,201,202,195,-3],226,[],165,166],[[187,181,201,202,195,-1],226,166],[[[188,[-1,-2,-3]],181,201,202,195,-3],226,[],[189,165],166],[[[205,[-1,-2,-3]],181,201,202,195,-3],226,21,[206,178],179],[[[170,[-1,-2,-3]],181,201,202,195,-4],226,[171,[62,[91]],207],21,175,166],[[[208,[-1,-2,-3]],181,201,202,195,-4],226,[171,[62,[91]],207],21,175,166],[[[209,[-1,-2,-3]],181,201,202,195,-3],226,[],[],166],[[[190,[-1,-2,-3,-4,-5]],181,201,202,195,-3],226,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],0,0,0,0,[-4,[[180,[-1,-2,-3]]],[],[],[],[[62,[[192,[-1,-2,-3]]]]]],[[-1,13,-3],[[176,[-2,-4,-5]]],[[62,[61]]],[],[[46,[13],[[8,[-2]]]]],[177,178],179],[[[194,[-1]],29,[57,[-1]],-3],[[182,[-1,-2,-4,-5]]],[183,21],[],[[46,[-1],[[8,[-2]]]]],[184,186],179],[-4,[[163,[-1,-2,-3]]],[],165,166,[[62,[[192,[-1,-2,-3]]]]]],[[[227,[-1]],-5],[[188,[-2,-3,-4]]],[],[],[189,165],166,[[46,[228,-1,13],[[8,[[229,[-2,-3,-4]]]]]]]],[[[230,[80]],80],[[203,[-1]]],204],[[-1,-2,[57,[-2]],-4],[[205,[-3,-5,-6]]],[[62,[61]]],[231,171],21,[[6,[-2],[[8,[-3]]]]],206,179],[[[230,[-1]],-1,-3],[[170,[-1,-2,-4]]],[171,[173,[172]],174],21,[[46,[-1],[[8,[-2]]]]],175],[[[230,[-1]],-1,-3],[[208,[-1,-2,-4]]],[171,[173,[172]],174],21,[[46,[-1],[[8,[-2]]]]],175],[-4,[[209,[-1,-2,-3]]],[],[],166,[[46,[93],[[8,[[192,[-1,-2,-3]]]]]]]],[[-1,-6],[[190,[-2,-3,-4,-1,-5]]],191,[],[],[],[[62,[[192,[-2,-3,-4]]]]],[[46,[-1],[[8,[-5]]]]]],[-1,[[197,[-2]]],[[62,[232]]],199],[[-1,-2],211,[[62,[220]]],[[62,[220]]]],[-1,193,[[62,[[103,[29]]]]]],[-2,[[168,[-1]]],[],[[62,[-1]]]],[[[188,[-1,-2,-3]],-4],[[188,[-1,-2,-3]]],[],[189,165],166,[[46,[228],[[8,[-1]]]]]],[[[182,[-1,-2,-3,-4]],-2],[[182,[-1,-2,-3,-4]]],[183,21],[],[184,186],179],[[[36,[-1]],-1],[[36,[-1]]],[]],[[[180,[-1,-2,-3]],-1],[[180,[-1,-2,-3]]],[],[],[]],[[[188,[-1,-2,-3]],-4],[[188,[-1,-2,-3]]],[],[189,165],166,[[46,[233],[[8,[-1]]]]]],[[[36,[-1]],-1],[[36,[-1]]],[]],[[[180,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,21,[],166],[[[176,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,[],[177,178],179],[[[182,[-1,-2,-3,-4]],181,234,201,202,-4,235,[236,[-2]],195],237,[183,21],21,[165,184,185,186],179],[[[163,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,[],165,166],[[187,181,234,201,202,-1,235,[236,[-2]],195],237,166,[]],[[[188,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,[],[189,165],166],[[[205,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,21,[206,178],179],[[[170,[-1,-2,-3]],181,234,201,202,-4,235,[236,[-2]],195],237,[171,[62,[91]],207],21,175,166],[[[208,[-1,-2,-3]],181,234,201,202,-4,235,[236,[-2]],195],237,[171,[62,[91]],207],21,175,166],[[[209,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,[],[],166],[[[190,[-1,-2,-3,-4,-5]],181,234,201,202,-3,235,[236,[-1]],195],237,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[182,[-1,-2,-3,-4]],-5],[[182,[-1,-2,-3,-4]]],[183,21],[],[184,186],179,[[46,[61],[[8,[-2]]]]]],[[[36,[-1]],-1],[[36,[-1]]],[]],[[[180,[-1,-2,-3]],-1],[[180,[-1,-2,-3]]],[],[],[]],[[[180,[-1,-2,-3]],-1],[[180,[-1,-2,-3]]],[],[],[]],[[[36,[-1]],-1],[[36,[-1]]],[]],[[[182,[-1,-2,-3,-4]],-5],[[182,[-1,-2,-3,-4]]],[183,21],[],[184,186],179,[[46,[-1],[[8,[-2]]]]]],[[[180,[-1,-2,-3]],-1],[[180,[-1,-2,-3]]],[],[],[]],[[[180,[-1,-2,-3]],-1],[[180,[-1,-2,-3]]],[],[],[]],[[[170,[-1,-2,-3]],-2],[[170,[-1,-2,-3]]],[171,[173,[172]],174],21,175],[[[208,[-1,-2,-3]],-2],[[208,[-1,-2,-3]]],[171,[173,[172]],174],21,175],[[[188,[-1,-2,-3]],-4,-5],[[188,[-1,-2,-3]]],[],[189,165],166,[[62,[221]]],[[46,[238],[[8,[-1]]]]]],[[[36,[-1]],-1],[[36,[-1]]],[]],[[[180,[-1,-2,-3]],-1],[[180,[-1,-2,-3]]],[],[],[]],[[[180,[-1,-2,-3]],-1],[[180,[-1,-2,-3]]],[],[],[]],[[[180,[-1,-2,-3]],181,201,-3,53],15,21,[],166],[[[163,[-1,-2,-3]],181,201,-3,53],15,[],165,166],[[187,181,201,-1,53],15,166],[[[188,[-1,-2,-3]],181,201,-3,53],15,[],[189,165],166],[[[209,[-1,-2,-3]],181,201,-3,53],15,[],[],166],[[[190,[-1,-2,-3,-4,-5]],181,201,-3,53],15,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[180,[-1,-2,-3]],181,201,-3],[[57,[[239,[-1,-2,-3]]]]],21,[],166],[[[182,[-1,-2,-3,-4]],181,201,-4],[[57,[[239,[-2,-3,-4]]]]],[183,21],21,[165,184,185,186],179],[[[163,[-1,-2,-3]],181,201,-3],[[57,[[239,[-1,-2,-3]]]]],[],165,166],[[187,181,201,-1],[[57,[[239,[-2,-3,-1]]]]],166,[],[]],[[[188,[-1,-2,-3]],181,201,-3],[[57,[[239,[-1,-2,-3]]]]],[],[189,165],166],[[[209,[-1,-2,-3]],181,201,-3],[[57,[[239,[-1,-2,-3]]]]],[],[],166],[[[190,[-1,-2,-3,-4,-5]],181,201,-3],[[57,[[239,[-1,-2,-3]]]]],[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[182,[-1,-2,-3,-4]],-5],[[182,[-1,-2,-3,-4]]],[183,21],[],[184,186],179,[[62,[240]]]],[[[163,[-1,-2,-3]],-4],[[163,[-1,-2,-3]]],[],165,166,[[62,[240]]]],0,0,0,0,[[[230,[80]],80],[[203,[-1]]],204],0,[[-1,-2,[57,[-2]],-4],[[205,[-3,-5,-6]]],[[62,[61]]],[171,231],21,[[6,[-2],[[8,[-3]]]]],206,179],0,0,[[],15],[-4,[[209,[-1,-2,-3]]],[],[],166,[[46,[93],[[8,[[192,[-1,-2,-3]]]]]]]],0,0,[-2,[[242,[-1,82,241]]],[],[[62,[[12,[-1]]]]]],[[53,243,[57,[193]],195,244],15],0,0,[[[176,[-1,-2,-3]],193],15,[],[177,178],179],[[187,193],15],[[[170,[-1,-2,-3]],193],15,[171,[62,[91]],207],21,175],[[[209,[-1,-2,-3]],193],15,[],[],166],[[[190,[-1,-2,-3,-4,-5]],193],15,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[197,[-1]],193],15,199],[[[168,[-1]],193],15,[21,191]],0,[187,[[93,[220]]]],[[[180,[-1,-2,-3]]],[[93,[220]]],21,[],166],[[[176,[-1,-2,-3]],-4],[[176,[-1,-2,-3]]],[],[177,178],179,[[62,[221]]]],[[[176,[-1,-2,-3]]],[[93,[220]]],[],[177,178],179],[[[182,[-1,-2,-3,-4]]],[[93,[220]]],[183,21],21,[165,184,185,186],179],[[[182,[-1,-2,-3,-4]],80],[[182,[-1,-2,-3,-4]]],[183,21],[],[184,186],179],[[[163,[-1,-2,-3]]],[[93,[220]]],[],165,166],[[[188,[-1,-2,-3]]],[[93,[220]]],[],[189,165],166],[[[203,[-1]]],[[93,[220]]],204],[[[205,[-1,-2,-3]]],[[93,[220]]],21,[206,178],179],[[[205,[-1,-2,-3]],-4],[[205,[-1,-2,-3]]],21,206,179,[[62,[221]]]],[[[170,[-1,-2,-3]]],[[93,[220]]],[171,[62,[91]],207],21,175],[[[208,[-1,-2,-3]]],[[93,[220]]],[171,[62,[91]],207],21,175],[[[209,[-1,-2,-3]]],[[93,[220]]],[],[],166],[[[190,[-1,-2,-3,-4,-5]]],[[93,[220]]],[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[197,[-1]]],[[93,[220]]],199],[211,[[93,[220]]]],[[[168,[-1]]],[[93,[220]]],[21,191]],[187,[[93,[220]]]],[[[190,[-1,-2,-3,-4,-5]]],[[93,[220]]],[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],0,[[[230,[-1]],-1,-3],[[170,[-1,-2,-4]]],[171,[173,[172]],174],21,[[46,[-1],[[8,[-2]]]]],175],0,[[[176,[-1,-2,-3]],-4],[[176,[-1,-2,-3]]],[],[177,178],179,[[62,[221]]]],[[[188,[-1,-2,-3]],-4],[[188,[-1,-2,-3]]],[],[189,165],166,[[62,[221]]]],[[[205,[-1,-2,-3]],-4],[[205,[-1,-2,-3]]],21,206,179,[[62,[221]]]],0,0,[[[36,[-1]],-2],[[36,[-1]]],21,[[62,[[12,[-1]]]]]],[[[180,[-1,-2,-3]]],245,21,[],166],[[[176,[-1,-2,-3]]],245,[],[177,178],179],[[[182,[-1,-2,-3,-4]]],245,[183,21],21,[165,184,185,186],179],[[[163,[-1,-2,-3]]],245,[],165,166],[187,245],[[[188,[-1,-2,-3]]],245,[],[189,165],166],[[[205,[-1,-2,-3]]],245,21,[206,178],179],[[[170,[-1,-2,-3]]],245,[171,[62,[91]],207],21,175],[[[208,[-1,-2,-3]]],245,[171,[62,[91]],207],21,175],[[[209,[-1,-2,-3]]],245,[],[],166],[[[190,[-1,-2,-3,-4,-5]]],245,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[170,[-1,-2,-3]],-4],[[170,[-1,-2,-3]]],[171,[173,[172]],174],21,175,[[62,[-1]]]],[[[208,[-1,-2,-3]],-1],[[208,[-1,-2,-3]]],[171,[173,[172]],174],21,175],[[[176,[-1,-2,-3]],-4],[[176,[-1,-2,-3]]],[],[177,178],179,62],[[[182,[-1,-2,-3,-4]],-5],[[182,[-1,-2,-3,-4]]],[183,21],[],[184,186],179,[62,62,21]],[[[163,[-1,-2,-3]],-4],[[163,[-1,-2,-3]]],[],165,166,62],[[[188,[-1,-2,-3]],-4],[[188,[-1,-2,-3]]],[],[189,165],166,62],[[[203,[-1]],-2],[[203,[-1]]],204,62],[[[205,[-1,-2,-3]],-4],[[205,[-1,-2,-3]]],21,206,179,62],[[[170,[-1,-2,-3]],-4],[[170,[-1,-2,-3]]],[171,[173,[172]],174],21,175,62],[[[208,[-1,-2,-3]],-4],[[208,[-1,-2,-3]]],[171,[173,[172]],174],21,175,62],[[[197,[-1]],-2],[[197,[-1]]],199,62],0,[-1,[[197,[-2]]],[[62,[232]]],199],[[[197,[-1]],13],[[197,[-1]]],199],0,[[[180,[-1,-2,-3]]],246,21,[],166],[[[176,[-1,-2,-3]]],246,[],[177,178],179],[[[182,[-1,-2,-3,-4]]],246,[183,21],21,[165,184,185,186],179],[[[163,[-1,-2,-3]]],246,[],165,166],[187,246],[[[188,[-1,-2,-3]]],246,[],[189,165],166],[[[205,[-1,-2,-3]]],246,21,[206,178],179],[[[170,[-1,-2,-3]]],246,[171,[62,[91]],207],21,175],[[[208,[-1,-2,-3]]],246,[171,[62,[91]],207],21,175],[[[209,[-1,-2,-3]]],246,[],[],166],[[[190,[-1,-2,-3,-4,-5]]],246,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],0,0,0,[[53,247,[57,[193]]],15],[[[182,[-1,-2,-3,-4]],-5],[[182,[-1,-2,-3,-4]]],[183,21],[],[184,186],179,[62,21]],[[[176,[-1,-2,-3]],-4],[[176,[-1,-2,-3]]],[],[177,178],179,[[62,[225]]]],[[[205,[-1,-2,-3]],-4],[[205,[-1,-2,-3]]],21,206,179,[[62,[225]]]],[[[176,[-1,-2,-3]],248],[[176,[-1,-2,-3]]],[],[177,178],179],[[[205,[-1,-2,-3]],248],[[205,[-1,-2,-3]]],21,206,179],[[[176,[-1,-2,-3]],-4],[[176,[-1,-2,-3]]],[],[177,178],179,[[62,[221]]]],[[[205,[-1,-2,-3]],-4],[[205,[-1,-2,-3]]],21,206,179,[[62,[221]]]],[[[36,[-1]],-2],[[36,[-1]]],21,[[62,[[103,[29]]]]]],[-1,-2,[],[]],[193,61],[[-1,13,-3],[[249,[-2,-4,-5]]],[[62,[[57,[61]]]]],[],[[46,[13],[[8,[-2]]]]],250,[166,179]],0,0,[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],193],0,[[[230,[-1]],-1,-3],[[208,[-1,-2,-4]]],[171,[173,[172]],174],21,[[46,[-1],[[8,[-2]]]]],175],[-1,211,[[62,[220]]]],0,[[[176,[-1,-2,-3]],-4],[[176,[-1,-2,-3]]],[],[177,178],179,[[62,[220]]]],[[[182,[-1,-2,-3,-4]],-5],[[182,[-1,-2,-3,-4]]],[183,21],[],[184,186],179,[[62,[220]]]],[[[163,[-1,-2,-3]],-4],[[163,[-1,-2,-3]]],[],165,166,[[62,[220]]]],[[[188,[-1,-2,-3]],-4],[[188,[-1,-2,-3]]],[],[189,165],166,[[62,[220]]]],[[[203,[-1]],-2],[[203,[-1]]],204,[[62,[220]]]],[[[205,[-1,-2,-3]],-4],[[205,[-1,-2,-3]]],21,206,179,[[62,[220]]]],[[[170,[-1,-2,-3]],-4],[[170,[-1,-2,-3]]],[171,[173,[172]],174],21,175,[[62,[220]]]],[[[208,[-1,-2,-3]],-4],[[208,[-1,-2,-3]]],[171,[173,[172]],174],21,175,[[62,[221]]]],[[[197,[-1]],-2],[[197,[-1]]],199,[[62,[220]]]],[[[168,[-1]],-2],[[168,[-1]]],[],[[62,[220]]]],[-1,211,[[62,[220]]]],[-1,211,[[62,[220]]]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[251,[-1,-2]],164],[[251,[-1,-2]]],[],166],[[[251,[-1,-2]],167],[[251,[-1,-2]]],[],166],[[[165,[],[[160,[-1]]]],-1],121,35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[[-2,80],[[251,[-1,241]]],[],[[62,[[192,[-1,82,241]]]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[[251,[-1,-2]]],[[251,[-1,-2]]],[],166],[[[251,[-1,-2]]],[[251,[-1,-2]]],[],166],[[[251,[-1,-2]]],[[3,[181]]],[],166],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[[[251,[-1,-2]],181],15,[],166],[[[251,[-1,-2]],181,-2,82,200,201,202,195],15,[],166],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[251,[-1,-2]],220],[[251,[-1,-2]]],[],166],0,[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[251,[-1,-2]],181,-2,94],224,[],166],[[[251,[-1,-2]],80],[[251,[-1,-2]]],[],166],[[[251,[-1,-2]],80],[[251,[-1,-2]]],[],166],[[[251,[-1,-2]],181,201,202,195,-2],226,[],166],[[[251,[-1,-2]],181,234,201,202,-2,235,[236,[-1]],195],237,[],166],[[[251,[-1,-2]],181,201,-2,53],15,[],166],[[[251,[-1,-2]],181,201,-2],[[57,[[239,[-1,82,-2]]]]],[],166],[[[251,[-1,-2]],-3],[[251,[-1,-2]]],[],166,[[62,[240]]]],0,[[[251,[-1,-2]]],[[93,[220]]],[],166],[[[251,[-1,-2]],-3],[[251,[-1,-2]]],[],166,62],0,[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[251,[-1,-2]],220],[[251,[-1,-2]]],[],166],0,0,0,0,0,0,0,0,0,0,[[[252,[],[[160,[-1]]]],13,13,-1],116,35],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-3,[[253,[-1,-2,241]]],[],252,[[62,[[254,[-1,-2,241]]]]]],[[[253,[-1,-2,-3]]],[[3,[181]]],21,252,[166,210]],[116,116],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-3,[57,[-1]]],[[253,[-1,-2,241]]],[],252,[[62,[[254,[-1,-2,241]]]]]],[[],116],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[-1,[[23,[-2]]],[[62,[[103,[29]]]]],[]],[[[253,[-1,-2,-3]],181],15,21,252,[166,210]],[[[252,[],[[160,[-1]]]],-1],116,35],[[-1,195,202,13,13,252,-2,-3],116,166,[[6,[],[[8,[0]]]]],[[6,[-1,116]]]],[[[253,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,21,252,[166,210]],[14,15],[14,15],[14,15],[[[252,[],[[160,[-1]]]],-1],116,35],[[[252,[],[[160,[-1]]]],-1],116,35],[[[20,[-1]]],[[20,[-1]]],[]],[[[255,[-1,0]]],[[255,[-1,0]]],[]],[[[20,[-1]]],[[20,[-1]]],[]],[[[255,[-1,0]]],[[255,[-1,0]]],[]],[[116,16],72],[193,[[1,[-1]]],[]],[[[255,[-1,-2]],256],[[255,[-1,-2]]],[],[]],[[[255,[-1,-2]],257],[[255,[-1,-2]]],[],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[253,[-1,-2,-3]],-4],[[253,[-1,-2,-3]]],[],252,166,[[62,[220]]]],[[[255,[-1,-2]],-3],[[255,[-1,-2]]],[],[],[[62,[220]]]],[[[252,[],[[160,[-1]]]],13,13,-1],116,35],[-1,[[20,[-2]]],[[62,[258]]],[]],0,[[[255,[-1,-2]],256],[[255,[-1,-2]]],[],[]],[[[253,[-1,-2,-3]],193],[[253,[-1,-2,-3]]],[],252,166],[[[253,[-1,-2,-3]]],[[57,[193]]],21,252,[166,210]],[[[255,[-1,-2]],193],[[255,[-1,-2]]],[],[]],[-1,[[31,[-2]]],[[62,[259]]],[]],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[255,[-1,-2]],-3],[[255,[-1,-2]]],[],[],[[62,[[103,[29]]]]]],[[[20,[-1]]],[[20,[-1]]],[]],[[[255,[-1,0]]],[[255,[-1,0]]],[]],[[-1,94,220,220,240,-2],224,[],[[6,[-1,94],[[8,[224]]]]]],[[[253,[-1,-2,-3]],181,-3,94],224,21,252,[166,210]],[[[23,[-1]],-2],[[23,[-1]]],[],[[62,[258]]]],[[[255,[-1,0]],-2],[[255,[-1,0]]],[],[[62,[258]]]],[[[255,[-1,-2]],256],[[255,[-1,-2]]],[],[]],0,0,[[[20,[-1]]],[[20,[-1]]],[]],[[[255,[-1,0]]],[[255,[-1,0]]],[]],[[201,202,13],226],[[[253,[-1,-2,-3]],181,201,202,195,-3],226,21,252,[166,210]],0,[[[0,[259,-1]]],[[31,[-1]]],[]],0,[-4,[[253,[-1,-2,-3]]],[],252,166,[[62,[[192,[-1,-2,-3]]]]]],[[],116],[[[0,[259,-1]]],[[255,[-1,[0,[259,-1]]]]],[]],[[-1,260],[[255,[-2,260]]],[[62,[[103,[29]]]]],[]],0,0,[[-4,[57,[-1]]],[[253,[-1,-2,-3]]],[],252,166,[[62,[[192,[-1,-2,-3]]]]]],[[[253,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,21,252,[166,210]],[[[253,[-1,-2,-3]],-1],[[253,[-1,-2,-3]]],[],252,166],[[[255,[-1,-2]],-1],[[255,[-1,-2]]],[],[]],[[[253,[-1,-2,-3]],[57,[-1]]],[[253,[-1,-2,-3]]],[],252,166],[[[255,[-1,-2]],[57,[-1]]],[[255,[-1,-2]]],[],[]],[[[31,[-1]],-1],[[31,[-1]]],[]],[[[255,[-1,[0,[259,-1]]]],-1],[[255,[-1,[0,[259,-1]]]]],[]],[[[31,[-1]],[57,[-1]]],[[31,[-1]]],[]],[[[255,[-1,[0,[259,-1]]]],[57,[-1]]],[[255,[-1,[0,[259,-1]]]]],[]],[[[253,[-1,-2,-3]],181,201,-3,53],15,21,252,[166,210]],0,0,[[[253,[-1,-2,-3]],181,201,-3],[[57,[[239,[-1,-2,-3]]]]],21,252,[166,210]],[[[253,[-1,-2,-3]],-4],[[253,[-1,-2,-3]]],[],252,166,[[62,[240]]]],[[[255,[-1,-2]],-3],[[255,[-1,-2]]],[],[],[[62,[240]]]],[[[252,[],[[160,[-1]]]],13,13,-1],116,35],[[[20,[-1]],13],[[20,[-1]]],[]],[[[31,[-1]],13],[[31,[-1]]],[]],[[[253,[-1,-2,-3]],13],[[253,[-1,-2,-3]]],[],252,166],[[[255,[-1,0]],13],[[255,[-1,0]]],[]],[[[255,[-1,[0,[259,-1]]]],13],[[255,[-1,[0,[259,-1]]]]],[]],[[[252,[],[[160,[-1]]]]],143,35],[[[253,[-1,-2,-3]],193],15,21,252,[166,210]],0,[[[253,[-1,-2,-3]]],[[93,[220]]],21,252,[166,210]],[[[255,[-1,-2]],256],[[255,[-1,-2]]],[],[]],[-1,[[23,[-2]]],[[62,[[103,[29]]]]],[]],[[[253,[-1,-2,-3]]],245,21,252,[166,210]],[[[253,[-1,-2,-3]]],[[253,[-1,-2,-3]]],[],252,166],[[[255,[-1,-2]],145],[[255,[-1,-2]]],[],[]],[-1,[[23,[-2]]],[[62,[[103,[29]]]]],[]],[[[253,[-1,-2,-3]]],246,21,252,[166,210]],[-1,[[23,[-2]]],[[62,[[103,[29]]]]],[]],0,[-1,-2,[],[]],[[[255,[-1,-2]],-3],[[255,[-1,-2]]],[],[],[[62,[[103,[29]]]]]],[[[23,[-1]],-2],[[23,[-1]]],[],[[62,[258]]]],[[[255,[-1,260]],13],[[255,[-1,260]]],[]],[[[255,[-1,0]],-2],[[255,[-1,0]]],[],[[62,[258]]]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[20,[-1]],13],[[20,[-1]]],[]],[[[255,[-1,0]],13],[[255,[-1,0]]],[]],[[[253,[-1,-2,-3]],-4],[[253,[-1,-2,-3]]],[],252,166,[[62,[220]]]],[[[255,[-1,-2]],-3],[[255,[-1,-2]]],[],[],[[62,[220]]]],0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],258],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[25,[-2]]],[[62,[[103,[29]]]]],[]],[[-1,260],[[25,[-2]]],[[62,[[103,[29]]]]],[]],[[[25,[-1]],13],[[25,[-1]]],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[261,-2],[[39,[-1]]],[],[[46,[261],[[8,[-1]]]]]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[262,77,263],261],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[261,77],261],[261,261],[261,261],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[132,132],[[-1,-2],15,[],[]],[-1,-2,[],[]],[264,132],[[],132],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[[[177,[],[[160,[-1]]]],-1,13],119,35],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[119,119],[[[222,[-1]]],[[222,[-1]]],21],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[[222,[-1]],[222,[-1]]],13,38],[[119,16],[[18,[15,17]]]],[[[222,[-1]],16],[[18,[15,17]]],59],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[177,[],[[160,[-1]]]],-1,13],119,35],0,[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[265,13],265],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[266,[-1]],-2,-2,-2],[[267,[-1]]],21,[[62,[[103,[29]]]]]],[265,[[266,[-1]]],[]],[[[266,[-1]],-2],[[266,[-1]]],[],[[62,[[103,[29]]]]]],[[[267,[-1]]],[[3,[181]]],21],[268,268],[[[266,[-1]]],[[266,[-1]]],21],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[[57,[-1]],[57,[139]],220],[[253,[-1,82,241]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],269],[14,-1,[]],[270,[[3,[271]]]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[267,[-1]],181],15,21],[[[267,[-1]],181,241,82,200,201,202,195],15,21],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[[268,16],72],[[269,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[265,[[57,[139]]]],[265,13],[[265,220],265],[[[266,[-1]],220],[[266,[-1]]],[]],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[265,13],[[[267,[-1]],181,241,94],224,21],[[-1,-2,[57,[139]],[57,[139]]],265,[[62,[[103,[29]]]],21],[[62,[[103,[29]]]],21]],[[[267,[-1]],181,234,201,202,241,235,[236,[-1]],195],237,21],[[[267,[-1]],181,201,241],[[57,[[239,[-1,82,241]]]]],21],[[265,-2,[57,[256]]],[[253,[-1,82,241]]],[],[[46,[268],[[8,[-1]]]]]],[[[266,[-1]],-2],[[266,[-1]]],[],[[62,[[103,[29]]]]]],[[[266,[-1]],-2],[[266,[-1]]],[],[[62,[[103,[29]]]]]],[[[267,[-1]]],[[93,[220]]],21],[[[267,[-1]]],245,21],[[[267,[-1]]],246,21],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[265,268],[[1,[-1]]],[]],[[265,220],265],[[[266,[-1]],220],[[266,[-1]]],[]],0,[[[272,[-1]],[3,[-2]]],[[272,[-1]]],[],[[62,[[12,[-1]]]]]],[[],[[272,[-1]]],[]],[[[272,[-1]],-2],[[272,[-1]]],[],[[62,[[12,[-1]]]]]],[14,[[272,[-1]]],[]],[[[3,[[12,[-1]]]]],[[272,[-1]]],[]],0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-2,[[3,[61]]],183,[[11,[],[[10,[-1]]]]]],[[[194,[-1]]],[[194,[-1]]],21],[[-1,-2],15,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[[194,[-1]],16],[[18,[15,17]]],59],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[3,[-1]]],[[194,[-1]]],[183,21]],[[-2,-4,29],[[0,[[108,[],[[10,[-1]]]]]]],[],[[11,[],[[10,[-1]]]]],[[30,[29]]],[[11,[],[[10,[-3]]]]]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[3,[-1]],[57,[-1]]],[[194,[-1]]],[183,21]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[165,[],[[160,[-1]]]],-1],121,35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[121,121],[[-1,-2],15,[],[]],[-1,-2,[],[]],[[],121],[14,-1,[]],[14,-1,[]],[[-1,121,195],15,166],[14,15],[[121,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],0,[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[94,220,220,80,80,240,164,167,-1],224,[[6,[94],[[8,[224]]]]]],0,0,[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[193,[[1,[[57,[195]]]]]],[[121,-1],121,[[62,[143]]]],[[121,-1,-2],121,[[62,[139]]],[[62,[221]]]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[42,[-1]]],[[3,[181]]],21],[-1,-2,[],[]],[[29,-1,-2,-3],[[42,[-1]]],21,[[62,[[12,[-1]]]]],[[62,[[12,[-1]]]]]],[14,-1,[]],[14,-1,[]],[[[42,[-1]],181],15,21],[[[42,[-1]],181,241,82,200,201,202,195],15,21],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[42,[-1]],181,241,94],224,21],[[[42,[-1]],181,201,202,195,241],226,21],[[29,-2,-3,-1],[[42,[-1]]],21,[[62,[[12,[-1]]]]],[[62,[[12,[-1]]]]]],[[[42,[-1]],[57,[-1]]],[[42,[-1]]],21],[[[42,[-1]],181,234,201,202,241,235,[236,[-1]],195],237,21],[[[42,[-1]],181,201,241,53],15,21],[[[42,[-1]],181,201,241],[[57,[[239,[-1,82,241]]]]],21],[[[42,[-1]]],[[93,[220]]],21],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[[[32,[-1]],-2],[[32,[-1]]],[],[[62,[[103,[29]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[32,[-1]],-2],[[32,[-1]]],[],[[62,[[12,[-1]]]]]],[14,-1,[]],[14,-1,[]],[-1,[[32,[-2]]],[[62,[[103,[29]]]]],[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[32,[-1]],-2],[[32,[-1]]],[],[[62,[[12,[-1]]]]]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[32,[-2]]],[[62,[[103,[29]]]]],[]],[[[32,[-1]],-2],[[32,[-1]]],[],[[62,[[12,[-1]]]]]],[[[32,[-1]],-2],[[32,[-1]]],[],[[62,[[12,[-1]]]]]],[[[32,[-1]],-2],[[32,[-1]]],[],[[62,[[12,[-1]]]]]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[],[[273,[82]]]],[[],[[273,[82]]]],[[],[[273,[82]]]],[[],[[273,[82]]]],[[],[[273,[82]]]],[[],[[273,[82]]]],0,0,0,0,0,0,0,0,[[[274,[],[[160,[-1]]]],-1],110,[35,21]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[110,110],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],275],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[28,[-1,-2]],181],15,[[30,[29]]],[]],[[241,82,201,202,80,240,[57,[80]],225,92,[57,[-1]],275,195],15,[[30,[29]]]],[[[28,[-1,-2]],181,241,82,200,201,202,195],15,[[30,[29]]],[]],[14,15],[14,15],[14,15],[[[84,[-1]],[57,[14]],-3],[[28,[-1,-2]]],[[30,[29]]],[],[[46,[14],[[8,[-2]]]]]],[[110,16],[[18,[15,17]]]],[[275,16],72],[[[28,[-1,-2]],92],[[28,[-1,-2]]],[[30,[29]]],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[28,[-1,-2]],80],[[28,[-1,-2]]],[[30,[29]]],[]],0,[[[274,[],[[160,[-1]]]],-1],110,[35,21]],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[241,94,220,80,240,80,225,[57,[92]],[57,[[15,[29]]]]],224],[[[28,[-1,-2]],181,241,94],224,[[30,[29]]],[]],0,[[201,202],226],[[[28,[-1,-2]],181,201,202,195,241],226,[[30,[29]]],[]],0,[[[84,[-1]],[57,[14]],-3],[[28,[-1,-2]]],[[30,[29]]],[],[[46,[14],[[8,[-2]]]]]],[[],275],[[[28,[-1,-2]],181,234,201,202,241,235,[236,[-2]],195],237,[[30,[29]]],[]],[[201,241,275,80,240,80,225,[57,[92]],[84,[-1]],[57,[14]],46],[[57,[[239,[-2,82,241]]]]],[[30,[29]]],[]],[[[28,[-1,-2]],181,201,241],[[57,[[239,[-2,82,241]]]]],[[30,[29]]],[]],[[[28,[-1,-2]],-3],[[28,[-1,-2]]],[[30,[29]]],[],[[62,[240]]]],0,[[[28,[-1,-2]]],[[93,[220]]],[[30,[29]]],[]],[[[28,[-1,-2]]],245,[[30,[29]]],[]],[[[28,[-1,-2]]],246,[[30,[29]]],[]],0,[[[28,[-1,-2]],225],[[28,[-1,-2]]],[[30,[29]]],[]],[[[28,[-1,-2]],80],[[28,[-1,-2]]],[[30,[29]]],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[234,201,202,[236,[-1]],46,[57,[14]],[84,[-2]],-3],237,[],[[30,[29]]],[[6,[],[[8,[275]]]]]],[[[28,[-1,-2]],-3],[[28,[-1,-2]]],[[30,[29]]],[],[[62,[220]]]],0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[276,[],[[160,[-1]]]],-1],125,[35,21]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[125,125],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],277],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],0,[14,15],[14,15],[14,15],[[125,16],72],[[277,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[277,[84,[-1]],[57,[14]],[57,[14]],-3,[57,[46]]],[[278,[-1,-2]]],[[30,[29]]],[],[[196,[14],[[8,[-2]]]]]],[[],277],[[[278,[-1,-2]],279,80],[[239,[-2,82,241]]],[[30,[29]]],[]],[[[278,[-1,-2]],-3],[[278,[-1,-2]]],[[30,[29]]],[],[[62,[240]]]],0,0,0,[[[278,[-1,-2]],-3],[[278,[-1,-2]]],[[30,[29]]],[],[[62,[225]]]],[[[278,[-1,-2]],-3],[[278,[-1,-2]]],[[30,[29]]],[],[[62,[221]]]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[278,[-1,-2]],80],[[278,[-1,-2]]],[[30,[29]]],[]],0,0,0,0,0,0,0,0,0,[[[274,[],[[160,[-1]]]],-1],110,[35,21]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[280,[-1,-2]]],15,[],38],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],0,[[[37,[-1,-2,-3]],181,241,82,200,201,202,195],15,[[30,[29]]],[],[21,38]],[14,15],[14,15],[14,15],[[[280,[-1,-2]],-4],[[37,[-1,-3,-2]]],[[30,[29]]],[21,38],[],[[46,[-2],[[8,[-3]]]]]],[[[37,[-1,-2,-3]],92],[[37,[-1,-2,-3]]],[[30,[29]]],[],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[37,[-1,-2,-3]],80],[[37,[-1,-2,-3]]],[[30,[29]]],[],[]],0,[[[274,[],[[160,[-1]]]],-1],110,[35,21]],[[],14],[[],14],[[],14],[[[280,[-1,-2]],[281,[-1,-2]]],15,[],38],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[37,[-1,-2,-3]],181,241,94],224,[[30,[29]]],[],[21,38]],[[[57,[-1]],[3,[[15,[-1,-2]]]]],[[281,[-1,-2]]],[],[]],0,0,[[],[[280,[-1,-2]]],[],[]],[[[37,[-1,-2,-3]],181,201,202,195,241],226,[[30,[29]]],[],[21,38]],[[[280,[-1,-2]],-4],[[37,[-1,-3,-2]]],[[30,[29]]],[21,38],[],[[46,[-2],[[8,[-3]]]]]],[[[37,[-1,-2,-3]],181,234,201,202,241,235,[236,[-2]],195],237,[[30,[29]]],[],[21,38]],0,[[[37,[-1,-2,-3]],181,201,241],[[57,[[239,[-2,82,241]]]]],[[30,[29]]],[],[21,38]],[[[37,[-1,-2,-3]],-4],[[37,[-1,-2,-3]]],[[30,[29]]],[],[],[[62,[240]]]],0,0,[[[37,[-1,-2,-3]]],[[93,[220]]],[[30,[29]]],[],[21,38]],[[[37,[-1,-2,-3]]],245,[[30,[29]]],[],[21,38]],[[[37,[-1,-2,-3]]],246,[[30,[29]]],[],[21,38]],0,[[[37,[-1,-2,-3]],225],[[37,[-1,-2,-3]]],[[30,[29]]],[],[]],[[[37,[-1,-2,-3]],80],[[37,[-1,-2,-3]]],[[30,[29]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[37,[-1,-2,-3]],-4],[[37,[-1,-2,-3]]],[[30,[29]]],[],[],[[62,[220]]]],0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[282,[-1,-2,-3]],279,80],[[239,[-3,82,241]]],[[30,[29]]],[21,38],[]],[[[282,[-1,-2,-3]],-4],[[282,[-1,-2,-3]]],[[30,[29]]],[21,38],[],[[62,[240]]]],[[[282,[-1,-2,-3]],-4],[[282,[-1,-2,-3]]],[[30,[29]]],[21,38],[],[[62,[225]]]],[[[282,[-1,-2,-3]],-4],[[282,[-1,-2,-3]]],[[30,[29]]],[21,38],[],[[62,[221]]]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[282,[-1,-2,-3]],80],[[282,[-1,-2,-3]]],[[30,[29]]],[21,38],[]],0,[[[3,[[12,[-1]]]]],[[33,[-1]]],[]],0,0,[[241,94,[84,[[12,[-1]]]],240,80,80,[84,[181]]],224,[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[33,[-1]]],[[3,[181]]],21],[[[33,[-1]],256],[[33,[-1]]],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[[[33,[-1]],181],15,21],[[[33,[-1]],181,241,82,200,201,202,195],15,21],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[33,[-1]],181,241,94],224,21],[[[33,[-1]],80],[[33,[-1]]],[]],[[[33,[-1]],181,201,202,195,241],226,21],[[[3,[[12,[-1]]]]],[[33,[-1]]],[]],[[[33,[-1]],181,234,201,202,241,235,[236,[-1]],195],237,21],[[[33,[-1]],181,201,241,53],15,21],[[[33,[-1]],181,201,241],[[57,[[239,[-1,82,241]]]]],21],[[[33,[-1]],240],[[33,[-1]]],[]],[[[33,[-1]],256],[[33,[-1]]],[]],[[[33,[-1]]],[[93,[220]]],21],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[33,[-1]],220],[[33,[-1]]],[]],0,[[],[[27,[-1]]],[]],0,0,[[241,94,[84,[[12,[-1]]]],[84,[283]],220,220,240,284,284,80,80,[84,[181]]],224,[]],0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[27,[-1]]],[[3,[181]]],21],[283,283],[[-1,-2],15,[],[]],[[283,256],283],[[[27,[-1]],284],[[27,[-1]]],[]],[[[27,[-1]],256],[[27,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[27,[-1]],181],15,21],[[[27,[-1]],181,241,82,200,201,202,195],15,21],[14,15],[14,15],[[283,16],72],[-1,-1,[]],[-1,-1,[]],[[[15,[256,256]]],283],[[[15,[256,256,256,256]]],283],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[27,[-1]],220],[[27,[-1]]],[]],[[283,256],283],[[],14],[[],14],[[[27,[-1]]],[[27,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[27,[-1]],181,241,94],224,21],[[[27,[-1]],80],[[27,[-1]]],[]],[[[27,[-1]],181,201,202,195,241],226,21],[[],[[27,[-1]]],[]],[[],283],[[[27,[-1]],181,234,201,202,241,235,[236,[-1]],195],237,21],[[[27,[-1]],181,201,241,53],15,21],[[[27,[-1]],181,201,241],[[57,[[239,[-1,82,241]]]]],21],[[[27,[-1]],240],[[27,[-1]]],[]],[[[27,[-1]],-2],[[27,[-1]]],[],[[62,[[12,[-1]]]]]],[[[27,[-1]],-2,-3],[[27,[-1]]],[],[[62,[[12,[-1]]]]],[[46,[283],[[8,[283]]]]]],[[283,256],283],[[[27,[-1]],284],[[27,[-1]]],[]],[[[27,[-1]],256],[[27,[-1]]],[]],[[[27,[-1]]],[[93,[220]]],21],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[27,[-1]],220],[[27,[-1]]],[]],[[283,256],283],0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[285,285],[22,22],[258,258],[286,286],[19,19],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[19,198],19],0,[[],285],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[14,15],[14,15],[14,15],[[22,[57,[285]]],22],0,[[285,16],72],[[22,16],72],[[258,16],72],[[286,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[22,258],[-1,-1,[]],[-1,-1,[]],[22,19],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,22,[[62,[[74,[29]]]]]],[219,258],[-1,258,[[62,[[103,[[84,[172]]]]]],[30,[[84,[172]]]],60,48]],[[77,77,-1],258,[[62,[[103,[[84,[172]]]]]],[30,[[84,[172]]]],60,48]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,258,[[62,[[103,[[84,[172]]]]]]]],[22,258],[[285,-1],15,101],[[22,-1],15,101],[[258,-1],15,101],[[286,-1],15,101],[[19,220],19],[258,19],[22,19],[258,19],[[],14],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[19,[[57,[232]]]],[[22,[74,[29]]],22],[-1,22,[[62,[[74,[29]]]]]],[22,[[57,[219]]]],[[22,13],22],0,[[22,256],22],0,[[22,256],22],[[19,256],19],0,[[19,150],19],[[22,13],22],[[258,13],258],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[19,220],19],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[259,259],[214,214],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[259,287],[[],214],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[-2,201,-1,198,214,[169,[80]]],15,[21,191],[[213,[],[[212,[-1]]]]]],[[[288,[-1]],181,-2,-3,200,201,202,195],15,[21,191],[[213,[],[[212,[-1]]]]],[]],[14,15],[14,15],[14,15],[[259,259],13],[[214,214],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[259,16],[[18,[15,17]]]],[[214,16],[[18,[15,17]]]],[-1,-1,[]],[-1,259,[[62,[219]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,259,[[30,[[84,[172]]]],60,48]],[-1,259,[[62,[219]]]],[[77,77,-1],259,[[30,[[84,[172]]]],60,48]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[259,-1],15,101],[[214,-1],15,101],[[[288,[-1]],-2],[[288,[-1]]],[],[[62,[220]]]],[259,217],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-2,94,-1,220,220,198,[169,[80]]],224,[],[[213,[],[[212,[-1]]]]]],[[[288,[-1]],181,-2,94],224,[21,191],[[213,[],[[212,[-1]]]]]],[[[288,[-1]],80],[[288,[-1]]],[]],[[[288,[-1]],80],[[288,[-1]]],[]],[[[288,[-1]],181,201,202,195,-2],226,[21,191],[[213,[],[[212,[-1]]]]]],[-1,[[288,[-1]]],[]],[[[288,[-1]],181,234,201,202,-2,235,[236,[-3]],195],237,[21,191],[[213,[],[[212,[-1]]]]],[]],[[[288,[-1]],-2],[[288,[-1]]],[],[[62,[221]]]],[[[288,[-1]],80],[[288,[-1]]],[]],[[[288,[-1]]],[[93,[220]]],[21,191]],[[[288,[-1]]],245,[21,191]],[[[288,[-1]]],246,[21,191]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,[[288,[-1]]],[]],[[[288,[-1]],-2],[[288,[-1]]],[],[[62,[220]]]],0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[289,289],[[-1,-2],15,[],[]],[-1,-2,[],[]],[[],289],[14,-1,[]],[14,-1,[]],[14,15],[[289,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[-1,289,93],93,213],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[289,13],[[],289],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[290,[-1,-2,-3]],164],[[290,[-1,-2,-3]]],[],[165,291],166],[[[290,[-1,-2,-3]],167],[[290,[-1,-2,-3]]],[],[165,291],166],[[[165,[],[[160,[-1]]]],-1],121,35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[[290,[-1,-2,-3]]],[[290,[-1,-2,-3]]],[],[165,291],166],[[[290,[-1,-2,-3]]],[[290,[-1,-2,-3]]],[],[165,291],166],[[[290,[-1,-2,-3]]],[[3,[181]]],[],[165,291,21],166],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[[[290,[-1,-2,-3]],181],15,[],[165,291,21],166],[[[290,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,[],[165,291,21],166],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[290,[-1,-2,-3]],220],[[290,[-1,-2,-3]]],[],[165,291],166],0,[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[290,[-1,-2,-3]],144],[[290,[-1,-2,-3]]],[],[165,291],166],[-3,[[290,[-1,-2,241]]],[],[165,291],[[62,[[192,[-1,-2,241]]]]]],[[[290,[-1,-2,-3]],181,-3,94],224,[],[165,291,21],166],[[[290,[-1,-2,-3]],80],[[290,[-1,-2,-3]]],[],[165,291],166],[[[290,[-1,-2,-3]],80],[[290,[-1,-2,-3]]],[],[165,291],166],[[[290,[-1,-2,-3]],181,201,202,195,-3],226,[],[165,291,21],166],[[[290,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,[],[165,291,21],166],[[[290,[-1,-2,-3]],181,201,-3,53],15,[],[165,291,21],166],[[[290,[-1,-2,-3]],181,201,-3],[[57,[[239,[-1,-2,-3]]]]],[],[165,291,21],166],[[[290,[-1,-2,-3]],-4],[[290,[-1,-2,-3]]],[],[165,291],166,[[62,[240]]]],0,[[[290,[-1,-2,-3]]],[[93,[220]]],[],[165,291,21],166],[[[290,[-1,-2,-3]]],245,[],[165,291,21],166],[[[290,[-1,-2,-3]],-4],[[290,[-1,-2,-3]]],[],[165,291],166,62],[[[290,[-1,-2,-3]]],246,[],[165,291,21],166],0,[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[290,[-1,-2,-3]],220],[[290,[-1,-2,-3]]],[],[165,291],166],0,0,[-2,[[163,[-1,82,241]]],[],[[62,[[12,[-1]]]]]],0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[40,[-1]],-2],[[40,[-1]]],[],[[62,[[12,[-1]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[40,[-1]]],[]],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[40,[-1]]],[[12,[-1]]],[]],[-1,-2,[],[]],[[],[[40,[-1]]],[]],[[],[[40,[-1]]],[]],[[[40,[-1]],-2],[[40,[-1]]],[],[[62,[240]]]],[[[40,[-1]],256],[[40,[-1]]],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[292,292],[293,293],[294,294],[295,295],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[14,15],[14,15],[[292,16],72],[[293,16],72],[[294,16],72],[[295,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[[296,[],[[67,[-1]]]],[57,[297]]],-1,[]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[298,298],[299,299],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[298,298],300],[[299,299],300],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[298,298],13],[[299,299],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[298,16],72],[[299,16],72],[[299,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[298,-1],15,101],[[299,-1],15,101],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[299,301,302],13],0,[[298,298],[[57,[300]]]],[[299,299],[[57,[300]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,303,[]],[-1,61,[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[304,[-1,-2]],256],[[304,[-1,-2]]],[],166],[[[304,[-1,-2]]],[[3,[181]]],[],166],[[[304,[-1,-2]],292],[[304,[-1,-2]]],[],166],[-1,-2,[],[]],[[[304,[-1,-2]],262],[[304,[-1,-2]]],[],166],[14,-1,[]],[14,-1,[]],[[[304,[-1,-2]],181],15,[],166],[[[304,[-1,-2]],181,-2,82,200,201,202,195],15,[],166],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[304,[-1,-2]],220],[[304,[-1,-2]]],[],166],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[304,[-1,-2]],294],[[304,[-1,-2]]],[],166],[[[304,[-1,-2]],293],[[304,[-1,-2]]],[],166],[[[304,[-1,-2]],181,-2,94],224,[],166],[[[304,[-1,-2]],262],[[304,[-1,-2]]],[],166],[[[3,[[305,[-1,-2]]]]],[[304,[-1,-2]]],[],166],[[[304,[-1,-2]],181,234,201,202,-2,235,[236,[-1]],195],237,[],166],[[[304,[-1,-2]],181,201,-2],[[57,[[239,[-1,82,-2]]]]],[],166],[[[304,[-1,-2]],-3],[[304,[-1,-2]]],[],166,[[62,[240]]]],[[[304,[-1,-2]],[57,[295]]],[[304,[-1,-2]]],[],166],[[[304,[-1,-2]]],[[93,[220]]],[],166],[[[304,[-1,-2]],80],[[304,[-1,-2]]],[],166],[[[304,[-1,-2]]],245,[],166],[[[304,[-1,-2]],-3],[[304,[-1,-2]]],[],166,62],[[[304,[-1,-2]]],246,[],166],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[304,[-1,-2]],220],[[304,[-1,-2]]],[],166],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[[192,[-1,82,-2]]],[[305,[-1,-2]]],[],166],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[305,[-1,-2]],256],[[305,[-1,-2]]],[],166],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[306,[299,-2]],[3,[[307,[-2,-3]]]]],[[3,[[305,[-1,-4]]]]],[],[[296,[],[[67,[-1]]]]],[[62,[[103,[29]]]]],166],[-1,[[254,[-2,82,-3]]],[[62,[[103,[29]]]]],[],166],[-3,[[305,[-1,-2]]],[],166,[[62,[[192,[-1,82,-2]]]]]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[305,[-1,-2]],256],[[305,[-1,-2]]],[],166],[[-3,[3,[-4]]],[[305,[-1,-2]]],[],166,[[62,[[192,[-1,82,-2]]]]],[[62,[[305,[-1,-2]]]]]],0,0,[308,[[163,[-1,82,241]]],21],[82,121],0,[[[26,[-1]],13],[[26,[-1]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[26,[-1]]],[]],[[[26,[-1]],-1],[[26,[-1]]],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[227,[-1]],228,309],[[57,[228]]],[]],[[[310,[-1,-2,-3]]],[[310,[-1,-2,-3]]],[],165,166],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[311,201,279],13],[[[229,[-1,-2,-3]],201,279],13,[],165,166],[141,141],[142,142],[312,312],[[[313,[-1]]],[[313,[-1]]],21],[309,309],[314,314],[228,228],[315,315],[[[227,[-1]]],[[227,[-1]]],21],[233,233],[316,316],[317,317],[318,318],[238,238],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[[227,[-1]],228],[[57,[[15,[-1,228]]]]],[]],[[228,228],300],[[315,315],300],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[310,[-1,-2,-3]],-4],[[310,[-1,-2,-3]]],[],165,166,[[62,[[192,[-1,-2,-3]]]]]],[[],317],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[319,314,201,202,-1,-2,200,195,80,[57,[80]],-4,-5],15,166,189,[],[[108,[],[[10,[[15,[228,-3]]]]]]],[[46,[-3,-1,200,201,202,195]]]],[[[229,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,[],165,166],[[[310,[-1,-2,-3]],181,-3,-2,200,201,202,195,13],15,[],165,166],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[[[227,[-1]],228,316],15,[]],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[[142,142],13],[[312,312],13],[[309,309],13],[[228,228],13],[[315,315],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[141,16],[[18,[15,17]]]],[[142,16],[[18,[15,17]]]],[[312,16],[[18,[15,17]]]],[[[313,[-1]],16],[[18,[15,17]]],59],[[309,16],[[18,[15,17]]]],[[314,16],[[18,[15,17]]]],[[228,16],[[18,[15,17]]]],[[315,16],[[18,[15,17]]]],[[[227,[-1]],16],[[18,[15,17]]],59],[[233,16],[[18,[15,17]]]],[[316,16],[[18,[15,17]]]],[[317,16],[[18,[15,17]]]],[[318,16],[[18,[15,17]]]],[[238,16],[[18,[15,17]]]],[[[320,[-1]],16],[[18,[15,17]]],59],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-4,[[229,[-1,-2,-3]]],[],165,166,[[62,[[192,[-1,-2,-3]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[227,[-1]],228],[[57,[-1]]],[]],[[[227,[-1]],228],[[57,[-1]]],[]],[[312,-1],15,101],[[314,-1],15,101],[[228,-1],15,101],[[315,-1],15,101],[[[189,[],[[160,[-1]]]],-1],141,35],[[[189,[],[[160,[-1]]]],-1],[[57,[142]]],35],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[227,[-1]]],13,[]],[[[310,[-1,-2,-3]],201,279],13,[],165,166],[[[227,[-1]]],[[0,[[108,[],[[10,[[15,[228,-1]]]]]]]]],[]],[[[320,[-1]]],[[44,[108]]],[]],[[[227,[-1]]],[[0,[[108,[],[[10,[[15,[228,-1]]]]]]]]],[]],[[181,-1,94,314,220,220,80,-3,-4],224,[],[],[[108,[],[[10,[[15,[228,-2]]]]]]],[[46,[-2,181,-1,94],[[8,[224]]]]]],[[[227,[-1]]],314,[]],[[[320,[-1]]],314,[]],[[[227,[-1]]],14,[]],[[[227,[-1]],228],15,[]],[[[227,[-1]]],[[57,[228]]],[]],[[319,314,201,202,80,[57,[80]]],[[57,[226]]]],[[[227,[-1]],228,318],15,[]],[-4,[[229,[-1,-2,-3]]],[],165,166,[[62,[[192,[-1,-2,-3]]]]]],[-4,[[310,[-1,-2,-3]]],[],165,166,[[62,[[192,[-1,-2,-3]]]]]],[-1,[[15,[[227,[-1]],228]]],[]],[[[310,[-1,-2,-3]],-4],[[310,[-1,-2,-3]]],[],165,166,[[62,[240]]]],[[314,80,93],[[321,[228,195]]]],0,[[228,228],[[57,[300]]]],[[315,315],[[57,[300]]]],[[[189,[],[[160,[-1]]]],-1],[[57,[142]]],35],0,[[[227,[-1]],315,80],15,[]],[[[227,[-1]]],15,[]],[[312,195,80,80],[[15,[195,195]]]],[[[227,[-1]],312,228,-1],[[57,[[15,[228,315]]]]],[]],0,[[312,195,80,80],195],[[314,80,93],[[321,[315,[15,[312,195,80]]]]]],[[[227,[-1]],228,228,317],15,[]],[314,[[0,[[108,[],[[10,[315]]]]]]]],0,[[[229,[-1,-2,-3]],-4],[[229,[-1,-2,-3]]],[],165,166,62],[[[310,[-1,-2,-3]],-4],[[310,[-1,-2,-3]]],[],165,166,62],[[[227,[-1]],228,228],15,[]],[[[229,[-1,-2,-3]],[310,[-1,-2,-3]]],[[229,[-1,-2,-3]]],[],165,166],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[319,314,234,201,202,[236,[-1]],80,-3,[57,[[44,[46]]]],[57,[[44,[46]]]],[57,[[15,[80,[44,[46]]]]]]],237,[],311,[[108,[],[[10,[[15,[228,-2]]]]]]]],0,[-2,[[227,[-1]]],[],[[62,[[313,[-1]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[319,[[57,[[15,[228,279]]]]]],[322,322],[319,319],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[319,319],13],[[322,16],[[18,[15,17]]]],[[319,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[306,[228,-1]],[313,[-1]],14],322,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],14],[[],14],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[322,314],0,[319,[[57,[[15,[228,279]]]]]],[319,[[57,[[15,[315,312]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[165,[],[[160,[-1]]]],-1],121,35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[323,[-1,-2]]],[[3,[181]]],[],166],[324,324],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],324],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[323,[-1,-2]],181],15,[],166],[[[323,[-1,-2]],181,-2,82,200,201,202,195],15,[],166],[[[325,[-1,-2]],-2,82,200,201,202],15,[],166],[14,15],[14,15],[14,15],[[324,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[323,[-1,-2]],181,-2,94],224,[],166],[[[325,[-1,-2]],-2,93,279,244],224,[],166],[[[323,[-1,-2]],181,201,202,195,-2],226,[],166],[[[325,[-1,-2]],201,202,195,-2],226,[],166],[-3,[[323,[-1,-2]]],[],[],[[62,[[192,[-1,82,-2]]]]]],[[[323,[-1,-2]],181,234,201,202,-2,235,[236,[-1]],195],237,[],166],[[[325,[-1,-2]],234,201,202,-2,235,[236,[-1]]],237,[],166],[[[323,[-1,-2]],181,201,-2,53],15,[],166],[[[325,[-1,-2]],201,-2,53],15,[],166],[[[323,[-1,-2]],181,201,-2],[[57,[[239,[-1,82,-2]]]]],[],166],[-3,[[323,[-1,-2]]],[],[],[[62,[[192,[-1,82,-2]]]]]],[[[323,[-1,-2]],-3],[[323,[-1,-2]]],[],[],[[62,[[192,[-1,82,-2]]]]]],[[[323,[-1,-2]],324],[[323,[-1,-2]]],[],[]],0,[[[323,[-1,-2]]],[[93,[220]]],[],166],0,[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[204,[],[[160,[-1]]]],-1],124,35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[124,124],[[-1,-2],15,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[124,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[[[206,[],[[160,[-1]]]],-1,13],113,35],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[113,113],[[-1,-2],15,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],0,[14,15],[[113,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[206,[],[[160,[-1]]]],-1,13],113,35],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[326,[-1,-2,-3]],164],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],167],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],[[[165,[],[[160,[-1]]]],-1],121,35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[326,[-1,-2,-3]]],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]]],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]]],[[3,[181]]],[],166,[191,171,60,48,59]],[[[327,[-1]]],[[327,[-1]]],[191,171,60,48,59,21]],[[[328,[-1]]],[[328,[-1]]],21],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[328,[-1]],-1,-3],[[326,[-2,241,-1]]],[191,171,60,48,59],[],[[62,[[192,[-2,82,241]]]]]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[326,[-1,-2,-3]],181],15,[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],181],15,[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],181,-2,82,200,201,202,195],15,[],166,[191,171,60,48,59]],[14,15],[14,15],[14,15],[14,15],[[[327,[-1]],16],72,[191,171,60,48,59,59]],[[[328,[-1]],16],72,59],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[326,[-1,-2,-3]],220],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],0,[[[326,[-1,-2,-3]],13],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[326,[-1,-2,-3]],181,-2,94],224,[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],80],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],80],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],181,201,202,195,-2],226,[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],181,234,201,202,-2,235,[236,[-1]],195],237,[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],181,201,-2,53],15,[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],181,201,-2],[[57,[[239,[-1,82,-2]]]]],[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],-4],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59],[[62,[240]]]],[[-2,-3,[329,[[15,[-3,195]]]]],[[326,[-1,241,-3]]],[],[[62,[[192,[-1,82,241]]]]],[191,171,60,48,59]],[-1,[[81,[[15,[-1,[327,[-2]]]]]]],[191,171,60,48,59],[191,171,60,48,59,231]],0,[[[326,[-1,-2,-3]]],[[93,[220]]],[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]]],245,[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],-4],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59],62],[-1,[[81,[[15,[-1,[327,[-2]]]]]]],[191,171,60,48,59],[191,171,60,48,59,231]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[326,[-1,-2,-3]],220],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],0,[[[330,[-1]],[3,[-2]]],[[330,[-1]]],[],[[62,[[12,[-1]]]]]],[[[330,[-1]],-2],[[330,[-1]]],[],[[62,[[12,[-1]]]]]],[[],[[330,[-1]]],[]],[14,[[330,[-1]]],[]],[[[3,[[12,[-1]]]]],[[330,[-1]]],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[331,297],15],[[[332,[-1]]],[[332,[-1]]],35],[[[333,[-1]]],[[333,[-1]]],35],[[[335,[334]],297],15],[[[335,[336]],297],15],[[[335,[-1]],297],15,35],[[[335,[-1]],256],13,35],[[[335,[336]]],297],[[[335,[334]]],[[0,[[108,[],[[10,[297]]]]]]]],0,0,0,[[[335,[336]]],[[57,[-1]]],[]],[[[335,[336]]],[[57,[-1]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[337,[-1]]],[[335,[-1]]],35],[[],[[337,[-1]]],35],[[[34,[-1,-2,-3]],284],[[34,[-1,-2,-3]]],[],35,[]],[[[34,[-1,-2,-3]],256],[[34,[-1,-2,-3]]],[],35,[]],[[[34,[-1,-2,-3]],[169,[256]]],[[34,[-1,-2,-3]]],[],35,[]],[[[34,[-1,-2,-3]],256],[[34,[-1,-2,-3]]],[],35,[]],[[[335,[-1]]],15,35],[297,297],[140,140],[338,338],[339,339],[218,218],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[[332,[-1]]],[[332,[-1]]],35],[[[333,[-1]]],[[333,[-1]]],35],[[[335,[-1]],297,13],15,35],[[[34,[-1,-2,-3]],19],[[34,[-1,-2,-3]]],[],35,[]],[[297,297],300],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[335,[-1]],297],13,35],[[[332,[-1]],-2],[[332,[-1]]],35,[]],[[[333,[-1]],-2],[[333,[-1]]],35,[]],[297,340],[[[335,[-1]],297],[[57,[-2]]],35,[]],[[[335,[-1]],297],[[57,[-2]]],35,[]],[[[335,[-1]],297],15,35],[[[335,[-1]],297,-2],15,35,[]],[[331,297],15],[[[335,[334]],297],15],[[[335,[334]],297],15],[[[335,[336]],297],15],[[[335,[336]]],15],[[],[[337,[-1]]],[35,35]],[[],336],[[],334],[[],297],[[],[[335,[-1]]],[35,35]],[[],140],[[],338],[[],339],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[34,[-1,-2,-3]],181],15,[],35,21],[[[34,[-1,-2,-3]],13],[[34,[-1,-2,-3]]],[],35,[]],[[[34,[-1,-2,-3]],181,241,82,200,201,202,195],15,[],35,21],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[[[335,[-1]],297,13],15,35],[[[335,[-1]],256],[[57,[297]]],35],[[297,297],13],[[218,218],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],0,[[336,16],72],[[334,16],72],[[297,16],72],[[218,16],72],[218,[[1,[-1]]],[]],0,[[[34,[-1,-2,-3]],[57,[92]]],[[34,[-1,-2,-3]]],[],35,[]],[[[34,[-1,-2,-3]],[57,[92]]],[[34,[-1,-2,-3]]],[],35,[]],[[[34,[-1,-2,-3]],[57,[92]]],[[34,[-1,-2,-3]]],[],35,[]],[[[34,[-1,-2,-3]],80],[[34,[-1,-2,-3]]],[],35,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[340,297],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[297,-1],15,101],[[[34,[-1,-2,-3]],220],[[34,[-1,-2,-3]]],[],35,[]],[[[335,[-1]]],[[34,[0,-1,-2]]],35,[]],[[[341,[],[[160,[-1]]]],-1],140,35],0,[[[332,[-1]],19],[[332,[-1]]],35],[[[333,[-1]],19],[[333,[-1]]],35],[[[335,[-1]],297],[[57,[19]]],35],[[[335,[-1]],297],[[57,[19]]],35],[[[335,[-1]],297,19],[[57,[19]]],35],[[[333,[-1]]],297,35],[[[34,[-1,-2,-3]],[57,[218]]],[[34,[-1,-2,-3]]],[],35,[]],0,[[[333,[-1]],256],[[333,[-1]]],35],[[[335,[-1]],297],[[57,[256]]],35],[[[335,[-1]],297],[[57,[256]]],35],[[[335,[-1]],297,256],[[57,[256]]],35],[[[34,[-1,-2,-3]],256],[[34,[-1,-2,-3]]],[],35,[]],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[[337,[-1]],-2],[[337,[-1]]],35,[[46,[[332,[-1]]],[[8,[[332,[-1]]]]]]]],[[[335,[-1]]],[[333,[-1]]],35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[331,297],13],[[[335,[334]],297],13],[[[335,[-1]],297],13,35],[[[335,[336]],297],13],[[[335,[-1]],297],13,35],[[[335,[-1]],297],13,35],[[[335,[-1]]],[[0,[[108,[],[[10,[297]]]]]]],35],0,[[[34,[-1,-2,-3]],181,241,94],224,[],35,21],[[[34,[-1,-2,-3]],225],[[34,[-1,-2,-3]]],[],35,[]],[[[34,[-1,-2,-3]],256],[[34,[-1,-2,-3]]],[],35,[]],0,[[[34,[-1,-2,-3]],256],[[34,[-1,-2,-3]]],[],35,[]],[[[34,[-1,-2,-3]],181,201,202,195,241],226,[],35,21],[[[335,[-1]]],[[34,[-2,-1,-3]]],35,[],[]],[-1,218,[[62,[[103,[29]]]]]],[[[34,[-1,-2,-3]],-4],[[34,[-1,-2,-3]]],[],35,[],[[46,[297],[[8,[-3]]]]]],[[[34,[-1,-2,-3]],-4],[[34,[-1,-2,-3]]],[],35,[],[[46,[297],[[8,[-3]]]]]],[[[34,[-1,-2,-3]],181,234,201,202,241,235,[236,[-3]],195],237,[],35,21],[[[34,[-1,-2,-3]],181,201,241,53],15,[],35,21],[[[34,[-1,-2,-3]],181,201,241],[[57,[[239,[-3,82,241]]]]],[],35,21],[[[34,[-1,-2,-3]],-4],[[34,[-1,-2,-3]]],[],35,[],[[62,[240]]]],[[297,297],[[57,[300]]]],[[[332,[-1]],256],[[332,[-1]]],35],[[[333,[-1]],256],[[333,[-1]]],35],[[[335,[-1]],297],[[57,[256]]],35],[[[335,[-1]],297,256],[[57,[14]]],35],[[[332,[-1]],297],[[332,[-1]]],35],[[[333,[-1]],297],[[333,[-1]]],35],[[[335,[-1]],297,297],13,35],[[[335,[-1]],297],15,35],[[[34,[-1,-2,-3]],13],[[34,[-1,-2,-3]]],[],35,[]],[[[332,[-1]],[342,[297,-2]],-2],[[332,[-1]]],35,[]],[[[333,[-1]],[342,[297,-2]],-2],[[333,[-1]]],35,[]],[[[332,[-1]],[343,[297,-2]],-2],[[332,[-1]]],35,[]],[[[333,[-1]],[343,[297,-2]],-2],[[333,[-1]]],35,[]],[[[34,[-1,-2,-3]],13],[[34,[-1,-2,-3]]],[],35,[]],[[[34,[-1,-2,-3]]],[[93,[220]]],[],35,21],[[[34,[-1,-2,-3]],256],[[34,[-1,-2,-3]]],[],35,[]],[[[34,[-1,-2,-3]]],245,[],35,21],[[[34,[-1,-2,-3]],-4],[[34,[-1,-2,-3]]],[],35,[],[[62,[146]]]],[[[34,[-1,-2,-3]]],246,[],35,21],[[[332,[-1]],-2],[[332,[-1]]],35,[[62,[[103,[29]]]]]],[[[333,[-1]],-2],[[333,[-1]]],35,[[62,[[103,[29]]]]]],[[[335,[-1]],297],[[57,[29]]],35],0,[[[335,[-1]],297],[[57,[[103,[29]]]]],35],[[[335,[-1]],297,-2],[[57,[[103,[29]]]]],35,[[62,[[103,[29]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],218],[[82,146],140],[[82,146],140],[[82,146],140],0,0,0,0,0,0,[[[335,[-1]]],[[34,[0,-1,-2]]],35,[]],[[[341,[],[[160,[-1]]]],-1],140,35],[[[34,[-1,-2,-3]],220],[[34,[-1,-2,-3]]],[],35,[]],[[[332,[-1]],-2],[[332,[-1]]],35,[[6,[297]]]],[[[333,[-1]],-2],[[333,[-1]]],35,[[6,[297]]]],[[[335,[-1]]],[[345,[-1,-2]]],35,[]],[[[335,[-1]]],[[346,[-1,-2]]],35,[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[24,[-1]],-2],[[24,[-1]]],[],[[62,[[12,[-1]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[3,[[12,[-1]]]]],[[272,[-1]]],[]],[-1,[[24,[-2]]],[[62,[[103,[29]]]]],[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[347,[-2]]],[[62,[[103,[29]]]]],[]],[-1,-2,[],[]],[[[347,[-1]],-2],[[330,[-1]]],[],[[62,[[12,[-1]]]]]],[14,-1,[]],[14,-1,[]],[[[347,[-1]],-2],[[347,[-1]]],[],[[62,[[103,[29]]]]]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[347,[-1]],-2],[[347,[-1]]],[],[[62,[[12,[-1]]]]]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-3],[[330,[-2]]],[[62,[[103,[29]]]]],[],[[62,[[12,[-2]]]]]],[[[3,[[12,[-1]]]]],[[330,[-1]]],[]],[[[347,[-1]],[103,[29]]],[[347,[-1]]],[]],[[[347,[-1]],13,-2],[[330,[-1]]],[],[[46,[13],[[8,[-1]]]]]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[[175,[],[[160,[-1]]]],-1],115,35],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[348,348],[349,349],[350,350],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],350],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[175,[],[[160,[-1]]]],-1],115,35],[[-1,201,202,350,-2,[230,[-2]],[84,[-2]],-3],15,166,[[62,[91]],171],175],[14,15],[14,15],[14,15],[[350,350],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[348,16],[[18,[15,17]]]],[[349,16],[[18,[15,17]]]],[[350,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[175,[],[[160,[-1]]]],-1],115,35],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[201,202,350],226],[[],350],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[234,201,202,[236,[-1]],350,-2,[230,[-2]],-2,46,[57,[-1]]],237,21,[171,[62,[91]],207]],0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[351,351],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[352,[262]]]],[[],[[352,[353]]]],[[],[[352,[77]]]],[[],[[352,[354]]]],[[],[[352,[14]]]],[[],[[352,[355]]]],[[],[[352,[256]]]],[[],[[352,[356]]]],[[],[[352,[217]]]],[[],[[352,[172]]]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[14,15],[[351,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[351,-1],15,101],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[43,[-1]]],[[12,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[352,[-1]],-2],[[352,[-1]]],[],[[62,[-1]]]],0,[[[352,[-1]],-2],[[352,[-1]]],[],[[62,[-1]]]],0,[[-1,-3],[[43,[-2]]],[[62,[[103,[29]]]]],[],[[46,[351],[[8,[-2]]]]]],[[-1,-3],[[43,[-2]]],[[62,[[103,[29]]]]],[],[[46,[351],[[8,[-2]]]]]],[[[352,[-1]],-2],[[352,[-1]]],[],[[62,[-1]]]],0,[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[352,[-1]],351],15,[171,191,[357,[],[[8,[]]]],[358,[],[[8,[]]]],359]],[[[352,[-1]],-2],[[352,[-1]]],[],[[62,[-1]]]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[199,[],[[160,[-1]]]],-1],122,35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[122,122],[232,232],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[232,360],[[],122],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[232,232],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[122,16],[[18,[15,17]]]],[[232,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,232,[[62,[[103,[[84,[172]]]]]]]],[-1,232,[[62,[219]]]],[-1,-2,[],[]],[-1,-2,[],[]],[[232,-1],15,101],[[[199,[],[[160,[-1]]]],-1],122,35],[232,217],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[335,[-1]]],[[345,[-1,-2]]],35,[]],[[[335,[-1]]],[[346,[-1,-2]]],35,[]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,[[361,[82,241]]],[[62,[[103,[29]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[361,[82,241]]],[[62,[[103,[29]]]]]],[-1,[[361,[82,241]]],[[62,[[103,[29]]]]]],[362,362],[[-1,-2],15,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[362,362],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[362,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[362,-1],15,101],[-1,[[361,[82,241]]],[[62,[[103,[29]]]]]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[361,[82,241]]],[[62,[[103,[29]]]]]],[-1,[[361,[82,241]]],[[62,[[103,[29]]]]]],[-1,[[361,[82,241]]],[[62,[[103,[29]]]]]],[-1,[[361,[82,241]]],[[62,[[103,[29]]]]]],[-1,[[361,[82,241]]],[[62,[[103,[29]]]]]],[-1,[[361,[82,241]]],[[62,[[103,[29]]]]]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,[[[363,[],[[160,[-1]]]],-1],118,35],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[364,[-1]]],[[3,[181]]],21],[365,365],[366,366],[118,118],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[366,367],[[],366],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[364,[-1]],181],15,21],0,[[[363,[],[[160,[-1]]]],-1],118,35],[[[364,[-1]],13],[[364,[-1]]],21],[[241,82,201,202,181,368,29,[57,[80]],57,13,13,[57,[[192,[-1,82,241]]]],[57,[[192,[-1,82,241]]]],13,225,[57,[29]],[57,[29]],[57,[29]],80,225,195,200],15,[]],[[[364,[-1]],181,241,82,201,202,[57,[368]],200],15,21],[[[364,[-1]],181,241,82,200,201,202,195],15,21],[14,15],[14,15],[14,15],[14,15],0,[[[363,[],[[160,[-1]]]],-1],118,35],[[[364,[-1]],29],[[364,[-1]]],21],[[365,16],72],[[366,16],72],[[118,16],72],[193,[[1,[-1]]],[]],[366,15],[366,15],[[[363,[],[[160,[-1]]]],-1],118,35],[13,366],[[[364,[-1]]],[[364,[-1]]],21],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[364,[-1]],29],[[364,[-1]]],21],0,[[[363,[],[[160,[-1]]]],-1],118,35],[[[363,[],[[160,[-1]]]],-1],118,35],0,[[[364,[-1]],193],[[364,[-1]]],21],[[],14],[[],14],[[],14],[[],14],[-1,[[364,[-2]]],[[62,[[103,[29]]]]],21],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[366,13],[366,13],0,[[[364,[-1]],29],[[364,[-1]]],21],0,0,[[241,94,220,240,[57,[80]],[57,[[192,[-1,82,241]]]],[57,[[192,[-1,82,241]]]],225,[57,[29]],[57,[29]],80,225,92,181],224,[]],[[[364,[-1]],181,241,94],224,21],[[[364,[-1]],[192,[-1,82,241]]],[[364,[-1]]],21],[[[364,[-1]],-2],[[364,[-1]]],21,[[62,[225]]]],[[201,202,13],226],[[[364,[-1]],181,201,202,195,241],226,21],[[193,14],[[1,[-1]]],[]],[[366,14],15],[[366,14],15],[193,[[1,[-1]]],[]],[366,15],[366,15],[193,[[1,[-1]]],[]],[366,15],[366,15],[[-1,-2],[[364,[-3]]],[[62,[[103,[29]]]]],[[62,[[103,[29]]]]],21],[13,366],[[[364,[-1]],-1],[[364,[-1]]],21],[[[364,[-1]],181,234,201,202,241,235,[236,[-1]],195],237,21],[[[364,[-1]],-2],[[364,[-1]]],21,[[46,[61],[[8,[-1]]]]]],[[[364,[-1]],-2],[[364,[-1]]],21,[[46,[61],[[8,[-1]]]]]],[[[364,[-1]],-1],[[364,[-1]]],21],[[[364,[-1]],[57,[-1]]],[[364,[-1]]],21],[[[364,[-1]],181,201,241,53],15,21],[[[364,[-1]],181,201,241],[[57,[[239,[-1,82,241]]]]],21],[[[364,[-1]],-2],[[364,[-1]]],21,[[62,[240]]]],[[[364,[-1]]],[[364,[-1]]],21],0,0,[[-1,-2],[[364,[-3]]],[[62,[[103,[29]]]]],[[62,[[103,[29]]]]],21],[[-1,-2,[57,[-3]],13],[[364,[-3]]],[[62,[[103,[29]]]]],[[62,[[103,[29]]]]],21],[193,[[1,[-1]]],[]],[366,15],[366,15],0,[[366,29],[[57,[61]]]],0,[[[364,[-1]],-2],[[364,[-1]]],21,[[62,[221]]]],[[[364,[-1]]],[[93,[220]]],21],[[[364,[-1]]],245,21],[[[364,[-1]],-2],[[364,[-1]]],21,62],[[[364,[-1]],[15,[73,73]]],[[364,[-1]]],21],[[[364,[-1]]],246,21],0,[[-1,-2],[[364,[-3]]],[[62,[[103,[29]]]]],[[62,[[103,[29]]]]],21],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[364,[-1]],[192,[-1,82,241]]],[[364,[-1]]],21],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[366,15],[366,15],[[234,201,202,235,[236,[-1]],368,80,13,[57,[46]],[57,[46]],[57,[-1]],-2,[57,[46]],13,[57,[46]],[57,[[15,[73,73]]]],225,201],237,21,[[6,[],[[8,[366]]]]]],0,0,[[[364,[-1]],-2],[[364,[-1]]],21,[[62,[220]]]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[367,367],[369,369],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],367],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[367,16],72],[[369,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[367,368],[[57,[[15,[14,14]]]]]],[[367,368],369],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[370,15],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[370,61],[370,15],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[[370,371],15],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[368,367],370],[[370,368],15],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[368,368],[[-1,-2],15,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[368,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[[368,14,371],15],[[368,14,368],15],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[368,13],[368,14],[29,368],[[368,14],14],[[368,14],14],[[368,14],15],[[368,14,14],15],[368,368],[[368,14,14],368],[-1,-2,[],[]],[368,61],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[368,14],368],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[372,372],[[-1,-2],15,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[372,372],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[372,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-2,-3,372],[[373,[-1]]],[],[[62,[[12,[-1]]]]],[[62,[[103,[29]]]]]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,[[[175,[],[[160,[-1]]]],-1],115,35],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[115,115],[374,374],[375,375],[376,376],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],376],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[175,[],[[160,[-1]]]],-1],115,35],[[-1,201,202,376,-2,[230,[-2]],-3],15,166,[[62,[91]],171],175],[14,15],[14,15],[14,15],[14,15],[[376,376],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[115,16],[[18,[15,17]]]],[[374,16],[[18,[15,17]]]],[[375,16],[[18,[15,17]]]],[[376,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[175,[],[[160,[-1]]]],-1],115,35],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[201,202,376],226],[[],376],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[234,201,202,[236,[-1]],376,-2,[230,[-2]],-2,46,[57,[-1]]],237,21,[171,[62,[91]],207]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[41,[-1]]],[[163,[-1,82,241]]],21],[[[41,[-1]],-1],[[41,[-1]]],21],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[41,[-2]]],[[62,[[103,[29]]]]],[]],[82,121]],"c":[],"p":[[5,"Command",0],[6,"Action",7790],[5,"Vec",7791],[10,"TransformMatrix",7792],[10,"Also",0],[10,"FnOnce",7793],[10,"Apply",0],[17,"Output"],[10,"Any",7794],[17,"Item"],[10,"IntoIterator",7795],[8,"Element",0],[1,"bool"],[1,"usize"],[1,"tuple"],[5,"Formatter",7796],[5,"Error",7796],[6,"Result",7797],[5,"Icon",4016],[8,"IconButton",2643],[10,"Clone",7798],[5,"Named",4016],[8,"TextButton",2643],[5,"Section",6667],[8,"Button",2844],[5,"NavBarToggle",4894],[5,"Grid",3923],[5,"Dropdown",3450],[1,"str"],[10,"AsRef",7799],[8,"ImageButton",2643],[5,"Dialog",3404],[5,"FlexRow",3873],[5,"SegmentedButton",6108],[10,"Default",7800],[5,"HeaderBar",1736],[5,"Dropdown",3701],[10,"PartialEq",7801],[5,"Calendar",2880],[5,"ListColumn",4475],[5,"Warning",7755],[5,"ContextDrawer",3362],[5,"SpinButton",6883],[5,"Box",7802],[5,"Rc",7803],[10,"Fn",7793],[10,"MaybeSend",7804],[10,"Sync",7805],[10,"Future",7806],[10,"Stream",7807],[5,"OutOfBounds",7808],[5,"TypeId",7794],[10,"Operation",1736],[17,"SubCommand"],[17,"Args"],[10,"CosmicFlags",95],[6,"Option",7809],[10,"ToString",7810],[10,"Debug",7796],[10,"Send",7805],[5,"String",7810],[10,"Into",7799],[5,"Core",95],[6,"DbusActivationDetails",95],[17,"Executor"],[17,"Flags"],[17,"Message"],[10,"Application",95],[10,"Executor",7811],[10,"ApplicationExt",95],[6,"Message",353],[8,"Result",7796],[5,"Id",7812],[5,"Arc",7813],[8,"Model",4890],[8,"Id",4890],[1,"u32"],[5,"Settings",394],[8,"Result",7814],[1,"f32"],[5,"Subscription",7815],[5,"Theme",698],[5,"ThemeMode",7816],[1,"slice"],[5,"Theme",7817],[5,"Update",7818],[10,"CosmicConfigEntry",7818],[8,"Command",241],[6,"Message",254],[5,"Cosmic",254],[1,"f64"],[5,"Font",569],[5,"Size",7819],[5,"Limits",7820],[5,"CosmicTk",450],[5,"Config",7818],[6,"Error",7818],[5,"Executor",501],[5,"Error",7821],[5,"Executor",535],[10,"Hasher",7822],[6,"Error",7823],[6,"Cow",7824],[6,"Message",630],[10,"CollectionWidget",677],[10,"ColorExt",677],[10,"ElementExt",677],[10,"Iterator",7825],[5,"Appearance",7826],[5,"Appearance",3450],[5,"Appearance",7827],[5,"Scrollbar",7828],[5,"Appearance",5886],[5,"Appearance",7829],[5,"Appearance",7589],[5,"Appearance",2643],[5,"Appearance",7830],[5,"Appearance",7150],[5,"Appearance",2955],[6,"ThemeType",698],[5,"Appearance",3312],[5,"Appearance",7004],[5,"Appearance",7831],[5,"Appearance",5844],[5,"Appearance",3584],[5,"Appearance",7832],[5,"Appearance",7833],[5,"Appearance",7834],[5,"Appearance",1657],[5,"Container",7835],[8,"CosmicTheme",698],[5,"Appearance",2916],[5,"COSMIC_DARK",698],[5,"COSMIC_HC_DARK",698],[5,"COSMIC_LIGHT",698],[5,"COSMIC_HC_LIGHT",698],[5,"TRANSPARENT_COMPONENT",698],[5,"Component",7835],[5,"Color",7836],[5,"Appearance",6108],[5,"Appearance",4928],[5,"Line",4928],[6,"Background",7837],[6,"Layer",7817],[6,"Button",1062],[6,"SegmentedButton",1062],[6,"TextInput",1062],[6,"Checkbox",1196],[6,"Scrollable",1196],[6,"Svg",1196],[6,"Text",1196],[6,"TextInput",1196],[6,"Application",1196],[6,"Container",1196],[6,"ProgressBar",1196],[6,"Rule",1196],[6,"Button",1196],[6,"Slider",1196],[6,"TextEditor",1196],[17,"Style"],[10,"StyleSheet",1657],[6,"MenuBarStyle",1657],[5,"Container",1736],[6,"Horizontal",7838],[10,"StyleSheet",3312],[10,"Renderer",7839],[6,"Vertical",7838],[5,"Image",1736],[1,"array"],[5,"Slider",1736],[10,"Copy",7805],[1,"u8"],[10,"From",7799],[10,"PartialOrd",7801],[10,"StyleSheet",7589],[5,"Checkbox",1736],[10,"StyleSheet",2955],[10,"StyleSheet",7833],[10,"Renderer",7840],[5,"MouseArea",1736],[5,"Tree",7841],[5,"ComboBox",1736],[10,"Display",7796],[10,"StyleSheet",7826],[10,"StyleSheet",7828],[10,"StyleSheet",7832],[10,"Widget",1736],[5,"PaneGrid",1736],[10,"StyleSheet",4928],[5,"Lazy",1736],[10,"Hash",7822],[5,"Element",7842],[5,"Id",1736],[5,"State",3273],[5,"Rectangle",7843],[10,"FnMut",7793],[5,"Svg",1736],[6,"ContentFit",7844],[10,"StyleSheet",7004],[5,"Style",7839],[5,"Layout",7845],[6,"Cursor",7846],[5,"ProgressBar",1736],[10,"StyleSheet",5844],[5,"Radio",1736],[10,"StyleSheet",5886],[10,"FromPrimitive",7847],[5,"VerticalSlider",1736],[5,"Responsive",1736],[10,"Renderer",7848],[5,"Space",1736],[17,"Handle"],[10,"Renderer",7849],[6,"FilterMethod",4232],[6,"Outcome",7850],[10,"Focusable",7851],[1,"u64"],[5,"Id",6108],[5,"PathBuf",7852],[6,"Length",7853],[5,"Pixels",7854],[5,"Icon",2955],[5,"Icon",7855],[5,"Node",7856],[6,"LineHeight",7840],[6,"Interaction",7857],[5,"State",4928],[5,"Pane",4928],[5,"Content",4928],[5,"RangeInclusive",7858],[10,"Eq",7801],[5,"Handle",7004],[6,"DragEvent",4928],[6,"Event",7859],[10,"Clipboard",7860],[5,"Shell",7861],[6,"Status",7859],[5,"ResizeEvent",4928],[5,"Element",7862],[5,"Padding",7863],[8,"Renderer",0],[5,"Scrollable",7864],[10,"Scrollable",7865],[5,"Vector",7866],[6,"State",7841],[5,"Tag",7841],[10,"TextInput",7867],[6,"Shaping",7840],[5,"Toggler",7868],[10,"StyleSheet",7829],[5,"AspectRatio",2584],[10,"StyleSheet",2643],[5,"Button",2643],[8,"Element",7814],[5,"Builder",2643],[1,"u16"],[6,"Weight",7869],[5,"Handle",4016],[5,"Handle",4232],[5,"Hyperlink",2844],[5,"NaiveDate",7870],[1,"i32"],[6,"Weekday",7871],[10,"StyleSheet",2916],[5,"ColorPickerModel",3040],[5,"ColorPickerBuilder",3040],[5,"ColorPicker",3040],[6,"ColorPickerUpdate",3040],[5,"State",3040],[5,"HSV_RAINBOW",3040],[5,"ColorStop",7872],[8,"Column",3267],[5,"Rule",7873],[10,"StyleSheet",3450],[5,"State",3450],[10,"StyleSheet",3584],[5,"State",3584],[5,"Menu",3584],[5,"Point",7874],[5,"Model",3701],[5,"List",3701],[5,"Menu",3831],[5,"Assignment",3923],[6,"Alignment",7838],[6,"IconFallback",4016],[6,"Data",4016],[6,"Data",7849],[5,"Viewer",4232],[5,"State",4369],[5,"LayerContainer",4409],[10,"LayeredTheme",7817],[5,"CloseCondition",4512],[6,"ItemWidth",4512],[6,"ItemHeight",4512],[6,"PathHighlight",4512],[10,"MenuAction",4671],[5,"Entity",6108],[6,"Modifier",4674],[5,"KeyBind",4674],[6,"Ordering",7801],[5,"Modifiers",7875],[6,"Key",7876],[5,"SmolStr",7877],[5,"MenuBar",4766],[5,"MenuTree",4818],[5,"HashMap",7878],[6,"MenuItem",4818],[8,"SingleSelectModel",6108],[6,"Direction",4928],[5,"TitleBar",4928],[10,"Draggable",4928],[6,"Axis",4928],[6,"Configuration",4928],[6,"Node",4928],[5,"Split",4928],[6,"Target",4928],[6,"Region",4928],[6,"Edge",4928],[6,"Action",5629],[6,"Contents",4928],[5,"BTreeMap",7879],[5,"Internal",5629],[5,"Popover",5718],[6,"Position",5718],[5,"Overlay",5718],[5,"RectangleTrackingContainer",5931],[6,"RectangleUpdate",5931],[5,"RectangleTracker",5931],[5,"UnboundedSender",7880],[8,"Row",6102],[10,"Selectable",6108],[5,"BuilderEntity",6108],[5,"EntityMut",6108],[5,"MultiSelect",6108],[5,"Model",6108],[5,"SingleSelect",6108],[5,"ModelBuilder",6108],[5,"ItemAppearance",6108],[5,"ItemStatusAppearance",6108],[5,"KeyData",7881],[10,"StyleSheet",6108],[5,"SecondaryMap",7882],[5,"SparseSecondaryMap",7883],[10,"SegmentedVariant",6108],[8,"HorizontalSegmentedButton",6108],[8,"VerticalSegmentedButton",6108],[5,"Item",6703],[5,"Rail",6741],[6,"RailBackground",6741],[5,"State",6741],[6,"Message",6883],[5,"Model",6883],[8,"Decimal",7884],[1,"i16"],[1,"isize"],[1,"i8"],[10,"Sub",7885],[10,"Add",7885],[10,"Ord",7801],[6,"Data",7848],[8,"Text",1736],[6,"Typography",7091],[10,"StyleSheet",7150],[5,"TextInput",7150],[5,"TextInputString",7150],[5,"State",7150],[5,"Cursor",7382],[5,"Value",7496],[6,"State",7382],[5,"Editor",7459],[1,"char"],[6,"Position",7544],[8,"Tooltip",7544],[5,"Handle",7589],[6,"HandleShape",7589],[5,"State",7589],[15,"ActivateAction",238],[15,"Open",238],[8,"CosmicColor",698],[8,"CosmicComponent",698],[15,"Custom",1187],[15,"Custom",1191],[15,"Custom",1652],[15,"Custom",1654],[15,"Split",5616],[15,"Picked",5620],[15,"Dropped",5620],[15,"Canceled",5620],[15,"Split",5624],[15,"Resizing",5712],[15,"Clicking",5712],[15,"Dragging",5712],[6,"State",5931],[15,"Rectangle",6877],[15,"Circle",6877],[15,"Gradient",6880],[15,"Selection",7457]],"b":[[37,"impl-From%3CIcon%3E-for-Element%3C\'static,+Message,+Theme,+Renderer%3E"],[38,"impl-From%3CBuilder%3C\'a,+Message,+Icon%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[39,"impl-From%3CNamed%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[40,"impl-From%3CBuilder%3C\'a,+Message,+Text%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[41,"impl-From%3CSection%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[42,"impl-From%3CBuilder%3C\'a,+Message,+Hyperlink%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[43,"impl-From%3CNavBarToggle%3CMessage%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[44,"impl-From%3CGrid%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[45,"impl-From%3CDropdown%3C\'a,+S,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[46,"impl-From%3CBuilder%3C\'a,+Message,+Image%3C\'a,+Handle,+Message%3E%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[47,"impl-From%3CDialog%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[48,"impl-From%3CFlexRow%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[49,"impl-From%3CSegmentedButton%3C\'a,+Variant,+SelectionMode,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[50,"impl-From%3CHeaderBar%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[51,"impl-From%3CDropdown%3C\'a,+S,+Message,+Item%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[52,"impl-From%3CCalendar%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[53,"impl-From%3CListColumn%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[54,"impl-From%3CWarning%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[55,"impl-From%3CContextDrawer%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[56,"impl-From%3CSpinButton%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[329,"impl-Cosmic%3CApp%3E"],[330,"impl-Application-for-Cosmic%3CT%3E"],[717,"impl-StyleSheet-for-Theme"],[718,"impl-StyleSheet-for-Theme"],[719,"impl-StyleSheet-for-Theme"],[720,"impl-StyleSheet-for-Theme"],[721,"impl-StyleSheet-for-Theme"],[722,"impl-StyleSheet-for-Theme"],[723,"impl-StyleSheet-for-Theme"],[724,"impl-StyleSheet-for-Theme"],[725,"impl-StyleSheet-for-Theme"],[726,"impl-StyleSheet-for-Theme"],[727,"impl-StyleSheet-for-Theme"],[738,"impl-StyleSheet-for-Theme"],[739,"impl-StyleSheet-for-Theme"],[740,"impl-StyleSheet-for-Theme"],[741,"impl-StyleSheet-for-Theme"],[742,"impl-StyleSheet-for-Theme"],[743,"impl-StyleSheet-for-Theme"],[744,"impl-StyleSheet-for-Theme"],[745,"impl-StyleSheet-for-Theme"],[746,"impl-StyleSheet-for-Theme"],[812,"impl-StyleSheet-for-Theme"],[813,"impl-Default-for-Theme"],[835,"impl-StyleSheet-for-Theme"],[836,"impl-StyleSheet-for-Theme"],[837,"impl-StyleSheet-for-Theme"],[838,"impl-StyleSheet-for-Theme"],[839,"impl-StyleSheet-for-Theme"],[842,"impl-StyleSheet-for-Theme"],[843,"impl-StyleSheet-for-Theme"],[860,"impl-StyleSheet-for-Theme"],[861,"impl-StyleSheet-for-Theme"],[862,"impl-StyleSheet-for-Theme"],[887,"impl-StyleSheet-for-Theme"],[888,"impl-StyleSheet-for-Theme"],[889,"impl-StyleSheet-for-Theme"],[890,"impl-StyleSheet-for-Theme"],[891,"impl-StyleSheet-for-Theme"],[892,"impl-StyleSheet-for-Theme"],[893,"impl-StyleSheet-for-Theme"],[894,"impl-StyleSheet-for-Theme"],[895,"impl-StyleSheet-for-Theme"],[896,"impl-StyleSheet-for-Theme"],[897,"impl-StyleSheet-for-Theme"],[980,"impl-StyleSheet-for-Theme"],[981,"impl-StyleSheet-for-Theme"],[989,"impl-StyleSheet-for-Theme"],[990,"impl-StyleSheet-for-Theme"],[1056,"impl-StyleSheet-for-Theme"],[1057,"impl-StyleSheet-for-Theme"],[2049,"impl-From%3Cu64%3E-for-Id"],[2050,"impl-From%3CId%3E-for-Id"],[2374,"impl-Checkbox%3C\'a,+Message,+Theme,+Renderer%3E"],[2375,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Checkbox%3C\'a,+Message,+Theme,+Renderer%3E"],[2376,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-ComboBox%3C\'a,+T,+Message,+Theme,+Renderer%3E"],[2377,"impl-ComboBox%3C\'a,+T,+Message,+Theme,+Renderer%3E"],[2381,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Radio%3CMessage,+Theme,+Renderer%3E"],[2382,"impl-Radio%3CMessage,+Theme,+Renderer%3E"],[2727,"impl-Button%3C\'a,+Message,+Theme,+Renderer%3E"],[2728,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Button%3C\'a,+Message,+Theme,+Renderer%3E"],[2775,"impl-Builder%3C\'a,+Message,+Image%3C\'a,+Handle,+Message%3E%3E"],[2776,"impl-Builder%3C\'a,+Message,+Hyperlink%3E"],[2777,"impl-Builder%3C\'a,+Message,+Text%3E"],[2778,"impl-Builder%3C\'a,+Message,+Icon%3E"],[2799,"impl-Builder%3C\'a,+Message,+Icon%3E"],[2800,"impl-Builder%3C\'a,+Message,+Image%3C\'a,+Handle,+Message%3E%3E"],[2817,"impl-Builder%3C\'a,+Message,+Hyperlink%3E"],[2818,"impl-Builder%3C\'a,+Message,+Text%3E"],[3958,"impl-From%3C(u16,+u16)%3E-for-Assignment"],[3959,"impl-From%3C(u16,+u16,+u16,+u16)%3E-for-Assignment"],[4715,"impl-Display-for-KeyBind"],[4716,"impl-Debug-for-KeyBind"],[5996,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-RectangleTrackingContainer%3C\'a,+Message,+Renderer,+I%3E"],[5997,"impl-RectangleTrackingContainer%3C\'a,+Message,+Renderer,+I%3E"],[6135,"impl-Selectable-for-Model%3CMultiSelect%3E"],[6136,"impl-Selectable-for-Model%3CSingleSelect%3E"],[6137,"impl-Model%3CSelectionMode%3E"],[6139,"impl-Model%3CSingleSelect%3E"],[6140,"impl-Model%3CMultiSelect%3E"],[6285,"impl-Model%3CMultiSelect%3E"],[6286,"impl-Selectable-for-Model%3CMultiSelect%3E"],[6287,"impl-Selectable-for-Model%3CSingleSelect%3E"],[6288,"impl-Model%3CSingleSelect%3E"],[6514,"impl-Selectable-for-Model%3CMultiSelect%3E"],[6515,"impl-Model%3CSelectionMode%3E"],[6516,"impl-Selectable-for-Model%3CSingleSelect%3E"],[6652,"impl-SegmentedVariant-for-SegmentedButton%3C\'a,+Horizontal,+SelectionMode,+Message%3E"],[6653,"impl-SegmentedVariant-for-SegmentedButton%3C\'a,+Vertical,+SelectionMode,+Message%3E"],[6655,"impl-SegmentedVariant-for-SegmentedButton%3C\'a,+Horizontal,+SelectionMode,+Message%3E"],[6656,"impl-SegmentedVariant-for-SegmentedButton%3C\'a,+Vertical,+SelectionMode,+Message%3E"],[6658,"impl-SegmentedVariant-for-SegmentedButton%3C\'a,+Horizontal,+SelectionMode,+Message%3E"],[6659,"impl-SegmentedVariant-for-SegmentedButton%3C\'a,+Vertical,+SelectionMode,+Message%3E"],[6914,"impl-Default-for-Model%3Ci32%3E"],[6915,"impl-Default-for-Model%3CGenericDecimal%3Cu64,+u8%3E%3E"],[6916,"impl-Default-for-Model%3Cu32%3E"],[6917,"impl-Default-for-Model%3Ci16%3E"],[6918,"impl-Default-for-Model%3Cusize%3E"],[6919,"impl-Default-for-Model%3Cisize%3E"],[6920,"impl-Default-for-Model%3Cu16%3E"],[6921,"impl-Default-for-Model%3Ci8%3E"],[6922,"impl-Default-for-Model%3Cu64%3E"],[6923,"impl-Default-for-Model%3Cu8%3E"],[7221,"impl-TextInput%3C\'a,+Message%3E"],[7222,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message%3E"],[7234,"impl-State"],[7235,"impl-Focusable-for-State"],[7293,"impl-State"],[7294,"impl-Focusable-for-State"],[7306,"impl-TextInput-for-State"],[7307,"impl-State"],[7309,"impl-TextInput-for-State"],[7310,"impl-State"],[7312,"impl-TextInput-for-State"],[7313,"impl-State"],[7331,"impl-State"],[7332,"impl-TextInput-for-State"],[7336,"impl-TextInput%3C\'a,+Message%3E"],[7337,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message%3E"],[7376,"impl-State"],[7377,"impl-Focusable-for-State"]]}],\ +["cosmic",{"doc":"","t":"KEEKFIIEEPNNNCNNNNNNNNNNCNCEENNNNCNCNNNNNNNNNNNNNNNNNNNNNNNEEEEEEEECNNNNNNNNCNQNNCNNECNNNNNNNCNTPPKKREFKGRRERPERNNNNNNNNNNNNNNNNNNNNCNNNMMCONNNNNNMNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNMCMNNNNNNNNNNNNNHNNNNNNMCNNNNNNNMNNNNNNNNNNNNNNNNNMMNNNOOOOIHHCHHHHHHHHHPPPPFPPPPGPPPPPPPPPPPPPNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPGPNHNNNNNNNNNHNNNNNNNNNNNNNNNNHNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHHHHHHHECFSNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNOONNNNNNNNNNICCFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNSTSSSSSSSSSSFTNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNHOONNNNNNNNONHHPPPPGPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNHKEKKKEKEENMNNNMMNNMNNFFFFIIIPPPPPPFFGOOHNNNNNNNNNNNOHNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNONNNNONNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNOONNONNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOOHNOONNOOOOONNNNOOOOONNNNNOOCHOONHHHOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOPPEGEEPPPPPPPPPPPPPPPEEPGPPEPEPGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOPGPGPPGPGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGGGPPPPGPPPGGPGGPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOFPPGRKNNMNNNNNNNNOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNEEFEEEFFETTTTTEEEEFEEFFEFEFEKFEFFEFEFFEFIEEFKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCECECNNNCHNNNNNNNNCCECHNNNNNNNNNNNNNNNNCHMNNCENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCENNNNNCMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCENNNNNNCENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCENHNNNNNNNHCENNNNNNNNNNCHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCEMNNNNNNNNNNNNNNHNCNNCHNNNNNNNNNNNCECENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCECHCHCENHCEHNCCNNNNNNNCMNNNNNNNNNNNNNNNNNNNCHCNNNCENNNNNNNNNNNNNNNNNNNNNNNCHNCNNNNNNNNNNNCECNNNNNNNNNNNHCENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHHCNNNNNNNNNNNNFFRKNNNMNNNNHOONNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNONNONNNNNNNNFFFIIEERKIMNNNNNNNNNNNNNNNOOOONNNNNNHNNNNNNHNNNNNNNHNMHNNNNNNNNNNNHNNNNNNNNNNNNNMHONNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNCENNHNNNNNNNNNNNNNNNNNNNNNOONNNMNNNNNMNONNHNNNHNHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNIFNNNNNNNNNNNNNNHNNNNNNNNNHNNNNNNNNNFNNNNNNNHNNNNNNNHNNNNNNNNHHHNNNNNNNCFKNNNNNNNOONNNMNNNNNNNNNNNNNNNNNNNNNNNNFFFRKMNNNNNNNNNNOONNNNNNNNONNNNNNNNNNNONNNNNNMONNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNPPPPPFFFGPFPPFPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNINHNHHFFNNNNNNNHNNNNNNNNNNNNNNNNNNNHNNNNNNNNNFFRKNMNNNNOONNNNNNNNHNNNNNONNNNNNNNNHOONNNNNNNNHNNFNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNCCHHHHHHFTTFEFRKMNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNHNNNNHNNNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNHNCHNCNNNHNNONNNONNNNNNNNNNNNNNNNNNNNNNNNHNFFFRKNNNMNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNFTTFFEFRKMNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNONNNNHNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOCHNNNONNOONNNONNNNNNNNNNNNNNNNNNNNNNNNEFENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNEHCCHFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNEHCCHFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGPFFGPPFPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNHHHHNNNNNHNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNONNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGFFPPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHNFFNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNFFRKNNNMNNNNOONNNNNNNNNNNNNNNONNNNNNNNNHNNNNNNNNONNNNONNNNNNNNECHEFNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNEFPPGGPIIPGPPEPPCNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOCCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKRMPPFGPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPGFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNNNNNNNNIIHHFNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNPFGPPPGFGGPGKPGPPPPPFPGFPPPFPGFPPFPPFRKGFPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNHNNNNNNONNMONNNNONNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHONOOOOOOOOOOOOOGPPPFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNOOOOOOFPPFPFGRKNNNMNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNONONNNNNNNNNNNNNNNNNNNNNNFFRKNMNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFRKMNNNNNOOONNNNNNNONNNNNMNNNNNNNNNONNNNNNNNFPPPPFFGGRKPNNNNNNMNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHONNNHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNINNHHHFFFFIFFFFFFIIIFKKFIIIRKIMNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHMONNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNMNNMNNHMNNNHHFNNNNNNNNNNNNNNNNNNNNNNNCEENNNNNNNHHFNNNNNNNHNNNNNNNNNNNNNNNNNNHHNNNNNNNNNFPPFGPFGPFFRKMNNNNNNNNNNNNNNNOOONNNNNNONNNNNNOONNNNNNNNNNMHNNNNNNNNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOONNNNNNNNNNNNNNNNNNNNNNNNHOOOOOOFPPGFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONHNONNNNNNNNNNNNNNNNNNNNNNNNOFFRKFNNMNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHPPPPPIPPPPGNNNNNHNNHHNNNNNNNNNNNNNNHNNNNNNNNNHHHHHHNNNNNNNNFEIFERKFFEMNNNNNNNNNNNNNNNNNNNNOOOOONNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNOMNHNNNNNNCMNNNNHNNMNNNNNNNNNNNNNNNONNONNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONOOHNNNHNHNNHNNHNNNNNNNNNNNNNNOOHHHNNONONNNNNNOHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHCONFPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPGPIPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNFPFGPFRKFMNNNNNNNNNNNNNNNNNNNNOONNNNNNNNONNNNNNNNONNNNNNNNNNNNNMHNNNNNNNNNNNNNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOOOFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHH","n":["Also","Application","ApplicationExt","Apply","Command","Element","Renderer","SingleThreadExecutor","Theme","TinySkia","actions","adapt_into_using","also","app","apply","apply_mut","apply_ref","arrays_from","arrays_into","as_any","as_any_mut","batch","borrow","borrow_mut","command","components_from","config","cosmic_config","cosmic_theme","debug","deref","deref_mut","drop","executor","fmt","font","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_stimulus","iced","iced_core","iced_futures","iced_renderer","iced_runtime","iced_style","iced_widget","iced_winit","icon_theme","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","keyboard_nav","map","menu_button","none","perform","prelude","run","single","style","theme","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","widget","widget","APP_ID","Activate","ActivateAction","Application","ApplicationExt","Args","Command","Core","CosmicFlags","DbusActivationDetails","Executor","Flags","Message","Message","Open","Settings","SubCommand","action","adapt_into_using","adapt_into_using","args","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","command","components_from","components_from","context_drawer","core","core_mut","cosmic","debug","default","deref","deref","deref_mut","deref_mut","dialog","drag","drop","drop","fmt","focused_window","from","from","from_angle","from_angle","from_stimulus","from_stimulus","header_center","header_end","header_start","init","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_condensed","keyboard_nav","main_window_id","maximize","message","minimize","nav_bar","nav_bar_active","nav_bar_set_toggled","nav_bar_toggle","nav_bar_toggle_condensed","nav_model","on_app_exit","on_close_requested","on_context_drawer","on_escape","on_nav_select","on_search","on_window_resize","run","scale_factor","set_context_title","set_context_title","set_header_title","set_header_title","set_keyboard_nav","set_window_title","settings","style","subscription","system_is_dark","system_theme","system_theme_mode","system_theme_mode_update","system_theme_update","title","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","update","view","view_main","view_window","watch_config","watch_state","window","action","args","url","Command","drag","maximize","message","message","minimize","set_scaling_factor","set_theme","set_title","set_windowed","toggle_maximize","app","cosmic","Activate","AppThemeChange","Close","ContextDrawer","Cosmic","Drag","Focus","KeyboardNav","Maximize","Message","Minimize","NavBar","ScaleFactor","ShowWindowMenu","SurfaceClosed","SystemThemeChange","SystemThemeModeChange","ToggleNavBar","ToggleNavBarCondensed","ToolkitConfig","Unfocus","WindowMaximized","WindowResize","adapt_into_using","adapt_into_using","app","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","close","components_from","components_from","default","deref","deref","deref_mut","deref_mut","drop","drop","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","new","scale_factor","style","subscription","theme","title","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","update","view","App","Cosmic","Message","None","adapt_into_using","app","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","cosmic","deref","deref_mut","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","none","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Settings","adapt_into_using","antialiasing","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","client_decorations","components_from","debug","default","default_font","default_icon_theme","default_text_size","deref","deref_mut","drop","exit_on_close","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","resizable","scale_factor","size","size_limits","theme","transparent","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","batch","drag","future","maximize","message","minimize","set_title","set_windowed","toggle_maximize","CosmicTk","toolkit","CosmicTk","ID","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","config","default","deref","deref_mut","drop","eq","equivalent","equivalent","fmt","from","from_angle","from_stimulus","get_entry","icon_theme","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","set_icon_theme","set_show_maximize","set_show_minimize","show_maximize","show_minimize","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","update_keys","write_entry","Default","multi","single","Executor","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","drop","enter","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","spawn","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Executor","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","drop","enter","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","spawn","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","DEFAULT","DEFAULT","FONT","FONT_BOLD","FONT_BOLD_DATA","FONT_DATA","FONT_LIGHT","FONT_LIGHT_DATA","FONT_MONO_REGULAR","FONT_MONO_REGULAR_DATA","FONT_SEMIBOLD","FONT_SEMIBOLD_DATA","Font","MONOSPACE","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","default","deref","deref_mut","drop","eq","equivalent","equivalent","family","fmt","from","from_angle","from_stimulus","hash","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","load_fonts","stretch","style","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","weight","with_name","default","set_default","Escape","FocusNext","FocusPrevious","Fullscreen","Message","Search","Unfocus","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","drop","eq","equivalent","equivalent","fmt","from","from_angle","from_stimulus","hash","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","subscription","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","unfocus","Also","ApplicationExt","Apply","CollectionWidget","ColorExt","Element","ElementExt","Renderer","Theme","also","append","apply","apply_mut","apply_ref","blend_alpha","debug","extend","extend","push","push_maybe","push_maybe","COSMIC_DARK","COSMIC_HC_DARK","COSMIC_HC_LIGHT","COSMIC_LIGHT","CosmicColor","CosmicComponent","CosmicTheme","Custom","Dark","HighContrastDark","HighContrastLight","Light","System","TRANSPARENT_COMPONENT","Theme","ThemeType","accent","accent_button","active","active","active","active","active","active","active","active","active","active","active","active","active_hint","active_type","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","alpha","appearance","appearance","appearance","appearance","appearance","appearance","appearance","appearance","appearance","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","base","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","button","clone","clone","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","corner_radii","cosmic","current_container","custom","dark","dark_hc","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","destructive","destructive_button","disabled","disabled","disabled","disabled","disabled","disabled","disabled_border","disabled_color","disabled_color","divider","dragging","drop","drop","drop","drop","drop","drop","drop","drop_target","eq","eq","error","fmt","fmt","focus","focused","focused","focused","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gaps","horizontal","hover","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered_region","hovered_split","icon_button","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_dark","is_dark","is_dark","is_frosted","is_high_contrast","is_high_contrast","is_high_contrast","layer","light","light_hc","link_button","name","on","on_disabled","palette","picked_split","placeholder_color","placeholder_color","pressed","pressed","primary","secondary","selected","selected_text","selection_background","selection_color","selection_color","set_layer","set_theme","shade","spacing","style","subscription","success","success_button","system","system_dark","system_light","system_preference","text_button","theme_type","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","value_color","value_color","vertical","warning","warning_button","window_hint","AppletIcon","AppletMenu","Application","Button","Checkbox","Container","Control","Custom","Custom","Custom","Default","Destructive","ExpandableSearch","HeaderBar","Icon","IconVertical","Image","Inline","Link","MenuItem","MenuRoot","ProgressBar","Rule","Search","SegmentedButton","Standard","Suggested","Svg","TabBar","Text","Text","TextInput","Transparent","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","components_from","components_from","components_from","default","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","iced","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","menu_bar","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","active","disabled","hovered","pressed","active","disabled","error","focused","hovered","Accent","Application","Background","Button","Card","Card","Checkbox","Color","Container","ContextDrawer","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Danger","Danger","Deactivated","Default","Default","Default","Default","Default","Default","Destructive","Dialog","Dropdown","HeaderBar","HeavyDivider","LightDivider","Link","LinkActive","List","Minimal","Permanent","Positive","Primary","Primary","Primary","Primary","ProgressBar","Rule","Scrollable","Search","Secondary","Secondary","Secondary","Slider","Standard","Success","Success","Svg","Text","Text","TextEditor","TextInput","Tooltip","Transparent","Transparent","WindowBackground","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","custom","custom","custom","custom","custom","default","default","default","default","default","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","equivalent","equivalent","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","primary","secondary","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","active","hover","active","dragging","hovered","Appearance","Custom","Default","MenuBarStyle","Style","StyleSheet","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","background_expand","bar_border_radius","border_color","border_width","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","drop","drop","fmt","from","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","menu_border_radius","path","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","Button","Calendar","Checkbox","ColorPicker","ColorPickerModel","Column","ComboBox","Container","ContextDrawer","DEFAULT_HEIGHT","DEFAULT_HEIGHT","DEFAULT_SIZE","DEFAULT_SPACING","DEFAULT_WIDTH","Dialog","Dropdown","FlexRow","Grid","HeaderBar","Icon","IconButton","Id","Image","LayerContainer","Lazy","LinkButton","MouseArea","NavBarToggle","Operation","PaneGrid","Popover","ProgressBar","Radio","RectangleTracker","Responsive","Row","Slider","Space","SpinButton","Svg","Text","TextButton","Tooltip","VerticalSlider","Widget","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","align_x","align_y","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","aspect_ratio","border_radius","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","breakpoints","build","button","button","calendar","calendar","card","center","center_x","center_y","checkbox","checkbox","children","children","children","children","children","children","clone","clone_into","color_picker","column","column","combo_box","combo_box","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","container","container","container","content_fit","content_fit","context_drawer","context_drawer","custom","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","dialog","dialog","diff","diff","diff","diff","diff","divider","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dropdown","dropdown","end","eq","equivalent","equivalent","filter_method","finish","flex_row","flex_row","fmt","fmt","fmt","focusable","focused","font","font","font","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_path","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","grid","grid","hash","header_bar","height","height","height","height","height","height","height","horizontal_space","icon","icon","icon","icon","id","id","id","id","id","id","id","id","image","image","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_element","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layer_container","layer_container","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","lazy","line_height","list","max_height","max_width","menu","mouse_area","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","nav_bar","nav_bar","nav_bar_toggle","nav_bar_toggle","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","on_click","on_close","on_close","on_drag","on_drag","on_drag","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_input","on_maximize","on_middle_press","on_middle_release","on_minimize","on_option_hovered","on_press","on_release","on_release","on_release","on_resize","on_right_click","on_right_press","on_right_release","operate","operate","operate","operate","operate","operate","overlay","overlay","overlay","overlay","overlay","overlay","overlay","padding","padding","pane_grid","popover","popover","progress_bar","progress_bar","radio","radio","rectangle_tracker","rectangle_tracker","reset","responsive","row","row","scrollable","scrollable","segmented_button","segmented_control","set_id","set_id","set_id","set_id","set_id","set_id","set_id","settings","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size_hint","size_hint","slider","slider","space","spacing","spacing","spacing","spin_button","spin_button","start","state","state","state","state","state","state","state","state","state","state","state","step","step","style","style","style","style","style","style","style","style","style","svg","svg","symbolic","tab_bar","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","text","text","text_input","text_input","text_input_style","text_line_height","text_line_height","text_shaping","text_shaping","text_size","text_size","title","to_owned","to_string","toggler","tooltip","tooltip","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unique","vertical_slider","vertical_slider","vertical_space","warning","width","width","width","width","width","width","width","width","width","width","with_height","with_width","Appearance","AspectRatio","Style","StyleSheet","adapt_into_using","align_x","align_y","appearance","arrays_from","arrays_into","as_any","as_any_mut","aspect_ratio_container","background","border","borrow","borrow_mut","center_x","center_y","children","components_from","deref","deref_mut","diff","draw","drop","from","from_angle","from_stimulus","height","icon_color","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","layout","max_height","max_width","mouse_interaction","on_event","operate","overlay","padding","shadow","size","style","text_color","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","width","Appearance","Builder","Button","IconButton","ImageButton","LinkButton","Style","Style","StyleSheet","TextButton","active","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border_color","border_radius","border_width","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","button","children","clone","clone_into","components_from","components_from","components_from","custom_image_button","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","destructive","diff","disabled","draw","draw","drop","drop","drop","drop_target","drop_target","extra_large","extra_large","extra_small","extra_small","fmt","focus","font_size","font_weight","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","height","height","hovered","icon","icon_color","icon_size","id","id","id","image","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","label","large","large","layout","layout","leading_icon","leading_icon","line_height","link","link","medium","medium","mouse_interaction","mouse_interaction","new","new","new","new","new","new","new","new","new","new_image","on_event","on_press","on_press","on_press_maybe","on_press_maybe","on_remove","on_remove","on_remove_maybe","on_remove_maybe","operate","outline_color","outline_width","overlay","padding","padding","pressed","selected","selected","selected","selected","selected","selection_background","set_id","shadow_offset","size","spacing","standard","state","style","style","suggested","tag","text","text_color","to_owned","tooltip","trailing_icon","trailing_icon","trailing_icon","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","vertical","vertical","width","width","Button","Hyperlink","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","drop","from","from_angle","from_stimulus","icon","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","link","new","trailing_icon","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Calendar","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","calendar","components_from","deref","deref_mut","drop","from","from_angle","from_stimulus","get_calender_first","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","set_day","set_next_month","set_prev_month","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","style","Appearance","StyleSheet","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","card_1","card_2","clone","clone_into","components_from","default","default","deref","deref_mut","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Checkbox","Icon","Style","StyleSheet","active","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","code_point","components_from","components_from","deref","deref","deref_mut","deref_mut","drop","drop","eq","fmt","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hovered","icon_color","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line_height","shaping","size","text_color","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","ActionFinished","ActivateSegmented","ActiveColor","AppliedColor","Cancel","ColorPicker","ColorPickerBuilder","ColorPickerModel","ColorPickerUpdate","Copied","HSV_RAINBOW","Input","Reset","State","ToggleColorPicker","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","builder","cancel_label","children","clone","clone","clone_into","clone_into","color_button","components_from","components_from","components_from","components_from","components_from","components_from","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","diff","draw","drop","drop","drop","drop","drop","drop","fmt","fmt","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_applied_color","get_is_active","height","height","init","init","init","init","init","init","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_hex","layout","new","on_event","overlay","picker_button","reset_label","save_label","size","state","tag","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","update","width","width","Column","append","column","push","with_capacity","with_children","ComboBox","State","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","build_matchers","clone","clone_into","components_from","deref","deref_mut","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","search","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","with_selection","Appearance","Container","Style","StyleSheet","adapt_into_using","appearance","arrays_from","arrays_into","as_any","as_any_mut","background","border","borrow","borrow_mut","clone","clone_into","components_from","default","deref","deref_mut","draw_background","drop","fmt","from","from_angle","from_stimulus","icon_color","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","layout","shadow","text_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","visible_bounds","with_background","with_border","ContextDrawer","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","children","components_from","context_drawer","deref","deref_mut","diff","draw","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","layout","mouse_interaction","new","on_close_maybe","on_event","operate","overlay","size","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Dialog","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","body","borrow","borrow_mut","components_from","control","deref","deref_mut","dialog","drop","from","from_angle","from_stimulus","icon","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","primary_action","secondary_action","tertiary_action","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","horizontal","vertical","default","heavy","light","default","heavy","light","Appearance","DEFAULT_GAP","DEFAULT_PADDING","Dropdown","Menu","State","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","diff","draw","draw","drop","drop","drop","dropdown","fmt","fmt","font","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","gap","handle_color","hovered","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","menu","mouse_interaction","mouse_interaction","multi","new","new","on_event","overlay","overlay","padding","placeholder_color","size","state","tag","text_color","text_line_height","text_size","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","update","width","Appearance","Menu","State","Style","StyleSheet","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border_color","border_radius","border_width","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","description_color","drop","drop","drop","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","hovered_background","hovered_text_color","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","new","new","overlay","padding","selected_background","selected_text_color","text_color","text_line_height","text_size","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","width","Appearance","DEFAULT_GAP","DEFAULT_PADDING","Dropdown","List","Menu","Model","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clear","components_from","components_from","components_from","deref","deref","deref","deref_mut","deref_mut","deref_mut","description","draw","drop","drop","drop","dropdown","font","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","gap","handle_color","hovered","init","init","init","insert","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","list","lists","menu","model","mouse_interaction","new","on_event","options","overlay","padding","placeholder_color","selected","size","state","tag","text_color","text_line_height","text_size","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","width","Appearance","Menu","StyleSheet","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","overlay","padding","text_line_height","text_size","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","width","FlexRow","flex_row","layout","widget","resolve","FlexRow","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","children","column_spacing","components_from","deref","deref_mut","diff","draw","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","layout","max_width","mouse_interaction","new","on_event","operate","overlay","padding","row_spacing","size","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","width","Grid","grid","layout","widget","resolve","Assignment","Grid","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","children","clone","clone_into","column","column_alignment","column_spacing","components_from","components_from","deref","deref","deref_mut","deref_mut","diff","draw","drop","drop","fmt","from","from","from","from","from_angle","from_angle","from_stimulus","from_stimulus","height","height","init","init","insert_row","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","max_width","mouse_interaction","new","new","on_event","operate","overlay","padding","push","push_with","row","row_alignment","row_spacing","size","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","width","width","Data","Default","Handle","Icon","IconFallback","Image","Name","Named","Names","Svg","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","content_fit","data","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","fallback","fallback","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_name","from_path","from_raster_bytes","from_raster_pixels","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_svg_bytes","handle","hash","hash","hash","hash","height","icon","icon","icon","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_svg_handle","name","new","path","prefer_svg","prefer_svg","scale","scale","size","size","size","style","symbolic","symbolic","symbolic","symbolic","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","width","FilterMethod","Handle","Image","Linear","Nearest","Viewer","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","components_from","data","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","draw","draw","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_memory","from_path","from_pixels","from_stimulus","from_stimulus","from_stimulus","hash","hash","height","id","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","max_scale","min_scale","mouse_interaction","new","on_event","padding","scale_step","size","state","tag","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","viewer","viewer","width","State","Viewer","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","default","deref","deref_mut","drop","fmt","from","from_angle","from_stimulus","image_size","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","is_cursor_grabbed","new","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","LayerContainer","Style","StyleSheet","adapt_into_using","align_x","align_y","appearance","arrays_from","arrays_into","as_any","as_any_mut","background","border","borrow","borrow_mut","center_x","center_y","children","components_from","deref","deref_mut","diff","draw","drop","from","from_angle","from_stimulus","height","icon_color","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","layer","layer_container","layout","max_height","max_width","mouse_interaction","on_event","operate","overlay","padding","shadow","size","state","style","tag","text_color","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","width","ListColumn","column","container","list_column","ListColumn","adapt_into_using","add","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","default","deref","deref_mut","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_element","into_stimulus","list_column","new","padding","spacing","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","CloseCondition","Dynamic","Full","ItemHeight","ItemWidth","MenuActive","MenuBar","MenuTree","OmitActive","PathHighlight","Static","Static","StyleSheet","Uniform","Uniform","action","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","click_inside","click_outside","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","fmt","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","key_bind","leave","menu_bar","menu_tree","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","MenuAction","Message","message","Alt","Ctrl","KeyBind","Modifier","Shift","Super","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","cmp","components_from","components_from","deref","deref","deref_mut","deref_mut","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hash","hash","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","key","matches","modifiers","partial_cmp","partial_cmp","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","MenuBar","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","bounds_expand","children","close_condition","components_from","cross_offset","deref","deref_mut","diff","draw","drop","from","from_angle","from_stimulus","height","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","item_height","item_width","layout","main_offset","new","on_event","overlay","padding","path_highlight","size","spacing","state","style","tag","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","width","Button","CheckBox","Divider","Folder","MenuItem","MenuTree","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","components_from","components_from","deref","deref","deref_mut","deref_mut","drop","drop","from","from","from","from_angle","from_angle","from_stimulus","from_stimulus","height","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","menu_items","menu_root","new","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","width","with_children","Id","Model","nav_bar","nav_bar_style","NavBarToggle","active","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","nav_bar_toggle","on_toggle","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","All","Appearance","Axis","Bottom","Canceled","Center","Configuration","Content","Contents","Direction","Down","DragEvent","Draggable","Dropped","Edge","Edge","Edge","Horizontal","Left","Left","Line","Maximized","Node","Pane","Pane","Pane","Pane","PaneGrid","Picked","Region","ResizeEvent","Right","Right","Split","Split","Split","State","Style","StyleSheet","Target","TitleBar","Top","Up","Vertical","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adjacent","always_show_controls","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","can_be_dragged_at","can_be_dragged_at","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","close","cmp","cmp","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","controls","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","draw","draw","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get","get_mut","hash","hash","hash","hash","hovered_region","hovered_split","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","internal","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_empty","is_over_pick_area","iter","iter","iter_mut","layout","layout","layout","len","maximize","maximized","mouse_interaction","move_to_edge","new","new","new","padding","pane_regions","panes","partial_cmp","partial_cmp","picked_split","ratio","resize","restore","split","split","split","split_line_bounds","split_regions","split_with","splits","state","style","style","swap","title_bar","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","update","width","with_configuration","a","axis","b","ratio","pane","pane","pane","target","a","axis","b","id","ratio","Action","Clicking","Dragging","Idle","Internal","Resizing","State","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clicked_pane","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","drop","drop","eq","fmt","fmt","from","from","from_angle","from_angle","from_configuration","from_stimulus","from_stimulus","init","init","internal","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","panes","picked_pane","picked_split","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","axis","origin","origin","pane","pane","split","Appearance","Bottom","Center","Overlay","Point","Popover","Position","Style","StyleSheet","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","children","clone","clone_into","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","diff","draw","draw","drop","drop","drop","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","icon_color","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","mouse_interaction","mouse_interaction","new","on_event","on_event","operate","operate","overlay","popover","popup","position","shadow","size","text_color","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","Appearance","ProgressBar","Style","StyleSheet","adapt_into_using","appearance","arrays_from","arrays_into","as_any","as_any_mut","background","bar","border_radius","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Radio","Style","StyleSheet","active","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","background","border_color","border_width","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","dot_color","drop","fmt","from","from_angle","from_stimulus","hovered","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","text_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Finished","Init","Ready","Rectangle","RectangleTracker","RectangleTrackingContainer","RectangleUpdate","State","Style","StyleSheet","Waiting","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","align_x","align_y","appearance","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","center_x","center_y","children","clone","clone","clone_into","clone_into","components_from","components_from","components_from","components_from","container","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","diff","diff","draw","drop","drop","drop","drop","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","height","icon_color","ignore_bounds","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","max_height","max_width","mouse_interaction","on_event","operate","overlay","padding","rectangle_tracker","rectangle_tracker_subscription","shadow","size","state","style","subscription","text_color","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","width","Row","append","push","row","with_capacity","with_children","Appearance","BuilderEntity","Entity","EntityMut","HorizontalSegmentedButton","Id","ItemAppearance","ItemStatusAppearance","Model","ModelBuilder","MultiSelect","MultiSelectEntityMut","MultiSelectModel","SecondaryMap","SegmentedButton","SegmentedVariant","Selectable","SingleSelect","SingleSelectEntityMut","SingleSelectModel","SparseSecondaryMap","Style","StyleSheet","VerticalSegmentedButton","activate","activate","activate","activate","activate","activate","activate_position","active","active","active","active","active","active_data","active_data_mut","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","background","border_bottom","border_bottom","border_end","border_end","border_radius","border_radius","border_start","border_start","border_top","border_top","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","builder","button_alignment","button_height","button_padding","button_spacing","clear","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","closable","closable","closable_set","close_icon","cmp","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains_item","data","data","data","data","data_mut","data_remove","data_set","deactivate","deactivate","deactivate","deactivate","deactivate","default","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","diff","dividers","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","enable","entity_at","eq","eq","equivalent","equivalent","first","fmt","fmt","fmt","fmt","focus","focus","font_active","font_hovered","font_inactive","font_size","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","height","horizontal","horizontal","hover","icon","icon","icon","icon_remove","icon_set","id","id","inactive","indent","indent","indent_remove","indent_set","indent_spacing","init","init","init","init","init","init","init","init","init","init","init","init","insert","insert","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_active","is_active","is_active","is_active","is_closable","is_enabled","iter","last","layout","line_height","maximum_button_width","middle","minimum_button_width","mouse_interaction","new","new","on_activate","on_close","on_event","operate","overlay","padding","partial_cmp","position","position","position","position_set","position_swap","position_swap","position_swap","remove","scrollable_focus","secondary","secondary","secondary_sparse","secondary_sparse","show_close_icon_on_hover","size","spacing","state","style","tag","text","text","text","text_color","text_remove","text_set","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unique","variant_appearance","variant_appearance","variant_appearance","variant_bounds","variant_bounds","variant_bounds","variant_layout","variant_layout","variant_layout","vertical","vertical","width","with_id","with_id","horizontal","vertical","Section","adapt_into_using","add","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","item","item","item_row","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","view_column","view_section","Item","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","builder","components_from","control","deref","deref_mut","description","drop","from","from_angle","from_stimulus","icon","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","item","item_row","title","toggler","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Circle","Gradient","Handle","HandleShape","Pair","Rail","RailBackground","Rectangle","Slider","State","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","border_color","border_radius","border_width","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","breakpoint","clone","clone","clone","clone_into","clone_into","clone_into","color","colors","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","dragging","draw","drop","drop","drop","eq","equivalent","equivalent","fmt","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","handle","hovered","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","mouse_interaction","new","rail","shape","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","update","width","border_radius","radius","width","auto_angle","gradient","Space","Decrement","Increment","Message","Model","SpinButton","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","components_from","default","default","default","default","default","default","default","default","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","hash","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_element","into_stimulus","into_stimulus","into_stimulus","max","max","min","min","new","spin_button","step","step","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","update","value","value","Appearance","Handle","Style","StyleSheet","Svg","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","data","default","deref","deref","deref_mut","deref_mut","drop","drop","eq","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_memory","from_path","from_stimulus","from_stimulus","hash","hovered","id","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","horizontal","vertical","Body","Caption","CaptionHeading","Heading","Monotext","Text","Title1","Title2","Title3","Title4","Typography","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","body","borrow","borrow_mut","caption","caption_heading","clone","clone_into","components_from","deref","deref_mut","drop","eq","equivalent","equivalent","fmt","from","from_angle","from_stimulus","hash","heading","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","monotext","text","title1","title2","title3","title4","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Cursor","DnDCommand","State","Style","Style","StyleSheet","TextInput","TextInputString","Value","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border_color","border_offset","border_radius","border_width","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","children","clone","clone","clone","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","cursor","cursor","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","diff","dirty","disabled","dnd_icon","draw","draw","draw","drop","drop","drop","drop","editor","error","error","fmt","fmt","fmt","focus","focus","focus","focused","focused","font","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","helper_text","helper_text","hovered","hovered","icon_color","id","init","init","init","init","inline_input","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_focused","is_focused","is_secure","label","label","label_color","layout","layout","leading_icon","line_height","mouse_interaction","mouse_interaction","move_cursor_to","move_cursor_to","move_cursor_to","move_cursor_to_end","move_cursor_to_end","move_cursor_to_end","move_cursor_to_front","move_cursor_to_front","move_cursor_to_front","new","new","on_clear","on_event","on_input","on_paste","on_submit","on_submit_maybe","operate","overlay","padding","password","placeholder","placeholder_color","search_input","secure_input","select_all","select_all","select_all","selected_fill","selected_text","selected_text_color","size","size","state","style","surface_ids","tag","text_color","text_input","to_owned","to_owned","to_owned","trailing_icon","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","unfocus","unfocus","update","value","value","width","Cursor","Index","Selection","State","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","drop","drop","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","selection","state","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","end","start","Editor","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","backspace","borrow","borrow_mut","components_from","contents","delete","deref","deref_mut","drop","from","from_angle","from_stimulus","init","insert","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","paste","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Value","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","drop","fmt","from","from_angle","from_stimulus","init","insert","insert_many","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","is_empty","len","new","next_end_of_word","previous_start_of_word","remove","remove_many","secure","select","to_owned","to_string","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","until","Bottom","FollowCursor","Left","Position","Right","Tooltip","Top","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","drop","eq","equivalent","equivalent","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","tooltip","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Circle","Handle","HandleShape","Rectangle","State","Style","StyleSheet","VerticalSlider","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","border_color","border_width","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","breakpoint","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","dragging","draw","drop","drop","drop","drop","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","handle","hovered","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","mouse_interaction","new","rail","shape","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","update","border_radius","radius","width","Warning","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","into_widget","on_close","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","warning","warning_container"],"q":[[0,"cosmic"],[95,"cosmic::app"],[238,"cosmic::app::DbusActivationDetails"],[241,"cosmic::app::command"],[252,"cosmic::app::command::message"],[254,"cosmic::app::cosmic"],[353,"cosmic::app::message"],[394,"cosmic::app::settings"],[439,"cosmic::command"],[448,"cosmic::config"],[450,"cosmic::config::toolkit"],[500,"cosmic::executor"],[503,"cosmic::executor::multi"],[537,"cosmic::executor::single"],[571,"cosmic::font"],[630,"cosmic::icon_theme"],[632,"cosmic::keyboard_nav"],[679,"cosmic::prelude"],[700,"cosmic::theme"],[1064,"cosmic::theme::style"],[1189,"cosmic::theme::style::Button"],[1193,"cosmic::theme::style::TextInput"],[1198,"cosmic::theme::style::iced"],[1654,"cosmic::theme::style::iced::Button"],[1656,"cosmic::theme::style::iced::Slider"],[1659,"cosmic::theme::style::menu_bar"],[1738,"cosmic::widget"],[2586,"cosmic::widget::aspect_ratio"],[2645,"cosmic::widget::button"],[2846,"cosmic::widget::button::link"],[2882,"cosmic::widget::calendar"],[2917,"cosmic::widget::card"],[2918,"cosmic::widget::card::style"],[2957,"cosmic::widget::checkbox"],[3042,"cosmic::widget::color_picker"],[3269,"cosmic::widget::column"],[3275,"cosmic::widget::combo_box"],[3314,"cosmic::widget::container"],[3364,"cosmic::widget::context_drawer"],[3406,"cosmic::widget::dialog"],[3444,"cosmic::widget::divider"],[3446,"cosmic::widget::divider::horizontal"],[3449,"cosmic::widget::divider::vertical"],[3452,"cosmic::widget::dropdown"],[3586,"cosmic::widget::dropdown::menu"],[3703,"cosmic::widget::dropdown::multi"],[3833,"cosmic::widget::dropdown::multi::menu"],[3870,"cosmic::widget::flex_row"],[3874,"cosmic::widget::flex_row::layout"],[3875,"cosmic::widget::flex_row::widget"],[3920,"cosmic::widget::grid"],[3924,"cosmic::widget::grid::layout"],[3925,"cosmic::widget::grid::widget"],[4018,"cosmic::widget::icon"],[4234,"cosmic::widget::image"],[4371,"cosmic::widget::image::viewer"],[4411,"cosmic::widget::layer_container"],[4473,"cosmic::widget::list"],[4477,"cosmic::widget::list::column"],[4514,"cosmic::widget::menu"],[4673,"cosmic::widget::menu::action"],[4676,"cosmic::widget::menu::key_bind"],[4768,"cosmic::widget::menu::menu_bar"],[4820,"cosmic::widget::menu::menu_tree"],[4892,"cosmic::widget::nav_bar"],[4896,"cosmic::widget::nav_bar_toggle"],[4930,"cosmic::widget::pane_grid"],[5618,"cosmic::widget::pane_grid::Configuration"],[5622,"cosmic::widget::pane_grid::DragEvent"],[5626,"cosmic::widget::pane_grid::Node"],[5631,"cosmic::widget::pane_grid::state"],[5714,"cosmic::widget::pane_grid::state::Action"],[5720,"cosmic::widget::popover"],[5846,"cosmic::widget::progress_bar"],[5888,"cosmic::widget::radio"],[5933,"cosmic::widget::rectangle_tracker"],[6104,"cosmic::widget::row"],[6110,"cosmic::widget::segmented_button"],[6667,"cosmic::widget::segmented_control"],[6669,"cosmic::widget::settings"],[6705,"cosmic::widget::settings::item"],[6743,"cosmic::widget::slider"],[6879,"cosmic::widget::slider::HandleShape"],[6882,"cosmic::widget::slider::RailBackground"],[6884,"cosmic::widget::space"],[6885,"cosmic::widget::spin_button"],[7006,"cosmic::widget::svg"],[7091,"cosmic::widget::tab_bar"],[7093,"cosmic::widget::text"],[7152,"cosmic::widget::text_input"],[7384,"cosmic::widget::text_input::cursor"],[7459,"cosmic::widget::text_input::cursor::State"],[7461,"cosmic::widget::text_input::editor"],[7498,"cosmic::widget::text_input::value"],[7546,"cosmic::widget::tooltip"],[7591,"cosmic::widget::vertical_slider"],[7754,"cosmic::widget::vertical_slider::HandleShape"],[7757,"cosmic::widget::warning"],[7792,"iced_runtime::command::action"],[7793,"alloc::vec"],[7794,"palette::chromatic_adaptation"],[7795,"core::ops::function"],[7796,"core::any"],[7797,"core::iter::traits::collect"],[7798,"core::fmt"],[7799,"core::fmt"],[7800,"core::clone"],[7801,"core::convert"],[7802,"core::cmp"],[7803,"core::default"],[7804,"alloc::boxed"],[7805,"alloc::rc"],[7806,"core::ops::function"],[7807,"core::marker"],[7808,"core::future::future"],[7809,"futures_core::stream"],[7810,"palette::convert::try_from_into_color"],[7811,"core::any"],[7812,"alloc::string"],[7813,"core::fmt"],[7814,"core::fmt"],[7815,"alloc::sync"],[7816,"iced"],[7817,"iced_futures::subscription"],[7818,"cosmic_theme::model::mode"],[7819,"cosmic_theme::model::theme"],[7820,"cosmic_config"],[7821,"cosmic_config"],[7822,"iced_core::layout::limits"],[7823,"cosmic_config"],[7824,"core::hash"],[7825,"iced_runtime::font"],[7826,"alloc::borrow"],[7827,"core::iter::traits::iterator"],[7828,"iced_style::text_editor"],[7829,"iced_style::scrollable"],[7830,"iced_style::text_input"],[7831,"iced_style::button"],[7832,"iced_style::toggler"],[7833,"iced_style::application"],[7834,"iced_core::widget::text"],[7835,"iced_style::menu"],[7836,"iced_style::rule"],[7837,"cosmic_theme::model::derivation"],[7838,"cosmic_theme::model::derivation"],[7839,"iced_core::background"],[7840,"cosmic_theme::model::theme"],[7841,"iced_core::renderer"],[7842,"iced_core::alignment"],[7843,"iced_core::widget::tree"],[7844,"core::fmt"],[7845,"iced_core::rectangle"],[7846,"core::ops::function"],[7847,"iced_core::renderer"],[7848,"iced_core::mouse::cursor"],[7849,"num_traits::cast"],[7850,"iced_core::svg"],[7851,"iced_core::image"],[7852,"iced_core::widget::operation"],[7853,"iced_core::widget::operation::focusable"],[7854,"std::path"],[7855,"iced_core::length"],[7856,"iced_core::pixels"],[7857,"iced_widget::text_input::text_input"],[7858,"iced_core::layout::node"],[7859,"iced_core::text"],[7860,"core::ops::range"],[7861,"core::cmp"],[7862,"iced_core::clipboard"],[7863,"iced_core::shell"],[7864,"iced_core::event"],[7865,"iced_core::padding"],[7866,"iced_widget::scrollable"],[7867,"iced_core::widget::operation::scrollable"],[7868,"iced_core::vector"],[7869,"iced_core::widget::tree"],[7870,"iced_core::text"],[7871,"iced_style::toggler"],[7872,"chrono::naive::date"],[7873,"chrono::weekday"],[7874,"iced_core::gradient"],[7875,"iced_widget::rule"],[7876,"iced_core::point"],[7877,"iced_core::alignment"],[7878,"iced_core::keyboard::key"],[7879,"smol_str"],[7880,"std::collections::hash::map"],[7881,"alloc::collections::btree::map"],[7882,"futures_channel::mpsc"],[7883,"slotmap"],[7884,"slotmap::secondary"],[7885,"slotmap::sparse_secondary"],[7886,"fraction::prelude"],[7887,"core::ops::arith"],[7888,"core::ops::arith"]],"d":["Represents a type that you can apply arbitrary functions …","","","Represents a type which can have functions applied to it …","A set of asynchronous actions to be performed by some …","","","","","","Returns all of the actions of the Command.","","Apply a function to this value and return the (possibly) …","Build interactive cross-platform COSMIC applications.","Apply a function which takes the parameter by value.","Apply a function which takes the parameter by mutable …","Apply a function which takes the parameter by reference.","","","","","Creates a Command that performs the actions of all the …","","","Create asynchronous actions to be performed in the …","","Configurations available to libcosmic applications.","","","","","","","Select the preferred async executor for an application.","","Select preferred fonts.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Select the preferred icon theme.","","Calls U::from(self).","","","","","","","Subscribe to common application keyboard shortcuts.","Applies a transformation to the result of a Command.","This macro creates a button for a MenuTree.","Creates an empty Command.","Creates a Command that performs the action of the given …","Recommended default imports.","Creates a Command that runs the given stream to completion.","Creates a Command that performs a single Action.","","Contains the Theme type and its widget stylesheet …","","","","","","","","Cosmic-themed widget implementations.","Creates a Command that performs a widget::Operation.","An ID that uniquely identifies the application. The …","","action can be deserialized as Flags","An interactive cross-platform COSMIC application.","Methods automatically derived for all types implementing …","","","COSMIC-specific application settings","","","Default async executor to use with the app.","Argument received [Application::new].","","Message type specific to our app.","","","","","","","","","","","","","","","","","","","","","","","","","","","Displays a context drawer on the side of the application …","Grants access to the COSMIC Core.","Grants access to the COSMIC Core.","","Enables debug features in cosmic/iced.","","","","","","Displays a dialog in the center of the application window …","Initiates a window drag.","","","","Get the current focused window if it exists","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Attaches elements to the center of the header.","Attaches elements to the end section of the header.","Attaches elements to the start section of the header.","Creates the application, and optionally emits command on …","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Whether the window is too small for the nav bar + main …","Enable or disable keyboard navigation","Get the main window::Id, which is window::Id::MAIN by …","Maximizes the window.","","Minimizes the window.","Allows overriding the default nav bar widget","Whether the nav panel is visible or not","","","","Allows COSMIC to integrate with your application’s …","Called before closing the application.","Called when a window requests to be closed.","","Called when the escape key is pressed.","Called when a navigation item is selected.","Called when the search function is requested.","Called when a window is resized.","Launch a COSMIC application with the given Settings.","The scaling factor used by the application.","Set the context drawer title.","Set context drawer header title","Set the header bar title.","Set header bar title","Enable or disable keyboard navigation","Set the title of the main window.","Configure a new COSMIC application.","Overrides the default style for applications","Event sources that are to be listened to.","Whether the application should use a dark theme, according …","Get the current system theme","Get the current system theme mode","Respond to a system theme mode change","Respond to a system theme change","Get the title of the main window.","","","","","","","","","","","","","","","","","Respond to an application-specific message.","Constructs the view for the main window.","View template for the main window.","Constructs views for other windows.","","","","","","","Commands for COSMIC applications.","","","Convenience methods for building message-based commands.","Creates a command which yields a crate::app::Message.","","","","","","","Creates a command which yields an application message.","Creates a command which yields a cosmic message.","Activate the application","Application requests theme change.","Requests to close the window.","Closes or shows the context drawer.","","Requests to drag the window.","Window focus changed","Keyboard shortcuts managed by libcosmic.","Requests to maximize the window.","A message managed internally by COSMIC.","Requests to minimize the window.","Activates a navigation element from the nav bar.","Set scaling factor","","Notifies that a surface was closed. Any data relating to …","Notification of system theme changes.","Notification of system theme mode changes.","Toggles visibility of the nav bar.","Toggles the condensed status of the nav bar.","Toolkit configuration update","Window focus lost","Updates the window maximized state","Updates the tracked window geometry.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Messages from the application, for the application.","Internal messages to be handled by libcosmic.","","Do nothing","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","Configure a new COSMIC application.","","Produces a smoother result in some widgets, at a …","","","","","","","Whether the window should have a border, a title bar, etc. …","","Enables debug features in cosmic/iced.","","The default Font to be used.","Sets the default icon theme, passing an empty string will …","Default size of fonts.","","","","Whether the application should exit when there are no open …","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Whether the window should be resizable or not. and the …","Scale factor to use by default.","Initial size of the window.","Limitations of the window size","The theme to apply to the application.","Whether the window should be transparent.","","","","","","","","Yields a command which contains a batch of commands.","Initiates a window drag.","Yields a command which will run the future on the runtime …","Maximizes the window.","Yields a command which will return a message.","Minimizes the window.","Sets the title of a window.","Sets the window mode to windowed.","Toggles the windows’ maximize state.","","Configurations for the libcosmic toolkit.","","ID for the CosmicTk config.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Preferred icon theme","","Calls U::from(self).","","","","","","","","Sets CosmicTk::icon_theme and writes to …","Sets CosmicTk::show_maximize and writes to …","Sets CosmicTk::show_minimize and writes to …","Show maximize button in window header.","Show minimize button in window header.","","","","","","","","","","","Uses the single thread executor by default.","An async executor that schedules tasks across a pol …","An async executor that schedules tasks on the same …","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","A non-monospaced sans-serif font with normal Weight.","","","","","","","","","","","A font.","A monospaced font with normal Weight.","","","","","","","","","","","","","","","","","","The Family of the Font.","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","The Stretch of the Font.","The Style of the Font.","","","","","","","","","The Weight of the Font.","Creates a non-monospaced Font with the given Family::Name …","The fallback icon theme to search if no icon theme was …","Set the fallback icon theme to search when loading system …","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","Unfocuses any actively-focused widget.","Represents a type that you can apply arbitrary functions …","","Represents a type which can have functions applied to it …","Additional methods for the [Column] and [Row] widgets.","","","","","","Apply a function to this value and return the (possibly) …","Moves all the elements of other into self, leaving other …","Apply a function which takes the parameter by value.","Apply a function which takes the parameter by mutable …","Apply a function which takes the parameter by reference.","Combines color with background to create appearance of …","","Appends all elements in an iterator to the widget.","Appends all elements in an iterator to the widget.","Pushes an element into the widget.","Conditionally pushes an element to the widget.","Conditionally pushes an element to the widget.","","","","","","","","","","","","","","","","","accent element colors","accent button element colors","Currently-defined theme.","","","","","","","","","","","","cosmic-comp active hint window outline width","Currently-defined theme type.","","","","","","","","The transparency component. 0.0 (or 0u8) is fully …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","background element colors","The base color of the widget","the color of the border for the widget","","","","","","","","","","","","","","","button component styling","","","","","The color.","","","","","","","","corner radii","","get current container can be used in a component that is …","","","","","","","","","","","","","","","","","","","","","","","","","","destructive element colors","destructive button element colors","","","","","","the color of the widget when it is disabled","the color of the border for the widget when it is disabled","","","the color of dividers for this widget","","","","","","","","","","","","","","","the color of the widget when it is focused","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","cosmic-comp window gaps size (outer, inner)","","The color of the widget when it is hovered","","","","","","","","","","","","","","icon button element colors","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether the active theme has a dark preference.","Whether the theme has a dark preference.","is dark","enables blurred transparency","Whether the active theme is high contrast.","Whether the theme has a high contrast.","is high contrast","","","","link button element colors","name of the theme","the color of text for this widget","the color of text in the widget when it is disabled","palette","","","","","the color of the widget when it is pressed","primary element colors","secondary element colors","the color of the widget when it is selected","the color of the widget when it is selected","","","","","set the theme","shade color for dialogs","spacing","Stylesheet implements for crate::Theme","Watches for changes to the system’s theme preference.","suggested element colors","suggested button element colors","","","","Loads the preferred system theme from cosmic-config.","text button element colors","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","warning element colors","warning button element colors","cosmic-comp custom window hint color","","","","","","","A widget for multiple choice selection.","","Or implement any custom theme of your liking.","","","","","","","","","","","","","","","","","","","","A tabbed widget for switching between views in an …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Contains stylesheet implementations for widgets native to …","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","Change the appearance of menu bars and their menus.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Styles for the button widget from iced-rs.","","","","","","","","","","","","","Apply a custom appearance filter","","","","","","","","No filtering is applied","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The appearance of a menu bar and its menus.","A Theme that uses a Custom palette.","The default style.","The style of a menu bar and its menus","The supported style of the StyleSheet.","The style sheet of a menu bar and its menus.","","","Produces the Appearance of a menu bar and its menus.","","","","","","","","","The background color of the menu bar and its menus.","The expand value of the menus’ background","The border radius of the menu bar.","The border Color of the menu bar and its menus.","The border width of the menu bar and its menus.","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","The border radius of the menus.","The highlighted path Color of the the menu bar and its …","","","","","","","","","","","","","","","","","","A box that can be checked.","","","","A widget for searching and selecting a single value from a …","An element decorating some content.","","The default height of a ProgressBar.","The default height of a Slider.","The default size of a Radio button.","The default spacing of a Radio button.","The default width of a VerticalSlider.","","","","","","","","The identifier of a generic widget.","A frame that displays an image while keeping aspect ratio.","","A widget that only rebuilds its contents when necessary.","","Emit messages on mouse events.","","A piece of logic that can traverse the widget tree of an …","A collection of panes distributed using either vertical or …","","A bar that displays progress.","A circular button representing a choice.","","A widget that is aware of its dimensions.","","An horizontal bar and a handle that selects a single value …","An amount of empty space.","","A vector graphics image.","A paragraph.","","","An vertical bar and a handle that selects a single value …","A component that displays information and allows …","","","","","","","","","","","","","","","","","Sets the content alignment for the horizontal axis of the …","Sets the content alignment for the vertical axis of the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the border radius of the image.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Defines breakpoints to visibly mark on the slider.","Build the widget","","","","","","Pushes an element to the center region.","Centers the contents in the horizontal axis of the …","Centers the contents in the vertical axis of the Container.","Show toggle controls using checkboxes.","Creates a new Checkbox.","","","","Returns the state Tree of the children of the Widget.","","","","","","","","Display a dropdown list of searchable and selectable …","Creates a new ComboBox.","","","","","","","","","","","","","","","","","Decorate content and apply alignment.","Creates a new Container with the provided content.","Operates on a widget that contains other widgets.","Sets the ContentFit of the Svg.","Sets the ContentFit of the Image.","","","Operates on a custom widget.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Reconciliates the Widget with the provided Tree.","","","An element to distinguish a boundary between two elements.","Draws the Widget using the associated Renderer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Pushes an element to the end region.","","","","Sets the FilterMethod of the Image.","Finishes the Operation and returns its Outcome.","","","","","","Operates on a widget that can be focused.","Focused state of the window","Sets the Renderer::Font of the text of the Checkbox.","Sets the Renderer::Font of the ComboBox.","Sets the text font of the Radio button.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","Creates a new Svg that will display the contents of the …","","","","","","","","","","","","","","","","","","","","","Sets the height of the Container.","Sets the height of the PaneGrid.","Sets the height of the ProgressBar.","Sets the height of the Slider.","Sets the height of the VerticalSlider.","Sets the height of the Svg.","Sets the height of the Image boundaries.","Creates a new horizontal Space with the given Length.","Lazily-generated SVG icon widget for Iced.","","Sets the Icon of the Checkbox.","Sets the text_input::Icon of the ComboBox.","","Sets the Id of the Container.","Returns the id of the widget","","","","","","Display images in your user interface.","Creates a new Image.","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Converts the headerbar builder into an Iced element.","","","","","","","","","","","","","","","","","","","Returns the layout::Node of the Widget.","","","","","","","","","","","","","","","Creates a new Lazy widget with the given data Dependency …","Sets the LineHeight of the ComboBox.","","Sets the maximum height of the Container.","Sets the maximum width of the Container.","A MenuBar widget for displaying MenuTrees","A container intercepting mouse events.","","","","","Returns the current mouse::Interaction of the Widget.","","","","","","","Navigation side panel for switching between views.","","A button for toggling the navigation side panel.","","Creates a MouseArea with the given content.","Creates a new Checkbox.","Creates a new ComboBox with the given list of options, a …","Creates an empty Container.","Creates a PaneGrid with the given State and view function.","Creates a new ProgressBar.","Creates a new Radio button.","Creates a new Slider.","Creates a new VerticalSlider.","Creates a new Responsive widget with a closure that …","Creates a new Lazy widget with the given data Dependency …","Creates a new Svg from the given Handle.","Creates an amount of empty Space with the given width and …","Creates a custom Id.","Creates a new Image with the given path.","Sets the message that will be produced when a Pane of the …","Sets the message that will be produced when the outside …","A message emitted when the close button is pressed.","The message to emit when a drag is initiated.","Enables the drag and drop interactions of the PaneGrid, …","A message emitted when dragged.","","","","","Processes a runtime Event.","","","","","","","Sets the message that should be produced when some text is …","A message emitted when the maximize button is pressed.","The message to emit on a middle button press.","The message to emit on a middle button release.","A message emitted when the minimize button is pressed.","Sets the message that will be produced when an option of …","The message to emit on a left button press.","The message to emit on a left button release.","Sets the release message of the Slider. This is called …","Sets the release message of the VerticalSlider. This is …","Enables the resize interactions of the PaneGrid, which will","A message emitted when the header is right clicked.","The message to emit on a right button press.","The message to emit on a right button release.","","","Applies an Operation to the Widget.","","","","","","","Returns the overlay of the Widget, if there is any.","","","","Sets the Padding of the ComboBox.","Sets the Padding of the Container.","Let your users split regions of your application and …","A widget showing a popup in an overlay positioned relative …","","Provide progress feedback to your users.","Creates a new ProgressBar.","Create choices using radio buttons.","Creates a new Radio.","","","resets the id counter","Creates a new Responsive widget with a closure that …","","","","Operates on a widget that can be scrolled.","A widget providing a conjoined set of linear items that …","A selection of multiple choices appearing as a conjoined …","","Sets the id of the widget This may be called while diffing …","","","","","","","Returns the Size of the Widget in lengths.","","Sets the size of the Checkbox.","","","Sets the text sixe of the ComboBox.","","","","","Sets the size of the Radio button.","","","","","","","","Returns a Size hint for laying out the Widget.","","Display an interactive selector of a single value from a …","Creates a new Slider.","Distribute content vertically.","Sets the spacing between the Checkbox and the text.","Sets the spacing between the panes of the PaneGrid.","Sets the spacing between the Radio button and the text.","","","Pushes an element to the start region.","","","","","Returns the State of the Widget.","","","","","","","Sets the step size of the Slider.","Sets the step size of the VerticalSlider.","Sets the style of the Checkbox.","Sets the style of the ComboBox.","Sets the style of the Container.","Sets the style of the PaneGrid.","Sets the style of the ProgressBar.","Sets the style of the Radio button.","Sets the style of the Slider.","Sets the style of the VerticalSlider.","Sets the style variant of this Svg.","Display vector graphics in your application.","Creates a new Svg widget from the given Handle.","Symbolic icons inherit their color from the renderer if a …","A collection of tabs for developing a tabbed interface.","","","","","Returns the Tag of the Widget.","","","","","","","","","A text input widget from iced widgets plus some added …","Operates on a widget that has text input.","Sets the style of the TextInput of the ComboBox.","Sets the text text::LineHeight of the Checkbox.","Sets the text text::LineHeight of the Radio button.","Sets the text::Shaping strategy of the Checkbox.","Sets the text::Shaping strategy of the Radio button.","Sets the text size of the Checkbox.","Sets the text size of the Radio button.","Defines the title of the window","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a unique Id.","Display an interactive selector of a single value from a …","Creates a new VerticalSlider.","Creates a new vertical Space with the given Length.","","Sets the width of the Checkbox.","Sets the width of the ComboBox.","Sets the width of the Container.","Sets the width of the PaneGrid.","Sets the width of the ProgressBar.","Sets the width of the Radio button.","Sets the width of the Slider.","Sets the width of the VerticalSlider.","Sets the width of the Svg.","Sets the width of the Image boundaries.","Creates an amount of vertical Space.","Creates an amount of horizontal Space.","The appearance of a container.","An element decorating some content.","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","Sets the content alignment for the horizontal axis of the …","Sets the content alignment for the vertical axis of the …","Produces the Appearance of a container.","","","","","","The Background of the container.","The Border of the container.","","","Centers the contents in the horizontal axis of the …","Centers the contents in the vertical axis of the Container.","","","","","","","","Returns the argument unchanged.","","","Sets the height of the Container.","The icon Color of the container.","","Calls U::from(self).","","","","","","","","Sets the maximum height of the Container in pixels.","Sets the maximum width of the Container.","","","","","Sets the Padding of the Container.","The Shadow of the container.","","Sets the style of the Container.","The text Color of the container.","","","","","","","","Sets the width of the [self.].","The appearance of a button.","","A generic button which emits a message when pressed.","","","","","The supported style of the StyleSheet.","A set of rules that dictate the style of a button.","","Produces the active Appearance of a button.","","","","","","","","","","","","","","","","The Background of the button.","The border Color of the button.","The border radius of the button.","The border width of the button.","","","","","","","","","","","","","","","","","","","","","","","","Produces the disabled Appearance of a button.","","","","","","Appearance when the button is the target of a DND …","Appearance when the button is the target of a DND …","Applies the Extra Large button size preset.","Applies the Extra Large button size preset.","Applies the Extra Small button size preset.","Applies the Extra Small button size preset.","","Produces a Command that focuses the Button with the given …","Sets the preferred font size.","Sets the preferred font weight.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Sets the height of the Button.","Sets the preferred height of the button.","Produces the hovered Appearance of a button.","","The icon Color of the button.","Sets the preferred size of icons.","","Sets the Id of the Button.","Sets the Id of the button.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","The label to display within the button.","Applies the Large button size preset.","Applies the Large button size preset.","Computes the layout of a Button.","","","","Sets the prefered font line height.","","","Applies the Medium button size preset.","Applies the Medium button size preset.","Returns the mouse::Interaction of a Button.","","","","","Creates a new Button with the given content.","","","","","","","","Sets the message that will be produced when the Button is …","Sets the message that will be produced when the button is …","Sets the message that will be produced when the Button is …","Set the value of [on_press] as either Some or None.","","","","","","The Color of the outline.","An outline placed around the border.","","Sets the Padding of the Button.","Sets the preferred padding of the button.","Produces the pressed Appearance of a button.","","","Sets the widget to a selected state.","","","Background color of the selection indicator","","The amount of offset to apply to the shadow of the button.","","Sets the preferred spacing between elements in the button.","","","Sets the style variant of this Button.","The preferred style of the button.","","","","The text Color of the button.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the width of the Button.","Sets the preferred width of the button.","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Gets the first date that will be visible on the calender","","Calls U::from(self).","","","","","","","","","","","","","","","","","","Appearance of the cards.","Defines the Appearance of a cards.","","","","","","","","","","","","","The default Appearance of the cards.","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","The appearance of a checkbox.","A box that can be checked.","The icon in a Checkbox.","The supported style of the StyleSheet.","A set of rules that dictate the style of a checkbox.","Produces the active Appearance of a checkbox.","","","","","","","","","","","The Background of the checkbox.","The Border of hte checkbox.","","","","","","","","","The unicode code point that will be used as the icon.","","","","","","","","","","","","Font that will be used to display the code_point,","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Produces the hovered Appearance of a checkbox.","The icon Color of the checkbox.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","The line height of the icon.","The shaping strategy of the icon.","Font size of the content.","The text Color of the checkbox.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Get the applied color of the picker","Get whether or not the picker should be visible","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a color picker button that displays the applied color","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A widget for searching and selecting a single value from a …","The local state of a ComboBox.","","","","","","","","Build matchers from given list of options.","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","Creates a new State for a ComboBox with the given list of …","Search list of options for a given query.","","","","","","","","","Creates a new State for a ComboBox with the given list of …","The appearance of a container.","An element decorating some content.","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","Produces the Appearance of a container.","","","","","The Background of the container.","The Border of the container.","","","","","","","","","Draws the background of a Container given its Appearance …","","","Returns the argument unchanged.","","","The icon Color of the container.","","Calls U::from(self).","","","","","","","","Computes the layout of a Container.","The Shadow of the container.","The text Color of the container.","","","","","","","","","Produces a Command that queries the visible screen bounds …","Derives a new Appearance with the given Background.","Derives a new Appearance with a border of the given Color …","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","Creates an empty ContextDrawer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","Horizontal variant of a divider.","Vertical variant of a divider.","Horizontal divider with default thickness","Horizontal divider with heavy thickness.","Horizontal divider with light thickness","Vertical divider with default thickness","Vertical divider with heavy thickness.","Vertical divider with light thickness","The appearance of a pick list.","The default gap.","The default padding.","A widget for selecting a single value from a list of …","","The local state of a Dropdown.","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","Produces the active Appearance of a pick list.","","","","","","","","","","","","","","","","The Background of the pick list.","The Border of the pick list.","","","","","","","","","","","","","","","","","","","","Draws a Dropdown.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","The handle Color of the pick list.","Produces the hovered Appearance of a pick list.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","Computes the layout of a Dropdown.","","","Returns the current mouse::Interaction of a Dropdown.","","","Creates a new Dropdown with the given list of selections, …","Creates a new State for a Dropdown.","","Returns the current overlay of a Dropdown.","","","The placeholder Color of the pick list.","","","","The text Color of the pick list.","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a Dropdown …","","The appearance of a menu.","A list of selectable options.","The local state of a Menu.","The supported style of the StyleSheet.","The style sheet of a menu.","","","","Produces the Appearance of a menu.","","","","","","","","","","","","","Menu background","Menu border color","Menu border radius","Menu border width","","","","","","","","","","","","","","","","","","","Description text color","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Background when hovered","Text color when hovered","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","Creates a new Menu with the given State, a list of …","Creates a new State for a Menu.","Turns the Menu into an overlay Element at the given target …","Sets the Padding of the Menu.","Background when selected","Text color when selected","Menu text color","Sets the text [LineHeight] of the Menu.","Sets the text size of the Menu.","","","","","","","","","","","","","","","","","","","","","","","Sets the width of the Menu.","The appearance of a pick list.","The default gap.","The default padding.","A widget for selecting a single value from a list of …","A list for a multi-list dropdown widget.","","A model for managing the options in a multi-list dropdown.","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","Produces the active Appearance of a pick list.","","","","","","","","","","","","","","","","The Background of the pick list.","The Border of the pick list.","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","The handle Color of the pick list.","Produces the hovered Appearance of a pick list.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Create a List for a multi-list dropdown widget.","","","Create a Model for a multi-list dropdown.","","Creates a new Dropdown with the given list of selections, …","","","","","The placeholder Color of the pick list.","","","","","The text Color of the pick list.","","","","","","","","","","","","","","","","","","","","","","","","","","A dropdown menu with multiple lists.","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","Turns the Menu into an overlay Element at the given target …","Sets the Padding of the Menu.","Sets the text [LineHeight] of the Menu.","Sets the text size of the Menu.","","","","","","","","Sets the width of the Menu.","","Responsively generates rows and columns of widgets based …","","","","Responsively generates rows and columns of widgets based …","","","","","","","","","Sets the space between each column of items.","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Sets the max width","","","","","","Sets the padding around the widget.","Sets the space between each item in a row.","","","","","","","","","Sets the width.","","Responsively generates rows and columns of widgets based …","","","","","Responsively generates rows and columns of widgets based …","","","","","","","","","","","","","","","","","","","Alignment across columns","Sets the space between each column of items.","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","Sets the height of the grid.","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Sets the max width","","","","","","","Sets the padding around the widget.","Attach a new element with a given grid assignment.","Attach a new element with custom properties","","Alignment across rows","Sets the space between each item in a row.","","","","","","","","","","","","","","","","","Sets the width of the grid.","","","Default fallback using the icon name.","","An image which may be an SVG or PNG.","Fallback icon to use if the icon was not found.","","","","Fallback to specific icon names.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the fallback field of this struct.","Checks for a fallback if the icon was not found.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Create an icon handle from its XDG icon name.","Create an icon handle from its path.","Create an image handle from memory.","Create an image handle from RGBA data, where you must …","","","","","","Create a SVG handle from memory.","","","","","","","Create an Icon from a pre-existing Handle","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Name of icon to locate in an XDG icon path.","","","Sets the prefer_svg field of this struct.","Prioritizes SVG over PNG","Sets the scale field of this struct.","Restrict the lookup to a given scale.","Sets the size field of this struct.","","Restrict the lookup to a given size.","","Sets the symbolic field of this struct.","Sets the symbolic field of this struct.","Whether the icon is symbolic or not.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Image filtering strategy.","A handle of some image data.","A frame that displays an image while keeping aspect ratio.","Bilinear interpolation.","Nearest neighbor.","A frame that displays an image with the ability to zoom …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a reference to the image Data.","","","","","","","","Draws an Image","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Creates an image Handle containing the image data directly.","Creates an image Handle pointing to the image of the given …","Creates an image Handle containing the image pixels …","","","","","","Sets the height of the Viewer.","Returns the unique identifier of the Handle.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Computes the layout of an Image.","","Sets the max scale applied to the image of the Viewer.","Sets the min scale applied to the image of the Viewer.","","Creates a new Viewer with the given State.","","Sets the padding of the Viewer.","Sets the percentage the image of the Viewer will be scaled …","","","","","","","","","","","","","","","","","","","","","","","","","","","Zoom and pan on an image.","Creates a new Viewer with the given image Handle.","Sets the width of the Viewer.","The local state of a Viewer.","A frame that displays an image with the ability to zoom …","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the bounds of the underlying image, given the …","","Calls U::from(self).","","","","","","","","Returns if the cursor is currently grabbed by the Viewer.","Creates a new State.","","","","","","","","","The appearance of a container.","An element decorating some content.","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","Sets the content alignment for the horizontal axis of the …","Sets the content alignment for the vertical axis of the …","Produces the Appearance of a container.","","","","","The Background of the container.","The Border of the container.","","","Centers the contents in the horizontal axis of the …","Centers the contents in the vertical axis of the …","","","","","","","","Returns the argument unchanged.","","","Sets the height of the LayerContainer.","The icon Color of the container.","","Calls U::from(self).","","","","","","","Sets the [Layer] of the LayerContainer.","","","Sets the maximum height of the LayerContainer in pixels.","Sets the maximum width of the LayerContainer.","","","","","Sets the Padding of the LayerContainer.","The Shadow of the container.","","","Sets the style of the LayerContainer.","","The text Color of the container.","","","","","","","","Sets the width of the [self.].","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","The condition of when to close a menu","Dynamic tries to automatically choose the proper item …","Draw the full path,","The height of an item","The width of an item","Omit the active item if it’s not a menu","A MenuBar collects MenuTrees and handles","Nested menu is essentially a tree of items, a menu is a …","Omit the active item(the last item in the path)","Methods for drawing path highlight","Static tries to use the width value of each menu(menu tree …","Static tries to use MenuTree.height as item height, when it…","","Use uniform width","Use uniform height.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Close menus when the cursor clicks inside the check bounds","Close menus when the cursor clicks outside the check bounds","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Close menus when the cursor moves outside the check bounds","A widget that handles menu trees","A tree structure for constructing a hierarchical menu","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","MenuAction is a trait that represents an action in a menu.","The type of message that will be produced when the action …","Returns a message of type Self::Message when the action is …","","","Represents a combination of a key and modifiers. It is …","Represents the modifier keys on a keyboard.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","The key for the key binding.","Checks if the given key and modifiers match the KeyBind.","A vector of modifiers for the key binding.","","","","","","","","","","","","","","","","","","","","","A MenuBar collects MenuTrees and handles all the layout, …","","","","","","","","Sets the expand value for each menu’s check bounds","","CloseCondition","","Moves each menu in the horizontal open direction","","","","","","Returns the argument unchanged.","","","Sets the height of the MenuBar","","Calls U::from(self).","","","","","","","ItemHeight","ItemWidth","","Moves all the menus in the vertical open direction","Creates a new MenuBar with the given menu roots","","","Sets the Padding of the MenuBar","Sets the method for drawing path highlight","","Sets the spacing between menu roots","","Sets the style of the menu bar and its menus","","","","","","","","","Sets the width of the MenuBar","Represents a button menu item.","Represents a checkbox menu item.","Represents a divider between menu items.","Represents a folder menu item.","Represents a menu item that performs an action when …","Nested menu is essentially a tree of items, a menu is a …","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Sets the height of the menu tree. See ItemHeight","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Create a list of menu items from a vector of MenuItem.","Create a root menu item.","Create a new menu tree from a widget","","","","","","","","","","","","","","","Sets the width of the menu tree. See ItemWidth","Create a menu tree from a widget and a vector of sub trees","","","Navigation side panel for switching between views.","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","All panes are visible","The appearance of the hovered region of a pane grid.","A fixed reference line for the measurement of coordinates.","Bottom edge.","A Pane was picked and then dropped outside of other Pane …","Center region.","The arrangement of a PaneGrid.","The content of a Pane.","The visible contents of the PaneGrid","A four cardinal direction.","↓","An event produced during a drag and drop interaction of a …","A pane that can be dragged.","A Pane was dropped on top of another Pane.","The edges of an area.","An Edge of the full PaneGrid.","Edge region.","The horizontal axis: —","←","Left edge.","A line.","A maximized pane is visible","A layout node of a PaneGrid.","A rectangular region in a PaneGrid used to display widgets.","A Pane.","The region of this Node is taken by a Pane.","A single Pane of the PaneGrid.","A collection of panes distributed using either vertical or …","A Pane was picked for dragging.","The region of a Pane.","An event produced during a resize interaction of a PaneGrid…","→","Right edge.","A divider that splits a region in a PaneGrid into two …","A split of the available space.","The region of this Node is split into two.","The state of a PaneGrid.","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","The Target area a pane can be dropped on.","The title bar of a Pane.","Top edge.","↑","The vertical axis: |","","","","","","","","","","","","","","","","","","Returns the adjacent Pane of another Pane in the given …","Sets whether or not the controls attached to this TitleBar …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the pane region.","The Border of the pane region.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the Draggable with the given Layout can be …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Closes the given Pane and returns its internal state and …","","","The Color of the Line.","","","","","","","","","","","","","","","","","","Sets the controls of the TitleBar.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws a PaneGrid.","Draws the Content with the provided Renderer and Layout.","Draws the TitleBar with the provided Renderer and Layout.","","","","","","","","","","","Drops the given Pane into the provided Target.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the internal state of the given Pane, if it exists.","Returns the internal state of the given Pane with …","","","","","The Appearance to draw when a pane is hovered.","The Line to draw when a split is hovered.","","","","","","","","","","","","","","","","","","The internal state of the PaneGrid.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if the amount of panes in the State is 0.","Returns whether the mouse cursor is over the pick area of …","Returns an iterator over all the panes of the State, …","Returns an iterator over the values of the Contents","Returns a mutable iterator over all the panes of the State,","Calculates the Layout of a PaneGrid.","Returns the layout of the State.","Returns the layout Node of the Contents","Returns the total amount of panes in the State.","Maximize the given Pane. Only this pane will be rendered …","Returns the maximized Pane of the PaneGrid.","Returns the current mouse::Interaction of a PaneGrid.","Move Pane to an Edge of the PaneGrid.","Creates a new Content with the provided body.","Creates a new TitleBar with the given content.","Creates a new State, initializing the first pane with the …","Sets the Padding of the TitleBar.","Returns the rectangular region for each Pane in the Node …","The panes of the PaneGrid.","","","The Line to draw when a split is picked.","The new ratio of the Split.","Resizes two panes by setting the position of the provided …","Restore the currently maximized Pane to it’s normal …","Splits the provided Rectangle on the current Axis with the …","Splits the given Pane into two in the given Axis and …","The Split that is being dragged for resizing.","Calculates the bounds of the split line in a Rectangle …","Returns the axis, rectangular region, and ratio for each …","Split a target Pane with a given Pane on a given Region.","Returns an iterator over each Split in this Node.","The state of a PaneGrid.","Sets the style of the Content.","Sets the style of the TitleBar.","Swaps the position of the provided panes in the State.","Sets the TitleBar of this Content.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the state of a PaneGrid …","The width of the Line.","Creates a new State with the given Configuration.","The left/top Configuration of the split.","The direction of the split.","The right/bottom Configuration of the split.","The ratio of the split in [0.0, 1.0].","The picked Pane.","The picked Pane.","The picked Pane.","The Target where the picked Pane was dropped on.","The left/top Node of the split.","The direction of the split.","The right/bottom Node of the split.","The Split of this Node.","The ratio of the split in [0.0, 1.0].","The current action of a PaneGrid.","A Pane in the PaneGrid is being clicked.","A Pane in the PaneGrid is being dragged.","The PaneGrid is idle.","The internal state of a PaneGrid.","A Split in the PaneGrid is being dragged.","The state of a PaneGrid.","","","","","","","","","","","","","","","Returns the current Pane that is being clicked, if any.","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Initializes the Internal state of a PaneGrid from a …","","","","","The internal state of the PaneGrid.","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","The layout Node of the Internal state","The panes of the PaneGrid.","Returns the current Pane that is being dragged, if any.","Returns the current Split that is being dragged, if any.","","","","","","","","","","","","","","","","","The Axis of the Split.","The starting Point of the click interaction.","The starting Point of the drag interaction.","The Pane being clicked.","The Pane being dragged.","The Split being dragged.","The appearance of a container.","","","","","","","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","","","Produces the Appearance of a container.","","","","","","","","","","","","","The Background of the container.","The Border of the container.","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","The icon Color of the container.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Shadow of the container.","","The text Color of the container.","","","","","","","","","","","","","","","","","","","","","","","The appearance of a progress bar.","A bar that displays progress.","The supported style of the StyleSheet.","A set of rules that dictate the style of a progress bar.","","Produces the Appearance of the progress bar.","","","","","The Background of the progress bar.","The Background of the bar of the progress bar.","The border radius of the progress bar.","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","The appearance of a radio button.","A circular button representing a choice.","The supported style of the StyleSheet.","A set of rules that dictate the style of a radio button.","Produces the active Appearance of a radio button.","","","","","","The Background of the radio button.","The border Color of the radio button.","The border width of the radio button.","","","","","","","","The Color of the dot of the radio button.","","","Returns the argument unchanged.","","","Produces the hovered Appearance of a radio button.","","Calls U::from(self).","","","","","","","","The text Color of the radio button.","","","","","","","","","The appearance of a container.","","","","","","An element decorating some content.","","","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","","","","","Sets the content alignment for the horizontal axis of the …","Sets the content alignment for the vertical axis of the …","Produces the Appearance of a container.","","","","","","","","","","","","","","","","","The Background of the container.","The Border of the container.","","","","","","","","","Centers the contents in the horizontal axis of the …","Centers the contents in the vertical axis of the Container.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Sets the height of the Container.","The icon Color of the container.","Set to true to ignore parent container bounds when …","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the maximum height of the Container in pixels.","Sets the maximum width of the Container.","","","","","Sets the Padding of the Container.","","","The Shadow of the container.","","","Sets the style of the Container.","","The text Color of the container.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the width of the [self.].","","","","","","","Appearance of the segmented button.","Constructs a new item for the ModelBuilder.","A unique ID for an item in the Model.","A newly-inserted item which may have additional actions …","Horizontal SegmentedButton.","The iced identifier of a segmented button.","Appearance of an item in the segmented button.","Appearance of an item based on its status.","The model held by the application, containing the unique …","A builder for a Model.","Model<MultiSelect> permits multiple keys to be active at a …","Multi-select variant of an EntityMut.","A model for multi-select button selection.","Associates extra data with an external secondary map.","A conjoined group of items that function together as a …","Isolates variant-specific behaviors from SegmentedButton.","Describes a type that has selectable items.","Model<SingleSelect> Ensures that only one key may be …","Single-select variant of an EntityMut.","A model for single-select button selection.","Associates extra data with an external sparse secondary …","The supported style of the StyleSheet.","Defines the Appearance of a segmented button.","Vertical SegmentedButton.","Activate an item.","Activates the newly-inserted item.","Activates the newly-inserted item.","","","Activates the item in the model.","Activates the item at the given position, returning true …","The ID of the active item.","The IDs of the active items.","","","","Get an immutable reference to the data associated with the …","Get a mutable reference to the data associated with the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Consumes the builder and returns the model.","Creates a builder for initializing a model.","Alignment of button contents.","Desired height of a button.","Padding around a button.","Spacing between icon and text in button.","Removes all items from the model.","","","","","","","","","","","Defines that the close button should appear","Shows a close button for this item.","Shows or hides the item’s close button.","The icon used for the close button.","","","","","","","","","","","","","","Check if an item exists in the map.","Assigns extra data to the item.","Associates data with the item.","","Get an immutable reference to data associated with an item.","Get a mutable reference to data associated with an item.","Removes a specific data type from the item.","Associates data with the item.","Deactivate an item.","Deactivates the item in the model.","","","Deactivates the active item.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether to place dividers between buttons.","","","","","","","","","","","","","","Enable or disable an item.","Get the item that is located at a given position.","","","","","","","","","","A command that focuses a segmented item stored in a widget.","","Desired font for active tabs.","Desired font for hovered tabs.","Desired font for inactive tabs.","Size of the font.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","Desired height of the widget.","Horizontal implementation of the SegmentedButton.","The horizontal Appearance of the segmented button.","","Defines an icon for the item.","Define an icon for the item.","Immutable reference to the icon associated with the item.","Removes the icon from an item.","Sets a new icon for an item.","Returns the ID of the item that was inserted.","iced widget ID","","","","","","Spacing for each indent.","","","","","","","","","","","","","Inserts a new item and its associated data into the model.","Inserts a new item in the model.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Checks if the item is active.","","Check if the given ID is the active ID.","","Whether the item should contain a close button.","Check if the item is enabled.","Iterates across items in the model in the order that they …","","","LineHeight of the font.","Maximum width of a button.","","Minimum width of a button.","","","Creates a custom Id.","Emitted when a tab is pressed.","Emitted when a tab close button is pressed.","","","","Padding of the whole widget.","","Define the position of the newly-inserted item.","Define the position of the item.","The position of the item in the model.","Change the position of an item in the model.","Swap the position with another item in the model.","Swap the position with another item in the model.","Swap the position of two items in the model.","Removes an item from the model.","Scrolling switches focus between tabs.","Associates extra data with an external secondary map.","Associates extra data with an external secondary map.","Associates extra data with an external sparse secondary …","Associates extra data with an external sparse secondary …","Show the close icon only when item is hovered.","","Desired spacing between items.","","Style to draw the widget in.","","Defines the text for the item.","Defines the text for the item.","Immutable reference to the text assigned to the item.","","Removes text from an item.","Sets new text for an item.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a unique Id.","Get the appearance for this variant of the widget.","","","Calculates the bounds for visible buttons.","","","Calculates the layout of this variant.","","","Vertical implementation of the SegmentedButton.","The vertical Appearance of the segmented button.","Desired width of the widget.","Calls a function with the ID","Calls a function with the ID without consuming the wrapper.","A selection of multiple choices appearing as a conjoined …","A selection of multiple choices appearing as a conjoined …","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","A column with a predefined style for creating a settings …","A section within a settings view column.","A builder for a settings item.","","","","","","","","Creates a builder for an item, beginning with the title.","","Assigns a control to the item.","","","A description to display beneath the title.","","Returns the argument unchanged.","","","A custom icon to display before the text.","","Calls U::from(self).","","","","","","","A settings item aligned in a row","A settings item aligned in a row","Describes the item being controlled.","","","","","","","","","The appearance of a slider.","A circular handle.","Linear gradient for the background of the rail includes an …","The appearance of the handle of a slider.","The shape of the handle of a slider.","Start and end colors of the rail","The appearance of a slider rail","The background color of the rail","A rectangular shape.","An horizontal bar and a handle that selects a single value …","The local state of a Slider.","The supported style of the StyleSheet.","A set of rules that dictate the style of a slider.","Produces the style of an active slider.","","","","","","","","","","","","","","","","The border Color of the handle.","The border radius of the corners of the rail.","The border width of the handle.","","","","","","","The appearance of breakpoints.","","","","","","","The Color of the handle.","The colors of the rail of the slider.","","","","","","","","","","","Produces the style of a slider that is being dragged.","Draws a Slider.","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","The appearance of the Handle of the slider.","Produces the style of an hovered slider.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Computes the current mouse::Interaction of a Slider.","Creates a new State.","The colors of the rail of the slider.","The shape of the handle.","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a Slider …","The width of the stroke of a slider rail.","The border radius of the corners of the rectangle.","The radius of the circle.","The width of the rectangle.","Let the widget determin the angle of the gradient","the linear gradient of the slider","An amount of empty space.","","","A message emitted by the SpinButton widget.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Sets the max field of this struct.","The maximum value permitted.","Sets the min field of this struct.","The minimum value permitted.","","","Sets the step field of this struct.","The amount to increment the value.","","","","","","","","","","","","","","","","","","","","","","","","Sets the value field of this struct.","The current value of the spin button.","The appearance of an SVG.","A handle of Svg data.","The supported style of the StyleSheet.","The stylesheet of a svg.","A vector graphics image.","","","Produces the Appearance of the svg.","","","","","","","","","","","","","","","","","The Color filter of an SVG.","","","Returns a reference to the SVG Data.","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Creates an SVG Handle from raw bytes containing either an …","Creates an SVG Handle pointing to the vector image of the …","","","","Produces the hovered Appearance of a svg content.","Returns the unique identifier of the Handle.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A collection of tabs for developing a tabbed interface.","A collection of tabs for developing a tabbed interface.","","","","","","A paragraph.","","","","","Available presets for text typography","","","","","","Text widget with the Body typography preset.","","","Text widget with the Caption typography preset.","Text widget with the Caption Heading typography preset.","","","","","","","","","","","Returns the argument unchanged.","","","","Text widget with the Heading typography preset.","","Calls U::from(self).","","","","","","","","Text widget with the Monotext typography preset.","Creates a new Text widget with the provided content.","Text widget with the Title 1 typography preset.","Text widget with the Title 2 typography preset.","Text widget with the Title 3 typography preset.","Text widget with the Title 4 typography preset.","","","","","","","","","The appearance of a text input.","","","The state of a TextInput.","","The supported style of the StyleSheet.","A set of rules that dictate the style of a text input.","A field that can be filled with text.","A string which can be sent to the clipboard or …","","Produces the style of an active text input.","","","","","","","","","","","","","","","","","","","","","The Background of the text input.","The border Color of the text input.","The border offset","The border radius of the text input.","The border width of the text input.","","","","","","","","","","","","","","","","","","","","Track the cursor of a text input.","Returns the Cursor of the TextInput.","","","","","","","","","","","","Produces the style of a disabled text input.","Sets the mode of this TextInput to be a drag and drop icon.","Draws the TextInput with the given Renderer, overriding its","Draws the TextInput with the given Renderer, overriding its","","","","","","","Produces the style of an errored text input.","Sets the error message of the TextInput.","","","","Produces a Command that focuses the TextInput with the …","Focuses the TextInput.","","Produces the style of a focused text input.","Creates a new State, representing a focused TextInput.","Sets the Font of the TextInput.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Sets the helper text of the TextInput.","","Produces the style of an hovered text input.","Produces the style of an hovered text input.","The Color of symbolic icons.","Sets the Id of the TextInput.","","","","","Creates a new inline TextInput.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the TextInput is currently focused or not.","","","Sets the text of the TextInput.","","The label Color of the text input.","Computes the layout of a TextInput.","","Sets the start [Icon] of the TextInput.","Sets the [LineHeight] of the TextInput.","Computes the current mouse::Interaction of the TextInput.","","Produces a Command that moves the cursor of the TextInput …","","Moves the Cursor of the TextInput to an arbitrary location.","Produces a Command that moves the cursor of the TextInput …","","Moves the Cursor of the TextInput to the end of the input …","Produces a Command that moves the cursor of the TextInput …","","Moves the Cursor of the TextInput to the front of the …","Creates a new TextInput.","Creates a new State, representing an unfocused TextInput.","","","Sets the message that should be produced when some text is …","Sets the message that should be produced when some text is …","Sets the message that should be produced when the TextInput…","Maybe sets the message that should be produced when the …","","","Sets the Padding of the TextInput.","Converts the TextInput into a secure password input.","","The placeholder text Color.","Creates a new search TextInput.","Creates a new search TextInput.","Produces a Command that selects all the content of the …","Selects all the content of the TextInput.","","The selected fill Color of the text input.","Returns the current value of the selected text in the …","The text Color of the text input.","Sets the text size of the TextInput.","","","Sets the style of the TextInput.","Sets the window id of the TextInput and the window id of …","","The text Color of the text input.","Creates a new TextInput.","","","","Sets the end [Icon] of the TextInput.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Unfocuses the TextInput.","","Processes an Event and updates the State of a TextInput …","","","Sets the width of the TextInput.","The cursor of a text input.","Cursor without a selection","Cursor selecting a range of text","The state of a Cursor.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns the current selection of the Cursor for the given …","Returns the State of the Cursor.","","","","","","","","","","","","","","","","","The end of the selection","The start of the selection","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","The value of a TextInput.","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Inserts a new char at the given grapheme index.","Inserts a bunch of graphemes at the given grapheme index.","Calls U::from(self).","","","","","","","","Returns whether the Value is empty or not.","Returns the total amount of graphemes in the Value.","Creates a new Value from a string slice.","Returns the position of the next end of a word from the …","Returns the position of the previous start of a word from …","Removes the grapheme at the given index.","Removes the graphemes from start to end.","Returns a new Value with all its graphemes replaced with …","Returns a new Value containing the graphemes from start …","","","","","","","","","","Returns a new Value containing the graphemes until the …","The tooltip will appear on the bottom of the widget.","The tooltip will follow the cursor.","The tooltip will appear on the left of the widget.","The position of the tooltip. Defaults to following the …","The tooltip will appear on the right of the widget.","","The tooltip will appear on the top of the widget.","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","The appearance of a slider.","A circular handle.","The appearance of the handle of a slider.","The shape of the handle of a slider.","A rectangular shape.","The local state of a VerticalSlider.","The supported style of the StyleSheet.","A set of rules that dictate the style of a slider.","An vertical bar and a handle that selects a single value …","Produces the style of an active slider.","","","","","","","","","","","","","","","","","","","","","The border Color of the handle.","The border width of the handle.","","","","","","","","","The appearance of breakpoints.","","","","","","","","","The Color of the handle.","","","","","","","","","","","","","","Produces the style of a slider that is being dragged.","Draws a VerticalSlider.","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","The appearance of the Handle of the slider.","Produces the style of an hovered slider.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the current mouse::Interaction of a VerticalSlider…","Creates a new State.","The colors of the rail of the slider.","The shape of the handle.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a …","The border radius of the corners of the rectangle.","The radius of the circle.","The width of the rectangle.","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","A custom button that has the desired default spacing and …","The message to emit on button press.","","","","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,241,1,1,5,0,7,7,7,1,1,1,1,1,1,1,0,1,0,0,0,12,1,1,1,0,1,0,1,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1,0,0,1,1,1,1,1,1,1,0,1,68,64,64,0,0,56,0,0,0,0,68,68,0,68,64,0,56,56,63,64,56,63,64,63,64,63,64,63,64,63,64,63,64,63,64,63,64,0,63,64,68,68,68,0,63,63,63,64,63,64,68,70,63,64,64,63,63,64,63,64,63,64,68,68,68,68,63,64,63,64,63,64,63,64,63,64,63,64,63,64,63,64,63,64,63,63,68,70,0,70,68,63,63,63,63,68,68,68,68,68,68,68,68,0,63,70,63,70,63,63,70,0,68,68,63,63,63,68,68,70,63,64,63,64,63,64,63,64,63,64,63,64,63,64,63,64,68,68,70,68,63,63,63,377,377,378,0,0,0,0,0,0,0,0,0,0,0,0,0,89,89,89,89,0,89,89,89,89,0,89,89,89,89,89,89,89,89,89,89,89,89,89,89,90,90,89,90,89,90,89,90,89,90,89,90,89,90,89,89,90,89,90,90,89,90,89,90,89,90,89,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,90,90,90,90,90,90,90,89,89,90,89,90,89,90,89,90,89,90,89,90,89,90,90,90,71,71,0,71,71,0,71,71,71,71,71,71,71,71,71,0,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,0,71,71,71,71,71,71,71,71,0,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,0,0,0,0,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,0,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,0,92,0,0,0,0,0,0,0,0,0,0,0,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,0,92,92,92,92,92,92,92,92,92,92,92,92,0,0,104,104,104,104,0,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,0,104,104,104,104,104,104,104,104,0,0,0,0,0,0,0,0,0,0,5,105,7,7,7,106,107,105,105,105,105,105,0,0,0,0,0,0,0,120,120,120,120,120,120,0,0,0,131,131,0,82,82,82,82,82,82,82,82,82,82,82,131,0,133,134,135,136,137,120,82,379,82,82,82,82,82,82,82,82,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,131,380,380,133,134,135,136,137,120,82,133,134,135,136,137,120,82,131,120,82,120,82,379,133,134,135,136,137,120,82,131,82,82,82,82,82,120,82,82,133,133,134,134,135,135,136,136,137,137,120,82,133,134,135,136,137,120,82,131,131,82,82,82,82,82,380,380,82,82,380,82,133,134,135,136,137,120,82,82,120,82,82,120,82,380,82,82,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,131,82,380,82,82,82,82,82,82,82,82,82,82,82,82,82,131,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,0,120,131,131,0,120,131,82,82,82,131,131,380,380,131,82,82,82,82,380,131,131,380,380,82,82,82,82,82,131,131,0,0,131,131,82,0,0,0,131,82,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,133,134,135,136,137,120,82,82,82,82,131,131,131,145,145,0,0,0,0,146,145,146,147,147,145,147,145,145,145,145,147,145,145,145,0,0,147,0,145,145,0,146,0,145,0,145,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,0,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,0,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,145,146,147,381,381,381,381,382,382,382,382,382,151,0,154,0,157,154,0,151,0,154,153,157,154,158,155,156,150,151,159,148,155,157,153,156,150,151,152,159,157,154,154,154,156,156,157,157,154,149,149,157,157,148,154,155,0,0,0,152,157,148,154,0,158,148,155,0,0,157,0,0,154,157,154,154,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,154,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,148,149,150,151,152,148,149,150,151,152,153,157,148,154,158,155,156,149,150,151,152,159,153,154,155,156,150,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,148,148,148,148,153,157,148,154,158,155,156,149,150,151,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,148,149,151,152,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,154,154,148,149,150,151,152,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,153,157,148,154,158,155,156,149,150,151,152,159,383,383,384,384,384,0,162,162,0,161,0,125,162,161,125,162,125,162,125,162,125,162,125,125,125,125,125,125,162,125,162,125,125,125,162,162,125,162,125,162,125,162,125,125,162,162,125,162,125,162,125,162,125,162,125,162,125,162,125,125,162,125,162,125,162,125,162,125,125,125,125,162,125,162,125,162,125,162,125,162,125,162,125,162,0,0,0,0,0,0,0,0,0,203,170,205,205,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,163,163,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,0,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,170,24,0,0,0,0,0,24,163,163,0,0,180,182,163,187,188,190,193,193,0,0,0,0,0,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,0,0,53,197,168,0,0,53,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,0,0,180,163,187,188,190,0,187,180,176,182,163,188,203,205,170,208,209,190,197,211,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,0,0,24,193,193,193,168,53,0,0,211,193,168,53,24,176,182,205,180,176,182,163,188,203,205,170,208,209,190,197,211,193,193,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,197,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,0,0,193,0,163,188,203,170,208,197,168,0,0,0,176,182,176,163,187,170,209,190,197,168,0,0,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,203,205,197,211,193,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,24,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,0,0,187,180,176,182,163,188,203,205,170,208,209,190,197,211,168,0,182,0,163,163,0,0,180,176,182,163,187,188,205,170,208,209,190,0,0,0,0,180,176,182,163,188,203,205,170,208,209,190,197,211,193,168,188,182,24,180,188,24,180,176,182,163,187,188,205,170,208,209,190,182,24,180,180,24,182,180,180,170,208,188,24,180,180,180,163,187,188,209,190,180,182,163,187,188,209,190,182,163,0,0,0,0,0,0,0,0,0,193,0,0,0,0,53,0,0,176,187,170,209,190,197,168,0,187,180,176,176,182,182,163,188,203,205,205,170,208,209,190,197,211,168,187,190,0,0,0,176,188,205,0,0,24,180,176,182,163,187,188,205,170,208,209,190,170,208,176,182,163,188,203,205,170,208,197,0,0,197,0,180,176,182,163,187,188,205,170,208,209,190,0,0,0,53,182,176,205,176,205,176,205,24,193,193,0,0,0,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,180,176,182,163,188,203,205,170,208,209,190,197,211,193,24,168,193,0,0,0,0,176,182,163,188,203,205,170,208,197,168,211,211,0,0,165,0,251,251,251,165,251,251,251,251,0,126,126,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,126,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,126,251,251,126,251,251,251,251,251,251,251,251,0,0,0,0,0,0,0,252,0,0,252,253,111,255,253,111,255,253,111,255,253,111,255,253,111,255,111,111,111,111,253,111,255,253,111,255,0,253,111,111,253,111,255,0,111,253,111,255,253,111,255,0,253,252,0,253,253,111,255,252,252,43,255,43,255,111,0,255,255,253,111,255,253,111,255,253,111,255,253,255,252,0,111,255,253,253,255,0,253,111,255,253,111,255,253,111,255,253,111,255,111,253,111,255,253,111,255,253,111,255,253,111,255,255,43,255,0,253,30,255,255,0,0,43,255,0,253,43,21,30,253,111,255,255,255,255,253,253,253,255,253,255,21,255,21,255,253,111,111,253,253,255,252,43,21,253,255,255,252,253,111,253,255,0,253,253,255,0,253,0,111,111,255,30,255,255,253,111,255,253,111,255,253,111,255,253,111,255,253,111,255,253,111,255,253,111,255,43,255,253,255,0,0,260,260,260,260,260,260,260,260,260,260,260,260,260,260,0,260,260,260,260,260,260,260,260,260,0,27,27,260,260,260,260,260,260,260,0,19,19,19,19,19,19,19,0,19,19,19,19,19,19,19,0,19,19,19,19,19,19,19,19,0,0,0,19,19,19,19,19,19,19,0,0,0,132,132,132,132,132,132,132,132,132,132,132,132,264,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,0,0,0,177,0,177,110,222,110,222,110,222,110,222,110,222,110,110,110,222,110,222,110,222,110,222,222,110,222,110,222,110,222,110,222,222,110,222,222,110,222,110,222,110,222,177,110,110,222,110,222,110,222,110,222,110,222,110,222,110,222,110,222,110,222,222,222,222,110,110,222,110,222,110,222,110,222,110,222,110,222,110,222,110,222,268,268,268,268,268,0,0,0,0,268,0,268,268,0,268,265,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,266,265,266,267,268,266,268,266,0,267,270,268,265,266,269,269,267,270,270,268,265,266,269,267,270,268,265,266,269,267,267,267,270,268,265,266,269,268,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,265,265,265,266,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,270,268,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,265,267,265,267,267,265,266,266,267,267,267,268,266,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,267,270,268,265,266,269,265,265,266,0,272,0,272,0,0,0,0,194,194,194,194,194,194,194,0,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,0,194,194,194,194,194,194,194,194,194,0,0,165,0,126,165,126,126,126,126,126,126,126,126,126,126,126,126,126,126,0,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,0,126,126,126,126,126,126,126,126,126,126,0,126,126,0,29,29,29,29,29,29,29,29,29,0,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,0,26,26,26,26,26,26,26,26,26,26,26,26,0,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,0,0,0,0,0,0,0,0,0,39,39,0,0,0,274,0,274,114,39,275,114,39,275,114,39,275,114,39,275,114,39,275,114,114,114,39,275,114,39,275,114,114,114,39,275,275,114,39,275,114,39,275,39,0,39,114,39,275,0,114,275,39,114,39,275,114,39,275,114,39,275,39,114,274,114,39,275,114,39,275,114,39,275,114,39,275,114,114,39,275,114,39,275,114,39,275,114,39,275,0,39,0,0,39,0,39,275,39,0,39,39,114,39,39,39,114,39,39,114,114,39,275,114,39,275,114,39,275,114,39,275,114,39,275,114,39,275,114,39,275,0,39,0,0,0,276,0,278,122,277,276,278,122,277,278,122,277,278,122,277,278,122,277,122,122,122,122,278,122,277,278,122,277,122,122,278,122,277,277,278,122,277,278,122,277,122,278,122,277,122,277,278,122,277,278,122,277,278,122,277,122,122,278,122,277,278,122,277,278,122,277,278,122,277,122,278,122,277,278,122,277,278,122,277,278,122,277,278,277,278,278,122,122,122,278,278,122,278,122,277,278,122,277,278,122,277,278,122,277,278,122,277,278,122,277,278,122,277,278,0,35,35,0,0,0,0,274,0,274,280,281,35,280,281,35,280,281,35,280,281,35,280,281,35,114,114,280,281,35,280,281,35,280,280,281,35,280,281,35,280,281,35,281,35,280,281,35,0,35,280,281,35,280,281,35,280,281,35,35,114,274,280,281,35,280,280,281,35,280,281,35,280,281,35,280,281,280,281,35,280,281,35,280,281,35,280,281,35,35,0,280,0,0,35,35,35,281,35,35,114,280,35,35,35,114,35,35,280,281,35,280,281,35,280,281,35,280,281,35,280,281,35,280,281,35,280,281,35,35,0,0,0,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,0,0,33,283,33,283,33,283,33,283,33,283,33,283,33,283,33,283,283,283,33,33,33,283,33,283,33,283,33,33,33,283,283,33,283,283,283,33,283,33,283,33,283,33,283,33,33,283,33,283,33,283,283,33,283,33,283,33,283,33,283,33,33,33,33,283,33,33,33,33,33,33,283,33,33,33,283,33,283,33,283,33,283,33,283,33,283,33,283,33,283,33,283,0,285,0,0,0,286,286,0,285,286,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,31,258,285,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,40,40,285,40,258,286,285,40,258,258,286,31,31,285,40,258,286,31,0,0,0,0,285,40,258,286,31,0,40,285,40,258,286,31,0,40,258,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,31,40,40,40,40,40,40,40,40,31,40,31,40,258,40,258,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,285,40,258,286,31,31,0,0,0,214,214,0,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,259,214,259,214,288,259,214,259,214,288,259,214,288,0,288,259,214,288,259,214,259,259,214,214,259,214,259,259,214,288,259,214,288,259,259,259,259,214,288,259,214,288,259,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,0,288,288,288,288,288,288,288,288,288,288,288,259,214,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,259,214,288,0,0,288,0,0,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,0,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,0,0,165,0,290,290,290,165,290,290,290,290,126,126,290,290,290,290,290,290,290,290,290,290,290,290,290,290,290,126,290,290,290,290,290,290,290,290,290,0,290,290,290,290,290,290,290,290,126,290,290,290,290,126,290,290,290,290,290,290,290,290,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,22,22,22,22,22,22,22,22,22,22,0,0,294,295,0,0,295,0,0,295,0,293,294,0,293,294,0,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,292,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,0,292,0,0,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,292,293,294,295,0,296,296,298,298,0,0,298,298,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,298,299,299,298,299,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,299,299,299,298,299,298,299,299,299,298,299,298,299,298,299,298,299,298,299,298,299,298,299,0,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,307,307,307,307,0,0,305,307,305,307,305,307,305,307,305,307,305,307,305,307,305,307,305,307,305,307,305,307,305,305,307,305,307,305,307,305,305,307,305,307,305,307,305,307,307,305,307,305,307,305,307,305,307,0,0,305,305,307,305,307,305,307,305,307,305,307,305,307,305,307,305,305,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,32,32,32,32,32,32,32,32,320,0,0,318,233,317,0,0,0,0,309,0,0,233,0,316,317,312,309,318,0,320,0,0,313,314,316,0,233,0,0,309,318,0,313,314,0,189,0,0,0,318,309,312,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,227,310,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,141,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,311,229,141,142,312,313,309,314,228,315,227,233,316,317,318,238,141,142,312,313,309,314,228,315,227,233,316,317,318,238,227,228,315,142,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,310,317,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,0,229,310,141,142,229,310,312,313,309,314,228,315,227,227,233,316,317,318,238,320,142,312,309,228,315,312,312,309,309,228,228,315,315,141,142,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,227,227,312,314,228,315,189,189,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,227,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,227,310,227,320,227,0,227,320,227,227,227,0,227,229,310,227,310,314,227,228,315,189,238,227,227,312,227,238,312,314,227,314,0,229,310,227,229,141,142,312,313,309,314,228,315,227,233,316,317,318,238,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,141,142,229,310,312,313,309,314,228,315,227,233,316,317,318,238,320,0,142,227,385,385,385,385,386,387,388,387,389,389,389,389,389,0,319,319,319,0,319,0,322,319,322,319,322,319,322,319,322,319,322,319,322,319,319,322,319,322,319,322,319,322,319,322,319,322,319,319,322,319,322,319,322,319,322,322,319,322,319,227,322,319,322,319,322,319,322,319,322,319,322,319,322,319,322,319,322,227,319,319,322,319,322,319,322,319,322,319,322,319,322,319,322,319,322,319,390,391,392,391,392,390,0,324,324,0,324,0,0,165,0,323,325,324,165,323,325,324,323,325,324,323,325,324,323,325,324,126,126,323,325,324,323,325,324,323,324,324,323,325,324,324,323,325,324,323,325,324,323,323,325,323,325,324,324,323,325,324,323,325,324,323,325,324,126,323,325,324,323,325,324,323,325,324,323,325,324,324,323,325,324,323,325,324,323,325,324,323,325,324,323,325,323,325,323,323,325,323,325,323,0,323,323,126,323,126,324,323,325,324,323,325,324,323,325,324,323,325,324,323,325,324,323,325,324,323,325,324,0,0,204,0,128,204,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,0,0,206,0,206,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,206,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,0,393,327,393,327,0,0,0,0,165,0,393,393,326,327,328,326,326,165,393,326,327,328,393,326,327,328,393,326,327,328,393,326,327,328,126,126,393,326,327,328,393,326,327,328,326,326,326,327,328,327,328,393,326,327,328,328,393,326,327,328,393,326,327,328,326,326,326,393,326,327,328,327,328,393,326,327,328,393,326,327,328,393,326,327,328,326,126,326,393,326,327,328,393,326,327,328,393,326,327,328,393,326,327,328,393,327,328,393,326,327,328,393,326,327,328,393,326,327,328,393,326,327,328,326,326,326,326,326,326,326,326,0,0,126,326,326,326,0,126,327,328,393,326,327,328,393,326,327,328,393,326,327,328,393,326,327,328,393,326,327,328,393,326,327,328,393,326,327,328,326,0,330,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,331,332,333,335,335,335,335,335,335,336,334,140,335,335,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,140,339,140,338,140,338,140,338,140,338,140,338,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,337,335,41,41,41,41,335,297,140,338,339,218,297,140,338,339,218,332,333,335,41,297,332,333,337,336,334,297,335,140,338,339,41,218,335,332,333,297,335,335,335,335,331,335,335,335,335,337,336,334,297,335,140,338,339,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,41,41,41,332,333,337,336,334,297,335,140,338,339,41,218,335,335,297,218,297,297,339,336,334,297,218,0,140,41,41,41,41,332,333,337,336,334,297,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,297,41,0,341,140,332,333,335,335,335,333,41,140,333,335,335,335,41,332,333,337,336,334,297,335,140,338,339,41,218,337,335,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,336,334,297,140,338,339,218,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,331,335,335,335,335,335,335,339,41,41,41,339,41,41,41,218,41,41,41,41,41,41,297,332,333,335,335,332,333,335,335,41,332,333,332,333,41,41,41,41,41,41,332,333,335,339,335,335,297,140,338,339,218,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,332,333,337,336,334,297,335,140,338,339,41,218,218,344,41,41,344,41,41,344,41,41,0,341,41,332,333,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,23,23,23,23,23,23,23,0,0,0,347,347,347,347,347,347,347,0,347,347,347,347,347,347,347,347,347,347,347,347,347,347,347,347,347,347,0,0,347,347,347,347,347,347,347,347,347,0,375,349,0,0,349,0,0,375,0,0,175,0,175,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,374,348,374,348,349,350,348,349,350,118,348,349,350,348,349,350,374,348,348,349,350,350,348,349,350,348,349,350,175,0,348,349,350,350,350,350,348,349,350,348,349,350,348,349,350,348,349,350,118,175,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,0,350,118,374,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,348,349,350,0,348,394,395,394,396,396,0,351,351,0,0,0,28,351,352,28,351,352,28,351,352,28,351,352,28,351,352,28,351,352,28,351,352,351,351,28,351,352,352,352,352,352,352,352,352,352,352,352,28,351,352,28,351,352,28,351,352,351,28,351,352,28,351,352,28,351,352,351,28,351,352,28,351,352,28,351,352,28,351,352,351,352,28,351,352,28,351,352,28,351,352,28,28,351,352,352,352,352,352,28,0,352,352,351,28,351,352,28,351,352,28,351,352,28,351,352,28,351,352,28,351,352,28,351,352,352,352,352,0,0,199,0,0,123,232,199,123,232,123,232,123,232,123,232,123,232,123,232,123,232,123,232,123,123,232,232,123,123,232,123,232,123,232,232,232,232,123,232,123,232,123,232,232,232,123,232,232,199,232,123,232,123,232,123,232,123,232,123,232,123,232,123,232,123,232,123,232,123,232,123,232,123,232,123,232,123,232,123,232,123,232,123,232,0,0,362,362,362,362,362,0,362,362,362,362,0,362,362,362,362,362,0,362,362,0,0,362,362,362,362,362,362,362,362,362,362,362,362,362,362,0,362,362,362,362,362,362,362,362,362,0,0,0,0,0,0,362,362,362,362,362,362,362,362,0,0,0,0,0,363,0,0,0,0,363,364,365,366,116,364,365,366,116,364,365,366,116,364,365,366,116,364,365,366,116,116,116,116,116,116,364,365,366,116,364,365,366,116,364,365,366,116,365,366,116,364,365,366,116,0,366,366,364,365,366,116,364,365,366,116,364,366,363,364,0,364,364,364,365,366,116,0,363,364,365,366,116,0,366,366,363,366,364,364,365,366,116,364,365,366,116,364,365,366,116,364,366,363,363,116,364,364,365,366,116,0,364,365,366,116,364,365,366,116,364,365,366,116,365,366,116,364,365,366,116,364,365,366,116,364,365,366,116,364,365,366,116,366,366,366,364,366,116,0,364,364,364,0,364,0,366,366,0,366,366,0,366,366,364,366,364,364,364,364,364,364,364,364,364,364,366,116,0,0,0,366,366,116,366,116,364,364,364,364,364,364,116,0,365,366,116,364,364,365,366,116,364,365,366,116,364,365,366,116,364,365,366,116,364,365,366,116,364,365,366,116,364,365,366,116,366,366,0,0,366,364,0,369,369,0,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,367,367,369,367,369,367,369,367,369,367,369,367,369,367,369,367,369,397,397,0,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,0,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,368,372,372,372,0,372,0,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,0,372,372,372,372,372,372,372,0,375,0,0,375,0,175,0,0,175,118,374,375,376,118,374,375,376,118,374,375,376,118,374,375,376,118,374,375,376,374,374,118,374,375,376,118,374,375,376,118,118,374,375,376,118,374,375,376,374,118,374,375,376,376,118,374,375,376,118,374,375,376,175,0,118,374,375,376,376,376,376,118,374,375,376,118,374,375,376,118,374,375,376,118,374,375,376,118,175,118,374,375,376,118,374,375,376,118,374,375,376,118,374,375,376,118,374,375,376,118,374,375,376,118,374,375,376,118,374,375,376,118,374,375,376,0,376,118,374,118,374,375,376,118,374,375,376,118,374,375,376,118,374,375,376,118,374,375,376,118,374,375,376,118,374,375,376,118,374,375,376,0,394,395,394,0,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,0,0],"f":[0,0,0,0,0,0,0,0,0,0,[[[1,[-1]]],[[3,[[2,[-1]]]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[5,-1],5,[[6,[5]]]],0,[[7,-2],-1,[],[[6,[7],[[8,[-1]]]]]],[[7,-2],-1,[],[[6,[7],[[8,[-1]]]]]],[[7,-2],-1,[],[[6,[7],[[8,[-1]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-2,[[1,[-1]]],[],[[11,[],[[10,[[1,[-1]]]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],0,0,0,[[[12,[-1]],13],[[12,[-1]]],[]],[14,-1,[]],[14,-1,[]],[14,15],0,[[[1,[-1]],16],[[18,[15,17]]],[]],0,[-1,-1,[]],[[[19,[-1]]],[[12,[-1]]],20],[[[21,[-1]]],[[12,[-1]]],20],[[[22,[-1]]],[[12,[-1]]],[]],[[[23,[-1]]],[[12,[-1]]],[]],[[[24,[-1]]],[[12,[-1]]],20],[[[25,[-1]]],[[12,[-1]]],20],[[[26,[-1]]],[[12,[-1]]],20],[[[27,[-1]]],[[12,[-1]]],20],[[[28,[-1]]],[[12,[-1]]],[]],[[[29,[-1]]],[[12,[-1]]],20],[[[30,[-1]]],[[12,[-1]]],20],[31,[[12,[-1]]],[]],[[[32,[-1]]],[[12,[-1]]],20],[[[33,[-1]]],[[12,[-1]]],20],[[[34,[-1]]],[[12,[-1]]],20],[[[35,[-1,-2,-3]]],[[12,[-2]]],[[37,[36]]],[],[20,38]],[[[39,[-1,-2]]],[[12,[-2]]],[[37,[36]]],[]],[40,[[12,[-1]]],[]],[[[41,[-1,-2,-3]]],[[12,[-3]]],[],42,20],[[[43,[-1]]],[[12,[-1]]],20],[-1,-1,[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[1,[-1]],-3],[[1,[-2]]],[],[],[[46,[-1],[[8,[-2]]]],47,48,20]],0,[[],[[1,[-1]]],[]],[[-2,-4],[[1,[-3]]],[],[[49,[],[[8,[-1]]]],47],[],[[6,[-1],[[8,[-3]]]],47]],0,[[-2,-4],[[1,[-3]]],[],[[50,[],[[10,[-1]]]],47],[],[[46,[-1],[[8,[-3]]]],47]],[[[2,[-1]]],[[1,[-1]]],[]],0,0,[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-2,[[1,[-1]]],[],[[53,[-1]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[56,[],[[54,[-1]],[55,[-2]]]]],[[57,[-1]]],[58,59,20,60],[[62,[[3,[61]]]],59,20,60]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[56,[],[[54,[-1]],[55,[-2]]]]],[[3,[36]]],[58,59,20,60],[[62,[[3,[61]]]],59,20,60]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[63,63],[[[64,[-1,-2]]],[[64,[-1,-2]]],20,20],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[57,[[12,[-3]]]]],69,[],[20,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],63,69,[],[20,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],63,69,[],[20,59,60]],0,0,[[],63],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[57,[[12,[-3]]]]],69,[],[20,59,60]],[70,[[1,[[71,[-1]]]]],[]],[14,15],[14,15],[[[64,[-1,-2]],16],72,59,59],[63,[[57,[73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[3,[[12,[-3]]]]],69,[],[20,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[3,[[12,[-3]]]]],69,[],[20,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[3,[[12,[-3]]]]],69,[],[20,59,60]],[[63,-1],[[15,[[68,[],[[65,[-2]],[66,[-1]],[67,[-3]]]],[1,[[71,[-3]]]]]]],[],69,[20,59,60]],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[63,13],[63,13],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],73,69,[],[20,59,60]],[70,[[1,[[71,[-1]]]]],[]],0,[70,[[1,[[71,[-1]]]]],[]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[57,[[12,[[71,[-3]]]]]]],69,[],[20,59,60]],[63,13],[[63,13],15],[63,15],[63,15],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[57,[75]]],69,[],[20,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],15,69,[],[20,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]],73],[[57,[-3]]],69,[],[20,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[1,[[71,[-3]]]]],69,[],[20,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[1,[[71,[-3]]]]],69,[],[20,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]],76],[[1,[[71,[-3]]]]],69,[],[20,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[1,[[71,[-3]]]]],69,[],[20,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]],73,77,77],15,69,[],[20,59,60]],[78,79],[63,80],[[70,61],15],[[63,61],15],[[70,61],15],[[63,61],15],[[63,13],15],[[70,61],[[1,[[71,[-1]]]]],[]],0,[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],57,69,[],[20,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[81,[-3]]],69,[],[20,59,60]],[63,13],[63,82],[63,83],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]],[84,[36]],83],[[1,[[71,[-3]]]]],69,[],[20,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]],[84,[36]],85],[[1,[[71,[-3]]]]],69,[],[20,59,60]],[70,36],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]],-3],[[1,[[71,[-3]]]]],69,[],[20,59,60]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]]],[[12,[-3]]],69,[],[20,59,60]],[70,[[12,[[71,[-1]]]]],[]],[[[68,[],[[65,[-1]],[66,[-2]],[67,[-3]]]],73],[[12,[-3]]],69,[],[20,59,60]],[[63,36],[[81,[[86,[-1]]]]],[87,60,48,42,20,38]],[[63,36],[[81,[[86,[-1]]]]],[87,60,48,42,20,38]],0,0,0,0,0,[[[57,[73]]],[[1,[[71,[-1]]]]],60],[[[57,[73]],13],[[1,[[71,[-1]]]]],60],0,[[[71,[-1]]],[[88,[-1]]],60],[[[57,[73]]],[[1,[[71,[-1]]]]],60],[80,[[1,[[71,[-1]]]]],60],[82,[[1,[[71,[-1]]]]],60],[[[57,[73]],61],[[1,[[71,[-1]]]]],60],[[[57,[73]]],[[1,[[71,[-1]]]]],60],[[[57,[73]]],[[1,[[71,[-1]]]]],60],[-1,[[88,[-1]]],60],[89,[[88,[-1]]],60],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[89,89],[[-1,-2],15,[],[]],[[[90,[-1]]],[[1,[71]]],68],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[90,[-1]]],42],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[89,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[15,[[90,[-2]],[1,[-3]]]]],[],68,[]],[-1,[[90,[-1]]],68],[[[90,[-1]]],91,68],[[[90,[-1]]],[],68],[[[90,[-1]]],[[81,[-2]]],68,[]],[[[90,[-1]]],-2,68,[]],[[[90,[-1]]],61,68],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[90,[-1]],-2],[[1,[-2]]],68,[]],[[[90,[-1]]],[[12,[-2]]],68,[]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,[[71,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[71,[-1]]],[[71,[-1]]],20],[[-1,-2],15,[],[]],[-1,-2,[],[]],[89,[[71,[-1]]],[]],[14,-1,[]],[14,-1,[]],[14,15],[[[71,[-1]],16],72,59],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[71,[-1]]],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[78,13],78],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[78,13],78],[-1,-2,[],[]],[[78,13],78],[[],78],[[78,92],78],[[78,-1],78,[[62,[61]]]],[[78,80],78],[14,-1,[]],[14,-1,[]],[14,15],[[78,13],78],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[78,[57,[91]]],78],[[78,80],78],[[78,93],78],[[78,94],78],[[78,82],78],[[78,13],78],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-2,[[1,[-1]]],[],[[11,[],[[10,[[1,[-1]]]]]]]],[[[57,[73]]],[[1,[-1]]],[]],[-2,[[1,[-1]]],[],[[49,[],[[8,[-1]]]],60]],[[[57,[73]],13],[[1,[-1]]],[]],[-1,[[1,[-1]]],60],[[[57,[73]]],[[1,[-1]]],[]],[[[57,[73]],61],[[1,[-1]]],[]],[[[57,[73]]],[[1,[-1]]],[]],[[[57,[73]]],[[1,[-1]]],[]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[95,95],[[-1,-2],15,[],[]],[-1,-2,[],[]],[[],[[18,[96,97]]]],[[],95],[14,-1,[]],[14,-1,[]],[14,15],[[95,95],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[95,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[96,[[18,[95,[15,[[3,[97]],95]]]]]],0,[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[95,96,61],[[18,[13,97]]]],[[95,96,13],[[18,[13,97]]]],[[95,96,13],[[18,[13,97]]]],0,0,[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[95,96,[84,[-1]]],[[15,[[3,[97]],[3,[36]]]]],[[37,[36]]]],[[95,96],[[18,[15,97]]]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[98,-2],-1,[],[[6,[],[[8,[-1]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[18,[98,99]]]],[[98,-1],15,[[49,[],[[8,[15]]]],60]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[100,-2],-1,[],[[6,[],[[8,[-1]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[18,[100,99]]]],[[100,-1],15,[[49,[],[[8,[15]]]],60]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[92,92],[[-1,-2],15,[],[]],[-1,-2,[],[]],[[],92],[14,-1,[]],[14,-1,[]],[14,15],[[92,92],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],0,[[92,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[92,-1],15,101],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[1,[[18,[15,102]]]]]],0,0,[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[36,92],[[],61],[-1,15,[[62,[[103,[36]]]]]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[104,104],[[-1,-2],15,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[104,104],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[104,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[104,-1],15,101],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[81,[104]]]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[1,[-1]]],[]],0,0,0,0,0,0,0,0,0,[[5,-1],5,[[6,[5]]]],[[105,[3,[-2]]],105,[],[[62,[[12,[-1]]]]]],[[7,-2],-1,[],[[6,[7],[[8,[-1]]]]]],[[7,-2],-1,[],[[6,[7],[[8,[-1]]]]]],[[7,-2],-1,[],[[6,[7],[[8,[-1]]]]]],[[106,106,80],106],[[107,13],107],[[105,-3],105,[],[[62,[[12,[-1]]]]],[[108,[],[[10,[-2]]]]]],[[105,-3],105,[],[[62,[[12,[-1]]]]],[[108,[],[[10,[-2]]]]]],[[105,-2],105,[],[[62,[[12,[-1]]]]]],[[105,[57,[-2]]],105,[],[[62,[[12,[-1]]]]]],[[105,[57,[-2]]],105,[],[[62,[[12,[-1]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],82],[[82,-1,13],109,[]],[[82,-1,13],110,[]],[[82,13,13,-1],111,[]],[[82,-1],112,[]],[[82,-1],113,[]],[[82,15],114],[[82,-1],115,[]],[[82,-1],116,[]],[[82,-1],117,[]],[[82,-1],118,[]],[[82,-1,13],119,[]],0,[[],120],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],0,[[82,-1],121,[]],[[82,-1],122,[]],[[82,-1],123,[]],[[82,-1],124,[]],[[82,-1],125,[]],[[82,-1],126,[]],[[82,-1],127,[]],[[82,-1],128,[]],[[82,-1],129,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[120,120],[82,82],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[82,85],[82,130],[[[74,[131]]],82],[[],82],[[],82],[[],120],[82,132],[[],82],[14,-1,[]],[133,131],[14,-1,[]],[134,131],[135,131],[14,-1,[]],[14,-1,[]],[136,131],[137,138],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],0,0,[[82,-1],111,[]],[[82,-1],117,[]],[[82,-1],112,[]],[[82,-1],115,[]],[[82,-1],116,[]],0,0,[[82,-1],139,[]],[[82,-1],139,[]],0,[[82,-1],118,[]],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[[82,-1],111,[]],[[120,120],13],[[82,82],13],[[82,-1],116,[]],[[120,16],72],[[82,16],72],0,[[82,-1],116,[]],[[82,-1],112,[]],[[82,-1],115,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[82,-1],140,[]],0,[[82,-1,13],119,[]],[[82,-1,13],110,[]],[[82,13,13,-1],111,[]],[[82,-1],117,[]],[[82,-1],115,[]],[[82,15],114],[[82,-1],123,[]],[[82,-1,13],109,[]],[[82,-1,13],113,[]],[[82,-1],118,[]],[[82,-1],116,[]],[[82,-1],141,[]],[[82,-1],[[57,[142]]],[]],0,[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],13],[120,13],0,0,[[],13],[120,13],0,0,[[],82],[[],82],0,0,0,0,0,[[82,-1],[[57,[142]]],[]],[[82,-1],139,[]],[[82,-1],139,[]],[[82,13,13,-1],111,[]],0,0,0,0,0,[82,143],[[82,-1],139,[]],[[82,-1],139,[]],[[82,144],15],[[82,120],15],0,0,0,[13,[[81,[82]]]],0,0,[[[74,[131]]],82],[[],82],[[],82],[[],82],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[82,-1],139,[]],[[82,-1],139,[]],[[82,-1],140,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],145],[[],146],[[],147],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[85,126],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[148,148],[149,149],[150,150],[151,151],[152,152],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,153,[[46,[82],[[8,[121]]]]]],[-1,154,[[46,[82],[[8,[126]]]]]],[-1,155,[[46,[82],[[8,[128]]]]]],[-1,156,[[46,[82],[[8,[129]]]]]],[-1,150,[[46,[82],[[8,[123]]]]]],[[],153],[[],157],[[],148],[[],154],[[],158],[[],155],[[],156],[[],149],[[],150],[[],151],[[],152],[[],159],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[[148,148],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[148,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[139,151],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[85,126],[85,126],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[161,[],[[160,[-1]]]],-1],125,42],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[125,125],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],162],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[125,16],72],[-1,-1,[]],[-1,-1,[]],[[],162],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[163,[-1,-2,-3]],164],[[163,[-1,-2,-3]]],[],165,166],[[[163,[-1,-2,-3]],167],[[163,[-1,-2,-3]]],[],165,166],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,[[[168,[-1]],[169,[80]]],[[168,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[170,[-1,-2,-3]],[84,[-1]]],[[170,[-1,-2,-3]]],[171,[173,[172]],174],20,175],[[[24,[-1]]],[[0,[-1]]],20],0,0,0,0,0,[[[24,[-1]],-2],[[24,[-1]]],20,[[62,[[12,[-1]]]]]],[[[163,[-1,-2,-3]]],[[163,[-1,-2,-3]]],[],165,166],[[[163,[-1,-2,-3]]],[[163,[-1,-2,-3]]],[],165,166],0,[[-1,13,-3],[[176,[-2,-4,-5]]],[[62,[61]]],[],[[46,[13],[[8,[-2]]]]],[177,178],179],[[[180,[-1,-2,-3]]],[[3,[181]]],20,[],166],[[[182,[-1,-2,-3,-4]]],[[3,[181]]],[183,20],20,[165,184,185,186],179],[[[163,[-1,-2,-3]]],[[3,[181]]],[],165,166],[187,[[3,[181]]]],[[[188,[-1,-2,-3]]],[[3,[181]]],[],[189,165],166],[[[190,[-1,-2,-3,-4,-5]]],[[3,[181]]],[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[193,193],[[-1,-2],15,[],[]],0,0,0,0,[[[194,[-1]],36,[57,[-1]],-3],[[182,[-1,-2,-4,-5]]],[183,20],[],[[46,[-1],[[8,[-2]]]]],[184,186],179],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-4,[[163,[-1,-2,-3]]],[],165,166,[[62,[[192,[-1,-2,-3]]]]]],[[53,[57,[193]],195,196],15],[[[197,[-1]],198],[[197,[-1]]],199],[[[168,[-1]],198],[[168,[-1]]],[]],0,0,[[53,9,[57,[193]]],15],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],0,0,[[[180,[-1,-2,-3]],181],15,20,[],166],[[[163,[-1,-2,-3]],181],15,[],165,166],[[187,181],15],[[[188,[-1,-2,-3]],181],15,[],[189,165],166],[[[190,[-1,-2,-3,-4,-5]],181],15,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],0,[[187,181,-1,-2,200,201,202,195],15,166,[]],[[[180,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,20,[],166],[[[176,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,[],[177,178],179],[[[182,[-1,-2,-3,-4]],181,-4,-3,200,201,202,195],15,[183,20],20,[165,184,185,186],179],[[[163,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,[],165,166],[[[188,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,[],[189,165],166],[[[203,[-1]],181,-2,-1,200,201,202,195],15,204,166],[[[205,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,20,[206,178],179],[[[170,[-1,-2,-3]],181,-4,-3,200,201,202,195],15,[171,[62,[91]],207],20,175,166],[[[208,[-1,-2,-3]],181,-4,-3,200,201,202,195],15,[171,[62,[91]],207],20,175,166],[[[209,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,[],[],166],[[[190,[-1,-2,-3,-4,-5]],181,-3,-2,200,201,202,195],15,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[197,[-1]],181,-2,-1,200,201,202,195],15,199,210],[[211,181,-1,-2,200,201,202,195],15,166,[]],[[[168,[-1]],181,-2,-3,200,201,202,195],15,[20,191],[[213,[],[[212,[-1]]]]],[]],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],0,0,[[[24,[-1]],-2],[[24,[-1]]],20,[[62,[[12,[-1]]]]]],[[193,193],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[[168,[-1]],214],[[168,[-1]]],[]],[53,[[215,[-1]]],[]],0,0,[[211,16],[[18,[15,17]]]],[[193,16],[[18,[15,17]]]],[[[168,[-1]],16],[[18,[15,17]]],59],[[53,216,[57,[193]]],15],[[[24,[-1]],13],[[24,[-1]]],[]],[[[176,[-1,-2,-3]],-4],[[176,[-1,-2,-3]]],[],[177,178],179,62],[[[182,[-1,-2,-3,-4]]],[[182,[-1,-2,-3,-4]]],[183,20],[],[184,186],179],[[[205,[-1,-2,-3]],-4],[[205,[-1,-2,-3]]],20,206,179,62],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[217,193],[218,193],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,[[197,[-2]]],[[62,[219]]],199],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[193,-1],15,101],[[],[[24,[-1]]],[]],[[[163,[-1,-2,-3]],-4],[[163,[-1,-2,-3]]],[],165,166,[[62,[220]]]],[[[188,[-1,-2,-3]],-4],[[188,[-1,-2,-3]]],[],[189,165],166,[[62,[220]]]],[[[203,[-1]],-2],[[203,[-1]]],204,[[62,[220]]]],[[[170,[-1,-2,-3]],-4],[[170,[-1,-2,-3]]],[171,[173,[172]],174],20,175,[[62,[221]]]],[[[208,[-1,-2,-3]],-4],[[208,[-1,-2,-3]]],[171,[173,[172]],174],20,175,[[62,[220]]]],[[[197,[-1]],-2],[[197,[-1]]],199,[[62,[220]]]],[[[168,[-1]],-2],[[168,[-1]]],[],[[62,[220]]]],[-1,211,[[62,[220]]]],0,0,[[[176,[-1,-2,-3]],222],[[176,[-1,-2,-3]]],[],[177,178],179],[[[182,[-1,-2,-3,-4]],223],[[182,[-1,-2,-3,-4]]],[183,20],[],[184,186],179],[[[176,[-1,-2,-3]]],[[57,[193]]],[],[177,178],179],[[[163,[-1,-2,-3]],193],[[163,[-1,-2,-3]]],[],165,166],[187,[[57,[193]]]],[[[170,[-1,-2,-3]]],[[57,[193]]],[171,[62,[91]],207],20,175],[[[209,[-1,-2,-3]]],[[57,[193]]],[],[],166],[[[190,[-1,-2,-3,-4,-5]]],[[57,[193]]],[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[197,[-1]]],[[57,[193]]],199],[[[168,[-1]]],[[57,[193]]],[20,191]],0,[-2,[[168,[-1]]],[],[[62,[-1]]]],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[24,[-1]]],[[12,[-1]]],20],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[187,181,-1,94],224,166],[[[180,[-1,-2,-3]],181,-3,94],224,20,[],166],[[[176,[-1,-2,-3]],181,-3,94],224,[],[177,178],179],[[[182,[-1,-2,-3,-4]],181,-4,94],224,[183,20],20,[165,184,185,186],179],[[[163,[-1,-2,-3]],181,-3,94],224,[],165,166],[[[188,[-1,-2,-3]],181,-3,94],224,[],[189,165],166],[[[203,[-1]],181,-2,94],224,204,166],[[[205,[-1,-2,-3]],181,-3,94],224,20,[206,178],179],[[[170,[-1,-2,-3]],181,-4,94],224,[171,[62,[91]],207],20,175,166],[[[208,[-1,-2,-3]],181,-4,94],224,[171,[62,[91]],207],20,175,166],[[[209,[-1,-2,-3]],181,-3,94],224,[],[],166],[[[190,[-1,-2,-3,-4,-5]],181,-3,94],224,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[197,[-1]],181,-2,94],224,199,210],[[211,181,-1,94],224,166],[[[168,[-1]],181,-2,94],224,[20,191],[[213,[],[[212,[-1]]]]]],[[-1,-6],[[190,[-2,-3,-4,-1,-5]]],191,[],[],[],[[62,[[192,[-2,-3,-4]]]]],[[46,[-1],[[8,[-5]]]]]],[[[182,[-1,-2,-3,-4]],-5],[[182,[-1,-2,-3,-4]]],[183,20],[],[184,186],179,[[62,[225]]]],0,[[[163,[-1,-2,-3]],-4],[[163,[-1,-2,-3]]],[],165,166,[[62,[221]]]],[[[163,[-1,-2,-3]],-4],[[163,[-1,-2,-3]]],[],165,166,[[62,[221]]]],0,[-4,[[180,[-1,-2,-3]]],[],[],166,[[62,[[192,[-1,-2,-3]]]]]],[[[180,[-1,-2,-3]],181,201,202,195,-3],226,20,[],166],[[[176,[-1,-2,-3]],181,201,202,195,-3],226,[],[177,178],179],[[[182,[-1,-2,-3,-4]],181,201,202,195,-4],226,[183,20],20,[165,184,185,186],179],[[[163,[-1,-2,-3]],181,201,202,195,-3],226,[],165,166],[[187,181,201,202,195,-1],226,166],[[[188,[-1,-2,-3]],181,201,202,195,-3],226,[],[189,165],166],[[[205,[-1,-2,-3]],181,201,202,195,-3],226,20,[206,178],179],[[[170,[-1,-2,-3]],181,201,202,195,-4],226,[171,[62,[91]],207],20,175,166],[[[208,[-1,-2,-3]],181,201,202,195,-4],226,[171,[62,[91]],207],20,175,166],[[[209,[-1,-2,-3]],181,201,202,195,-3],226,[],[],166],[[[190,[-1,-2,-3,-4,-5]],181,201,202,195,-3],226,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],0,0,0,0,[-4,[[180,[-1,-2,-3]]],[],[],[],[[62,[[192,[-1,-2,-3]]]]]],[[-1,13,-3],[[176,[-2,-4,-5]]],[[62,[61]]],[],[[46,[13],[[8,[-2]]]]],[177,178],179],[[[194,[-1]],36,[57,[-1]],-3],[[182,[-1,-2,-4,-5]]],[183,20],[],[[46,[-1],[[8,[-2]]]]],[184,186],179],[-4,[[163,[-1,-2,-3]]],[],165,166,[[62,[[192,[-1,-2,-3]]]]]],[[[227,[-1]],-5],[[188,[-2,-3,-4]]],[],[],[189,165],166,[[46,[228,-1,13],[[8,[[229,[-2,-3,-4]]]]]]]],[[[230,[80]],80],[[203,[-1]]],204],[[-1,-2,[57,[-2]],-4],[[205,[-3,-5,-6]]],[[62,[61]]],[231,171],20,[[6,[-2],[[8,[-3]]]]],206,179],[[[230,[-1]],-1,-3],[[170,[-1,-2,-4]]],[171,[173,[172]],174],20,[[46,[-1],[[8,[-2]]]]],175],[[[230,[-1]],-1,-3],[[208,[-1,-2,-4]]],[171,[173,[172]],174],20,[[46,[-1],[[8,[-2]]]]],175],[-4,[[209,[-1,-2,-3]]],[],[],166,[[46,[93],[[8,[[192,[-1,-2,-3]]]]]]]],[[-1,-6],[[190,[-2,-3,-4,-1,-5]]],191,[],[],[],[[62,[[192,[-2,-3,-4]]]]],[[46,[-1],[[8,[-5]]]]]],[-1,[[197,[-2]]],[[62,[232]]],199],[[-1,-2],211,[[62,[220]]],[[62,[220]]]],[-1,193,[[62,[[103,[36]]]]]],[-2,[[168,[-1]]],[],[[62,[-1]]]],[[[188,[-1,-2,-3]],-4],[[188,[-1,-2,-3]]],[],[189,165],166,[[46,[228],[[8,[-1]]]]]],[[[182,[-1,-2,-3,-4]],-2],[[182,[-1,-2,-3,-4]]],[183,20],[],[184,186],179],[[[24,[-1]],-1],[[24,[-1]]],[]],[[[180,[-1,-2,-3]],-1],[[180,[-1,-2,-3]]],[],[],[]],[[[188,[-1,-2,-3]],-4],[[188,[-1,-2,-3]]],[],[189,165],166,[[46,[233],[[8,[-1]]]]]],[[[24,[-1]],-1],[[24,[-1]]],[]],[[[180,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,20,[],166],[[[176,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,[],[177,178],179],[[[182,[-1,-2,-3,-4]],181,234,201,202,-4,235,[236,[-2]],195],237,[183,20],20,[165,184,185,186],179],[[[163,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,[],165,166],[[187,181,234,201,202,-1,235,[236,[-2]],195],237,166,[]],[[[188,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,[],[189,165],166],[[[205,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,20,[206,178],179],[[[170,[-1,-2,-3]],181,234,201,202,-4,235,[236,[-2]],195],237,[171,[62,[91]],207],20,175,166],[[[208,[-1,-2,-3]],181,234,201,202,-4,235,[236,[-2]],195],237,[171,[62,[91]],207],20,175,166],[[[209,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,[],[],166],[[[190,[-1,-2,-3,-4,-5]],181,234,201,202,-3,235,[236,[-1]],195],237,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[182,[-1,-2,-3,-4]],-5],[[182,[-1,-2,-3,-4]]],[183,20],[],[184,186],179,[[46,[61],[[8,[-2]]]]]],[[[24,[-1]],-1],[[24,[-1]]],[]],[[[180,[-1,-2,-3]],-1],[[180,[-1,-2,-3]]],[],[],[]],[[[180,[-1,-2,-3]],-1],[[180,[-1,-2,-3]]],[],[],[]],[[[24,[-1]],-1],[[24,[-1]]],[]],[[[182,[-1,-2,-3,-4]],-5],[[182,[-1,-2,-3,-4]]],[183,20],[],[184,186],179,[[46,[-1],[[8,[-2]]]]]],[[[180,[-1,-2,-3]],-1],[[180,[-1,-2,-3]]],[],[],[]],[[[180,[-1,-2,-3]],-1],[[180,[-1,-2,-3]]],[],[],[]],[[[170,[-1,-2,-3]],-2],[[170,[-1,-2,-3]]],[171,[173,[172]],174],20,175],[[[208,[-1,-2,-3]],-2],[[208,[-1,-2,-3]]],[171,[173,[172]],174],20,175],[[[188,[-1,-2,-3]],-4,-5],[[188,[-1,-2,-3]]],[],[189,165],166,[[62,[221]]],[[46,[238],[[8,[-1]]]]]],[[[24,[-1]],-1],[[24,[-1]]],[]],[[[180,[-1,-2,-3]],-1],[[180,[-1,-2,-3]]],[],[],[]],[[[180,[-1,-2,-3]],-1],[[180,[-1,-2,-3]]],[],[],[]],[[[180,[-1,-2,-3]],181,201,-3,53],15,20,[],166],[[[163,[-1,-2,-3]],181,201,-3,53],15,[],165,166],[[187,181,201,-1,53],15,166],[[[188,[-1,-2,-3]],181,201,-3,53],15,[],[189,165],166],[[[209,[-1,-2,-3]],181,201,-3,53],15,[],[],166],[[[190,[-1,-2,-3,-4,-5]],181,201,-3,53],15,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[180,[-1,-2,-3]],181,201,-3],[[57,[[239,[-1,-2,-3]]]]],20,[],166],[[[182,[-1,-2,-3,-4]],181,201,-4],[[57,[[239,[-2,-3,-4]]]]],[183,20],20,[165,184,185,186],179],[[[163,[-1,-2,-3]],181,201,-3],[[57,[[239,[-1,-2,-3]]]]],[],165,166],[[187,181,201,-1],[[57,[[239,[-2,-3,-1]]]]],166,[],[]],[[[188,[-1,-2,-3]],181,201,-3],[[57,[[239,[-1,-2,-3]]]]],[],[189,165],166],[[[209,[-1,-2,-3]],181,201,-3],[[57,[[239,[-1,-2,-3]]]]],[],[],166],[[[190,[-1,-2,-3,-4,-5]],181,201,-3],[[57,[[239,[-1,-2,-3]]]]],[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[182,[-1,-2,-3,-4]],-5],[[182,[-1,-2,-3,-4]]],[183,20],[],[184,186],179,[[62,[240]]]],[[[163,[-1,-2,-3]],-4],[[163,[-1,-2,-3]]],[],165,166,[[62,[240]]]],0,0,0,0,[[[230,[80]],80],[[203,[-1]]],204],0,[[-1,-2,[57,[-2]],-4],[[205,[-3,-5,-6]]],[[62,[61]]],[171,231],20,[[6,[-2],[[8,[-3]]]]],206,179],0,0,[[],15],[-4,[[209,[-1,-2,-3]]],[],[],166,[[46,[93],[[8,[[192,[-1,-2,-3]]]]]]]],0,0,[-2,[[242,[-1,82,241]]],[],[[62,[[12,[-1]]]]]],[[53,243,[57,[193]],195,244],15],0,0,[[[176,[-1,-2,-3]],193],15,[],[177,178],179],[[187,193],15],[[[170,[-1,-2,-3]],193],15,[171,[62,[91]],207],20,175],[[[209,[-1,-2,-3]],193],15,[],[],166],[[[190,[-1,-2,-3,-4,-5]],193],15,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[197,[-1]],193],15,199],[[[168,[-1]],193],15,[20,191]],0,[187,[[93,[220]]]],[[[180,[-1,-2,-3]]],[[93,[220]]],20,[],166],[[[176,[-1,-2,-3]],-4],[[176,[-1,-2,-3]]],[],[177,178],179,[[62,[221]]]],[[[176,[-1,-2,-3]]],[[93,[220]]],[],[177,178],179],[[[182,[-1,-2,-3,-4]]],[[93,[220]]],[183,20],20,[165,184,185,186],179],[[[182,[-1,-2,-3,-4]],80],[[182,[-1,-2,-3,-4]]],[183,20],[],[184,186],179],[[[163,[-1,-2,-3]]],[[93,[220]]],[],165,166],[[[188,[-1,-2,-3]]],[[93,[220]]],[],[189,165],166],[[[203,[-1]]],[[93,[220]]],204],[[[205,[-1,-2,-3]]],[[93,[220]]],20,[206,178],179],[[[205,[-1,-2,-3]],-4],[[205,[-1,-2,-3]]],20,206,179,[[62,[221]]]],[[[170,[-1,-2,-3]]],[[93,[220]]],[171,[62,[91]],207],20,175],[[[208,[-1,-2,-3]]],[[93,[220]]],[171,[62,[91]],207],20,175],[[[209,[-1,-2,-3]]],[[93,[220]]],[],[],166],[[[190,[-1,-2,-3,-4,-5]]],[[93,[220]]],[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[197,[-1]]],[[93,[220]]],199],[211,[[93,[220]]]],[[[168,[-1]]],[[93,[220]]],[20,191]],[187,[[93,[220]]]],[[[190,[-1,-2,-3,-4,-5]]],[[93,[220]]],[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],0,[[[230,[-1]],-1,-3],[[170,[-1,-2,-4]]],[171,[173,[172]],174],20,[[46,[-1],[[8,[-2]]]]],175],0,[[[176,[-1,-2,-3]],-4],[[176,[-1,-2,-3]]],[],[177,178],179,[[62,[221]]]],[[[188,[-1,-2,-3]],-4],[[188,[-1,-2,-3]]],[],[189,165],166,[[62,[221]]]],[[[205,[-1,-2,-3]],-4],[[205,[-1,-2,-3]]],20,206,179,[[62,[221]]]],0,0,[[[24,[-1]],-2],[[24,[-1]]],20,[[62,[[12,[-1]]]]]],[[[180,[-1,-2,-3]]],245,20,[],166],[[[176,[-1,-2,-3]]],245,[],[177,178],179],[[[182,[-1,-2,-3,-4]]],245,[183,20],20,[165,184,185,186],179],[[[163,[-1,-2,-3]]],245,[],165,166],[187,245],[[[188,[-1,-2,-3]]],245,[],[189,165],166],[[[205,[-1,-2,-3]]],245,20,[206,178],179],[[[170,[-1,-2,-3]]],245,[171,[62,[91]],207],20,175],[[[208,[-1,-2,-3]]],245,[171,[62,[91]],207],20,175],[[[209,[-1,-2,-3]]],245,[],[],166],[[[190,[-1,-2,-3,-4,-5]]],245,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],[[[170,[-1,-2,-3]],-4],[[170,[-1,-2,-3]]],[171,[173,[172]],174],20,175,[[62,[-1]]]],[[[208,[-1,-2,-3]],-1],[[208,[-1,-2,-3]]],[171,[173,[172]],174],20,175],[[[176,[-1,-2,-3]],-4],[[176,[-1,-2,-3]]],[],[177,178],179,62],[[[182,[-1,-2,-3,-4]],-5],[[182,[-1,-2,-3,-4]]],[183,20],[],[184,186],179,[62,62,20]],[[[163,[-1,-2,-3]],-4],[[163,[-1,-2,-3]]],[],165,166,62],[[[188,[-1,-2,-3]],-4],[[188,[-1,-2,-3]]],[],[189,165],166,62],[[[203,[-1]],-2],[[203,[-1]]],204,62],[[[205,[-1,-2,-3]],-4],[[205,[-1,-2,-3]]],20,206,179,62],[[[170,[-1,-2,-3]],-4],[[170,[-1,-2,-3]]],[171,[173,[172]],174],20,175,62],[[[208,[-1,-2,-3]],-4],[[208,[-1,-2,-3]]],[171,[173,[172]],174],20,175,62],[[[197,[-1]],-2],[[197,[-1]]],199,62],0,[-1,[[197,[-2]]],[[62,[232]]],199],[[[197,[-1]],13],[[197,[-1]]],199],0,[[[180,[-1,-2,-3]]],246,20,[],166],[[[176,[-1,-2,-3]]],246,[],[177,178],179],[[[182,[-1,-2,-3,-4]]],246,[183,20],20,[165,184,185,186],179],[[[163,[-1,-2,-3]]],246,[],165,166],[187,246],[[[188,[-1,-2,-3]]],246,[],[189,165],166],[[[205,[-1,-2,-3]]],246,20,[206,178],179],[[[170,[-1,-2,-3]]],246,[171,[62,[91]],207],20,175],[[[208,[-1,-2,-3]]],246,[171,[62,[91]],207],20,175],[[[209,[-1,-2,-3]]],246,[],[],166],[[[190,[-1,-2,-3,-4,-5]]],246,[],[],166,191,[[62,[[192,[-1,-2,-3]]]]]],0,0,0,[[53,247,[57,[193]]],15],[[[182,[-1,-2,-3,-4]],-5],[[182,[-1,-2,-3,-4]]],[183,20],[],[184,186],179,[62,20]],[[[176,[-1,-2,-3]],-4],[[176,[-1,-2,-3]]],[],[177,178],179,[[62,[225]]]],[[[205,[-1,-2,-3]],-4],[[205,[-1,-2,-3]]],20,206,179,[[62,[225]]]],[[[176,[-1,-2,-3]],248],[[176,[-1,-2,-3]]],[],[177,178],179],[[[205,[-1,-2,-3]],248],[[205,[-1,-2,-3]]],20,206,179],[[[176,[-1,-2,-3]],-4],[[176,[-1,-2,-3]]],[],[177,178],179,[[62,[221]]]],[[[205,[-1,-2,-3]],-4],[[205,[-1,-2,-3]]],20,206,179,[[62,[221]]]],[[[24,[-1]],-2],[[24,[-1]]],20,[[62,[[103,[36]]]]]],[-1,-2,[],[]],[193,61],[[-1,13,-3],[[249,[-2,-4,-5]]],[[62,[[57,[61]]]]],[],[[46,[13],[[8,[-2]]]]],250,[166,179]],0,0,[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],193],0,[[[230,[-1]],-1,-3],[[208,[-1,-2,-4]]],[171,[173,[172]],174],20,[[46,[-1],[[8,[-2]]]]],175],[-1,211,[[62,[220]]]],0,[[[176,[-1,-2,-3]],-4],[[176,[-1,-2,-3]]],[],[177,178],179,[[62,[220]]]],[[[182,[-1,-2,-3,-4]],-5],[[182,[-1,-2,-3,-4]]],[183,20],[],[184,186],179,[[62,[220]]]],[[[163,[-1,-2,-3]],-4],[[163,[-1,-2,-3]]],[],165,166,[[62,[220]]]],[[[188,[-1,-2,-3]],-4],[[188,[-1,-2,-3]]],[],[189,165],166,[[62,[220]]]],[[[203,[-1]],-2],[[203,[-1]]],204,[[62,[220]]]],[[[205,[-1,-2,-3]],-4],[[205,[-1,-2,-3]]],20,206,179,[[62,[220]]]],[[[170,[-1,-2,-3]],-4],[[170,[-1,-2,-3]]],[171,[173,[172]],174],20,175,[[62,[220]]]],[[[208,[-1,-2,-3]],-4],[[208,[-1,-2,-3]]],[171,[173,[172]],174],20,175,[[62,[221]]]],[[[197,[-1]],-2],[[197,[-1]]],199,[[62,[220]]]],[[[168,[-1]],-2],[[168,[-1]]],[],[[62,[220]]]],[-1,211,[[62,[220]]]],[-1,211,[[62,[220]]]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[251,[-1,-2]],164],[[251,[-1,-2]]],[],166],[[[251,[-1,-2]],167],[[251,[-1,-2]]],[],166],[[[165,[],[[160,[-1]]]],-1],126,42],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[[-2,80],[[251,[-1,241]]],[],[[62,[[192,[-1,82,241]]]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[[251,[-1,-2]]],[[251,[-1,-2]]],[],166],[[[251,[-1,-2]]],[[251,[-1,-2]]],[],166],[[[251,[-1,-2]]],[[3,[181]]],[],166],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[[[251,[-1,-2]],181],15,[],166],[[[251,[-1,-2]],181,-2,82,200,201,202,195],15,[],166],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[251,[-1,-2]],220],[[251,[-1,-2]]],[],166],0,[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[251,[-1,-2]],181,-2,94],224,[],166],[[[251,[-1,-2]],80],[[251,[-1,-2]]],[],166],[[[251,[-1,-2]],80],[[251,[-1,-2]]],[],166],[[[251,[-1,-2]],181,201,202,195,-2],226,[],166],[[[251,[-1,-2]],181,234,201,202,-2,235,[236,[-1]],195],237,[],166],[[[251,[-1,-2]],181,201,-2,53],15,[],166],[[[251,[-1,-2]],181,201,-2],[[57,[[239,[-1,82,-2]]]]],[],166],[[[251,[-1,-2]],-3],[[251,[-1,-2]]],[],166,[[62,[240]]]],0,[[[251,[-1,-2]]],[[93,[220]]],[],166],[[[251,[-1,-2]],-3],[[251,[-1,-2]]],[],166,62],0,[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[251,[-1,-2]],220],[[251,[-1,-2]]],[],166],0,0,0,0,0,0,0,0,0,0,[[[252,[],[[160,[-1]]]],13,13,-1],111,42],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-3,[[253,[-1,-2,241]]],[],252,[[62,[[254,[-1,-2,241]]]]]],[[[253,[-1,-2,-3]]],[[3,[181]]],20,252,[166,210]],[111,111],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-3,[57,[-1]]],[[253,[-1,-2,241]]],[],252,[[62,[[254,[-1,-2,241]]]]]],[[],111],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[-1,[[30,[-2]]],[[62,[[103,[36]]]]],[]],[[[253,[-1,-2,-3]],181],15,20,252,[166,210]],[[[252,[],[[160,[-1]]]],-1],111,42],[[-1,195,202,13,13,252,-2,-3],111,166,[[6,[],[[8,[0]]]]],[[6,[-1,111]]]],[[[253,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,20,252,[166,210]],[14,15],[14,15],[14,15],[[[252,[],[[160,[-1]]]],-1],111,42],[[[252,[],[[160,[-1]]]],-1],111,42],[[[43,[-1]]],[[43,[-1]]],[]],[[[255,[-1,0]]],[[255,[-1,0]]],[]],[[[43,[-1]]],[[43,[-1]]],[]],[[[255,[-1,0]]],[[255,[-1,0]]],[]],[[111,16],72],[193,[[1,[-1]]],[]],[[[255,[-1,-2]],256],[[255,[-1,-2]]],[],[]],[[[255,[-1,-2]],257],[[255,[-1,-2]]],[],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[253,[-1,-2,-3]],-4],[[253,[-1,-2,-3]]],[],252,166,[[62,[220]]]],[[[255,[-1,-2]],-3],[[255,[-1,-2]]],[],[],[[62,[220]]]],[[[252,[],[[160,[-1]]]],13,13,-1],111,42],[-1,[[43,[-2]]],[[62,[258]]],[]],0,[[[255,[-1,-2]],256],[[255,[-1,-2]]],[],[]],[[[253,[-1,-2,-3]]],[[57,[193]]],20,252,[166,210]],[[[253,[-1,-2,-3]],193],[[253,[-1,-2,-3]]],[],252,166],[[[255,[-1,-2]],193],[[255,[-1,-2]]],[],[]],[-1,[[21,[-2]]],[[62,[259]]],[]],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[255,[-1,-2]],-3],[[255,[-1,-2]]],[],[],[[62,[[103,[36]]]]]],[[[43,[-1]]],[[43,[-1]]],[]],[[[255,[-1,0]]],[[255,[-1,0]]],[]],[[-1,94,220,220,240,-2],224,[],[[6,[-1,94],[[8,[224]]]]]],[[[253,[-1,-2,-3]],181,-3,94],224,20,252,[166,210]],[[[30,[-1]],-2],[[30,[-1]]],[],[[62,[258]]]],[[[255,[-1,0]],-2],[[255,[-1,0]]],[],[[62,[258]]]],[[[255,[-1,-2]],256],[[255,[-1,-2]]],[],[]],0,0,[[[43,[-1]]],[[43,[-1]]],[]],[[[255,[-1,0]]],[[255,[-1,0]]],[]],[[201,202,13],226],[[[253,[-1,-2,-3]],181,201,202,195,-3],226,20,252,[166,210]],0,[[[0,[259,-1]]],[[21,[-1]]],[]],0,[-4,[[253,[-1,-2,-3]]],[],252,166,[[62,[[192,[-1,-2,-3]]]]]],[[],111],0,[[[0,[259,-1]]],[[255,[-1,[0,[259,-1]]]]],[]],[[-1,260],[[255,[-2,260]]],[[62,[[103,[36]]]]],[]],0,[[-4,[57,[-1]]],[[253,[-1,-2,-3]]],[],252,166,[[62,[[192,[-1,-2,-3]]]]]],[[[253,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,20,252,[166,210]],[[[253,[-1,-2,-3]],-1],[[253,[-1,-2,-3]]],[],252,166],[[[255,[-1,-2]],-1],[[255,[-1,-2]]],[],[]],[[[253,[-1,-2,-3]],[57,[-1]]],[[253,[-1,-2,-3]]],[],252,166],[[[255,[-1,-2]],[57,[-1]]],[[255,[-1,-2]]],[],[]],[[[21,[-1]],-1],[[21,[-1]]],[]],[[[255,[-1,[0,[259,-1]]]],-1],[[255,[-1,[0,[259,-1]]]]],[]],[[[21,[-1]],[57,[-1]]],[[21,[-1]]],[]],[[[255,[-1,[0,[259,-1]]]],[57,[-1]]],[[255,[-1,[0,[259,-1]]]]],[]],[[[253,[-1,-2,-3]],181,201,-3,53],15,20,252,[166,210]],0,0,[[[253,[-1,-2,-3]],181,201,-3],[[57,[[239,[-1,-2,-3]]]]],20,252,[166,210]],[[[253,[-1,-2,-3]],-4],[[253,[-1,-2,-3]]],[],252,166,[[62,[240]]]],[[[255,[-1,-2]],-3],[[255,[-1,-2]]],[],[],[[62,[240]]]],[[[252,[],[[160,[-1]]]],13,13,-1],111,42],[[[43,[-1]],13],[[43,[-1]]],[]],[[[21,[-1]],13],[[21,[-1]]],[]],[[[253,[-1,-2,-3]],13],[[253,[-1,-2,-3]]],[],252,166],[[[255,[-1,[0,[259,-1]]]],13],[[255,[-1,[0,[259,-1]]]]],[]],[[[255,[-1,0]],13],[[255,[-1,0]]],[]],[[[252,[],[[160,[-1]]]]],143,42],[[[253,[-1,-2,-3]],193],15,20,252,[166,210]],0,[[[253,[-1,-2,-3]]],[[93,[220]]],20,252,[166,210]],[[[255,[-1,-2]],256],[[255,[-1,-2]]],[],[]],[-1,[[30,[-2]]],[[62,[[103,[36]]]]],[]],[[[253,[-1,-2,-3]]],245,20,252,[166,210]],[[[253,[-1,-2,-3]]],[[253,[-1,-2,-3]]],[],252,166],[[[255,[-1,-2]],145],[[255,[-1,-2]]],[],[]],[-1,[[30,[-2]]],[[62,[[103,[36]]]]],[]],[[[253,[-1,-2,-3]]],246,20,252,[166,210]],[-1,[[30,[-2]]],[[62,[[103,[36]]]]],[]],0,[-1,-2,[],[]],[[[255,[-1,-2]],-3],[[255,[-1,-2]]],[],[],[[62,[[103,[36]]]]]],[[[30,[-1]],-2],[[30,[-1]]],[],[[62,[258]]]],[[[255,[-1,0]],-2],[[255,[-1,0]]],[],[[62,[258]]]],[[[255,[-1,260]],13],[[255,[-1,260]]],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[43,[-1]],13],[[43,[-1]]],[]],[[[255,[-1,0]],13],[[255,[-1,0]]],[]],[[[253,[-1,-2,-3]],-4],[[253,[-1,-2,-3]]],[],252,166,[[62,[220]]]],[[[255,[-1,-2]],-3],[[255,[-1,-2]]],[],[],[[62,[220]]]],0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],258],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[27,[-2]]],[[62,[[103,[36]]]]],[]],[[-1,260],[[27,[-2]]],[[62,[[103,[36]]]]],[]],[[[27,[-1]],13],[[27,[-1]]],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[261,-2],[[19,[-1]]],[],[[46,[261],[[8,[-1]]]]]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[262,77,263],261],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[261,77],261],[261,261],[261,261],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[132,132],[[-1,-2],15,[],[]],[-1,-2,[],[]],[264,132],[[],132],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[[[177,[],[[160,[-1]]]],-1,13],110,42],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[110,110],[[[222,[-1]]],[[222,[-1]]],20],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[[222,[-1]],[222,[-1]]],13,38],[[110,16],[[18,[15,17]]]],[[[222,[-1]],16],[[18,[15,17]]],59],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[177,[],[[160,[-1]]]],-1,13],110,42],0,[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[265,13],265],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[266,[-1]],-2,-2,-2],[[267,[-1]]],20,[[62,[[103,[36]]]]]],[265,[[266,[-1]]],[]],[[[266,[-1]],-2],[[266,[-1]]],[],[[62,[[103,[36]]]]]],[[[267,[-1]]],[[3,[181]]],20],[268,268],[[[266,[-1]]],[[266,[-1]]],20],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[[57,[-1]],[57,[139]],220],[[253,[-1,82,241]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],269],[14,-1,[]],[270,[[3,[271]]]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[267,[-1]],181],15,20],[[[267,[-1]],181,241,82,200,201,202,195],15,20],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[[268,16],72],[[269,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[265,[[57,[139]]]],[265,13],[[265,220],265],[[[266,[-1]],220],[[266,[-1]]],[]],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[265,13],[[[267,[-1]],181,241,94],224,20],[[-1,-2,[57,[139]],[57,[139]]],265,[[62,[[103,[36]]]],20],[[62,[[103,[36]]]],20]],[[[267,[-1]],181,234,201,202,241,235,[236,[-1]],195],237,20],[[[267,[-1]],181,201,241],[[57,[[239,[-1,82,241]]]]],20],[[265,-2,[57,[256]]],[[253,[-1,82,241]]],[],[[46,[268],[[8,[-1]]]]]],[[[266,[-1]],-2],[[266,[-1]]],[],[[62,[[103,[36]]]]]],[[[266,[-1]],-2],[[266,[-1]]],[],[[62,[[103,[36]]]]]],[[[267,[-1]]],[[93,[220]]],20],[[[267,[-1]]],245,20],[[[267,[-1]]],246,20],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[265,268],[[1,[-1]]],[]],[[265,220],265],[[[266,[-1]],220],[[266,[-1]]],[]],0,[[[272,[-1]],[3,[-2]]],[[272,[-1]]],[],[[62,[[12,[-1]]]]]],[[],[[272,[-1]]],[]],[[[272,[-1]],-2],[[272,[-1]]],[],[[62,[[12,[-1]]]]]],[14,[[272,[-1]]],[]],[[[3,[[12,[-1]]]]],[[272,[-1]]],[]],0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-2,[[3,[61]]],183,[[11,[],[[10,[-1]]]]]],[[[194,[-1]]],[[194,[-1]]],20],[[-1,-2],15,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[[194,[-1]],16],[[18,[15,17]]],59],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[3,[-1]]],[[194,[-1]]],[183,20]],[[-2,-4,36],[[0,[[108,[],[[10,[-1]]]]]]],[],[[11,[],[[10,[-1]]]]],[[37,[36]]],[[11,[],[[10,[-3]]]]]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[3,[-1]],[57,[-1]]],[[194,[-1]]],[183,20]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[165,[],[[160,[-1]]]],-1],126,42],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[126,126],[[-1,-2],15,[],[]],[-1,-2,[],[]],[[],126],[14,-1,[]],[14,-1,[]],[[-1,126,195],15,166],[14,15],[[126,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],0,[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[94,220,220,80,80,240,164,167,-1],224,[[6,[94],[[8,[224]]]]]],0,0,[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[193,[[1,[[57,[195]]]]]],[[126,-1],126,[[62,[143]]]],[[126,-1,-2],126,[[62,[139]]],[[62,[221]]]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[29,[-1]]],[[3,[181]]],20],[-1,-2,[],[]],[[36,-1,-2,-3],[[29,[-1]]],20,[[62,[[12,[-1]]]]],[[62,[[12,[-1]]]]]],[14,-1,[]],[14,-1,[]],[[[29,[-1]],181],15,20],[[[29,[-1]],181,241,82,200,201,202,195],15,20],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[29,[-1]],181,241,94],224,20],[[[29,[-1]],181,201,202,195,241],226,20],[[36,-2,-3,-1],[[29,[-1]]],20,[[62,[[12,[-1]]]]],[[62,[[12,[-1]]]]]],[[[29,[-1]],[57,[-1]]],[[29,[-1]]],20],[[[29,[-1]],181,234,201,202,241,235,[236,[-1]],195],237,20],[[[29,[-1]],181,201,241,53],15,20],[[[29,[-1]],181,201,241],[[57,[[239,[-1,82,241]]]]],20],[[[29,[-1]]],[[93,[220]]],20],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[[[26,[-1]],-2],[[26,[-1]]],[],[[62,[[103,[36]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[26,[-1]],-2],[[26,[-1]]],[],[[62,[[12,[-1]]]]]],[14,-1,[]],[14,-1,[]],[-1,[[26,[-2]]],[[62,[[103,[36]]]]],[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[26,[-1]],-2],[[26,[-1]]],[],[[62,[[12,[-1]]]]]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[26,[-2]]],[[62,[[103,[36]]]]],[]],[[[26,[-1]],-2],[[26,[-1]]],[],[[62,[[12,[-1]]]]]],[[[26,[-1]],-2],[[26,[-1]]],[],[[62,[[12,[-1]]]]]],[[[26,[-1]],-2],[[26,[-1]]],[],[[62,[[12,[-1]]]]]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[],[[273,[82]]]],[[],[[273,[82]]]],[[],[[273,[82]]]],[[],[[273,[82]]]],[[],[[273,[82]]]],[[],[[273,[82]]]],0,0,0,0,0,0,0,0,[[[274,[],[[160,[-1]]]],-1],114,[42,20]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[114,114],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],275],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[39,[-1,-2]],181],15,[[37,[36]]],[]],[[241,82,201,202,80,240,[57,[80]],225,92,[57,[-1]],275,195],15,[[37,[36]]]],[[[39,[-1,-2]],181,241,82,200,201,202,195],15,[[37,[36]]],[]],[14,15],[14,15],[14,15],[[[84,[-1]],[57,[14]],-3],[[39,[-1,-2]]],[[37,[36]]],[],[[46,[14],[[8,[-2]]]]]],[[114,16],[[18,[15,17]]]],[[275,16],72],[[[39,[-1,-2]],92],[[39,[-1,-2]]],[[37,[36]]],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[39,[-1,-2]],80],[[39,[-1,-2]]],[[37,[36]]],[]],0,[[[274,[],[[160,[-1]]]],-1],114,[42,20]],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[241,94,220,80,240,80,225,[57,[92]],[57,[[15,[36]]]]],224],[[[39,[-1,-2]],181,241,94],224,[[37,[36]]],[]],0,[[201,202],226],[[[39,[-1,-2]],181,201,202,195,241],226,[[37,[36]]],[]],0,[[[84,[-1]],[57,[14]],-3],[[39,[-1,-2]]],[[37,[36]]],[],[[46,[14],[[8,[-2]]]]]],[[],275],[[[39,[-1,-2]],181,234,201,202,241,235,[236,[-2]],195],237,[[37,[36]]],[]],[[201,241,275,80,240,80,225,[57,[92]],[84,[-1]],[57,[14]],46],[[57,[[239,[-2,82,241]]]]],[[37,[36]]],[]],[[[39,[-1,-2]],181,201,241],[[57,[[239,[-2,82,241]]]]],[[37,[36]]],[]],[[[39,[-1,-2]],-3],[[39,[-1,-2]]],[[37,[36]]],[],[[62,[240]]]],0,[[[39,[-1,-2]]],[[93,[220]]],[[37,[36]]],[]],[[[39,[-1,-2]]],245,[[37,[36]]],[]],[[[39,[-1,-2]]],246,[[37,[36]]],[]],0,[[[39,[-1,-2]],225],[[39,[-1,-2]]],[[37,[36]]],[]],[[[39,[-1,-2]],80],[[39,[-1,-2]]],[[37,[36]]],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[234,201,202,[236,[-1]],46,[57,[14]],[84,[-2]],-3],237,[],[[37,[36]]],[[6,[],[[8,[275]]]]]],[[[39,[-1,-2]],-3],[[39,[-1,-2]]],[[37,[36]]],[],[[62,[220]]]],0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[276,[],[[160,[-1]]]],-1],122,[42,20]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[122,122],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],277],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],0,[14,15],[14,15],[14,15],[[122,16],72],[[277,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[277,[84,[-1]],[57,[14]],[57,[14]],-3,[57,[46]]],[[278,[-1,-2]]],[[37,[36]]],[],[[196,[14],[[8,[-2]]]]]],[[],277],[[[278,[-1,-2]],279,80],[[239,[-2,82,241]]],[[37,[36]]],[]],[[[278,[-1,-2]],-3],[[278,[-1,-2]]],[[37,[36]]],[],[[62,[240]]]],0,0,0,[[[278,[-1,-2]],-3],[[278,[-1,-2]]],[[37,[36]]],[],[[62,[225]]]],[[[278,[-1,-2]],-3],[[278,[-1,-2]]],[[37,[36]]],[],[[62,[221]]]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[278,[-1,-2]],80],[[278,[-1,-2]]],[[37,[36]]],[]],0,0,0,0,0,0,0,0,0,[[[274,[],[[160,[-1]]]],-1],114,[42,20]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[280,[-1,-2]]],15,[],38],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],0,[[[35,[-1,-2,-3]],181,241,82,200,201,202,195],15,[[37,[36]]],[],[20,38]],[14,15],[14,15],[14,15],[[[280,[-1,-2]],-4],[[35,[-1,-3,-2]]],[[37,[36]]],[20,38],[],[[46,[-2],[[8,[-3]]]]]],[[[35,[-1,-2,-3]],92],[[35,[-1,-2,-3]]],[[37,[36]]],[],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[35,[-1,-2,-3]],80],[[35,[-1,-2,-3]]],[[37,[36]]],[],[]],0,[[[274,[],[[160,[-1]]]],-1],114,[42,20]],[[],14],[[],14],[[],14],[[[280,[-1,-2]],[281,[-1,-2]]],15,[],38],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[35,[-1,-2,-3]],181,241,94],224,[[37,[36]]],[],[20,38]],[[[57,[-1]],[3,[[15,[-1,-2]]]]],[[281,[-1,-2]]],[],[]],0,0,[[],[[280,[-1,-2]]],[],[]],[[[35,[-1,-2,-3]],181,201,202,195,241],226,[[37,[36]]],[],[20,38]],[[[280,[-1,-2]],-4],[[35,[-1,-3,-2]]],[[37,[36]]],[20,38],[],[[46,[-2],[[8,[-3]]]]]],[[[35,[-1,-2,-3]],181,234,201,202,241,235,[236,[-2]],195],237,[[37,[36]]],[],[20,38]],0,[[[35,[-1,-2,-3]],181,201,241],[[57,[[239,[-2,82,241]]]]],[[37,[36]]],[],[20,38]],[[[35,[-1,-2,-3]],-4],[[35,[-1,-2,-3]]],[[37,[36]]],[],[],[[62,[240]]]],0,0,[[[35,[-1,-2,-3]]],[[93,[220]]],[[37,[36]]],[],[20,38]],[[[35,[-1,-2,-3]]],245,[[37,[36]]],[],[20,38]],[[[35,[-1,-2,-3]]],246,[[37,[36]]],[],[20,38]],0,[[[35,[-1,-2,-3]],225],[[35,[-1,-2,-3]]],[[37,[36]]],[],[]],[[[35,[-1,-2,-3]],80],[[35,[-1,-2,-3]]],[[37,[36]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[35,[-1,-2,-3]],-4],[[35,[-1,-2,-3]]],[[37,[36]]],[],[],[[62,[220]]]],0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[282,[-1,-2,-3]],279,80],[[239,[-3,82,241]]],[[37,[36]]],[20,38],[]],[[[282,[-1,-2,-3]],-4],[[282,[-1,-2,-3]]],[[37,[36]]],[20,38],[],[[62,[240]]]],[[[282,[-1,-2,-3]],-4],[[282,[-1,-2,-3]]],[[37,[36]]],[20,38],[],[[62,[225]]]],[[[282,[-1,-2,-3]],-4],[[282,[-1,-2,-3]]],[[37,[36]]],[20,38],[],[[62,[221]]]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[282,[-1,-2,-3]],80],[[282,[-1,-2,-3]]],[[37,[36]]],[20,38],[]],0,[[[3,[[12,[-1]]]]],[[25,[-1]]],[]],0,0,[[241,94,[84,[[12,[-1]]]],240,80,80,[84,[181]]],224,[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[25,[-1]]],[[3,[181]]],20],[[[25,[-1]],256],[[25,[-1]]],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[[[25,[-1]],181],15,20],[[[25,[-1]],181,241,82,200,201,202,195],15,20],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[25,[-1]],181,241,94],224,20],[[[25,[-1]],80],[[25,[-1]]],[]],[[[25,[-1]],181,201,202,195,241],226,20],[[[3,[[12,[-1]]]]],[[25,[-1]]],[]],[[[25,[-1]],181,234,201,202,241,235,[236,[-1]],195],237,20],[[[25,[-1]],181,201,241,53],15,20],[[[25,[-1]],181,201,241],[[57,[[239,[-1,82,241]]]]],20],[[[25,[-1]],240],[[25,[-1]]],[]],[[[25,[-1]],256],[[25,[-1]]],[]],[[[25,[-1]]],[[93,[220]]],20],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[25,[-1]],220],[[25,[-1]]],[]],0,[[],[[33,[-1]]],[]],0,0,[[241,94,[84,[[12,[-1]]]],[84,[283]],220,220,240,284,284,80,80,[84,[181]]],224,[]],0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[33,[-1]]],[[3,[181]]],20],[283,283],[[-1,-2],15,[],[]],[[283,256],283],[[[33,[-1]],284],[[33,[-1]]],[]],[[[33,[-1]],256],[[33,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[33,[-1]],181],15,20],[[[33,[-1]],181,241,82,200,201,202,195],15,20],[14,15],[14,15],[[283,16],72],[-1,-1,[]],[[[15,[256,256,256,256]]],283],[[[15,[256,256]]],283],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[33,[-1]],220],[[33,[-1]]],[]],[[283,256],283],[[],14],[[],14],[[[33,[-1]]],[[33,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[33,[-1]],181,241,94],224,20],[[[33,[-1]],80],[[33,[-1]]],[]],[[[33,[-1]],181,201,202,195,241],226,20],[[],[[33,[-1]]],[]],[[],283],[[[33,[-1]],181,234,201,202,241,235,[236,[-1]],195],237,20],[[[33,[-1]],181,201,241,53],15,20],[[[33,[-1]],181,201,241],[[57,[[239,[-1,82,241]]]]],20],[[[33,[-1]],240],[[33,[-1]]],[]],[[[33,[-1]],-2],[[33,[-1]]],[],[[62,[[12,[-1]]]]]],[[[33,[-1]],-2,-3],[[33,[-1]]],[],[[62,[[12,[-1]]]]],[[46,[283],[[8,[283]]]]]],[[283,256],283],[[[33,[-1]],284],[[33,[-1]]],[]],[[[33,[-1]],256],[[33,[-1]]],[]],[[[33,[-1]]],[[93,[220]]],20],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[33,[-1]],220],[[33,[-1]]],[]],[[283,256],283],0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[285,285],[40,40],[258,258],[286,286],[31,31],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[31,198],31],0,[[],285],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[14,15],[14,15],[14,15],[[40,[57,[285]]],40],0,[[285,16],72],[[40,16],72],[[258,16],72],[[286,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[40,258],[-1,-1,[]],[-1,-1,[]],[40,31],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,40,[[62,[[74,[36]]]]]],[219,258],[-1,258,[[62,[[103,[[84,[172]]]]]],[37,[[84,[172]]]],60,48]],[[77,77,-1],258,[[62,[[103,[[84,[172]]]]]],[37,[[84,[172]]]],60,48]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,258,[[62,[[103,[[84,[172]]]]]]]],[40,258],[[285,-1],15,101],[[40,-1],15,101],[[258,-1],15,101],[[286,-1],15,101],[[31,220],31],[258,31],[40,31],[258,31],[[],14],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[31,[[57,[232]]]],[[40,[74,[36]]],40],[-1,40,[[62,[[74,[36]]]]]],[40,[[57,[219]]]],[[40,13],40],0,[[40,256],40],0,[[40,256],40],[[31,256],31],0,[[31,150],31],[[40,13],40],[[258,13],258],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[31,220],31],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[259,259],[214,214],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[259,287],[[],214],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[-2,201,-1,198,214,[169,[80]]],15,[20,191],[[213,[],[[212,[-1]]]]]],[[[288,[-1]],181,-2,-3,200,201,202,195],15,[20,191],[[213,[],[[212,[-1]]]]],[]],[14,15],[14,15],[14,15],[[259,259],13],[[214,214],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[259,16],[[18,[15,17]]]],[[214,16],[[18,[15,17]]]],[-1,259,[[62,[219]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,259,[[37,[[84,[172]]]],60,48]],[-1,259,[[62,[219]]]],[[77,77,-1],259,[[37,[[84,[172]]]],60,48]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[259,-1],15,101],[[214,-1],15,101],[[[288,[-1]],-2],[[288,[-1]]],[],[[62,[220]]]],[259,217],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-2,94,-1,220,220,198,[169,[80]]],224,[],[[213,[],[[212,[-1]]]]]],[[[288,[-1]],181,-2,94],224,[20,191],[[213,[],[[212,[-1]]]]]],[[[288,[-1]],80],[[288,[-1]]],[]],[[[288,[-1]],80],[[288,[-1]]],[]],[[[288,[-1]],181,201,202,195,-2],226,[20,191],[[213,[],[[212,[-1]]]]]],[-1,[[288,[-1]]],[]],[[[288,[-1]],181,234,201,202,-2,235,[236,[-3]],195],237,[20,191],[[213,[],[[212,[-1]]]]],[]],[[[288,[-1]],-2],[[288,[-1]]],[],[[62,[221]]]],[[[288,[-1]],80],[[288,[-1]]],[]],[[[288,[-1]]],[[93,[220]]],[20,191]],[[[288,[-1]]],245,[20,191]],[[[288,[-1]]],246,[20,191]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,[[288,[-1]]],[]],[[[288,[-1]],-2],[[288,[-1]]],[],[[62,[220]]]],0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[289,289],[[-1,-2],15,[],[]],[-1,-2,[],[]],[[],289],[14,-1,[]],[14,-1,[]],[14,15],[[289,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[-1,289,93],93,213],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[289,13],[[],289],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[290,[-1,-2,-3]],164],[[290,[-1,-2,-3]]],[],[165,291],166],[[[290,[-1,-2,-3]],167],[[290,[-1,-2,-3]]],[],[165,291],166],[[[165,[],[[160,[-1]]]],-1],126,42],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[[290,[-1,-2,-3]]],[[290,[-1,-2,-3]]],[],[165,291],166],[[[290,[-1,-2,-3]]],[[290,[-1,-2,-3]]],[],[165,291],166],[[[290,[-1,-2,-3]]],[[3,[181]]],[],[165,291,20],166],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[[[290,[-1,-2,-3]],181],15,[],[165,291,20],166],[[[290,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,[],[165,291,20],166],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[290,[-1,-2,-3]],220],[[290,[-1,-2,-3]]],[],[165,291],166],0,[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[290,[-1,-2,-3]],144],[[290,[-1,-2,-3]]],[],[165,291],166],[-3,[[290,[-1,-2,241]]],[],[165,291],[[62,[[192,[-1,-2,241]]]]]],[[[290,[-1,-2,-3]],181,-3,94],224,[],[165,291,20],166],[[[290,[-1,-2,-3]],80],[[290,[-1,-2,-3]]],[],[165,291],166],[[[290,[-1,-2,-3]],80],[[290,[-1,-2,-3]]],[],[165,291],166],[[[290,[-1,-2,-3]],181,201,202,195,-3],226,[],[165,291,20],166],[[[290,[-1,-2,-3]],181,234,201,202,-3,235,[236,[-1]],195],237,[],[165,291,20],166],[[[290,[-1,-2,-3]],181,201,-3,53],15,[],[165,291,20],166],[[[290,[-1,-2,-3]],181,201,-3],[[57,[[239,[-1,-2,-3]]]]],[],[165,291,20],166],[[[290,[-1,-2,-3]],-4],[[290,[-1,-2,-3]]],[],[165,291],166,[[62,[240]]]],0,[[[290,[-1,-2,-3]]],[[93,[220]]],[],[165,291,20],166],[[[290,[-1,-2,-3]]],245,[],[165,291,20],166],[[[290,[-1,-2,-3]],-4],[[290,[-1,-2,-3]]],[],[165,291],166,62],[[[290,[-1,-2,-3]]],246,[],[165,291,20],166],0,[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[290,[-1,-2,-3]],220],[[290,[-1,-2,-3]]],[],[165,291],166],0,0,[-2,[[163,[-1,82,241]]],[],[[62,[[12,[-1]]]]]],0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[22,[-1]],-2],[[22,[-1]]],[],[[62,[[12,[-1]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[22,[-1]]],[]],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[22,[-1]]],[[12,[-1]]],[]],[-1,-2,[],[]],[[],[[22,[-1]]],[]],[[],[[22,[-1]]],[]],[[[22,[-1]],-2],[[22,[-1]]],[],[[62,[240]]]],[[[22,[-1]],256],[[22,[-1]]],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[292,292],[293,293],[294,294],[295,295],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[14,15],[14,15],[[292,16],72],[[293,16],72],[[294,16],72],[[295,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[[296,[],[[67,[-1]]]],[57,[297]]],-1,[]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[298,298],[299,299],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[298,298],300],[[299,299],300],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[298,298],13],[[299,299],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[298,16],72],[[299,16],72],[[299,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[298,-1],15,101],[[299,-1],15,101],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[299,301,302],13],0,[[298,298],[[57,[300]]]],[[299,299],[[57,[300]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,303,[]],[-1,61,[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[304,[-1,-2]],256],[[304,[-1,-2]]],[],166],[[[304,[-1,-2]]],[[3,[181]]],[],166],[[[304,[-1,-2]],292],[[304,[-1,-2]]],[],166],[-1,-2,[],[]],[[[304,[-1,-2]],262],[[304,[-1,-2]]],[],166],[14,-1,[]],[14,-1,[]],[[[304,[-1,-2]],181],15,[],166],[[[304,[-1,-2]],181,-2,82,200,201,202,195],15,[],166],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[304,[-1,-2]],220],[[304,[-1,-2]]],[],166],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[304,[-1,-2]],294],[[304,[-1,-2]]],[],166],[[[304,[-1,-2]],293],[[304,[-1,-2]]],[],166],[[[304,[-1,-2]],181,-2,94],224,[],166],[[[304,[-1,-2]],262],[[304,[-1,-2]]],[],166],[[[3,[[305,[-1,-2]]]]],[[304,[-1,-2]]],[],166],[[[304,[-1,-2]],181,234,201,202,-2,235,[236,[-1]],195],237,[],166],[[[304,[-1,-2]],181,201,-2],[[57,[[239,[-1,82,-2]]]]],[],166],[[[304,[-1,-2]],-3],[[304,[-1,-2]]],[],166,[[62,[240]]]],[[[304,[-1,-2]],[57,[295]]],[[304,[-1,-2]]],[],166],[[[304,[-1,-2]]],[[93,[220]]],[],166],[[[304,[-1,-2]],80],[[304,[-1,-2]]],[],166],[[[304,[-1,-2]]],245,[],166],[[[304,[-1,-2]],-3],[[304,[-1,-2]]],[],166,62],[[[304,[-1,-2]]],246,[],166],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[304,[-1,-2]],220],[[304,[-1,-2]]],[],166],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[-1,-1,[]],[[[192,[-1,82,-2]]],[[305,[-1,-2]]],[],166],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[305,[-1,-2]],256],[[305,[-1,-2]]],[],166],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[306,[299,-2]],[3,[[307,[-2,-3]]]]],[[3,[[305,[-1,-4]]]]],[],[[296,[],[[67,[-1]]]]],[[62,[[103,[36]]]]],166],[-1,[[254,[-2,82,-3]]],[[62,[[103,[36]]]]],[],166],[-3,[[305,[-1,-2]]],[],166,[[62,[[192,[-1,82,-2]]]]]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[305,[-1,-2]],256],[[305,[-1,-2]]],[],166],[[-3,[3,[-4]]],[[305,[-1,-2]]],[],166,[[62,[[192,[-1,82,-2]]]]],[[62,[[305,[-1,-2]]]]]],0,0,[308,[[163,[-1,82,241]]],20],[82,126],0,[[[32,[-1]],13],[[32,[-1]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[32,[-1]]],[]],[[[32,[-1]],-1],[[32,[-1]]],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[227,[-1]],228,309],[[57,[228]]],[]],[[[310,[-1,-2,-3]]],[[310,[-1,-2,-3]]],[],165,166],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[311,201,279],13],[[[229,[-1,-2,-3]],201,279],13,[],165,166],[141,141],[142,142],[312,312],[[[313,[-1]]],[[313,[-1]]],20],[309,309],[314,314],[228,228],[315,315],[[[227,[-1]]],[[227,[-1]]],20],[233,233],[316,316],[317,317],[318,318],[238,238],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[[227,[-1]],228],[[57,[[15,[-1,228]]]]],[]],[[228,228],300],[[315,315],300],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[310,[-1,-2,-3]],-4],[[310,[-1,-2,-3]]],[],165,166,[[62,[[192,[-1,-2,-3]]]]]],[[],317],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[319,314,201,202,-1,-2,200,195,80,[57,[80]],-4,-5],15,166,189,[],[[108,[],[[10,[[15,[228,-3]]]]]]],[[46,[-3,-1,200,201,202,195]]]],[[[229,[-1,-2,-3]],181,-3,-2,200,201,202,195],15,[],165,166],[[[310,[-1,-2,-3]],181,-3,-2,200,201,202,195,13],15,[],165,166],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[[[227,[-1]],228,316],15,[]],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[[142,142],13],[[312,312],13],[[309,309],13],[[228,228],13],[[315,315],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[141,16],[[18,[15,17]]]],[[142,16],[[18,[15,17]]]],[[312,16],[[18,[15,17]]]],[[[313,[-1]],16],[[18,[15,17]]],59],[[309,16],[[18,[15,17]]]],[[314,16],[[18,[15,17]]]],[[228,16],[[18,[15,17]]]],[[315,16],[[18,[15,17]]]],[[[227,[-1]],16],[[18,[15,17]]],59],[[233,16],[[18,[15,17]]]],[[316,16],[[18,[15,17]]]],[[317,16],[[18,[15,17]]]],[[318,16],[[18,[15,17]]]],[[238,16],[[18,[15,17]]]],[[[320,[-1]],16],[[18,[15,17]]],59],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-4,[[229,[-1,-2,-3]]],[],165,166,[[62,[[192,[-1,-2,-3]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[227,[-1]],228],[[57,[-1]]],[]],[[[227,[-1]],228],[[57,[-1]]],[]],[[312,-1],15,101],[[314,-1],15,101],[[228,-1],15,101],[[315,-1],15,101],[[[189,[],[[160,[-1]]]],-1],141,42],[[[189,[],[[160,[-1]]]],-1],[[57,[142]]],42],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[227,[-1]]],13,[]],[[[310,[-1,-2,-3]],201,279],13,[],165,166],[[[227,[-1]]],[[0,[[108,[],[[10,[[15,[228,-1]]]]]]]]],[]],[[[320,[-1]]],[[44,[108]]],[]],[[[227,[-1]]],[[0,[[108,[],[[10,[[15,[228,-1]]]]]]]]],[]],[[181,-1,94,314,220,220,80,-3,-4],224,[],[],[[108,[],[[10,[[15,[228,-2]]]]]]],[[46,[-2,181,-1,94],[[8,[224]]]]]],[[[227,[-1]]],314,[]],[[[320,[-1]]],314,[]],[[[227,[-1]]],14,[]],[[[227,[-1]],228],15,[]],[[[227,[-1]]],[[57,[228]]],[]],[[319,314,201,202,80,[57,[80]]],[[57,[226]]]],[[[227,[-1]],228,318],15,[]],[-4,[[229,[-1,-2,-3]]],[],165,166,[[62,[[192,[-1,-2,-3]]]]]],[-4,[[310,[-1,-2,-3]]],[],165,166,[[62,[[192,[-1,-2,-3]]]]]],[-1,[[15,[[227,[-1]],228]]],[]],[[[310,[-1,-2,-3]],-4],[[310,[-1,-2,-3]]],[],165,166,[[62,[240]]]],[[314,80,93],[[321,[228,195]]]],0,[[228,228],[[57,[300]]]],[[315,315],[[57,[300]]]],[[[189,[],[[160,[-1]]]],-1],[[57,[142]]],42],0,[[[227,[-1]],315,80],15,[]],[[[227,[-1]]],15,[]],[[312,195,80,80],[[15,[195,195]]]],[[[227,[-1]],312,228,-1],[[57,[[15,[228,315]]]]],[]],0,[[312,195,80,80],195],[[314,80,93],[[321,[315,[15,[312,195,80]]]]]],[[[227,[-1]],228,228,317],15,[]],[314,[[0,[[108,[],[[10,[315]]]]]]]],0,[[[229,[-1,-2,-3]],-4],[[229,[-1,-2,-3]]],[],165,166,62],[[[310,[-1,-2,-3]],-4],[[310,[-1,-2,-3]]],[],165,166,62],[[[227,[-1]],228,228],15,[]],[[[229,[-1,-2,-3]],[310,[-1,-2,-3]]],[[229,[-1,-2,-3]]],[],165,166],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[319,314,234,201,202,[236,[-1]],80,-3,[57,[[44,[46]]]],[57,[[44,[46]]]],[57,[[15,[80,[44,[46]]]]]]],237,[],311,[[108,[],[[10,[[15,[228,-2]]]]]]]],0,[-2,[[227,[-1]]],[],[[62,[[313,[-1]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[319,[[57,[[15,[228,279]]]]]],[322,322],[319,319],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[319,319],13],[[322,16],[[18,[15,17]]]],[[319,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[306,[228,-1]],[313,[-1]],14],322,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],14],[[],14],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[322,314],0,[319,[[57,[[15,[228,279]]]]]],[319,[[57,[[15,[315,312]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[165,[],[[160,[-1]]]],-1],126,42],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[323,[-1,-2]]],[[3,[181]]],[],166],[324,324],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],324],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[323,[-1,-2]],181],15,[],166],[[[323,[-1,-2]],181,-2,82,200,201,202,195],15,[],166],[[[325,[-1,-2]],-2,82,200,201,202],15,[],166],[14,15],[14,15],[14,15],[[324,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[323,[-1,-2]],181,-2,94],224,[],166],[[[325,[-1,-2]],-2,93,279,244],224,[],166],[[[323,[-1,-2]],181,201,202,195,-2],226,[],166],[[[325,[-1,-2]],201,202,195,-2],226,[],166],[-3,[[323,[-1,-2]]],[],[],[[62,[[192,[-1,82,-2]]]]]],[[[323,[-1,-2]],181,234,201,202,-2,235,[236,[-1]],195],237,[],166],[[[325,[-1,-2]],234,201,202,-2,235,[236,[-1]]],237,[],166],[[[323,[-1,-2]],181,201,-2,53],15,[],166],[[[325,[-1,-2]],201,-2,53],15,[],166],[[[323,[-1,-2]],181,201,-2],[[57,[[239,[-1,82,-2]]]]],[],166],[-3,[[323,[-1,-2]]],[],[],[[62,[[192,[-1,82,-2]]]]]],[[[323,[-1,-2]],-3],[[323,[-1,-2]]],[],[],[[62,[[192,[-1,82,-2]]]]]],[[[323,[-1,-2]],324],[[323,[-1,-2]]],[],[]],0,[[[323,[-1,-2]]],[[93,[220]]],[],166],0,[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[204,[],[[160,[-1]]]],-1],128,42],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[128,128],[[-1,-2],15,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[128,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[[[206,[],[[160,[-1]]]],-1,13],109,42],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[109,109],[[-1,-2],15,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],0,[14,15],[[109,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[206,[],[[160,[-1]]]],-1,13],109,42],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[326,[-1,-2,-3]],164],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],167],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],[[[165,[],[[160,[-1]]]],-1],126,42],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[326,[-1,-2,-3]]],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]]],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]]],[[3,[181]]],[],166,[191,171,60,48,59]],[[[327,[-1]]],[[327,[-1]]],[191,171,60,48,59,20]],[[[328,[-1]]],[[328,[-1]]],20],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[328,[-1]],-1,-3],[[326,[-2,241,-1]]],[191,171,60,48,59],[],[[62,[[192,[-2,82,241]]]]]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[326,[-1,-2,-3]],181],15,[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],181],15,[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],181,-2,82,200,201,202,195],15,[],166,[191,171,60,48,59]],[14,15],[14,15],[14,15],[14,15],[[[327,[-1]],16],72,[191,171,60,48,59,59]],[[[328,[-1]],16],72,59],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[326,[-1,-2,-3]],220],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],0,[[[326,[-1,-2,-3]],13],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[326,[-1,-2,-3]],181,-2,94],224,[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],80],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],80],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],181,201,202,195,-2],226,[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],181,234,201,202,-2,235,[236,[-1]],195],237,[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],181,201,-2,53],15,[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],181,201,-2],[[57,[[239,[-1,82,-2]]]]],[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],-4],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59],[[62,[240]]]],[[-2,-3,[329,[[15,[-3,195]]]]],[[326,[-1,241,-3]]],[],[[62,[[192,[-1,82,241]]]]],[191,171,60,48,59]],[-1,[[81,[[15,[-1,[327,[-2]]]]]]],[191,171,60,48,59],[191,171,60,48,59,231]],0,[[[326,[-1,-2,-3]]],[[93,[220]]],[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]]],245,[],166,[191,171,60,48,59]],[[[326,[-1,-2,-3]],-4],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59],62],[-1,[[81,[[15,[-1,[327,[-2]]]]]]],[191,171,60,48,59],[191,171,60,48,59,231]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[326,[-1,-2,-3]],220],[[326,[-1,-2,-3]]],[],166,[191,171,60,48,59]],0,[[[330,[-1]],[3,[-2]]],[[330,[-1]]],[],[[62,[[12,[-1]]]]]],[[[330,[-1]],-2],[[330,[-1]]],[],[[62,[[12,[-1]]]]]],[[],[[330,[-1]]],[]],[14,[[330,[-1]]],[]],[[[3,[[12,[-1]]]]],[[330,[-1]]],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[331,297],15],[[[332,[-1]]],[[332,[-1]]],42],[[[333,[-1]]],[[333,[-1]]],42],[[[335,[334]],297],15],[[[335,[336]],297],15],[[[335,[-1]],297],15,42],[[[335,[-1]],256],13,42],[[[335,[336]]],297],[[[335,[334]]],[[0,[[108,[],[[10,[297]]]]]]]],0,0,0,[[[335,[336]]],[[57,[-1]]],[]],[[[335,[336]]],[[57,[-1]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[337,[-1]]],[[335,[-1]]],42],[[],[[337,[-1]]],42],[[[41,[-1,-2,-3]],284],[[41,[-1,-2,-3]]],[],42,[]],[[[41,[-1,-2,-3]],256],[[41,[-1,-2,-3]]],[],42,[]],[[[41,[-1,-2,-3]],[169,[256]]],[[41,[-1,-2,-3]]],[],42,[]],[[[41,[-1,-2,-3]],256],[[41,[-1,-2,-3]]],[],42,[]],[[[335,[-1]]],15,42],[297,297],[140,140],[338,338],[339,339],[218,218],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[[332,[-1]]],[[332,[-1]]],42],[[[333,[-1]]],[[333,[-1]]],42],[[[335,[-1]],297,13],15,42],[[[41,[-1,-2,-3]],31],[[41,[-1,-2,-3]]],[],42,[]],[[297,297],300],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[335,[-1]],297],13,42],[[[332,[-1]],-2],[[332,[-1]]],42,[]],[[[333,[-1]],-2],[[333,[-1]]],42,[]],[297,340],[[[335,[-1]],297],[[57,[-2]]],42,[]],[[[335,[-1]],297],[[57,[-2]]],42,[]],[[[335,[-1]],297],15,42],[[[335,[-1]],297,-2],15,42,[]],[[331,297],15],[[[335,[334]],297],15],[[[335,[334]],297],15],[[[335,[336]],297],15],[[[335,[336]]],15],[[],[[337,[-1]]],[42,42]],[[],336],[[],334],[[],297],[[],[[335,[-1]]],[42,42]],[[],140],[[],338],[[],339],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[41,[-1,-2,-3]],181],15,[],42,20],[[[41,[-1,-2,-3]],13],[[41,[-1,-2,-3]]],[],42,[]],[[[41,[-1,-2,-3]],181,241,82,200,201,202,195],15,[],42,20],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[14,15],[[[335,[-1]],297,13],15,42],[[[335,[-1]],256],[[57,[297]]],42],[[297,297],13],[[218,218],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],0,[[336,16],72],[[334,16],72],[[297,16],72],[[218,16],72],[218,[[1,[-1]]],[]],0,[[[41,[-1,-2,-3]],[57,[92]]],[[41,[-1,-2,-3]]],[],42,[]],[[[41,[-1,-2,-3]],[57,[92]]],[[41,[-1,-2,-3]]],[],42,[]],[[[41,[-1,-2,-3]],[57,[92]]],[[41,[-1,-2,-3]]],[],42,[]],[[[41,[-1,-2,-3]],80],[[41,[-1,-2,-3]]],[],42,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[340,297],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[297,-1],15,101],[[[41,[-1,-2,-3]],220],[[41,[-1,-2,-3]]],[],42,[]],[[[335,[-1]]],[[41,[0,-1,-2]]],42,[]],[[[341,[],[[160,[-1]]]],-1],140,42],0,[[[332,[-1]],31],[[332,[-1]]],42],[[[333,[-1]],31],[[333,[-1]]],42],[[[335,[-1]],297],[[57,[31]]],42],[[[335,[-1]],297],[[57,[31]]],42],[[[335,[-1]],297,31],[[57,[31]]],42],[[[333,[-1]]],297,42],[[[41,[-1,-2,-3]],[57,[218]]],[[41,[-1,-2,-3]]],[],42,[]],0,[[[333,[-1]],256],[[333,[-1]]],42],[[[335,[-1]],297],[[57,[256]]],42],[[[335,[-1]],297],[[57,[256]]],42],[[[335,[-1]],297,256],[[57,[256]]],42],[[[41,[-1,-2,-3]],256],[[41,[-1,-2,-3]]],[],42,[]],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[[337,[-1]],-2],[[337,[-1]]],42,[[46,[[332,[-1]]],[[8,[[332,[-1]]]]]]]],[[[335,[-1]]],[[333,[-1]]],42],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[331,297],13],[[[335,[334]],297],13],[[[335,[-1]],297],13,42],[[[335,[336]],297],13],[[[335,[-1]],297],13,42],[[[335,[-1]],297],13,42],[[[335,[-1]]],[[0,[[108,[],[[10,[297]]]]]]],42],0,[[[41,[-1,-2,-3]],181,241,94],224,[],42,20],[[[41,[-1,-2,-3]],225],[[41,[-1,-2,-3]]],[],42,[]],[[[41,[-1,-2,-3]],256],[[41,[-1,-2,-3]]],[],42,[]],0,[[[41,[-1,-2,-3]],256],[[41,[-1,-2,-3]]],[],42,[]],[[[41,[-1,-2,-3]],181,201,202,195,241],226,[],42,20],[[[335,[-1]]],[[41,[-2,-1,-3]]],42,[],[]],[-1,218,[[62,[[103,[36]]]]]],[[[41,[-1,-2,-3]],-4],[[41,[-1,-2,-3]]],[],42,[],[[46,[297],[[8,[-3]]]]]],[[[41,[-1,-2,-3]],-4],[[41,[-1,-2,-3]]],[],42,[],[[46,[297],[[8,[-3]]]]]],[[[41,[-1,-2,-3]],181,234,201,202,241,235,[236,[-3]],195],237,[],42,20],[[[41,[-1,-2,-3]],181,201,241,53],15,[],42,20],[[[41,[-1,-2,-3]],181,201,241],[[57,[[239,[-3,82,241]]]]],[],42,20],[[[41,[-1,-2,-3]],-4],[[41,[-1,-2,-3]]],[],42,[],[[62,[240]]]],[[297,297],[[57,[300]]]],[[[332,[-1]],256],[[332,[-1]]],42],[[[333,[-1]],256],[[333,[-1]]],42],[[[335,[-1]],297],[[57,[256]]],42],[[[335,[-1]],297,256],[[57,[14]]],42],[[[332,[-1]],297],[[332,[-1]]],42],[[[333,[-1]],297],[[333,[-1]]],42],[[[335,[-1]],297,297],13,42],[[[335,[-1]],297],15,42],[[[41,[-1,-2,-3]],13],[[41,[-1,-2,-3]]],[],42,[]],[[[332,[-1]],[342,[297,-2]],-2],[[332,[-1]]],42,[]],[[[333,[-1]],[342,[297,-2]],-2],[[333,[-1]]],42,[]],[[[332,[-1]],[343,[297,-2]],-2],[[332,[-1]]],42,[]],[[[333,[-1]],[343,[297,-2]],-2],[[333,[-1]]],42,[]],[[[41,[-1,-2,-3]],13],[[41,[-1,-2,-3]]],[],42,[]],[[[41,[-1,-2,-3]]],[[93,[220]]],[],42,20],[[[41,[-1,-2,-3]],256],[[41,[-1,-2,-3]]],[],42,[]],[[[41,[-1,-2,-3]]],245,[],42,20],[[[41,[-1,-2,-3]],-4],[[41,[-1,-2,-3]]],[],42,[],[[62,[146]]]],[[[41,[-1,-2,-3]]],246,[],42,20],[[[332,[-1]],-2],[[332,[-1]]],42,[[62,[[103,[36]]]]]],[[[333,[-1]],-2],[[333,[-1]]],42,[[62,[[103,[36]]]]]],[[[335,[-1]],297],[[57,[36]]],42],0,[[[335,[-1]],297],[[57,[[103,[36]]]]],42],[[[335,[-1]],297,-2],[[57,[[103,[36]]]]],42,[[62,[[103,[36]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],218],[[82,146],140],[[82,146],140],[[82,146],140],0,0,0,0,0,0,[[[335,[-1]]],[[41,[0,-1,-2]]],42,[]],[[[341,[],[[160,[-1]]]],-1],140,42],[[[41,[-1,-2,-3]],220],[[41,[-1,-2,-3]]],[],42,[]],[[[332,[-1]],-2],[[332,[-1]]],42,[[6,[297]]]],[[[333,[-1]],-2],[[333,[-1]]],42,[[6,[297]]]],[[[335,[-1]]],[[345,[-1,-2]]],42,[]],[[[335,[-1]]],[[346,[-1,-2]]],42,[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[23,[-1]],-2],[[23,[-1]]],[],[[62,[[12,[-1]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[3,[[12,[-1]]]]],[[272,[-1]]],[]],[-1,[[23,[-2]]],[[62,[[103,[36]]]]],[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[347,[-2]]],[[62,[[103,[36]]]]],[]],[-1,-2,[],[]],[[[347,[-1]],-2],[[330,[-1]]],[],[[62,[[12,[-1]]]]]],[14,-1,[]],[14,-1,[]],[[[347,[-1]],-2],[[347,[-1]]],[],[[62,[[103,[36]]]]]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[347,[-1]],-2],[[347,[-1]]],[],[[62,[[12,[-1]]]]]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-3],[[330,[-2]]],[[62,[[103,[36]]]]],[],[[62,[[12,[-2]]]]]],[[[3,[[12,[-1]]]]],[[330,[-1]]],[]],[[[347,[-1]],[103,[36]]],[[347,[-1]]],[]],[[[347,[-1]],13,-2],[[330,[-1]]],[],[[46,[13],[[8,[-1]]]]]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[[175,[],[[160,[-1]]]],-1],118,42],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[348,348],[349,349],[350,350],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],350],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[175,[],[[160,[-1]]]],-1],118,42],[[-1,201,202,350,-2,[230,[-2]],[84,[-2]],-3],15,166,[[62,[91]],171],175],[14,15],[14,15],[14,15],[[350,350],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[348,16],[[18,[15,17]]]],[[349,16],[[18,[15,17]]]],[[350,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[175,[],[[160,[-1]]]],-1],118,42],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[201,202,350],226],[[],350],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[234,201,202,[236,[-1]],350,-2,[230,[-2]],-2,46,[57,[-1]]],237,20,[171,[62,[91]],207]],0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[351,351],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[352,[262]]]],[[],[[352,[353]]]],[[],[[352,[77]]]],[[],[[352,[354]]]],[[],[[352,[14]]]],[[],[[352,[355]]]],[[],[[352,[256]]]],[[],[[352,[356]]]],[[],[[352,[217]]]],[[],[[352,[172]]]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[14,15],[[351,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[351,-1],15,101],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[28,[-1]]],[[12,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[352,[-1]],-2],[[352,[-1]]],[],[[62,[-1]]]],0,[[[352,[-1]],-2],[[352,[-1]]],[],[[62,[-1]]]],0,[[-1,-3],[[28,[-2]]],[[62,[[103,[36]]]]],[],[[46,[351],[[8,[-2]]]]]],[[-1,-3],[[28,[-2]]],[[62,[[103,[36]]]]],[],[[46,[351],[[8,[-2]]]]]],[[[352,[-1]],-2],[[352,[-1]]],[],[[62,[-1]]]],0,[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[352,[-1]],351],15,[171,191,[357,[],[[8,[]]]],[358,[],[[8,[]]]],359]],[[[352,[-1]],-2],[[352,[-1]]],[],[[62,[-1]]]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[[199,[],[[160,[-1]]]],-1],123,42],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[123,123],[232,232],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[232,360],[[],123],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[232,232],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[123,16],[[18,[15,17]]]],[[232,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,232,[[62,[[103,[[84,[172]]]]]]]],[-1,232,[[62,[219]]]],[-1,-2,[],[]],[-1,-2,[],[]],[[232,-1],15,101],[[[199,[],[[160,[-1]]]],-1],123,42],[232,217],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[335,[-1]]],[[345,[-1,-2]]],42,[]],[[[335,[-1]]],[[346,[-1,-2]]],42,[]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,[[361,[82,241]]],[[62,[[103,[36]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[361,[82,241]]],[[62,[[103,[36]]]]]],[-1,[[361,[82,241]]],[[62,[[103,[36]]]]]],[362,362],[[-1,-2],15,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[362,362],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[362,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[362,-1],15,101],[-1,[[361,[82,241]]],[[62,[[103,[36]]]]]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[361,[82,241]]],[[62,[[103,[36]]]]]],[-1,[[361,[82,241]]],[[62,[[103,[36]]]]]],[-1,[[361,[82,241]]],[[62,[[103,[36]]]]]],[-1,[[361,[82,241]]],[[62,[[103,[36]]]]]],[-1,[[361,[82,241]]],[[62,[[103,[36]]]]]],[-1,[[361,[82,241]]],[[62,[[103,[36]]]]]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,[[[363,[],[[160,[-1]]]],-1],116,42],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[364,[-1]]],[[3,[181]]],20],[365,365],[366,366],[116,116],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[366,367],[[],366],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[364,[-1]],181],15,20],0,[[[363,[],[[160,[-1]]]],-1],116,42],[[[364,[-1]],13],[[364,[-1]]],20],[[241,82,201,202,181,368,36,[57,[80]],57,13,13,[57,[[192,[-1,82,241]]]],[57,[[192,[-1,82,241]]]],13,225,[57,[36]],[57,[36]],[57,[36]],80,225,195,200],15,[]],[[[364,[-1]],181,241,82,201,202,[57,[368]],200],15,20],[[[364,[-1]],181,241,82,200,201,202,195],15,20],[14,15],[14,15],[14,15],[14,15],0,[[[363,[],[[160,[-1]]]],-1],116,42],[[[364,[-1]],36],[[364,[-1]]],20],[[365,16],72],[[366,16],72],[[116,16],72],[193,[[1,[-1]]],[]],[366,15],[366,15],[[[363,[],[[160,[-1]]]],-1],116,42],[13,366],[[[364,[-1]]],[[364,[-1]]],20],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[364,[-1]],36],[[364,[-1]]],20],0,[[[363,[],[[160,[-1]]]],-1],116,42],[[[363,[],[[160,[-1]]]],-1],116,42],0,[[[364,[-1]],193],[[364,[-1]]],20],[[],14],[[],14],[[],14],[[],14],[-1,[[364,[-2]]],[[62,[[103,[36]]]]],20],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[366,13],[366,13],0,[[[364,[-1]],36],[[364,[-1]]],20],0,0,[[241,94,220,240,[57,[80]],[57,[[192,[-1,82,241]]]],[57,[[192,[-1,82,241]]]],225,[57,[36]],[57,[36]],80,225,92,181],224,[]],[[[364,[-1]],181,241,94],224,20],[[[364,[-1]],[192,[-1,82,241]]],[[364,[-1]]],20],[[[364,[-1]],-2],[[364,[-1]]],20,[[62,[225]]]],[[201,202,13],226],[[[364,[-1]],181,201,202,195,241],226,20],[[193,14],[[1,[-1]]],[]],[[366,14],15],[[366,14],15],[193,[[1,[-1]]],[]],[366,15],[366,15],[193,[[1,[-1]]],[]],[366,15],[366,15],[[-1,-2],[[364,[-3]]],[[62,[[103,[36]]]]],[[62,[[103,[36]]]]],20],[13,366],[[[364,[-1]],-1],[[364,[-1]]],20],[[[364,[-1]],181,234,201,202,241,235,[236,[-1]],195],237,20],[[[364,[-1]],-2],[[364,[-1]]],20,[[46,[61],[[8,[-1]]]]]],[[[364,[-1]],-2],[[364,[-1]]],20,[[46,[61],[[8,[-1]]]]]],[[[364,[-1]],-1],[[364,[-1]]],20],[[[364,[-1]],[57,[-1]]],[[364,[-1]]],20],[[[364,[-1]],181,201,241,53],15,20],[[[364,[-1]],181,201,241],[[57,[[239,[-1,82,241]]]]],20],[[[364,[-1]],-2],[[364,[-1]]],20,[[62,[240]]]],[[[364,[-1]]],[[364,[-1]]],20],0,0,[[-1,-2],[[364,[-3]]],[[62,[[103,[36]]]]],[[62,[[103,[36]]]]],20],[[-1,-2,[57,[-3]],13],[[364,[-3]]],[[62,[[103,[36]]]]],[[62,[[103,[36]]]]],20],[193,[[1,[-1]]],[]],[366,15],[366,15],0,[[366,36],[[57,[61]]]],0,[[[364,[-1]],-2],[[364,[-1]]],20,[[62,[221]]]],[[[364,[-1]]],[[93,[220]]],20],[[[364,[-1]]],245,20],[[[364,[-1]],-2],[[364,[-1]]],20,62],[[[364,[-1]],[15,[73,73]]],[[364,[-1]]],20],[[[364,[-1]]],246,20],0,[[-1,-2],[[364,[-3]]],[[62,[[103,[36]]]]],[[62,[[103,[36]]]]],20],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[364,[-1]],[192,[-1,82,241]]],[[364,[-1]]],20],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[366,15],[366,15],[[234,201,202,235,[236,[-1]],368,80,13,[57,[46]],[57,[46]],[57,[-1]],-2,[57,[46]],13,[57,[46]],[57,[[15,[73,73]]]],225,201],237,20,[[6,[],[[8,[366]]]]]],0,0,[[[364,[-1]],-2],[[364,[-1]]],20,[[62,[220]]]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[367,367],[369,369],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],367],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,15],[14,15],[[367,16],72],[[369,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[367,368],[[57,[[15,[14,14]]]]]],[[367,368],369],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[370,15],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[370,61],[370,15],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[[370,371],15],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[368,367],370],[[370,368],15],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[368,368],[[-1,-2],15,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[368,16],72],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[[368,14,371],15],[[368,14,368],15],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[368,13],[368,14],[36,368],[[368,14],14],[[368,14],14],[[368,14],15],[[368,14,14],15],[368,368],[[368,14,14],368],[-1,-2,[],[]],[368,61],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[368,14],368],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[372,372],[[-1,-2],15,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[[372,372],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[372,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-2,-3,372],[[373,[-1]]],[],[[62,[[12,[-1]]]]],[[62,[[103,[36]]]]]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,[[[175,[],[[160,[-1]]]],-1],118,42],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],[-1,9,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[118,118],[374,374],[375,375],[376,376],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],[[-1,-2],15,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],376],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[14,-1,[]],[[[175,[],[[160,[-1]]]],-1],118,42],[[-1,201,202,376,-2,[230,[-2]],-3],15,166,[[62,[91]],171],175],[14,15],[14,15],[14,15],[14,15],[[376,376],13],[[-1,-2],13,[],[]],[[-1,-2],13,[],[]],[[118,16],[[18,[15,17]]]],[[374,16],[[18,[15,17]]]],[[375,16],[[18,[15,17]]]],[[376,16],[[18,[15,17]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[175,[],[[160,[-1]]]],-1],118,42],[[],14],[[],14],[[],14],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[201,202,376],226],[[],376],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[234,201,202,[236,[-1]],376,-2,[230,[-2]],-2,46,[57,[-1]]],237,20,[171,[62,[91]],207]],0,0,0,0,[[-1,-3],-4,[],[],[[4,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,9,[]],[-1,9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,-1,[]],[14,-1,[]],[14,15],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],14],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[-1]]],[[44,[9]]],[]],[[[74,[-1]]],[[74,[9]]],[]],[[[45,[-1]]],[[45,[9]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[34,[-1]]],[[163,[-1,82,241]]],20],[[[34,[-1]],-1],[[34,[-1]]],20],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2]]],[],[]],[-1,[[18,[-2,[51,[-2]]]]],[],[]],[-1,52,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[34,[-2]]],[[62,[[103,[36]]]]],[]],[82,126]],"c":[],"p":[[5,"Command",0],[6,"Action",7792],[5,"Vec",7793],[10,"TransformMatrix",7794],[10,"Also",0],[10,"FnOnce",7795],[10,"Apply",0],[17,"Output"],[10,"Any",7796],[17,"Item"],[10,"IntoIterator",7797],[8,"Element",0],[1,"bool"],[1,"usize"],[1,"tuple"],[5,"Formatter",7798],[5,"Error",7798],[6,"Result",7799],[5,"Calendar",2882],[10,"Clone",7800],[8,"ImageButton",2645],[5,"ListColumn",4477],[5,"Section",6669],[5,"HeaderBar",1738],[5,"FlexRow",3875],[5,"Dialog",3406],[8,"Button",2846],[5,"SpinButton",6885],[5,"ContextDrawer",3364],[8,"TextButton",2645],[5,"Icon",4018],[5,"NavBarToggle",4896],[5,"Grid",3925],[5,"Warning",7757],[5,"Dropdown",3703],[1,"str"],[10,"AsRef",7801],[10,"PartialEq",7802],[5,"Dropdown",3452],[5,"Named",4018],[5,"SegmentedButton",6110],[10,"Default",7803],[8,"IconButton",2645],[5,"Box",7804],[5,"Rc",7805],[10,"Fn",7795],[10,"MaybeSend",7806],[10,"Sync",7807],[10,"Future",7808],[10,"Stream",7809],[5,"OutOfBounds",7810],[5,"TypeId",7796],[10,"Operation",1738],[17,"SubCommand"],[17,"Args"],[10,"CosmicFlags",95],[6,"Option",7811],[10,"ToString",7812],[10,"Debug",7798],[10,"Send",7807],[5,"String",7812],[10,"Into",7801],[5,"Core",95],[6,"DbusActivationDetails",95],[17,"Executor"],[17,"Flags"],[17,"Message"],[10,"Application",95],[10,"Executor",7813],[10,"ApplicationExt",95],[6,"Message",353],[8,"Result",7798],[5,"Id",7814],[5,"Arc",7815],[8,"Model",4892],[8,"Id",4892],[1,"u32"],[5,"Settings",394],[8,"Result",7816],[1,"f32"],[5,"Subscription",7817],[5,"Theme",700],[5,"ThemeMode",7818],[1,"slice"],[5,"Theme",7819],[5,"Update",7820],[10,"CosmicConfigEntry",7820],[8,"Command",241],[6,"Message",254],[5,"Cosmic",254],[1,"f64"],[5,"Font",571],[5,"Size",7821],[5,"Limits",7822],[5,"CosmicTk",450],[5,"Config",7820],[6,"Error",7820],[5,"Executor",503],[5,"Error",7823],[5,"Executor",537],[10,"Hasher",7824],[6,"Error",7825],[6,"Cow",7826],[6,"Message",632],[10,"CollectionWidget",679],[10,"ColorExt",679],[10,"ElementExt",679],[10,"Iterator",7827],[5,"Appearance",5888],[5,"Appearance",2957],[5,"Appearance",2645],[5,"Appearance",7828],[5,"Scrollbar",7829],[5,"Appearance",3452],[5,"Appearance",7830],[5,"Appearance",7152],[5,"Appearance",7831],[5,"Appearance",7591],[5,"Appearance",7832],[6,"ThemeType",700],[5,"Appearance",7833],[5,"Appearance",3586],[5,"Appearance",7006],[5,"Appearance",7834],[5,"Appearance",1659],[5,"Appearance",3314],[5,"Appearance",7835],[5,"Appearance",5846],[5,"Appearance",7836],[5,"Container",7837],[8,"CosmicTheme",700],[5,"Appearance",2918],[5,"COSMIC_DARK",700],[5,"COSMIC_HC_DARK",700],[5,"COSMIC_LIGHT",700],[5,"COSMIC_HC_LIGHT",700],[5,"TRANSPARENT_COMPONENT",700],[5,"Component",7837],[5,"Color",7838],[5,"Appearance",6110],[5,"Appearance",4930],[5,"Line",4930],[6,"Background",7839],[6,"Layer",7819],[6,"Button",1064],[6,"SegmentedButton",1064],[6,"TextInput",1064],[6,"Checkbox",1198],[6,"Scrollable",1198],[6,"Svg",1198],[6,"Text",1198],[6,"TextInput",1198],[6,"Application",1198],[6,"Container",1198],[6,"ProgressBar",1198],[6,"Rule",1198],[6,"Button",1198],[6,"Slider",1198],[6,"TextEditor",1198],[17,"Style"],[10,"StyleSheet",1659],[6,"MenuBarStyle",1659],[5,"Container",1738],[6,"Horizontal",7840],[10,"StyleSheet",3314],[10,"Renderer",7841],[6,"Vertical",7840],[5,"Image",1738],[1,"array"],[5,"Slider",1738],[10,"Copy",7807],[1,"u8"],[10,"From",7801],[10,"PartialOrd",7802],[10,"StyleSheet",7591],[5,"Checkbox",1738],[10,"StyleSheet",2957],[10,"StyleSheet",7834],[10,"Renderer",7842],[5,"MouseArea",1738],[5,"Tree",7843],[5,"ComboBox",1738],[10,"Display",7798],[10,"StyleSheet",7830],[10,"StyleSheet",7829],[10,"StyleSheet",7835],[10,"Widget",1738],[5,"PaneGrid",1738],[10,"StyleSheet",4930],[5,"Lazy",1738],[10,"Hash",7824],[5,"Element",7844],[5,"Id",1738],[5,"State",3275],[5,"Rectangle",7845],[10,"FnMut",7795],[5,"Svg",1738],[6,"ContentFit",7846],[10,"StyleSheet",7006],[5,"Style",7841],[5,"Layout",7847],[6,"Cursor",7848],[5,"ProgressBar",1738],[10,"StyleSheet",5846],[5,"Radio",1738],[10,"StyleSheet",5888],[10,"FromPrimitive",7849],[5,"VerticalSlider",1738],[5,"Responsive",1738],[10,"Renderer",7850],[5,"Space",1738],[17,"Handle"],[10,"Renderer",7851],[6,"FilterMethod",4234],[6,"Outcome",7852],[10,"Focusable",7853],[1,"u64"],[5,"Id",6110],[5,"PathBuf",7854],[6,"Length",7855],[5,"Pixels",7856],[5,"Icon",2957],[5,"Icon",7857],[5,"Node",7858],[6,"LineHeight",7842],[6,"Interaction",7859],[5,"State",4930],[5,"Pane",4930],[5,"Content",4930],[5,"RangeInclusive",7860],[10,"Eq",7802],[5,"Handle",7006],[6,"DragEvent",4930],[6,"Event",7861],[10,"Clipboard",7862],[5,"Shell",7863],[6,"Status",7861],[5,"ResizeEvent",4930],[5,"Element",7864],[5,"Padding",7865],[8,"Renderer",0],[5,"Scrollable",7866],[10,"Scrollable",7867],[5,"Vector",7868],[6,"State",7843],[5,"Tag",7843],[10,"TextInput",7869],[6,"Shaping",7842],[5,"Toggler",7870],[10,"StyleSheet",7832],[5,"AspectRatio",2586],[10,"StyleSheet",2645],[5,"Button",2645],[8,"Element",7816],[5,"Builder",2645],[1,"u16"],[6,"Weight",7871],[5,"Handle",4018],[5,"Handle",4234],[5,"Hyperlink",2846],[5,"NaiveDate",7872],[1,"i32"],[6,"Weekday",7873],[10,"StyleSheet",2918],[5,"ColorPickerModel",3042],[5,"ColorPickerBuilder",3042],[5,"ColorPicker",3042],[6,"ColorPickerUpdate",3042],[5,"State",3042],[5,"HSV_RAINBOW",3042],[5,"ColorStop",7874],[8,"Column",3269],[5,"Rule",7875],[10,"StyleSheet",3452],[5,"State",3452],[10,"StyleSheet",3586],[5,"State",3586],[5,"Menu",3586],[5,"Point",7876],[5,"Model",3703],[5,"List",3703],[5,"Menu",3833],[5,"Assignment",3925],[6,"Alignment",7840],[6,"IconFallback",4018],[6,"Data",4018],[6,"Data",7851],[5,"Viewer",4234],[5,"State",4371],[5,"LayerContainer",4411],[10,"LayeredTheme",7819],[5,"CloseCondition",4514],[6,"ItemWidth",4514],[6,"ItemHeight",4514],[6,"PathHighlight",4514],[10,"MenuAction",4673],[5,"Entity",6110],[6,"Modifier",4676],[5,"KeyBind",4676],[6,"Ordering",7802],[5,"Modifiers",7877],[6,"Key",7878],[5,"SmolStr",7879],[5,"MenuBar",4768],[5,"MenuTree",4820],[5,"HashMap",7880],[6,"MenuItem",4820],[8,"SingleSelectModel",6110],[6,"Direction",4930],[5,"TitleBar",4930],[10,"Draggable",4930],[6,"Axis",4930],[6,"Configuration",4930],[6,"Node",4930],[5,"Split",4930],[6,"Target",4930],[6,"Region",4930],[6,"Edge",4930],[6,"Action",5631],[6,"Contents",4930],[5,"BTreeMap",7881],[5,"Internal",5631],[5,"Popover",5720],[6,"Position",5720],[5,"Overlay",5720],[5,"RectangleTrackingContainer",5933],[6,"RectangleUpdate",5933],[5,"RectangleTracker",5933],[5,"UnboundedSender",7882],[8,"Row",6104],[10,"Selectable",6110],[5,"BuilderEntity",6110],[5,"EntityMut",6110],[5,"MultiSelect",6110],[5,"Model",6110],[5,"SingleSelect",6110],[5,"ModelBuilder",6110],[5,"ItemAppearance",6110],[5,"ItemStatusAppearance",6110],[5,"KeyData",7883],[10,"StyleSheet",6110],[5,"SecondaryMap",7884],[5,"SparseSecondaryMap",7885],[10,"SegmentedVariant",6110],[8,"HorizontalSegmentedButton",6110],[8,"VerticalSegmentedButton",6110],[5,"Item",6705],[5,"Rail",6743],[6,"RailBackground",6743],[5,"State",6743],[6,"Message",6885],[5,"Model",6885],[8,"Decimal",7886],[1,"i16"],[1,"isize"],[1,"i8"],[10,"Sub",7887],[10,"Add",7887],[10,"Ord",7802],[6,"Data",7850],[8,"Text",1738],[6,"Typography",7093],[10,"StyleSheet",7152],[5,"TextInput",7152],[5,"TextInputString",7152],[5,"State",7152],[5,"Cursor",7384],[5,"Value",7498],[6,"State",7384],[5,"Editor",7461],[1,"char"],[6,"Position",7546],[8,"Tooltip",7546],[5,"Handle",7591],[6,"HandleShape",7591],[5,"State",7591],[15,"ActivateAction",238],[15,"Open",238],[8,"CosmicColor",700],[8,"CosmicComponent",700],[15,"Custom",1189],[15,"Custom",1193],[15,"Custom",1654],[15,"Custom",1656],[15,"Split",5618],[15,"Picked",5622],[15,"Dropped",5622],[15,"Canceled",5622],[15,"Split",5626],[15,"Resizing",5714],[15,"Clicking",5714],[15,"Dragging",5714],[6,"State",5933],[15,"Rectangle",6879],[15,"Circle",6879],[15,"Gradient",6882],[15,"Selection",7459]],"b":[[37,"impl-From%3CCalendar%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[38,"impl-From%3CBuilder%3C\'a,+Message,+Image%3C\'a,+Handle,+Message%3E%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[39,"impl-From%3CListColumn%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[40,"impl-From%3CSection%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[41,"impl-From%3CHeaderBar%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[42,"impl-From%3CFlexRow%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[43,"impl-From%3CDialog%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[44,"impl-From%3CBuilder%3C\'a,+Message,+Hyperlink%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[45,"impl-From%3CSpinButton%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[46,"impl-From%3CContextDrawer%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[47,"impl-From%3CBuilder%3C\'a,+Message,+Text%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[48,"impl-From%3CIcon%3E-for-Element%3C\'static,+Message,+Theme,+Renderer%3E"],[49,"impl-From%3CNavBarToggle%3CMessage%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[50,"impl-From%3CGrid%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[51,"impl-From%3CWarning%3C\'a,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[52,"impl-From%3CDropdown%3C\'a,+S,+Message,+Item%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[53,"impl-From%3CDropdown%3C\'a,+S,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[54,"impl-From%3CNamed%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[55,"impl-From%3CSegmentedButton%3C\'a,+Variant,+SelectionMode,+Message%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[56,"impl-From%3CBuilder%3C\'a,+Message,+Icon%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[329,"impl-Application-for-Cosmic%3CT%3E"],[330,"impl-Cosmic%3CApp%3E"],[719,"impl-StyleSheet-for-Theme"],[720,"impl-StyleSheet-for-Theme"],[721,"impl-StyleSheet-for-Theme"],[722,"impl-StyleSheet-for-Theme"],[723,"impl-StyleSheet-for-Theme"],[724,"impl-StyleSheet-for-Theme"],[725,"impl-StyleSheet-for-Theme"],[726,"impl-StyleSheet-for-Theme"],[727,"impl-StyleSheet-for-Theme"],[728,"impl-StyleSheet-for-Theme"],[729,"impl-StyleSheet-for-Theme"],[740,"impl-StyleSheet-for-Theme"],[741,"impl-StyleSheet-for-Theme"],[742,"impl-StyleSheet-for-Theme"],[743,"impl-StyleSheet-for-Theme"],[744,"impl-StyleSheet-for-Theme"],[745,"impl-StyleSheet-for-Theme"],[746,"impl-StyleSheet-for-Theme"],[747,"impl-StyleSheet-for-Theme"],[748,"impl-StyleSheet-for-Theme"],[814,"impl-StyleSheet-for-Theme"],[815,"impl-Default-for-Theme"],[837,"impl-StyleSheet-for-Theme"],[838,"impl-StyleSheet-for-Theme"],[839,"impl-StyleSheet-for-Theme"],[840,"impl-StyleSheet-for-Theme"],[841,"impl-StyleSheet-for-Theme"],[844,"impl-StyleSheet-for-Theme"],[845,"impl-StyleSheet-for-Theme"],[862,"impl-StyleSheet-for-Theme"],[863,"impl-StyleSheet-for-Theme"],[864,"impl-StyleSheet-for-Theme"],[889,"impl-StyleSheet-for-Theme"],[890,"impl-StyleSheet-for-Theme"],[891,"impl-StyleSheet-for-Theme"],[892,"impl-StyleSheet-for-Theme"],[893,"impl-StyleSheet-for-Theme"],[894,"impl-StyleSheet-for-Theme"],[895,"impl-StyleSheet-for-Theme"],[896,"impl-StyleSheet-for-Theme"],[897,"impl-StyleSheet-for-Theme"],[898,"impl-StyleSheet-for-Theme"],[899,"impl-StyleSheet-for-Theme"],[982,"impl-StyleSheet-for-Theme"],[983,"impl-StyleSheet-for-Theme"],[991,"impl-StyleSheet-for-Theme"],[992,"impl-StyleSheet-for-Theme"],[1058,"impl-StyleSheet-for-Theme"],[1059,"impl-StyleSheet-for-Theme"],[2051,"impl-From%3Cu64%3E-for-Id"],[2052,"impl-From%3CId%3E-for-Id"],[2376,"impl-Checkbox%3C\'a,+Message,+Theme,+Renderer%3E"],[2377,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Checkbox%3C\'a,+Message,+Theme,+Renderer%3E"],[2378,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-ComboBox%3C\'a,+T,+Message,+Theme,+Renderer%3E"],[2379,"impl-ComboBox%3C\'a,+T,+Message,+Theme,+Renderer%3E"],[2383,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Radio%3CMessage,+Theme,+Renderer%3E"],[2384,"impl-Radio%3CMessage,+Theme,+Renderer%3E"],[2729,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Button%3C\'a,+Message,+Theme,+Renderer%3E"],[2730,"impl-Button%3C\'a,+Message,+Theme,+Renderer%3E"],[2777,"impl-Builder%3C\'a,+Message,+Icon%3E"],[2778,"impl-Builder%3C\'a,+Message,+Image%3C\'a,+Handle,+Message%3E%3E"],[2779,"impl-Builder%3C\'a,+Message,+Hyperlink%3E"],[2780,"impl-Builder%3C\'a,+Message,+Text%3E"],[2801,"impl-Builder%3C\'a,+Message,+Image%3C\'a,+Handle,+Message%3E%3E"],[2802,"impl-Builder%3C\'a,+Message,+Icon%3E"],[2819,"impl-Builder%3C\'a,+Message,+Text%3E"],[2820,"impl-Builder%3C\'a,+Message,+Hyperlink%3E"],[3959,"impl-From%3C(u16,+u16,+u16,+u16)%3E-for-Assignment"],[3960,"impl-From%3C(u16,+u16)%3E-for-Assignment"],[4717,"impl-Display-for-KeyBind"],[4718,"impl-Debug-for-KeyBind"],[5998,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-RectangleTrackingContainer%3C\'a,+Message,+Renderer,+I%3E"],[5999,"impl-RectangleTrackingContainer%3C\'a,+Message,+Renderer,+I%3E"],[6137,"impl-Selectable-for-Model%3CMultiSelect%3E"],[6138,"impl-Selectable-for-Model%3CSingleSelect%3E"],[6139,"impl-Model%3CSelectionMode%3E"],[6141,"impl-Model%3CSingleSelect%3E"],[6142,"impl-Model%3CMultiSelect%3E"],[6287,"impl-Model%3CMultiSelect%3E"],[6288,"impl-Selectable-for-Model%3CMultiSelect%3E"],[6289,"impl-Selectable-for-Model%3CSingleSelect%3E"],[6290,"impl-Model%3CSingleSelect%3E"],[6516,"impl-Selectable-for-Model%3CMultiSelect%3E"],[6517,"impl-Model%3CSelectionMode%3E"],[6518,"impl-Selectable-for-Model%3CSingleSelect%3E"],[6654,"impl-SegmentedVariant-for-SegmentedButton%3C\'a,+Horizontal,+SelectionMode,+Message%3E"],[6655,"impl-SegmentedVariant-for-SegmentedButton%3C\'a,+Vertical,+SelectionMode,+Message%3E"],[6657,"impl-SegmentedVariant-for-SegmentedButton%3C\'a,+Horizontal,+SelectionMode,+Message%3E"],[6658,"impl-SegmentedVariant-for-SegmentedButton%3C\'a,+Vertical,+SelectionMode,+Message%3E"],[6660,"impl-SegmentedVariant-for-SegmentedButton%3C\'a,+Horizontal,+SelectionMode,+Message%3E"],[6661,"impl-SegmentedVariant-for-SegmentedButton%3C\'a,+Vertical,+SelectionMode,+Message%3E"],[6916,"impl-Default-for-Model%3Ci32%3E"],[6917,"impl-Default-for-Model%3CGenericDecimal%3Cu64,+u8%3E%3E"],[6918,"impl-Default-for-Model%3Cu32%3E"],[6919,"impl-Default-for-Model%3Ci16%3E"],[6920,"impl-Default-for-Model%3Cusize%3E"],[6921,"impl-Default-for-Model%3Cisize%3E"],[6922,"impl-Default-for-Model%3Cu16%3E"],[6923,"impl-Default-for-Model%3Ci8%3E"],[6924,"impl-Default-for-Model%3Cu64%3E"],[6925,"impl-Default-for-Model%3Cu8%3E"],[7223,"impl-TextInput%3C\'a,+Message%3E"],[7224,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message%3E"],[7236,"impl-State"],[7237,"impl-Focusable-for-State"],[7295,"impl-State"],[7296,"impl-Focusable-for-State"],[7308,"impl-TextInput-for-State"],[7309,"impl-State"],[7311,"impl-TextInput-for-State"],[7312,"impl-State"],[7314,"impl-TextInput-for-State"],[7315,"impl-State"],[7333,"impl-State"],[7334,"impl-TextInput-for-State"],[7338,"impl-TextInput%3C\'a,+Message%3E"],[7339,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message%3E"],[7378,"impl-State"],[7379,"impl-Focusable-for-State"]]}],\ ["cosmic_config",{"doc":"","t":"PFKKGFGKGPPPPPPPPPPFPTPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOHHEONNNNNNNNNNNNNNNNNNNNNNNNNNMNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNM","n":["AtomicWrites","Config","ConfigGet","ConfigSet","ConfigState","ConfigTransaction","ConfigUpdate","CosmicConfigEntry","Error","Failed","Failed","GetKey","Init","InvalidName","Io","NoConfigDirectory","Notify","Ron","RonSpanned","Update","Update","VERSION","Waiting","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","commit","components_from","components_from","components_from","components_from","components_from","components_from","config","config_state_subscription","config_subscription","cosmic_config_derive","errors","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get","get","get_entry","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","keys","libcosmic","new","new_state","set","set","set","system","to_owned","to_smolstr","to_string","transaction","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","update_keys","watch","write_entry"],"q":[[0,"cosmic_config"],[213,"palette::chromatic_adaptation"],[214,"core::any"],[215,"core::result"],[216,"alloc::borrow"],[217,"iced_futures::subscription"],[218,"core::marker"],[219,"core::marker"],[220,"core::cmp"],[221,"core::clone"],[222,"core::fmt"],[223,"core::fmt"],[224,"atomicwrites"],[225,"notify::error"],[226,"ron::error"],[227,"ron::error"],[228,"alloc::vec"],[229,"alloc::boxed"],[230,"alloc::sync"],[231,"alloc::rc"],[232,"serde::ser"],[233,"smol_str"],[234,"alloc::string"],[235,"palette::convert::try_from_into_color"],[236,"core::any"],[237,"notify"],[238,"core::ops::function"]],"d":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Apply all pending changes from ConfigTransaction","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","Get a configuration value","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the config for the libcosmic toolkit","Get config for the given application name and config …","Get state for the given application name and config …","Set a configuration value","","","Get a system config for the given name and config version","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the keys that were updated","",""],"i":[6,0,0,0,0,0,0,0,0,43,44,6,43,6,6,6,6,6,6,0,44,19,43,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,3,3,5,43,44,5,11,6,3,11,0,0,0,11,6,6,3,43,44,5,11,6,6,6,6,6,6,3,43,44,5,11,6,3,43,44,5,11,6,3,27,3,19,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,11,3,3,3,33,5,3,3,3,6,6,3,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,43,44,5,11,6,3,19,3,19],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[3,3],[[-1,-2],4,[],[]],[5,[[7,[4,6]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,[9,[8]],10],[[12,[[11,[-2]]]]],[13,14,15,16],[14,15,17,18,19]],[[-1,[9,[8]],10],[[12,[[11,[-2]]]]],[13,14,15,16],[14,15,17,18,19]],0,0,[[6,20],21],[[6,20],21],[[3,20],21],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[23,[22]]],6],[22,6],[24,6],[25,6],[-1,-1,[]],[26,6],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[27,8],[[7,[-1,6]]],28],[[3,8],[[7,[-1,6]]],28],[3,[[7,[19,[4,[[29,[6]],19]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[30,[-1]]],[[30,[2]]],[]],[[[30,[-1]]],[[30,[2]]],[]],[[[30,[-1]]],[[30,[2]]],[]],[[[30,[-1]]],[[30,[2]]],[]],[[[30,[-1]]],[[30,[2]]],[]],[[[30,[-1]]],[[30,[2]]],[]],[[[31,[-1]]],[[31,[2]]],[]],[[[31,[-1]]],[[31,[2]]],[]],[[[31,[-1]]],[[31,[2]]],[]],[[[31,[-1]]],[[31,[2]]],[]],[[[31,[-1]]],[[31,[2]]],[]],[[[31,[-1]]],[[31,[2]]],[]],[[[32,[-1]]],[[32,[2]]],[]],[[[32,[-1]]],[[32,[2]]],[]],[[[32,[-1]]],[[32,[2]]],[]],[[[32,[-1]]],[[32,[2]]],[]],[[[32,[-1]]],[[32,[2]]],[]],[[[32,[-1]]],[[32,[2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],[[7,[3,6]]]],[[8,10],[[7,[3,6]]]],[[8,10],[[7,[3,6]]]],[[33,8,-1],[[7,[4,6]]],34],[[5,8,-1],[[7,[4,6]]],34],[[3,8,-1],[[7,[4,6]]],34],[[8,10],[[7,[3,6]]]],[-1,-2,[],[]],[-1,35,[]],[-1,36,[]],[3,5],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2,[37,[-2]]]]],[],[]],[-1,[[7,[-2,[37,[-2]]]]],[],[]],[-1,[[7,[-2,[37,[-2]]]]],[],[]],[-1,[[7,[-2,[37,[-2]]]]],[],[]],[-1,[[7,[-2,[37,[-2]]]]],[],[]],[-1,[[7,[-2,[37,[-2]]]]],[],[]],[-1,38,[]],[-1,38,[]],[-1,38,[]],[-1,38,[]],[-1,38,[]],[-1,38,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[19,3,[39,[-1]]],[[4,[[29,[6]],[29,[8]]]]],[[40,[8]]]],[[3,-1],[[7,[41,6]]],[[42,[3,[39,[36]]]],14,15]],[[19,3],[[7,[4,6]]]]],"c":[],"p":[[10,"TransformMatrix",213],[10,"Any",214],[5,"Config",0],[1,"tuple"],[5,"ConfigTransaction",0],[6,"Error",0],[6,"Result",215],[1,"str"],[6,"Cow",216],[1,"u64"],[5,"Update",0],[5,"Subscription",217],[10,"Copy",218],[10,"Send",218],[10,"Sync",218],[10,"Hash",219],[10,"PartialEq",220],[10,"Clone",221],[10,"CosmicConfigEntry",0],[5,"Formatter",222],[8,"Result",222],[5,"Error",223],[6,"Error",224],[5,"Error",225],[6,"Error",226],[5,"SpannedError",226],[10,"ConfigGet",0],[10,"DeserializeOwned",227],[5,"Vec",228],[5,"Box",229],[5,"Arc",230],[5,"Rc",231],[10,"ConfigSet",0],[10,"Serialize",232],[5,"SmolStr",233],[5,"String",234],[5,"OutOfBounds",235],[5,"TypeId",214],[1,"slice"],[10,"AsRef",236],[8,"RecommendedWatcher",237],[10,"Fn",238],[6,"ConfigState",0],[6,"ConfigUpdate",0]],"b":[[79,"impl-Debug-for-Error"],[80,"impl-Display-for-Error"],[86,"impl-From%3CError%3CError%3E%3E-for-Error"],[87,"impl-From%3CError%3E-for-Error"],[88,"impl-From%3CError%3E-for-Error"],[89,"impl-From%3CError%3E-for-Error"],[91,"impl-From%3CSpannedError%3E-for-Error"]]}],\ ["cosmic_config_derive",{"doc":"","t":"Y","n":["CosmicConfigEntry"],"q":[[0,"cosmic_config_derive"]],"d":[""],"i":[0],"f":[0],"c":[],"p":[],"b":[]}],\ ["cosmic_text",{"doc":"COSMIC Text","t":"GPGPGFPFFFTTPPPFPFFPFGPFFPFFPPFPGPPPFPPPPPTTKFPPPPPPPTGGPPFFFFPPPTPPPPTFPFFFFPPPPPTPFPPGPPTPPPPPPPPPPPPPPPPFFPPPPPPTPPFPGPPPPFFFFFFFGPGGGPFGFTPFPPPPPPPFPPPGTPNMNNNONNNNMNNNNNNNONOMNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNMNONOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNOMNMNNNNONNNNNNNNNNNNNNNNNONMNMNNNONNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOMNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOONNNNNNNNNNNNNNONNNOONNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNOONNNNNOOOOOOOONNNNOOOONNOONNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNONNNNNNNNNNNNNNNNNOOENNNNNMNNNNNNMNMNNNNNNNNNNNNNMNNNMNNNNNNNMNNNNNNNNNNNONONNOOOMNNOONOONNNMNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONOOONNNNNNONOOOOOOOOOOOOOOOOOOOOOOOOOOOOO","n":["Action","Advanced","Affinity","After","Align","Angle","Arc","Attrs","AttrsList","AttrsOwned","BLACK","BOLD","Backspace","Basic","Before","BidiParagraphs","Borrowed","BorrowedWithFontSystem","Buffer","BufferEnd","BufferLine","BufferRef","BufferStart","CacheKey","CacheKeyFlags","Center","Change","ChangeItem","Click","Close","Color","Color","Command","Condensed","Cursive","Cursive","Cursor","CurveTo","Delete","DoubleClick","Down","Drag","EXTRA_BOLD","EXTRA_LIGHT","Edit","Editor","End","End","Enter","Escape","Expanded","ExtraCondensed","ExtraExpanded","FAKE_ITALIC","Family","FamilyOwned","Fantasy","Fantasy","Font","FontMatchAttrs","FontMatchKey","FontSystem","Glyph","GotoLine","Home","IDENTITY","Indent","Insert","Italic","Justified","LIGHT","LayoutCursor","LayoutCursor","LayoutGlyph","LayoutLine","LayoutRun","LayoutRunIter","Left","Left","LeftWord","Line","LineTo","MEDIUM","Mask","Metrics","Monospace","Monospace","Motion","Motion","MoveTo","NORMAL","Name","Name","Next","NextWord","None","None","Normal","Normal","Normal","Oblique","One","Owned","PageDown","PageUp","ParagraphEnd","ParagraphStart","PhysicalGlyph","Placement","Previous","PreviousWord","QuadTo","Right","Right","RightWord","SEMIBOLD","SansSerif","SansSerif","Scroll","Scroll","Selection","SemiCondensed","SemiExpanded","Serif","Serif","ShapeBuffer","ShapeGlyph","ShapeLine","ShapeRunCache","ShapeRunKey","ShapeSpan","ShapeWord","Shaping","SoftHome","Stretch","Style","SubpixelBin","SubpixelMask","SwashCache","SwashContent","SwashImage","THIN","Three","Transform","TripleClick","Two","UltraCondensed","UltraExpanded","Unindent","Up","Vertical","Weight","Word","Word","WordOrGlyph","Wrap","ZERO","Zero","a","action","action","action","add_span","affinity","after","align","all","append","apply_change","apply_change","as_attrs","as_family","as_float","as_rgba","as_rgba_tuple","as_swash","ascent","attrs_list","attrs_spans","auto_indent","auto_indent","b","before","bitand","bitand_assign","bitor","bitor_assign","bits","bits","bitxor","bitxor_assign","blank","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_with","borrow_with","borrow_with","buffer_ref","buffer_ref","buffer_ref_mut","buffer_ref_mut","cache_key","cache_key_flags","cache_key_flags","cache_key_flags","cache_key_flags","cache_key_flags","clear","clear_spans","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","color","color_opt","color_opt","color_opt","color_opt","compatible","complement","compute","contains","content","copy_selection","copy_selection","cursor","cursor","cursor_motion","cursor_motion","data","data","db","db_mut","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default_attrs","defaults","delete_range","delete_range","delete_selection","delete_selection","deref","deref_mut","descent","determinant","difference","draw","draw","draw","draw","empty","end","end","end","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","extend","family","family","family_owned","finish_change","finish_change","flags","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","font_id","font_id","font_id","font_monospace_em_width","font_size","font_size","font_size_bits","fontdb","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_after","from_before","from_bits","from_bits_retain","from_bits_retain","from_bits_truncate","from_degrees","from_gradians","from_iter","from_name","from_radians","from_turns","g","get","get_font","get_font_matches","get_font_supported_codepoints_in_word","get_image","get_image_uncached","get_monospace_ids_for_scripts","get_outline_commands","get_span","glyph","glyph_id","glyph_id","glyph_id","glyphs","glyphs","glyphs","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","height","highlight","hit","id","image_cache","index","insert","insert","insert","insert_at","insert_at","insert_string","insert_string","intersection","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_locale_and_db","into_text","invert","is_all","is_empty","is_monospace","items","iter","iter_names","layout","layout","layout","layout","layout_cursor","layout_in_buffer","layout_opt","layout_runs","layout_to_buffer","left","level","level","line","line","line","line_height","line_i","line_layout","line_layout","line_shape","line_shape","line_top","line_w","line_y","lines","locale","matches","max_ascent","max_descent","metadata","metadata","metadata","metadata","metadata","metadata","metrics","monospace_em_width","monospace_width","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_empty","new_in_buffer","new_in_buffer","new_in_buffer","new_with_affinity","new_with_fonts","new_with_locale_and_db","next","next","not","outline_command_cache","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","physical","placement","pre_rotate","pre_scale","pre_translate","r","redraw","redraw","redraw","remove","reset","reset_layout","reset_shaping","reverse","reverse","rgb","rgba","rotation","rotation_about","rtl","rtl","rustybuzz","rustybuzz","scale","scale","scripts","scroll","selection","selection","selection_bounds","selection_bounds","set","set_align","set_attrs_list","set_auto_indent","set_auto_indent","set_cursor","set_cursor","set_metadata","set_metrics","set_metrics","set_metrics_and_size","set_metrics_and_size","set_monospace_width","set_redraw","set_redraw","set_redraw","set_rich_text","set_rich_text","set_scroll","set_selection","set_selection","set_size","set_size","set_tab_width","set_tab_width","set_text","set_text","set_text","set_wrap","set_wrap","shape","shape_as_needed","shape_as_needed","shape_as_needed","shape_in_buffer","shape_opt","shape_until_cursor","shape_until_cursor","shape_until_scroll","shape_until_scroll","size","size_hint","skew","source","spans","spans","split_off","split_off","start","start","start","start_change","start_change","stretch","stretch","stretch","style","style","style","sub","sub_assign","symmetric_difference","tab_width","tab_width","text","text","text","text","then","then_rotate","then_scale","then_translate","to_degrees","to_number","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_radians","to_string","to_string","to_string","toggle","top","transform","transform_point","transform_vector","translation","trim","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unicode_codepoints","union","verb","visible_lines","w","w","weight","weight","weight","width","with_buffer","with_buffer","with_buffer_mut","with_buffer_mut","with_buffer_mut","with_pixels","words","wrap","x","x","x","x_advance","x_advance","x_bin","x_offset","x_offset","xx","xy","y","y","y","y_advance","y_advance","y_bin","y_offset","y_offset","yx","yy","lines","x","x","x","x","y","y","y","y"],"q":[[0,"cosmic_text"],[1197,"cosmic_text::Action"],[1206,"core::ops::range"],[1207,"core::option"],[1208,"swash::font"],[1209,"core::cmp"],[1210,"zeno::geometry"],[1211,"zeno::geometry"],[1212,"alloc::string"],[1213,"fontdb"],[1214,"core::ops::function"],[1215,"core::iter::traits::collect"],[1216,"core::fmt"],[1217,"core::fmt"],[1218,"core::fmt"],[1219,"alloc::vec"],[1220,"fontdb"],[1221,"core::hash"],[1222,"bitflags::iter"],[1223,"bitflags::iter"],[1224,"fontdb"],[1225,"core::convert"],[1226,"zeno::command"],[1227,"core::ops::function"]],"d":["An action to perform on an Editor","Advanced text shaping and font fallback.","Whether to associate cursors placed at a boundary between …","","Align or justify","Represents an angle in degrees or radians.","","Text attributes","List of text attributes to apply to a line","An owned version of Attrs","Black weight (900), the thickest value.","Bold weight (700).","Delete text behind cursor","Basic shaping with no font fallback.","","An iterator over the paragraphs in the input text. It is …","","A value borrowed together with an FontSystem","A buffer of text that is shaped and laid out","Move cursor to the end of the document","A line (or paragraph) of text that is shaped and laid out","","Move cursor to the start of the document","Key for building a glyph cache","Flags that change rendering","","A set of change items grouped into one logical change","A unique change to an editor","Mouse click at specified position","Closes a subpath, connecting the final point to the …","Text color","32-bit RGBA bitmap.","Path command.","","Glyphs in cursive fonts generally use a more informal …","","Current cursor location","A cubic bezier curve from the previous point to the final …","Delete text in front of cursor","Mouse double click at specified position","Move cursor down","Mouse drag to specified position","Extra-bold weight (800).","Extra light weight (200).","A trait to allow easy replacements of Editor, like …","A wrapper of [Buffer] for easy editing","Move cursor to end of line","","Create new line","Escape, clears selection","","","","Skew by 14 degrees to synthesize italic","A font family.","An owned version of Family","Fantasy fonts are primarily decorative or expressive fonts …","","A font","Font-specific part of Attrs to be used for matching","","Access to the system fonts.","Wraps at a glyph level","Move cursor to specific line","Move cursor to start of line","Identity matrix.","","Insert character at cursor","A form that is generally cursive in nature.","","Light weight (300).","The position of a cursor within a [Buffer].","Apply specific LayoutCursor","A laid out glyph","A line of laid out glyphs","A line of visible text for rendering","An iterator of visible text lines, see LayoutRun","Move cursor left","","Move cursor to next word boundary to the left","Select by lines","A straight line from the previous point to the specified …","Medium weight (500, higher than normal).","8-bit alpha mask.","Metrics of text","The sole criterion of a monospace font is that all glyphs …","","A motion to perform on a Cursor","Move the cursor with some motion","Begins a new subpath at the specified point.","Normal (400).","The name of a font family of choice.","","Move cursor to next character (Self::Right in LTR, …","Move cursor to next word boundary","No selection","No wrapping","A face that is neither italic not obliqued.","Normal selection","","A typically-sloped version of the regular face.","","","Move cursor down one page","Move cursor up one page","Move cursor to end of paragraph","Move cursor to start of paragraph","","Describes the offset and dimensions of a rendered mask.","Move cursor to previous character (Self::Left in LTR, …","Move cursor to previous word boundary","A quadratic curve from the previous point to the final …","Move cursor right","","Move cursor to next word boundary to the right","Semibold weight (600).","Glyphs in sans-serif fonts, as the term is used in CSS, …","","Scroll position in [Buffer]","Scroll specified number of lines","Selection mode","","","Serif fonts represent the formal text style for a script.","","A set of buffers containing allocations for shaped text.","A shaped glyph","A shaped line (or paragraph)","A helper structure for caching shape runs.","Key for caching shape runs.","A shaped span (for bidirectional processing)","A shaped word (for word wrapping)","The shaping strategy of some text.","Move cursor to start of line, skipping whitespace","A face width.","Allows italic or oblique faces to be selected.","Binning of subpixel position for cache optimization","32-bit RGBA subpixel mask.","Cache for rasterizing with the swash scaler","Content of a scaled glyph image.","Scaled glyph image.","Thin weight (100), the thinnest value.","","Two dimensional transformation matrix.","Mouse triple click at specified position","","","","","Move cursor up","Move cursor up or down by a number of pixels","Specifies the weight of glyphs in the font, their degree …","Select by words","Wraps at the word level","Wraps at the word level, or fallback to glyph level if a …","Wrapping mode","Angle of zero degrees.","","Get the alpha component","Perform an Action on the editor","","Perform an Action on the editor","Add an attribute span, removes any previous matching parts …","Whether to associate the cursor with the run before it or …","","Get the Text alignment","Get a flags value with all known bits set.","Append line at end of this line","Apply a change","","","","","Get an array over all of the components, in [r, g, b, a] …","Get a tuple over all of the attributes, in (r, g, b, a) …","","","Get attributes list","","Get the current automatic indentation setting","","Get the blue component","","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Get the underlying bits value.","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mutably borrows self together with an FontSystem for more …","Mutably borrows self together with an FontSystem for more …","Mutably borrows the buffer together with an FontSystem for …","Get the internal BufferRef","","Get the internal BufferRef","","Cache key, see CacheKey","Set CacheKeyFlags","","","CacheKeyFlags","","Resets the image to a default state.","Clear the current attribute spans","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Set Color","","","Optional color override","","Check if this set of attributes can be shaped with another","The bitwise negation (!) of the bits in a flags value, …","Given an origin, offset and bounding box, computes the …","Whether all set bits in a source flags value are also set …","Content of the image.","Copy selection","","Get the current cursor","","Apply a Motion to a Cursor","Apply a Motion to a Cursor","","Raw image data.","Get the database.","Get a mutable reference to the database.","","","","","","","","","","","","","","","","","Get the default Attrs","Delete text starting at start Cursor and ending at end …","","Delete selection, adjusting cursor and returning true if …","","","","","Returns the determinant of the transform.","The intersection of a source flags value with the …","Draw the buffer","Draw the editor","Draw the buffer","","Get a flags value with all bits unset.","Cursor indicating end of change","End index of cluster in original line","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in each flags value.","Set Family","","","Get completed change","","CacheKeyFlags","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Font ID","Font id of the glyph","","","Font size in pixels","Font size of the glyph","f32 bits of font size","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Convert from a bits value.","","Convert from a bits value exactly.","Convert from a bits value, unsetting any unknown bits.","Creates a new angle from degrees.","Creates a new angle from gradians.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Creates a new angle from radians.","Creates a new angle from turns.","Get the green component","Get cache item, updating age if found","Get a font by its ID.","","","Create a swash Image from a cache key, caching results","Create a swash Image from a cache key, without caching …","","","Get the attribute span for an index","Index of [LayoutGlyph] in [LayoutLine::glyphs]","Glyph ID","Font id of the glyph","","The array of layout glyphs to draw","Glyphs in line","","","","","","","","","","","","","","","","Height in pixels.","Return the pixel span Some((x_left, x_width)) of the …","Convert x, y position to Cursor (hit detection)","","","First-byte-index of glyph at cursor (will insert behind …","The bitwise or (|) of the bits in two flags values.","Insert cache item with current age","Insert if true, delete if false","Insert text at specified cursor with specified attrs_list","","Insert a string at the current cursor or replacing the …","Insert a string at the current cursor or replacing the …","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Consume this FontSystem and return the locale and database.","Consume this line, returning only its text contents as a …","Returns the inverse of the transform, if any.","Whether all known bits in this flags value are set.","Whether all bits in this flags value are unset.","","Change items grouped into one change","Yield a set of contained flags values.","Yield a set of contained named flags values.","Layout line, will cache results","","Index of [LayoutLine] in [BufferLine::layout]","Index of [LayoutLine] in [BufferLine::layout]. This will …","Convert a Cursor to a LayoutCursor","Layout a line using a pre-existing shape buffer, will …","Get line layout cache","Get the visible layout runs for rendering and other tasks","","Horizontal offset with respect to the origin specified …","Unicode BiDi embedding level, character is left-to-right …","","Index of [BufferLine] in [Buffer::lines]","Index of [BufferLine] in [Buffer::lines]","Index of [BufferLine] in [Buffer::lines]. This will be …","Line height in pixels","The index of the original text line","Lay out the provided line index and return the result","Lay out the provided line index and return the result","Shape the provided line index and return the result","Shape the provided line index and return the result","Y offset to top of line","Width of line","Y offset to baseline of line","BufferLines (or paragraphs) of text in the buffer","Get the locale.","Check if font matches","Maximum ascent of the glyphs in line","Maximum descent of the glyphs in line","Set metadata","Get line metadata. This will be None if …","","","Metadata from Attrs","","Get the current Metrics","","Get the current monospace_width","Create a new FontSystem, that allows access to any …","","Create a new swash cache","","Create a new set of attributes with sane defaults","","Create a new attributes list with a set of default Attrs","Create an iterator to split the input text into paragraphs …","Creates a new transform.","","","Create a new Buffer with the provided FontSystem and …","Create a new line with the given text and attributes list …","","","Create a new cursor","Create a new LayoutCursor","Create a new cursor","Create a new Editor with the provided [Buffer]","","","Panics","Creates a new empty scaled image.","Create an empty Buffer with the provided Metrics. This is …","Shape a word into a set of glyphs, using a scratch buffer.","Shape a span into a set of words, using a scratch buffer.","Shape a line into a set of spans, using a scratch buffer. …","Create a new cursor, specifying the affinity","Create a new FontSystem with a pre-specified set of fonts.","Create a new FontSystem with a pre-specified locale and …","","","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","","","","Offset and size of the image.","Returns a new transform that represents a rotation …","Returns a new transform that represents a scale followed …","Returns a new transform that represents a translation …","Get the red component","Get the Buffer redraw flag","Get the Buffer redraw flag","True if a redraw is needed","The intersection of a source flags value with the …","Reset shaping, layout, and metadata caches","Reset only layout cache","Reset shaping and layout caches","","","Create new color with red, green, and blue components","Create new color with red, green, blue, and alpha …","Creates a rotation transform.","Creates a rotation transform around a point.","True if the original paragraph direction is RTL","","","","Creates a scale transform.","","","Get the current scroll location","Get the current selection position","","Get the bounds of the current selection","Get the bounds of the current selection","Call insert when value is true or remove when value is …","Set the text alignment","Set attributes list","Enable or disable automatic indentation","","Set the current cursor","","Set line metadata. This is stored until the next line reset","Set the current Metrics","Set the current Metrics","Set the current Metrics and buffer dimensions at the same …","Set the current Metrics and buffer dimensions at the same …","Set monospace width monospace glyphs should be resized to …","Set the Buffer redraw flag","Set the Buffer redraw flag","Set redraw needed flag","Set text of buffer, using an iterator of styled spans …","Set text of buffer, using an iterator of styled spans …","Set the current scroll location","Set the current selection position","","Set the current buffer dimensions","Set the current buffer dimensions","Set the current tab width. A tab_width of 0 is not …","","Set text of buffer, using provided attributes for each …","Set text and attributes list","Set text of buffer, using provided attributes for each …","Set the current Wrap","Set the current Wrap","Shape line, will cache results","Shape lines until scroll, after adjusting scroll if the …","","Shape lines until scroll, after adjusting scroll if the …","Shape a line using a pre-existing shape buffer, will cache …","Get line shaping cache","Shape lines until cursor, also scrolling to include cursor …","Shape lines until cursor, also scrolling to include cursor …","Shape lines until scroll","Shape lines until scroll","Get the current buffer dimensions (width, height)","","Creates a skew transform.","Source of the image.","Get the current attribute spans","","Split attributes list at an offset","Split off new line at index","Cursor indicating start of change","Start index of cluster in original line","","Start collecting change","","Set Stretch","","","Set Style","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The bitwise exclusive-or (^) of the bits in two flags …","Get the current tab width","","Get current text","The original text line","Text to be inserted or deleted","","Returns a new transform that represents the application of …","Returns a new transform that represents this transform …","Returns a new transform that represents this transform …","Returns a new transform that represents this transform …","Returns the angle in degrees.","Returns a numeric representation of a width.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the angle in radians.","","","","The bitwise exclusive-or (^) of the bits in two flags …","Vertical offset with respect to the origin specified when …","Returns the result of a transformation matrix applied to …","Returns the result of applying this transform to a point.","Returns the result of applying this transform to a vector.","Creates a translation transform.","Remove anything in the cache with an age older than …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","Returns the associated verb for the command.","Get the number of lines that can be viewed in the buffer","Width of hitbox","Width of the line","Set Weight","","","Width in pixels.","Get the internal Buffer","Get the internal Buffer","Get the internal Buffer, mutably","Get the internal Buffer, mutably","Get the internal Buffer, mutably","Enumerate pixels in an Image, use with_image for better …","","Get the current Wrap","","X offset of hitbox","Integer component of X offset in line","","","Binning of fractional X offset","X offset in line","","","","","Y offset of hitbox","Integer component of Y offset in line","","","Binning of fractional Y offset","Y offset in line","","","","","","","","","","","",""],"i":[0,52,0,13,0,0,30,0,0,0,32,32,5,52,13,0,30,0,0,43,0,0,43,0,0,16,0,0,5,34,0,60,0,59,22,21,0,34,5,5,43,5,32,32,0,0,43,16,5,5,59,59,59,18,0,0,22,21,0,0,0,0,51,43,43,37,5,5,33,16,32,0,43,0,0,0,0,43,16,43,46,34,32,60,0,22,21,0,5,34,32,22,21,43,43,46,51,33,46,59,33,23,30,43,43,43,43,0,0,43,43,34,43,16,43,32,22,21,0,5,0,59,59,22,21,0,0,0,0,0,0,0,0,43,0,0,0,60,0,0,0,32,23,0,5,23,59,59,5,43,43,0,46,51,51,0,36,23,1,3,7,8,9,41,13,15,18,15,3,7,20,21,23,1,1,26,53,15,57,3,7,1,13,18,18,18,18,18,18,18,18,54,22,32,33,4,26,71,1,21,12,34,35,20,9,36,79,80,37,81,38,29,39,15,18,40,23,41,13,42,43,44,7,5,30,45,19,46,47,8,48,49,50,51,16,52,70,53,54,55,56,57,58,59,60,31,22,32,33,4,26,71,1,21,12,34,35,20,9,36,79,80,37,81,38,29,39,15,18,40,23,41,13,42,43,44,7,5,30,45,19,46,47,8,48,49,50,51,16,52,70,53,54,55,56,57,58,59,60,31,3,3,29,3,7,3,7,49,12,12,20,48,53,31,9,22,32,33,1,21,12,34,35,20,9,36,37,38,29,39,15,18,40,23,41,13,42,43,44,5,45,19,46,47,48,49,50,51,16,52,53,54,55,56,57,58,59,60,31,22,32,33,1,21,12,34,35,20,9,36,37,38,29,39,15,18,40,23,41,13,42,43,44,5,45,19,46,47,48,49,50,51,16,52,53,54,55,56,57,58,59,60,31,32,1,18,40,23,41,13,42,44,47,59,12,12,20,48,53,12,18,39,18,31,3,7,3,7,29,8,26,31,4,4,32,33,36,37,38,39,41,13,44,19,70,58,59,60,31,57,9,3,7,3,7,8,8,53,37,18,29,7,8,8,18,45,48,53,22,32,33,1,21,12,34,35,20,9,36,38,18,40,23,41,13,42,43,44,5,46,47,51,16,52,57,59,60,18,12,12,20,3,7,40,22,32,33,4,26,71,1,21,12,34,35,20,9,36,79,80,37,81,38,38,29,39,15,18,18,18,18,18,40,23,41,13,42,43,44,7,5,30,45,19,46,47,8,48,49,50,51,51,16,16,52,70,53,54,55,56,57,58,59,60,40,48,53,53,38,48,40,0,22,32,33,4,26,71,1,21,12,34,35,35,20,9,36,79,80,37,81,38,29,39,15,18,40,23,41,13,42,43,44,7,5,30,30,30,30,45,19,46,47,8,48,49,50,51,16,52,70,53,54,55,56,57,58,59,60,31,13,13,18,18,18,18,36,36,18,18,36,36,1,58,4,4,4,71,71,4,71,9,42,40,48,53,80,50,54,22,32,33,1,21,12,35,20,18,40,23,52,57,59,39,80,29,26,71,41,18,58,45,3,7,3,3,18,18,22,32,33,4,26,71,1,21,12,34,35,20,9,36,79,80,37,81,38,29,39,15,18,40,23,41,13,42,43,44,7,5,30,45,19,46,47,8,48,49,50,51,16,52,70,53,54,55,56,57,58,59,60,31,79,81,18,4,15,37,18,18,4,19,18,18,15,56,42,44,29,15,15,29,56,39,48,55,41,42,44,38,80,29,8,29,8,80,80,80,29,4,12,50,50,12,15,12,20,48,53,29,26,29,4,26,71,21,12,20,9,79,37,81,38,29,15,40,23,41,42,44,7,54,55,56,31,29,54,55,56,41,4,4,79,81,18,71,32,1,18,40,23,41,13,42,44,47,59,48,31,37,37,37,1,3,3,29,18,15,15,15,45,19,1,1,37,37,80,56,0,26,37,38,26,29,3,7,3,3,18,15,15,3,7,3,7,15,29,8,29,8,29,3,3,29,29,8,29,3,7,29,8,3,7,29,15,8,29,8,15,3,7,8,15,15,29,8,29,8,29,81,37,31,9,56,9,15,45,48,53,3,7,12,12,20,12,12,20,18,18,18,3,7,15,80,45,57,37,37,37,37,36,59,22,32,33,1,21,12,34,35,20,9,36,37,38,29,39,15,18,40,23,41,13,42,43,44,5,45,19,46,47,48,49,50,51,16,52,53,54,55,56,57,58,59,60,31,36,38,51,16,18,39,34,37,37,37,58,22,32,33,4,26,71,1,21,12,34,35,20,9,36,79,80,37,81,38,29,39,15,18,40,23,41,13,42,43,44,7,5,30,45,19,46,47,8,48,49,50,51,16,52,70,53,54,55,56,57,58,59,60,31,22,32,33,4,26,71,1,21,12,34,35,20,9,36,79,80,37,81,38,29,39,15,18,40,23,41,13,42,43,44,7,5,30,45,19,46,47,8,48,49,50,51,16,52,70,53,54,55,56,57,58,59,60,31,22,32,33,4,26,71,1,21,12,34,35,20,9,36,79,80,37,81,38,29,39,15,18,40,23,41,13,42,43,44,7,5,30,45,19,46,47,8,48,49,50,51,16,52,70,53,54,55,56,57,58,59,60,31,26,18,34,29,48,50,12,12,20,39,3,3,3,3,8,71,55,29,37,48,49,53,54,40,48,53,37,37,37,48,49,53,54,40,48,53,37,37,102,103,104,105,106,103,104,105,106],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[[3,4,5],6],[[7,4,5],6],[[[8,[-1]],5],6,3],[[9,[11,[10]],12],6],0,[13,14],[15,[[17,[16]]]],[[],18],[[15,15],6],[[3,19],14],[[7,19],14],[20,12],[21,22],[23,24],[1,[[25,[2]]]],[1,[[6,[2,2,2,2]]]],[26,27],0,[15,9],0,[3,14],[7,14],[1,2],[13,14],[[18,18],18],[[18,18],6],[[18,18],18],[[18,18],6],[18,28],[18,28],[[18,18],18],[[18,18],6],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[3,4],[[8,[3]]]],[[3,4],[[8,[3]]]],[[29,4],[[8,[29]]]],[3,30],[7,30],[3,30],[7,30],0,[[12,18],12],0,0,0,0,[31,6],[9,6],[22,22],[32,32],[33,33],[1,1],[21,21],[12,12],[34,34],[35,35],[20,20],[9,9],[36,36],[37,37],[38,38],[29,29],[39,39],[15,15],[18,18],[40,40],[23,23],[41,41],[13,13],[42,42],[43,43],[44,44],[5,5],[45,45],[19,19],[46,46],[47,47],[48,48],[49,49],[50,50],[51,51],[16,16],[52,52],[53,53],[54,54],[55,55],[56,56],[57,57],[58,58],[59,59],[60,60],[31,31],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[32,32],61],[[1,1],61],[[18,18],61],[[40,40],61],[[23,23],61],[[41,41],61],[[13,13],61],[[42,42],61],[[44,44],61],[[47,47],61],[[59,59],61],[[12,1],12],0,0,0,0,[[12,12],14],[18,18],[[62,-1,63],[[6,[64,39]]],[[65,[64]]]],[[18,18],14],0,[3,[[17,[66]]]],[7,[[17,[66]]]],[3,41],[7,41],[[29,4,41,[17,[67]],43],[[17,[[6,[41,[17,[67]]]]]]]],[[[8,[29]],41,[17,[67]],43],[[17,[[6,[41,[17,[67]]]]]]]],[26,[[68,[2]]]],0,[4,69],[4,69],[[],32],[[],33],[[],36],[[],37],[[],38],[[],39],[[],41],[[],13],[[],44],[[],19],[[],70],[[],58],[[],59],[[],60],[[],31],0,[9,12],[[3,41,41],6],[[7,41,41],6],[3,14],[7,14],[[[8,[-1]]],-2,[],[]],[[[8,[-1]]],-2,[],[]],0,[37,24],[[18,18],18],[[29,4,71,1,-1],6,[[72,[67,67,28,28,1]]]],[[7,4,71,1,1,1,-1],6,[[72,[67,67,28,28,1]]]],[[[8,[29]],71,1,-1],6,[[72,[67,67,28,28,1]]]],[[[8,[7]],71,1,1,1,-1],6,[[72,[67,67,28,28,1]]]],[[],18],0,0,0,[[22,22],14],[[32,32],14],[[33,33],14],[[1,1],14],[[21,21],14],[[12,12],14],[[34,34],14],[[35,35],14],[[20,20],14],[[9,9],14],[[36,36],14],[[38,38],14],[[18,18],14],[[40,40],14],[[23,23],14],[[41,41],14],[[13,13],14],[[42,42],14],[[43,43],14],[[44,44],14],[[5,5],14],[[46,46],14],[[47,47],14],[[51,51],14],[[16,16],14],[[52,52],14],[[57,57],14],[[59,59],14],[[60,60],14],[[18,-1],6,[[74,[],[[73,[18]]]]]],[[12,22],12],0,0,[3,[[17,[19]]]],[7,[[17,[19]]]],0,[[22,75],[[77,[6,76]]]],[[32,75],[[77,[6,76]]]],[[33,75],[[77,[6,76]]]],[[4,75],78],[[26,75],78],[[71,75],78],[[1,75],78],[[21,75],78],[[12,75],78],[[34,75],[[77,[6,76]]]],[[35,75],78],[[20,75],78],[[9,75],78],[[36,75],[[77,[6,76]]]],[[79,75],78],[[80,75],78],[[37,75],[[77,[6,76]]]],[[81,75],78],[[38,75],78],[[38,75],78],[[29,75],78],[[39,75],[[77,[6,76]]]],[[15,75],78],[[18,75],78],[[18,75],78],[[18,75],78],[[18,75],78],[[18,75],78],[[40,75],78],[[23,75],78],[[41,75],78],[[13,75],78],[[42,75],78],[[43,75],78],[[44,75],78],[[7,75],78],[[5,75],78],[[30,75],78],[[45,75],78],[[19,75],78],[[46,75],78],[[47,75],78],[[[8,[-1]],75],78,82],[[48,75],78],[[49,75],78],[[50,75],78],[[51,75],78],[[51,75],78],[[16,75],78],[[16,75],78],[[52,75],78],[[70,75],78],[[53,75],78],[[54,75],78],[[55,75],78],[[56,75],78],[[57,75],78],[[58,75],78],[[59,75],[[77,[6,76]]]],[[60,75],[[77,[6,76]]]],0,0,0,0,0,0,0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[12,35],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[29,30],[29,30],[[[83,[29]]],30],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[14,13],[14,13],[28,[[17,[18]]]],[28,18],[28,18],[28,18],[24,36],[24,36],[-1,18,[[74,[],[[73,[18]]]]]],[84,[[17,[18]]]],[24,36],[24,36],[1,2],[[58,57],[[17,[[85,[53]]]]]],[[4,86],[[17,[[83,[26]]]]]],[[4,12],[[83,[[85,[47]]]]]],[[4,86,84],[[17,[10]]]],[[71,4,40],[[17,[31]]]],[[71,4,40],[[17,[31]]]],[[4,-1],[[85,[86]]],[[87,[],[[73,[[25,[2]]]]]]]],[[71,4,40],[[17,[[68,[34]]]]]],[[9,10],12],0,0,0,0,0,0,0,[[22,-1],6,88],[[32,-1],6,88],[[33,-1],6,88],[[1,-1],6,88],[[21,-1],6,88],[[12,-1],6,88],[[35,-1],6,88],[[20,-1],6,88],[[18,-1],6,88],[[40,-1],6,88],[[23,-1],6,88],[[52,-1],6,88],[[57,-1],6,88],[[59,-1],6,88],0,[[80,41,41],[[17,[[6,[24,24]]]]]],[[29,24,24],[[17,[41]]]],[26,86],0,0,[[18,18],6],[[58,57,[85,[53]]],6],0,[[3,41,84,[17,[9]]],41],[[7,41,84,[17,[9]]],41],[[3,84,[17,[9]]],6],[[3,84,[17,[9]]],6],[[18,18],18],[[18,18],14],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[18,-1,[]],[4,[[6,[66,69]]]],[15,66],[37,[[17,[37]]]],[18,14],[18,14],[[4,86],14],0,[18,[[89,[18]]]],[18,[[90,[18]]]],[[15,4,24,24,51,[17,[24]]],[[68,[50]]]],[[56,24,24,51,[17,[16]],[17,[24]]],[[85,[50]]]],0,0,[[29,4,41],[[17,[42]]]],[[15,70,4,24,24,51,[17,[24]]],[[68,[50]]]],[15,[[17,[[85,[50]]]]]],[29,81],[[56,70,24,24,51,[17,[16]],[85,[50]],[17,[24]]],6],0,0,0,0,0,0,0,0,[[29,4,10],[[17,[[68,[50]]]]]],[[[8,[29]],10],[[17,[[68,[50]]]]]],[[29,4,10],[[17,[56]]]],[[[8,[29]],10],[[17,[56]]]],0,0,0,0,[4,84],[[12,91],14],0,0,[[12,10],12],[15,[[17,[10]]]],0,0,0,0,[29,38],[26,[[17,[24]]]],[29,[[17,[24]]]],[[],4],[[69,86],[[17,[26]]]],[[],71],[22,21],[[],12],[12,20],[12,9],[84,79],[[24,24,24,24,24,24],37],[29,81],[[24,24],38],[[4,38],29],[[-1,9,52],15,[[65,[66]]]],[[86,92,24,[6,[24,24]],18],[[6,[40,67,67]]]],[24,[[6,[67,23]]]],[[10,10],41],[[10,10,10],42],[[10,67],44],[-1,7,[[65,[30]]]],[[4,84,9,[11,[10]],93,14,52],54],[[4,84,9,[11,[10]],14,93,52],55],[[4,84,9,52],56],[[],31],[38,29],[[70,4,84,9,[11,[10]],93,14,52],54],[[70,4,84,9,[11,[10]],14,93,52],55],[[70,4,84,9,52],56],[[10,10,13],41],[-1,4,[[74,[],[[73,[94]]]]]],[[66,69],4],[79,[[17,[-1]]],[]],[81,[[17,[-1]]],[]],[18,18],0,[[32,32],[[17,[61]]]],[[1,1],[[17,[61]]]],[[18,18],[[17,[61]]]],[[40,40],[[17,[61]]]],[[23,23],[[17,[61]]]],[[41,41],[[17,[61]]]],[[13,13],[[17,[61]]]],[[42,42],[[17,[61]]]],[[44,44],[[17,[61]]]],[[47,47],[[17,[61]]]],[[59,59],[[17,[61]]]],[[48,[6,[24,24]],24],49],0,[[37,36],37],[[37,24,24],37],[[37,24,24],37],[1,2],[3,14],[3,14],[29,14],[[18,18],6],[15,6],[15,6],[15,6],[45,6],[19,6],[[2,2,2],1],[[2,2,2,2],1],[36,37],[[-1,36],37,[[65,[64]]]],0,0,0,[26,95],[[24,24],37],[[38,24],38],[26,[[68,[[25,[2]]]]]],[29,44],[3,46],[7,46],[3,[[17,[[6,[41,41]]]]]],[3,[[17,[[6,[41,41]]]]]],[[18,18,14],6],[[15,[17,[16]]],14],[[15,9],14],[[3,14],6],[[7,14],6],[[3,41],6],[[7,41],6],[[15,10],6],[[29,4,38],6],[[[8,[29]],38],6],[[29,4,38,24,24],6],[[[8,[29]],38,24,24],6],[[29,4,[17,[24]]],6],[[3,14],6],[[3,14],6],[[29,14],6],[[29,4,-1,12,52],6,[[74,[],[[73,[[6,[84,12]]]]]]]],[[[8,[29]],-1,12,52],6,[[74,[],[[73,[[6,[84,12]]]]]]]],[[29,44],6],[[3,46],6],[[7,46],6],[[29,4,24,24],6],[[[8,[29]],24,24],6],[[3,92],6],[[7,92],6],[[29,4,84,12,52],6],[[15,-1,9],14,[[96,[84]]]],[[[8,[29]],84,12,52],6],[[29,4,51],6],[[[8,[29]],51],6],[[15,4],56],[[3,4,14],6],[[7,4,14],6],[[[8,[-1]],14],6,3],[[15,70,4],56],[15,[[17,[56]]]],[[29,4,41,14],6],[[[8,[29]],41,14],6],[[29,4,14],6],[[[8,[29]],14],6],[29,[[6,[24,24]]]],[81,[[6,[10,[17,[10]]]]]],[[36,36],37],0,[9,[[85,[[6,[[11,[10]],20]]]]]],0,[[9,10],9],[[15,10],15],0,0,0,[3,6],[7,6],[[12,59],12],0,0,[[12,33],12],0,0,[[18,18],18],[[18,18],6],[[18,18],18],[3,92],[7,92],[15,84],0,0,0,[[37,37],37],[[37,36],37],[[37,24,24],37],[[37,24,24],37],[36,24],[59,92],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[36,24],[-1,66,[]],[-1,66,[]],[-1,66,[]],[[18,18],6],0,[[34,37],34],[[37,64],64],[[37,64],64],[[24,24],37],[[58,97],6],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,[[77,[-2]]],[],[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[-1,98,[]],[26,[[68,[28]]]],[[18,18],18],[34,99],[29,67],0,0,[[12,32],12],0,0,0,[[3,-2],-1,[],[[101,[29],[[100,[-1]]]]]],[[3,-2],-1,[],[[101,[29],[[100,[-1]]]]]],[[3,-2],-1,[],[[101,[29],[[100,[-1]]]]]],[[3,-2],-1,[],[[101,[29],[[100,[-1]]]]]],[[[8,[-1]],-3],-2,3,[],[[101,[[8,[29]]],[[100,[-2]]]]]],[[71,4,40,1,-1],6,[[72,[67,67,1]]]],0,[29,51],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"c":[],"p":[[5,"Color",0],[1,"u8"],[10,"Edit",0],[5,"FontSystem",0],[6,"Action",0],[1,"tuple"],[5,"Editor",0],[5,"BorrowedWithFontSystem",0],[5,"AttrsList",0],[1,"usize"],[5,"Range",1206],[5,"Attrs",0],[6,"Affinity",0],[1,"bool"],[5,"BufferLine",0],[6,"Align",0],[6,"Option",1207],[5,"CacheKeyFlags",0],[5,"Change",0],[5,"AttrsOwned",0],[6,"FamilyOwned",0],[6,"Family",0],[6,"SubpixelBin",0],[1,"f32"],[1,"array"],[5,"Font",0],[5,"FontRef",1208],[1,"u32"],[5,"Buffer",0],[6,"BufferRef",0],[5,"SwashImage",0],[5,"Weight",0],[6,"Style",0],[6,"Command",0],[5,"FontMatchAttrs",0],[5,"Angle",0],[5,"Transform",0],[5,"Metrics",0],[5,"Placement",0],[5,"CacheKey",0],[5,"Cursor",0],[5,"LayoutCursor",0],[6,"Motion",0],[5,"Scroll",0],[5,"ChangeItem",0],[6,"Selection",0],[5,"FontMatchKey",0],[5,"LayoutGlyph",0],[5,"PhysicalGlyph",0],[5,"LayoutLine",0],[6,"Wrap",0],[6,"Shaping",0],[5,"ShapeGlyph",0],[5,"ShapeWord",0],[5,"ShapeSpan",0],[5,"ShapeLine",0],[5,"ShapeRunKey",0],[5,"ShapeRunCache",0],[6,"Stretch",0],[6,"SwashContent",0],[6,"Ordering",1209],[6,"Origin",1210],[5,"Bounds",1210],[5,"Vector",1210],[10,"Into",1211],[5,"String",1212],[1,"i32"],[1,"slice"],[5,"Database",1213],[5,"ShapeBuffer",0],[5,"SwashCache",0],[10,"FnMut",1214],[17,"Item"],[10,"IntoIterator",1215],[5,"Formatter",1216],[5,"Error",1216],[6,"Result",1217],[8,"Result",1216],[5,"BidiParagraphs",0],[5,"LayoutRun",0],[5,"LayoutRunIter",0],[10,"Debug",1216],[5,"Arc",1218],[1,"str"],[5,"Vec",1219],[5,"ID",1213],[10,"Iterator",1220],[10,"Hasher",1221],[5,"Iter",1222],[5,"IterNames",1222],[5,"FaceInfo",1213],[1,"u16"],[5,"Level",1223],[6,"Source",1213],[5,"Face",1224],[10,"AsRef",1211],[1,"u64"],[5,"TypeId",1225],[6,"Verb",1226],[17,"Output"],[10,"FnOnce",1214],[15,"Scroll",1197],[15,"Click",1197],[15,"DoubleClick",1197],[15,"TripleClick",1197],[15,"Drag",1197]],"b":[[187,"impl-CacheKeyFlags"],[188,"impl-Flags-for-CacheKeyFlags"],[462,"impl-BorrowedWithFontSystem%3C\'a,+Buffer%3E"],[463,"impl-BorrowedWithFontSystem%3C\'font_system,+Editor%3C\'buffer%3E%3E"],[522,"impl-Display-for-Metrics"],[523,"impl-Debug-for-Metrics"],[527,"impl-LowerHex-for-CacheKeyFlags"],[528,"impl-Octal-for-CacheKeyFlags"],[529,"impl-Binary-for-CacheKeyFlags"],[530,"impl-UpperHex-for-CacheKeyFlags"],[531,"impl-Debug-for-CacheKeyFlags"],[550,"impl-Display-for-Wrap"],[551,"impl-Debug-for-Wrap"],[552,"impl-Debug-for-Align"],[553,"impl-Display-for-Align"],[605,"impl-From%3CBuffer%3E-for-BufferRef%3C\'buffer%3E"],[606,"impl-From%3C%26mut+Buffer%3E-for-BufferRef%3C\'buffer%3E"],[607,"impl-From%3CArc%3CBuffer%3E%3E-for-BufferRef%3C\'buffer%3E"],[633,"impl-Flags-for-CacheKeyFlags"],[634,"impl-CacheKeyFlags"]]}],\ @@ -82,7 +82,7 @@ var searchIndex = new Map(JSON.parse('[\ ["futures_sink",{"doc":"Asynchronous sinks","t":"RKMMMM","n":["Error","Sink","poll_close","poll_flush","poll_ready","start_send"],"q":[[0,"futures_sink"],[6,"core::pin"],[7,"core::task::wake"],[8,"core::result"],[9,"core::task::poll"]],"d":["The type of value produced by the sink when an error …","A Sink is a value into which other values can be sent, …","Flush any remaining output and close this sink, if …","Flush any remaining output from this sink.","Attempts to prepare the Sink to receive a value.","Begin the process of sending a value to the sink. Each …"],"i":[2,0,2,2,2,2],"f":[0,0,[[[3,[[2,[],[[1,[-1]]]]]],4],[[7,[[6,[5,-1]]]]],[]],[[[3,[[2,[],[[1,[-1]]]]]],4],[[7,[[6,[5,-1]]]]],[]],[[[3,[[2,[],[[1,[-1]]]]]],4],[[7,[[6,[5,-1]]]]],[]],[[[3,[[2,[],[[1,[-1]]]]]],-2],[[6,[5,-1]]],[],[]]],"c":[],"p":[[17,"Error"],[10,"Sink",0],[5,"Pin",6],[5,"Context",7],[1,"tuple"],[6,"Result",8],[6,"Poll",9]],"b":[]}],\ ["futures_task",{"doc":"Tools for working with tasks.","t":"KEFFKEEEKFKEFNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNHHNNNMMNNNNNNNNNNNNNNNNNNNMHH","n":["ArcWake","Context","FutureObj","LocalFutureObj","LocalSpawn","Poll","RawWaker","RawWakerVTable","Spawn","SpawnError","UnsafeFutureObj","Waker","WakerRef","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","drop","drop","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into_future","into_future","into_future_obj","into_raw","is_shutdown","new","new","new","new_unowned","noop_waker","noop_waker_ref","poll","poll","shutdown","spawn_local_obj","spawn_obj","status","status","status_local","status_local","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","wake","wake","wake_by_ref","waker","waker_ref"],"q":[[0,"futures_task"],[84,"core::task::wake"],[85,"core::future::future"],[86,"core::fmt"],[87,"core::fmt"],[88,"core::pin"],[89,"core::marker"],[90,"core::mem::manually_drop"],[91,"core::task::wake"],[92,"core::result"],[93,"alloc::string"],[94,"core::any"],[95,"alloc::sync"]],"d":["A way of waking up a specific task.","","A custom trait object for polling futures, roughly akin to …","A custom trait object for polling futures, roughly akin to …","The LocalSpawn is similar to Spawn, but allows spawning …","","","","The Spawn trait allows for pushing futures onto an …","An error that occurred during spawning.","A custom implementation of a future trait object for …","","A Waker that is only valid for a given lifetime.","","","","","","","","","","Drops the future represented by the given fat pointer.","","","","","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Converts the LocalFutureObj into a FutureObj.","Convert an owned instance into a (conceptually owned) fat …","Check whether spawning failed to the executor being shut …","Create a LocalFutureObj from a custom trait object …","Create a FutureObj from a custom trait object …","Create a new WakerRef from a Waker reference.","Create a new WakerRef from a Waker that must not be …","Create a new Waker which does nothing when wake() is …","Get a static reference to a Waker which does nothing when …","","","Spawning failed because the executor has been shut down.","Spawns a future that will be run to completion.","Spawns a future that will be run to completion.","Determines whether the executor is able to spawn new tasks.","Determines whether the executor is able to spawn new tasks.","Determines whether the executor is able to spawn new tasks.","Determines whether the executor is able to spawn new tasks.","","","","","","","","","","","","","","Indicates that the associated task is ready to make …","Indicates that the associated task is ready to make …","Indicates that the associated task is ready to make …","Creates a Waker from an Arc<impl ArcWake>.","Creates a reference to a Waker from a reference to …"],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,6,5,9,1,6,5,9,1,1,14,5,6,6,5,9,1,6,5,5,5,5,5,5,9,9,9,9,9,1,6,5,9,1,5,9,5,14,6,5,9,1,1,0,0,5,9,6,19,21,21,21,19,19,6,6,5,9,1,6,5,9,1,6,5,9,1,24,24,24,0,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1,2],[3,4],[[[5,[-1]]],4,[]],[[6,7],8],[[6,7],8],[[[5,[-1]],7],8,[]],[[[9,[-1]],7],8,[]],[[1,7],8],[-1,-1,[]],[[[10,[-1]]],[[5,[4]]],[[3,[],[[11,[4]]]]]],[[[9,[-1]]],[[5,[-1]]],[]],[[[12,[[10,[3]]]]],[[5,[4]]]],[[[10,[3]]],[[5,[4]]]],[-1,-1,[]],[[[12,[[10,[-1]]]]],[[5,[4]]],[[3,[],[[11,[4]]]]]],[[[12,[[10,[-1]]]]],[[9,[4]]],[[3,[],[[11,[4]]]],13]],[[[12,[[10,[3]]]]],[[9,[4]]]],[-1,-1,[]],[[[10,[3]]],[[9,[4]]]],[[[10,[-1]]],[[9,[4]]],[[3,[],[[11,[4]]]],13]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[],[]],[-1,[],[]],[[[5,[-1]]],[[9,[-1]]],[]],[14,3],[6,15],[-2,[[5,[-1]]],[],[[14,[-1]]]],[-2,[[9,[-1]]],[],[[14,[-1]],13]],[2,1],[[[16,[2]]],1],[[],2],[[],2],[[[12,[[5,[-1]]]],17],[[18,[-1]]],[]],[[[12,[[9,[-1]]]],17],[[18,[-1]]],[]],[[],6],[[19,[5,[4]]],[[20,[4,6]]]],[[21,[9,[4]]],[[20,[4,6]]]],[21,[[20,[4,6]]]],[21,[[20,[4,6]]]],[19,[[20,[4,6]]]],[19,[[20,[4,6]]]],[-1,22,[]],[-1,[[20,[-2]]],[],[]],[-1,[[20,[-2]]],[],[]],[-1,[[20,[-2]]],[],[]],[-1,[[20,[-2]]],[],[]],[-1,[[20,[-2]]],[],[]],[-1,[[20,[-2]]],[],[]],[-1,[[20,[-2]]],[],[]],[-1,[[20,[-2]]],[],[]],[-1,23,[]],[-1,23,[]],[-1,23,[]],[-1,23,[]],[[[25,[24]]],4],[[[25,[24]]],4],[[[25,[24]]],4],[[[25,[-1]]],2,24],[[[25,[-1]]],1,24]],"c":[],"p":[[5,"WakerRef",0],[5,"Waker",84],[10,"Future",85],[1,"tuple"],[5,"LocalFutureObj",0],[5,"SpawnError",0],[5,"Formatter",86],[8,"Result",86],[5,"FutureObj",0],[5,"Box",87],[17,"Output"],[5,"Pin",88],[10,"Send",89],[10,"UnsafeFutureObj",0],[1,"bool"],[5,"ManuallyDrop",90],[5,"Context",84],[6,"Poll",91],[10,"LocalSpawn",0],[6,"Result",92],[10,"Spawn",0],[5,"String",93],[5,"TypeId",94],[10,"ArcWake",0],[5,"Arc",95]],"b":[[24,"impl-Debug-for-SpawnError"],[25,"impl-Display-for-SpawnError"],[30,"impl-From%3CBox%3CF%3E%3E-for-LocalFutureObj%3C\'a,+()%3E"],[31,"impl-From%3CFutureObj%3C\'a,+T%3E%3E-for-LocalFutureObj%3C\'a,+T%3E"],[32,"impl-From%3CPin%3CBox%3Cdyn+Future%3COutput+=+()%3E%3E%3E%3E-for-LocalFutureObj%3C\'a,+()%3E"],[33,"impl-From%3CBox%3Cdyn+Future%3COutput+=+()%3E%3E%3E-for-LocalFutureObj%3C\'a,+()%3E"],[35,"impl-From%3CPin%3CBox%3CF%3E%3E%3E-for-LocalFutureObj%3C\'a,+()%3E"],[36,"impl-From%3CPin%3CBox%3CF%3E%3E%3E-for-FutureObj%3C\'a,+()%3E"],[37,"impl-From%3CPin%3CBox%3Cdyn+Future%3COutput+=+()%3E+%2B+Send%3E%3E%3E-for-FutureObj%3C\'a,+()%3E"],[39,"impl-From%3CBox%3Cdyn+Future%3COutput+=+()%3E+%2B+Send%3E%3E-for-FutureObj%3C\'a,+()%3E"],[40,"impl-From%3CBox%3CF%3E%3E-for-FutureObj%3C\'a,+()%3E"]]}],\ ["futures_util",{"doc":"Combinators and utilities for working with Futures, Stream…","t":"EEEEEEEEEEEEEEEEEECCQQCCQQQQQQQQQQCCQQCQQFFFFFIFPPGFRFFFFKEPPKFPPFFFFFFFFFFFPIFFFFFFGFRFFFFFFFFFPFFFFFFFKKFFFFFGFFKFFNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHHHHNNNNNNNNNNNNHNNNNNNHNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNNNNNNNNNNNHNNNNHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHHHHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFKKKKKKKKFFFFFFFFFEEFFFEEFFFFFFFFFFFEFFFEFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNHHHNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNMNNNNNNNMNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNMNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNIFFFRFFFFFKFKFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNMNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNFFFFFFFIFFFFFFFFFFFFRFFFFFIFFFFFKFFFFFFFRFPIFFFFFFRFFFFFFFFGFFFFPFFFFFFFFFKKFFFFFFFFFFFFFFFFFFFFFFFFKKFFFFFHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNHNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNHCHNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNKFEFFKKEEEKFKKEFNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNHHNNNNNNNNMNNMNNNNNNNNNNNNNNNNNNNNNNNNNMHH","n":["AsyncBufRead","AsyncBufReadExt","AsyncRead","AsyncReadExt","AsyncSeek","AsyncSeekExt","AsyncWrite","AsyncWriteExt","Future","FutureExt","Sink","SinkExt","Stream","StreamExt","TryFuture","TryFutureExt","TryStream","TryStreamExt","future","io","join","join","lock","never","pending","pending","pin_mut","poll","poll","ready","select","select","select_biased","select_biased","sink","stream","stream_select","stream_select","task","try_join","try_join","AbortHandle","AbortRegistration","Abortable","Aborted","AndThen","BoxFuture","CatchUnwind","Done","Done","Either","ErrInto","Error","Flatten","FlattenSink","FlattenStream","Fuse","FusedFuture","Future","Future","Future","FutureExt","FutureObj","Gone","Gone","Inspect","InspectErr","InspectOk","IntoFuture","IntoStream","Join","Join3","Join4","Join5","JoinAll","Lazy","Left","LocalBoxFuture","LocalFutureObj","Map","MapErr","MapInto","MapOk","MapOkOrElse","MaybeDone","NeverError","Ok","OkInto","OptionFuture","OrElse","Pending","PollFn","PollImmediate","Ready","Remote","RemoteHandle","Right","Select","SelectAll","SelectOk","Shared","Then","TryFlatten","TryFlattenStream","TryFuture","TryFutureExt","TryJoin","TryJoin3","TryJoin4","TryJoin5","TryJoinAll","TryMaybeDone","TrySelect","UnitError","UnsafeFutureObj","UnwrapOrElse","WeakShared","abort","abortable","and_then","and_then","as_pin_mut","as_pin_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","boxed","boxed","boxed_local","boxed_local","catch_unwind","catch_unwind","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","consume","default","downgrade","drop","drop","eq","err","err_into","err_into","factor_first","factor_second","flatten","flatten","flatten_sink","flatten_sink","flatten_stream","flatten_stream","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","forget","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_iter","from_iter","from_iter","fuse","fuse","handle","inspect","inspect","inspect_err","inspect_err","inspect_ok","inspect_ok","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_inner","into_inner","into_inner","into_raw","into_stream","into_stream","is_aborted","is_aborted","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","join","join3","join4","join5","join_all","lazy","left_future","left_future","map","map","map_err","map_err","map_into","map_into","map_ok","map_ok","map_ok_or_else","map_ok_or_else","maybe_done","never_error","never_error","new","new_pair","now_or_never","now_or_never","ok","ok_into","ok_into","or_else","or_else","output_mut","output_mut","peek","pending","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll_close","poll_close","poll_close","poll_close","poll_close","poll_fill_buf","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_fn","poll_immediate","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_read","poll_read_vectored","poll_ready","poll_ready","poll_ready","poll_ready","poll_seek","poll_unpin","poll_unpin","poll_write","poll_write_vectored","ptr_eq","ptr_hash","ready","remote_handle","remote_handle","right_future","right_future","select","select_all","select_ok","shared","shared","size_hint","size_hint","size_hint","size_hint","size_hint","start_send","start_send","start_send","start_send","strong_count","take_output","take_output","terminated","then","then","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_flatten","try_flatten","try_flatten_stream","try_flatten_stream","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_join","try_join3","try_join4","try_join5","try_join_all","try_maybe_done","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_unpin","try_poll_unpin","try_select","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unit_error","unit_error","unwrap_or_else","unwrap_or_else","upgrade","weak_count","AllowStdIo","AsyncBufRead","AsyncBufReadExt","AsyncRead","AsyncReadExt","AsyncSeek","AsyncSeekExt","AsyncWrite","AsyncWriteExt","BufReader","BufWriter","Chain","Close","Copy","CopyBuf","CopyBufAbortable","Cursor","Empty","Error","ErrorKind","FillBuf","Flush","IntoSink","IoSlice","IoSliceMut","LineWriter","Lines","Read","ReadExact","ReadHalf","ReadLine","ReadToEnd","ReadToString","ReadUntil","ReadVectored","Repeat","Result","ReuniteError","SeeKRelative","Seek","SeekFrom","Sink","Take","Window","Write","WriteAll","WriteHalf","WriteVectored","as_mut","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer","buffer","buffer","chain","clone","clone","clone_into","clone_into","close","cmp","consume","consume","consume","consume","consume","consume","consume","consume","consume","consume_unpin","copy","copy_buf","copy_buf_abortable","default","empty","end","eq","fill_buf","fill_buf","flush","flush","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","hash","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_sink","is_pair_of","is_pair_of","limit","lines","new","new","new","new","new","new","partial_cmp","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_fill_buf","poll_fill_buf","poll_fill_buf","poll_fill_buf","poll_fill_buf","poll_fill_buf","poll_fill_buf","poll_fill_buf","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_next","poll_read","poll_read","poll_read","poll_read","poll_read","poll_read","poll_read","poll_read","poll_read","poll_read","poll_read_vectored","poll_read_vectored","poll_read_vectored","poll_read_vectored","poll_read_vectored","poll_read_vectored","poll_read_vectored","poll_read_vectored","poll_ready","poll_seek","poll_seek","poll_seek","poll_seek","poll_seek","poll_seek_relative","poll_write","poll_write","poll_write","poll_write","poll_write","poll_write","poll_write","poll_write","poll_write","poll_write","poll_write","poll_write_vectored","poll_write_vectored","poll_write_vectored","poll_write_vectored","poll_write_vectored","poll_write_vectored","poll_write_vectored","poll_write_vectored","poll_write_vectored","poll_write_vectored","poll_write_vectored","position","read","read","read_exact","read_exact","read_line","read_to_end","read_to_end","read_to_string","read_to_string","read_until","read_vectored","read_vectored","repeat","reunite","reunite","seek","seek","seek_relative","set","set_limit","set_position","sink","split","start","start_send","stream_position","take","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll_next","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","with_capacity","with_capacity","with_capacity","write","write","write_all","write_all","write_fmt","write_vectored","write_vectored","MappedMutexGuard","Mutex","MutexGuard","MutexLockFuture","OwnedMutexGuard","OwnedMutexLockFuture","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","get_mut","into","into","into","into","into","into","into_future","into_future","into_inner","is_terminated","is_terminated","lock","lock_owned","map","map","new","poll","poll","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_lock","try_lock_owned","type_id","type_id","type_id","type_id","type_id","type_id","Never","Buffer","Close","Drain","Error","Fanout","Feed","Flush","Send","SendAll","Sink","SinkErrInto","SinkExt","SinkMapErr","Unfold","With","WithFlatMap","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer","clone","clone","clone","clone_into","clone_into","clone_into","close","drain","fanout","feed","flush","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","into","into","into","into","into","into","into","into","into","into","into","into","into","into_future","into_future","into_future","into_future","into_future","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","is_terminated","is_terminated","is_terminated","is_terminated","left_sink","poll","poll","poll","poll","poll","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close_unpin","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush_unpin","poll_next","poll_next","poll_next","poll_next","poll_next","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready_unpin","right_sink","send","send_all","sink_err_into","sink_map_err","size_hint","size_hint","size_hint","size_hint","size_hint","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send_unpin","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unfold","with","with_flat_map","AbortHandle","AbortRegistration","Abortable","Aborted","All","AndThen","Any","BoxStream","BufferUnordered","Buffered","CatchUnwind","Chain","Chunks","Collect","Concat","Count","Cycle","Empty","Enumerate","ErrInto","Error","Filter","FilterMap","FlatMap","FlatMapUnordered","Flatten","FlattenUnordered","Fold","ForEach","ForEachConcurrent","Forward","Fuse","FusedStream","FuturesOrdered","FuturesUnordered","Inspect","InspectErr","InspectOk","IntoAsyncRead","IntoStream","Item","Iter","Left","LocalBoxStream","Map","MapErr","MapOk","Next","NextIf","NextIfEq","Ok","Once","OrElse","Peek","PeekMut","Peekable","Pending","PollFn","PollImmediate","PollNext","ReadyChunks","Repeat","RepeatWith","ReuniteError","Right","Scan","Select","SelectAll","SelectNextSome","SelectWithStrategy","Skip","SkipWhile","SplitSink","SplitStream","Stream","StreamExt","StreamFuture","Take","TakeUntil","TakeWhile","Then","TryAll","TryAny","TryBufferUnordered","TryBuffered","TryChunks","TryChunksError","TryCollect","TryConcat","TryFilter","TryFilterMap","TryFlatten","TryFlattenUnordered","TryFold","TryForEach","TryForEachConcurrent","TryNext","TryReadyChunks","TryReadyChunksError","TrySkipWhile","TryStream","TryStreamExt","TryTakeWhile","TryUnfold","Unfold","Unzip","Zip","abortable","all","all","and_then","and_then","any","any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","boxed","boxed","boxed_local","boxed_local","buffer_unordered","buffer_unordered","buffered","buffered","by_ref","by_ref","catch_unwind","catch_unwind","chain","chain","chunks","chunks","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","collect","collect","concat","concat","consume","count","count","cycle","cycle","default","default","default","default","drop","empty","enumerate","enumerate","eq","eq","eq","err_into","err_into","extend","extend","extend","filter","filter","filter_map","filter_map","flat_map","flat_map","flat_map_unordered","flat_map_unordered","flatten","flatten","flatten_unordered","flatten_unordered","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fold","fold","for_each","for_each","for_each_concurrent","for_each_concurrent","forward","forward","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_iter","from_iter","fuse","fuse","futures_unordered","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_pin_mut","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","get_ref","hash","inspect","inspect","inspect_err","inspect_err","inspect_ok","inspect_ok","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_async_read","into_async_read","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_future","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_stream","into_stream","is_done","is_empty","is_pair_of","is_pair_of","is_stopped","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","is_terminated","iter","left_stream","left_stream","len","map","map","map_err","map_err","map_ok","map_ok","new","next","next","next_if","next_if_eq","once","or_else","or_else","peek","peek_mut","peekable","peekable","pending","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_close","poll_fill_buf","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_flush","poll_fn","poll_immediate","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next","poll_next_unpin","poll_next_unpin","poll_peek","poll_peek_mut","poll_read","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_ready","poll_write","push","push_back","push_front","ready_chunks","ready_chunks","repeat","repeat_with","reunite","reunite","right_stream","right_stream","scan","scan","select","select_all","select_all","select_next_some","select_next_some","select_with_strategy","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","skip","skip","skip_while","skip_while","spawn_local_obj","spawn_obj","split","split","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","start_send","take","take","take_future","take_result","take_until","take_until","take_while","take_while","then","then","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","toggle","try_all","try_all","try_any","try_any","try_buffer_unordered","try_buffer_unordered","try_buffered","try_buffered","try_chunks","try_chunks","try_collect","try_collect","try_concat","try_concat","try_filter","try_filter","try_filter_map","try_filter_map","try_flatten","try_flatten","try_flatten_unordered","try_flatten_unordered","try_fold","try_fold","try_for_each","try_for_each","try_for_each_concurrent","try_for_each_concurrent","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_next","try_next","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next","try_poll_next_unpin","try_poll_next_unpin","try_ready_chunks","try_ready_chunks","try_skip_while","try_skip_while","try_take_while","try_take_while","try_unfold","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unfold","unzip","unzip","zip","zip","FuturesUnordered","IntoIter","Iter","IterMut","IterPinMut","IterPinRef","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clear","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","is_empty","iter","iter_mut","iter_pin_mut","iter_pin_ref","len","new","next","next","next","next","next","push","size_hint","size_hint","size_hint","size_hint","size_hint","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","IntoIter","Iter","IterMut","SelectAll","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clear","fmt","fmt","fmt","from","from","from","into","into","into","into_iter","into_iter","into_iter","is_empty","iter","iter_mut","len","new","next","next","next","push","select_all","size_hint","size_hint","size_hint","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","ArcWake","AtomicWaker","Context","FutureObj","LocalFutureObj","LocalSpawn","LocalSpawnExt","Poll","RawWaker","RawWakerVTable","Spawn","SpawnError","SpawnExt","UnsafeFutureObj","Waker","WakerRef","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","default","deref","drop","drop","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into_future","into_future","into_future_obj","into_raw","is_shutdown","new","new","new","new","new_unowned","noop_waker","noop_waker_ref","poll","poll","register","shutdown","spawn","spawn","spawn_local","spawn_local","spawn_local_obj","spawn_local_with_handle","spawn_local_with_handle","spawn_obj","spawn_with_handle","spawn_with_handle","status","status_local","take","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_poll","try_poll","type_id","type_id","type_id","type_id","type_id","wake","wake","wake_by_ref","waker","waker_ref"],"q":[[0,"futures_util"],[41,"futures_util::future"],[942,"futures_util::io"],[1511,"futures_util::lock"],[1594,"futures_util::never"],[1595,"futures_util::sink"],[1837,"futures_util::stream"],[3545,"futures_util::stream::futures_unordered"],[3615,"futures_util::stream::select_all"],[3660,"futures_util::task"],[3767,"core::future::future"],[3768,"core::ops::function"],[3769,"core::pin"],[3770,"core::clone"],[3771,"core::option"],[3772,"core::result"],[3773,"core::fmt"],[3774,"core::fmt"],[3775,"core::marker"],[3776,"alloc::vec"],[3777,"core::task::wake"],[3778,"core::task::poll"],[3779,"core::ops::function"],[3780,"std::io::error"],[3781,"std::io"],[3782,"std::io"],[3783,"alloc::string"],[3784,"core::any"],[3785,"core::convert"],[3786,"core::convert"],[3787,"core::cmp"],[3788,"core::cmp"],[3789,"std::io"],[3790,"core::fmt"],[3791,"core::convert"],[3792,"core::task::wake"]],"d":["","","","","","","","","","","","","","","","","","","Asynchronous values.","Asynchronous I/O.","Polls multiple futures simultaneously, returning a tuple …","Polls multiple futures simultaneously, returning a tuple …","Futures-powered synchronization primitives.","This module contains the Never type.","A macro which yields to the event loop once.","A macro which yields to the event loop once.","Pins a value on the stack.","A macro which returns the result of polling a future once …","A macro which returns the result of polling a future once …","Extracts the successful type of a Poll<T>.","Polls multiple futures and streams simultaneously, …","Polls multiple futures and streams simultaneously, …","Polls multiple futures and streams simultaneously, …","Polls multiple futures and streams simultaneously, …","Asynchronous sinks.","Asynchronous streams.","Combines several streams, all producing the same Item …","Combines several streams, all producing the same Item …","Tools for working with tasks.","Polls multiple futures simultaneously, resolving to a …","Polls multiple futures simultaneously, resolving to a …","A handle to an Abortable task.","A registration handle for an Abortable task. Values of …","A future/stream which can be remotely short-circuited …","Indicator that the Abortable task was aborted.","Future for the and_then method.","An owned dynamically typed Future for use in cases where …","Future for the catch_unwind method.","The output of the completed future","The output of the completed future","Combines two different futures, streams, or sinks having …","Future for the err_into method.","The type of failures yielded by this future","Future for the flatten method.","Sink for the flatten_sink method.","Stream for the flatten_stream method.","Future for the fuse method.","A future which tracks whether or not the underlying future …","","A not-yet-completed future","A not-yet-completed future","An extension trait for Futures that provides a variety of …","A custom trait object for polling futures, roughly akin to …","The empty variant after the result of a MaybeDone has been …","The empty variant after the result of a TryMaybeDone has …","Future for the inspect method.","Future for the inspect_err method.","Future for the inspect_ok method.","Future for the into_future method.","Stream for the into_stream method.","Future for the join function.","Future for the join3 function.","Future for the join4 function.","Future for the join5 function.","Future for the join_all function.","Future for the lazy function.","First branch of the type","BoxFuture, but without the Send requirement.","A custom trait object for polling futures, roughly akin to …","Future for the map method.","Future for the map_err method.","Future for the map_into combinator.","Future for the map_ok method.","Future for the map_ok_or_else method.","A future that may have completed.","Future for the never_error combinator.","The type of successful values yielded by this future","Future for the ok_into method.","A future representing a value which may or may not be …","Future for the or_else method.","Future for the pending() function.","Future for the poll_fn function.","Future for the poll_immediate function.","Future for the ready function.","A future which sends its output to the corresponding …","The handle to a remote future returned by remote_handle. …","Second branch of the type","Future for the select() function.","Future for the select_all function.","Future for the select_ok function.","Future for the shared method.","Future for the then method.","Future for the try_flatten method.","Future for the try_flatten_stream method.","A convenience for futures that return Result values that …","Adapters specific to Result-returning futures","Future for the try_join function.","Future for the try_join3 function.","Future for the try_join4 function.","Future for the try_join5 function.","Future for the try_join_all function.","A future that may have completed with an error.","Future for the try_select() function.","Future for the unit_error combinator.","A custom implementation of a future trait object for …","Future for the unwrap_or_else method.","A weak reference to a Shared that can be upgraded much …","Abort the Abortable stream/future associated with this …","Creates a new Abortable future and an AbortHandle which …","Executes another future after this one resolves …","Executes another future after this one resolves …","Convert Pin<&mut Either<A, B>> to …","Convert Pin<&Either<A, B>> to Either<Pin<&A>, Pin<&B>>, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Wrap the future in a Box, pinning it.","Wrap the future in a Box, pinning it.","Wrap the future in a Box, pinning it.","Wrap the future in a Box, pinning it.","Catches unwinding panics while polling the future.","Catches unwinding panics while polling the future.","","","","","","","","","","","","","","","","","","","","","","","Creates a new WeakShared for this Shared.","Drops the future represented by the given fat pointer.","","","Create a future that is immediately ready with an error …","Maps this future’s Error to a new error type using the …","Maps this future’s Error to a new error type using the …","Factor out a homogeneous type from an either of pairs.","Factor out a homogeneous type from an either of pairs.","Flatten the execution of this future when the output of …","Flatten the execution of this future when the output of …","Flattens the execution of this future when the successful …","Flattens the execution of this future when the successful …","Flatten the execution of this future when the successful …","Flatten the execution of this future when the successful …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Drops this handle without canceling the underlying future.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Fuse a future such that poll will never again be called …","Fuse a future such that poll will never again be called …","Create an AbortHandle from the given AbortRegistration.","Do something with the output of a future before passing it …","Do something with the output of a future before passing it …","Do something with the error value of a future before …","Do something with the error value of a future before …","Do something with the success value of a future before …","Do something with the success value of a future before …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Wraps a TryFuture into a type that implements Future.","Wraps a TryFuture into a type that implements Future.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Unwraps the value from this immediately ready future.","Consumes this combinator, returning the underlying futures.","Extract the value of an either over two equivalent types.","Convert an owned instance into a (conceptually owned) fat …","Convert this future into a single element stream.","Convert this future into a single element stream.","Checks whether the task has been aborted. Note that all …","Checks whether AbortHandle::abort was called on any …","Returns true if the underlying future should no longer be …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Joins the result of two futures, waiting for them both to …","Same as join, but with more futures.","Same as join, but with more futures.","Same as join, but with more futures.","Creates a future which represents a collection of the …","Creates a new future that allows delayed execution of a …","Wrap this future in an Either future, making it the …","Wrap this future in an Either future, making it the …","Map this future’s output to a different type, returning …","Map this future’s output to a different type, returning …","Maps this future’s error value to a different value.","Maps this future’s error value to a different value.","Map this future’s output to a different type, returning …","Map this future’s output to a different type, returning …","Maps this future’s success value to a different value.","Maps this future’s success value to a different value.","Maps this future’s success value to a different value, …","Maps this future’s success value to a different value, …","Wraps a future into a MaybeDone","Turns a Future<Output = T> into a …","Turns a Future<Output = T> into a …","Creates a new Abortable future/stream using an existing …","Creates an (AbortHandle, AbortRegistration) pair which can …","Evaluates and consumes the future, returning the resulting …","Evaluates and consumes the future, returning the resulting …","Create a future that is immediately ready with a success …","Maps this future’s Ok to a new type using the Into trait.","Maps this future’s Ok to a new type using the Into trait.","Executes another future if this one resolves to an error. …","Executes another future if this one resolves to an error. …","Returns an Option containing a mutable reference to the …","Returns an Option containing a mutable reference to the …","Returns Some containing a reference to this Shared’s …","Creates a future which never resolves, representing a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new future wrapping around a function returning …","Creates a future that is immediately ready with an Option …","","","","","","","","","","","","","","","A convenience for calling Future::poll on Unpin future …","A convenience for calling Future::poll on Unpin future …","","","Returns true if the two Shareds point to the same future …","Hashes the internal state of this Shared in a way that’s …","Creates a future that is immediately ready with a value.","Turn this future into a future that yields () on …","Turn this future into a future that yields () on …","Wrap this future in an Either future, making it the …","Wrap this future in an Either future, making it the …","Waits for either one of two differently-typed futures to …","Creates a new future which will select over a list of …","Creates a new future which will select the first …","Create a cloneable handle to this future where all handles …","Create a cloneable handle to this future where all handles …","","","","","","","","","","Gets the number of strong pointers to this allocation.","Attempt to take the output of a MaybeDone without driving …","Attempt to take the output of a TryMaybeDone without …","Creates a new Fuse-wrapped future which is already …","Chain on a computation for when a future finished, passing …","Chain on a computation for when a future finished, passing …","","","","","","","","","","","","Flatten the execution of this future when the successful …","Flatten the execution of this future when the successful …","Flatten the execution of this future when the successful …","Flatten the execution of this future when the successful …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Joins the result of two futures, waiting for them both to …","Same as try_join, but with more futures.","Same as try_join, but with more futures.","Same as try_join, but with more futures.","Creates a future which represents either a collection of …","Wraps a future into a TryMaybeDone","Poll this TryFuture as if it were a Future.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A convenience method for calling TryFuture::try_poll on …","A convenience method for calling TryFuture::try_poll on …","Waits for either one of two differently-typed futures to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Turns a Future<Output = T> into a …","Turns a Future<Output = T> into a …","Unwraps this future’s output, producing a future with …","Unwraps this future’s output, producing a future with …","Attempts to upgrade this WeakShared into a Shared.","Gets the number of weak pointers to this allocation.","A simple wrapper type which allows types which implement …","Read bytes asynchronously.","An extension trait which adds utility methods to …","Read bytes asynchronously.","An extension trait which adds utility methods to AsyncRead …","Seek bytes asynchronously.","An extension trait which adds utility methods to AsyncSeek …","Write bytes asynchronously.","An extension trait which adds utility methods to AsyncWrite…","The BufReader struct adds buffering to any reader.","Wraps a writer and buffers its output.","Reader for the chain method.","Future for the close method.","Future for the copy() function.","Future for the copy_buf() function.","Future for the copy_buf_abortable() function.","A Cursor wraps an in-memory buffer and provides it with a …","Reader for the empty() function.","","","Future for the fill_buf method.","Future for the flush method.","Sink for the into_sink method.","","","Wrap a writer, like BufWriter does, but prioritizes …","Stream for the lines method.","Future for the read method.","Future for the read_exact method.","The readable half of an object returned from …","Future for the read_line method.","Future for the read_to_end method.","Future for the read_to_string method.","Future for the read_until method.","Future for the read_vectored method.","Reader for the repeat() function.","","Error indicating a ReadHalf<T> and WriteHalf<T> were not …","Future for the BufReader::seek_relative method.","Future for the seek method.","","Writer for the sink() function.","Reader for the take method.","An owned window around an underlying buffer.","Future for the write method.","Future for the write_all method.","The writable half of an object returned from …","Future for the write_vectored method.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a reference to the internally buffered data.","Returns a reference to the internally buffered data.","Returns a reference to buf_writer’s internally buffered …","Creates an adaptor which will chain this stream with …","","","","","Creates a future which will entirely close this AsyncWrite.","","Tells this buffer that amt bytes have been consumed from …","","","","","","","","","A convenience for calling AsyncBufRead::consume on Unpin …","Creates a future which copies all the bytes from one …","Creates a future which copies all the bytes from one …","Creates a future which copies all the bytes from one …","","Constructs a new handle to an empty reader.","Returns the end index of this window into the underlying …","","Creates a future which will wait for a non-empty buffer to …","","Creates a future which will entirely flush this AsyncWrite.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns a mutable reference to the contained IO object.","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Gets mutable references to the underlying readers in this …","Gets a mutable reference to the underlying value in this …","Acquires a mutable reference to the underlying sink or …","Gets a mutable reference to the underlying buffer inside …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Gets pinned mutable references to the underlying readers …","Acquires a pinned mutable reference to the underlying sink …","Returns a reference to the contained IO object.","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Gets references to the underlying readers in this Chain.","Gets a reference to the underlying value in this cursor.","Acquires a reference to the underlying sink or stream that …","Gets a shared reference to the underlying buffer inside of …","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","Consumes self and returns the contained IO object.","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes the Chain, returning the wrapped readers.","Consumes this cursor, returning the underlying value.","Consumes this combinator, returning the underlying sink or …","Consumes this Window, returning the underlying buffer.","Allow using an AsyncWrite as a Sink<Item: AsRef<[u8]>>.","Checks if this ReadHalf and some WriteHalf were split from …","Checks if this WriteHalf and some ReadHalf were split from …","Returns the remaining number of bytes that can be read …","Returns a stream over the lines of this reader. This …","Creates a new AllowStdIo from an existing IO object.","Creates a new BufReader with a default buffer capacity. …","Creates a new BufWriter with a default buffer capacity. …","Create a new LineWriter with default buffer capacity. The …","Creates a new cursor wrapping the provided underlying …","Creates a new window around the buffer t defaulting to the …","","","","","","","","","","","","","","","","","","","","Attempt to close the object.","","","","","Forward to buf_writer ’s BufWriter::poll_close()","","","","","","","Attempt to return the contents of the internal buffer, …","","","","","","","","Attempt to flush the object, ensuring that any buffered …","","","","","Forward to buf_writer ’s BufWriter::poll_flush()","","","","","","","","Attempt to read from the AsyncRead into buf.","","","","","","","","","","Attempt to read from the AsyncRead into bufs using vectored","","","","","","","","","Attempt to seek to an offset, in bytes, in a stream.","","Seek to an offset, in bytes, in the underlying reader.","Seek to the offset, in bytes, in the underlying writer.","","Attempts to seek relative to the current position. If the …","Attempt to write bytes from buf into the object.","","","","","","","","","","","Attempt to write bytes from bufs into the object using …","","","","","","","","","","","Returns the current position of this cursor.","Tries to read some bytes directly into the given buf in …","","Creates a future which will read exactly enough bytes to …","","Creates a future which will read all the bytes associated …","Creates a future which will read all the bytes from this …","","Creates a future which will read all the bytes from this …","","Creates a future which will read all the bytes associated …","Creates a future which will read from the AsyncRead into …","","Creates an instance of a reader that infinitely repeats …","Attempts to put the two “halves” of a split …","Attempts to put the two “halves” of a split …","Creates a future which will seek an IO object, and then …","","Seeks relative to the current position. If the new …","Changes the range of this window to the range specified.","Sets the number of bytes that can be read before this …","Sets the position of this cursor.","Creates an instance of a writer which will successfully …","Helper method for splitting this read/write object into …","Returns the starting index of this window into the …","","Creates a future which will return the current seek …","Creates an AsyncRead adapter which will read at most limit …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new BufReader with the specified buffer capacity.","Creates a new BufWriter with the specified buffer capacity.","Creates a new LineWriter with the specified buffer …","Creates a future which will write bytes from buf into the …","","Write data into this object.","","","Creates a future which will write bytes from bufs into the …","","An RAII guard returned by the MutexGuard::map and …","A futures-aware mutex.","An RAII guard returned by the lock and try_lock methods. …","A future which resolves when the target mutex has been …","An RAII guard returned by the lock_owned and try_lock_owned…","A future which resolves when the target mutex has been …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns a mutable reference to the underlying data.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Consumes this mutex, returning the underlying data.","","","Acquire the lock asynchronously.","Acquire the lock asynchronously.","Returns a locked view over a portion of the locked data.","Returns a locked view over a portion of the locked data.","Creates a new futures-aware mutex.","","","","","","","","","","","","","","","Attempt to acquire the lock immediately.","Attempt to acquire the lock immediately.","","","","","","","A type with no possible values.","Sink for the buffer method.","Future for the close method.","Sink for the drain function.","The type of value produced by the sink when an error …","Sink that clones incoming items and forwards them to two …","Future for the feed method.","Future for the flush method.","Future for the send method.","Future for the send_all method.","A Sink is a value into which other values can be sent, …","Sink for the sink_err_into method.","An extension trait for Sinks that provides a variety of …","Sink for the sink_map_err method.","Sink for the unfold function.","Sink for the with method.","Sink for the with_flat_map method.","","","","","","","","","","","","","","","","","","","","","","","","","","","Adds a fixed-size buffer to the current sink.","","","","","","","Close the sink.","Create a sink that will just discard all items given to it.","Fanout items to multiple sinks.","A future that completes after the given item has been …","Flush the sink, processing all pending items.","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Get a mutable reference to the inner sinks.","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Get a pinned mutable reference to the inner sinks.","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Get a shared reference to the inner sinks.","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","Consumes this combinator, returning the underlying sinks.","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","","","","","Wrap this sink in an Either sink, making it the left-hand …","","","","","","Flush any remaining output and close this sink, if …","","","","","","","","","A convenience method for calling Sink::poll_close on Unpin …","Flush any remaining output from this sink.","","","","","","","","","A convenience method for calling Sink::poll_flush on Unpin …","","","","","","Attempts to prepare the Sink to receive a value.","","","","","","","","","A convenience method for calling Sink::poll_ready on Unpin …","Wrap this stream in an Either stream, making it the …","A future that completes after the given item has been …","A future that completes after the given stream has been …","Map this sink’s error to a different error type using …","Transforms the error returned by the sink.","","","","","","Begin the process of sending a value to the sink. Each …","","","","","","","","","A convenience method for calling Sink::start_send on Unpin …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a sink from a function which processes one item at …","Composes a function in front of the sink.","Composes a function in front of the sink.","A handle to an Abortable task.","A registration handle for an Abortable task. Values of …","A future/stream which can be remotely short-circuited …","Indicator that the Abortable task was aborted.","Future for the all method.","Stream for the and_then method.","Future for the any method.","An owned dynamically typed Stream for use in cases where …","Stream for the buffer_unordered method.","Stream for the buffered method.","Stream for the catch_unwind method.","Stream for the chain method.","Stream for the chunks method.","Future for the collect method.","Future for the concat method.","Future for the count method.","Stream for the cycle method.","Stream for the empty function.","Stream for the enumerate method.","Stream for the err_into method.","The type of failures yielded by this future","Stream for the filter method.","Stream for the filter_map method.","Stream for the flat_map method.","Stream for the flat_map_unordered method.","Stream for the flatten method.","Stream for the flatten_unordered method.","Future for the fold method.","Future for the for_each method.","Future for the for_each_concurrent method.","Future for the forward method.","Stream for the fuse method.","A stream which tracks whether or not the underlying stream …","An unbounded queue of futures.","A set of futures which may complete in any order.","Stream for the inspect method.","Stream for the inspect_err method.","Stream for the inspect_ok method.","Reader for the into_async_read method.","Stream for the into_stream method.","Values yielded by the stream.","Stream for the iter function.","Poll the first stream.","BoxStream, but without the Send requirement.","Stream for the map method.","Stream for the map_err method.","Stream for the map_ok method.","Future for the next method.","Future for the Peekable::next_if method.","Future for the Peekable::next_if_eq method.","The type of successful values yielded by this future","A stream which emits single element and then EOF.","Stream for the or_else method.","Future for the Peekable::peek method.","Future for the Peekable::peek_mut method.","A Stream that implements a peek method.","Stream for the pending() function.","Stream for the poll_fn function.","Stream for the poll_immediate function.","Type to tell SelectWithStrategy which stream to poll next.","Stream for the ready_chunks method.","Stream for the repeat function.","An stream that repeats elements of type A endlessly by …","Error indicating a SplitSink<S> and SplitStream<S> were …","Poll the second stream.","Stream for the scan method.","Stream for the select() function.","An unbounded set of streams","Future for the select_next_some method.","Stream for the select_with_strategy() function. See …","Stream for the skip method.","Stream for the skip_while method.","A Sink part of the split pair","A Stream part of the split pair","A stream of values produced asynchronously.","An extension trait for Streams that provides a variety of …","Future for the into_future method.","Stream for the take method.","Stream for the take_until method.","Stream for the take_while method.","Stream for the then method.","Future for the try_all method.","Future for the try_any method.","Stream for the try_buffer_unordered method.","Stream for the try_buffered method.","Stream for the try_chunks method.","Error indicating, that while chunk was collected inner …","Future for the try_collect method.","Future for the try_concat method.","Stream for the try_filter method.","Stream for the try_filter_map method.","Stream for the try_flatten method.","Stream for the try_flatten_unordered method.","Future for the try_fold method.","Future for the try_for_each method.","Future for the try_for_each_concurrent method.","Future for the try_next method.","Stream for the try_ready_chunks method.","Error indicating, that while chunk was collected inner …","Stream for the try_skip_while method.","A convenience for streams that return Result values that …","Adapters specific to Result-returning streams","Stream for the try_take_while method.","Stream for the try_unfold function.","Stream for the unfold function.","Future for the unzip method.","Stream for the zip method.","Creates a new Abortable stream and an AbortHandle which …","Execute predicate over asynchronous stream, and return true…","Execute predicate over asynchronous stream, and return true…","Chain on a computation for when a value is ready, passing …","Chain on a computation for when a value is ready, passing …","Execute predicate over asynchronous stream, and return true…","Execute predicate over asynchronous stream, and return true…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Wrap the stream in a Box, pinning it.","Wrap the stream in a Box, pinning it.","Wrap the stream in a Box, pinning it.","Wrap the stream in a Box, pinning it.","An adaptor for creating a buffered list of pending futures …","An adaptor for creating a buffered list of pending futures …","An adaptor for creating a buffered list of pending futures.","An adaptor for creating a buffered list of pending futures.","Borrows a stream, rather than consuming it.","Borrows a stream, rather than consuming it.","Catches unwinding panics while polling the stream.","Catches unwinding panics while polling the stream.","Adapter for chaining two streams.","Adapter for chaining two streams.","An adaptor for chunking up items of the stream inside a …","An adaptor for chunking up items of the stream inside a …","","","","","","","","","","","","","","","Transforms a stream into a collection, returning a future …","Transforms a stream into a collection, returning a future …","Concatenate all items of a stream into a single extendable …","Concatenate all items of a stream into a single extendable …","","Drives the stream to completion, counting the number of …","Drives the stream to completion, counting the number of …","Repeats a stream endlessly.","Repeats a stream endlessly.","","","","","","Creates a stream which contains no elements.","Creates a stream which gives the current iteration count …","Creates a stream which gives the current iteration count …","","","","Wraps the current stream in a new stream which converts …","Wraps the current stream in a new stream which converts …","","","","Filters the values produced by this stream according to …","Filters the values produced by this stream according to …","Filters the values produced by this stream while …","Filters the values produced by this stream while …","Maps a stream like StreamExt::map but flattens nested …","Maps a stream like StreamExt::map but flattens nested …","Maps a stream like StreamExt::map but flattens nested …","Maps a stream like StreamExt::map but flattens nested …","Flattens a stream of streams into just one continuous …","Flattens a stream of streams into just one continuous …","Flattens a stream of streams into just one continuous …","Flattens a stream of streams into just one continuous …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Execute an accumulating asynchronous computation over a …","Execute an accumulating asynchronous computation over a …","Runs this stream to completion, executing the provided …","Runs this stream to completion, executing the provided …","Runs this stream to completion, executing the provided …","Runs this stream to completion, executing the provided …","A future that completes after the given stream has been …","A future that completes after the given stream has been …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Fuse a stream such that poll_next will never again be …","Fuse a stream such that poll_next will never again be …","An unbounded set of futures.","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying stream that …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying streams …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying sink or …","Acquires a mutable reference to the underlying streams …","Acquires a mutable reference to the underlying streams …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying sink …","Acquires a pinned mutable reference to the underlying …","Acquires a pinned mutable reference to the underlying …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying stream that this …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying streams that this …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying sink or stream that …","Acquires a reference to the underlying streams that this …","Acquires a reference to the underlying streams that this …","","Do something with each item of this stream, afterwards …","Do something with each item of this stream, afterwards …","Do something with the error value of this stream, …","Do something with the error value of this stream, …","Do something with the success value of this stream, …","Do something with the success value of this stream, …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Adapter that converts this stream into an AsyncBufRead.","Adapter that converts this stream into an AsyncBufRead.","Converts this stream into a future of …","Converts this stream into a future of …","","","","","","","","","","","","","","","","","","","","","","","","","","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying stream.","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying streams.","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying sink or …","Consumes this combinator, returning the underlying streams.","Consumes this combinator, returning the underlying streams.","","","","","","","Wraps a TryStream into a type that implements Stream","Wraps a TryStream into a type that implements Stream","Returns whether the underlying stream has finished or not.","Returns true if the queue contains no futures","Returns true if the SplitStream<S> and SplitSink<S> …","Returns true if the SplitStream<S> and SplitSink<S> …","Whether the stream was stopped yet by the stopping future …","Returns true if the stream should no longer be polled.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Converts an Iterator into a Stream which is always ready …","Wrap this stream in an Either stream, making it the …","Wrap this stream in an Either stream, making it the …","Returns the number of futures contained in the queue.","Maps this stream’s items to a different type, returning …","Maps this stream’s items to a different type, returning …","Wraps the current stream in a new stream which maps the …","Wraps the current stream in a new stream which maps the …","Wraps the current stream in a new stream which maps the …","Wraps the current stream in a new stream which maps the …","Constructs a new, empty FuturesOrdered","Creates a future that resolves to the next item in the …","Creates a future that resolves to the next item in the …","Creates a future which will consume and return the next …","Creates a future which will consume and return the next …","Creates a stream of a single element.","Chain on a computation for when an error happens, passing …","Chain on a computation for when an error happens, passing …","Produces a future which retrieves a reference to the next …","Produces a future which retrieves a mutable reference to …","Creates a new stream which exposes a peek method.","Creates a new stream which exposes a peek method.","Creates a stream which never returns any elements.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new stream wrapping a function returning …","Creates a new stream that always immediately returns …","Attempt to pull out the next value of this stream, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A convenience method for calling Stream::poll_next on Unpin","A convenience method for calling Stream::poll_next on Unpin","Peek retrieves a reference to the next item in the stream.","Peek retrieves a mutable reference to the next item in the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Push a future into the queue.","Pushes a future to the back of the queue.","Pushes a future to the front of the queue.","An adaptor for chunking up ready items of the stream …","An adaptor for chunking up ready items of the stream …","Create a stream which produces the same item repeatedly.","Creates a new stream that repeats elements of type A …","Attempts to put the two “halves” of a split …","Attempts to put the two “halves” of a split …","Wrap this stream in an Either stream, making it the …","Wrap this stream in an Either stream, making it the …","Combinator similar to StreamExt::fold that holds internal …","Combinator similar to StreamExt::fold that holds internal …","This function will attempt to pull items from both …","An unbounded set of streams","Convert a list of streams into a Stream of results from …","Returns a Future that resolves when the next item in this …","Returns a Future that resolves when the next item in this …","This function will attempt to pull items from both …","Returns the bounds on the remaining length of the stream.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new stream which skips n items of the underlying …","Creates a new stream which skips n items of the underlying …","Skip elements on this stream while the provided …","Skip elements on this stream while the provided …","","","Splits this Stream + Sink object into separate Sink and …","Splits this Stream + Sink object into separate Sink and …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new stream of at most n items of the underlying …","Creates a new stream of at most n items of the underlying …","Extract the stopping future out of the combinator. The …","Once the stopping future is resolved, this method can be …","Take elements from this stream until the provided future …","Take elements from this stream until the provided future …","Take elements from this stream while the provided …","Take elements from this stream while the provided …","Computes from this stream’s items new items of a …","Computes from this stream’s items new items of a …","","","","","","","","","","","Toggle the value and return the old one.","Attempt to execute a predicate over an asynchronous stream …","Attempt to execute a predicate over an asynchronous stream …","Attempt to execute a predicate over an asynchronous stream …","Attempt to execute a predicate over an asynchronous stream …","Attempt to execute several futures from a stream …","Attempt to execute several futures from a stream …","Attempt to execute several futures from a stream …","Attempt to execute several futures from a stream …","An adaptor for chunking up successful items of the stream …","An adaptor for chunking up successful items of the stream …","Attempt to transform a stream into a collection, returning …","Attempt to transform a stream into a collection, returning …","Attempt to concatenate all items of a stream into a single …","Attempt to concatenate all items of a stream into a single …","Attempt to filter the values produced by this stream …","Attempt to filter the values produced by this stream …","Attempt to filter the values produced by this stream while …","Attempt to filter the values produced by this stream while …","Flattens a stream of streams into just one continuous …","Flattens a stream of streams into just one continuous …","Flattens a stream of streams into just one continuous …","Flattens a stream of streams into just one continuous …","Attempt to execute an accumulating asynchronous …","Attempt to execute an accumulating asynchronous …","Attempts to run this stream to completion, executing the …","Attempts to run this stream to completion, executing the …","Attempts to run this stream to completion, executing the …","Attempts to run this stream to completion, executing the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a future that attempts to resolve the next item in …","Creates a future that attempts to resolve the next item in …","","","","","","","","","","","","","Poll this TryStream as if it were a Stream.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A convenience method for calling TryStream::try_poll_next …","A convenience method for calling TryStream::try_poll_next …","An adaptor for chunking up successful, ready items of the …","An adaptor for chunking up successful, ready items of the …","Skip elements on this stream while the provided …","Skip elements on this stream while the provided …","Take elements on this stream while the provided …","Take elements on this stream while the provided …","Creates a TryStream from a seed and a closure returning a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Stream from a seed and a closure returning a …","Converts a stream of pairs into a future, which resolves …","Converts a stream of pairs into a future, which resolves …","An adapter for zipping two streams together.","An adapter for zipping two streams together.","A set of futures which may complete in any order.","Owned iterator over all futures in the unordered set.","Immutable iterator over all the futures in the unordered …","Mutable iterator over all futures in the unordered set.","Mutable iterator over all futures in the unordered set.","Immutable iterator over all futures in the unordered set.","","","","","","","","","","","Clears the set, removing all futures.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","Returns true if the set contains no futures.","Returns an iterator that allows inspecting each future in …","Returns an iterator that allows modifying each future in …","Returns an iterator that allows modifying each future in …","Returns an iterator that allows inspecting each future in …","Returns the number of futures contained in the set.","Constructs a new, empty FuturesUnordered.","","","","","","Push a future into the set.","","","","","","","","","","","","","","","","","","","","","Owned iterator over all streams in the unordered set.","Immutable iterator over all streams in the unordered set.","Mutable iterator over all streams in the unordered set.","An unbounded set of streams","","","","","","","Clears the set, removing all streams.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Returns true if the set contains no streams","Returns an iterator that allows inspecting each stream in …","Returns an iterator that allows modifying each stream in …","Returns the number of streams contained in the set.","Constructs a new, empty SelectAll","","","","Push a stream into the set.","Convert a list of streams into a Stream of results from …","","","","","","","","","","","","","A way of waking up a specific task.","A synchronization primitive for task wakeup.","","A custom trait object for polling futures, roughly akin to …","A custom trait object for polling futures, roughly akin to …","The LocalSpawn is similar to Spawn, but allows spawning …","Extension trait for LocalSpawn.","","","","The Spawn trait allows for pushing futures onto an …","An error that occurred during spawning.","Extension trait for Spawn.","A custom implementation of a future trait object for …","","A Waker that is only valid for a given lifetime.","","","","","","","","","","","","","Drops the future represented by the given fat pointer.","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Converts the LocalFutureObj into a FutureObj.","Convert an owned instance into a (conceptually owned) fat …","Check whether spawning failed to the executor being shut …","Create a LocalFutureObj from a custom trait object …","Create an AtomicWaker.","Create a FutureObj from a custom trait object …","Create a new WakerRef from a Waker reference.","Create a new WakerRef from a Waker that must not be …","Create a new Waker which does nothing when wake() is …","Get a static reference to a Waker which does nothing when …","","","Registers the waker to be notified on calls to wake.","Spawning failed because the executor has been shut down.","Spawns a task that polls the given future with output () to","Spawns a task that polls the given future with output () to","Spawns a task that polls the given future with output () to","Spawns a task that polls the given future with output () to","Spawns a future that will be run to completion.","Spawns a task that polls the given future to completion …","Spawns a task that polls the given future to completion …","Spawns a future that will be run to completion.","Spawns a task that polls the given future to completion …","Spawns a task that polls the given future to completion …","Determines whether the executor is able to spawn new tasks.","Determines whether the executor is able to spawn new tasks.","Returns the last Waker passed to register, so that the …","","","","","","","","","","","","","","","","","","","Indicates that the associated task is ready to make …","Calls wake on the last Waker passed to register.","Indicates that the associated task is ready to make …","Creates a Waker from an Arc<impl ArcWake>.","Creates a reference to a Waker from a reference to …"],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,63,0,0,8,0,0,0,0,0,0,62,63,0,0,62,63,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,5,11,11,17,18,36,37,39,40,31,33,41,42,43,44,45,46,47,16,48,49,50,51,52,32,6,53,30,54,55,56,57,58,59,60,61,19,62,63,20,22,23,64,65,66,67,68,69,70,71,72,73,74,75,11,3,76,1,24,17,18,36,37,39,40,31,33,41,42,43,44,45,46,47,16,48,49,50,51,52,32,6,53,30,54,55,56,57,58,59,60,61,19,62,63,20,22,23,64,65,66,67,68,69,70,71,72,73,74,75,11,3,76,1,24,13,13,13,13,13,13,17,18,19,20,22,23,11,3,1,24,17,18,19,20,22,23,11,3,1,24,11,20,17,81,17,24,0,5,5,11,11,13,13,5,5,13,13,17,18,36,37,39,40,31,33,41,42,43,44,45,46,47,16,48,49,50,51,52,32,6,53,30,54,55,56,57,58,59,60,61,19,62,63,20,22,23,64,65,66,67,68,69,70,71,72,73,74,75,11,3,76,1,24,24,48,17,18,36,37,39,40,31,33,41,42,43,44,45,46,47,16,48,49,50,51,52,32,6,53,30,54,55,56,57,58,59,60,61,19,62,63,20,20,22,23,64,65,66,67,68,69,70,71,72,73,74,75,11,3,76,1,24,37,39,69,75,13,13,76,13,13,5,5,5,5,17,18,36,37,39,40,31,33,41,42,43,44,45,46,47,16,48,49,50,51,52,32,6,53,30,54,55,56,57,58,59,60,61,19,62,63,20,22,23,64,65,66,67,68,69,70,71,72,73,74,75,11,3,76,1,24,17,5,5,36,37,39,40,31,41,43,44,45,46,47,16,48,49,50,51,6,53,30,54,55,56,57,58,59,60,61,19,62,63,20,22,23,64,65,66,67,68,69,70,71,72,73,74,75,11,3,23,69,11,81,13,13,3,1,82,17,40,31,33,41,42,43,44,45,46,47,50,51,52,32,6,53,30,54,55,56,57,58,59,60,61,19,62,63,20,22,23,64,65,66,67,68,11,11,0,0,0,0,0,0,13,13,13,13,5,5,13,13,5,5,5,5,0,13,13,3,1,13,13,0,5,5,5,5,62,63,17,0,17,36,37,39,40,31,41,43,44,45,46,47,16,48,49,50,51,6,53,30,54,55,56,57,58,59,60,61,19,62,63,20,22,23,64,65,66,67,68,69,70,71,72,73,74,75,11,3,33,52,32,11,11,11,33,52,32,11,11,0,0,33,42,52,32,22,11,3,11,11,33,52,32,11,11,13,13,11,11,17,17,0,13,13,13,13,0,0,0,13,13,33,42,52,32,11,33,52,32,11,17,62,63,40,13,13,17,18,19,20,22,23,11,3,1,24,24,5,5,5,5,17,18,36,37,39,40,31,33,41,42,43,44,45,46,47,16,48,49,50,51,52,32,6,53,30,54,55,56,57,58,59,60,61,19,62,63,20,22,23,64,65,66,67,68,69,70,71,72,73,74,75,11,3,76,1,24,17,18,36,37,39,40,31,33,41,42,43,44,45,46,47,16,48,49,50,51,52,32,6,53,30,54,55,56,57,58,59,60,61,19,62,63,20,22,23,64,65,66,67,68,69,70,71,72,73,74,75,11,3,76,1,24,0,0,0,0,0,0,8,17,36,39,40,31,41,43,44,45,46,47,16,48,50,51,6,53,30,54,55,56,57,58,59,60,61,19,63,23,70,71,72,73,74,75,11,3,33,42,52,32,11,3,5,5,0,17,18,36,37,39,40,31,33,41,42,43,44,45,46,47,16,48,49,50,51,52,32,6,53,30,54,55,56,57,58,59,60,61,19,62,63,20,22,23,64,65,66,67,68,69,70,71,72,73,74,75,11,3,76,1,24,13,13,5,5,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,104,118,131,132,133,112,107,134,108,109,111,115,122,124,125,113,128,129,135,136,137,138,139,140,141,142,143,144,145,146,120,104,147,148,149,118,131,132,133,112,107,134,108,109,111,115,122,124,125,113,128,129,135,136,137,138,139,140,141,142,143,144,145,146,120,104,147,148,149,107,108,109,110,112,113,112,113,114,112,26,118,112,112,107,108,111,113,120,121,0,0,0,113,0,104,112,121,112,114,112,118,131,132,133,133,112,107,134,108,109,111,115,122,124,125,113,128,129,135,136,137,138,139,140,141,142,143,144,145,146,120,104,147,148,149,118,131,132,133,112,107,134,108,109,111,115,122,124,125,113,128,129,135,136,137,138,139,140,141,142,143,144,145,146,120,104,147,148,149,112,107,108,111,113,120,104,107,108,111,120,112,107,108,109,111,113,120,104,112,118,131,132,133,112,107,134,108,109,111,115,122,124,125,113,128,129,135,136,137,138,139,140,141,142,143,144,145,146,120,104,147,148,149,134,115,122,124,125,128,129,137,138,139,140,141,142,143,144,147,148,149,112,107,108,111,113,120,104,114,145,146,120,121,112,107,108,109,113,104,112,134,115,122,124,125,128,129,137,138,139,140,141,142,143,144,147,148,149,90,132,112,107,108,109,113,113,113,113,135,146,26,118,112,107,108,111,113,120,90,132,112,107,108,109,113,113,113,113,135,146,136,95,118,131,112,107,108,111,113,145,120,95,131,112,107,108,111,113,145,135,99,112,107,108,113,107,90,132,112,107,108,109,113,113,113,113,146,90,132,112,107,108,109,113,113,113,113,146,113,110,112,110,112,121,110,112,110,112,121,110,112,0,145,146,157,112,107,104,120,113,0,110,104,135,157,110,112,113,133,118,131,132,133,112,107,134,108,109,111,115,122,124,125,113,128,129,135,136,137,138,139,140,141,142,143,144,145,146,120,104,147,148,149,118,131,132,133,112,107,134,108,109,111,115,122,124,125,113,128,129,135,136,137,138,139,140,141,142,143,144,145,146,120,104,147,148,149,134,115,122,124,125,128,129,137,138,139,140,141,142,143,144,147,148,149,136,118,131,132,133,112,107,134,108,109,111,115,122,124,125,113,128,129,135,136,137,138,139,140,141,142,143,144,145,146,120,104,147,148,149,107,108,109,114,112,114,112,112,114,112,0,0,0,0,0,0,160,164,161,165,162,163,160,164,161,165,162,163,160,161,162,163,161,162,163,164,161,165,162,163,160,164,161,165,162,163,160,160,160,164,161,165,162,163,160,160,164,161,165,162,163,164,165,160,164,165,160,160,162,163,160,164,165,160,164,161,165,162,163,160,164,161,165,162,163,160,160,160,164,161,165,162,163,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,177,173,170,174,175,176,179,171,180,181,172,182,169,177,173,170,174,175,176,179,171,180,181,172,182,169,168,170,171,172,170,171,172,168,0,168,168,168,177,173,170,174,175,176,179,171,180,181,172,182,169,177,173,170,174,175,176,179,171,180,181,172,182,169,174,179,171,172,182,169,174,179,171,172,182,169,174,179,171,172,182,169,177,173,170,174,175,176,179,171,180,181,172,182,169,177,173,175,176,180,174,179,171,172,182,169,179,171,182,169,168,177,173,175,176,180,91,170,174,179,171,181,172,182,169,168,91,170,174,179,171,181,172,182,169,168,179,171,172,182,169,91,170,174,179,171,181,172,182,169,168,168,168,168,168,168,179,171,172,182,169,91,170,174,179,171,181,172,182,169,168,170,171,172,177,173,170,174,175,176,179,171,180,181,172,182,169,177,173,170,174,175,176,179,171,180,181,172,182,169,177,173,175,176,180,179,171,172,182,169,177,173,170,174,175,176,179,171,180,181,172,182,169,0,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,202,0,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,184,186,186,184,184,223,224,209,210,211,194,203,225,205,207,208,212,216,217,221,226,188,185,227,228,229,230,231,232,218,233,234,235,236,237,238,239,240,241,242,243,244,245,246,195,247,248,191,192,219,249,250,251,193,187,215,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,213,268,214,269,270,271,272,273,274,275,206,276,277,196,197,198,199,278,200,201,279,202,280,281,223,224,209,210,211,194,203,225,205,207,208,212,216,217,221,226,188,185,227,228,229,230,231,232,218,233,234,235,236,237,238,239,240,241,242,243,244,245,246,195,247,248,191,192,219,249,250,251,193,187,215,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,213,268,214,269,270,271,272,273,274,275,206,276,277,196,197,198,199,278,200,201,279,202,280,281,184,184,184,184,184,184,184,184,184,184,184,184,184,184,184,184,196,197,198,199,200,201,202,196,197,198,199,200,201,202,184,184,184,184,206,184,184,184,184,209,210,211,202,210,0,184,184,213,214,202,186,186,209,210,211,184,184,184,184,184,184,184,184,184,184,184,184,223,223,224,209,210,211,194,203,225,205,207,208,212,216,217,221,226,188,185,227,228,229,230,231,232,218,233,234,235,236,237,238,239,240,241,242,243,244,245,246,195,247,248,191,192,219,249,250,251,193,187,215,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,213,213,268,214,214,269,270,271,272,273,274,275,206,276,277,196,197,198,199,278,200,201,279,202,280,281,184,184,184,184,184,184,184,184,223,224,209,210,211,194,203,225,205,207,208,212,216,217,221,226,188,185,227,228,229,230,231,232,218,233,234,235,236,237,238,239,240,241,242,243,244,245,246,195,247,248,191,192,219,249,250,251,193,187,215,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,213,268,214,269,270,271,272,273,274,275,206,276,277,196,197,198,199,278,200,201,279,202,280,281,209,210,211,184,184,0,212,216,217,221,229,230,231,232,218,235,240,241,242,243,244,245,246,195,247,248,191,192,219,193,187,215,252,253,254,255,256,257,260,261,262,263,266,268,271,272,273,274,279,280,212,216,217,221,229,230,231,232,218,235,240,241,242,243,244,245,246,195,247,248,191,192,219,193,187,215,252,253,254,255,256,257,260,261,262,263,266,268,271,272,273,274,279,280,212,216,217,221,229,230,231,232,218,235,240,241,242,243,244,245,246,195,247,248,191,192,219,193,187,215,252,253,254,255,256,257,260,261,262,263,266,268,271,272,273,274,279,280,202,184,184,186,186,186,186,223,224,209,210,211,194,203,225,205,207,208,212,216,217,221,226,188,185,227,228,229,230,231,232,218,233,234,235,236,237,238,239,240,241,242,243,244,245,246,195,247,248,191,192,219,249,250,251,193,187,215,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,213,268,214,269,270,271,272,273,274,275,206,276,277,196,197,198,199,278,200,201,279,202,280,281,186,186,184,184,203,225,205,207,226,188,185,227,228,230,233,234,236,237,238,239,249,258,259,264,265,269,275,276,277,212,216,217,221,229,230,231,232,218,235,240,241,242,243,244,245,246,195,247,248,191,192,219,193,187,215,252,253,254,255,256,257,260,261,262,263,266,268,271,272,273,274,279,280,210,210,210,211,211,211,186,186,229,209,250,251,244,84,209,210,211,194,203,225,205,207,208,212,216,217,221,226,188,185,227,228,229,230,231,232,218,233,234,235,236,237,238,239,240,241,242,243,244,245,246,195,247,248,191,192,219,249,193,187,215,252,253,254,255,256,257,258,260,261,262,263,264,266,268,269,271,272,275,276,277,197,198,199,278,200,201,279,280,281,0,184,184,209,184,184,186,186,186,186,209,184,184,235,235,0,186,186,235,235,184,184,0,203,225,205,207,226,188,185,227,228,230,233,234,236,237,238,239,249,258,259,264,265,269,275,276,277,212,216,217,221,229,231,232,218,235,240,241,242,243,244,245,195,247,248,191,192,219,251,187,215,252,253,254,255,256,257,260,261,262,263,266,268,271,272,273,274,206,206,212,216,217,221,229,231,232,218,235,240,241,242,243,244,245,195,247,248,191,192,219,251,187,215,252,253,254,255,256,257,260,261,262,263,266,268,271,272,273,274,206,0,0,94,224,209,210,211,194,208,212,216,217,221,229,231,232,218,235,240,241,242,243,244,245,246,195,247,248,191,192,219,250,193,187,215,252,253,254,255,256,257,260,261,262,263,266,268,270,271,272,273,274,196,197,198,199,278,200,201,279,280,281,184,184,235,235,206,212,216,217,221,229,231,232,218,235,240,241,242,243,244,245,195,247,248,191,192,219,251,187,215,252,253,254,255,256,257,260,261,262,263,266,268,271,272,273,274,206,209,209,209,184,184,0,0,250,251,184,184,184,184,0,0,0,184,184,0,94,209,210,194,208,212,216,217,221,229,231,232,218,235,240,241,242,243,244,245,246,195,247,248,191,192,219,193,187,215,252,253,254,255,256,257,260,261,263,266,268,271,272,196,197,198,199,278,200,201,184,184,184,184,210,210,184,184,212,216,217,221,229,231,232,218,235,240,241,242,243,244,245,195,247,248,191,192,219,251,187,215,252,253,254,255,256,257,260,261,262,263,266,268,271,272,273,274,184,184,244,244,184,184,184,184,184,184,196,197,198,199,200,201,202,223,213,214,202,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,223,224,209,210,211,194,203,225,205,207,208,212,216,217,221,226,188,185,227,228,229,230,231,232,218,233,234,235,236,237,238,239,240,241,242,243,244,245,246,195,247,248,191,192,219,249,250,251,193,187,215,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,213,268,214,269,270,271,272,273,274,275,206,276,277,196,197,198,199,278,200,201,279,202,280,281,223,224,209,210,211,194,203,225,205,207,208,212,216,217,221,226,188,185,227,228,229,230,231,232,218,233,234,235,236,237,238,239,240,241,242,243,244,245,246,195,247,248,191,192,219,249,250,251,193,187,215,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,213,268,214,269,270,271,272,273,274,275,206,276,277,196,197,198,199,278,200,201,279,202,280,281,186,186,205,226,227,234,258,259,264,265,269,275,276,277,178,224,209,210,211,194,208,216,217,221,229,231,232,218,235,240,241,242,243,244,245,248,191,192,219,250,193,187,215,252,253,254,255,256,257,260,261,262,263,266,268,270,271,272,273,274,196,197,198,199,278,200,279,280,281,186,186,186,186,186,186,186,186,0,223,224,209,210,211,194,203,225,205,207,208,212,216,217,221,226,188,185,227,228,229,230,231,232,218,233,234,235,236,237,238,239,240,241,242,243,244,245,246,195,247,248,191,192,219,249,250,251,193,187,215,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,213,268,214,269,270,271,272,273,274,275,206,276,277,196,197,198,199,278,200,201,279,202,280,281,0,184,184,184,184,0,0,0,0,0,0,286,287,288,289,290,286,287,288,289,290,210,286,287,288,289,290,286,287,288,289,290,286,287,288,289,290,286,287,288,289,290,210,210,210,210,210,210,210,286,287,288,289,290,210,286,287,288,289,290,286,287,288,289,290,286,287,288,289,290,286,287,288,289,290,0,0,0,0,291,292,293,291,292,293,211,291,292,293,291,292,293,291,292,293,291,292,293,211,211,211,211,211,291,292,293,211,0,291,292,293,291,292,293,291,292,293,291,292,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,283,294,285,295,284,283,294,285,295,294,295,81,283,284,284,283,294,285,295,284,283,283,283,283,283,283,294,285,285,285,285,285,295,284,283,294,285,295,283,285,283,81,284,283,294,285,295,295,0,0,283,285,294,284,300,300,301,301,302,301,301,303,300,300,303,302,294,284,284,283,294,285,295,284,283,294,285,295,283,285,284,283,294,285,295,304,294,304,0,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[-1,[[2,[[3,[-1]],1]]],4],[[5,-4],[[6,[5,-3,-4]]],[],[],[[8,[],[[7,[-2]]]]],[[10,[-1],[[9,[-3]]]]]],[[5,-4],[[6,[5,-3,-4]]],[],[],[[8,[],[[7,[-2]]]]],[[10,[-1],[[9,[-3]]]]]],[[[12,[[11,[-1,-2]]]]],[[11,[[12,[-1]],[12,[-2]]]]],[],[]],[[[12,[[11,[-1,-2]]]]],[[11,[[12,[-1]],[12,[-2]]]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[13,[[14,[-1]]],[]],[13,[[14,[-1]]],[]],[13,[[15,[-1]]],[]],[13,[[15,[-1]]],[]],[13,[[16,[13]]]],[13,[[16,[13]]]],[[[17,[-1]]],[[17,[-1]]],4],[[[18,[-1]]],[[18,[-1]]],4],[[[19,[-1]]],[[19,[-1]]],[]],[[[20,[-1]]],[[20,[-1]]],21],[[[22,[-1]]],[[22,[-1]]],21],[[[23,[-1]]],[[23,[-1]]],21],[[[11,[-1,-2]]],[[11,[-1,-2]]],21,21],[[[3,[-1]]],[[3,[-1]]],21],[1,1],[24,24],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[[12,[[11,[-1,-2]]]],25],2,26,26],[[],[[20,[-1]]],[]],[[[17,[-1]]],[[27,[[18,[-1]]]]],4],[4,2],[[[17,[-1]]],2,4],[[24,24],28],[-1,[[23,[[29,[-2,-1]]]]],[],[]],[5,[[30,[5,-1]]],[]],[5,[[30,[5,-1]]],[]],[[[11,[[2,[-1,-2]],[2,[-1,-3]]]]],[[2,[-1,[11,[-2,-3]]]]],[],[],[]],[[[11,[[2,[-1,-2]],[2,[-3,-2]]]]],[[2,[[11,[-1,-3]],-2]]],[],[],[]],[13,[[31,[13]]]],[13,[[31,[13]]]],[5,[[32,[5,-1]]],[]],[5,[[32,[5,-1]]],[]],[13,[[33,[13]]]],[13,[[33,[13]]]],[[[17,[-1]],34],35,4],[[[18,[-1]],34],35,4],[[[36,[-1]],34],35,[]],[[[37,[-1]],34],35,[4,38]],[[[39,[-1]],34],35,[8,38]],[[[40,[-1]],34],35,38],[[[31,[-1]],34],35,4],[[[33,[-1]],34],35,4],[[[41,[-1,-2]],34],35,[],[]],[[[42,[-1]],34],35,[]],[[[43,[-1,-2]],34],35,[],[]],[[[44,[-1,-2,-3]],34],35,[],[],[]],[[[45,[-1,-2]],34],35,[],[]],[[[46,[-1]],34],35,[]],[[[47,[-1]],34],35,[]],[[[16,[-1]],34],35,38],[[[48,[-1]],34],35,38],[[[49,[-1]],34],35,[4,38]],[[[50,[-1]],34],35,38],[[[51,[-1,-2]],34],35,[],[]],[[[52,[-1]],34],35,8],[[[32,[-1,-2]],34],35,[],[]],[[[6,[-1,-2,-3]],34],35,[],[],[]],[[[53,[-1,-2,-3]],34],35,[],[],[]],[[[30,[-1,-2]],34],35,[],[]],[[[54,[-1,-2]],34],35,[],[]],[[[55,[-1,-2]],34],35,[],[]],[[[56,[-1,-2]],34],35,[],[]],[[[57,[-1,-2]],34],35,[],[]],[[[58,[-1,-2]],34],35,[],[]],[[[59,[-1,-2,-3]],34],35,[],[],[]],[[[60,[-1,-2]],34],35,[],[]],[[[61,[-1]],34],35,38],[[[19,[-1]],34],35,38],[[[62,[-1]],34],35,[38,4]],[[[63,[-1]],34],35,[38,8]],[[[20,[-1]],34],35,38],[[[22,[-1]],34],35,38],[[[23,[-1]],34],35,38],[[[64,[-1,-2]],34],35,[4,38],[4,38]],[[[65,[-1,-2,-3]],34],35,[4,38],[4,38],[4,38]],[[[66,[-1,-2,-3,-4]],34],35,[4,38],[4,38],[4,38],[4,38]],[[[67,[-1,-2,-3,-4,-5]],34],35,[4,38],[4,38],[4,38],[4,38],[4,38]],[[[68,[-1,-2]],34],35,38,38],[[[69,[-1]],34],35,38],[[[70,[-1,-2]],34],35,[8,38],[8,38]],[[[71,[-1,-2,-3]],34],35,[8,38],[8,38],[8,38]],[[[72,[-1,-2,-3,-4]],34],35,[8,38],[8,38],[8,38],[8,38]],[[[73,[-1,-2,-3,-4,-5]],34],35,[8,38],[8,38],[8,38],[8,38],[8,38]],[[[74,[-1,-2]],34],35,38,38],[[[75,[-1]],34],35,38],[[[11,[-1,-2]],34],35,38,38],[[[3,[-1]],34],35,38],[[76,34],35],[[1,34],35],[[24,34],35],[[24,34],35],[[[48,[-1]]],2,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[27,[-1]]],[[20,[-1]]],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-2,[[37,[-1]]],4,[[78,[],[[77,[-1]]]]]],[-2,[[39,[-1]]],8,[[78,[],[[77,[-1]]]]]],[-2,[[69,[-1]]],[4,79],[[78,[],[[77,[-1]]]]]],[-2,[[75,[-1]]],[8,79],[[78,[],[[77,[-1]]]]]],[13,[[40,[13]]]],[13,[[40,[13]]]],[76,1],[[13,-2],[[45,[13,-2]]],[],[[10,[-1]]]],[[13,-2],[[45,[13,-2]]],[],[[10,[-1]]]],[[5,-2],[[56,[5,-2]]],[],[[10,[-1]]]],[[5,-2],[[56,[5,-2]]],[],[[10,[-1]]]],[[5,-2],[[55,[5,-2]]],[],[[10,[-1]]]],[[5,-2],[[55,[5,-2]]],[],[[10,[-1]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[],[]],[5,[[50,[5]]]],[5,[[50,[5]]]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[[[23,[-1]]],-1,[]],[[[69,[-1]]],[[80,[-1]]],[]],[[[11,[-1,-1]]],-1,[]],[81,4],[13,[[42,[13]]]],[13,[[42,[13]]]],[[[3,[-1]]],28,[]],[1,28],[82,28],[[[17,[-1]]],28,4],[[[40,[-1]]],28,4],[[[31,[-1]]],28,4],[[[33,[-1]]],28,4],[[[41,[-1,-2]]],28,[],[]],[[[42,[-1]]],28,[]],[[[43,[-1,-2]]],28,[],[]],[[[44,[-1,-2,-3]]],28,[],[],[]],[[[45,[-1,-2]]],28,[],[]],[[[46,[-1]]],28,[]],[[[47,[-1]]],28,[]],[[[50,[-1]]],28,[8,82]],[[[51,[-1,-2]]],28,[],[]],[[[52,[-1]]],28,8],[[[32,[-1,-2]]],28,[],[]],[[[6,[-1,-2,-3]]],28,[],[],[]],[[[53,[-1,-2,-3]]],28,[],[],[]],[[[30,[-1,-2]]],28,[],[]],[[[54,[-1,-2]]],28,[],[]],[[[55,[-1,-2]]],28,[],[]],[[[56,[-1,-2]]],28,[],[]],[[[57,[-1,-2]]],28,[],[]],[[[58,[-1,-2]]],28,[],[]],[[[59,[-1,-2,-3]]],28,[],[],[]],[[[60,[-1,-2]]],28,[],[]],[[[61,[-2]]],28,[],[[10,[83],[[9,[-1]]]]]],[[[19,[-1]]],28,[]],[[[62,[-1]]],28,4],[[[63,[-1]]],28,8],[[[20,[-1]]],28,82],[[[22,[-1]]],28,4],[[[23,[-1]]],28,[]],[[[64,[-1,-2]]],28,82,82],[[[65,[-1,-2,-3]]],28,82,82,82],[[[66,[-1,-2,-3,-4]]],28,82,82,82,82],[[[67,[-1,-2,-3,-4,-5]]],28,82,82,82,82,82],[[[68,[-1,-2]]],28,[4,79],[4,79]],[[[11,[-1,-2]]],28,82,[[82,[],[[9,[]]]]]],[[[11,[-1,-2]]],28,84,[[84,[],[[77,[]]]]]],[[-1,-2],[[64,[-1,-2]]],4,4],[[-1,-2,-3],[[65,[-1,-2,-3]]],4,4,4],[[-1,-2,-3,-4],[[66,[-1,-2,-3,-4]]],4,4,4,4],[[-1,-2,-3,-4,-5],[[67,[-1,-2,-3,-4,-5]]],4,4,4,4,4],[-1,37,78],[-2,[[61,[-2]]],[],[[10,[83],[[9,[-1]]]]]],[13,[[11,[13,-2]]],[],[[4,[],[[9,[-1]]]]]],[13,[[11,[13,-2]]],[],[[4,[],[[9,[-1]]]]]],[[13,-3],[[41,[13,-3]]],[],[],[[10,[-1],[[9,[-2]]]]]],[[13,-3],[[41,[13,-3]]],[],[],[[10,[-1],[[9,[-2]]]]]],[[5,-3],[[58,[5,-3]]],[],[],[[10,[-1],[[9,[-2]]]]]],[[5,-3],[[58,[5,-3]]],[],[],[[10,[-1],[[9,[-2]]]]]],[13,[[43,[13,-1]]],[]],[13,[[43,[13,-1]]],[]],[[5,-3],[[57,[5,-3]]],[],[],[[10,[-1],[[9,[-2]]]]]],[[5,-3],[[57,[5,-3]]],[],[],[[10,[-1],[[9,[-2]]]]]],[[5,-3,-5],[[59,[5,-5,-3]]],[],[],[[10,[-1],[[9,[-2]]]]],[],[[10,[-4],[[9,[-2]]]]]],[[5,-3,-5],[[59,[5,-5,-3]]],[],[],[[10,[-1],[[9,[-2]]]]],[],[[10,[-4],[[9,[-2]]]]]],[-1,[[62,[-1]]],4],[13,[[46,[13]]]],[13,[[46,[13]]]],[[-1,76],[[3,[-1]]],[]],[[],[[2,[1,76]]]],[13,[[27,[-1]]],[]],[13,[[27,[-1]]],[]],[-1,[[23,[[29,[-1,-2]]]]],[],[]],[5,[[54,[5,-1]]],[]],[5,[[54,[5,-1]]],[]],[[5,-4],[[53,[5,-3,-4]]],[],[],[[8,[],[[85,[-2]]]]],[[10,[-1],[[9,[-3]]]]]],[[5,-4],[[53,[5,-3,-4]]],[],[],[[8,[],[[85,[-2]]]]],[[10,[-1],[[9,[-3]]]]]],[[[12,[[62,[-1]]]]],27,4],[[[12,[[63,[-1]]]]],27,8],[[[17,[-1]]],27,4],[[],[[19,[-1]]],[]],[[[12,[[17,[-1]]]],83],[[86,[-2]]],4,[]],[[[12,[[36,[-2]]]],83],[[86,[-1]]],[],[[87,[83],[[9,[[86,[-1]]]]]]]],[[[12,[[37,[-1]]]],83],[[86,[-2]]],4,[]],[[[12,[[39,[-1]]]],83],[[86,[-2]]],8,[]],[[[12,[[40,[-1]]]],83],86,4],[[[12,[[31,[-1]]]],83],[[86,[-2]]],4,[]],[[[12,[[41,[-1,-2]]]],83],[[86,[-3]]],[],[],[]],[[[12,[[43,[-1,-2]]]],83],[[86,[-3]]],[],[],[]],[[[12,[[44,[-1,-2,-3]]]],83],[[86,[-4]]],[],[],[],[]],[[[12,[[45,[-1,-2]]]],83],[[86,[-3]]],[],[],[]],[[[12,[[46,[-1]]]],83],[[86,[-2]]],[],[]],[[[12,[[47,[-1]]]],83],[[86,[-2]]],[],[]],[[[12,[[16,[-1]]]],83],[[86,[-2]]],[4,88],[]],[[[12,[[48,[-1]]]],83],[[86,[-1]]],[]],[[[12,[[49,[-1]]]],83],[[86,[2]]],4],[[[12,[[50,[-1]]]],83],[[86,[-2]]],8,[]],[[[12,[[51,[-1,-2]]]],83],[[86,[-3]]],[],[],[]],[[[12,[[6,[-1,-2,-3]]]],83],[[86,[-4]]],[],[],[],[]],[[[12,[[53,[-1,-2,-3]]]],83],[[86,[-4]]],[],[],[],[]],[[[12,[[30,[-1,-2]]]],83],[[86,[-3]]],[],[],[]],[[[12,[[54,[-1,-2]]]],83],[[86,[-3]]],[],[],[]],[[[12,[[55,[-1,-2]]]],83],[[86,[-3]]],[],[],[]],[[[12,[[56,[-1,-2]]]],83],[[86,[-3]]],[],[],[]],[[[12,[[57,[-1,-2]]]],83],[[86,[-3]]],[],[],[]],[[[12,[[58,[-1,-2]]]],83],[[86,[-3]]],[],[],[]],[[[12,[[59,[-1,-2,-3]]]],83],[[86,[-4]]],[],[],[],[]],[[[12,[[60,[-1,-2]]]],83],[[86,[-3]]],[],[],[]],[[[12,[[61,[-2]]]],83],[[86,[-1]]],[],[[10,[83],[[9,[-1]]]]]],[[[12,[[19,[-1]]]],83],[[86,[-1]]],[]],[[[12,[[62,[-1]]]],83],[[86,[-2]]],4,[]],[[[12,[[63,[-1]]]],83],[[86,[-2]]],8,[]],[[[12,[[20,[-1]]]],83],[[86,[-2]]],4,[]],[[[12,[[22,[-2]]]],83],[[86,[[27,[-1]]]]],[],[[4,[],[[9,[-1]]]]]],[[[12,[[23,[-1]]]],83],[[86,[-1]]],[]],[[[12,[[64,[-1,-2]]]],83],[[86,[-3]]],4,4,[]],[[[12,[[65,[-1,-2,-3]]]],83],[[86,[-4]]],4,4,4,[]],[[[12,[[66,[-1,-2,-3,-4]]]],83],[[86,[-5]]],4,4,4,4,[]],[[[12,[[67,[-1,-2,-3,-4,-5]]]],83],[[86,[-6]]],4,4,4,4,4,[]],[[[12,[[68,[-1,-2]]]],83],[[86,[-3]]],[4,79],[4,79],[]],[[[12,[[69,[-1]]]],83],[[86,[-2]]],[4,79],[]],[[[12,[[70,[-1,-2]]]],83],[[86,[-3]]],8,[[8,[],[[7,[]]]]],[]],[[[12,[[71,[-1,-2,-3]]]],83],[[86,[-4]]],8,[[8,[],[[7,[]]]]],[[8,[],[[7,[]]]]],[]],[[[12,[[72,[-1,-2,-3,-4]]]],83],[[86,[-5]]],8,[[8,[],[[7,[]]]]],[[8,[],[[7,[]]]]],[[8,[],[[7,[]]]]],[]],[[[12,[[73,[-1,-2,-3,-4,-5]]]],83],[[86,[-6]]],8,[[8,[],[[7,[]]]]],[[8,[],[[7,[]]]]],[[8,[],[[7,[]]]]],[[8,[],[[7,[]]]]],[]],[[[12,[[74,[-1,-2]]]],83],[[86,[-3]]],[8,79],[8,79],[]],[[[12,[[75,[-1]]]],83],[[86,[-2]]],[8,79],[]],[[[12,[[11,[-1,-2]]]],83],[[86,[-3]]],4,[[4,[],[[9,[]]]]],[]],[[[12,[[3,[-1]]]],83],[[86,[-2]]],4,[]],[[[12,[[33,[-1]]]],83],[[86,[[29,[2,-2]]]]],4,[]],[[[12,[[52,[-1]]]],83],[[86,[[29,[2,-2]]]]],8,[]],[[[12,[[32,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[11,[-1,-2]]]],83],[[86,[[89,[2]]]]],90,90],[[[12,[[11,[-2,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[[91,[-1]]],[[91,[-1],[[7,[]]]]],[]],[[[12,[[11,[-1,-2]]]],83],[[86,[[89,[[93,[92]]]]]]],26,26],[[[12,[[33,[-1]]]],83],[[86,[[29,[2,-2]]]]],4,[]],[[[12,[[52,[-1]]]],83],[[86,[[29,[2,-2]]]]],8,[]],[[[12,[[32,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[11,[-1,-2]]]],83],[[86,[[89,[2]]]]],90,90],[[[12,[[11,[-2,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[[91,[-1]]],[[91,[-1],[[7,[]]]]],[]],[-2,[[36,[-2]]],[],[[87,[83],[[9,[[86,[-1]]]]]]]],[-1,[[22,[-1]]],4],[[[12,[[33,[-1]]]],83],[[86,[[27,[-2]]]]],4,[]],[[[12,[[42,[-1]]]],83],[[86,[[27,[-2]]]]],[],[]],[[[12,[[52,[-1]]]],83],[[86,[[27,[-2]]]]],8,[]],[[[12,[[32,[-1,-2]]]],83],[[86,[[27,[-3]]]]],[],[],[]],[[[12,[[22,[-2]]]],83],[[86,[[27,[-3]]]]],[],[[4,[],[[9,[-1]]]]],[]],[[[12,[[11,[-1,-2]]]],83],[[86,[[27,[-3]]]]],94,[[94,[],[[77,[]]]]],[]],[[[12,[[3,[-1]]]],83],[[86,[[27,[-2]]]]],94,[]],[[[12,[[11,[-1,-2]]]],83,[93,[92]]],[[86,[[89,[25]]]]],95,95],[[[12,[[11,[-1,-2]]]],83,[93,[96]]],[[86,[[89,[25]]]]],95,95],[[[12,[[33,[-1]]]],83],[[86,[[29,[2,-2]]]]],4,[]],[[[12,[[52,[-1]]]],83],[[86,[[29,[2,-2]]]]],8,[]],[[[12,[[32,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[11,[-2,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[[91,[-1]]],[[91,[-1],[[7,[]]]]],[]],[[[12,[[11,[-1,-2]]]],83,97],[[86,[[89,[98]]]]],99,99],[[13,83],[[86,[-1]]],[]],[[13,83],[[86,[-1]]],[]],[[[12,[[11,[-1,-2]]]],83,[93,[92]]],[[86,[[89,[25]]]]],90,90],[[[12,[[11,[-1,-2]]]],83,[93,[100]]],[[86,[[89,[25]]]]],90,90],[[[17,[-1]],[17,[-1]]],28,4],[[[17,[-1]],-2],2,4,101],[-1,[[23,[-1]]],[]],[13,[[2,[[49,[13]],[48,[-1]]]]],[]],[13,[[2,[[49,[13]],[48,[-1]]]]],[]],[13,[[11,[-2,13]]],[],[[4,[],[[9,[-1]]]]]],[13,[[11,[-2,13]]],[],[[4,[],[[9,[-1]]]]]],[[-1,-2],[[68,[-1,-2]]],[4,79],[4,79]],[-1,69,78],[-1,75,78],[13,[[17,[13]]]],[13,[[17,[13]]]],[[[33,[-1]]],[[2,[25,[27,[25]]]]],4],[[[42,[-1]]],[[2,[25,[27,[25]]]]],[]],[[[52,[-1]]],[[2,[25,[27,[25]]]]],8],[[[32,[-1,-2]]],[[2,[25,[27,[25]]]]],[],[]],[[[11,[-1,-2]]],[[2,[25,[27,[25]]]]],94,[[94,[],[[77,[]]]]]],[[[12,[[33,[-1]]]],-2],[[29,[2,-3]]],4,[],[]],[[[12,[[52,[-1]]]],-2],[[29,[2,-3]]],8,[],[]],[[[12,[[32,[-1,-2]]]],-3],[[29,[2,-4]]],[],[],[],[]],[[[12,[[11,[-2,-3]]]],-1],[[29,[2,-4]]],[],[[91,[-1]]],[[91,[-1],[[7,[]]]]],[]],[[[17,[-1]]],[[27,[25]]],4],[[[12,[[62,[-1]]]]],27,4],[[[12,[[63,[-1]]]]],27,8],[[],[[40,[-1]]],4],[[13,-3],[[44,[13,-2,-3]]],[],4,[[10,[-1],[[9,[-2]]]]]],[[13,-3],[[44,[13,-2,-3]]],[],4,[[10,[-1],[[9,[-2]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,102,[]],[5,[[51,[5,-1]]],[]],[5,[[51,[5,-1]]],[]],[5,[[52,[5]]]],[5,[[52,[5]]]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[[-1,-2],[[70,[-1,-2]]],8,[[8,[],[[7,[]]]]]],[[-1,-2,-3],[[71,[-1,-2,-3]]],8,[[8,[],[[7,[]]]]],[[8,[],[[7,[]]]]]],[[-1,-2,-3,-4],[[72,[-1,-2,-3,-4]]],8,[[8,[],[[7,[]]]]],[[8,[],[[7,[]]]]],[[8,[],[[7,[]]]]]],[[-1,-2,-3,-4,-5],[[73,[-1,-2,-3,-4,-5]]],8,[[8,[],[[7,[]]]]],[[8,[],[[7,[]]]]],[[8,[],[[7,[]]]]],[[8,[],[[7,[]]]]]],[-1,39,78],[-1,[[63,[-1]]],8],[[[12,[[8,[],[[85,[-1]],[7,[-2]]]]]],83],[[86,[[29,[-1,-2]]]]],[],[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[5,83],[[86,[[29,[-1,-2]]]]],[],[]],[[5,83],[[86,[[29,[-1,-2]]]]],[],[]],[[-1,-2],[[74,[-1,-2]]],[8,79],[8,79]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[13,[[47,[13]]]],[13,[[47,[13]]]],[[5,-3],[[60,[5,-3]]],[],[],[[10,[-1],[[9,[-2]]]]]],[[5,-3],[[60,[5,-3]]],[],[],[[10,[-1],[[9,[-2]]]]]],[[[18,[-1]]],[[27,[[17,[-1]]]]],4],[[[17,[-1]]],[[27,[25]]],4],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[104,[-1]]],[[93,[92]]],[[105,[[93,[92]]]]]],[[[104,[-1]]],[[93,[92]]],[[106,[[93,[92]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[107,[-1]]],[[93,[92]]],95],[[[108,[-1]]],[[93,[92]]],90],[[[109,[-1]]],[[93,[92]]],90],[[110,-1],[[111,[110,-1]]],95],[[[112,[-1]]],[[112,[-1]]],21],[[[113,[-1]]],[[113,[-1]]],21],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[114,[[115,[114]]]],[[[112,[-1]],[112,[-1]]],116,117],[[[12,[26]],25],2],[[[12,[118]],25],2],[[[12,[[112,[-1]]]],25],2,119],[[[112,[-1]],25],2,119],[[[12,[[107,[-1]]]],25],2,95],[[[12,[[108,[-1]]]],25],2,26],[[[12,[[111,[-1,-2]]]],25],2,26,26],[[[12,[[113,[-1]]]],25],2,[[106,[[93,[92]]]],79]],[[[12,[[120,[-1]]]],25],2,26],[[121,25],2],[[-1,-2],[[122,[-1,-2]]],95,[90,79,123]],[[-1,-2],[[124,[-1,-2]]],26,[90,79,123]],[[-1,-2],[[2,[[125,[-1,-2]],1]]],26,[90,79,123]],[[],[[113,[-1]]],126],[[],118],[[[104,[-1]]],25,[[106,[[93,[92]]]]]],[[[112,[-1]],[112,[-1]]],28,127],[121,[[128,[121]]]],[[[112,[-1]]],[[89,[[93,[92]]]]],119],[114,[[129,[114]]]],[[[112,[-1]]],[[89,[2]]],130],[[118,34],35],[[131,34],35],[[132,34],35],[[[133,[-1]],34],35,[]],[[[133,[-1]],34],35,[]],[[[112,[-1]],34],35,38],[[[107,[-1]],34],35,38],[[[134,[-1]],34],35,38],[[[108,[-1]],34],35,38],[[[109,[-1]],34],35,[38,90]],[[[111,[-1,-2]],34],35,38,38],[[[115,[-1]],34],35,[38,123]],[[[122,[-1,-2]],34],35,38,[38,123]],[[[124,[-1,-2]],34],35,38,[38,123]],[[[125,[-1,-2]],34],35,38,[38,123]],[[[113,[-1]],34],35,38],[[[128,[-1]],34],35,[38,123]],[[[129,[-1]],34],35,[38,123]],[[[135,[-1,-2]],34],35,38,38],[[[136,[-1]],34],35,38],[[[137,[-1]],34],35,[38,123]],[[[138,[-1]],34],35,[38,123]],[[[139,[-1]],34],35,[38,123]],[[[140,[-1]],34],35,[38,123]],[[[141,[-1]],34],35,[38,123]],[[[142,[-1]],34],35,[38,123]],[[[143,[-1]],34],35,[38,123]],[[[144,[-1]],34],35,[38,123]],[[[145,[-1]],34],35,38],[[[146,[-1]],34],35,38],[[[120,[-1]],34],35,38],[[[104,[-1]],34],35,38],[[[147,[-1]],34],35,[38,123]],[[[148,[-1]],34],35,[38,123]],[[[149,[-1]],34],35,[38,123]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[112,[-1]]],-1,[]],[[[107,[-1]]],-1,95],[[[108,[-1]]],-1,90],[[[111,[-1,-2]]],[[2,[-1,-2]]],95,95],[[[113,[-1]]],-1,[]],[[[120,[-1]]],-1,95],[[[104,[-1]]],-1,[[106,[[93,[92]]]]]],[[[12,[[107,[-1]]]]],[[12,[-1]]],95],[[[12,[[108,[-1]]]]],[[12,[-1]]],90],[[[12,[[111,[-1,-2]]]]],[[2,[[12,[-1]],[12,[-2]]]]],95,95],[[[12,[[120,[-1]]]]],[[12,[-1]]],95],[[[112,[-1]]],-1,[]],[[[107,[-1]]],-1,95],[[[108,[-1]]],-1,90],[[[109,[-1]]],-1,90],[[[111,[-1,-2]]],[[2,[-1,-2]]],95,95],[[[113,[-1]]],-1,[]],[[[120,[-1]]],-1,95],[[[104,[-1]]],-1,[[106,[[93,[92]]]]]],[[[112,[-1]],-2],2,150,101],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[[[112,[-1]]],-1,[]],[[[107,[-1]]],-1,95],[[[108,[-1]]],-1,90],[[[111,[-1,-2]]],[[2,[-1,-2]]],95,95],[[[113,[-1]]],-1,[]],[[[120,[-1]]],-1,95],[[[104,[-1]]],-1,[[106,[[93,[92]]]]]],[114,[[135,[114,-1]]],[[106,[[93,[92]]]]]],[[[145,[-1]],[146,[-1]]],28,[]],[[[146,[-1]],[145,[-1]]],28,[]],[[[120,[-1]]],98,95],[121,[[136,[121]]]],[-1,[[112,[-1]]],[]],[-1,[[107,[-1]]],95],[-1,[[108,[-1]]],90],[-1,[[109,[-1]]],90],[-1,[[113,[-1]]],[]],[-1,[[104,[-1]]],[[106,[[93,[92]]]]]],[[[112,[-1]],[112,[-1]]],[[27,[116]]],151],[[[12,[[134,[-1]]]],83],[[86,[-2]]],[95,99],[]],[[[12,[[115,[-1]]]],83],[[86,[-2]]],[90,123,79],[]],[[[12,[[122,[-1,-2]]]],83],[[86,[-3]]],95,[90,79,123],[]],[[[12,[[124,[-1,-2]]]],83],[[86,[-3]]],26,[90,79,123],[]],[[[12,[[125,[-1,-2]]]],83],[[86,[-3]]],26,[90,79,123],[]],[[[12,[[128,[-1]]]],83],[[86,[-2]]],[26,123,79],[]],[[[12,[[129,[-1]]]],83],[[86,[-2]]],[90,123,79],[]],[[[12,[[137,[-1]]]],83],[[86,[-2]]],[95,123,79],[]],[[[12,[[138,[-1]]]],83],[[86,[-2]]],[95,123,79],[]],[[[12,[[139,[-1]]]],83],[[86,[-2]]],[95,123,79],[]],[[[12,[[140,[-1]]]],83],[[86,[-2]]],[26,123,79],[]],[[[12,[[141,[-1]]]],83],[[86,[-2]]],[95,123,79],[]],[[[12,[[142,[-1]]]],83],[[86,[-2]]],[95,123,79],[]],[[[12,[[143,[-1]]]],83],[[86,[-2]]],[26,123,79],[]],[[[12,[[144,[-1]]]],83],[[86,[-2]]],[99,123,79],[]],[[[12,[[147,[-1]]]],83],[[86,[-2]]],[90,123,79],[]],[[[12,[[148,[-1]]]],83],[[86,[-2]]],[90,123,79],[]],[[[12,[[149,[-1]]]],83],[[86,[[89,[2]]]]],[90,123,79]],[[[12,[90]],83],[[86,[[29,[2,152]]]]]],[[[12,[132]],83],[[86,[[89,[2]]]]]],[[[12,[[112,[-1]]]],83],[[86,[[89,[2]]]]],130],[[[12,[[107,[-1]]]],83],[[86,[[89,[2]]]]],90],[[[12,[[108,[-1]]]],83],[[86,[[89,[2]]]]],90],[[[12,[[109,[-1]]]],83],[[86,[[89,[2]]]]],90],[[[12,[[113,[[80,[92]]]]]],83],[[86,[[89,[2]]]]]],[[[12,[[113,[[93,[92]]]]]],83],[[86,[[89,[2]]]]]],[[[12,[[113,[[80,[92]]]]]],83],[[86,[[89,[2]]]]]],[[[12,[[113,[[153,[[93,[92]]]]]]]],83],[[86,[[89,[2]]]]]],[[[12,[[135,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],90,[[106,[[93,[92]]]]],[]],[[[12,[[146,[-1]]]],83],[[86,[[89,[2]]]]],90],[[[12,[26]],83],[[86,[[29,[[93,[92]],152]]]]]],[[[12,[118]],83],[[86,[[89,[[93,[92]]]]]]]],[[[12,[[112,[-1]]]],83],[[86,[[89,[[93,[92]]]]]]],119],[[[12,[[107,[-1]]]],83],[[86,[[89,[[93,[92]]]]]]],95],[[[12,[[108,[-1]]]],83],[[86,[[89,[[93,[92]]]]]]],26],[[[12,[[111,[-1,-2]]]],83],[[86,[[89,[[93,[92]]]]]]],26,26],[[[12,[[113,[-1]]]],83],[[86,[[89,[[93,[92]]]]]]],[[106,[[93,[92]]]],79]],[[[12,[[120,[-1]]]],83],[[86,[[89,[[93,[92]]]]]]],26],[[[12,[90]],83],[[86,[[29,[2,152]]]]]],[[[12,[132]],83],[[86,[[89,[2]]]]]],[[[12,[[112,[-1]]]],83],[[86,[[89,[2]]]]],130],[[[12,[[107,[-1]]]],83],[[86,[[89,[2]]]]],90],[[[12,[[108,[-1]]]],83],[[86,[[89,[2]]]]],90],[[[12,[[109,[-1]]]],83],[[86,[[89,[2]]]]],90],[[[12,[[113,[[80,[92]]]]]],83],[[86,[[89,[2]]]]]],[[[12,[[113,[[153,[[93,[92]]]]]]]],83],[[86,[[89,[2]]]]]],[[[12,[[113,[[80,[92]]]]]],83],[[86,[[89,[2]]]]]],[[[12,[[113,[[93,[92]]]]]],83],[[86,[[89,[2]]]]]],[[[12,[[135,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],90,[[106,[[93,[92]]]]],[]],[[[12,[[146,[-1]]]],83],[[86,[[89,[2]]]]],90],[[[12,[[136,[-1]]]],83],[[86,[[27,[-2]]]]],26,[]],[[[12,[95]],83,[93,[92]]],[[86,[[29,[25,152]]]]]],[[[12,[118]],83,[93,[92]]],[[86,[[89,[25]]]]]],[[[12,[131]],83,[93,[92]]],[[86,[[89,[25]]]]]],[[[12,[[112,[-1]]]],83,[93,[92]]],[[86,[[89,[25]]]]],154],[[[12,[[107,[-1]]]],83,[93,[92]]],[[86,[[89,[25]]]]],95],[[[12,[[108,[-1]]]],83,[93,[92]]],[[86,[[89,[25]]]]],95],[[[12,[[111,[-1,-2]]]],83,[93,[92]]],[[86,[[89,[25]]]]],95,95],[[[12,[[113,[-1]]]],83,[93,[92]]],[[86,[[89,[25]]]]],[[106,[[93,[92]]]],79]],[[[12,[[145,[-1]]]],83,[93,[92]]],[[86,[[89,[25]]]]],95],[[[12,[[120,[-1]]]],83,[93,[92]]],[[86,[[29,[25,152]]]]],95],[[[12,[95]],83,[93,[96]]],[[86,[[29,[25,152]]]]]],[[[12,[131]],83,[93,[96]]],[[86,[[89,[25]]]]]],[[[12,[[112,[-1]]]],83,[93,[96]]],[[86,[[89,[25]]]]],154],[[[12,[[107,[-1]]]],83,[93,[96]]],[[86,[[89,[25]]]]],95],[[[12,[[108,[-1]]]],83,[93,[96]]],[[86,[[89,[25]]]]],95],[[[12,[[111,[-1,-2]]]],83,[93,[96]]],[[86,[[89,[25]]]]],95,95],[[[12,[[113,[-1]]]],83,[93,[96]]],[[86,[[89,[25]]]]],[[106,[[93,[92]]]],79]],[[[12,[[145,[-1]]]],83,[93,[96]]],[[86,[[89,[25]]]]],95],[[[12,[[135,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],90,[[106,[[93,[92]]]]],[]],[[[12,[99]],83,97],[[86,[[29,[98,152]]]]]],[[[12,[[112,[-1]]]],83,97],[[86,[[89,[98]]]]],155],[[[12,[[107,[-1]]]],83,97],[[86,[[89,[98]]]]],[95,99]],[[[12,[[108,[-1]]]],83,97],[[86,[[89,[98]]]]],[90,99]],[[[12,[[113,[-1]]]],83,97],[[86,[[89,[98]]]]],[[106,[[93,[92]]]],79]],[[[12,[[107,[-1]]]],83,156],[[86,[[89,[2]]]]],[95,99]],[[[12,[90]],83,[93,[92]]],[[86,[[29,[25,152]]]]]],[[[12,[132]],83,[93,[92]]],[[86,[[89,[25]]]]]],[[[12,[[112,[-1]]]],83,[93,[92]]],[[86,[[89,[25]]]]],130],[[[12,[[107,[-1]]]],83,[93,[92]]],[[86,[[89,[25]]]]],90],[[[12,[[108,[-1]]]],83,[93,[92]]],[[86,[[89,[25]]]]],90],[[[12,[[109,[-1]]]],83,[93,[92]]],[[86,[[89,[25]]]]],90],[[[12,[[113,[[93,[92]]]]]],83,[93,[92]]],[[86,[[89,[25]]]]]],[[[12,[[113,[[80,[92]]]]]],83,[93,[92]]],[[86,[[89,[25]]]]]],[[[12,[[113,[[80,[92]]]]]],83,[93,[92]]],[[86,[[89,[25]]]]]],[[[12,[[113,[[153,[[93,[92]]]]]]]],83,[93,[92]]],[[86,[[89,[25]]]]]],[[[12,[[146,[-1]]]],83,[93,[92]]],[[86,[[89,[25]]]]],90],[[[12,[90]],83,[93,[100]]],[[86,[[29,[25,152]]]]]],[[[12,[132]],83,[93,[100]]],[[86,[[89,[25]]]]]],[[[12,[[112,[-1]]]],83,[93,[100]]],[[86,[[89,[25]]]]],130],[[[12,[[107,[-1]]]],83,[93,[100]]],[[86,[[89,[25]]]]],90],[[[12,[[108,[-1]]]],83,[93,[100]]],[[86,[[89,[25]]]]],90],[[[12,[[109,[-1]]]],83,[93,[100]]],[[86,[[89,[25]]]]],90],[[[12,[[113,[[153,[[93,[92]]]]]]]],83,[93,[100]]],[[86,[[89,[25]]]]]],[[[12,[[113,[[80,[92]]]]]],83,[93,[100]]],[[86,[[89,[25]]]]]],[[[12,[[113,[[80,[92]]]]]],83,[93,[100]]],[[86,[[89,[25]]]]]],[[[12,[[113,[[93,[92]]]]]],83,[93,[100]]],[[86,[[89,[25]]]]]],[[[12,[[146,[-1]]]],83,[93,[100]]],[[86,[[89,[25]]]]],90],[[[113,[-1]]],98,[]],[[110,[93,[92]]],[[137,[110]]]],[[[112,[-1]],[93,[92]]],[[89,[25]]],154],[[110,[93,[92]]],[[139,[110]]]],[[[112,[-1]],[93,[92]]],[[89,[2]]],154],[[121,102],[[140,[121]]]],[[110,[80,[92]]],[[141,[110]]]],[[[112,[-1]],[80,[92]]],[[89,[25]]],154],[[110,102],[[142,[110]]]],[[[112,[-1]],102],[[89,[25]]],154],[[121,92,[80,[92]]],[[143,[121]]]],[[110,[93,[96]]],[[138,[110]]]],[[[112,[-1]],[93,[96]]],[[89,[25]]],154],[92,131],[[[145,[-1]],[146,[-1]]],[[29,[-1,[133,[-1]]]]],79],[[[146,[-1]],[145,[-1]]],[[29,[-1,[133,[-1]]]]],79],[[157,97],[[144,[157]]]],[[[112,[-1]],97],[[89,[98]]],155],[[[12,[[107,[-1]]]],156],[[134,[-1]]],[95,99]],[[[104,[-1]],-2],2,[[106,[[93,[92]]]]],[[158,[25]]]],[[[120,[-1]],98],2,95],[[[113,[-1]],98],2,[]],[[],132],[110,[[2,[[145,[110]],[146,[110]]]]]],[[[104,[-1]]],25,[[106,[[93,[92]]]]]],[[[12,[[135,[-1,-2]]]],-2],[[29,[2,-3]]],90,[[106,[[93,[92]]]]],[]],[157,[[144,[157]]]],[[110,98],[[120,[110]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,102,[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[[25,-1],[[107,[-1]]],95],[[25,-1],[[108,[-1]]],90],[[25,-1],[[109,[-1]]],90],[[114,[93,[92]]],[[147,[114]]]],[[[112,[-1]],[93,[92]]],[[89,[25]]],130],[[114,[93,[92]]],[[149,[114]]]],[[[112,[-1]],[93,[92]]],[[89,[2]]],130],[[[112,[-1]],159],[[89,[2]]],130],[[114,[93,[100]]],[[148,[114]]]],[[[112,[-1]],[93,[100]]],[[89,[25]]],130],0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[160,[-1]]],126],[[[161,[-1]]],-1,123],[[[162,[-1]]],-1,123],[[[163,[-1,-2]]],-2,123,123],[[[161,[-1]]],-1,123],[[[162,[-1]]],-1,123],[[[163,[-1,-2]]],-2,123,123],[[[164,[-1]]],2,123],[[[161,[-1]]],2,123],[[[165,[-1]]],2,123],[[[162,[-1]]],2,123],[[[163,[-1,-2]]],2,123,123],[[[160,[-1]],34],35,123],[[[164,[-1]],34],35,123],[[[161,[-1]],34],35,[123,38]],[[[165,[-1]],34],35,123],[[[162,[-1]],34],35,[123,38]],[[[163,[-1,-2]],34],35,123,[123,38]],[166,-1,[]],[-1,[[160,[-1]]],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[160,[-1]]],-1,123],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[],[]],[-1,[],[]],[[[160,[-1]]],-1,[]],[[[164,[-1]]],28,123],[[[165,[-1]]],28,123],[[[160,[-1]]],[[165,[-1]]],123],[[[167,[[160,[-1]]]]],[[164,[-1]]],123],[[[162,[-1]],-3],[[163,[-1,-2]]],123,123,[[10,[-1],[[9,[-2]]]]]],[[[163,[-1,-2]],-4],[[163,[-1,-3]]],123,123,123,[[10,[-2],[[9,[-3]]]]]],[-1,[[160,[-1]]],[]],[[[12,[[164,[-1]]]],83],[[86,[-2]]],123,[]],[[[12,[[165,[-1]]]],83],[[86,[-2]]],123,[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[[[160,[-1]]],[[27,[[162,[-1]]]]],123],[[[167,[[160,[-1]]]]],[[27,[[161,[-1]]]]],123],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[168,25],[[169,[168,-1]]],[]],[[[170,[-1]]],[[170,[-1]]],[]],[[[171,[-1,-2]]],[[171,[-1,-2]]],21,21],[[[172,[-1,-2,-3,-4,-5]]],[[172,[-1,-2,-3,-4,-5]]],21,[],[],21,21],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[168,[[173,[168,-1]]],[]],[[],[[170,[-1]]],[]],[[168,-3],[[174,[168,-3]]],21,[],[[91,[-1],[[7,[-2]]]]]],[[168,-1],[[175,[168,-1]]],[]],[168,[[176,[168,-1]]],[]],[[[177,[-1,-2]],34],35,[38,123],[38,123,178]],[[[173,[-1,-2]],34],35,[38,123],38],[[[170,[-1]],34],35,38],[[[174,[-1,-2]],34],35,38,38],[[[175,[-1,-2]],34],35,[38,123],38],[[[176,[-1,-2]],34],35,[38,123],38],[[[179,[-2,-1,-3]],34],35,38,[38,[91,[-1]]],38],[[[171,[-1,-2]],34],35,38,38],[[[180,[-1,-2]],34],35,[38,123],38],[[[181,[-1,-2,-3]],34],35,38,38,38],[[[172,[-1,-2,-3,-4,-5]],34],35,38,[],[],38,[]],[[[182,[-1,-2,-3,-4,-5]],34],35,38,38,[],38,[]],[[[169,[-1,-2]],34],35,38,38],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[174,[-1,-2]]],[[2,[-1,-2]]],[],[]],[[[179,[-2,-1,-3]]],-2,[],[[91,[-1]]],[]],[[[171,[-1,-2]]],-1,[],[]],[[[172,[-2,-1,-3,-5,-6]]],-2,[],[[91,[-1]]],[],183,[[4,[],[[9,[[29,[-1,-4]]]]]]],[[87,[-3],[[9,[-5]]]]]],[[[182,[-2,-1,-3,-4,-5]]],-2,[],[[91,[-1]]],[],[[94,[],[[77,[[29,[-1]]]]]]],[[87,[-3],[[9,[-4]]]]]],[[[169,[-2,-1]]],-2,[],[[91,[-1]]]],[[[12,[[174,[-1,-2]]]]],[[2,[[12,[-1]],[12,[-2]]]]],[],[]],[[[12,[[179,[-2,-1,-3]]]]],[[12,[-2]]],[],[[91,[-1]]],[]],[[[12,[[171,[-1,-2]]]]],[[12,[-1]]],[],[]],[[[12,[[172,[-2,-1,-3,-5,-6]]]]],[[12,[-2]]],[],[[91,[-1]]],[],183,[[4,[],[[9,[[29,[-1,-4]]]]]]],[[87,[-3],[[9,[-5]]]]]],[[[12,[[182,[-2,-1,-3,-4,-5]]]]],[[12,[-2]]],[],[[91,[-1]]],[],[[94,[],[[77,[[29,[-1]]]]]]],[[87,[-3],[[9,[-4]]]]]],[[[12,[[169,[-2,-1]]]]],[[12,[-2]]],[],[[91,[-1]]]],[[[174,[-1,-2]]],[[2,[-1,-2]]],[],[]],[[[179,[-2,-1,-3]]],-2,[],[[91,[-1]]],[]],[[[171,[-1,-2]]],-1,[],[]],[[[172,[-2,-1,-3,-5,-6]]],-2,[],[[91,[-1]]],[],183,[[4,[],[[9,[[29,[-1,-4]]]]]]],[[87,[-3],[[9,[-5]]]]]],[[[182,[-2,-1,-3,-4,-5]]],-2,[],[[91,[-1]]],[],[[94,[],[[77,[[29,[-1]]]]]]],[[87,[-3],[[9,[-4]]]]]],[[[169,[-2,-1]]],-2,[],[[91,[-1]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[[[174,[-1,-2]]],[[2,[-1,-2]]],[],[]],[[[179,[-2,-1,-3]]],-2,[],[[91,[-1]]],[]],[[[171,[-1,-2]]],-1,[],[]],[[[172,[-2,-1,-3,-5,-6]]],-2,[],[[91,[-1]]],[],183,[[4,[],[[9,[[29,[-1,-4]]]]]]],[[87,[-3],[[9,[-5]]]]]],[[[182,[-2,-1,-3,-4,-5]]],-2,[],[[91,[-1]]],[],[[94,[],[[77,[[29,[-1]]]]]]],[[87,[-3],[[9,[-4]]]]]],[[[169,[-2,-1]]],-2,[],[[91,[-1]]]],[[[179,[-2,-1,-3]]],28,[],[[91,[-1]],84],[]],[[[171,[-1,-2]]],28,84,[]],[[[182,[-2,-1,-3,-4,-5]]],28,[],[84,[91,[-1]]],[],[[94,[],[[77,[[29,[-1]]]]]]],[[87,[-3],[[9,[-4]]]]]],[[[169,[-2,-1]]],28,[],[[91,[-1]],84]],[168,[[11,[168,-3]]],[],[],[[91,[-1],[[7,[-2]]]]]],[[[12,[[177,[-3,-4]]]],83],[[86,[-5]]],[],[],[[91,[-1],[[7,[-2]]]],79,123],[[94,[],[[77,[[29,[-1,-2]]]]]],79,123],[]],[[[12,[[173,[-2,-1]]]],83],[[86,[-3]]],[],[[91,[-1]],79,123],[]],[[[12,[[175,[-2,-1]]]],83],[[86,[-3]]],[],[[91,[-1]],79,123],[]],[[[12,[[176,[-2,-1]]]],83],[[86,[-3]]],[],[[91,[-1]],79,123],[]],[[[12,[[180,[-2,-1]]]],83],[[86,[-3]]],[],[[91,[-1]],79,123],[]],[[[12,[[91,[],[[7,[-1]]]]]],83],[[86,[[29,[2,-1]]]]],[]],[[[12,[[170,[-1]]]],83],[[86,[[29,[2,-2]]]]],[],[]],[[[12,[[174,[-2,-3]]]],83],[[86,[[29,[2,-4]]]]],21,[[91,[-1]]],[[91,[-1],[[7,[]]]]],[]],[[[12,[[179,[-2,-1,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[[91,[-1]]],[],[]],[[[12,[[171,[-2,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[[10,[],[[9,[-3]]]]],[]],[[[12,[[181,[-1,-5,-4]]]],83],[[86,[[29,[2,-6]]]]],[],[],[],[[4,[],[[9,[[29,[-1,-3]]]]]]],[[87,[-1,-2],[[9,[-4]]]]],[]],[[[12,[[172,[-2,-1,-3,-5,-6]]]],83],[[86,[[29,[2,-7]]]]],[],[[91,[-1]]],[],183,[[4,[],[[9,[[29,[-1,-4]]]]]]],[[87,[-3],[[9,[-5]]]]],[]],[[[12,[[182,[-2,-1,-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[[91,[-1]]],[],[[94,[],[[77,[[29,[-1]]]]]]],[[87,[-3],[[9,[-4]]]]],[]],[[[12,[[169,[-2,-1]]]],83],[[86,[[29,[2,-3]]]]],[],[[91,[-1]]],[]],[[168,83],[[86,[[29,[2,-1]]]]],[]],[[[12,[[91,[],[[7,[-1]]]]]],83],[[86,[[29,[2,-1]]]]],[]],[[[12,[[170,[-1]]]],83],[[86,[[29,[2,-2]]]]],[],[]],[[[12,[[174,[-2,-3]]]],83],[[86,[[29,[2,-4]]]]],21,[[91,[-1]]],[[91,[-1],[[7,[]]]]],[]],[[[12,[[179,[-2,-1,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[[91,[-1]]],[],[]],[[[12,[[171,[-2,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[[10,[],[[9,[-3]]]]],[]],[[[12,[[181,[-1,-5,-4]]]],83],[[86,[[29,[2,-6]]]]],[],[],[],[[4,[],[[9,[[29,[-1,-3]]]]]]],[[87,[-1,-2],[[9,[-4]]]]],[]],[[[12,[[172,[-2,-1,-3,-5,-6]]]],83],[[86,[[29,[2,-7]]]]],[],[[91,[-1]]],[],183,[[4,[],[[9,[[29,[-1,-4]]]]]]],[[87,[-3],[[9,[-5]]]]],[]],[[[12,[[182,[-2,-1,-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[[91,[-1]]],[],[[94,[],[[77,[[29,[-1]]]]]]],[[87,[-3],[[9,[-4]]]]],[]],[[[12,[[169,[-2,-1]]]],83],[[86,[[29,[2,-3]]]]],[],[[91,[-1]]],[]],[[168,83],[[86,[[29,[2,-1]]]]],[]],[[[12,[[179,[-2,-1,-3]]]],83],[[86,[[27,[-4]]]]],[],[[91,[-1]],94],[],[]],[[[12,[[171,[-1,-2]]]],83],[[86,[[27,[-3]]]]],94,[],[]],[[[12,[[172,[-2,-1,-3,-4,-5]]]],83],[[86,[[27,[-6]]]]],[],[94,[91,[-1]]],[],4,[[87,[-3],[[9,[-4]]]]],[]],[[[12,[[182,[-2,-1,-3,-4,-5]]]],83],[[86,[[27,[-6]]]]],[],[94,[91,[-1]]],[],[[94,[],[[77,[[29,[-1]]]]]]],[[87,[-3],[[9,[-4]]]]],[]],[[[12,[[169,[-2,-1]]]],83],[[86,[27]]],[],[[91,[-1]],94]],[[[12,[[91,[],[[7,[-1]]]]]],83],[[86,[[29,[2,-1]]]]],[]],[[[12,[[170,[-1]]]],83],[[86,[[29,[2,-2]]]]],[],[]],[[[12,[[174,[-2,-3]]]],83],[[86,[[29,[2,-4]]]]],21,[[91,[-1]]],[[91,[-1],[[7,[]]]]],[]],[[[12,[[179,[-2,-1,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[[91,[-1]]],[],[]],[[[12,[[171,[-2,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[[10,[],[[9,[-3]]]]],[]],[[[12,[[181,[-1,-5,-4]]]],83],[[86,[[29,[2,-6]]]]],[],[],[],[[4,[],[[9,[[29,[-1,-3]]]]]]],[[87,[-1,-2],[[9,[-4]]]]],[]],[[[12,[[172,[-2,-1,-3,-5,-6]]]],83],[[86,[[29,[2,-7]]]]],[],[[91,[-1]]],[],183,[[4,[],[[9,[[29,[-1,-4]]]]]]],[[87,[-3],[[9,[-5]]]]],[]],[[[12,[[182,[-2,-1,-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[[91,[-1]]],[],[[94,[],[[77,[[29,[-1]]]]]]],[[87,[-3],[[9,[-4]]]]],[]],[[[12,[[169,[-2,-1]]]],83],[[86,[[29,[2,-3]]]]],[],[[91,[-1]]],[]],[[168,83],[[86,[[29,[2,-1]]]]],[]],[168,[[11,[-3,168]]],[],[],[[91,[-1],[[7,[-2]]]]]],[[168,-1],[[180,[168,-1]]],[]],[[168,-3],[[177,[168,-3]]],[],[],[[178,[],[[85,[-1]],[7,[-2]]]],94,79,123]],[168,[[179,[168,-1,-2]]],[],[]],[[168,-3],[[171,[168,-3]]],[],[],[[10,[-1],[[9,[-2]]]]]],[[[179,[-2,-1,-3]]],[[2,[25,[27,[25]]]]],[],[[91,[-1]],94],[]],[[[171,[-1,-2]]],[[2,[25,[27,[25]]]]],94,[]],[[[172,[-2,-1,-3,-4,-5]]],[[2,[25,[27,[25]]]]],[],[94,[91,[-1]]],[],4,[[87,[-3],[[9,[-4]]]]]],[[[182,[-2,-1,-3,-4,-5]]],[[2,[25,[27,[25]]]]],[],[94,[91,[-1]]],[],[[94,[],[[77,[[29,[-1]]]]]]],[[87,[-3],[[9,[-4]]]]]],[[[169,[-2,-1]]],[[2,[25,[27,[25]]]]],[],[[91,[-1]],94]],[[[12,[[91,[],[[7,[-1]]]]]],-2],[[29,[2,-1]]],[],[]],[[[12,[[170,[-1]]]],-1],[[29,[2,-2]]],[],[]],[[[12,[[174,[-2,-3]]]],-1],[[29,[2,-4]]],21,[[91,[-1]]],[[91,[-1],[[7,[]]]]],[]],[[[12,[[179,[-2,-1,-3]]]],-1],[[29,[2,-4]]],[],[[91,[-1]]],[],[]],[[[12,[[171,[-2,-4]]]],-1],[[29,[2,-5]]],[],[[91,[-1]]],[],[[10,[],[[9,[-3]]]]],[]],[[[12,[[181,[-1,-5,-4]]]],-2],[[29,[2,-6]]],[],[],[],[[4,[],[[9,[[29,[-1,-3]]]]]]],[[87,[-1,-2],[[9,[-4]]]]],[]],[[[12,[[172,[-2,-1,-3,-5,-6]]]],-3],[[29,[2,-7]]],[],[[91,[-1]]],[],183,[[4,[],[[9,[[29,[-1,-4]]]]]]],[[87,[-3],[[9,[-5]]]]],[]],[[[12,[[182,[-2,-1,-3,-4,-5]]]],-3],[[29,[2,-6]]],[],[[91,[-1]]],[],[[94,[],[[77,[[29,[-1]]]]]]],[[87,[-3],[[9,[-4]]]]],[]],[[[12,[[169,[-2,-1]]]],-1],[[29,[2,-3]]],[],[[91,[-1]]],[]],[[168,-1],[[29,[2,-2]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[[-1,-5],[[181,[-1,-5,-4]]],[],[],[],[[4,[],[[9,[[29,[-1,-3]]]]]]],[[87,[-1,-2],[[9,[-4]]]]]],[[168,-6],[[172,[168,-2,-1,-5,-6]]],[],[],[],[[183,[-3]]],[[4,[],[[9,[[29,[-2,-4]]]]]]],[[87,[-1],[[9,[-5]]]]]],[[168,-5],[[182,[168,-2,-1,-4,-5]]],[],[],[],[[94,[],[[77,[[29,[-2,-3]]]]]]],[[87,[-1],[[9,[-4]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,[[2,[[3,[-1]],1]]],94],[[184,-3],[[185,[184,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[184,-3],[[185,[184,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[186,-4],[[187,[186,-3,-4]]],[],[],[[8,[],[[7,[-2]]]]],[[87,[-1],[[9,[-3]]]]]],[[186,-4],[[187,[186,-3,-4]]],[],[],[[8,[],[[7,[-2]]]]],[[87,[-1],[[9,[-3]]]]]],[[184,-3],[[188,[184,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[184,-3],[[188,[184,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[184,[[189,[-1]]],[]],[184,[[189,[-1]]],[]],[184,[[190,[-1]]],[]],[184,[[190,[-1]]],[]],[[184,25],[[191,[184]]]],[[184,25],[[191,[184]]]],[[184,25],[[192,[184]]]],[[184,25],[[192,[184]]]],[184,184],[184,184],[184,[[193,[184]]]],[184,[[193,[184]]]],[[184,-2],[[194,[184,-2]]],[],[[94,[],[[77,[-1]]]]]],[[184,-2],[[194,[184,-2]]],[],[[94,[],[[77,[-1]]]]]],[[184,25],[[195,[184]]]],[[184,25],[[195,[184]]]],[[[196,[-1]]],[[196,[-1]]],21],[[[197,[-1]]],[[197,[-1]]],21],[[[198,[-1]]],[[198,[-1]]],21],[[[199,[-1]]],[[199,[-1]]],[]],[[[200,[-1]]],[[200,[-1]]],[]],[[[201,[-1]]],[[201,[-1]]],21],[202,202],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[184,[[203,[184,-2]]],[],[126,[204,[-1]]]],[184,[[203,[184,-2]]],[],[126,[204,[-1]]]],[184,[[205,[184]]]],[184,[[205,[184]]]],[[[12,[[206,[-1]]]],25],2,[[178,[],[[7,[152]]]]]],[184,[[207,[184]]]],[184,[[207,[184]]]],[184,[[208,[184]]]],[184,[[208,[184]]]],[[],[[209,[-1]]],4],[[],[[210,[-1]]],[]],[[],[[211,[-1]]],[94,79]],[[],202],[[[210,[-1]]],2,[]],[[],[[199,[-1]]],[]],[184,[[212,[184]]]],[184,[[212,[184]]]],[[[213,[-1,-2]],[213,[-1,-2]]],28,127,127],[[[214,[-1,-2]],[214,[-1,-2]]],28,127,127],[[202,202],28],[186,[[215,[186,-1]]],[]],[186,[[215,[186,-1]]],[]],[[[209,[-1]],-2],2,4,[[78,[],[[77,[-1]]]]]],[[[210,[-1]],-2],2,[],[[78,[],[[77,[-1]]]]]],[[[211,[-1]],-2],2,[94,79],[[78,[],[[77,[-1]]]]]],[[184,-3],[[216,[184,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[184,-3],[[216,[184,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[184,-4],[[217,[184,-3,-4]]],[],[],[[4,[],[[9,[[27,[-2]]]]]]],[[87,[-1],[[9,[-3]]]]]],[[184,-4],[[217,[184,-3,-4]]],[],[],[[4,[],[[9,[[27,[-2]]]]]]],[[87,[-1],[[9,[-3]]]]]],[[184,-3],[[218,[184,-2,-3]]],[],94,[[87,[-1],[[9,[-2]]]]]],[[184,-3],[[218,[184,-2,-3]]],[],94,[[87,[-1],[[9,[-2]]]]]],[[184,-1,-4],[[219,[184,-3,-4]]],[[220,[[27,[25]]]]],[],[94,79],[[87,[-2],[[9,[-3]]]]]],[[184,-1,-4],[[219,[184,-3,-4]]],[[220,[[27,[25]]]]],[],[94,79],[[87,[-2],[[9,[-3]]]]]],[184,[[221,[184]]]],[184,[[221,[184]]]],[[184,-1],[[222,[184]]],[[220,[[27,[25]]]]]],[[184,-1],[[222,[184]]],[[220,[[27,[25]]]]]],[[[223,[-1,-2]],34],35,[],[]],[[[223,[-1,-2]],34],35,[],[]],[[[224,[-1]],34],35,[]],[[[209,[-1]],34],35,4],[[[210,[-1]],34],35,[]],[[[211,[-1]],34],35,38],[[[194,[-1,-2]],34],35,38,38],[[[203,[-1,-2]],34],35,38,38],[[[225,[-1,-2,-3]],34],35,38,38,38],[[[205,[-1]],34],35,[38,94]],[[[207,[-1]],34],35,38],[[[208,[-1]],34],35,38],[[[212,[-1]],34],35,38],[[[216,[-1,-2,-3]],34],35,[94,38],38,[]],[[[217,[-1,-2,-3]],34],35,38,38,[]],[[[221,[-1]],34],35,94],[[[226,[-1,-2,-3,-4]],34],35,38,38,38,[]],[[[188,[-1,-2,-3]],34],35,38,38,[]],[[[185,[-1,-2,-3]],34],35,38,38,[]],[[[227,[-1,-2]],34],35,178,[]],[[[228,[-1,-2,-3]],34],35,38,38,[]],[[[229,[-1]],34],35,38],[[[230,[-1]],34],35,38],[[[231,[-1,-2]],34],35,[],[]],[[[232,[-1,-2]],34],35,38,[]],[[[218,[-1,-2,-3]],34],35,[],[],[]],[[[233,[-1]],34],35,[38,123]],[[[234,[-1]],34],35,[38,123]],[[[235,[-1]],34],35,[38,94]],[[[236,[-1]],34],35,[94,38]],[[[237,[-1]],34],35,[94,38]],[[[238,[-1,-2]],34],35,[94,38],[]],[[[239,[-1,-2]],34],35,[94,38],123],[[[240,[-1]],34],35,38],[[[241,[-1,-2,-3]],34],35,[94,38],38,[]],[[[242,[-1]],34],35,38],[[[243,[-1,-2,-3]],34],35,[94,38],38,[]],[[[244,[-1,-2]],34],35,[94,38],[4,38]],[[[245,[-1,-2,-3]],34],35,38,38,[]],[[[246,[-1,-2]],34],35,[38,94],[38,94]],[[[195,[-1]],34],35,[38,94]],[[[247,[-1]],34],35,[38,94]],[[[248,[-1,-2,-3,-4]],34],35,[94,38],38,38,[]],[[[191,[-1]],34],35,[94,38]],[[[192,[-1]],34],35,[94,38]],[[[219,[-1,-2,-3]],34],35,94,[94,79],[[87,[],[[9,[-2]]]]]],[[[249,[-1,-2,-3]],34],35,38,38,[]],[[[250,[-1]],34],35,38],[[[251,[-1,-2]],34],35,38,38],[[[193,[-1]],34],35,38],[[[187,[-1,-2,-3]],34],35,38,38,[]],[[[215,[-1,-2]],34],35,[],[]],[[[252,[-1,-2]],34],35,[],[]],[[[253,[-1,-2]],34],35,[],[]],[[[254,[-1]],34],35,38],[[[255,[-1,-2]],34],35,[],[]],[[[256,[-1,-2]],34],35,[],[]],[[[257,[-1,-2,-3]],34],35,38,38,[]],[[[258,[-1]],34],35,[38,123]],[[[259,[-1,-2,-3]],34],35,38,38,[]],[[[260,[-1,-2,-3]],34],35,[178,38],38,[]],[[[261,[-1,-2,-3]],34],35,38,38,[]],[[[262,[-1]],34],35,[178,38]],[[[263,[-1]],34],35,178],[[[264,[-1,-2]],34],35,38,38],[[[265,[-1]],34],35,[38,178]],[[[266,[-1]],34],35,[38,178]],[[[213,[-1,-2]],34],35,[],267],[[[213,[-1,-2]],34],35,[],38],[[[268,[-1]],34],35,[38,178]],[[[214,[-1,-2]],34],35,[],38],[[[214,[-1,-2]],34],35,[],267],[[[269,[-1,-2,-3,-4]],34],35,38,38,38,[]],[[[270,[-1,-2,-3]],34],35,38,[],38],[[[271,[-1,-2,-3]],34],35,[178,38],38,[]],[[[272,[-1,-2,-3]],34],35,[178,38],38,[]],[[[273,[-1]],34],35,[178,38]],[[[274,[-1]],34],35,[178,38]],[[[275,[-1,-2,-3]],34],35,38,38,[]],[[[206,[-1]],34],35,[[178,[],[[7,[152]]]],38]],[[[276,[-1,-2,-3]],34],35,38,38,[]],[[[277,[-1,-2,-3]],34],35,38,38,[]],[[[196,[-1]],34],35,38],[[[197,[-1]],34],35,38],[[[198,[-1]],34],35,38],[[[199,[-1]],34],35,38],[[[278,[-1]],34],35,38],[[[200,[-1]],34],35,38],[[[201,[-1]],34],35,38],[[[279,[-1,-2]],34],35,38,38],[[202,34],35],[[[280,[-1,-2,-3,-4]],34],35,38,38,[],38],[[[281,[-1,-2,-3]],34],35,38,[],38],[[184,-1,-4],[[226,[184,-3,-1,-4]]],[],[],[[4,[],[[9,[-1]]]]],[[87,[-1,-2],[[9,[-3]]]]]],[[184,-1,-4],[[226,[184,-3,-1,-4]]],[],[],[[4,[],[[9,[-1]]]]],[[87,[-1,-2],[[9,[-3]]]]]],[[184,-3],[[228,[184,-2,-3]]],[],[[4,[],[[9,[2]]]]],[[87,[-1],[[9,[-2]]]]]],[[184,-3],[[228,[184,-2,-3]]],[],[[4,[],[[9,[2]]]]],[[87,[-1],[[9,[-2]]]]]],[[184,-1,-4],[[249,[184,-3,-4]]],[[220,[[27,[25]]]]],[],[[4,[],[[9,[2]]]]],[[87,[-2],[[9,[-3]]]]]],[[184,-1,-4],[[249,[184,-3,-4]]],[[220,[[27,[25]]]]],[],[[4,[],[[9,[2]]]]],[[87,[-2],[[9,[-3]]]]]],[[184,-3],[[227,[184,-3]]],[],[],[[91,[-1],[[7,[-2]]]]]],[[184,-3],[[227,[184,-3]]],[],[],[[91,[-1],[[7,[-2]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-2,[[209,[-1]]],4,[[78,[],[[77,[-1]]]]]],[-2,[[210,[-1]]],[],[[78,[],[[77,[-1]]]]]],[-2,[[211,[-1]]],[94,79],[[78,[],[[77,[-1]]]]]],[184,[[229,[184]]]],[184,[[229,[184]]]],0,[[[212,[-1]]],-1,94],[[[216,[-1,-2,-3]]],-1,94,[[4,[],[[9,[28]]]]],[[0,[],[[9,[-2]]]]]],[[[217,[-1,-2,-3]]],-1,94,4,[[87,[],[[9,[-2]]]]]],[[[221,[-1]]],-1,94],[[[229,[-1]]],-1,[]],[[[230,[-1]]],[[27,[-1]]],[94,79]],[[[231,[-1,-2]]],-1,[],[]],[[[232,[-1,-2]]],-1,[],[]],[[[218,[-1,-2,-3]]],-1,[],[],[]],[[[235,[-1]]],-1,94],[[[240,[-1]]],-1,94],[[[241,[-1,-2,-3]]],-1,94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[242,[-1]]],-1,94],[[[243,[-1,-2,-3]]],-1,94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[244,[-1,-2]]],-1,94,4],[[[245,[-1,-2,-3]]],-1,94,[],[[87,[],[[9,[-2]]]]]],[[[246,[-1,-2]]],[[2,[-1,-2]]],94,94],[[[195,[-1]]],-1,94],[[[247,[-1]]],-1,94],[[[248,[-1,-2,-4,-5]]],-1,94,[],[],[[4,[],[[9,[[27,[-3]]]]]]],[[87,[-2],[[9,[-4]]]]]],[[[191,[-1]]],-1,94],[[[192,[-1]]],-1,94],[[[219,[-1,-2,-3]]],-1,94,[94,79],[[87,[],[[9,[-2]]]]]],[[[193,[-1]]],-1,[94,88]],[[[187,[-1,-2,-3]]],-1,178,[[8,[],[[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[215,[-1,-2]]],-1,[],[]],[[[252,[-1,-2]]],-1,[],[]],[[[253,[-1,-2]]],-1,[],[]],[[[254,[-1]]],-1,[]],[[[255,[-1,-2]]],-1,[],[]],[[[256,[-1,-2]]],-1,[],[]],[[[257,[-1,-2,-3]]],-1,178,[[8,[],[[85,[]]]]],[[87,[],[[9,[-2]]]]]],[[[260,[-1,-2,-3]]],-1,178,[],[]],[[[261,[-1,-2,-3]]],-1,[],[],[]],[[[262,[-1]]],-1,178],[[[263,[-1]]],-1,178],[[[266,[-1]]],-1,178],[[[268,[-1]]],-1,178],[[[271,[-1,-2,-3]]],-1,178,[[8,[],[[85,[28]],[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[272,[-1,-2,-3]]],-1,178,[[8,[],[[85,[28]],[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[273,[-1]]],-1,178],[[[274,[-1]]],-1,178],[[[279,[-1,-2]]],[[2,[-1,-2]]],[],[]],[[[280,[-1,-2,-3,-4]]],[[2,[-1,-2]]],[],[],[],[]],[[[12,[[212,[-1]]]]],[[12,[-1]]],94],[[[12,[[216,[-1,-2,-3]]]]],[[12,[-1]]],94,[[4,[],[[9,[28]]]]],[[0,[],[[9,[-2]]]]]],[[[12,[[217,[-1,-2,-3]]]]],[[12,[-1]]],94,4,[[87,[],[[9,[-2]]]]]],[[[12,[[221,[-1]]]]],[[12,[-1]]],94],[[[12,[[229,[-1]]]]],[[12,[-1]]],[]],[[[12,[[230,[-1]]]]],[[27,[[12,[-1]]]]],[94,79]],[[[12,[[231,[-1,-2]]]]],[[12,[-1]]],[],[]],[[[12,[[232,[-1,-2]]]]],[[12,[-1]]],[],[]],[[[12,[[218,[-1,-2,-3]]]]],[[12,[-1]]],[],[],[]],[[[12,[[235,[-1]]]]],[[12,[-1]]],94],[[[12,[[240,[-1]]]]],[[12,[-1]]],94],[[[12,[[241,[-1,-2,-3]]]]],[[12,[-1]]],94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[12,[[242,[-1]]]]],[[12,[-1]]],94],[[[12,[[243,[-1,-2,-3]]]]],[[12,[-1]]],94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[12,[[244,[-1,-2]]]]],[[12,[-1]]],94,4],[[[12,[[245,[-1,-2,-3]]]]],[[12,[-1]]],94,[],[[87,[],[[9,[-2]]]]]],[[[12,[[246,[-1,-2]]]]],[[2,[[12,[-1]],[12,[-2]]]]],94,94],[[[12,[[195,[-1]]]]],[[12,[-1]]],94],[[[12,[[247,[-1]]]]],[[12,[-1]]],94],[[[12,[[248,[-1,-2,-4,-5]]]]],[[12,[-1]]],94,[],[],[[4,[],[[9,[[27,[-3]]]]]]],[[87,[-2],[[9,[-4]]]]]],[[[12,[[191,[-1]]]]],[[12,[-1]]],94],[[[12,[[192,[-1]]]]],[[12,[-1]]],94],[[[12,[[219,[-1,-2,-3]]]]],[[12,[-1]]],94,[94,79],[[87,[],[[9,[-2]]]]]],[[[12,[[193,[-1]]]]],[[12,[-1]]],[94,88]],[[[12,[[187,[-1,-2,-3]]]]],[[12,[-1]]],178,[[8,[],[[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[12,[[215,[-1,-2]]]]],[[12,[-1]]],[],[]],[[[12,[[252,[-1,-2]]]]],[[12,[-1]]],[],[]],[[[12,[[253,[-1,-2]]]]],[[12,[-1]]],[],[]],[[[12,[[254,[-1]]]]],[[12,[-1]]],[]],[[[12,[[255,[-1,-2]]]]],[[12,[-1]]],[],[]],[[[12,[[256,[-1,-2]]]]],[[12,[-1]]],[],[]],[[[12,[[257,[-1,-2,-3]]]]],[[12,[-1]]],178,[[8,[],[[85,[]]]]],[[87,[],[[9,[-2]]]]]],[[[12,[[260,[-1,-2,-3]]]]],[[12,[-1]]],178,[],[]],[[[12,[[261,[-1,-2,-3]]]]],[[12,[-1]]],[],[],[]],[[[12,[[262,[-1]]]]],[[12,[-1]]],178],[[[12,[[263,[-1]]]]],[[12,[-1]]],178],[[[12,[[266,[-1]]]]],[[12,[-1]]],178],[[[12,[[268,[-1]]]]],[[12,[-1]]],178],[[[12,[[271,[-1,-2,-3]]]]],[[12,[-1]]],178,[[8,[],[[85,[28]],[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[12,[[272,[-1,-2,-3]]]]],[[12,[-1]]],178,[[8,[],[[85,[28]],[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[12,[[273,[-1]]]]],[[12,[-1]]],178],[[[12,[[274,[-1]]]]],[[12,[-1]]],178],[[[12,[[279,[-1,-2]]]]],[[2,[[12,[-1]],[12,[-2]]]]],[],[]],[[[12,[[280,[-1,-2,-3,-4]]]]],[[2,[[12,[-1]],[12,[-2]]]]],[],[],[],[]],[[[212,[-1]]],-1,94],[[[216,[-1,-2,-3]]],-1,94,[[4,[],[[9,[28]]]]],[[0,[],[[9,[-2]]]]]],[[[217,[-1,-2,-3]]],-1,94,4,[[87,[],[[9,[-2]]]]]],[[[221,[-1]]],-1,94],[[[229,[-1]]],-1,[]],[[[230,[-1]]],[[27,[-1]]],[94,79]],[[[231,[-1,-2]]],-1,[],[]],[[[232,[-1,-2]]],-1,[],[]],[[[218,[-1,-2,-3]]],-1,[],[],[]],[[[235,[-1]]],-1,94],[[[240,[-1]]],-1,94],[[[241,[-1,-2,-3]]],-1,94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[242,[-1]]],-1,94],[[[243,[-1,-2,-3]]],-1,94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[244,[-1,-2]]],-1,94,4],[[[245,[-1,-2,-3]]],-1,94,[],[[87,[],[[9,[-2]]]]]],[[[246,[-1,-2]]],[[2,[-1,-2]]],94,94],[[[195,[-1]]],-1,94],[[[247,[-1]]],-1,94],[[[248,[-1,-2,-4,-5]]],-1,94,[],[],[[4,[],[[9,[[27,[-3]]]]]]],[[87,[-2],[[9,[-4]]]]]],[[[191,[-1]]],-1,94],[[[192,[-1]]],-1,94],[[[219,[-1,-2,-3]]],-1,94,[94,79],[[87,[],[[9,[-2]]]]]],[[[193,[-1]]],-1,[94,88]],[[[187,[-1,-2,-3]]],-1,178,[[8,[],[[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[215,[-1,-2]]],-1,[],[]],[[[252,[-1,-2]]],-1,[],[]],[[[253,[-1,-2]]],-1,[],[]],[[[254,[-1]]],-1,[]],[[[255,[-1,-2]]],-1,[],[]],[[[256,[-1,-2]]],-1,[],[]],[[[257,[-1,-2,-3]]],-1,178,[[8,[],[[85,[]]]]],[[87,[],[[9,[-2]]]]]],[[[260,[-1,-2,-3]]],-1,178,[],[]],[[[261,[-1,-2,-3]]],-1,[],[],[]],[[[262,[-1]]],-1,178],[[[263,[-1]]],-1,178],[[[266,[-1]]],-1,178],[[[268,[-1]]],-1,178],[[[271,[-1,-2,-3]]],-1,178,[[8,[],[[85,[28]],[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[272,[-1,-2,-3]]],-1,178,[[8,[],[[85,[28]],[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[273,[-1]]],-1,178],[[[274,[-1]]],-1,178],[[[279,[-1,-2]]],[[2,[-1,-2]]],[],[]],[[[280,[-1,-2,-3,-4]]],[[2,[-1,-2]]],[],[],[],[]],[[202,-1],2,101],[[184,-2],[[231,[184,-2]]],[],[[87,[-1]]]],[[184,-2],[[231,[184,-2]]],[],[[87,[-1]]]],[[186,-2],[[253,[186,-2]]],[],[[87,[-1]]]],[[186,-2],[[253,[186,-2]]],[],[[87,[-1]]]],[[186,-2],[[252,[186,-2]]],[],[[87,[-1]]]],[[186,-2],[[252,[186,-2]]],[],[[87,[-1]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[186,[[206,[186]]]],[186,[[206,[186]]]],[184,[[230,[184]]]],[184,[[230,[184]]]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[-1,[],[]],[[[212,[-1]]],-1,94],[[[216,[-1,-2,-3]]],-1,94,[[4,[],[[9,[28]]]]],[[0,[],[[9,[-2]]]]]],[[[217,[-1,-2,-3]]],-1,94,4,[[87,[],[[9,[-2]]]]]],[[[221,[-1]]],-1,94],[[[229,[-1]]],-1,[]],[[[230,[-1]]],[[27,[-1]]],[94,79]],[[[231,[-1,-2]]],-1,[],[]],[[[232,[-1,-2]]],-1,[],[]],[[[218,[-1,-2,-3]]],-1,[],[],[]],[[[235,[-1]]],-1,94],[[[240,[-1]]],-1,94],[[[241,[-1,-2,-3]]],-1,94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[242,[-1]]],-1,94],[[[243,[-1,-2,-3]]],-1,94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[244,[-1,-2]]],-1,94,4],[[[245,[-1,-2,-3]]],-1,94,[],[[87,[],[[9,[-2]]]]]],[[[246,[-1,-2]]],[[2,[-1,-2]]],94,94],[[[195,[-1]]],-1,94],[[[247,[-1]]],-1,94],[[[248,[-1,-2,-4,-5]]],-1,94,[],[],[[4,[],[[9,[[27,[-3]]]]]]],[[87,[-2],[[9,[-4]]]]]],[[[191,[-1]]],-1,94],[[[192,[-1]]],-1,94],[[[219,[-1,-2,-3]]],-1,94,[94,79],[[87,[],[[9,[-2]]]]]],[[[193,[-1]]],-1,[94,88]],[[[187,[-1,-2,-3]]],-1,178,[[8,[],[[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[215,[-1,-2]]],-1,[],[]],[[[252,[-1,-2]]],-1,[],[]],[[[253,[-1,-2]]],-1,[],[]],[[[254,[-1]]],-1,[]],[[[255,[-1,-2]]],-1,[],[]],[[[256,[-1,-2]]],-1,[],[]],[[[257,[-1,-2,-3]]],-1,178,[[8,[],[[85,[]]]]],[[87,[],[[9,[-2]]]]]],[[[260,[-1,-2,-3]]],-1,178,[],[]],[[[261,[-1,-2,-3]]],-1,[],[],[]],[[[262,[-1]]],-1,178],[[[263,[-1]]],-1,178],[[[266,[-1]]],-1,178],[[[268,[-1]]],-1,178],[[[271,[-1,-2,-3]]],-1,178,[[8,[],[[85,[28]],[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[272,[-1,-2,-3]]],-1,178,[[8,[],[[85,[28]],[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[273,[-1]]],-1,178],[[[274,[-1]]],-1,178],[[[279,[-1,-2]]],[[2,[-1,-2]]],[],[]],[[[280,[-1,-2,-3,-4]]],[[2,[-1,-2]]],[],[],[],[]],[[[210,[-1]]],-2,79,[]],[[[210,[-1]]],-2,79,[]],[[[210,[-1]]],-2,79,[]],[[[211,[-1]]],-2,[94,79],[]],[[[211,[-1]]],-2,[94,79],[]],[[[211,[-1]]],-2,[94,79],[]],[186,[[254,[186]]]],[186,[[254,[186]]]],[[[229,[-1]]],28,[]],[[[209,[-1]]],28,4],[[[250,[-1]],[251,[-1,-2]]],28,[],[]],[[[251,[-1,-2]],[250,[-1]]],28,[],[]],[[[244,[-1,-2]]],28,94,4],[84,28],[[[209,[-1]]],28,4],[[[210,[-1]]],28,4],[[[211,[-1]]],28,[94,79]],[[[194,[-1,-2]]],28,94,[[84,[],[[77,[]]]]]],[[[203,[-1,-2]]],28,84,[126,204]],[[[225,[-3,-4,-5]]],28,[],[],[[84,[],[[77,[[2,[-1,-2]]]]]]],[126,[204,[-1]]],[126,[204,[-2]]]],[[[205,[-1]]],28,84],[[[207,[-1]]],28,84],[[[208,[-1]]],28,[21,94]],[[[212,[-1]]],28,[94,84]],[[[216,[-1,-2,-3]]],28,[94,84],[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[217,[-1,-3,-4]]],28,[94,84],[],[[4,[],[[9,[[27,[-2]]]]]]],[[0,[],[[9,[-3]]]]]],[[[221,[-1]]],28,94],[[[226,[-1,-3,-2,-4]]],28,94,[],[[4,[],[[9,[-2]]]]],[[87,[-2],[[9,[-3]]]]]],[[[188,[-1,-2,-3]]],28,94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[185,[-1,-2,-3]]],28,94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[227,[-1,-2]]],28,178,[]],[[[228,[-1,-2,-3]]],28,84,[[4,[],[[9,[2]]]]],[[87,[],[[9,[-2]]]]]],[[[229,[-1]]],28,94],[[[230,[-1]]],28,[94,79]],[[[231,[-1,-2]]],28,[],[]],[[[232,[-1,-2]]],28,84,0],[[[218,[-1,-2,-3]]],28,[],[],[]],[[[233,[-1]]],28,[123,84,79]],[[[234,[-1]]],28,[123,84,79]],[[[235,[-1]]],28,94],[[[236,[-1]]],28,94],[[[237,[-1]]],28,94],[[[238,[-1,-2]]],28,94,[[0,[],[[9,[28]]]]]],[[[239,[-1,-2]]],28,94,123],[[[240,[-1]]],28,84],[[[241,[-1,-2,-3]]],28,84,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[242,[-1]]],28,84],[[[243,[-1,-2,-3]]],28,84,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[244,[-1,-2]]],28,94,4],[[[245,[-1,-2,-3]]],28,84,4,[[87,[],[[9,[-2]]]]]],[[[246,[-1,-2]]],28,94,94],[[[195,[-1]]],28,84],[[[247,[-1]]],28,94],[[[248,[-1,-2,-4,-5]]],28,84,[],[],[[4,[],[[9,[[27,[-3]]]]]]],[[87,[-2],[[9,[-4]]]]]],[[[191,[-1]]],28,94],[[[192,[-1]]],28,94],[[[219,[-1,-2,-3]]],28,94,[94,79],[[87,[],[[9,[-2]]]]]],[[[249,[-1,-2,-3]]],28,94,[[4,[],[[9,[2]]]]],[[87,[],[[9,[-2]]]]]],[[[193,[-1]]],28,[84,88]],[[[187,[-1,-2,-3]]],28,[178,84],[[8,[],[[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[215,[-1,-2]]],28,[],[]],[[[252,[-1,-2]]],28,[],[]],[[[253,[-1,-2]]],28,[],[]],[[[254,[-1]]],28,[178,84]],[[[255,[-1,-2]]],28,[],[]],[[[256,[-1,-2]]],28,[],[]],[[[257,[-1,-2,-3]]],28,[178,84],[[8,[],[[85,[]]]]],[[87,[],[[9,[-2]]]]]],[[[258,[-1]]],28,[123,178,79,84]],[[[260,[-1,-2,-3]]],28,[178,84],[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[261,[-1,-3,-4]]],28,[178,84],[],[[8,[],[[85,[[27,[-2]]]],[7,[]]]]],[[87,[],[[9,[-3]]]]]],[[[262,[-1]]],28,[178,84]],[[[263,[-1]]],28,178],[[[264,[-1,-2]]],28,[178,84],[126,204]],[[[266,[-1]]],28,[178,84]],[[[268,[-1]]],28,[178,84]],[[[269,[-1,-3,-2,-4]]],28,178,[],[[8,[],[[85,[-2]],[7,[]]]]],[[87,[-2],[[9,[-3]]]]]],[[[271,[-1,-2,-3]]],28,[178,84],[[8,[],[[85,[28]],[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[272,[-1,-2,-3]]],28,[178,84],[[8,[],[[85,[28]],[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[275,[-1,-2,-3]]],28,178,[[4,[],[[9,[[29,[2]]]]]]],[[87,[],[[9,[-2]]]]]],[[[276,[-1,-2,-3]]],28,178,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[277,[-1,-2,-3]]],28,178,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[197,[-1]]],28,21],[[[198,[-2]]],28,[],[[87,[],[[9,[-1]]]]]],[[[199,[-1]]],28,[]],[[[278,[-1]]],28,4],[[[200,[-1]]],28,[]],[[[201,[-1]]],28,94],[[[279,[-1,-2]]],28,94,[[94,[],[[77,[]]]]]],[[[280,[-1,-2,-4,-3]]],28,94,[[94,[],[[77,[]]]]],[],[[87,[-3],[[9,[202]]]]]],[[[281,[-1,-4,-3]]],28,[],[],[[4,[],[[9,[[27,[[2,[-2,-1]]]]]]]]],[[87,[-1],[[9,[-3]]]]]],[-1,196,78],[184,[[11,[184,-2]]],[],[[94,[],[[77,[-1]]]]]],[184,[[11,[184,-2]]],[],[[94,[],[[77,[-1]]]]]],[[[209,[-1]]],25,4],[[184,-3],[[232,[184,-3]]],[],[],[[87,[-1],[[9,[-2]]]]]],[[184,-3],[[232,[184,-3]]],[],[],[[87,[-1],[[9,[-2]]]]]],[[186,-3],[[256,[186,-3]]],[],[],[[87,[-1],[[9,[-2]]]]]],[[186,-3],[[256,[186,-3]]],[],[],[[87,[-1],[[9,[-2]]]]]],[[186,-3],[[255,[186,-3]]],[],[],[[87,[-1],[[9,[-2]]]]]],[[186,-3],[[255,[186,-3]]],[],[],[[87,[-1],[[9,[-2]]]]]],[[],[[209,[-1]]],4],[184,[[233,[184]]]],[184,[[233,[184]]]],[[[12,[[235,[-1]]]],-2],[[238,[-1,-2]]],94,[[10,[],[[9,[28]]]]]],[[[12,[[235,[-1]]]],-2],[[239,[-1,-2]]],94,123],[-1,[[278,[-1]]],4],[[186,-4],[[257,[186,-3,-4]]],[],[],[[8,[],[[85,[-2]]]]],[[87,[-1],[[9,[-3]]]]]],[[186,-4],[[257,[186,-3,-4]]],[],[],[[8,[],[[85,[-2]]]]],[[87,[-1],[[9,[-3]]]]]],[[[12,[[235,[-1]]]]],[[236,[-1]]],94],[[[12,[[235,[-1]]]]],[[237,[-1]]],94],[184,[[235,[184]]]],[184,[[235,[184]]]],[[],[[200,[-1]]],[]],[[[12,[[203,[-1,-2]]]],83],[[86,[-2]]],94,[126,204]],[[[12,[[225,[-3,-4,-5]]]],83],[[86,[[2,[-4,-5]]]]],[],[],[[94,[],[[77,[[2,[-1,-2]]]]]]],[126,[204,[-1]]],[126,[204,[-2]]]],[[[12,[[205,[-1]]]],83],[[86,[-2]]],94,[]],[[[12,[[207,[-1]]]],83],[[86,[-2]]],94,[]],[[[12,[[226,[-1,-3,-2,-4]]]],83],[[86,[-2]]],94,[],[[4,[],[[9,[-2]]]]],[[87,[-2],[[9,[-3]]]]]],[[[12,[[188,[-1,-2,-3]]]],83],[[86,[28]]],94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[12,[[185,[-1,-2,-3]]]],83],[[86,[28]]],94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[12,[[227,[-1,-2]]]],83],[[86,[-3]]],178,[],[]],[[[12,[[228,[-1,-2,-3]]]],83],[[86,[2]]],94,[[4,[],[[9,[2]]]]],[[87,[],[[9,[-2]]]]]],[[[12,[[230,[-1]]]],83],[[86,[-2]]],[94,79],[]],[[[12,[[233,[-1]]]],83],[[86,[-2]]],[123,94,79],[]],[[[12,[[234,[-1]]]],83],[[86,[-2]]],[123,84,79],[]],[[[12,[[236,[-1]]]],83],[[86,[-2]]],94,[]],[[[12,[[237,[-1]]]],83],[[86,[-2]]],94,[]],[[[12,[[238,[-1,-2]]]],83],[[86,[-3]]],94,[[0,[],[[9,[28]]]]],[]],[[[12,[[239,[-1,-2]]]],83],[[86,[-3]]],94,123,[]],[[[12,[[249,[-1,-2,-3]]]],83],[[86,[2]]],94,[[4,[],[[9,[2]]]]],[[87,[],[[9,[-2]]]]]],[[[12,[[258,[-1]]]],83],[[86,[-2]]],[123,178,79],[]],[[[12,[[259,[-1,-2,-3]]]],83],[[86,[-4]]],178,[[8,[],[[85,[2]],[7,[]]]]],[[87,[],[[9,[-2]]]]],[]],[[[12,[[264,[-1,-2]]]],83],[[86,[-3]]],178,[126,204],[]],[[[12,[[265,[-1]]]],83],[[86,[-2]]],178,[]],[[[12,[[269,[-1,-3,-2,-4]]]],83],[[86,[-5]]],178,[],[[8,[],[[85,[-2]],[7,[]]]]],[[87,[-2],[[9,[-3]]]]],[]],[[[12,[[275,[-1,-2,-3]]]],83],[[86,[-4]]],178,[[4,[],[[9,[[29,[2]]]]]]],[[87,[],[[9,[-2]]]]],[]],[[[12,[[276,[-1,-2,-3]]]],83],[[86,[[29,[28]]]]],178,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[12,[[277,[-1,-2,-3]]]],83],[[86,[[29,[28]]]]],178,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[12,[[212,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[216,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[94,[91,[-1]]],[[4,[],[[9,[28]]]]],[[87,[],[[9,[-3]]]]],[]],[[[12,[[217,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[94,[91,[-1]]],4,[[0,[],[[9,[-3]]]]],[]],[[[12,[[221,[-1]]]],83],[[86,[[29,[2,-2]]]]],94,[]],[[[12,[[229,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[231,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[232,[-2,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[94,[91,[-1]]],0,[]],[[[12,[[218,[-1,-2,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[],[],[]],[[[12,[[235,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[[91,[-1]],94],[]],[[[12,[[240,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[241,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[94,[91,[-1]]],[[4,[],[[9,[28]]]]],[[87,[],[[9,[-3]]]]],[]],[[[12,[[242,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[243,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[94,[91,[-1]]],[],[],[]],[[[12,[[244,[-2,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[94,[91,[-1]]],4,[]],[[[12,[[245,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[],[]],[[[12,[[195,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[247,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[248,[-2,-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[94,[91,[-1]]],[],[],[],[]],[[[12,[[191,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[192,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[219,[-1,-2,-3]]]],83],[[86,[[29,[2,-4]]]]],94,[94,79],[[87,[],[[9,[-2]]]]],[]],[[[12,[[251,[-2,-1]]]],83],[[86,[[29,[2]]]]],[],[[91,[-1]]]],[[[12,[[187,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[],[]],[[[12,[[215,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[252,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[253,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[254,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[[91,[-1]]],[]],[[[12,[[255,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[256,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[257,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[],[]],[[[12,[[260,[-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[],[],[]],[[[12,[[261,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[],[]],[[[12,[[262,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[178,[91,[-1]]],[]],[[[12,[[263,[-1]]]],83],[[86,[[29,[2,-2]]]]],178,[]],[[[12,[[266,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[178,[91,[-1]]],[]],[[[12,[[268,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[178,[91,[-1]]],[]],[[[12,[[271,[-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[],[],[]],[[[12,[[272,[-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[],[],[]],[[[12,[[273,[-3]]]],83],[[86,[[29,[2,-4]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[]],[[[12,[[274,[-3]]]],83],[[86,[[29,[2,-4]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[]],[[[12,[[206,[-1]]]],83],[[86,[[89,[2]]]]],[[178,[],[[7,[152]]]],90]],[[[12,[[206,[-1]]]],83],[[86,[[89,[[93,[92]]]]]]],[[178,[],[[7,[152]]]]]],[[[12,[[212,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[216,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[94,[91,[-1]]],[[4,[],[[9,[28]]]]],[[87,[],[[9,[-3]]]]],[]],[[[12,[[217,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[94,[91,[-1]]],4,[[0,[],[[9,[-3]]]]],[]],[[[12,[[221,[-1]]]],83],[[86,[[29,[2,-2]]]]],94,[]],[[[12,[[229,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[231,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[232,[-2,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[94,[91,[-1]]],0,[]],[[[12,[[218,[-1,-2,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[],[],[]],[[[12,[[235,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[[91,[-1]],94],[]],[[[12,[[240,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[241,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[94,[91,[-1]]],[[4,[],[[9,[28]]]]],[[87,[],[[9,[-3]]]]],[]],[[[12,[[242,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[243,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[94,[91,[-1]]],[],[],[]],[[[12,[[244,[-2,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[94,[91,[-1]]],4,[]],[[[12,[[245,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[],[]],[[[12,[[195,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[247,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[248,[-2,-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[94,[91,[-1]]],[],[],[],[]],[[[12,[[191,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[192,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[219,[-1,-2,-3]]]],83],[[86,[[29,[2,-4]]]]],94,[94,79],[[87,[],[[9,[-2]]]]],[]],[[[12,[[251,[-2,-1]]]],83],[[86,[[29,[2]]]]],[],[[91,[-1]]]],[[[12,[[187,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[],[]],[[[12,[[215,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[252,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[253,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[254,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[[91,[-1]]],[]],[[[12,[[255,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[256,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[257,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[],[]],[[[12,[[260,[-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[],[],[]],[[[12,[[261,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[],[]],[[[12,[[262,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[178,[91,[-1]]],[]],[[[12,[[263,[-1]]]],83],[[86,[[29,[2,-2]]]]],178,[]],[[[12,[[266,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[178,[91,[-1]]],[]],[[[12,[[268,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[178,[91,[-1]]],[]],[[[12,[[271,[-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[],[],[]],[[[12,[[272,[-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[],[],[]],[[[12,[[273,[-3]]]],83],[[86,[[29,[2,-4]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[]],[[[12,[[274,[-3]]]],83],[[86,[[29,[2,-4]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[]],[[[12,[[206,[-1]]]],83],[[86,[[89,[2]]]]],[[178,[],[[7,[152]]]],90]],[-2,[[224,[-2]]],[],[[87,[83],[[9,[[86,[[27,[-1]]]]]]]]]],[-1,[[201,[-1]]],94],[[[12,[[94,[],[[77,[-1]]]]]],83],[[86,[[27,[-1]]]]],[]],[[[12,[[224,[-2]]]],83],[[86,[[27,[-1]]]]],[],[[87,[83],[[9,[[86,[[27,[-1]]]]]]]]]],[[[12,[[209,[-1]]]],83],[[86,[[27,[-2]]]]],4,[]],[[[12,[[210,[-1]]]],83],[[86,[[27,[-2]]]]],4,[]],[[[12,[[211,[-1]]]],83],[[86,[[27,[-2]]]]],[94,79],[]],[[[12,[[194,[-1,-2]]]],83],[[86,[[27,[-3]]]]],94,[[94,[],[[77,[]]]]],[]],[[[12,[[208,[-1]]]],83],[[86,[[27,[-2]]]]],[21,94],[]],[[[12,[[212,[-1]]]],83],[[86,[[27,[-2]]]]],94,[]],[[[12,[[216,[-1,-2,-3]]]],83],[[86,[27]]],94,[[4,[],[[9,[28]]]]],[[0,[],[[9,[-2]]]]]],[[[12,[[217,[-1,-3,-4]]]],83],[[86,[[27,[-2]]]]],94,[],[[4,[],[[9,[[27,[-2]]]]]]],[[0,[],[[9,[-3]]]]]],[[[12,[[221,[-1]]]],83],[[86,[[27,[-2]]]]],94,[]],[[[12,[[229,[-1]]]],83],[[86,[27]]],94],[[[12,[[231,[-1,-2]]]],83],[[86,[[27,[-3]]]]],[],[],[]],[[[12,[[232,[-1,-2]]]],83],[[86,[[27,[-3]]]]],94,0,[]],[[[12,[[218,[-1,-2,-3]]]],83],[[86,[[27,[-4]]]]],[],[],[],[]],[[[12,[[235,[-1]]]],83],[[86,[[27,[-2]]]]],94,[]],[[[12,[[240,[-1]]]],83],[[86,[27]]],94],[[[12,[[241,[-1,-2,-3]]]],83],[[86,[27]]],94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[12,[[242,[-1]]]],83],[[86,[27]]],94],[[[12,[[243,[-1,-2,-3]]]],83],[[86,[27]]],94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[12,[[244,[-1,-2]]]],83],[[86,[27]]],94,4],[[[12,[[245,[-1,-2,-3]]]],83],[[86,[[27,[-4]]]]],94,4,[[87,[],[[9,[-2]]]]],[]],[[[12,[[246,[-1,-2]]]],83],[[86,[[27,[-3]]]]],94,94,[]],[[[12,[[195,[-1]]]],83],[[86,[[27,[-2]]]]],94,[]],[[[12,[[247,[-1]]]],83],[[86,[[27,[-2]]]]],94,[]],[[[12,[[248,[-1,-2,-4,-5]]]],83],[[86,[[27,[-3]]]]],94,[],[],[[4,[],[[9,[[27,[-3]]]]]]],[[87,[-2],[[9,[-4]]]]]],[[[12,[[191,[-1]]]],83],[[86,[[27,[-2]]]]],94,[]],[[[12,[[192,[-1]]]],83],[[86,[[27,[-2]]]]],94,[]],[[[12,[[219,[-1,-2,-3]]]],83],[[86,[[27,[-4]]]]],94,[94,79],[[87,[],[[9,[-2]]]]],[]],[[[12,[[250,[-1]]]],83],[[86,[27]]],94],[[[12,[[193,[-1]]]],83],[[86,[[27,[-2]]]]],[94,88],[]],[[[12,[[187,[-1,-2,-3]]]],83],[[86,[[27,[-4]]]]],178,[[8,[],[[7,[]]]]],[[87,[],[[9,[-2]]]]],[]],[[[12,[[215,[-1,-2]]]],83],[[86,[[27,[-3]]]]],[],[],[]],[[[12,[[252,[-1,-2]]]],83],[[86,[[27,[-3]]]]],[],[],[]],[[[12,[[253,[-1,-2]]]],83],[[86,[[27,[-3]]]]],[],[],[]],[[[12,[[254,[-1]]]],83],[[86,[[27,[-2]]]]],178,[]],[[[12,[[255,[-1,-2]]]],83],[[86,[[27,[-3]]]]],[],[],[]],[[[12,[[256,[-1,-2]]]],83],[[86,[[27,[-3]]]]],[],[],[]],[[[12,[[257,[-1,-2,-3]]]],83],[[86,[[27,[-4]]]]],178,[[8,[],[[85,[]]]]],[[87,[],[[9,[-2]]]]],[]],[[[12,[[260,[-1,-2,-3]]]],83],[[86,[[27,[-4]]]]],178,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]],[]],[[[12,[[261,[-1,-3,-4]]]],83],[[86,[[27,[-5]]]]],178,[],[[8,[],[[85,[[27,[-2]]]],[7,[]]]]],[[87,[],[[9,[-3]]]]],[]],[[[12,[[262,[-1]]]],83],[[86,[[27,[-2]]]]],178,[]],[[[12,[[263,[-1]]]],83],[[86,[[27,[-2]]]]],178,[]],[[[12,[[266,[-1]]]],83],[[86,[[27,[-2]]]]],178,[]],[[[12,[[268,[-1]]]],83],[[86,[[27,[-2]]]]],178,[]],[[[12,[[270,[-1,-3,-2]]]],83],[[86,[[27,[-5]]]]],[],[[8,[],[[85,[[27,[2]]]]]]],[[87,[-1],[[9,[-2]]]]],[],[]],[[[12,[[271,[-1,-2,-3]]]],83],[[86,[[27,[-4]]]]],178,[[8,[],[[85,[28]],[7,[]]]]],[[87,[],[[9,[-2]]]]],[]],[[[12,[[272,[-1,-2,-3]]]],83],[[86,[[27,[-4]]]]],178,[[8,[],[[85,[28]],[7,[]]]]],[[87,[],[[9,[-2]]]]],[]],[[[12,[[273,[-1]]]],83],[[86,[[27,[-2]]]]],178,[]],[[[12,[[274,[-1]]]],83],[[86,[[27,[-2]]]]],178,[]],[[[12,[[196,[-1]]]],83],[[86,[27]]],282],[[[12,[[197,[-1]]]],83],[[86,[[27,[-2]]]]],21,[]],[[[12,[[198,[-2]]]],83],[[86,[[27,[-3]]]]],[],[[87,[],[[9,[-1]]]]],[]],[[[12,[[199,[-1]]]],83],[[86,[[27,[-2]]]]],[],[]],[[[12,[[278,[-1]]]],83],[[86,[[27,[-2]]]]],4,[]],[[[12,[[200,[-1]]]],83],[[86,[[27,[-2]]]]],[],[]],[[[12,[[201,[-2]]]],83],[[86,[[27,[-3]]]]],[],[[94,[],[[77,[-1]]]]],[]],[[[12,[[279,[-1,-2]]]],83],[[86,[27]]],94,[[94,[],[[77,[]]]]]],[[[12,[[280,[-1,-2,-4,-3]]]],83],[[86,[27]]],94,[[94,[],[[77,[]]]]],[],[[87,[-3],[[9,[202]]]]]],[[[12,[[281,[-1,-3,-2]]]],83],[[86,[[27,[-5]]]]],[],[[4,[],[[9,[[27,[2]]]]]]],[[87,[-1],[[9,[-2]]]]],[],[]],[[184,83],[[86,[[27,[-1]]]]],[]],[[184,83],[[86,[[27,[-1]]]]],[]],[[[12,[[235,[-1]]]],83],[[86,[27]]],94],[[[12,[[235,[-1]]]],83],[[86,[27]]],94],[[[12,[[206,[-1]]]],83,[93,[92]]],[[86,[[89,[25]]]]],[[178,[],[[7,[152]]]]]],[[[12,[[212,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[216,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[94,[91,[-1]]],[[4,[],[[9,[28]]]]],[[87,[],[[9,[-3]]]]],[]],[[[12,[[217,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[94,[91,[-1]]],4,[[0,[],[[9,[-3]]]]],[]],[[[12,[[221,[-1]]]],83],[[86,[[29,[2,-2]]]]],94,[]],[[[12,[[229,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[231,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[232,[-2,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[94,[91,[-1]]],0,[]],[[[12,[[218,[-1,-2,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[],[],[]],[[[12,[[235,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[[91,[-1]],94],[]],[[[12,[[240,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[241,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[94,[91,[-1]]],[[4,[],[[9,[28]]]]],[[87,[],[[9,[-3]]]]],[]],[[[12,[[242,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[243,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[94,[91,[-1]]],[],[],[]],[[[12,[[244,[-2,-3]]]],83],[[86,[[29,[2,-4]]]]],[],[94,[91,[-1]]],4,[]],[[[12,[[245,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[],[]],[[[12,[[195,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[247,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[248,[-2,-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[94,[91,[-1]]],[],[],[],[]],[[[12,[[191,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[192,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[94,[91,[-1]]],[]],[[[12,[[219,[-1,-2,-3]]]],83],[[86,[[29,[2,-4]]]]],94,[94,79],[[87,[],[[9,[-2]]]]],[]],[[[12,[[251,[-2,-1]]]],83],[[86,[[29,[2]]]]],[],[[91,[-1]]]],[[[12,[[187,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[],[]],[[[12,[[215,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[252,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[253,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[254,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[[91,[-1]]],[]],[[[12,[[255,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[256,[-1,-2]]]],83],[[86,[[29,[2,-3]]]]],[],[],[]],[[[12,[[257,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[],[]],[[[12,[[260,[-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[],[],[]],[[[12,[[261,[-2,-3,-4]]]],83],[[86,[[29,[2,-5]]]]],[],[[91,[-1]]],[],[],[]],[[[12,[[262,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[178,[91,[-1]]],[]],[[[12,[[263,[-1]]]],83],[[86,[[29,[2,-2]]]]],178,[]],[[[12,[[266,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[178,[91,[-1]]],[]],[[[12,[[268,[-2]]]],83],[[86,[[29,[2,-3]]]]],[],[178,[91,[-1]]],[]],[[[12,[[271,[-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[],[],[]],[[[12,[[272,[-3,-4,-5]]]],83],[[86,[[29,[2,-6]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[],[],[]],[[[12,[[273,[-3]]]],83],[[86,[[29,[2,-4]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[]],[[[12,[[274,[-3]]]],83],[[86,[[29,[2,-4]]]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[]],[[[12,[[206,[-1]]]],83,[93,[92]]],[[86,[[89,[25]]]]],[[178,[],[[7,[152]]]],90]],[[[209,[-1]],-1],2,4],[[[209,[-1]],-1],2,4],[[[209,[-1]],-1],2,4],[[184,25],[[247,[184]]]],[[184,25],[[247,[184]]]],[-1,[[197,[-1]]],21],[-2,[[198,[-2]]],[],[[87,[],[[9,[-1]]]]]],[[[250,[-2]],[251,[-2,-1]]],[[29,[-2,[223,[-2,-1]]]]],[],[[91,[-1]],79]],[[[251,[-2,-1]],[250,[-2]]],[[29,[-2,[223,[-2,-1]]]]],[],[[91,[-1]],79]],[184,[[11,[-2,184]]],[],[[94,[],[[77,[-1]]]]]],[184,[[11,[-2,184]]],[],[[94,[],[[77,[-1]]]]]],[[184,-1,-5],[[248,[184,-1,-4,-5]]],[],[],[],[[4,[],[[9,[[27,[-3]]]]]]],[[87,[-1,-2],[[9,[-4]]]]]],[[184,-1,-5],[[248,[184,-1,-4,-5]]],[],[],[],[[4,[],[[9,[[27,[-3]]]]]]],[[87,[-1,-2],[[9,[-4]]]]]],[[-1,-2],[[279,[-1,-2]]],94,[[94,[],[[77,[]]]]]],0,[-1,211,78],[184,[[234,[184]]]],[184,[[234,[184]]]],[[-1,-2,-4],[[280,[-1,-2,-4,-3]]],94,[[94,[],[[77,[]]]]],126,[[87,[-3],[[9,[202]]]]]],[[[94,[],[[77,[-1]]]]],[[2,[25,[27,[25]]]]],[]],[[[209,[-1]]],[[2,[25,[27,[25]]]]],4],[[[210,[-1]]],[[2,[25,[27,[25]]]]],4],[[[194,[-1,-2]]],[[2,[25,[27,[25]]]]],94,[[94,[],[[77,[]]]]]],[[[208,[-1]]],[[2,[25,[27,[25]]]]],[21,94]],[[[212,[-1]]],[[2,[25,[27,[25]]]]],94],[[[216,[-1,-2,-3]]],[[2,[25,[27,[25]]]]],94,[[4,[],[[9,[28]]]]],[[0,[],[[9,[-2]]]]]],[[[217,[-1,-3,-4]]],[[2,[25,[27,[25]]]]],94,[],[[4,[],[[9,[[27,[-2]]]]]]],[[0,[],[[9,[-3]]]]]],[[[221,[-1]]],[[2,[25,[27,[25]]]]],94],[[[229,[-1]]],[[2,[25,[27,[25]]]]],94],[[[231,[-1,-2]]],[[2,[25,[27,[25]]]]],[],[]],[[[232,[-1,-2]]],[[2,[25,[27,[25]]]]],94,0],[[[218,[-1,-2,-3]]],[[2,[25,[27,[25]]]]],[],[],[]],[[[235,[-1]]],[[2,[25,[27,[25]]]]],94],[[[240,[-1]]],[[2,[25,[27,[25]]]]],94],[[[241,[-1,-2,-3]]],[[2,[25,[27,[25]]]]],94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[242,[-1]]],[[2,[25,[27,[25]]]]],94],[[[243,[-1,-2,-3]]],[[2,[25,[27,[25]]]]],94,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[244,[-1,-2]]],[[2,[25,[27,[25]]]]],94,4],[[[245,[-1,-2,-3]]],[[2,[25,[27,[25]]]]],94,4,[[87,[],[[9,[-2]]]]]],[[[246,[-1,-2]]],[[2,[25,[27,[25]]]]],94,94],[[[195,[-1]]],[[2,[25,[27,[25]]]]],94],[[[247,[-1]]],[[2,[25,[27,[25]]]]],94],[[[248,[-1,-2,-4,-5]]],[[2,[25,[27,[25]]]]],94,[],[],[[4,[],[[9,[[27,[-3]]]]]]],[[87,[-2],[[9,[-4]]]]]],[[[191,[-1]]],[[2,[25,[27,[25]]]]],94],[[[192,[-1]]],[[2,[25,[27,[25]]]]],94],[[[219,[-1,-2,-3]]],[[2,[25,[27,[25]]]]],94,[94,79],[[87,[],[[9,[-2]]]]]],[[[193,[-1]]],[[2,[25,[27,[25]]]]],[94,88]],[[[187,[-1,-2,-3]]],[[2,[25,[27,[25]]]]],178,[[8,[],[[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[215,[-1,-2]]],[[2,[25,[27,[25]]]]],[],[]],[[[252,[-1,-2]]],[[2,[25,[27,[25]]]]],[],[]],[[[253,[-1,-2]]],[[2,[25,[27,[25]]]]],[],[]],[[[254,[-1]]],[[2,[25,[27,[25]]]]],178],[[[255,[-1,-2]]],[[2,[25,[27,[25]]]]],[],[]],[[[256,[-1,-2]]],[[2,[25,[27,[25]]]]],[],[]],[[[257,[-1,-2,-3]]],[[2,[25,[27,[25]]]]],178,[[8,[],[[85,[]]]]],[[87,[],[[9,[-2]]]]]],[[[260,[-1,-2,-3]]],[[2,[25,[27,[25]]]]],178,[[4,[],[[9,[28]]]]],[[87,[],[[9,[-2]]]]]],[[[261,[-1,-3,-4]]],[[2,[25,[27,[25]]]]],178,[],[[8,[],[[85,[[27,[-2]]]],[7,[]]]]],[[87,[],[[9,[-3]]]]]],[[[263,[-1]]],[[2,[25,[27,[25]]]]],178],[[[266,[-1]]],[[2,[25,[27,[25]]]]],178],[[[268,[-1]]],[[2,[25,[27,[25]]]]],178],[[[271,[-1,-2,-3]]],[[2,[25,[27,[25]]]]],178,[[8,[],[[85,[28]],[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[272,[-1,-2,-3]]],[[2,[25,[27,[25]]]]],178,[[8,[],[[85,[28]],[7,[]]]]],[[87,[],[[9,[-2]]]]]],[[[196,[-1]]],[[2,[25,[27,[25]]]]],282],[[[197,[-1]]],[[2,[25,[27,[25]]]]],21],[[[198,[-2]]],[[2,[25,[27,[25]]]]],[],[[87,[],[[9,[-1]]]]]],[[[199,[-1]]],[[2,[25,[27,[25]]]]],[]],[[[278,[-1]]],[[2,[25,[27,[25]]]]],4],[[[200,[-1]]],[[2,[25,[27,[25]]]]],[]],[[[201,[-2]]],[[2,[25,[27,[25]]]]],[],[[94,[],[[77,[-1]]]]]],[[184,25],[[240,[184]]]],[[184,25],[[240,[184]]]],[[184,-3],[[241,[184,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[184,-3],[[241,[184,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[[210,[[283,[2]]]],[283,[2]]],[[29,[2,284]]]],[[[210,[[285,[2]]]],[285,[2]]],[[29,[2,284]]]],[184,[[2,[[251,[184,-1]],[250,[184]]]]],[]],[184,[[2,[[251,[184,-1]],[250,[184]]]]],[]],[[[12,[[212,[-2]]]],-1],[[29,[2,-3]]],[],[94,[91,[-1]]],[]],[[[12,[[216,[-2,-3,-4]]]],-1],[[29,[2,-5]]],[],[94,[91,[-1]]],[[4,[],[[9,[28]]]]],[[87,[],[[9,[-3]]]]],[]],[[[12,[[217,[-2,-3,-4]]]],-1],[[29,[2,-5]]],[],[94,[91,[-1]]],4,[[0,[],[[9,[-3]]]]],[]],[[[12,[[221,[-1]]]],-2],[[29,[2,-3]]],94,[],[]],[[[12,[[229,[-2]]]],-1],[[29,[2,-3]]],[],[94,[91,[-1]]],[]],[[[12,[[231,[-1,-2]]]],-3],[[29,[2,-4]]],[],[],[],[]],[[[12,[[232,[-2,-3]]]],-1],[[29,[2,-4]]],[],[94,[91,[-1]]],0,[]],[[[12,[[218,[-1,-2,-3]]]],-4],[[29,[2,-5]]],[],[],[],[],[]],[[[12,[[235,[-2]]]],-1],[[29,[2,-3]]],[],[[91,[-1]],94],[]],[[[12,[[240,[-2]]]],-1],[[29,[2,-3]]],[],[94,[91,[-1]]],[]],[[[12,[[241,[-2,-3,-4]]]],-1],[[29,[2,-5]]],[],[94,[91,[-1]]],[[4,[],[[9,[28]]]]],[[87,[],[[9,[-3]]]]],[]],[[[12,[[242,[-2]]]],-1],[[29,[2,-3]]],[],[94,[91,[-1]]],[]],[[[12,[[243,[-2,-3,-4]]]],-1],[[29,[2,-5]]],[],[94,[91,[-1]]],[],[],[]],[[[12,[[244,[-2,-3]]]],-1],[[29,[2,-4]]],[],[94,[91,[-1]]],4,[]],[[[12,[[245,[-2,-3,-4]]]],-1],[[29,[2,-5]]],[],[[91,[-1]]],[],[],[]],[[[12,[[195,[-2]]]],-1],[[29,[2,-3]]],[],[94,[91,[-1]]],[]],[[[12,[[247,[-2]]]],-1],[[29,[2,-3]]],[],[94,[91,[-1]]],[]],[[[12,[[248,[-2,-3,-4,-5]]]],-1],[[29,[2,-6]]],[],[94,[91,[-1]]],[],[],[],[]],[[[12,[[191,[-2]]]],-1],[[29,[2,-3]]],[],[94,[91,[-1]]],[]],[[[12,[[192,[-2]]]],-1],[[29,[2,-3]]],[],[94,[91,[-1]]],[]],[[[12,[[219,[-1,-2,-3]]]],-4],[[29,[2,-5]]],94,[94,79],[[87,[],[[9,[-2]]]]],[],[]],[[[12,[[251,[-2,-1]]]],-1],[[29,[2]]],[],[[91,[-1]]]],[[[12,[[187,[-2,-3,-4]]]],-1],[[29,[2,-5]]],[],[[91,[-1]]],[],[],[]],[[[12,[[215,[-1,-2]]]],-3],[[29,[2,-4]]],[],[],[],[]],[[[12,[[252,[-1,-2]]]],-3],[[29,[2,-4]]],[],[],[],[]],[[[12,[[253,[-1,-2]]]],-3],[[29,[2,-4]]],[],[],[],[]],[[[12,[[254,[-2]]]],-1],[[29,[2,-3]]],[],[[91,[-1]]],[]],[[[12,[[255,[-1,-2]]]],-3],[[29,[2,-4]]],[],[],[],[]],[[[12,[[256,[-1,-2]]]],-3],[[29,[2,-4]]],[],[],[],[]],[[[12,[[257,[-2,-3,-4]]]],-1],[[29,[2,-5]]],[],[[91,[-1]]],[],[],[]],[[[12,[[260,[-3,-4,-5]]]],-1],[[29,[2,-6]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[],[],[]],[[[12,[[261,[-2,-3,-4]]]],-1],[[29,[2,-5]]],[],[[91,[-1]]],[],[],[]],[[[12,[[262,[-2]]]],-1],[[29,[2,-3]]],[],[178,[91,[-1]]],[]],[[[12,[[263,[-1]]]],-2],[[29,[2,-3]]],178,[],[]],[[[12,[[266,[-2]]]],-1],[[29,[2,-3]]],[],[178,[91,[-1]]],[]],[[[12,[[268,[-2]]]],-1],[[29,[2,-3]]],[],[178,[91,[-1]]],[]],[[[12,[[271,[-3,-4,-5]]]],-1],[[29,[2,-6]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[],[],[]],[[[12,[[272,[-3,-4,-5]]]],-1],[[29,[2,-6]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[],[],[]],[[[12,[[273,[-3]]]],-1],[[29,[2,-4]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[]],[[[12,[[274,[-3]]]],-1],[[29,[2,-4]]],[],[],[178,[91,[-1],[[7,[-2]]]]],[]],[[184,25],[[242,[184]]]],[[184,25],[[242,[184]]]],[[[244,[-1,-2]]],[[27,[-2]]],94,4],[[[244,[-1,-2]]],27,94,4],[[184,-1],[[244,[184,-1]]],4],[[184,-1],[[244,[184,-1]]],4],[[184,-3],[[243,[184,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[184,-3],[[243,[184,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[184,-3],[[245,[184,-2,-3]]],[],4,[[87,[-1],[[9,[-2]]]]]],[[184,-3],[[245,[184,-2,-3]]],[],4,[[87,[-1],[[9,[-2]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,102,[]],[-1,102,[]],[-1,102,[]],[202,202],[[186,-3],[[276,[186,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[186,-3],[[276,[186,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[186,-3],[[277,[186,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[186,-3],[[277,[186,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[186,25],[[273,[186]]]],[[186,25],[[273,[186]]]],[[186,25],[[274,[186]]]],[[186,25],[[274,[186]]]],[[186,25],[[266,[186]]]],[[186,25],[[266,[186]]]],[186,[[264,[186,-2]]],[],[126,[204,[-1]]]],[186,[[264,[186,-2]]],[],[126,[204,[-1]]]],[186,[[265,[186]]]],[186,[[265,[186]]]],[[186,-3],[[260,[186,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[186,-3],[[260,[186,-2,-3]]],[],[[4,[],[[9,[28]]]]],[[87,[-1],[[9,[-2]]]]]],[[186,-5],[[261,[186,-4,-5]]],[],[],[],[[8,[],[[85,[[27,[-2]]]],[7,[-3]]]]],[[87,[-1],[[9,[-4]]]]]],[[186,-5],[[261,[186,-4,-5]]],[],[],[],[[8,[],[[85,[[27,[-2]]]],[7,[-3]]]]],[[87,[-1],[[9,[-4]]]]]],[186,[[262,[186]]]],[186,[[262,[186]]]],[[186,-1],[[263,[186]]],[[220,[[27,[25]]]]]],[[186,-1],[[263,[186]]],[[220,[[27,[25]]]]]],[[186,-1,-5],[[269,[186,-4,-1,-5]]],[],[],[],[[8,[],[[85,[-1]],[7,[-3]]]]],[[87,[-1,-2],[[9,[-4]]]]]],[[186,-1,-5],[[269,[186,-4,-1,-5]]],[],[],[],[[8,[],[[85,[-1]],[7,[-3]]]]],[[87,[-1,-2],[[9,[-4]]]]]],[[186,-4],[[259,[186,-3,-4]]],[],[],[[8,[],[[85,[2]],[7,[-2]]]]],[[87,[-1],[[9,[-3]]]]]],[[186,-4],[[259,[186,-3,-4]]],[],[],[[8,[],[[85,[2]],[7,[-2]]]]],[[87,[-1],[[9,[-3]]]]]],[[186,-1,-5],[[275,[186,-4,-5]]],[[220,[[27,[25]]]]],[],[],[[4,[],[[9,[[29,[2,-3]]]]]]],[[87,[-2],[[9,[-4]]]]]],[[186,-1,-5],[[275,[186,-4,-5]]],[[220,[[27,[25]]]]],[],[],[[4,[],[[9,[[29,[2,-3]]]]]]],[[87,[-2],[[9,[-4]]]]]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[186,[[258,[186]]]],[186,[[258,[186]]]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[[[12,[[178,[],[[85,[-1]],[7,[-2]]]]]],83],[[86,[[27,[[29,[-1,-2]]]]]]],[],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[[12,[-1]],83],[[86,[[27,[29]]]]],[]],[[186,83],[[86,[[27,[[29,[-1,-2]]]]]]],[],[]],[[186,83],[[86,[[27,[[29,[-1,-2]]]]]]],[],[]],[[186,25],[[268,[186]]]],[[186,25],[[268,[186]]]],[[186,-4],[[271,[186,-3,-4]]],[],[],[[8,[],[[85,[28]],[7,[-2]]]]],[[87,[-1],[[9,[-3]]]]]],[[186,-4],[[271,[186,-3,-4]]],[],[],[[8,[],[[85,[28]],[7,[-2]]]]],[[87,[-1],[[9,[-3]]]]]],[[186,-4],[[272,[186,-3,-4]]],[],[],[[8,[],[[85,[28]],[7,[-2]]]]],[[87,[-1],[[9,[-3]]]]]],[[186,-4],[[272,[186,-3,-4]]],[],[],[[8,[],[[85,[28]],[7,[-2]]]]],[[87,[-1],[[9,[-3]]]]]],[[-1,-4],[[270,[-1,-4,-3]]],[],[],[[8,[],[[85,[[27,[[2,[-2,-1]]]]]]]]],[[87,[-1],[[9,[-3]]]]]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[[-1,-4],[[281,[-1,-4,-3]]],[],[],[[4,[],[[9,[[27,[[2,[-2,-1]]]]]]]]],[[87,[-1],[[9,[-3]]]]]],[184,[[225,[184,-2,-4]]],[],[126,[204,[-1]]],[],[126,[204,[-3]]]],[184,[[225,[184,-2,-4]]],[],[126,[204,[-1]]],[],[126,[204,[-3]]]],[[184,-1],[[246,[184,-1]]],94],[[184,-1],[[246,[184,-1]]],94],0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[210,[-1]]],2,[]],[[[286,[-1]],34],35,38],[[[287,[-1]],34],35,[38,79]],[[[288,[-1]],34],35,38],[[[289,[-1]],34],35,[38,79]],[[[290,[-1]],34],35,[38,79]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[210,[-1]]],28,[]],[[[210,[-1]]],[[289,[-1]]],79],[[[210,[-1]]],[[287,[-1]]],79],[[[12,[[210,[-1]]]]],[[286,[-1]]],[]],[[[12,[[210,[-1]]]]],[[288,[-1]]],[]],[[[210,[-1]]],25,[]],[[],[[210,[-1]]],[]],[[[286,[-1]]],[[27,[-2]]],[],[]],[[[287,[-1]]],[[27,[-2]]],79,[]],[[[288,[-1]]],[[27,[-2]]],[],[]],[[[289,[-1]]],[[27,[-2]]],79,[]],[[[290,[-1]]],[[27,[-2]]],79,[]],[[[210,[-1]],-1],2,[]],[[[286,[-1]]],[[2,[25,[27,[25]]]]],[]],[[[287,[-1]]],[[2,[25,[27,[25]]]]],79],[[[288,[-1]]],[[2,[25,[27,[25]]]]],[]],[[[289,[-1]]],[[2,[25,[27,[25]]]]],79],[[[290,[-1]]],[[2,[25,[27,[25]]]]],79],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[211,[-1]]],2,[94,79]],[[[291,[-1]],34],35,[38,79]],[[[292,[-1]],34],35,[38,79]],[[[293,[-1]],34],35,[38,79]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[211,[-1]]],28,[94,79]],[[[211,[-1]]],[[291,[-1]]],[94,79]],[[[211,[-1]]],[[292,[-1]]],[94,79]],[[[211,[-1]]],25,[94,79]],[[],[[211,[-1]]],[94,79]],[[[291,[-1]]],[[27,[-2]]],[94,79],[]],[[[292,[-1]]],[[27,[-2]]],[94,79],[]],[[[293,[-1]]],[[27,[-2]]],[94,79],[]],[[[211,[-1]],-1],2,[94,79]],[-1,211,78],[[[291,[-1]]],[[2,[25,[27,[25]]]]],[94,79]],[[[292,[-1]]],[[2,[25,[27,[25]]]]],[94,79]],[[[293,[-1]]],[[2,[25,[27,[25]]]]],[94,79]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],294],[295,296],[4,2],[[[283,[-1]]],2,[]],[[284,34],[[29,[2,297]]]],[[284,34],[[29,[2,297]]]],[[[283,[-1]],34],[[29,[2,297]]],[]],[[294,34],[[29,[2,297]]]],[[[285,[-1]],34],[[29,[2,297]]],[]],[[295,34],[[29,[2,297]]]],[-1,-1,[]],[[[285,[-1]]],[[283,[-1]]],[]],[[[12,[[153,[-1]]]]],[[283,[2]]],[[4,[],[[9,[2]]]]]],[[[153,[4]]],[[283,[2]]]],[-1,-1,[]],[[[12,[[153,[4]]]]],[[283,[2]]]],[[[153,[-1]]],[[283,[2]]],[[4,[],[[9,[2]]]]]],[-1,-1,[]],[-1,-1,[]],[[[153,[-1]]],[[285,[2]]],[[4,[],[[9,[2]]]],298]],[[[153,[4]]],[[285,[2]]]],[[[12,[[153,[4]]]]],[[285,[2]]]],[[[12,[[153,[-1]]]]],[[285,[2]]],[[4,[],[[9,[2]]]],298]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[],[]],[-1,[],[]],[[[283,[-1]]],[[285,[-1]]],[]],[81,4],[284,28],[-2,[[283,[-1]]],[],[[81,[-1]]]],[[],294],[-2,[[285,[-1]]],[],[[81,[-1]],298]],[296,295],[[[299,[296]]],295],[[],296],[[],296],[[[12,[[283,[-1]]]],83],[[86,[-1]]],[]],[[[12,[[285,[-1]]]],83],[[86,[-1]]],[]],[[294,296],2],[[],284],[[300,-1],[[29,[2,284]]],[[4,[],[[9,[2]]]],298]],[[300,-1],[[29,[2,284]]],[[4,[],[[9,[2]]]],298]],[[301,-1],[[29,[2,284]]],[[4,[],[[9,[2]]]]]],[[301,-1],[[29,[2,284]]],[[4,[],[[9,[2]]]]]],[[302,[283,[2]]],[[29,[2,284]]]],[[301,-1],[[29,[48,284]]],4],[[301,-1],[[29,[48,284]]],4],[[303,[285,[2]]],[[29,[2,284]]]],[[300,-1],[[29,[48,284]]],[4,298]],[[300,-1],[[29,[48,284]]],[4,298]],[303,[[29,[2,284]]]],[302,[[29,[2,284]]]],[294,[[27,[296]]]],[-1,102,[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[-1,[[29,[-2]]],[],[]],[[[12,[-1]],83],86,[]],[[[12,[-1]],83],86,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[-1,103,[]],[[[167,[304]]],2],[294,2],[[[167,[304]]],2],[[[167,[-1]]],296,304],[[[167,[-1]]],295,304]],"c":[3026],"p":[[5,"AbortHandle",41],[1,"tuple"],[5,"Abortable",41],[10,"Future",3767],[10,"TryFutureExt",41],[5,"AndThen",41],[17,"Error"],[10,"TryFuture",41],[17,"Output"],[10,"FnOnce",3768],[6,"Either",41],[5,"Pin",3769],[10,"FutureExt",41],[8,"BoxFuture",41],[8,"LocalBoxFuture",41],[5,"CatchUnwind",41],[5,"Shared",41],[5,"WeakShared",41],[5,"Pending",41],[5,"OptionFuture",41],[10,"Clone",3770],[5,"PollImmediate",41],[5,"Ready",41],[5,"Aborted",41],[1,"usize"],[10,"AsyncBufRead",942],[6,"Option",3771],[1,"bool"],[6,"Result",3772],[5,"ErrInto",41],[5,"Flatten",41],[5,"FlattenSink",41],[5,"FlattenStream",41],[5,"Formatter",3773],[8,"Result",3773],[5,"PollFn",41],[5,"JoinAll",41],[10,"Debug",3773],[5,"TryJoinAll",41],[5,"Fuse",41],[5,"Map",41],[5,"IntoStream",41],[5,"MapInto",41],[5,"Then",41],[5,"Inspect",41],[5,"NeverError",41],[5,"UnitError",41],[5,"RemoteHandle",41],[5,"Remote",41],[5,"IntoFuture",41],[5,"TryFlatten",41],[5,"TryFlattenStream",41],[5,"OrElse",41],[5,"OkInto",41],[5,"InspectOk",41],[5,"InspectErr",41],[5,"MapOk",41],[5,"MapErr",41],[5,"MapOkOrElse",41],[5,"UnwrapOrElse",41],[5,"Lazy",41],[6,"MaybeDone",41],[6,"TryMaybeDone",41],[5,"Join",41],[5,"Join3",41],[5,"Join4",41],[5,"Join5",41],[5,"Select",41],[5,"SelectAll",41],[5,"TryJoin",41],[5,"TryJoin3",41],[5,"TryJoin4",41],[5,"TryJoin5",41],[5,"TrySelect",41],[5,"SelectOk",41],[5,"AbortRegistration",41],[17,"Item"],[10,"IntoIterator",3774],[10,"Unpin",3775],[5,"Vec",3776],[10,"UnsafeFutureObj",3660],[10,"FusedFuture",41],[5,"Context",3777],[10,"FusedStream",1837],[17,"Ok"],[6,"Poll",3778],[10,"FnMut",3768],[10,"UnwindSafe",3779],[8,"Result",3780],[10,"AsyncWrite",942],[10,"Sink",1595],[1,"u8"],[1,"slice"],[10,"Stream",1837],[10,"AsyncRead",942],[5,"IoSliceMut",3781],[6,"SeekFrom",3781],[1,"u64"],[10,"AsyncSeek",942],[5,"IoSlice",3781],[10,"Hasher",3782],[5,"String",3783],[5,"TypeId",3784],[5,"Window",942],[10,"AsMut",3785],[10,"AsRef",3785],[5,"BufReader",942],[5,"BufWriter",942],[5,"LineWriter",942],[10,"AsyncReadExt",942],[5,"Chain",942],[5,"AllowStdIo",942],[5,"Cursor",942],[10,"AsyncWriteExt",942],[5,"Close",942],[6,"Ordering",3786],[10,"Ord",3786],[5,"Empty",942],[10,"BufRead",3781],[5,"Take",942],[10,"AsyncBufReadExt",942],[5,"Copy",942],[10,"Sized",3775],[5,"CopyBuf",942],[5,"CopyBufAbortable",942],[10,"Default",3787],[10,"PartialEq",3786],[5,"FillBuf",942],[5,"Flush",942],[10,"Write",3781],[5,"Repeat",942],[5,"Sink",942],[5,"ReuniteError",942],[5,"SeeKRelative",942],[5,"IntoSink",942],[5,"Lines",942],[5,"Read",942],[5,"ReadVectored",942],[5,"ReadExact",942],[5,"ReadLine",942],[5,"ReadToEnd",942],[5,"ReadToString",942],[5,"ReadUntil",942],[5,"Seek",942],[5,"ReadHalf",942],[5,"WriteHalf",942],[5,"Write",942],[5,"WriteVectored",942],[5,"WriteAll",942],[10,"Hash",3782],[10,"PartialOrd",3786],[5,"Error",3780],[5,"Box",3788],[10,"Read",3781],[10,"Seek",3781],[1,"i64"],[10,"AsyncSeekExt",942],[10,"RangeBounds",3789],[5,"Arguments",3773],[5,"Mutex",1511],[5,"OwnedMutexGuard",1511],[5,"MutexGuard",1511],[5,"MappedMutexGuard",1511],[5,"OwnedMutexLockFuture",1511],[5,"MutexLockFuture",1511],[1,"never"],[5,"Arc",3790],[10,"SinkExt",1595],[5,"Buffer",1595],[5,"Drain",1595],[5,"SinkMapErr",1595],[5,"With",1595],[5,"Close",1595],[5,"Fanout",1595],[5,"Feed",1595],[5,"Flush",1595],[5,"SendAll",1595],[10,"TryStream",1837],[5,"SinkErrInto",1595],[5,"Send",1595],[5,"Unfold",1595],[5,"WithFlatMap",1595],[10,"From",3785],[10,"StreamExt",1837],[5,"All",1837],[10,"TryStreamExt",1837],[5,"AndThen",1837],[5,"Any",1837],[8,"BoxStream",1837],[8,"LocalBoxStream",1837],[5,"BufferUnordered",1837],[5,"Buffered",1837],[5,"CatchUnwind",1837],[5,"Chain",1837],[5,"Chunks",1837],[5,"Iter",1837],[5,"Repeat",1837],[5,"RepeatWith",1837],[5,"Empty",1837],[5,"Pending",1837],[5,"PollImmediate",1837],[6,"PollNext",1837],[5,"Collect",1837],[10,"Extend",3774],[5,"Concat",1837],[5,"IntoAsyncRead",1837],[5,"Count",1837],[5,"Cycle",1837],[5,"FuturesOrdered",1837],[5,"FuturesUnordered",1837],[5,"SelectAll",1837],[5,"Enumerate",1837],[5,"TryChunksError",1837],[5,"TryReadyChunksError",1837],[5,"ErrInto",1837],[5,"Filter",1837],[5,"FilterMap",1837],[5,"FlatMap",1837],[5,"FlatMapUnordered",1837],[10,"Into",3785],[5,"Flatten",1837],[8,"FlattenUnordered",1837],[5,"ReuniteError",1837],[5,"PollFn",1837],[5,"Unzip",1837],[5,"Fold",1837],[5,"Forward",1837],[5,"ForEach",1837],[5,"Fuse",1837],[5,"StreamFuture",1837],[5,"Inspect",1837],[5,"Map",1837],[5,"Next",1837],[5,"SelectNextSome",1837],[5,"Peekable",1837],[5,"Peek",1837],[5,"PeekMut",1837],[5,"NextIf",1837],[5,"NextIfEq",1837],[5,"Skip",1837],[5,"SkipWhile",1837],[5,"Take",1837],[5,"TakeWhile",1837],[5,"TakeUntil",1837],[5,"Then",1837],[5,"Zip",1837],[5,"ReadyChunks",1837],[5,"Scan",1837],[5,"ForEachConcurrent",1837],[5,"SplitStream",1837],[5,"SplitSink",1837],[5,"InspectOk",1837],[5,"InspectErr",1837],[5,"IntoStream",1837],[5,"MapOk",1837],[5,"MapErr",1837],[5,"OrElse",1837],[5,"TryNext",1837],[5,"TryForEach",1837],[5,"TryFilter",1837],[5,"TryFilterMap",1837],[5,"TryFlatten",1837],[5,"TryFlattenUnordered",1837],[5,"TryCollect",1837],[5,"TryConcat",1837],[5,"TryChunks",1837],[10,"Display",3773],[5,"TryReadyChunks",1837],[5,"TryFold",1837],[5,"TryUnfold",1837],[5,"TrySkipWhile",1837],[5,"TryTakeWhile",1837],[5,"TryBufferUnordered",1837],[5,"TryBuffered",1837],[5,"TryForEachConcurrent",1837],[5,"TryAll",1837],[5,"TryAny",1837],[5,"Once",1837],[5,"Select",1837],[5,"SelectWithStrategy",1837],[5,"Unfold",1837],[10,"Iterator",3791],[5,"LocalFutureObj",3660],[5,"SpawnError",3660],[5,"FutureObj",3660],[5,"IterPinMut",3545],[5,"IterMut",3545],[5,"IterPinRef",3545],[5,"Iter",3545],[5,"IntoIter",3545],[5,"Iter",3615],[5,"IterMut",3615],[5,"IntoIter",3615],[5,"AtomicWaker",3660],[5,"WakerRef",3660],[5,"Waker",3777],[5,"Error",3773],[10,"Send",3775],[5,"ManuallyDrop",3792],[10,"SpawnExt",3660],[10,"LocalSpawnExt",3660],[10,"LocalSpawn",3660],[10,"Spawn",3660],[10,"ArcWake",3660]],"b":[[333,"impl-Debug-for-Aborted"],[334,"impl-Display-for-Aborted"],[558,"impl-FusedFuture-for-Either%3CA,+B%3E"],[559,"impl-FusedStream-for-Either%3CA,+B%3E"],[645,"impl-AsyncWrite-for-Either%3CA,+B%3E"],[646,"impl-Sink%3CItem%3E-for-Either%3CA,+B%3E"],[651,"impl-AsyncWrite-for-Either%3CA,+B%3E"],[652,"impl-Sink%3CItem%3E-for-Either%3CA,+B%3E"],[1072,"impl-AsyncBufRead-for-AllowStdIo%3CT%3E"],[1073,"impl-BufRead-for-AllowStdIo%3CT%3E"],[1094,"impl-Display-for-ReuniteError%3CT%3E"],[1095,"impl-Debug-for-ReuniteError%3CT%3E"],[1275,"impl-AsyncWrite-for-Cursor%3CVec%3Cu8%3E%3E"],[1276,"impl-AsyncWrite-for-Cursor%3C%26mut+%5Bu8%5D%3E"],[1277,"impl-AsyncWrite-for-Cursor%3C%26mut+Vec%3Cu8%3E%3E"],[1278,"impl-AsyncWrite-for-Cursor%3CBox%3C%5Bu8%5D%3E%3E"],[1295,"impl-AsyncWrite-for-Cursor%3C%26mut+Vec%3Cu8%3E%3E"],[1296,"impl-AsyncWrite-for-Cursor%3CBox%3C%5Bu8%5D%3E%3E"],[1297,"impl-AsyncWrite-for-Cursor%3CVec%3Cu8%3E%3E"],[1298,"impl-AsyncWrite-for-Cursor%3C%26mut+%5Bu8%5D%3E"],[1333,"impl-AsyncWrite-for-Cursor%3C%26mut+%5Bu8%5D%3E"],[1334,"impl-AsyncWrite-for-Cursor%3CVec%3Cu8%3E%3E"],[1335,"impl-AsyncWrite-for-Cursor%3C%26mut+Vec%3Cu8%3E%3E"],[1336,"impl-AsyncWrite-for-Cursor%3CBox%3C%5Bu8%5D%3E%3E"],[1344,"impl-AsyncWrite-for-Cursor%3CBox%3C%5Bu8%5D%3E%3E"],[1345,"impl-AsyncWrite-for-Cursor%3CVec%3Cu8%3E%3E"],[1346,"impl-AsyncWrite-for-Cursor%3C%26mut+Vec%3Cu8%3E%3E"],[1347,"impl-AsyncWrite-for-Cursor%3C%26mut+%5Bu8%5D%3E"],[2198,"impl-Display-for-ReuniteError%3CT,+Item%3E"],[2199,"impl-Debug-for-ReuniteError%3CT,+Item%3E"],[2265,"impl-Display-for-TryChunksError%3CT,+E%3E"],[2266,"impl-Debug-for-TryChunksError%3CT,+E%3E"],[2268,"impl-Debug-for-TryReadyChunksError%3CT,+E%3E"],[2269,"impl-Display-for-TryReadyChunksError%3CT,+E%3E"],[2697,"impl-IntoIterator-for-%26mut+FuturesUnordered%3CFut%3E"],[2698,"impl-IntoIterator-for-FuturesUnordered%3CFut%3E"],[2699,"impl-IntoIterator-for-%26FuturesUnordered%3CFut%3E"],[2700,"impl-IntoIterator-for-SelectAll%3CSt%3E"],[2701,"impl-IntoIterator-for-%26mut+SelectAll%3CSt%3E"],[2702,"impl-IntoIterator-for-%26SelectAll%3CSt%3E"],[3690,"impl-Display-for-SpawnError"],[3691,"impl-Debug-for-SpawnError"],[3697,"impl-From%3CFutureObj%3C\'a,+T%3E%3E-for-LocalFutureObj%3C\'a,+T%3E"],[3698,"impl-From%3CPin%3CBox%3CF%3E%3E%3E-for-LocalFutureObj%3C\'a,+()%3E"],[3699,"impl-From%3CBox%3Cdyn+Future%3COutput+=+()%3E%3E%3E-for-LocalFutureObj%3C\'a,+()%3E"],[3701,"impl-From%3CPin%3CBox%3Cdyn+Future%3COutput+=+()%3E%3E%3E%3E-for-LocalFutureObj%3C\'a,+()%3E"],[3702,"impl-From%3CBox%3CF%3E%3E-for-LocalFutureObj%3C\'a,+()%3E"],[3705,"impl-From%3CBox%3CF%3E%3E-for-FutureObj%3C\'a,+()%3E"],[3706,"impl-From%3CBox%3Cdyn+Future%3COutput+=+()%3E+%2B+Send%3E%3E-for-FutureObj%3C\'a,+()%3E"],[3707,"impl-From%3CPin%3CBox%3Cdyn+Future%3COutput+=+()%3E+%2B+Send%3E%3E%3E-for-FutureObj%3C\'a,+()%3E"],[3708,"impl-From%3CPin%3CBox%3CF%3E%3E%3E-for-FutureObj%3C\'a,+()%3E"]]}],\ -["getrandom",{"doc":"Interface to the operating system’s random number …","t":"TTFTTTTTTTTTTTTTNNNNNNNNNHHNNNNN","n":["CUSTOM_START","ERRNO_NOT_POSITIVE","Error","FAILED_RDRAND","INTERNAL_START","IOS_SEC_RANDOM","NODE_CRYPTO","NODE_ES_MODULE","NODE_RANDOM_FILL_SYNC","NO_RDRAND","UNEXPECTED","UNSUPPORTED","VXWORKS_RAND_SECURE","WEB_CRYPTO","WEB_GET_RANDOM_VALUES","WINDOWS_RTL_GEN_RANDOM","borrow","borrow_mut","clone","code","eq","fmt","fmt","from","from","getrandom","getrandom_uninit","into","raw_os_error","try_from","try_into","type_id"],"q":[[0,"getrandom"],[32,"core::num::nonzero"],[33,"core::fmt"],[34,"core::fmt"],[35,"core::mem::maybe_uninit"],[36,"core::option"],[37,"core::any"]],"d":["Codes at or above this point can be used by users to …","The platform-specific errno returned a non-positive value.","A small and no_std compatible error type","RDRAND instruction failed due to a hardware issue.","Codes below this point represent OS Errors (i.e. positive …","Call to CCRandomGenerateBytes failed on iOS, tvOS, or …","Node.js does not have the crypto CommonJS module.","Called from an ES module on Node.js. This is unsupported, …","Calling Node.js function crypto.randomFillSync failed.","RDRAND instruction unsupported on this target.","Encountered an unexpected situation which should not …","This target/platform is not supported by getrandom.","On VxWorks, call to randSecure failed (random number …","The environment does not support the Web Crypto API.","Calling Web Crypto API crypto.getRandomValues failed.","Call to Windows RtlGenRandom failed.","","","","Extract the bare error code.","","","","","Returns the argument unchanged.","Fill dest with random bytes from the system’s preferred …","Version of the getrandom function which fills dest with …","Calls U::from(self).","Extract the raw OS error code (if this error came from the …","","",""],"i":[1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[1,1],[1,2],[[1,1],3],[[1,4],5],[[1,4],5],[2,1],[-1,-1,[]],[[[7,[6]]],[[9,[8,1]]]],[[[7,[[10,[6]]]]],[[9,[[7,[6]],1]]]],[-1,-2,[],[]],[1,[[12,[11]]]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,13,[]]],"c":[],"p":[[5,"Error",0],[5,"NonZeroU32",32],[1,"bool"],[5,"Formatter",33],[8,"Result",33],[1,"u8"],[1,"slice"],[1,"tuple"],[6,"Result",34],[20,"MaybeUninit",35],[1,"i32"],[6,"Option",36],[5,"TypeId",37]],"b":[[21,"impl-Debug-for-Error"],[22,"impl-Display-for-Error"]]}],\ +["getrandom",{"doc":"Interface to the operating system’s random number …","t":"TTFTTTTTTTTTTTTTNNNNNNNNNHHNNNNN","n":["CUSTOM_START","ERRNO_NOT_POSITIVE","Error","FAILED_RDRAND","INTERNAL_START","IOS_SEC_RANDOM","NODE_CRYPTO","NODE_ES_MODULE","NODE_RANDOM_FILL_SYNC","NO_RDRAND","UNEXPECTED","UNSUPPORTED","VXWORKS_RAND_SECURE","WEB_CRYPTO","WEB_GET_RANDOM_VALUES","WINDOWS_RTL_GEN_RANDOM","borrow","borrow_mut","clone","code","eq","fmt","fmt","from","from","getrandom","getrandom_uninit","into","raw_os_error","try_from","try_into","type_id"],"q":[[0,"getrandom"],[32,"core::num::nonzero"],[33,"core::fmt"],[34,"core::fmt"],[35,"core::mem::maybe_uninit"],[36,"core::option"],[37,"core::any"]],"d":["Codes at or above this point can be used by users to …","The platform-specific errno returned a non-positive value.","A small and no_std compatible error type","RDRAND instruction failed due to a hardware issue.","Codes below this point represent OS Errors (i.e. positive …","Call to CCRandomGenerateBytes failed on iOS, tvOS, or …","Node.js does not have the crypto CommonJS module.","Called from an ES module on Node.js. This is unsupported, …","Calling Node.js function crypto.randomFillSync failed.","RDRAND instruction unsupported on this target.","Encountered an unexpected situation which should not …","This target/platform is not supported by getrandom.","On VxWorks, call to randSecure failed (random number …","The environment does not support the Web Crypto API.","Calling Web Crypto API crypto.getRandomValues failed.","Call to Windows RtlGenRandom failed.","","","","Extract the bare error code.","","","","","Returns the argument unchanged.","Fill dest with random bytes from the system’s preferred …","Version of the getrandom function which fills dest with …","Calls U::from(self).","Extract the raw OS error code (if this error came from the …","","",""],"i":[1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[1,1],[1,2],[[1,1],3],[[1,4],5],[[1,4],5],[2,1],[-1,-1,[]],[[[7,[6]]],[[9,[8,1]]]],[[[7,[[10,[6]]]]],[[9,[[7,[6]],1]]]],[-1,-2,[],[]],[1,[[12,[11]]]],[-1,[[9,[-2]]],[],[]],[-1,[[9,[-2]]],[],[]],[-1,13,[]]],"c":[],"p":[[5,"Error",0],[5,"NonZeroU32",32],[1,"bool"],[5,"Formatter",33],[8,"Result",33],[1,"u8"],[1,"slice"],[1,"tuple"],[6,"Result",34],[20,"MaybeUninit",35],[1,"i32"],[6,"Option",36],[5,"TypeId",37]],"b":[[21,"impl-Display-for-Error"],[22,"impl-Debug-for-Error"]]}],\ ["gif",{"doc":"GIF en- and decoding library Build Status","t":"PFPPPGPPPFFGFGFGGGGPPPFPPPPPPGPPPGPPPPPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNONNONNNNNNONNNNNNNNNNNCNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNOOOPGPPPPGPGFPPPPPPPPGPPPFPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNO","n":["Any","AnyExtension","Application","Background","Bytes","ColorOutput","Comment","Control","Control","DecodeOptions","Decoder","DecodingError","DecodingFormatError","DisposalMethod","Encoder","EncodingError","EncodingFormatError","Extension","ExtensionData","Finite","Format","Format","Frame","Indexed","Infinite","InvalidMinCodeSize","Io","Io","Keep","MemoryLimit","MissingColorPalette","Previous","RGBA","Repeat","Repetitions","Text","TooManyColors","Unlimited","V87a","V89a","Version","allow_unknown_blocks","bg_color","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer","buffer_size","build","check_frame_consistency","check_lzw_end_code","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","default","default","default","delay","dispose","drop","eq","eq","eq","eq","eq","eq","fill_buffer","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_indexed_pixels","from_palette_pixels","from_rgb","from_rgb_speed","from_rgba","from_rgba_speed","from_u8","from_u8","get_mut","get_ref","global_palette","hash","hash","height","height","interlaced","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_inner","into_inner","into_iter","into_known","left","line_length","make_lzw_pre_encoded","needs_user_input","new","new","new","new_control_ext","next_frame_info","palette","palette","read_info","read_into_buffer","read_next_frame","repeat","set_color_output","set_memory_limit","set_repeat","skip_frame_decoding","source","source","source","streaming_decoder","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","top","transparent","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","width","width","write_extension","write_frame","write_lzw_pre_encoded_frame","write_raw_extension","delay","flags","trns","BackgroundColor","Block","BlockFinished","BlockStart","BytesDecoded","DataEnd","Decoded","Extension","FrameDataType","FrameDecoder","FrameMetadata","GlobalPalette","HeaderEnd","Image","Lzw","LzwDataCopied","None","Nothing","OutputBuffer","Pixels","Repetitions","Slice","StreamingDecoder","SubBlockFinished","Trailer","Vec","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer_size","clone","clone","clone_into","clone_into","current_frame","current_frame_mut","decode_lzw_encoded_frame","decode_lzw_encoded_frame_into_buffer","eq","fmt","fmt","fmt","from","from","from","from","from","from","from_u8","height","into","into","into","into","into","into","last_ext","new","new","set_global_palette","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","update","version","width","min_code_size"],"q":[[0,"gif"],[278,"gif::ExtensionData"],[281,"gif::streaming_decoder"],[373,"gif::streaming_decoder::FrameDataType"],[374,"core::option"],[375,"std::io"],[376,"std::io"],[377,"core::fmt"],[378,"core::fmt"],[379,"std::io::error"],[380,"core::convert"],[381,"core::hash"],[382,"std::io::buffered::bufreader"],[383,"std::io::error"],[384,"alloc::string"],[385,"core::any"]],"d":["StreamingDecoder is not required to take any action.","A newtype wrapper around an arbitrary extension ID.","Application extension.","Restore to background color.","Limit the amount of memory that can be used for a single …","Output mode for the image data","Comment extension.","Control extension. Use ExtensionData::new_control_ext to …","Control extension.","Options for opening a GIF decoder. DecodeOptions::read_info…","GIF decoder. Create DecodeOptions to get started, and call …","Decoding error.","An error returned in the case of the image not being …","Disposal method","GIF encoder.","Encoding error.","The image has incorrect properties, making it impossible …","Known GIF extension labels.","Extension data.","Finite number of repetitions","Returned if the image is found to be malformed.","Returned if the to image is not encodable as a gif.","A GIF frame","The decoder returns the raw indexed data.","Infinite number of repetitions","LZW data is not valid for GIF. This may happen when wrong …","Wraps std::io::Error.","Wraps std::io::Error.","Do not dispose.","The maximum amount of memory the decoder is allowed to use …","The image has no color palette which is required.","Restore to previous.","The decoder expands the image data to 32bit RGBA. This …","Number of repetitions","Sets the number of repetitions","Plain Text extension.","The image has too many colors.","Enforce no memory limit.","Version 87a, from May 1987.","Version 89a, from July 1989.","One version number of the GIF standard.","Configure if unknown blocks are allowed to be decoded.","Index of the background color in the global palette","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Buffer containing the image data. Only indices unless …","Output buffer size","Return a builder that allows configuring limits etc.","Configure if frames must be within the screen descriptor.","Configure if LZW encoded blocks must end with a marker end …","","","","","","","","","","","","","","","","","","","","","","Frame delay in units of 10 ms.","Disposal method.","","","","","","","","Reads data of the current frame into a pre-allocated …","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Creates a frame from indexed pixels in the global palette.","Creates a frame from a palette and indexed pixels.","Creates a frame from pixels in RGB format.","Creates a frame from pixels in RGB format.","Creates a frame from pixels in RGBA format.","Creates a frame from pixels in RGBA format.","Converts u8 to Option<Self>","Converts u8 to a Extension if it is known.","Gets a mutable reference to the writer instance used by …","Gets a reference to the writer instance used by this …","The global color palette","","","Height of the image","Height of the frame.","True if the image is interlaced.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Abort decoding and recover the io::Read instance","Finishes writing, and returns the io::Write instance used …","","Decode the label as a known extension.","Offset from the left border of the canvas.","Line length of the current frame","Replace frame’s buffer with a LZW-compressed one for use …","True if the frame needs user input to be displayed.","Create a new decoder with default options.","Creates a new encoder.","Creates a new decoder builder","Constructor for control extension data.","Returns the next frame info","Returns the color palette relevant for the frame that has …","Frame local color palette if available.","Reads the logical screen descriptor including the global …","Reads the data of the current frame into a pre-allocated …","Reads the next frame from the image.","Number of loop repetitions","Configure how color data is decoded.","Configure a memory limit for decoding.","Write an extension block that signals a repeat behaviour.","Configure whether to skip decoding frames.","","","","Low-level, advanced decoder. Prefer Decoder instead, which …","","","","","","","","","","","","","","Offset from the top border of the canvas.","Transparent index (if available).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Width of the image","Width of the frame.","Writes an extension to the image.","Writes a frame to the image.","Writes a frame to the image, but expects Frame.buffer to …","Writes a raw extension to the image.","Frame delay.","Flags.","Transparent index.","Index of the background color in the global palette.","Known GIF block labels.","Decoded the last (or only) sub-block of a block.","The start of a block. BlockStart(Block::Trailer) is the …","Decoded some data of the current frame. Size is in bytes, …","No more data available the current frame.","Indicates whether a certain object has been decoded","Extension block.","Varies depending on skip_frame_decoding","Decoder for Frame::make_lzw_pre_encoded","Decoded all information of the next frame, except the …","Global palette.","Palette and optional Application extension have been …","Image block.","Raw LZW data","Copied (or consumed and discarded) compressed data of the …","Discard bytes","Decoded nothing.","Destination to write to for StreamingDecoder::update","Frame.buffer will be regular pixel data","Loop count is known","Overwrite bytes","GIF decoder which emits low-level events for items in the …","Decoded a sub-block. More sub-block are available.","Image trailer.","Append LZW bytes","","","","","","","","","","","","","Number of bytes required for …","","","","","Current frame info as a ref.","Current frame info as a mutable ref.","Converts the frame in-place, replacing its LZW buffer with …","Converts into the given buffer. It must be [buffer_size()] …","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Converts u8 to Option<Self>","Height of the image","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns the data of the last extension that has been …","See also set_global_palette","Creates a new streaming decoder","Palette used for RGBA conversion","","","","","","","","","","","","","","","","","","","","","Updates the internal state of the decoder.","The version number of the GIF standard used in this image.","Width of the image","Needed for decoding"],"i":[8,0,10,8,14,0,10,36,10,0,0,0,0,0,0,0,0,0,0,15,20,26,0,13,15,25,20,26,8,0,25,8,13,0,36,10,25,14,12,12,0,1,4,4,36,16,8,9,10,11,24,20,12,13,14,1,25,26,15,4,36,16,8,9,10,11,24,20,12,13,14,1,25,26,15,11,4,4,1,1,8,9,10,11,12,13,14,1,15,8,9,10,11,12,13,14,1,15,11,1,15,11,11,16,8,9,10,12,13,15,4,8,9,10,11,24,24,20,20,12,13,14,1,25,25,26,26,15,4,36,16,8,9,9,10,11,24,20,20,20,20,12,13,14,1,25,26,26,26,15,11,11,11,11,11,11,8,10,16,16,4,9,12,4,11,11,4,36,16,8,9,10,11,24,20,12,13,14,1,25,26,15,4,16,4,9,11,4,11,11,4,16,1,36,4,4,11,1,4,4,4,1,1,16,1,24,20,26,0,8,9,10,11,12,13,14,1,15,24,20,25,26,11,11,4,36,16,8,9,10,11,24,20,12,13,14,1,25,26,15,4,36,16,8,9,10,11,24,20,12,13,14,1,25,26,15,4,36,16,8,9,10,11,24,20,12,13,14,1,25,26,15,4,11,16,16,16,16,46,46,46,44,0,44,44,44,44,0,41,0,0,44,44,44,41,42,44,45,44,0,42,44,45,0,44,41,45,40,43,45,41,42,44,40,43,45,41,42,44,40,41,42,41,42,43,43,40,40,41,41,42,44,40,43,45,41,42,44,41,43,40,43,45,41,42,44,43,40,43,40,41,42,40,43,45,41,42,44,40,43,45,41,42,44,40,43,45,41,42,44,43,43,43,47],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,2],3],[[[4,[-1]]],[[6,[5]]],7],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[4,[-1]]],5,7],[[],1],[[1,2],3],[[1,2],3],[8,8],[9,9],[10,10],[11,11],[12,12],[13,13],[14,14],[1,1],[15,15],[[-1,-2],3,[],[]],[[-1,-2],3,[],[]],[[-1,-2],3,[],[]],[[-1,-2],3,[],[]],[[-1,-2],3,[],[]],[[-1,-2],3,[],[]],[[-1,-2],3,[],[]],[[-1,-2],3,[],[]],[[-1,-2],3,[],[]],[[],11],[[],1],[[],15],0,0,[[[16,[-1]]],3,17],[[8,8],2],[[9,9],2],[[10,10],2],[[12,12],2],[[13,13],2],[[15,15],2],[[[4,[-1]],[19,[18]]],[[21,[2,20]]],7],[[8,22],23],[[9,22],23],[[10,22],23],[[11,22],23],[[24,22],23],[[24,22],23],[[20,22],23],[[20,22],23],[[12,22],23],[[13,22],23],[[14,22],23],[[1,22],23],[[25,22],23],[[25,22],23],[[26,22],23],[[26,22],23],[[15,22],23],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[10,9],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[27,20],[28,20],[-1,-1,[]],[24,20],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[27,26],[-1,-1,[]],[25,26],[-1,-1,[]],[[29,29,-1,[6,[18]]],11,[[31,[[30,[18]]]]]],[[29,29,-1,-2,[6,[18]]],11,[[31,[[30,[18]]]]],[[31,[[30,[18]]]]]],[[29,29,[19,[18]]],11],[[29,29,[19,[18]],32],11],[[29,29,[19,[18]]],11],[[29,29,[19,[18]],32],11],[18,[[6,[8]]]],[18,[[6,[10]]]],[[[16,[-1]]],-1,17],[[[16,[-1]]],-1,17],[[[4,[-1]]],[[6,[[19,[18]]]]],7],[[9,-1],3,33],[[12,-1],3,33],[[[4,[-1]]],29,7],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[4,[-1]]],[[34,[-1]]],7],[[[16,[-1]]],[[35,[-1]]],17],[[[4,[-1]]],-2,7,[]],[9,[[6,[10]]]],0,[[[4,[-1]]],5,7],[11,3],0,[-1,[[21,[[4,[-1]],20]]],7],[[-1,29,29,[19,[18]]],[[21,[[16,[-1]],26]]],17],[[],1],[[29,8,2,[6,[18]]],36],[[[4,[-1]]],[[21,[[6,[11]],20]]],7],[[[4,[-1]]],[[21,[[19,[18]],20]]],7],0,[[1,-1],[[21,[[4,[-1]],20]]],7],[[[4,[-1]],[19,[18]]],[[21,[3,20]]],7],[[[4,[-1]]],[[21,[[6,[11]],20]]],7],[[[4,[-1]]],15,7],[[1,13],3],[[1,14],3],[[[16,[-1]],15],[[21,[3,26]]],17],[[1,2],3],[24,[[6,[37]]]],[20,[[6,[37]]]],[26,[[6,[37]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,38,[]],[-1,38,[]],[-1,38,[]],[-1,38,[]],0,0,[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[[[4,[-1]]],29,7],0,[[[16,[-1]],36],[[21,[3,26]]],17],[[[16,[-1]],11],[[21,[3,26]]],17],[[[16,[-1]],11],[[21,[3,26]]],17],[[[16,[-1]],9,[19,[[19,[18]]]]],[[35,[3]]],17],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[40,11],5],[41,41],[42,42],[[-1,-2],3,[],[]],[[-1,-2],3,[],[]],[43,11],[43,11],[[40,11],[[21,[3,20]]]],[[40,11,[19,[18]]],[[21,[3,20]]]],[[41,41],2],[[41,22],23],[[42,22],23],[[44,22],23],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[18,[[6,[41]]]],[43,29],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[43,[[3,[9,[19,[18]],2]]]],[1,40],[[],43],[[40,[30,[18]]],3],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,[[21,[-2]]],[],[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[-1,39,[]],[[43,[19,[18]],45],[[21,[[3,[5,44]],20]]]],[43,12],[43,29],0],"c":[],"p":[[5,"DecodeOptions",0],[1,"bool"],[1,"tuple"],[5,"Decoder",0],[1,"usize"],[6,"Option",374],[10,"Read",375],[6,"DisposalMethod",0],[5,"AnyExtension",0],[6,"Extension",0],[5,"Frame",0],[6,"Version",0],[6,"ColorOutput",0],[6,"MemoryLimit",0],[6,"Repeat",0],[5,"Encoder",0],[10,"Write",375],[1,"u8"],[1,"slice"],[6,"DecodingError",0],[6,"Result",376],[5,"Formatter",377],[8,"Result",377],[5,"DecodingFormatError",0],[6,"EncodingFormatError",0],[6,"EncodingError",0],[5,"Error",378],[6,"ErrorKind",378],[1,"u16"],[5,"Vec",379],[10,"Into",380],[1,"i32"],[10,"Hasher",381],[5,"BufReader",382],[8,"Result",378],[6,"ExtensionData",0],[10,"Error",383],[5,"String",384],[5,"TypeId",385],[5,"FrameDecoder",281],[6,"Block",281],[6,"FrameDataType",281],[5,"StreamingDecoder",281],[6,"Decoded",281],[6,"OutputBuffer",281],[15,"Control",278],[15,"Lzw",373]],"b":[[115,"impl-Display-for-DecodingFormatError"],[116,"impl-Debug-for-DecodingFormatError"],[117,"impl-Debug-for-DecodingError"],[118,"impl-Display-for-DecodingError"],[123,"impl-Display-for-EncodingFormatError"],[124,"impl-Debug-for-EncodingFormatError"],[125,"impl-Debug-for-EncodingError"],[126,"impl-Display-for-EncodingError"],[137,"impl-From%3CError%3E-for-DecodingError"],[138,"impl-From%3CErrorKind%3E-for-DecodingError"],[140,"impl-From%3CDecodingFormatError%3E-for-DecodingError"],[146,"impl-From%3CError%3E-for-EncodingError"],[148,"impl-From%3CEncodingFormatError%3E-for-EncodingError"]]}],\ ["glam",{"doc":"glam","t":"GEEEPPPPPPCNNNNNNCCNNNCCNCNNNNCCFFFFFTTTTTTTTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOTTTTFFTTTTTTTTTTTTTTTTTTTFFFFTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTFFFFFTTTTTTTTTTTTTTTTTTTTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHHOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNTTTFFFFFFFFFTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNNNNNHHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNTTTFFFTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNTTTFFFTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNRRKRRKRRKMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNNNNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMTTTTTTTTTTTTFFFTTTTTTTTTTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNTTTTTTTTTTTTFFFTTTTTTTTTTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN","n":["EulerRot","Vec2Swizzles","Vec3Swizzles","Vec4Swizzles","XYZ","XZY","YXZ","YZX","ZXY","ZYX","bool","borrow","borrow_mut","clone","clone_into","default","eq","f32","f64","fmt","from","hash","i32","i64","into","swizzles","to_owned","try_from","try_into","type_id","u32","u64","BVec2","BVec3","BVec3A","BVec4","BVec4A","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","TRUE","TRUE","TRUE","TRUE","all","all","all","all","all","any","any","any","any","any","bitand","bitand","bitand","bitand","bitand","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitmask","bitmask","bitmask","bitmask","bitmask","bitor","bitor","bitor","bitor","bitor","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","default","default","default","default","default","eq","eq","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","hash","hash","hash","hash","hash","into","into","into","into","into","new","new","new","new","new","not","not","not","not","not","set","set","set","set","set","splat","splat","splat","splat","splat","test","test","test","test","test","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","w","x","x","x","y","y","y","z","z","AXES","AXES","AXES","AXES","Affine2","Affine3A","IDENTITY","IDENTITY","IDENTITY","IDENTITY","IDENTITY","IDENTITY","IDENTITY","INFINITY","INFINITY","INFINITY","INFINITY","MAX","MAX","MAX","MAX","MIN","MIN","MIN","MIN","Mat2","Mat3","Mat3A","Mat4","NAN","NAN","NAN","NAN","NAN","NAN","NAN","NAN","NAN","NAN","NAN","NEG_INFINITY","NEG_INFINITY","NEG_INFINITY","NEG_INFINITY","NEG_ONE","NEG_ONE","NEG_ONE","NEG_ONE","NEG_W","NEG_X","NEG_X","NEG_X","NEG_X","NEG_Y","NEG_Y","NEG_Y","NEG_Y","NEG_Z","NEG_Z","NEG_Z","ONE","ONE","ONE","ONE","Quat","Vec2","Vec3","Vec3A","Vec4","W","X","X","X","X","Y","Y","Y","Y","Z","Z","Z","ZERO","ZERO","ZERO","ZERO","ZERO","ZERO","ZERO","ZERO","ZERO","ZERO","abs","abs","abs","abs","abs_diff_eq","abs_diff_eq","abs_diff_eq","abs_diff_eq","abs_diff_eq","abs_diff_eq","abs_diff_eq","abs_diff_eq","abs_diff_eq","abs_diff_eq","abs_diff_eq","add","add","add","add","add","add","add","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_mat2","add_mat3","add_mat3","add_mat4","angle_between","angle_between","angle_between","angle_between","any_orthogonal_vector","any_orthogonal_vector","any_orthonormal_pair","any_orthonormal_pair","any_orthonormal_vector","any_orthonormal_vector","as_dmat2","as_dmat3","as_dmat3","as_dmat4","as_dvec2","as_dvec3","as_dvec3","as_dvec4","as_f64","as_i64vec2","as_i64vec3","as_i64vec3","as_i64vec4","as_ivec2","as_ivec3","as_ivec3","as_ivec4","as_mut","as_mut","as_mut","as_mut","as_mut","as_mut","as_mut","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_u64vec2","as_u64vec3","as_u64vec3","as_u64vec4","as_uvec2","as_uvec3","as_uvec3","as_uvec4","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","ceil","ceil","ceil","ceil","clamp","clamp","clamp","clamp","clamp_length","clamp_length","clamp_length","clamp_length","clamp_length_max","clamp_length_max","clamp_length_max","clamp_length_max","clamp_length_min","clamp_length_min","clamp_length_min","clamp_length_min","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmpeq","cmpeq","cmpeq","cmpeq","cmpge","cmpge","cmpge","cmpge","cmpgt","cmpgt","cmpgt","cmpgt","cmple","cmple","cmple","cmple","cmplt","cmplt","cmplt","cmplt","cmpne","cmpne","cmpne","cmpne","col","col","col","col","col_mut","col_mut","col_mut","col_mut","conjugate","copysign","copysign","copysign","copysign","cross","cross","default","default","default","default","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","determinant","determinant","determinant","determinant","distance","distance","distance","distance","distance_squared","distance_squared","distance_squared","distance_squared","div","div","div","div","div","div","div","div","div","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_euclid","div_euclid","div_euclid","div_euclid","dot","dot","dot","dot","dot","dot_into_vec","dot_into_vec","dot_into_vec","dot_into_vec","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","exp","exp","exp","exp","extend","extend","extend","floor","floor","floor","floor","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fract","fract","fract","fract","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_affine3","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle_translation","from_array","from_array","from_array","from_array","from_array","from_axis_angle","from_axis_angle","from_axis_angle","from_axis_angle","from_axis_angle","from_cols","from_cols","from_cols","from_cols","from_cols","from_cols","from_cols_array","from_cols_array","from_cols_array","from_cols_array","from_cols_array","from_cols_array","from_cols_array_2d","from_cols_array_2d","from_cols_array_2d","from_cols_array_2d","from_cols_array_2d","from_cols_array_2d","from_cols_slice","from_cols_slice","from_cols_slice","from_cols_slice","from_cols_slice","from_cols_slice","from_diagonal","from_diagonal","from_diagonal","from_diagonal","from_euler","from_euler","from_euler","from_euler","from_mat2","from_mat2","from_mat2","from_mat2_translation","from_mat3","from_mat3","from_mat3","from_mat3","from_mat3","from_mat3_translation","from_mat3a","from_mat3a","from_mat3a","from_mat3a","from_mat4","from_mat4","from_mat4","from_mat4","from_quat","from_quat","from_quat","from_quat","from_rotation_arc","from_rotation_arc_2d","from_rotation_arc_colinear","from_rotation_translation","from_rotation_translation","from_rotation_x","from_rotation_x","from_rotation_x","from_rotation_x","from_rotation_x","from_rotation_y","from_rotation_y","from_rotation_y","from_rotation_y","from_rotation_y","from_rotation_z","from_rotation_z","from_rotation_z","from_rotation_z","from_rotation_z","from_scale","from_scale","from_scale","from_scale","from_scale","from_scale_angle","from_scale_angle_translation","from_scale_angle_translation","from_scale_angle_translation","from_scale_rotation_translation","from_scale_rotation_translation","from_scaled_axis","from_slice","from_slice","from_slice","from_slice","from_slice","from_translation","from_translation","from_translation","from_translation","from_translation","from_vec4","from_xyzw","index","index","index","index","index_mut","index_mut","index_mut","index_mut","into","into","into","into","into","into","into","into","into","into","into","inverse","inverse","inverse","inverse","inverse","inverse","inverse","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_nan","is_nan","is_nan","is_nan","is_nan","is_nan","is_nan","is_nan","is_nan","is_nan","is_nan","is_nan_mask","is_nan_mask","is_nan_mask","is_nan_mask","is_near_identity","is_negative_bitmask","is_negative_bitmask","is_negative_bitmask","is_negative_bitmask","is_normalized","is_normalized","is_normalized","is_normalized","is_normalized","length","length","length","length","length","length_recip","length_recip","length_recip","length_recip","length_recip","length_squared","length_squared","length_squared","length_squared","length_squared","lerp","lerp","lerp","lerp","lerp","look_at_lh","look_at_lh","look_at_rh","look_at_rh","look_to_lh","look_to_lh","look_to_rh","look_to_rh","mat2","mat3","mat3a","mat4","matrix2","matrix3","max","max","max","max","max_element","max_element","max_element","max_element","min","min","min","min","min_element","min_element","min_element","min_element","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul_add","mul_add","mul_add","mul_add","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_mat2","mul_mat3","mul_mat3","mul_mat4","mul_quat","mul_scalar","mul_scalar","mul_scalar","mul_scalar","mul_vec2","mul_vec3","mul_vec3","mul_vec3","mul_vec3a","mul_vec3a","mul_vec3a","mul_vec4","neg","neg","neg","neg","neg","neg","neg","neg","neg","new","new","new","new","normalize","normalize","normalize","normalize","normalize","normalize_or_zero","normalize_or_zero","normalize_or_zero","normalize_or_zero","orthographic_lh","orthographic_rh","orthographic_rh_gl","perp","perp_dot","perspective_infinite_lh","perspective_infinite_reverse_lh","perspective_infinite_reverse_rh","perspective_infinite_rh","perspective_lh","perspective_rh","perspective_rh_gl","powf","powf","powf","powf","product","product","product","product","product","product","product","product","product","product","product","product","product","product","product","product","product","product","product","product","project_onto","project_onto","project_onto","project_onto","project_onto_normalized","project_onto_normalized","project_onto_normalized","project_onto_normalized","project_point3","quat","recip","recip","recip","recip","reject_from","reject_from","reject_from","reject_from","reject_from_normalized","reject_from_normalized","reject_from_normalized","reject_from_normalized","rem","rem","rem","rem","rem","rem","rem","rem","rem_assign","rem_assign","rem_assign","rem_assign","rem_assign","rem_assign","rem_assign","rem_assign","rem_euclid","rem_euclid","rem_euclid","rem_euclid","rotate","round","round","round","round","row","row","row","row","select","select","select","select","signum","signum","signum","signum","slerp","splat","splat","splat","splat","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_mat2","sub_mat3","sub_mat3","sub_mat4","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","to_array","to_array","to_array","to_array","to_array","to_axis_angle","to_cols_array","to_cols_array","to_cols_array","to_cols_array","to_cols_array","to_cols_array","to_cols_array_2d","to_cols_array_2d","to_cols_array_2d","to_cols_array_2d","to_cols_array_2d","to_cols_array_2d","to_euler","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_scale_angle_translation","to_scale_rotation_translation","to_scale_rotation_translation","to_scaled_axis","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","transform_point2","transform_point2","transform_point2","transform_point3","transform_point3","transform_point3a","transform_point3a","transform_vector2","transform_vector2","transform_vector2","transform_vector3","transform_vector3","transform_vector3a","transform_vector3a","translation","translation","transpose","transpose","transpose","transpose","trunc","trunc","trunc","trunc","truncate","truncate","truncate","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_normalize","try_normalize","try_normalize","try_normalize","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vec2","vec3","vec3a","vec4","w_axis","write_cols_to_slice","write_cols_to_slice","write_cols_to_slice","write_cols_to_slice","write_cols_to_slice","write_cols_to_slice","write_to_slice","write_to_slice","write_to_slice","write_to_slice","write_to_slice","ww","www","wwww","wwwx","wwwy","wwwz","wwx","wwxw","wwxx","wwxy","wwxz","wwy","wwyw","wwyx","wwyy","wwyz","wwz","wwzw","wwzx","wwzy","wwzz","wx","wxw","wxww","wxwx","wxwy","wxwz","wxx","wxxw","wxxx","wxxy","wxxz","wxy","wxyw","wxyx","wxyy","wxyz","wxz","wxzw","wxzx","wxzy","wxzz","wy","wyw","wyww","wywx","wywy","wywz","wyx","wyxw","wyxx","wyxy","wyxz","wyy","wyyw","wyyx","wyyy","wyyz","wyz","wyzw","wyzx","wyzy","wyzz","wz","wzw","wzww","wzwx","wzwy","wzwz","wzx","wzxw","wzxx","wzxy","wzxz","wzy","wzyw","wzyx","wzyy","wzyz","wzz","wzzw","wzzx","wzzy","wzzz","x","x","x_axis","x_axis","x_axis","xw","xww","xwww","xwwx","xwwy","xwwz","xwx","xwxw","xwxx","xwxy","xwxz","xwy","xwyw","xwyx","xwyy","xwyz","xwz","xwzw","xwzx","xwzy","xwzz","xx","xx","xx","xx","xxw","xxww","xxwx","xxwy","xxwz","xxx","xxx","xxx","xxx","xxxw","xxxx","xxxx","xxxx","xxxx","xxxy","xxxy","xxxy","xxxy","xxxz","xxxz","xxxz","xxy","xxy","xxy","xxy","xxyw","xxyx","xxyx","xxyx","xxyx","xxyy","xxyy","xxyy","xxyy","xxyz","xxyz","xxyz","xxz","xxz","xxz","xxzw","xxzx","xxzx","xxzx","xxzy","xxzy","xxzy","xxzz","xxzz","xxzz","xy","xy","xy","xy","xyw","xyww","xywx","xywy","xywz","xyx","xyx","xyx","xyx","xyxw","xyxx","xyxx","xyxx","xyxx","xyxy","xyxy","xyxy","xyxy","xyxz","xyxz","xyxz","xyy","xyy","xyy","xyy","xyyw","xyyx","xyyx","xyyx","xyyx","xyyy","xyyy","xyyy","xyyy","xyyz","xyyz","xyyz","xyz","xyz","xyz","xyz","xyzw","xyzx","xyzx","xyzx","xyzy","xyzy","xyzy","xyzz","xyzz","xyzz","xz","xz","xz","xzw","xzww","xzwx","xzwy","xzwz","xzx","xzx","xzx","xzxw","xzxx","xzxx","xzxx","xzxy","xzxy","xzxy","xzxz","xzxz","xzxz","xzy","xzy","xzy","xzyw","xzyx","xzyx","xzyx","xzyy","xzyy","xzyy","xzyz","xzyz","xzyz","xzz","xzz","xzz","xzzw","xzzx","xzzx","xzzx","xzzy","xzzy","xzzy","xzzz","xzzz","xzzz","y","y","y_axis","y_axis","y_axis","yw","yww","ywww","ywwx","ywwy","ywwz","ywx","ywxw","ywxx","ywxy","ywxz","ywy","ywyw","ywyx","ywyy","ywyz","ywz","ywzw","ywzx","ywzy","ywzz","yx","yx","yx","yx","yxw","yxww","yxwx","yxwy","yxwz","yxx","yxx","yxx","yxx","yxxw","yxxx","yxxx","yxxx","yxxx","yxxy","yxxy","yxxy","yxxy","yxxz","yxxz","yxxz","yxy","yxy","yxy","yxy","yxyw","yxyx","yxyx","yxyx","yxyx","yxyy","yxyy","yxyy","yxyy","yxyz","yxyz","yxyz","yxz","yxz","yxz","yxzw","yxzx","yxzx","yxzx","yxzy","yxzy","yxzy","yxzz","yxzz","yxzz","yy","yy","yy","yy","yyw","yyww","yywx","yywy","yywz","yyx","yyx","yyx","yyx","yyxw","yyxx","yyxx","yyxx","yyxx","yyxy","yyxy","yyxy","yyxy","yyxz","yyxz","yyxz","yyy","yyy","yyy","yyy","yyyw","yyyx","yyyx","yyyx","yyyx","yyyy","yyyy","yyyy","yyyy","yyyz","yyyz","yyyz","yyz","yyz","yyz","yyzw","yyzx","yyzx","yyzx","yyzy","yyzy","yyzy","yyzz","yyzz","yyzz","yz","yz","yz","yzw","yzww","yzwx","yzwy","yzwz","yzx","yzx","yzx","yzxw","yzxx","yzxx","yzxx","yzxy","yzxy","yzxy","yzxz","yzxz","yzxz","yzy","yzy","yzy","yzyw","yzyx","yzyx","yzyx","yzyy","yzyy","yzyy","yzyz","yzyz","yzyz","yzz","yzz","yzz","yzzw","yzzx","yzzx","yzzx","yzzy","yzzy","yzzy","yzzz","yzzz","yzzz","z","z_axis","z_axis","z_axis","zw","zww","zwww","zwwx","zwwy","zwwz","zwx","zwxw","zwxx","zwxy","zwxz","zwy","zwyw","zwyx","zwyy","zwyz","zwz","zwzw","zwzx","zwzy","zwzz","zx","zx","zx","zxw","zxww","zxwx","zxwy","zxwz","zxx","zxx","zxx","zxxw","zxxx","zxxx","zxxx","zxxy","zxxy","zxxy","zxxz","zxxz","zxxz","zxy","zxy","zxy","zxyw","zxyx","zxyx","zxyx","zxyy","zxyy","zxyy","zxyz","zxyz","zxyz","zxz","zxz","zxz","zxzw","zxzx","zxzx","zxzx","zxzy","zxzy","zxzy","zxzz","zxzz","zxzz","zy","zy","zy","zyw","zyww","zywx","zywy","zywz","zyx","zyx","zyx","zyxw","zyxx","zyxx","zyxx","zyxy","zyxy","zyxy","zyxz","zyxz","zyxz","zyy","zyy","zyy","zyyw","zyyx","zyyx","zyyx","zyyy","zyyy","zyyy","zyyz","zyyz","zyyz","zyz","zyz","zyz","zyzw","zyzx","zyzx","zyzx","zyzy","zyzy","zyzy","zyzz","zyzz","zyzz","zz","zz","zz","zzw","zzww","zzwx","zzwy","zzwz","zzx","zzx","zzx","zzxw","zzxx","zzxx","zzxx","zzxy","zzxy","zzxy","zzxz","zzxz","zzxz","zzy","zzy","zzy","zzyw","zzyx","zzyx","zzyx","zzyy","zzyy","zzyy","zzyz","zzyz","zzyz","zzz","zzz","zzz","zzzw","zzzx","zzzx","zzzx","zzzy","zzzy","zzzy","zzzz","zzzz","zzzz","AXES","AXES","AXES","DAffine2","DAffine3","DMat2","DMat3","DMat4","DQuat","DVec2","DVec3","DVec4","IDENTITY","IDENTITY","IDENTITY","IDENTITY","IDENTITY","IDENTITY","INFINITY","INFINITY","INFINITY","MAX","MAX","MAX","MIN","MIN","MIN","NAN","NAN","NAN","NAN","NAN","NAN","NAN","NAN","NAN","NEG_INFINITY","NEG_INFINITY","NEG_INFINITY","NEG_ONE","NEG_ONE","NEG_ONE","NEG_W","NEG_X","NEG_X","NEG_X","NEG_Y","NEG_Y","NEG_Y","NEG_Z","NEG_Z","ONE","ONE","ONE","W","X","X","X","Y","Y","Y","Z","Z","ZERO","ZERO","ZERO","ZERO","ZERO","ZERO","ZERO","ZERO","abs","abs","abs","abs_diff_eq","abs_diff_eq","abs_diff_eq","abs_diff_eq","abs_diff_eq","abs_diff_eq","abs_diff_eq","abs_diff_eq","abs_diff_eq","add","add","add","add","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_mat2","add_mat3","add_mat4","angle_between","angle_between","angle_between","any_orthogonal_vector","any_orthonormal_pair","any_orthonormal_vector","as_f32","as_i64vec2","as_i64vec3","as_i64vec4","as_ivec2","as_ivec3","as_ivec4","as_mat2","as_mat3","as_mat4","as_mut","as_mut","as_mut","as_mut","as_mut","as_mut","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_u64vec2","as_u64vec3","as_u64vec4","as_uvec2","as_uvec3","as_uvec4","as_vec2","as_vec3","as_vec3a","as_vec4","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","ceil","ceil","ceil","clamp","clamp","clamp","clamp_length","clamp_length","clamp_length","clamp_length_max","clamp_length_max","clamp_length_max","clamp_length_min","clamp_length_min","clamp_length_min","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmpeq","cmpeq","cmpeq","cmpge","cmpge","cmpge","cmpgt","cmpgt","cmpgt","cmple","cmple","cmple","cmplt","cmplt","cmplt","cmpne","cmpne","cmpne","col","col","col","col_mut","col_mut","col_mut","conjugate","copysign","copysign","copysign","cross","default","default","default","default","default","default","default","default","default","deref","deref","deref_mut","deref_mut","determinant","determinant","determinant","distance","distance","distance","distance_squared","distance_squared","distance_squared","div","div","div","div","div","div","div","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_euclid","div_euclid","div_euclid","dmat2","dmat3","dmat4","dot","dot","dot","dot","dot_into_vec","dot_into_vec","dot_into_vec","dquat","dvec2","dvec3","dvec4","eq","eq","eq","eq","eq","eq","eq","eq","eq","exp","exp","exp","extend","extend","floor","floor","floor","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fract","fract","fract","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_affine3","from_angle","from_angle","from_angle","from_angle","from_angle_translation","from_array","from_array","from_array","from_array","from_axis_angle","from_axis_angle","from_axis_angle","from_axis_angle","from_cols","from_cols","from_cols","from_cols","from_cols","from_cols_array","from_cols_array","from_cols_array","from_cols_array","from_cols_array","from_cols_array_2d","from_cols_array_2d","from_cols_array_2d","from_cols_array_2d","from_cols_array_2d","from_cols_slice","from_cols_slice","from_cols_slice","from_cols_slice","from_cols_slice","from_diagonal","from_diagonal","from_diagonal","from_euler","from_euler","from_euler","from_mat2","from_mat2","from_mat2_translation","from_mat3","from_mat3","from_mat3","from_mat3","from_mat3","from_mat3_translation","from_mat4","from_mat4","from_mat4","from_quat","from_quat","from_quat","from_rotation_arc","from_rotation_arc_2d","from_rotation_arc_colinear","from_rotation_translation","from_rotation_translation","from_rotation_x","from_rotation_x","from_rotation_x","from_rotation_x","from_rotation_y","from_rotation_y","from_rotation_y","from_rotation_y","from_rotation_z","from_rotation_z","from_rotation_z","from_rotation_z","from_scale","from_scale","from_scale","from_scale","from_scale_angle","from_scale_angle_translation","from_scale_angle_translation","from_scale_rotation_translation","from_scale_rotation_translation","from_scaled_axis","from_slice","from_slice","from_slice","from_slice","from_translation","from_translation","from_translation","from_translation","from_vec4","from_xyzw","index","index","index","index_mut","index_mut","index_mut","into","into","into","into","into","into","into","into","into","inverse","inverse","inverse","inverse","inverse","inverse","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_nan","is_nan","is_nan","is_nan","is_nan","is_nan","is_nan","is_nan","is_nan","is_nan_mask","is_nan_mask","is_nan_mask","is_near_identity","is_negative_bitmask","is_negative_bitmask","is_negative_bitmask","is_normalized","is_normalized","is_normalized","is_normalized","length","length","length","length","length_recip","length_recip","length_recip","length_recip","length_squared","length_squared","length_squared","length_squared","lerp","lerp","lerp","lerp","look_at_lh","look_at_lh","look_at_rh","look_at_rh","look_to_lh","look_to_lh","look_to_rh","look_to_rh","matrix2","matrix3","max","max","max","max_element","max_element","max_element","min","min","min","min_element","min_element","min_element","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul_add","mul_add","mul_add","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_mat2","mul_mat3","mul_mat4","mul_quat","mul_scalar","mul_scalar","mul_scalar","mul_vec2","mul_vec3","mul_vec3","mul_vec4","neg","neg","neg","neg","neg","neg","neg","new","new","new","normalize","normalize","normalize","normalize","normalize_or_zero","normalize_or_zero","normalize_or_zero","orthographic_lh","orthographic_rh","orthographic_rh_gl","perp","perp_dot","perspective_infinite_lh","perspective_infinite_reverse_lh","perspective_infinite_reverse_rh","perspective_infinite_rh","perspective_lh","perspective_rh","perspective_rh_gl","powf","powf","powf","product","product","product","product","product","product","product","product","product","product","product","product","product","product","product","product","project_onto","project_onto","project_onto","project_onto_normalized","project_onto_normalized","project_onto_normalized","project_point3","recip","recip","recip","reject_from","reject_from","reject_from","reject_from_normalized","reject_from_normalized","reject_from_normalized","rem","rem","rem","rem","rem","rem","rem_assign","rem_assign","rem_assign","rem_assign","rem_assign","rem_assign","rem_euclid","rem_euclid","rem_euclid","rotate","round","round","round","row","row","row","select","select","select","signum","signum","signum","slerp","splat","splat","splat","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_mat2","sub_mat3","sub_mat4","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","to_array","to_array","to_array","to_array","to_axis_angle","to_cols_array","to_cols_array","to_cols_array","to_cols_array","to_cols_array","to_cols_array_2d","to_cols_array_2d","to_cols_array_2d","to_cols_array_2d","to_cols_array_2d","to_euler","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_scale_angle_translation","to_scale_rotation_translation","to_scale_rotation_translation","to_scaled_axis","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","transform_point2","transform_point2","transform_point3","transform_point3","transform_vector2","transform_vector2","transform_vector3","transform_vector3","translation","translation","transpose","transpose","transpose","trunc","trunc","trunc","truncate","truncate","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_normalize","try_normalize","try_normalize","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","w","w","w_axis","write_cols_to_slice","write_cols_to_slice","write_cols_to_slice","write_cols_to_slice","write_cols_to_slice","write_to_slice","write_to_slice","write_to_slice","write_to_slice","ww","www","wwww","wwwx","wwwy","wwwz","wwx","wwxw","wwxx","wwxy","wwxz","wwy","wwyw","wwyx","wwyy","wwyz","wwz","wwzw","wwzx","wwzy","wwzz","wx","wxw","wxww","wxwx","wxwy","wxwz","wxx","wxxw","wxxx","wxxy","wxxz","wxy","wxyw","wxyx","wxyy","wxyz","wxz","wxzw","wxzx","wxzy","wxzz","wy","wyw","wyww","wywx","wywy","wywz","wyx","wyxw","wyxx","wyxy","wyxz","wyy","wyyw","wyyx","wyyy","wyyz","wyz","wyzw","wyzx","wyzy","wyzz","wz","wzw","wzww","wzwx","wzwy","wzwz","wzx","wzxw","wzxx","wzxy","wzxz","wzy","wzyw","wzyx","wzyy","wzyz","wzz","wzzw","wzzx","wzzy","wzzz","x","x","x","x","x_axis","x_axis","x_axis","xw","xww","xwww","xwwx","xwwy","xwwz","xwx","xwxw","xwxx","xwxy","xwxz","xwy","xwyw","xwyx","xwyy","xwyz","xwz","xwzw","xwzx","xwzy","xwzz","xx","xx","xx","xxw","xxww","xxwx","xxwy","xxwz","xxx","xxx","xxx","xxxw","xxxx","xxxx","xxxx","xxxy","xxxy","xxxy","xxxz","xxxz","xxy","xxy","xxy","xxyw","xxyx","xxyx","xxyx","xxyy","xxyy","xxyy","xxyz","xxyz","xxz","xxz","xxzw","xxzx","xxzx","xxzy","xxzy","xxzz","xxzz","xy","xy","xy","xyw","xyww","xywx","xywy","xywz","xyx","xyx","xyx","xyxw","xyxx","xyxx","xyxx","xyxy","xyxy","xyxy","xyxz","xyxz","xyy","xyy","xyy","xyyw","xyyx","xyyx","xyyx","xyyy","xyyy","xyyy","xyyz","xyyz","xyz","xyz","xyz","xyzw","xyzx","xyzx","xyzy","xyzy","xyzz","xyzz","xz","xz","xzw","xzww","xzwx","xzwy","xzwz","xzx","xzx","xzxw","xzxx","xzxx","xzxy","xzxy","xzxz","xzxz","xzy","xzy","xzyw","xzyx","xzyx","xzyy","xzyy","xzyz","xzyz","xzz","xzz","xzzw","xzzx","xzzx","xzzy","xzzy","xzzz","xzzz","y","y","y","y","y_axis","y_axis","y_axis","yw","yww","ywww","ywwx","ywwy","ywwz","ywx","ywxw","ywxx","ywxy","ywxz","ywy","ywyw","ywyx","ywyy","ywyz","ywz","ywzw","ywzx","ywzy","ywzz","yx","yx","yx","yxw","yxww","yxwx","yxwy","yxwz","yxx","yxx","yxx","yxxw","yxxx","yxxx","yxxx","yxxy","yxxy","yxxy","yxxz","yxxz","yxy","yxy","yxy","yxyw","yxyx","yxyx","yxyx","yxyy","yxyy","yxyy","yxyz","yxyz","yxz","yxz","yxzw","yxzx","yxzx","yxzy","yxzy","yxzz","yxzz","yy","yy","yy","yyw","yyww","yywx","yywy","yywz","yyx","yyx","yyx","yyxw","yyxx","yyxx","yyxx","yyxy","yyxy","yyxy","yyxz","yyxz","yyy","yyy","yyy","yyyw","yyyx","yyyx","yyyx","yyyy","yyyy","yyyy","yyyz","yyyz","yyz","yyz","yyzw","yyzx","yyzx","yyzy","yyzy","yyzz","yyzz","yz","yz","yzw","yzww","yzwx","yzwy","yzwz","yzx","yzx","yzxw","yzxx","yzxx","yzxy","yzxy","yzxz","yzxz","yzy","yzy","yzyw","yzyx","yzyx","yzyy","yzyy","yzyz","yzyz","yzz","yzz","yzzw","yzzx","yzzx","yzzy","yzzy","yzzz","yzzz","z","z","z","z_axis","z_axis","zw","zww","zwww","zwwx","zwwy","zwwz","zwx","zwxw","zwxx","zwxy","zwxz","zwy","zwyw","zwyx","zwyy","zwyz","zwz","zwzw","zwzx","zwzy","zwzz","zx","zx","zxw","zxww","zxwx","zxwy","zxwz","zxx","zxx","zxxw","zxxx","zxxx","zxxy","zxxy","zxxz","zxxz","zxy","zxy","zxyw","zxyx","zxyx","zxyy","zxyy","zxyz","zxyz","zxz","zxz","zxzw","zxzx","zxzx","zxzy","zxzy","zxzz","zxzz","zy","zy","zyw","zyww","zywx","zywy","zywz","zyx","zyx","zyxw","zyxx","zyxx","zyxy","zyxy","zyxz","zyxz","zyy","zyy","zyyw","zyyx","zyyx","zyyy","zyyy","zyyz","zyyz","zyz","zyz","zyzw","zyzx","zyzx","zyzy","zyzy","zyzz","zyzz","zz","zz","zzw","zzww","zzwx","zzwy","zzwz","zzx","zzx","zzxw","zzxx","zzxx","zzxy","zzxy","zzxz","zzxz","zzy","zzy","zzyw","zzyx","zzyx","zzyy","zzyy","zzyz","zzyz","zzz","zzz","zzzw","zzzx","zzzx","zzzy","zzzy","zzzz","zzzz","AXES","AXES","AXES","IVec2","IVec3","IVec4","MAX","MAX","MAX","MIN","MIN","MIN","NEG_ONE","NEG_ONE","NEG_ONE","NEG_W","NEG_X","NEG_X","NEG_X","NEG_Y","NEG_Y","NEG_Y","NEG_Z","NEG_Z","ONE","ONE","ONE","W","X","X","X","Y","Y","Y","Z","Z","ZERO","ZERO","ZERO","abs","abs","abs","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","as_dvec2","as_dvec3","as_dvec4","as_i64vec2","as_i64vec3","as_i64vec4","as_mut","as_mut","as_mut","as_ref","as_ref","as_ref","as_u64vec2","as_u64vec3","as_u64vec4","as_uvec2","as_uvec3","as_uvec4","as_vec2","as_vec3","as_vec3a","as_vec4","bitand","bitand","bitand","bitand","bitand","bitand","bitor","bitor","bitor","bitor","bitor","bitor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clamp","clamp","clamp","clone","clone","clone","clone_into","clone_into","clone_into","cmpeq","cmpeq","cmpeq","cmpge","cmpge","cmpge","cmpgt","cmpgt","cmpgt","cmple","cmple","cmple","cmplt","cmplt","cmplt","cmpne","cmpne","cmpne","cross","default","default","default","distance_squared","distance_squared","distance_squared","div","div","div","div","div","div","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_euclid","div_euclid","div_euclid","dot","dot","dot","dot_into_vec","dot_into_vec","dot_into_vec","eq","eq","eq","extend","extend","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_array","from_array","from_array","from_slice","from_slice","from_slice","hash","hash","hash","index","index","index","index_mut","index_mut","index_mut","into","into","into","is_negative_bitmask","is_negative_bitmask","is_negative_bitmask","ivec2","ivec3","ivec4","length_squared","length_squared","length_squared","max","max","max","max_element","max_element","max_element","min","min","min","min_element","min_element","min_element","mul","mul","mul","mul","mul","mul","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","neg","neg","neg","new","new","new","not","not","not","perp","perp_dot","product","product","product","product","product","product","rem","rem","rem","rem","rem","rem","rem_assign","rem_assign","rem_assign","rem_assign","rem_assign","rem_assign","rem_euclid","rem_euclid","rem_euclid","rotate","saturating_add","saturating_add","saturating_add","saturating_div","saturating_div","saturating_div","saturating_mul","saturating_mul","saturating_mul","saturating_sub","saturating_sub","saturating_sub","select","select","select","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","signum","signum","signum","splat","splat","splat","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sum","sum","sum","sum","sum","sum","to_array","to_array","to_array","to_owned","to_owned","to_owned","to_string","to_string","to_string","truncate","truncate","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","w","wrapping_add","wrapping_add","wrapping_add","wrapping_div","wrapping_div","wrapping_div","wrapping_mul","wrapping_mul","wrapping_mul","wrapping_sub","wrapping_sub","wrapping_sub","write_to_slice","write_to_slice","write_to_slice","ww","www","wwww","wwwx","wwwy","wwwz","wwx","wwxw","wwxx","wwxy","wwxz","wwy","wwyw","wwyx","wwyy","wwyz","wwz","wwzw","wwzx","wwzy","wwzz","wx","wxw","wxww","wxwx","wxwy","wxwz","wxx","wxxw","wxxx","wxxy","wxxz","wxy","wxyw","wxyx","wxyy","wxyz","wxz","wxzw","wxzx","wxzy","wxzz","wy","wyw","wyww","wywx","wywy","wywz","wyx","wyxw","wyxx","wyxy","wyxz","wyy","wyyw","wyyx","wyyy","wyyz","wyz","wyzw","wyzx","wyzy","wyzz","wz","wzw","wzww","wzwx","wzwy","wzwz","wzx","wzxw","wzxx","wzxy","wzxz","wzy","wzyw","wzyx","wzyy","wzyz","wzz","wzzw","wzzx","wzzy","wzzz","x","x","x","xw","xww","xwww","xwwx","xwwy","xwwz","xwx","xwxw","xwxx","xwxy","xwxz","xwy","xwyw","xwyx","xwyy","xwyz","xwz","xwzw","xwzx","xwzy","xwzz","xx","xx","xx","xxw","xxww","xxwx","xxwy","xxwz","xxx","xxx","xxx","xxxw","xxxx","xxxx","xxxx","xxxy","xxxy","xxxy","xxxz","xxxz","xxy","xxy","xxy","xxyw","xxyx","xxyx","xxyx","xxyy","xxyy","xxyy","xxyz","xxyz","xxz","xxz","xxzw","xxzx","xxzx","xxzy","xxzy","xxzz","xxzz","xy","xy","xy","xyw","xyww","xywx","xywy","xywz","xyx","xyx","xyx","xyxw","xyxx","xyxx","xyxx","xyxy","xyxy","xyxy","xyxz","xyxz","xyy","xyy","xyy","xyyw","xyyx","xyyx","xyyx","xyyy","xyyy","xyyy","xyyz","xyyz","xyz","xyz","xyzw","xyzx","xyzx","xyzy","xyzy","xyzz","xyzz","xz","xz","xzw","xzww","xzwx","xzwy","xzwz","xzx","xzx","xzxw","xzxx","xzxx","xzxy","xzxy","xzxz","xzxz","xzy","xzy","xzyw","xzyx","xzyx","xzyy","xzyy","xzyz","xzyz","xzz","xzz","xzzw","xzzx","xzzx","xzzy","xzzy","xzzz","xzzz","y","y","y","yw","yww","ywww","ywwx","ywwy","ywwz","ywx","ywxw","ywxx","ywxy","ywxz","ywy","ywyw","ywyx","ywyy","ywyz","ywz","ywzw","ywzx","ywzy","ywzz","yx","yx","yx","yxw","yxww","yxwx","yxwy","yxwz","yxx","yxx","yxx","yxxw","yxxx","yxxx","yxxx","yxxy","yxxy","yxxy","yxxz","yxxz","yxy","yxy","yxy","yxyw","yxyx","yxyx","yxyx","yxyy","yxyy","yxyy","yxyz","yxyz","yxz","yxz","yxzw","yxzx","yxzx","yxzy","yxzy","yxzz","yxzz","yy","yy","yy","yyw","yyww","yywx","yywy","yywz","yyx","yyx","yyx","yyxw","yyxx","yyxx","yyxx","yyxy","yyxy","yyxy","yyxz","yyxz","yyy","yyy","yyy","yyyw","yyyx","yyyx","yyyx","yyyy","yyyy","yyyy","yyyz","yyyz","yyz","yyz","yyzw","yyzx","yyzx","yyzy","yyzy","yyzz","yyzz","yz","yz","yzw","yzww","yzwx","yzwy","yzwz","yzx","yzx","yzxw","yzxx","yzxx","yzxy","yzxy","yzxz","yzxz","yzy","yzy","yzyw","yzyx","yzyx","yzyy","yzyy","yzyz","yzyz","yzz","yzz","yzzw","yzzx","yzzx","yzzy","yzzy","yzzz","yzzz","z","z","zw","zww","zwww","zwwx","zwwy","zwwz","zwx","zwxw","zwxx","zwxy","zwxz","zwy","zwyw","zwyx","zwyy","zwyz","zwz","zwzw","zwzx","zwzy","zwzz","zx","zx","zxw","zxww","zxwx","zxwy","zxwz","zxx","zxx","zxxw","zxxx","zxxx","zxxy","zxxy","zxxz","zxxz","zxy","zxy","zxyw","zxyx","zxyx","zxyy","zxyy","zxyz","zxyz","zxz","zxz","zxzw","zxzx","zxzx","zxzy","zxzy","zxzz","zxzz","zy","zy","zyw","zyww","zywx","zywy","zywz","zyx","zyx","zyxw","zyxx","zyxx","zyxy","zyxy","zyxz","zyxz","zyy","zyy","zyyw","zyyx","zyyx","zyyy","zyyy","zyyz","zyyz","zyz","zyz","zyzw","zyzx","zyzx","zyzy","zyzy","zyzz","zyzz","zz","zz","zzw","zzww","zzwx","zzwy","zzwz","zzx","zzx","zzxw","zzxx","zzxx","zzxy","zzxy","zzxz","zzxz","zzy","zzy","zzyw","zzyx","zzyx","zzyy","zzyy","zzyz","zzyz","zzz","zzz","zzzw","zzzx","zzzx","zzzy","zzzy","zzzz","zzzz","AXES","AXES","AXES","I64Vec2","I64Vec3","I64Vec4","MAX","MAX","MAX","MIN","MIN","MIN","NEG_ONE","NEG_ONE","NEG_ONE","NEG_W","NEG_X","NEG_X","NEG_X","NEG_Y","NEG_Y","NEG_Y","NEG_Z","NEG_Z","ONE","ONE","ONE","W","X","X","X","Y","Y","Y","Z","Z","ZERO","ZERO","ZERO","abs","abs","abs","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","as_dvec2","as_dvec3","as_dvec4","as_ivec2","as_ivec3","as_ivec4","as_mut","as_mut","as_mut","as_ref","as_ref","as_ref","as_u64vec2","as_u64vec3","as_u64vec4","as_uvec2","as_uvec3","as_uvec4","as_vec2","as_vec3","as_vec3a","as_vec4","bitand","bitand","bitand","bitand","bitand","bitand","bitor","bitor","bitor","bitor","bitor","bitor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clamp","clamp","clamp","clone","clone","clone","clone_into","clone_into","clone_into","cmpeq","cmpeq","cmpeq","cmpge","cmpge","cmpge","cmpgt","cmpgt","cmpgt","cmple","cmple","cmple","cmplt","cmplt","cmplt","cmpne","cmpne","cmpne","cross","default","default","default","distance_squared","distance_squared","distance_squared","div","div","div","div","div","div","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_euclid","div_euclid","div_euclid","dot","dot","dot","dot_into_vec","dot_into_vec","dot_into_vec","eq","eq","eq","extend","extend","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_array","from_array","from_array","from_slice","from_slice","from_slice","hash","hash","hash","i64vec2","i64vec3","i64vec4","index","index","index","index_mut","index_mut","index_mut","into","into","into","is_negative_bitmask","is_negative_bitmask","is_negative_bitmask","length_squared","length_squared","length_squared","max","max","max","max_element","max_element","max_element","min","min","min","min_element","min_element","min_element","mul","mul","mul","mul","mul","mul","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","neg","neg","neg","new","new","new","not","not","not","perp","perp_dot","product","product","product","product","product","product","rem","rem","rem","rem","rem","rem","rem_assign","rem_assign","rem_assign","rem_assign","rem_assign","rem_assign","rem_euclid","rem_euclid","rem_euclid","rotate","saturating_add","saturating_add","saturating_add","saturating_div","saturating_div","saturating_div","saturating_mul","saturating_mul","saturating_mul","saturating_sub","saturating_sub","saturating_sub","select","select","select","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","signum","signum","signum","splat","splat","splat","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sum","sum","sum","sum","sum","sum","to_array","to_array","to_array","to_owned","to_owned","to_owned","to_string","to_string","to_string","truncate","truncate","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","w","wrapping_add","wrapping_add","wrapping_add","wrapping_div","wrapping_div","wrapping_div","wrapping_mul","wrapping_mul","wrapping_mul","wrapping_sub","wrapping_sub","wrapping_sub","write_to_slice","write_to_slice","write_to_slice","ww","www","wwww","wwwx","wwwy","wwwz","wwx","wwxw","wwxx","wwxy","wwxz","wwy","wwyw","wwyx","wwyy","wwyz","wwz","wwzw","wwzx","wwzy","wwzz","wx","wxw","wxww","wxwx","wxwy","wxwz","wxx","wxxw","wxxx","wxxy","wxxz","wxy","wxyw","wxyx","wxyy","wxyz","wxz","wxzw","wxzx","wxzy","wxzz","wy","wyw","wyww","wywx","wywy","wywz","wyx","wyxw","wyxx","wyxy","wyxz","wyy","wyyw","wyyx","wyyy","wyyz","wyz","wyzw","wyzx","wyzy","wyzz","wz","wzw","wzww","wzwx","wzwy","wzwz","wzx","wzxw","wzxx","wzxy","wzxz","wzy","wzyw","wzyx","wzyy","wzyz","wzz","wzzw","wzzx","wzzy","wzzz","x","x","x","xw","xww","xwww","xwwx","xwwy","xwwz","xwx","xwxw","xwxx","xwxy","xwxz","xwy","xwyw","xwyx","xwyy","xwyz","xwz","xwzw","xwzx","xwzy","xwzz","xx","xx","xx","xxw","xxww","xxwx","xxwy","xxwz","xxx","xxx","xxx","xxxw","xxxx","xxxx","xxxx","xxxy","xxxy","xxxy","xxxz","xxxz","xxy","xxy","xxy","xxyw","xxyx","xxyx","xxyx","xxyy","xxyy","xxyy","xxyz","xxyz","xxz","xxz","xxzw","xxzx","xxzx","xxzy","xxzy","xxzz","xxzz","xy","xy","xy","xyw","xyww","xywx","xywy","xywz","xyx","xyx","xyx","xyxw","xyxx","xyxx","xyxx","xyxy","xyxy","xyxy","xyxz","xyxz","xyy","xyy","xyy","xyyw","xyyx","xyyx","xyyx","xyyy","xyyy","xyyy","xyyz","xyyz","xyz","xyz","xyzw","xyzx","xyzx","xyzy","xyzy","xyzz","xyzz","xz","xz","xzw","xzww","xzwx","xzwy","xzwz","xzx","xzx","xzxw","xzxx","xzxx","xzxy","xzxy","xzxz","xzxz","xzy","xzy","xzyw","xzyx","xzyx","xzyy","xzyy","xzyz","xzyz","xzz","xzz","xzzw","xzzx","xzzx","xzzy","xzzy","xzzz","xzzz","y","y","y","yw","yww","ywww","ywwx","ywwy","ywwz","ywx","ywxw","ywxx","ywxy","ywxz","ywy","ywyw","ywyx","ywyy","ywyz","ywz","ywzw","ywzx","ywzy","ywzz","yx","yx","yx","yxw","yxww","yxwx","yxwy","yxwz","yxx","yxx","yxx","yxxw","yxxx","yxxx","yxxx","yxxy","yxxy","yxxy","yxxz","yxxz","yxy","yxy","yxy","yxyw","yxyx","yxyx","yxyx","yxyy","yxyy","yxyy","yxyz","yxyz","yxz","yxz","yxzw","yxzx","yxzx","yxzy","yxzy","yxzz","yxzz","yy","yy","yy","yyw","yyww","yywx","yywy","yywz","yyx","yyx","yyx","yyxw","yyxx","yyxx","yyxx","yyxy","yyxy","yyxy","yyxz","yyxz","yyy","yyy","yyy","yyyw","yyyx","yyyx","yyyx","yyyy","yyyy","yyyy","yyyz","yyyz","yyz","yyz","yyzw","yyzx","yyzx","yyzy","yyzy","yyzz","yyzz","yz","yz","yzw","yzww","yzwx","yzwy","yzwz","yzx","yzx","yzxw","yzxx","yzxx","yzxy","yzxy","yzxz","yzxz","yzy","yzy","yzyw","yzyx","yzyx","yzyy","yzyy","yzyz","yzyz","yzz","yzz","yzzw","yzzx","yzzx","yzzy","yzzy","yzzz","yzzz","z","z","zw","zww","zwww","zwwx","zwwy","zwwz","zwx","zwxw","zwxx","zwxy","zwxz","zwy","zwyw","zwyx","zwyy","zwyz","zwz","zwzw","zwzx","zwzy","zwzz","zx","zx","zxw","zxww","zxwx","zxwy","zxwz","zxx","zxx","zxxw","zxxx","zxxx","zxxy","zxxy","zxxz","zxxz","zxy","zxy","zxyw","zxyx","zxyx","zxyy","zxyy","zxyz","zxyz","zxz","zxz","zxzw","zxzx","zxzx","zxzy","zxzy","zxzz","zxzz","zy","zy","zyw","zyww","zywx","zywy","zywz","zyx","zyx","zyxw","zyxx","zyxx","zyxy","zyxy","zyxz","zyxz","zyy","zyy","zyyw","zyyx","zyyx","zyyy","zyyy","zyyz","zyyz","zyz","zyz","zyzw","zyzx","zyzx","zyzy","zyzy","zyzz","zyzz","zz","zz","zzw","zzww","zzwx","zzwy","zzwz","zzx","zzx","zzxw","zzxx","zzxx","zzxy","zzxy","zzxz","zzxz","zzy","zzy","zzyw","zzyx","zzyx","zzyy","zzyy","zzyz","zzyz","zzz","zzz","zzzw","zzzx","zzzx","zzzy","zzzy","zzzz","zzzz","Vec2","Vec2","Vec2Swizzles","Vec3","Vec3","Vec3Swizzles","Vec4","Vec4","Vec4Swizzles","ww","www","wwww","wwwx","wwwy","wwwz","wwx","wwxw","wwxx","wwxy","wwxz","wwy","wwyw","wwyx","wwyy","wwyz","wwz","wwzw","wwzx","wwzy","wwzz","wx","wxw","wxww","wxwx","wxwy","wxwz","wxx","wxxw","wxxx","wxxy","wxxz","wxy","wxyw","wxyx","wxyy","wxyz","wxz","wxzw","wxzx","wxzy","wxzz","wy","wyw","wyww","wywx","wywy","wywz","wyx","wyxw","wyxx","wyxy","wyxz","wyy","wyyw","wyyx","wyyy","wyyz","wyz","wyzw","wyzx","wyzy","wyzz","wz","wzw","wzww","wzwx","wzwy","wzwz","wzx","wzxw","wzxx","wzxy","wzxz","wzy","wzyw","wzyx","wzyy","wzyz","wzz","wzzw","wzzx","wzzy","wzzz","xw","xww","xwww","xwwx","xwwy","xwwz","xwx","xwxw","xwxx","xwxy","xwxz","xwy","xwyw","xwyx","xwyy","xwyz","xwz","xwzw","xwzx","xwzy","xwzz","xx","xx","xx","xxw","xxww","xxwx","xxwy","xxwz","xxx","xxx","xxx","xxxw","xxxx","xxxx","xxxx","xxxy","xxxy","xxxy","xxxz","xxxz","xxy","xxy","xxy","xxyw","xxyx","xxyx","xxyx","xxyy","xxyy","xxyy","xxyz","xxyz","xxz","xxz","xxzw","xxzx","xxzx","xxzy","xxzy","xxzz","xxzz","xy","xy","xy","xy","xyw","xyww","xywx","xywy","xywz","xyx","xyx","xyx","xyxw","xyxx","xyxx","xyxx","xyxy","xyxy","xyxy","xyxz","xyxz","xyy","xyy","xyy","xyyw","xyyx","xyyx","xyyx","xyyy","xyyy","xyyy","xyyz","xyyz","xyz","xyz","xyz","xyzw","xyzw","xyzx","xyzx","xyzy","xyzy","xyzz","xyzz","xz","xz","xzw","xzww","xzwx","xzwy","xzwz","xzx","xzx","xzxw","xzxx","xzxx","xzxy","xzxy","xzxz","xzxz","xzy","xzy","xzyw","xzyx","xzyx","xzyy","xzyy","xzyz","xzyz","xzz","xzz","xzzw","xzzx","xzzx","xzzy","xzzy","xzzz","xzzz","yw","yww","ywww","ywwx","ywwy","ywwz","ywx","ywxw","ywxx","ywxy","ywxz","ywy","ywyw","ywyx","ywyy","ywyz","ywz","ywzw","ywzx","ywzy","ywzz","yx","yx","yx","yxw","yxww","yxwx","yxwy","yxwz","yxx","yxx","yxx","yxxw","yxxx","yxxx","yxxx","yxxy","yxxy","yxxy","yxxz","yxxz","yxy","yxy","yxy","yxyw","yxyx","yxyx","yxyx","yxyy","yxyy","yxyy","yxyz","yxyz","yxz","yxz","yxzw","yxzx","yxzx","yxzy","yxzy","yxzz","yxzz","yy","yy","yy","yyw","yyww","yywx","yywy","yywz","yyx","yyx","yyx","yyxw","yyxx","yyxx","yyxx","yyxy","yyxy","yyxy","yyxz","yyxz","yyy","yyy","yyy","yyyw","yyyx","yyyx","yyyx","yyyy","yyyy","yyyy","yyyz","yyyz","yyz","yyz","yyzw","yyzx","yyzx","yyzy","yyzy","yyzz","yyzz","yz","yz","yzw","yzww","yzwx","yzwy","yzwz","yzx","yzx","yzxw","yzxx","yzxx","yzxy","yzxy","yzxz","yzxz","yzy","yzy","yzyw","yzyx","yzyx","yzyy","yzyy","yzyz","yzyz","yzz","yzz","yzzw","yzzx","yzzx","yzzy","yzzy","yzzz","yzzz","zw","zww","zwww","zwwx","zwwy","zwwz","zwx","zwxw","zwxx","zwxy","zwxz","zwy","zwyw","zwyx","zwyy","zwyz","zwz","zwzw","zwzx","zwzy","zwzz","zx","zx","zxw","zxww","zxwx","zxwy","zxwz","zxx","zxx","zxxw","zxxx","zxxx","zxxy","zxxy","zxxz","zxxz","zxy","zxy","zxyw","zxyx","zxyx","zxyy","zxyy","zxyz","zxyz","zxz","zxz","zxzw","zxzx","zxzx","zxzy","zxzy","zxzz","zxzz","zy","zy","zyw","zyww","zywx","zywy","zywz","zyx","zyx","zyxw","zyxx","zyxx","zyxy","zyxy","zyxz","zyxz","zyy","zyy","zyyw","zyyx","zyyx","zyyy","zyyy","zyyz","zyyz","zyz","zyz","zyzw","zyzx","zyzx","zyzy","zyzy","zyzz","zyzz","zz","zz","zzw","zzww","zzwx","zzwy","zzwz","zzx","zzx","zzxw","zzxx","zzxx","zzxy","zzxy","zzxz","zzxz","zzy","zzy","zzyw","zzyx","zzyx","zzyy","zzyy","zzyz","zzyz","zzz","zzz","zzzw","zzzx","zzzx","zzzy","zzzy","zzzz","zzzz","AXES","AXES","AXES","MAX","MAX","MAX","MIN","MIN","MIN","ONE","ONE","ONE","UVec2","UVec3","UVec4","W","X","X","X","Y","Y","Y","Z","Z","ZERO","ZERO","ZERO","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","as_dvec2","as_dvec3","as_dvec4","as_i64vec2","as_i64vec3","as_i64vec4","as_ivec2","as_ivec3","as_ivec4","as_mut","as_mut","as_mut","as_ref","as_ref","as_ref","as_u64vec2","as_u64vec3","as_u64vec4","as_vec2","as_vec3","as_vec3a","as_vec4","bitand","bitand","bitand","bitand","bitand","bitand","bitor","bitor","bitor","bitor","bitor","bitor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clamp","clamp","clamp","clone","clone","clone","clone_into","clone_into","clone_into","cmpeq","cmpeq","cmpeq","cmpge","cmpge","cmpge","cmpgt","cmpgt","cmpgt","cmple","cmple","cmple","cmplt","cmplt","cmplt","cmpne","cmpne","cmpne","cross","default","default","default","div","div","div","div","div","div","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","dot","dot","dot","dot_into_vec","dot_into_vec","dot_into_vec","eq","eq","eq","extend","extend","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_array","from_array","from_array","from_slice","from_slice","from_slice","hash","hash","hash","index","index","index","index_mut","index_mut","index_mut","into","into","into","length_squared","length_squared","length_squared","max","max","max","max_element","max_element","max_element","min","min","min","min_element","min_element","min_element","mul","mul","mul","mul","mul","mul","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","new","new","new","not","not","not","product","product","product","product","product","product","rem","rem","rem","rem","rem","rem","rem_assign","rem_assign","rem_assign","rem_assign","rem_assign","rem_assign","saturating_add","saturating_add","saturating_add","saturating_div","saturating_div","saturating_div","saturating_mul","saturating_mul","saturating_mul","saturating_sub","saturating_sub","saturating_sub","select","select","select","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","splat","splat","splat","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sum","sum","sum","sum","sum","sum","to_array","to_array","to_array","to_owned","to_owned","to_owned","to_string","to_string","to_string","truncate","truncate","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","uvec2","uvec3","uvec4","w","wrapping_add","wrapping_add","wrapping_add","wrapping_div","wrapping_div","wrapping_div","wrapping_mul","wrapping_mul","wrapping_mul","wrapping_sub","wrapping_sub","wrapping_sub","write_to_slice","write_to_slice","write_to_slice","ww","www","wwww","wwwx","wwwy","wwwz","wwx","wwxw","wwxx","wwxy","wwxz","wwy","wwyw","wwyx","wwyy","wwyz","wwz","wwzw","wwzx","wwzy","wwzz","wx","wxw","wxww","wxwx","wxwy","wxwz","wxx","wxxw","wxxx","wxxy","wxxz","wxy","wxyw","wxyx","wxyy","wxyz","wxz","wxzw","wxzx","wxzy","wxzz","wy","wyw","wyww","wywx","wywy","wywz","wyx","wyxw","wyxx","wyxy","wyxz","wyy","wyyw","wyyx","wyyy","wyyz","wyz","wyzw","wyzx","wyzy","wyzz","wz","wzw","wzww","wzwx","wzwy","wzwz","wzx","wzxw","wzxx","wzxy","wzxz","wzy","wzyw","wzyx","wzyy","wzyz","wzz","wzzw","wzzx","wzzy","wzzz","x","x","x","xw","xww","xwww","xwwx","xwwy","xwwz","xwx","xwxw","xwxx","xwxy","xwxz","xwy","xwyw","xwyx","xwyy","xwyz","xwz","xwzw","xwzx","xwzy","xwzz","xx","xx","xx","xxw","xxww","xxwx","xxwy","xxwz","xxx","xxx","xxx","xxxw","xxxx","xxxx","xxxx","xxxy","xxxy","xxxy","xxxz","xxxz","xxy","xxy","xxy","xxyw","xxyx","xxyx","xxyx","xxyy","xxyy","xxyy","xxyz","xxyz","xxz","xxz","xxzw","xxzx","xxzx","xxzy","xxzy","xxzz","xxzz","xy","xy","xy","xyw","xyww","xywx","xywy","xywz","xyx","xyx","xyx","xyxw","xyxx","xyxx","xyxx","xyxy","xyxy","xyxy","xyxz","xyxz","xyy","xyy","xyy","xyyw","xyyx","xyyx","xyyx","xyyy","xyyy","xyyy","xyyz","xyyz","xyz","xyz","xyzw","xyzx","xyzx","xyzy","xyzy","xyzz","xyzz","xz","xz","xzw","xzww","xzwx","xzwy","xzwz","xzx","xzx","xzxw","xzxx","xzxx","xzxy","xzxy","xzxz","xzxz","xzy","xzy","xzyw","xzyx","xzyx","xzyy","xzyy","xzyz","xzyz","xzz","xzz","xzzw","xzzx","xzzx","xzzy","xzzy","xzzz","xzzz","y","y","y","yw","yww","ywww","ywwx","ywwy","ywwz","ywx","ywxw","ywxx","ywxy","ywxz","ywy","ywyw","ywyx","ywyy","ywyz","ywz","ywzw","ywzx","ywzy","ywzz","yx","yx","yx","yxw","yxww","yxwx","yxwy","yxwz","yxx","yxx","yxx","yxxw","yxxx","yxxx","yxxx","yxxy","yxxy","yxxy","yxxz","yxxz","yxy","yxy","yxy","yxyw","yxyx","yxyx","yxyx","yxyy","yxyy","yxyy","yxyz","yxyz","yxz","yxz","yxzw","yxzx","yxzx","yxzy","yxzy","yxzz","yxzz","yy","yy","yy","yyw","yyww","yywx","yywy","yywz","yyx","yyx","yyx","yyxw","yyxx","yyxx","yyxx","yyxy","yyxy","yyxy","yyxz","yyxz","yyy","yyy","yyy","yyyw","yyyx","yyyx","yyyx","yyyy","yyyy","yyyy","yyyz","yyyz","yyz","yyz","yyzw","yyzx","yyzx","yyzy","yyzy","yyzz","yyzz","yz","yz","yzw","yzww","yzwx","yzwy","yzwz","yzx","yzx","yzxw","yzxx","yzxx","yzxy","yzxy","yzxz","yzxz","yzy","yzy","yzyw","yzyx","yzyx","yzyy","yzyy","yzyz","yzyz","yzz","yzz","yzzw","yzzx","yzzx","yzzy","yzzy","yzzz","yzzz","z","z","zw","zww","zwww","zwwx","zwwy","zwwz","zwx","zwxw","zwxx","zwxy","zwxz","zwy","zwyw","zwyx","zwyy","zwyz","zwz","zwzw","zwzx","zwzy","zwzz","zx","zx","zxw","zxww","zxwx","zxwy","zxwz","zxx","zxx","zxxw","zxxx","zxxx","zxxy","zxxy","zxxz","zxxz","zxy","zxy","zxyw","zxyx","zxyx","zxyy","zxyy","zxyz","zxyz","zxz","zxz","zxzw","zxzx","zxzx","zxzy","zxzy","zxzz","zxzz","zy","zy","zyw","zyww","zywx","zywy","zywz","zyx","zyx","zyxw","zyxx","zyxx","zyxy","zyxy","zyxz","zyxz","zyy","zyy","zyyw","zyyx","zyyx","zyyy","zyyy","zyyz","zyyz","zyz","zyz","zyzw","zyzx","zyzx","zyzy","zyzy","zyzz","zyzz","zz","zz","zzw","zzww","zzwx","zzwy","zzwz","zzx","zzx","zzxw","zzxx","zzxx","zzxy","zzxy","zzxz","zzxz","zzy","zzy","zzyw","zzyx","zzyx","zzyy","zzyy","zzyz","zzyz","zzz","zzz","zzzw","zzzx","zzzx","zzzy","zzzy","zzzz","zzzz","AXES","AXES","AXES","MAX","MAX","MAX","MIN","MIN","MIN","ONE","ONE","ONE","U64Vec2","U64Vec3","U64Vec4","W","X","X","X","Y","Y","Y","Z","Z","ZERO","ZERO","ZERO","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","as_dvec2","as_dvec3","as_dvec4","as_i64vec2","as_i64vec3","as_i64vec4","as_ivec2","as_ivec3","as_ivec4","as_mut","as_mut","as_mut","as_ref","as_ref","as_ref","as_uvec2","as_uvec3","as_uvec4","as_vec2","as_vec3","as_vec3a","as_vec4","bitand","bitand","bitand","bitand","bitand","bitand","bitor","bitor","bitor","bitor","bitor","bitor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clamp","clamp","clamp","clone","clone","clone","clone_into","clone_into","clone_into","cmpeq","cmpeq","cmpeq","cmpge","cmpge","cmpge","cmpgt","cmpgt","cmpgt","cmple","cmple","cmple","cmplt","cmplt","cmplt","cmpne","cmpne","cmpne","cross","default","default","default","div","div","div","div","div","div","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","dot","dot","dot","dot_into_vec","dot_into_vec","dot_into_vec","eq","eq","eq","extend","extend","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_array","from_array","from_array","from_slice","from_slice","from_slice","hash","hash","hash","index","index","index","index_mut","index_mut","index_mut","into","into","into","length_squared","length_squared","length_squared","max","max","max","max_element","max_element","max_element","min","min","min","min_element","min_element","min_element","mul","mul","mul","mul","mul","mul","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","new","new","new","not","not","not","product","product","product","product","product","product","rem","rem","rem","rem","rem","rem","rem_assign","rem_assign","rem_assign","rem_assign","rem_assign","rem_assign","saturating_add","saturating_add","saturating_add","saturating_div","saturating_div","saturating_div","saturating_mul","saturating_mul","saturating_mul","saturating_sub","saturating_sub","saturating_sub","select","select","select","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shl","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","shr","splat","splat","splat","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sum","sum","sum","sum","sum","sum","to_array","to_array","to_array","to_owned","to_owned","to_owned","to_string","to_string","to_string","truncate","truncate","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","u64vec2","u64vec3","u64vec4","w","wrapping_add","wrapping_add","wrapping_add","wrapping_div","wrapping_div","wrapping_div","wrapping_mul","wrapping_mul","wrapping_mul","wrapping_sub","wrapping_sub","wrapping_sub","write_to_slice","write_to_slice","write_to_slice","ww","www","wwww","wwwx","wwwy","wwwz","wwx","wwxw","wwxx","wwxy","wwxz","wwy","wwyw","wwyx","wwyy","wwyz","wwz","wwzw","wwzx","wwzy","wwzz","wx","wxw","wxww","wxwx","wxwy","wxwz","wxx","wxxw","wxxx","wxxy","wxxz","wxy","wxyw","wxyx","wxyy","wxyz","wxz","wxzw","wxzx","wxzy","wxzz","wy","wyw","wyww","wywx","wywy","wywz","wyx","wyxw","wyxx","wyxy","wyxz","wyy","wyyw","wyyx","wyyy","wyyz","wyz","wyzw","wyzx","wyzy","wyzz","wz","wzw","wzww","wzwx","wzwy","wzwz","wzx","wzxw","wzxx","wzxy","wzxz","wzy","wzyw","wzyx","wzyy","wzyz","wzz","wzzw","wzzx","wzzy","wzzz","x","x","x","xw","xww","xwww","xwwx","xwwy","xwwz","xwx","xwxw","xwxx","xwxy","xwxz","xwy","xwyw","xwyx","xwyy","xwyz","xwz","xwzw","xwzx","xwzy","xwzz","xx","xx","xx","xxw","xxww","xxwx","xxwy","xxwz","xxx","xxx","xxx","xxxw","xxxx","xxxx","xxxx","xxxy","xxxy","xxxy","xxxz","xxxz","xxy","xxy","xxy","xxyw","xxyx","xxyx","xxyx","xxyy","xxyy","xxyy","xxyz","xxyz","xxz","xxz","xxzw","xxzx","xxzx","xxzy","xxzy","xxzz","xxzz","xy","xy","xy","xyw","xyww","xywx","xywy","xywz","xyx","xyx","xyx","xyxw","xyxx","xyxx","xyxx","xyxy","xyxy","xyxy","xyxz","xyxz","xyy","xyy","xyy","xyyw","xyyx","xyyx","xyyx","xyyy","xyyy","xyyy","xyyz","xyyz","xyz","xyz","xyzw","xyzx","xyzx","xyzy","xyzy","xyzz","xyzz","xz","xz","xzw","xzww","xzwx","xzwy","xzwz","xzx","xzx","xzxw","xzxx","xzxx","xzxy","xzxy","xzxz","xzxz","xzy","xzy","xzyw","xzyx","xzyx","xzyy","xzyy","xzyz","xzyz","xzz","xzz","xzzw","xzzx","xzzx","xzzy","xzzy","xzzz","xzzz","y","y","y","yw","yww","ywww","ywwx","ywwy","ywwz","ywx","ywxw","ywxx","ywxy","ywxz","ywy","ywyw","ywyx","ywyy","ywyz","ywz","ywzw","ywzx","ywzy","ywzz","yx","yx","yx","yxw","yxww","yxwx","yxwy","yxwz","yxx","yxx","yxx","yxxw","yxxx","yxxx","yxxx","yxxy","yxxy","yxxy","yxxz","yxxz","yxy","yxy","yxy","yxyw","yxyx","yxyx","yxyx","yxyy","yxyy","yxyy","yxyz","yxyz","yxz","yxz","yxzw","yxzx","yxzx","yxzy","yxzy","yxzz","yxzz","yy","yy","yy","yyw","yyww","yywx","yywy","yywz","yyx","yyx","yyx","yyxw","yyxx","yyxx","yyxx","yyxy","yyxy","yyxy","yyxz","yyxz","yyy","yyy","yyy","yyyw","yyyx","yyyx","yyyx","yyyy","yyyy","yyyy","yyyz","yyyz","yyz","yyz","yyzw","yyzx","yyzx","yyzy","yyzy","yyzz","yyzz","yz","yz","yzw","yzww","yzwx","yzwy","yzwz","yzx","yzx","yzxw","yzxx","yzxx","yzxy","yzxy","yzxz","yzxz","yzy","yzy","yzyw","yzyx","yzyx","yzyy","yzyy","yzyz","yzyz","yzz","yzz","yzzw","yzzx","yzzx","yzzy","yzzy","yzzz","yzzz","z","z","zw","zww","zwww","zwwx","zwwy","zwwz","zwx","zwxw","zwxx","zwxy","zwxz","zwy","zwyw","zwyx","zwyy","zwyz","zwz","zwzw","zwzx","zwzy","zwzz","zx","zx","zxw","zxww","zxwx","zxwy","zxwz","zxx","zxx","zxxw","zxxx","zxxx","zxxy","zxxy","zxxz","zxxz","zxy","zxy","zxyw","zxyx","zxyx","zxyy","zxyy","zxyz","zxyz","zxz","zxz","zxzw","zxzx","zxzx","zxzy","zxzy","zxzz","zxzz","zy","zy","zyw","zyww","zywx","zywy","zywz","zyx","zyx","zyxw","zyxx","zyxx","zyxy","zyxy","zyxz","zyxz","zyy","zyy","zyyw","zyyx","zyyx","zyyy","zyyy","zyyz","zyyz","zyz","zyz","zyzw","zyzx","zyzx","zyzy","zyzy","zyzz","zyzz","zz","zz","zzw","zzww","zzwx","zzwy","zzwz","zzx","zzx","zzxw","zzxx","zzxx","zzxy","zzxy","zzxz","zzxz","zzy","zzy","zzyw","zzyx","zzyx","zzyy","zzyy","zzyz","zzyz","zzz","zzz","zzzw","zzzx","zzzx","zzzy","zzzy","zzzz","zzzz"],"q":[[0,"glam"],[32,"glam::bool"],[206,"glam::f32"],[1853,"glam::f64"],[3163,"glam::i32"],[4060,"glam::i64"],[4954,"glam::swizzles"],[5447,"glam::u32"],[6308,"glam::u64"],[7166,"core::fmt"],[7167,"core::fmt"],[7168,"core::result"],[7169,"core::any"],[7170,"alloc::string"],[7171,"core::core_arch::x86"],[7172,"core::iter::traits::iterator"],[7173,"core::option"]],"d":["Rotation Helper Euler rotation sequences.","","","","Intrinsic three-axis rotation XYZ","Intrinsic three-axis rotation XZY","Intrinsic three-axis rotation YXZ","Intrinsic three-axis rotation YZX","Intrinsic three-axis rotation ZXY","Intrinsic three-axis rotation ZYX","bool vector mask types. ","","","","","Default YXZ as yaw (y-axis), pitch (x-axis), roll (z-axis).","","f32 vector, quaternion and matrix types. ","f64 vector, quaternion and matrix types. ","","Returns the argument unchanged.","","i32 vector types. ","i64 vector types. ","Calls U::from(self).","Traits adding swizzle methods to all vector types. ","","","","","u32 vector types. ","u64 vector types. ","A 2-dimensional bool vector mask.","A 3-dimensional bool vector mask.","A 3-dimensional SIMD vector mask.","A 4-dimensional bool vector mask.","A 4-dimensional SIMD vector mask.","All false.","All false.","All false.","All false.","All false.","All true.","All true.","All true.","All true.","All true.","Returns true if all the elements are true, false otherwise.","Returns true if all the elements are true, false otherwise.","Returns true if all the elements are true, false otherwise.","Returns true if all the elements are true, false otherwise.","Returns true if all the elements are true, false otherwise.","Returns true if any of the elements are true, false …","Returns true if any of the elements are true, false …","Returns true if any of the elements are true, false …","Returns true if any of the elements are true, false …","Returns true if any of the elements are true, false …","","","","","","","","","","","Returns a bitmask with the lowest 2 bits set from the …","Returns a bitmask with the lowest 3 bits set from the …","Returns a bitmask with the lowest 4 bits set from the …","Returns a bitmask with the lowest 3 bits set from the …","Returns a bitmask with the lowest 4 bits set from the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Creates a new vector mask.","Creates a new vector mask.","Creates a new vector mask.","Creates a new vector mask.","Creates a new vector mask.","","","","","","Sets the element at index.","Sets the element at index.","Sets the element at index.","Sets the element at index.","Sets the element at index.","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","Tests the value at index.","Tests the value at index.","Tests the value at index.","Tests the value at index.","Tests the value at index.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The unit axes.","The unit axes.","The unit axes.","The unit axes.","A 2D affine transform, which can represent translation, …","A 3D affine transform, which can represent translation, …","The identity transform.","The identity transform.","A 3x3 identity matrix, where all diagonal elements are 1, …","A 2x2 identity matrix, where all diagonal elements are 1, …","A 3x3 identity matrix, where all diagonal elements are 1, …","A 4x4 identity matrix, where all diagonal elements are 1, …","The identity quaternion. Corresponds to no rotation.","All f32::INFINITY.","All f32::INFINITY.","All f32::INFINITY.","All f32::INFINITY.","All f32::MAX.","All f32::MAX.","All f32::MAX.","All f32::MAX.","All f32::MIN.","All f32::MIN.","All f32::MIN.","All f32::MIN.","A 2x2 column major matrix.","A 3x3 column major matrix.","A 3x3 column major matrix.","A 4x4 column major matrix.","All NAN:s.","All NAN:s.","All NAN:s.","All f32::NAN.","All f32::NAN.","All NAN:s.","All NAN:s.","All NAN:s.","All NANs.","All f32::NAN.","All f32::NAN.","All f32::NEG_INFINITY.","All f32::NEG_INFINITY.","All f32::NEG_INFINITY.","All f32::NEG_INFINITY.","All negative ones.","All negative ones.","All negative ones.","All negative ones.","A unit vector pointing along the negative W axis.","A unit vector pointing along the negative X axis.","A unit vector pointing along the negative X axis.","A unit vector pointing along the negative X axis.","A unit vector pointing along the negative X axis.","A unit vector pointing along the negative Y axis.","A unit vector pointing along the negative Y axis.","A unit vector pointing along the negative Y axis.","A unit vector pointing along the negative Y axis.","A unit vector pointing along the negative Z axis.","A unit vector pointing along the negative Z axis.","A unit vector pointing along the negative Z axis.","All ones.","All ones.","All ones.","All ones.","A quaternion representing an orientation.","A 2-dimensional vector.","A 3-dimensional vector.","A 3-dimensional vector.","A 4-dimensional vector.","A unit vector pointing along the positive W axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Z axis.","A unit vector pointing along the positive Z axis.","A unit vector pointing along the positive Z axis.","The degenerate zero transform.","The degenerate zero transform.","A 3x3 matrix with all elements set to 0.0.","All zeroes.","All zeroes.","A 2x2 matrix with all elements set to 0.0.","A 3x3 matrix with all elements set to 0.0.","A 4x4 matrix with all elements set to 0.0.","All zeroes.","All zeroes.","Returns a vector containing the absolute value of each …","Returns a vector containing the absolute value of each …","Returns a vector containing the absolute value of each …","Returns a vector containing the absolute value of each …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","","","","","","","","","Adds two quaternions.","","","","","","","","","","","","","","","","","Adds two 2x2 matrices.","Adds two 3x3 matrices.","Adds two 3x3 matrices.","Adds two 4x4 matrices.","Returns the angle (in radians) between self and rhs in the …","Returns the angle (in radians) between two vectors.","Returns the angle (in radians) for the minimal rotation …","Returns the angle (in radians) between two vectors.","Returns some vector that is orthogonal to the given one.","Returns some vector that is orthogonal to the given one.","Given a unit vector return two other vectors that together …","Given a unit vector return two other vectors that together …","Returns any unit vector that is orthogonal to the given …","Returns any unit vector that is orthogonal to the given …","","","","","Casts all elements of self to f64.","Casts all elements of self to f64.","Casts all elements of self to f64.","Casts all elements of self to f64.","","Casts all elements of self to i64.","Casts all elements of self to i64.","Casts all elements of self to i64.","Casts all elements of self to i64.","Casts all elements of self to i32.","Casts all elements of self to i32.","Casts all elements of self to i32.","Casts all elements of self to i32.","","","","","","","","","","","","","","","","Casts all elements of self to u64.","Casts all elements of self to u64.","Casts all elements of self to u64.","Casts all elements of self to u64.","Casts all elements of self to u32.","Casts all elements of self to u32.","Casts all elements of self to u32.","Casts all elements of self to u32.","","","","","","","","","","","","","","","","","","","","","","","Returns a vector containing the smallest integer greater …","Returns a vector containing the smallest integer greater …","Returns a vector containing the smallest integer greater …","Returns a vector containing the smallest integer greater …","Component-wise clamping of values, similar to f32::clamp.","Component-wise clamping of values, similar to f32::clamp.","Component-wise clamping of values, similar to f32::clamp.","Component-wise clamping of values, similar to f32::clamp.","Returns a vector with a length no less than min and no …","Returns a vector with a length no less than min and no …","Returns a vector with a length no less than min and no …","Returns a vector with a length no less than min and no …","Returns a vector with a length no more than max","Returns a vector with a length no more than max","Returns a vector with a length no more than max","Returns a vector with a length no more than max","Returns a vector with a length no less than min","Returns a vector with a length no less than min","Returns a vector with a length no less than min","Returns a vector with a length no less than min","","","","","","","","","","","","","","","","","","","","","","","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a != …","Returns a vector mask containing the result of a != …","Returns a vector mask containing the result of a != …","Returns a vector mask containing the result of a != …","Returns the matrix column for the given index.","Returns the matrix column for the given index.","Returns the matrix column for the given index.","Returns the matrix column for the given index.","Returns a mutable reference to the matrix column for the …","Returns a mutable reference to the matrix column for the …","Returns a mutable reference to the matrix column for the …","Returns a mutable reference to the matrix column for the …","Returns the quaternion conjugate of self. For a unit …","Returns a vector with signs of rhs and the magnitudes of …","Returns a vector with signs of rhs and the magnitudes of …","Returns a vector with signs of rhs and the magnitudes of …","Returns a vector with signs of rhs and the magnitudes of …","Computes the cross product of self and rhs.","Computes the cross product of self and rhs.","","","","","","","","","","","","","","","","","","","","","","","","Returns the determinant of self.","Returns the determinant of self.","Returns the determinant of self.","Returns the determinant of self.","Computes the Euclidean distance between two points in …","Computes the Euclidean distance between two points in …","Computes the Euclidean distance between two points in …","Computes the Euclidean distance between two points in …","Compute the squared euclidean distance between two points …","Compute the squared euclidean distance between two points …","Compute the squared euclidean distance between two points …","Compute the squared euclidean distance between two points …","","","","","Divides a quaternion by a scalar value. The quotient is …","","","","","","","","","","","","","Returns the element-wise quotient of [Euclidean division] …","Returns the element-wise quotient of [Euclidean division] …","Returns the element-wise quotient of [Euclidean division] …","Returns the element-wise quotient of [Euclidean division] …","Computes the dot product of self and rhs.","Computes the dot product of self and rhs.","Computes the dot product of self and rhs. The dot product …","Computes the dot product of self and rhs.","Computes the dot product of self and rhs.","Returns a vector where every component is the dot product …","Returns a vector where every component is the dot product …","Returns a vector where every component is the dot product …","Returns a vector where every component is the dot product …","","","","","","","","","","","","Returns a vector containing e^self (the exponential …","Returns a vector containing e^self (the exponential …","Returns a vector containing e^self (the exponential …","Returns a vector containing e^self (the exponential …","Creates a 3D vector from self and the given z value.","Creates a 4D vector from self and the given w value.","Creates a 4D vector from self and the given w value.","Returns a vector containing the largest integer less than …","Returns a vector containing the largest integer less than …","Returns a vector containing the largest integer less than …","Returns a vector containing the largest integer less than …","","","","","","","","","","","","","","","","","","","","","","","Returns a vector containing the fractional part of the …","Returns a vector containing the fractional part of the …","Returns a vector containing the fractional part of the …","Returns a vector containing the fractional part of the …","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Creates a Vec3A from the x, y and z elements of self …","","","","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","","","","","Creates a quaternion from a 3x3 rotation matrix inside a …","Creates an affine transform from the given rotation angle.","Creates an affine transformation matrix from the given 2D …","Creates a 2D vector containing [angle.cos(), angle.sin()]. …","Creates a 2x2 matrix containing a rotation of angle (in …","Creates an affine transformation matrix from the given 2D …","Creates an affine transform from the given 2D rotation …","Creates a new vector from an array.","Creates a new vector from an array.","Creates a rotation quaternion from an array.","Creates a new vector from an array.","Creates a new vector from an array.","Creates an affine transform containing a 3D rotation …","Creates a 3D rotation matrix from a normalized rotation …","Creates a 3D rotation matrix from a normalized rotation …","Creates an affine transformation matrix containing a 3D …","Create a quaternion for a normalized rotation axis and …","Creates an affine transform from three column vectors.","Creates an affine transform from three column vectors.","Creates a 3x3 matrix from three column vectors.","Creates a 2x2 matrix from two column vectors.","Creates a 3x3 matrix from three column vectors.","Creates a 4x4 matrix from four column vectors.","Creates an affine transform from a [f32; 6] array stored …","Creates an affine transform from a [f32; 12] array stored …","Creates a 3x3 matrix from a [f32; 9] array stored in …","Creates a 2x2 matrix from a [f32; 4] array stored in …","Creates a 3x3 matrix from a [f32; 9] array stored in …","Creates a 4x4 matrix from a [f32; 16] array stored in …","Creates an affine transform from a [[f32; 2]; 3] 2D array …","Creates an affine transform from a [[f32; 3]; 4] 3D array …","Creates a 3x3 matrix from a [[f32; 3]; 3] 3D array stored …","Creates a 2x2 matrix from a [[f32; 2]; 2] 2D array stored …","Creates a 3x3 matrix from a [[f32; 3]; 3] 3D array stored …","Creates a 4x4 matrix from a [[f32; 4]; 4] 4D array stored …","Creates an affine transform from the first 6 values in …","Creates an affine transform from the first 12 values in …","Creates a 3x3 matrix from the first 9 values in slice.","Creates a 2x2 matrix from the first 4 values in slice.","Creates a 3x3 matrix from the first 9 values in slice.","Creates a 4x4 matrix from the first 16 values in slice.","Creates a 3x3 matrix with its diagonal set to diagonal and …","Creates a 2x2 matrix with its diagonal set to diagonal and …","Creates a 3x3 matrix with its diagonal set to diagonal and …","Creates a 4x4 matrix with its diagonal set to diagonal and …","Creates a 3D rotation matrix from the given euler rotation …","Creates a 3D rotation matrix from the given euler rotation …","Creates a affine transformation matrix containing a …","Creates a quaternion from the given Euler rotation …","Creates an affine transform from a 2x2 matrix (expressing …","Creates an affine transformation matrix from the given 2x2 …","Creates an affine transformation matrix from the given 2x2 …","Creates an affine transform from a 2x2 matrix (expressing …","The given Mat3 must be an affine transform,","Creates an affine transform from a 3x3 matrix (expressing …","Creates a 2x2 matrix from a 3x3 matrix, discarding the 2nd …","Creates an affine transformation matrix from the given 3x3 …","Creates a quaternion from a 3x3 rotation matrix.","Creates an affine transform from a 3x3 matrix (expressing …","The given Mat3A must be an affine transform,","Creates a 2x2 matrix from a 3x3 matrix, discarding the 2nd …","Creates an affine transformation matrix from the given 3x3 …","Creates a quaternion from a 3x3 SIMD aligned rotation …","The given Mat4 must be an affine transform, i.e. contain …","Creates a 3x3 matrix from a 4x4 matrix, discarding the 4th …","Creates a 3x3 matrix from a 4x4 matrix, discarding the 4th …","Creates a quaternion from a 3x3 rotation matrix inside a …","Creates an affine transform from the given rotation …","Creates a 3D rotation matrix from the given quaternion.","Creates a 3D rotation matrix from the given quaternion.","Creates an affine transformation matrix from the given …","Gets the minimal rotation for transforming from to to. …","Gets the minimal rotation for transforming from to to. …","Gets the minimal rotation for transforming from to either …","Creates an affine transform from the given 3D rotation and …","Creates an affine transformation matrix from the given 3D …","Creates an affine transform containing a 3D rotation …","Creates a 3D rotation matrix from angle (in radians) …","Creates a 3D rotation matrix from angle (in radians) …","Creates an affine transformation matrix containing a 3D …","Creates a quaternion from the angle (in radians) around …","Creates an affine transform containing a 3D rotation …","Creates a 3D rotation matrix from angle (in radians) …","Creates a 3D rotation matrix from angle (in radians) …","Creates an affine transformation matrix containing a 3D …","Creates a quaternion from the angle (in radians) around …","Creates an affine transform containing a 3D rotation …","Creates a 3D rotation matrix from angle (in radians) …","Creates a 3D rotation matrix from angle (in radians) …","Creates an affine transformation matrix containing a 3D …","Creates a quaternion from the angle (in radians) around …","Creates an affine transform that changes scale. Note that …","Creates an affine transform that changes scale. Note that …","Creates an affine transformation matrix from the given …","Creates an affine transformation matrix from the given …","Creates an affine transformation matrix containing the …","Creates a 2x2 matrix containing the combining non-uniform …","Creates an affine transform from the given 2D scale, …","Creates an affine transformation matrix from the given 2D …","Creates an affine transformation matrix from the given 2D …","Creates an affine transform from the given 3D scale, …","Creates an affine transformation matrix from the given 3D …","Create a quaternion that rotates v.length() radians around …","Creates a vector from the first 2 values in slice.","Creates a vector from the first 3 values in slice.","Creates a rotation quaternion from a slice.","Creates a vector from the first 3 values in slice.","Creates a vector from the first 4 values in slice.","Creates an affine transformation from the given 2D …","Creates an affine transformation from the given 3D …","Creates an affine transformation matrix from the given 2D …","Creates an affine transformation matrix from the given 2D …","Creates an affine transformation matrix from the given 3D …","Creates a new rotation quaternion from a 4D vector.","Creates a new rotation quaternion.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Return the inverse of this transform.","Return the inverse of this transform.","Returns the inverse of self.","Returns the inverse of self.","Returns the inverse of self.","Returns the inverse of self.","Returns the inverse of a normalized quaternion.","Returns true if, and only if, all elements are finite.","Returns true if, and only if, all elements are finite.","Returns true if, and only if, all elements are finite. If …","Returns true if, and only if, all elements are finite. If …","Returns true if, and only if, all elements are finite. If …","Returns true if, and only if, all elements are finite. If …","Returns true if, and only if, all elements are finite. If …","Returns true if, and only if, all elements are finite. If …","Returns true if, and only if, all elements are finite. If …","Returns true if, and only if, all elements are finite. If …","Returns true if, and only if, all elements are finite. If …","Returns true if any elements are NaN.","Returns true if any elements are NaN.","Returns true if any elements are NaN.","Returns true if any elements are NaN.","Returns true if any elements are NaN.","Returns true if any elements are NaN.","Returns true if any elements are NaN.","Returns true if any elements are NaN.","","Returns true if any elements are NaN.","Returns true if any elements are NaN.","Performs is_nan on each element of self, returning a …","Performs is_nan on each element of self, returning a …","Performs is_nan on each element of self, returning a …","Performs is_nan on each element of self, returning a …","","Returns a bitmask with the lowest 2 bits set to the sign …","Returns a bitmask with the lowest 3 bits set to the sign …","Returns a bitmask with the lowest 3 bits set to the sign …","Returns a bitmask with the lowest 4 bits set to the sign …","Returns whether self is length 1.0 or not.","Returns whether self is length 1.0 or not.","Returns whether self of length 1.0 or not.","Returns whether self is length 1.0 or not.","Returns whether self is length 1.0 or not.","Computes the length of self.","Computes the length of self.","Computes the length of self.","Computes the length of self.","Computes the length of self.","Computes 1.0 / length().","Computes 1.0 / length().","Computes 1.0 / length().","Computes 1.0 / length().","Computes 1.0 / length().","Computes the squared length of self.","Computes the squared length of self.","Computes the squared length of self.","Computes the squared length of self.","Computes the squared length of self.","Performs a linear interpolation between self and rhs based …","Performs a linear interpolation between self and rhs based …","Performs a linear interpolation between self and rhs based …","Performs a linear interpolation between self and rhs based …","Performs a linear interpolation between self and rhs based …","Creates a left-handed view transform using a camera …","Creates a left-handed view matrix using a camera position, …","Creates a right-handed view transform using a camera …","Creates a right-handed view matrix using a camera …","Creates a left-handed view transform using a camera …","Creates a left-handed view matrix using a camera position, …","Creates a right-handed view transform using a camera …","Creates a right-handed view matrix using a camera …","Creates a 2x2 matrix from two column vectors.","Creates a 3x3 matrix from three column vectors.","Creates a 3x3 matrix from three column vectors.","Creates a 4x4 matrix from four column vectors.","","","Returns a vector containing the maximum values for each …","Returns a vector containing the maximum values for each …","Returns a vector containing the maximum values for each …","Returns a vector containing the maximum values for each …","Returns the horizontal maximum of self.","Returns the horizontal maximum of self.","Returns the horizontal maximum of self.","Returns the horizontal maximum of self.","Returns a vector containing the minimum values for each …","Returns a vector containing the minimum values for each …","Returns a vector containing the minimum values for each …","Returns a vector containing the minimum values for each …","Returns the horizontal minimum of self.","Returns the horizontal minimum of self.","Returns the horizontal minimum of self.","Returns the horizontal minimum of self.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multiplies a quaternion by a scalar value.","Multiplies a quaternion and a 3D vector, returning the …","Multiplies two quaternions. If they each represent a …","","","","","Fused multiply-add. Computes (self * a) + b element-wise …","Fused multiply-add. Computes (self * a) + b element-wise …","Fused multiply-add. Computes (self * a) + b element-wise …","Fused multiply-add. Computes (self * a) + b element-wise …","","","","","","","","","","","","","","","Multiplies two quaternions. If they each represent a …","","","","","Multiplies two 2x2 matrices.","Multiplies two 3x3 matrices.","Multiplies two 3x3 matrices.","Multiplies two 4x4 matrices.","Multiplies two quaternions. If they each represent a …","Multiplies a 3x3 matrix by a scalar.","Multiplies a 2x2 matrix by a scalar.","Multiplies a 3x3 matrix by a scalar.","Multiplies a 4x4 matrix by a scalar.","Transforms a 2D vector.","Transforms a 3D vector.","Transforms a 3D vector.","Multiplies a quaternion and a 3D vector, returning the …","Transforms a Vec3A.","Transforms a Vec3A.","Multiplies a quaternion and a 3D vector, returning the …","Transforms a 4D vector.","","","","","","","","","","Creates a new vector.","Creates a new vector.","Creates a new vector.","Creates a new vector.","Returns self normalized to length 1.0.","Returns self normalized to length 1.0.","Returns self normalized to length 1.0.","Returns self normalized to length 1.0.","Returns self normalized to length 1.0.","Returns self normalized to length 1.0 if possible, else …","Returns self normalized to length 1.0 if possible, else …","Returns self normalized to length 1.0 if possible, else …","Returns self normalized to length 1.0 if possible, else …","Creates a left-handed orthographic projection matrix with …","Creates a right-handed orthographic projection matrix with …","Creates a right-handed orthographic projection matrix with …","Returns a vector that is equal to self rotated by 90 …","The perpendicular dot product of self and rhs. Also known …","Creates an infinite left-handed perspective projection …","Creates an infinite left-handed perspective projection …","Creates an infinite reverse right-handed perspective …","Creates an infinite right-handed perspective projection …","Creates a left-handed perspective projection matrix with …","Creates a right-handed perspective projection matrix with …","Creates a right-handed perspective projection matrix with […","Returns a vector containing each element of self raised to …","Returns a vector containing each element of self raised to …","Returns a vector containing each element of self raised to …","Returns a vector containing each element of self raised to …","","","","","","","","","","","","","","","","","","","","","Returns the vector projection of self onto rhs.","Returns the vector projection of self onto rhs.","Returns the vector projection of self onto rhs.","Returns the vector projection of self onto rhs.","Returns the vector projection of self onto rhs.","Returns the vector projection of self onto rhs.","Returns the vector projection of self onto rhs.","Returns the vector projection of self onto rhs.","Transforms the given 3D vector as a point, applying …","Creates a quaternion from x, y, z and w values.","Returns a vector containing the reciprocal 1.0/n of each …","Returns a vector containing the reciprocal 1.0/n of each …","Returns a vector containing the reciprocal 1.0/n of each …","Returns a vector containing the reciprocal 1.0/n of each …","Returns the vector rejection of self from rhs.","Returns the vector rejection of self from rhs.","Returns the vector rejection of self from rhs.","Returns the vector rejection of self from rhs.","Returns the vector rejection of self from rhs.","Returns the vector rejection of self from rhs.","Returns the vector rejection of self from rhs.","Returns the vector rejection of self from rhs.","","","","","","","","","","","","","","","","","Returns the element-wise remainder of Euclidean division …","Returns the element-wise remainder of Euclidean division …","Returns the element-wise remainder of Euclidean division …","Returns the element-wise remainder of Euclidean division …","Returns rhs rotated by the angle of self. If self is …","Returns a vector containing the nearest integer to a …","Returns a vector containing the nearest integer to a …","Returns a vector containing the nearest integer to a …","Returns a vector containing the nearest integer to a …","Returns the matrix row for the given index.","Returns the matrix row for the given index.","Returns the matrix row for the given index.","Returns the matrix row for the given index.","Creates a vector from the elements in if_true and if_false…","Creates a vector from the elements in if_true and if_false…","Creates a vector from the elements in if_true and if_false…","Creates a vector from the elements in if_true and if_false…","Returns a vector with elements representing the sign of …","Returns a vector with elements representing the sign of …","Returns a vector with elements representing the sign of …","Returns a vector with elements representing the sign of …","Performs a spherical linear interpolation between self and …","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","","","","","","","","","Subtracts the rhs quaternion from self.","","","","","","","","","","","","","","","","","Subtracts two 2x2 matrices.","Subtracts two 3x3 matrices.","Subtracts two 3x3 matrices.","Subtracts two 4x4 matrices.","","","","","","","","","","","","","","","","","","","[x, y]","[x, y, z]","[x, y, z, w]","[x, y, z]","[x, y, z, w]","Returns the rotation axis (normalized) and angle (in …","Creates a [f32; 6] array storing data in column major …","Creates a [f32; 12] array storing data in column major …","Creates a [f32; 9] array storing data in column major …","Creates a [f32; 4] array storing data in column major …","Creates a [f32; 9] array storing data in column major …","Creates a [f32; 16] array storing data in column major …","Creates a [[f32; 2]; 3] 2D array storing data in column …","Creates a [[f32; 3]; 4] 3D array storing data in column …","Creates a [[f32; 3]; 3] 3D array storing data in column …","Creates a [[f32; 2]; 2] 2D array storing data in column …","Creates a [[f32; 3]; 3] 3D array storing data in column …","Creates a [[f32; 4]; 4] 4D array storing data in column …","Returns the rotation angles for the given euler rotation …","","","","","","","","","","","","Extracts scale, angle and translation from self.","Extracts scale, rotation and translation from self.","Extracts scale, rotation and translation from self. The …","Returns the rotation axis scaled by the rotation in …","","","","","","","","","","","","Transforms the given 2D point, applying shear, scale, …","Transforms the given 2D vector as a point.","Transforms the given 2D vector as a point.","Transforms the given 3D points, applying shear, scale, …","Transforms the given 3D vector as a point.","Transforms the given Vec3A, applying shear, scale, …","Transforms the given Vec3A as 3D point.","Transforms the given 2D vector, applying shear, scale and …","Rotates the given 2D vector.","Rotates the given 2D vector.","Transforms the given 3D vector, applying shear, scale and …","Transforms the give 3D vector as a direction.","Transforms the given Vec3A, applying shear, scale and …","Transforms the give Vec3A as 3D vector.","","","Returns the transpose of self.","Returns the transpose of self.","Returns the transpose of self.","Returns the transpose of self.","Returns a vector containing the integer part each element …","Returns a vector containing the integer part each element …","Returns a vector containing the integer part each element …","Returns a vector containing the integer part each element …","Creates a 2D vector from the x and y elements of self, …","Creates a 2D vector from the x and y elements of self, …","Creates a 3D vector from the x, y and z elements of self, …","","","","","","","","","","","","","","","","","","","","","","","Returns self normalized to length 1.0 if possible, else …","Returns self normalized to length 1.0 if possible, else …","Returns self normalized to length 1.0 if possible, else …","Returns self normalized to length 1.0 if possible, else …","","","","","","","","","","","","Creates a 2-dimensional vector.","Creates a 3-dimensional vector.","Creates a 3-dimensional vector.","Creates a 4-dimensional vector.","","Writes the columns of self to the first 6 elements in slice…","Writes the columns of self to the first 12 elements in …","Writes the columns of self to the first 9 elements in slice…","Writes the columns of self to the first 4 elements in slice…","Writes the columns of self to the first 9 elements in slice…","Writes the columns of self to the first 16 elements in …","Writes the elements of self to the first 2 elements in …","Writes the elements of self to the first 3 elements in …","Writes the quaternion to an unaligned slice.","Writes the elements of self to the first 3 elements in …","Writes the elements of self to the first 4 elements in …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the vector part of the quaternion.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The unit axes.","The unit axes.","The unit axes.","A 2D affine transform, which can represent translation, …","A 3D affine transform, which can represent translation, …","A 2x2 column major matrix.","A 3x3 column major matrix.","A 4x4 column major matrix.","A quaternion representing an orientation.","A 2-dimensional vector.","A 3-dimensional vector.","A 4-dimensional vector.","The identity transform.","The identity transform.","A 2x2 identity matrix, where all diagonal elements are 1, …","A 3x3 identity matrix, where all diagonal elements are 1, …","A 4x4 identity matrix, where all diagonal elements are 1, …","The identity quaternion. Corresponds to no rotation.","All f64::INFINITY.","All f64::INFINITY.","All f64::INFINITY.","All f64::MAX.","All f64::MAX.","All f64::MAX.","All f64::MIN.","All f64::MIN.","All f64::MIN.","All NAN:s.","All NAN:s.","All NAN:s.","All NAN:s.","All NAN:s.","All NANs.","All f64::NAN.","All f64::NAN.","All f64::NAN.","All f64::NEG_INFINITY.","All f64::NEG_INFINITY.","All f64::NEG_INFINITY.","All negative ones.","All negative ones.","All negative ones.","A unit vector pointing along the negative W axis.","A unit vector pointing along the negative X axis.","A unit vector pointing along the negative X axis.","A unit vector pointing along the negative X axis.","A unit vector pointing along the negative Y axis.","A unit vector pointing along the negative Y axis.","A unit vector pointing along the negative Y axis.","A unit vector pointing along the negative Z axis.","A unit vector pointing along the negative Z axis.","All ones.","All ones.","All ones.","A unit vector pointing along the positive W axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Z axis.","A unit vector pointing along the positive Z axis.","The degenerate zero transform.","The degenerate zero transform.","A 2x2 matrix with all elements set to 0.0.","A 3x3 matrix with all elements set to 0.0.","A 4x4 matrix with all elements set to 0.0.","All zeroes.","All zeroes.","All zeroes.","Returns a vector containing the absolute value of each …","Returns a vector containing the absolute value of each …","Returns a vector containing the absolute value of each …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","Returns true if the absolute difference of all elements …","","","","Adds two quaternions.","","","","","","","","","","","","","","","","Adds two 2x2 matrices.","Adds two 3x3 matrices.","Adds two 4x4 matrices.","Returns the angle (in radians) for the minimal rotation …","Returns the angle (in radians) between self and rhs in the …","Returns the angle (in radians) between two vectors.","Returns some vector that is orthogonal to the given one.","Given a unit vector return two other vectors that together …","Returns any unit vector that is orthogonal to the given …","","Casts all elements of self to i64.","Casts all elements of self to i64.","Casts all elements of self to i64.","Casts all elements of self to i32.","Casts all elements of self to i32.","Casts all elements of self to i32.","","","","","","","","","","","","","","","","","Casts all elements of self to u64.","Casts all elements of self to u64.","Casts all elements of self to u64.","Casts all elements of self to u32.","Casts all elements of self to u32.","Casts all elements of self to u32.","Casts all elements of self to f32.","Casts all elements of self to f32.","Casts all elements of self to f32.","Casts all elements of self to f32.","","","","","","","","","","","","","","","","","","","Returns a vector containing the smallest integer greater …","Returns a vector containing the smallest integer greater …","Returns a vector containing the smallest integer greater …","Component-wise clamping of values, similar to f64::clamp.","Component-wise clamping of values, similar to f64::clamp.","Component-wise clamping of values, similar to f64::clamp.","Returns a vector with a length no less than min and no …","Returns a vector with a length no less than min and no …","Returns a vector with a length no less than min and no …","Returns a vector with a length no more than max","Returns a vector with a length no more than max","Returns a vector with a length no more than max","Returns a vector with a length no less than min","Returns a vector with a length no less than min","Returns a vector with a length no less than min","","","","","","","","","","","","","","","","","","","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a != …","Returns a vector mask containing the result of a != …","Returns a vector mask containing the result of a != …","Returns the matrix column for the given index.","Returns the matrix column for the given index.","Returns the matrix column for the given index.","Returns a mutable reference to the matrix column for the …","Returns a mutable reference to the matrix column for the …","Returns a mutable reference to the matrix column for the …","Returns the quaternion conjugate of self. For a unit …","Returns a vector with signs of rhs and the magnitudes of …","Returns a vector with signs of rhs and the magnitudes of …","Returns a vector with signs of rhs and the magnitudes of …","Computes the cross product of self and rhs.","","","","","","","","","","","","","","Returns the determinant of self.","Returns the determinant of self.","Returns the determinant of self.","Computes the Euclidean distance between two points in …","Computes the Euclidean distance between two points in …","Computes the Euclidean distance between two points in …","Compute the squared euclidean distance between two points …","Compute the squared euclidean distance between two points …","Compute the squared euclidean distance between two points …","Divides a quaternion by a scalar value. The quotient is …","","","","","","","","","","","","","Returns the element-wise quotient of [Euclidean division] …","Returns the element-wise quotient of [Euclidean division] …","Returns the element-wise quotient of [Euclidean division] …","Creates a 2x2 matrix from two column vectors.","Creates a 3x3 matrix from three column vectors.","Creates a 4x4 matrix from four column vectors.","Computes the dot product of self and rhs. The dot product …","Computes the dot product of self and rhs.","Computes the dot product of self and rhs.","Computes the dot product of self and rhs.","Returns a vector where every component is the dot product …","Returns a vector where every component is the dot product …","Returns a vector where every component is the dot product …","Creates a quaternion from x, y, z and w values.","Creates a 2-dimensional vector.","Creates a 3-dimensional vector.","Creates a 4-dimensional vector.","","","","","","","","","","Returns a vector containing e^self (the exponential …","Returns a vector containing e^self (the exponential …","Returns a vector containing e^self (the exponential …","Creates a 3D vector from self and the given z value.","Creates a 4D vector from self and the given w value.","Returns a vector containing the largest integer less than …","Returns a vector containing the largest integer less than …","Returns a vector containing the largest integer less than …","","","","","","","","","","","","","","","","","","","Returns a vector containing the fractional part of the …","Returns a vector containing the fractional part of the …","Returns a vector containing the fractional part of the …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","","","","","","Returns the argument unchanged.","","","","","","Creates a quaternion from a 3x3 rotation matrix inside a …","Creates an affine transform from the given rotation angle.","Creates a 2x2 matrix containing a rotation of angle (in …","Creates an affine transformation matrix from the given 2D …","Creates a 2D vector containing [angle.cos(), angle.sin()]. …","Creates an affine transform from the given 2D rotation …","Creates a rotation quaternion from an array.","Creates a new vector from an array.","Creates a new vector from an array.","Creates a new vector from an array.","Creates an affine transform containing a 3D rotation …","Creates a 3D rotation matrix from a normalized rotation …","Creates an affine transformation matrix containing a 3D …","Create a quaternion for a normalized rotation axis and …","Creates an affine transform from three column vectors.","Creates an affine transform from three column vectors.","Creates a 2x2 matrix from two column vectors.","Creates a 3x3 matrix from three column vectors.","Creates a 4x4 matrix from four column vectors.","Creates an affine transform from a [f64; 6] array stored …","Creates an affine transform from a [f64; 12] array stored …","Creates a 2x2 matrix from a [f64; 4] array stored in …","Creates a 3x3 matrix from a [f64; 9] array stored in …","Creates a 4x4 matrix from a [f64; 16] array stored in …","Creates an affine transform from a [[f64; 2]; 3] 2D array …","Creates an affine transform from a [[f64; 3]; 4] 3D array …","Creates a 2x2 matrix from a [[f64; 2]; 2] 2D array stored …","Creates a 3x3 matrix from a [[f64; 3]; 3] 3D array stored …","Creates a 4x4 matrix from a [[f64; 4]; 4] 4D array stored …","Creates an affine transform from the first 6 values in …","Creates an affine transform from the first 12 values in …","Creates a 2x2 matrix from the first 4 values in slice.","Creates a 3x3 matrix from the first 9 values in slice.","Creates a 4x4 matrix from the first 16 values in slice.","Creates a 2x2 matrix with its diagonal set to diagonal and …","Creates a 3x3 matrix with its diagonal set to diagonal and …","Creates a 4x4 matrix with its diagonal set to diagonal and …","Creates a 3D rotation matrix from the given euler rotation …","Creates a affine transformation matrix containing a …","Creates a quaternion from the given Euler rotation …","Creates an affine transform from a 2x2 matrix (expressing …","Creates an affine transformation matrix from the given 2x2 …","Creates an affine transform from a 2x2 matrix (expressing …","The given DMat3 must be an affine transform,","Creates an affine transform from a 3x3 matrix (expressing …","Creates a 2x2 matrix from a 3x3 matrix, discarding the 2nd …","Creates an affine transformation matrix from the given 3x3 …","Creates a quaternion from a 3x3 rotation matrix.","Creates an affine transform from a 3x3 matrix (expressing …","The given DMat4 must be an affine transform, i.e. contain …","Creates a 3x3 matrix from a 4x4 matrix, discarding the 4th …","Creates a quaternion from a 3x3 rotation matrix inside a …","Creates an affine transform from the given rotation …","Creates a 3D rotation matrix from the given quaternion.","Creates an affine transformation matrix from the given …","Gets the minimal rotation for transforming from to to. …","Gets the minimal rotation for transforming from to to. …","Gets the minimal rotation for transforming from to either …","Creates an affine transform from the given 3D rotation and …","Creates an affine transformation matrix from the given 3D …","Creates an affine transform containing a 3D rotation …","Creates a 3D rotation matrix from angle (in radians) …","Creates an affine transformation matrix containing a 3D …","Creates a quaternion from the angle (in radians) around …","Creates an affine transform containing a 3D rotation …","Creates a 3D rotation matrix from angle (in radians) …","Creates an affine transformation matrix containing a 3D …","Creates a quaternion from the angle (in radians) around …","Creates an affine transform containing a 3D rotation …","Creates a 3D rotation matrix from angle (in radians) …","Creates an affine transformation matrix containing a 3D …","Creates a quaternion from the angle (in radians) around …","Creates an affine transform that changes scale. Note that …","Creates an affine transform that changes scale. Note that …","Creates an affine transformation matrix from the given …","Creates an affine transformation matrix containing the …","Creates a 2x2 matrix containing the combining non-uniform …","Creates an affine transform from the given 2D scale, …","Creates an affine transformation matrix from the given 2D …","Creates an affine transform from the given 3D scale, …","Creates an affine transformation matrix from the given 3D …","Create a quaternion that rotates v.length() radians around …","Creates a rotation quaternion from a slice.","Creates a vector from the first 2 values in slice.","Creates a vector from the first 3 values in slice.","Creates a vector from the first 4 values in slice.","Creates an affine transformation from the given 2D …","Creates an affine transformation from the given 3D …","Creates an affine transformation matrix from the given 2D …","Creates an affine transformation matrix from the given 3D …","Creates a new rotation quaternion from a 4D vector.","Creates a new rotation quaternion.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Return the inverse of this transform.","Return the inverse of this transform.","Returns the inverse of self.","Returns the inverse of self.","Returns the inverse of self.","Returns the inverse of a normalized quaternion.","Returns true if, and only if, all elements are finite.","Returns true if, and only if, all elements are finite.","Returns true if, and only if, all elements are finite. If …","Returns true if, and only if, all elements are finite. If …","Returns true if, and only if, all elements are finite. If …","Returns true if, and only if, all elements are finite. If …","Returns true if, and only if, all elements are finite. If …","Returns true if, and only if, all elements are finite. If …","Returns true if, and only if, all elements are finite. If …","Returns true if any elements are NaN.","Returns true if any elements are NaN.","Returns true if any elements are NaN.","Returns true if any elements are NaN.","Returns true if any elements are NaN.","","Returns true if any elements are NaN.","Returns true if any elements are NaN.","Returns true if any elements are NaN.","Performs is_nan on each element of self, returning a …","Performs is_nan on each element of self, returning a …","Performs is_nan on each element of self, returning a …","","Returns a bitmask with the lowest 2 bits set to the sign …","Returns a bitmask with the lowest 3 bits set to the sign …","Returns a bitmask with the lowest 4 bits set to the sign …","Returns whether self of length 1.0 or not.","Returns whether self is length 1.0 or not.","Returns whether self is length 1.0 or not.","Returns whether self is length 1.0 or not.","Computes the length of self.","Computes the length of self.","Computes the length of self.","Computes the length of self.","Computes 1.0 / length().","Computes 1.0 / length().","Computes 1.0 / length().","Computes 1.0 / length().","Computes the squared length of self.","Computes the squared length of self.","Computes the squared length of self.","Computes the squared length of self.","Performs a linear interpolation between self and rhs based …","Performs a linear interpolation between self and rhs based …","Performs a linear interpolation between self and rhs based …","Performs a linear interpolation between self and rhs based …","Creates a left-handed view transform using a camera …","Creates a left-handed view matrix using a camera position, …","Creates a right-handed view transform using a camera …","Creates a right-handed view matrix using a camera …","Creates a left-handed view transform using a camera …","Creates a left-handed view matrix using a camera position, …","Creates a right-handed view transform using a camera …","Creates a right-handed view matrix using a camera …","","","Returns a vector containing the maximum values for each …","Returns a vector containing the maximum values for each …","Returns a vector containing the maximum values for each …","Returns the horizontal maximum of self.","Returns the horizontal maximum of self.","Returns the horizontal maximum of self.","Returns a vector containing the minimum values for each …","Returns a vector containing the minimum values for each …","Returns a vector containing the minimum values for each …","Returns the horizontal minimum of self.","Returns the horizontal minimum of self.","Returns the horizontal minimum of self.","","","","","","","","","","","","","","","","Multiplies a quaternion and a 3D vector, returning the …","Multiplies two quaternions. If they each represent a …","Multiplies a quaternion by a scalar value.","","","","","","","Fused multiply-add. Computes (self * a) + b element-wise …","Fused multiply-add. Computes (self * a) + b element-wise …","Fused multiply-add. Computes (self * a) + b element-wise …","","","","","","","","","Multiplies two quaternions. If they each represent a …","","","","","","","Multiplies two 2x2 matrices.","Multiplies two 3x3 matrices.","Multiplies two 4x4 matrices.","Multiplies two quaternions. If they each represent a …","Multiplies a 2x2 matrix by a scalar.","Multiplies a 3x3 matrix by a scalar.","Multiplies a 4x4 matrix by a scalar.","Transforms a 2D vector.","Transforms a 3D vector.","Multiplies a quaternion and a 3D vector, returning the …","Transforms a 4D vector.","","","","","","","","Creates a new vector.","Creates a new vector.","Creates a new vector.","Returns self normalized to length 1.0.","Returns self normalized to length 1.0.","Returns self normalized to length 1.0.","Returns self normalized to length 1.0.","Returns self normalized to length 1.0 if possible, else …","Returns self normalized to length 1.0 if possible, else …","Returns self normalized to length 1.0 if possible, else …","Creates a left-handed orthographic projection matrix with …","Creates a right-handed orthographic projection matrix with …","Creates a right-handed orthographic projection matrix with …","Returns a vector that is equal to self rotated by 90 …","The perpendicular dot product of self and rhs. Also known …","Creates an infinite left-handed perspective projection …","Creates an infinite left-handed perspective projection …","Creates an infinite reverse right-handed perspective …","Creates an infinite right-handed perspective projection …","Creates a left-handed perspective projection matrix with …","Creates a right-handed perspective projection matrix with …","Creates a right-handed perspective projection matrix with […","Returns a vector containing each element of self raised to …","Returns a vector containing each element of self raised to …","Returns a vector containing each element of self raised to …","","","","","","","","","","","","","","","","","Returns the vector projection of self onto rhs.","Returns the vector projection of self onto rhs.","Returns the vector projection of self onto rhs.","Returns the vector projection of self onto rhs.","Returns the vector projection of self onto rhs.","Returns the vector projection of self onto rhs.","Transforms the given 3D vector as a point, applying …","Returns a vector containing the reciprocal 1.0/n of each …","Returns a vector containing the reciprocal 1.0/n of each …","Returns a vector containing the reciprocal 1.0/n of each …","Returns the vector rejection of self from rhs.","Returns the vector rejection of self from rhs.","Returns the vector rejection of self from rhs.","Returns the vector rejection of self from rhs.","Returns the vector rejection of self from rhs.","Returns the vector rejection of self from rhs.","","","","","","","","","","","","","Returns the element-wise remainder of Euclidean division …","Returns the element-wise remainder of Euclidean division …","Returns the element-wise remainder of Euclidean division …","Returns rhs rotated by the angle of self. If self is …","Returns a vector containing the nearest integer to a …","Returns a vector containing the nearest integer to a …","Returns a vector containing the nearest integer to a …","Returns the matrix row for the given index.","Returns the matrix row for the given index.","Returns the matrix row for the given index.","Creates a vector from the elements in if_true and if_false…","Creates a vector from the elements in if_true and if_false…","Creates a vector from the elements in if_true and if_false…","Returns a vector with elements representing the sign of …","Returns a vector with elements representing the sign of …","Returns a vector with elements representing the sign of …","Performs a spherical linear interpolation between self and …","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","","","","Subtracts the rhs quaternion from self.","","","","","","","","","","","","","","","","Subtracts two 2x2 matrices.","Subtracts two 3x3 matrices.","Subtracts two 4x4 matrices.","","","","","","","","","","","","","","","[x, y, z, w]","[x, y]","[x, y, z]","[x, y, z, w]","Returns the rotation axis (normalized) and angle (in …","Creates a [f64; 6] array storing data in column major …","Creates a [f64; 12] array storing data in column major …","Creates a [f64; 4] array storing data in column major …","Creates a [f64; 9] array storing data in column major …","Creates a [f64; 16] array storing data in column major …","Creates a [[f64; 2]; 3] 2D array storing data in column …","Creates a [[f64; 3]; 4] 3D array storing data in column …","Creates a [[f64; 2]; 2] 2D array storing data in column …","Creates a [[f64; 3]; 3] 3D array storing data in column …","Creates a [[f64; 4]; 4] 4D array storing data in column …","Returns the rotation angles for the given euler rotation …","","","","","","","","","","Extracts scale, angle and translation from self.","Extracts scale, rotation and translation from self.","Extracts scale, rotation and translation from self. The …","Returns the rotation axis scaled by the rotation in …","","","","","","","","","","Transforms the given 2D point, applying shear, scale, …","Transforms the given 2D vector as a point.","Transforms the given 3D points, applying shear, scale, …","Transforms the given 3D vector as a point.","Transforms the given 2D vector, applying shear, scale and …","Rotates the given 2D vector.","Transforms the given 3D vector, applying shear, scale and …","Transforms the give 3D vector as a direction.","","","Returns the transpose of self.","Returns the transpose of self.","Returns the transpose of self.","Returns a vector containing the integer part each element …","Returns a vector containing the integer part each element …","Returns a vector containing the integer part each element …","Creates a 2D vector from the x and y elements of self, …","Creates a 3D vector from the x, y and z elements of self, …","","","","","","","","","","","","","","","","","","","Returns self normalized to length 1.0 if possible, else …","Returns self normalized to length 1.0 if possible, else …","Returns self normalized to length 1.0 if possible, else …","","","","","","","","","","","","","Writes the columns of self to the first 6 elements in slice…","Writes the columns of self to the first 12 elements in …","Writes the columns of self to the first 4 elements in slice…","Writes the columns of self to the first 9 elements in slice…","Writes the columns of self to the first 16 elements in …","Writes the quaternion to an unaligned slice.","Writes the elements of self to the first 2 elements in …","Writes the elements of self to the first 3 elements in …","Writes the elements of self to the first 4 elements in …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the vector part of the quaternion.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The unit axes.","The unit axes.","The unit axes.","A 2-dimensional vector.","A 3-dimensional vector.","A 4-dimensional vector.","All i32::MAX.","All i32::MAX.","All i32::MAX.","All i32::MIN.","All i32::MIN.","All i32::MIN.","All negative ones.","All negative ones.","All negative ones.","A unit vector pointing along the negative W axis.","A unit vector pointing along the negative X axis.","A unit vector pointing along the negative X axis.","A unit vector pointing along the negative X axis.","A unit vector pointing along the negative Y axis.","A unit vector pointing along the negative Y axis.","A unit vector pointing along the negative Y axis.","A unit vector pointing along the negative Z axis.","A unit vector pointing along the negative Z axis.","All ones.","All ones.","All ones.","A unit vector pointing along the positive W axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Z axis.","A unit vector pointing along the positive Z axis.","All zeroes.","All zeroes.","All zeroes.","Returns a vector containing the absolute value of each …","Returns a vector containing the absolute value of each …","Returns a vector containing the absolute value of each …","","","","","","","","","","","","","Casts all elements of self to f64.","Casts all elements of self to f64.","Casts all elements of self to f64.","Casts all elements of self to i64.","Casts all elements of self to i64.","Casts all elements of self to i64.","","","","","","","Casts all elements of self to u64.","Casts all elements of self to u64.","Casts all elements of self to u64.","Casts all elements of self to u32.","Casts all elements of self to u32.","Casts all elements of self to u32.","Casts all elements of self to f32.","Casts all elements of self to f32.","Casts all elements of self to f32.","Casts all elements of self to f32.","","","","","","","","","","","","","","","","","","","","","","","","","Component-wise clamping of values, similar to i32::clamp.","Component-wise clamping of values, similar to i32::clamp.","Component-wise clamping of values, similar to i32::clamp.","","","","","","","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a != …","Returns a vector mask containing the result of a != …","Returns a vector mask containing the result of a != …","Computes the cross product of self and rhs.","","","","Compute the squared euclidean distance between two points …","Compute the squared euclidean distance between two points …","Compute the squared euclidean distance between two points …","","","","","","","","","","","","","Returns the element-wise quotient of [Euclidean division] …","Returns the element-wise quotient of [Euclidean division] …","Returns the element-wise quotient of [Euclidean division] …","Computes the dot product of self and rhs.","Computes the dot product of self and rhs.","Computes the dot product of self and rhs.","Returns a vector where every component is the dot product …","Returns a vector where every component is the dot product …","Returns a vector where every component is the dot product …","","","","Creates a 3D vector from self and the given z value.","Creates a 4D vector from self and the given w value.","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Returns the argument unchanged.","","Creates a new vector from an array.","Creates a new vector from an array.","Creates a new vector from an array.","Creates a vector from the first 2 values in slice.","Creates a vector from the first 3 values in slice.","Creates a vector from the first 4 values in slice.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns a bitmask with the lowest 2 bits set to the sign …","Returns a bitmask with the lowest 3 bits set to the sign …","Returns a bitmask with the lowest 4 bits set to the sign …","Creates a 2-dimensional vector.","Creates a 3-dimensional vector.","Creates a 4-dimensional vector.","Computes the squared length of self.","Computes the squared length of self.","Computes the squared length of self.","Returns a vector containing the maximum values for each …","Returns a vector containing the maximum values for each …","Returns a vector containing the maximum values for each …","Returns the horizontal maximum of self.","Returns the horizontal maximum of self.","Returns the horizontal maximum of self.","Returns a vector containing the minimum values for each …","Returns a vector containing the minimum values for each …","Returns a vector containing the minimum values for each …","Returns the horizontal minimum of self.","Returns the horizontal minimum of self.","Returns the horizontal minimum of self.","","","","","","","","","","","","","","","","Creates a new vector.","Creates a new vector.","Creates a new vector.","","","","Returns a vector that is equal to self rotated by 90 …","The perpendicular dot product of self and rhs. Also known …","","","","","","","","","","","","","","","","","","","Returns the element-wise remainder of Euclidean division …","Returns the element-wise remainder of Euclidean division …","Returns the element-wise remainder of Euclidean division …","Returns rhs rotated by the angle of self. If self is …","Returns a vector containing the saturating addition of self…","Returns a vector containing the saturating addition of self…","Returns a vector containing the saturating addition of self…","Returns a vector containing the saturating division of self…","Returns a vector containing the saturating division of self…","Returns a vector containing the saturating division of self…","Returns a vector containing the saturating multiplication …","Returns a vector containing the saturating multiplication …","Returns a vector containing the saturating multiplication …","Returns a vector containing the saturating subtraction of …","Returns a vector containing the saturating subtraction of …","Returns a vector containing the saturating subtraction of …","Creates a vector from the elements in if_true and if_false…","Creates a vector from the elements in if_true and if_false…","Creates a vector from the elements in if_true and if_false…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a vector with elements representing the sign of …","Returns a vector with elements representing the sign of …","Returns a vector with elements representing the sign of …","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","","","","","","","","","","","","","","","","","","","[x, y]","[x, y, z]","[x, y, z, w]","","","","","","","Creates a 2D vector from the x and y elements of self, …","Creates a 3D vector from the x, y and z elements of self, …","","","","","","","","","","","","","","","","","","","","Returns a vector containing the wrapping addition of self …","Returns a vector containing the wrapping addition of self …","Returns a vector containing the wrapping addition of self …","Returns a vector containing the wrapping division of self …","Returns a vector containing the wrapping division of self …","Returns a vector containing the wrapping division of self …","Returns a vector containing the wrapping multiplication of …","Returns a vector containing the wrapping multiplication of …","Returns a vector containing the wrapping multiplication of …","Returns a vector containing the wrapping subtraction of …","Returns a vector containing the wrapping subtraction of …","Returns a vector containing the wrapping subtraction of …","Writes the elements of self to the first 2 elements in …","Writes the elements of self to the first 3 elements in …","Writes the elements of self to the first 4 elements in …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The unit axes.","The unit axes.","The unit axes.","A 2-dimensional vector.","A 3-dimensional vector.","A 4-dimensional vector.","All i64::MAX.","All i64::MAX.","All i64::MAX.","All i64::MIN.","All i64::MIN.","All i64::MIN.","All negative ones.","All negative ones.","All negative ones.","A unit vector pointing along the negative W axis.","A unit vector pointing along the negative X axis.","A unit vector pointing along the negative X axis.","A unit vector pointing along the negative X axis.","A unit vector pointing along the negative Y axis.","A unit vector pointing along the negative Y axis.","A unit vector pointing along the negative Y axis.","A unit vector pointing along the negative Z axis.","A unit vector pointing along the negative Z axis.","All ones.","All ones.","All ones.","A unit vector pointing along the positive W axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Z axis.","A unit vector pointing along the positive Z axis.","All zeroes.","All zeroes.","All zeroes.","Returns a vector containing the absolute value of each …","Returns a vector containing the absolute value of each …","Returns a vector containing the absolute value of each …","","","","","","","","","","","","","Casts all elements of self to f64.","Casts all elements of self to f64.","Casts all elements of self to f64.","Casts all elements of self to i32.","Casts all elements of self to i32.","Casts all elements of self to i32.","","","","","","","Casts all elements of self to u64.","Casts all elements of self to u64.","Casts all elements of self to u64.","Casts all elements of self to u32.","Casts all elements of self to u32.","Casts all elements of self to u32.","Casts all elements of self to f32.","Casts all elements of self to f32.","Casts all elements of self to f32.","Casts all elements of self to f32.","","","","","","","","","","","","","","","","","","","","","","","","","Component-wise clamping of values, similar to i64::clamp.","Component-wise clamping of values, similar to i64::clamp.","Component-wise clamping of values, similar to i64::clamp.","","","","","","","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a != …","Returns a vector mask containing the result of a != …","Returns a vector mask containing the result of a != …","Computes the cross product of self and rhs.","","","","Compute the squared euclidean distance between two points …","Compute the squared euclidean distance between two points …","Compute the squared euclidean distance between two points …","","","","","","","","","","","","","Returns the element-wise quotient of [Euclidean division] …","Returns the element-wise quotient of [Euclidean division] …","Returns the element-wise quotient of [Euclidean division] …","Computes the dot product of self and rhs.","Computes the dot product of self and rhs.","Computes the dot product of self and rhs.","Returns a vector where every component is the dot product …","Returns a vector where every component is the dot product …","Returns a vector where every component is the dot product …","","","","Creates a 3D vector from self and the given z value.","Creates a 4D vector from self and the given w value.","","","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","","","Creates a new vector from an array.","Creates a new vector from an array.","Creates a new vector from an array.","Creates a vector from the first 2 values in slice.","Creates a vector from the first 3 values in slice.","Creates a vector from the first 4 values in slice.","","","","Creates a 2-dimensional vector.","Creates a 3-dimensional vector.","Creates a 4-dimensional vector.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns a bitmask with the lowest 2 bits set to the sign …","Returns a bitmask with the lowest 3 bits set to the sign …","Returns a bitmask with the lowest 4 bits set to the sign …","Computes the squared length of self.","Computes the squared length of self.","Computes the squared length of self.","Returns a vector containing the maximum values for each …","Returns a vector containing the maximum values for each …","Returns a vector containing the maximum values for each …","Returns the horizontal maximum of self.","Returns the horizontal maximum of self.","Returns the horizontal maximum of self.","Returns a vector containing the minimum values for each …","Returns a vector containing the minimum values for each …","Returns a vector containing the minimum values for each …","Returns the horizontal minimum of self.","Returns the horizontal minimum of self.","Returns the horizontal minimum of self.","","","","","","","","","","","","","","","","Creates a new vector.","Creates a new vector.","Creates a new vector.","","","","Returns a vector that is equal to self rotated by 90 …","The perpendicular dot product of self and rhs. Also known …","","","","","","","","","","","","","","","","","","","Returns the element-wise remainder of Euclidean division …","Returns the element-wise remainder of Euclidean division …","Returns the element-wise remainder of Euclidean division …","Returns rhs rotated by the angle of self. If self is …","Returns a vector containing the saturating addition of self…","Returns a vector containing the saturating addition of self…","Returns a vector containing the saturating addition of self…","Returns a vector containing the saturating division of self…","Returns a vector containing the saturating division of self…","Returns a vector containing the saturating division of self…","Returns a vector containing the saturating multiplication …","Returns a vector containing the saturating multiplication …","Returns a vector containing the saturating multiplication …","Returns a vector containing the saturating subtraction of …","Returns a vector containing the saturating subtraction of …","Returns a vector containing the saturating subtraction of …","Creates a vector from the elements in if_true and if_false…","Creates a vector from the elements in if_true and if_false…","Creates a vector from the elements in if_true and if_false…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a vector with elements representing the sign of …","Returns a vector with elements representing the sign of …","Returns a vector with elements representing the sign of …","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","","","","","","","","","","","","","","","","","","","[x, y]","[x, y, z]","[x, y, z, w]","","","","","","","Creates a 2D vector from the x and y elements of self, …","Creates a 3D vector from the x, y and z elements of self, …","","","","","","","","","","","","","","Returns a vector containing the wrapping addition of self …","Returns a vector containing the wrapping addition of self …","Returns a vector containing the wrapping addition of self …","Returns a vector containing the wrapping division of self …","Returns a vector containing the wrapping division of self …","Returns a vector containing the wrapping division of self …","Returns a vector containing the wrapping multiplication of …","Returns a vector containing the wrapping multiplication of …","Returns a vector containing the wrapping multiplication of …","Returns a vector containing the wrapping subtraction of …","Returns a vector containing the wrapping subtraction of …","Returns a vector containing the wrapping subtraction of …","Writes the elements of self to the first 2 elements in …","Writes the elements of self to the first 3 elements in …","Writes the elements of self to the first 4 elements in …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The unit axes.","The unit axes.","The unit axes.","All u32::MAX.","All u32::MAX.","All u32::MAX.","All u32::MIN.","All u32::MIN.","All u32::MIN.","All ones.","All ones.","All ones.","A 2-dimensional vector.","A 3-dimensional vector.","A 4-dimensional vector.","A unit vector pointing along the positive W axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Z axis.","A unit vector pointing along the positive Z axis.","All zeroes.","All zeroes.","All zeroes.","","","","","","","","","","","","","Casts all elements of self to f64.","Casts all elements of self to f64.","Casts all elements of self to f64.","Casts all elements of self to i64.","Casts all elements of self to i64.","Casts all elements of self to i64.","Casts all elements of self to i32.","Casts all elements of self to i32.","Casts all elements of self to i32.","","","","","","","Casts all elements of self to u64.","Casts all elements of self to u64.","Casts all elements of self to u64.","Casts all elements of self to f32.","Casts all elements of self to f32.","Casts all elements of self to f32.","Casts all elements of self to f32.","","","","","","","","","","","","","","","","","","","","","","","","","Component-wise clamping of values, similar to u32::clamp.","Component-wise clamping of values, similar to u32::clamp.","Component-wise clamping of values, similar to u32::clamp.","","","","","","","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a != …","Returns a vector mask containing the result of a != …","Returns a vector mask containing the result of a != …","Computes the cross product of self and rhs.","","","","","","","","","","","","","","","","Computes the dot product of self and rhs.","Computes the dot product of self and rhs.","Computes the dot product of self and rhs.","Returns a vector where every component is the dot product …","Returns a vector where every component is the dot product …","Returns a vector where every component is the dot product …","","","","Creates a 3D vector from self and the given z value.","Creates a 4D vector from self and the given w value.","","","","","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","","Creates a new vector from an array.","Creates a new vector from an array.","Creates a new vector from an array.","Creates a vector from the first 2 values in slice.","Creates a vector from the first 3 values in slice.","Creates a vector from the first 4 values in slice.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Computes the squared length of self.","Computes the squared length of self.","Computes the squared length of self.","Returns a vector containing the maximum values for each …","Returns a vector containing the maximum values for each …","Returns a vector containing the maximum values for each …","Returns the horizontal maximum of self.","Returns the horizontal maximum of self.","Returns the horizontal maximum of self.","Returns a vector containing the minimum values for each …","Returns a vector containing the minimum values for each …","Returns a vector containing the minimum values for each …","Returns the horizontal minimum of self.","Returns the horizontal minimum of self.","Returns the horizontal minimum of self.","","","","","","","","","","","","","Creates a new vector.","Creates a new vector.","Creates a new vector.","","","","","","","","","","","","","","","","","","","","","","Returns a vector containing the saturating addition of self…","Returns a vector containing the saturating addition of self…","Returns a vector containing the saturating addition of self…","Returns a vector containing the saturating division of self…","Returns a vector containing the saturating division of self…","Returns a vector containing the saturating division of self…","Returns a vector containing the saturating multiplication …","Returns a vector containing the saturating multiplication …","Returns a vector containing the saturating multiplication …","Returns a vector containing the saturating subtraction of …","Returns a vector containing the saturating subtraction of …","Returns a vector containing the saturating subtraction of …","Creates a vector from the elements in if_true and if_false…","Creates a vector from the elements in if_true and if_false…","Creates a vector from the elements in if_true and if_false…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","","","","","","","","","","","","","","","","","","","[x, y]","[x, y, z]","[x, y, z, w]","","","","","","","Creates a 2D vector from the x and y elements of self, …","Creates a 3D vector from the x, y and z elements of self, …","","","","","","","","","","","","","","","","","","","Creates a 2-dimensional vector.","Creates a 3-dimensional vector.","Creates a 4-dimensional vector.","","Returns a vector containing the wrapping addition of self …","Returns a vector containing the wrapping addition of self …","Returns a vector containing the wrapping addition of self …","Returns a vector containing the wrapping division of self …","Returns a vector containing the wrapping division of self …","Returns a vector containing the wrapping division of self …","Returns a vector containing the wrapping multiplication of …","Returns a vector containing the wrapping multiplication of …","Returns a vector containing the wrapping multiplication of …","Returns a vector containing the wrapping subtraction of …","Returns a vector containing the wrapping subtraction of …","Returns a vector containing the wrapping subtraction of …","Writes the elements of self to the first 2 elements in …","Writes the elements of self to the first 3 elements in …","Writes the elements of self to the first 4 elements in …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The unit axes.","The unit axes.","The unit axes.","All u64::MAX.","All u64::MAX.","All u64::MAX.","All u64::MIN.","All u64::MIN.","All u64::MIN.","All ones.","All ones.","All ones.","A 2-dimensional vector.","A 3-dimensional vector.","A 4-dimensional vector.","A unit vector pointing along the positive W axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive X axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Y axis.","A unit vector pointing along the positive Z axis.","A unit vector pointing along the positive Z axis.","All zeroes.","All zeroes.","All zeroes.","","","","","","","","","","","","","Casts all elements of self to f64.","Casts all elements of self to f64.","Casts all elements of self to f64.","Casts all elements of self to i64.","Casts all elements of self to i64.","Casts all elements of self to i64.","Casts all elements of self to i32.","Casts all elements of self to i32.","Casts all elements of self to i32.","","","","","","","Casts all elements of self to u32.","Casts all elements of self to u32.","Casts all elements of self to u32.","Casts all elements of self to f32.","Casts all elements of self to f32.","Casts all elements of self to f32.","Casts all elements of self to f32.","","","","","","","","","","","","","","","","","","","","","","","","","Component-wise clamping of values, similar to u64::clamp.","Component-wise clamping of values, similar to u64::clamp.","Component-wise clamping of values, similar to u64::clamp.","","","","","","","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a == …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a >= …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a > …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a <= …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a < …","Returns a vector mask containing the result of a != …","Returns a vector mask containing the result of a != …","Returns a vector mask containing the result of a != …","Computes the cross product of self and rhs.","","","","","","","","","","","","","","","","Computes the dot product of self and rhs.","Computes the dot product of self and rhs.","Computes the dot product of self and rhs.","Returns a vector where every component is the dot product …","Returns a vector where every component is the dot product …","Returns a vector where every component is the dot product …","","","","Creates a 3D vector from self and the given z value.","Creates a 4D vector from self and the given w value.","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","","","","","Creates a new vector from an array.","Creates a new vector from an array.","Creates a new vector from an array.","Creates a vector from the first 2 values in slice.","Creates a vector from the first 3 values in slice.","Creates a vector from the first 4 values in slice.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Computes the squared length of self.","Computes the squared length of self.","Computes the squared length of self.","Returns a vector containing the maximum values for each …","Returns a vector containing the maximum values for each …","Returns a vector containing the maximum values for each …","Returns the horizontal maximum of self.","Returns the horizontal maximum of self.","Returns the horizontal maximum of self.","Returns a vector containing the minimum values for each …","Returns a vector containing the minimum values for each …","Returns a vector containing the minimum values for each …","Returns the horizontal minimum of self.","Returns the horizontal minimum of self.","Returns the horizontal minimum of self.","","","","","","","","","","","","","Creates a new vector.","Creates a new vector.","Creates a new vector.","","","","","","","","","","","","","","","","","","","","","","Returns a vector containing the saturating addition of self…","Returns a vector containing the saturating addition of self…","Returns a vector containing the saturating addition of self…","Returns a vector containing the saturating division of self…","Returns a vector containing the saturating division of self…","Returns a vector containing the saturating division of self…","Returns a vector containing the saturating multiplication …","Returns a vector containing the saturating multiplication …","Returns a vector containing the saturating multiplication …","Returns a vector containing the saturating subtraction of …","Returns a vector containing the saturating subtraction of …","Returns a vector containing the saturating subtraction of …","Creates a vector from the elements in if_true and if_false…","Creates a vector from the elements in if_true and if_false…","Creates a vector from the elements in if_true and if_false…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","Creates a vector with all elements set to v.","","","","","","","","","","","","","","","","","","","[x, y]","[x, y, z]","[x, y, z, w]","","","","","","","Creates a 2D vector from the x and y elements of self, …","Creates a 3D vector from the x, y and z elements of self, …","","","","","","","","","","","","","Creates a 2-dimensional vector.","Creates a 3-dimensional vector.","Creates a 4-dimensional vector.","","Returns a vector containing the wrapping addition of self …","Returns a vector containing the wrapping addition of self …","Returns a vector containing the wrapping addition of self …","Returns a vector containing the wrapping division of self …","Returns a vector containing the wrapping division of self …","Returns a vector containing the wrapping division of self …","Returns a vector containing the wrapping multiplication of …","Returns a vector containing the wrapping multiplication of …","Returns a vector containing the wrapping multiplication of …","Returns a vector containing the wrapping subtraction of …","Returns a vector containing the wrapping subtraction of …","Returns a vector containing the wrapping subtraction of …","Writes the elements of self to the first 2 elements in …","Writes the elements of self to the first 3 elements in …","Writes the elements of self to the first 4 elements in …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,9,10,10,11,11,12,12,13,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,9,10,11,12,13,11,9,10,11,9,10,11,10,11,17,18,19,20,0,0,21,23,24,25,26,27,28,17,18,19,20,17,18,19,20,17,18,19,20,0,0,0,0,21,23,24,17,18,25,26,27,28,19,20,17,18,19,20,17,18,19,20,20,17,18,19,20,17,18,19,20,18,19,20,17,18,19,20,0,0,0,0,0,20,17,18,19,20,17,18,19,20,18,19,20,21,23,24,17,18,25,26,27,19,20,17,18,19,20,21,23,24,17,18,25,26,27,28,19,20,24,17,17,18,18,25,26,27,28,19,19,20,20,24,17,17,18,18,25,26,27,19,19,20,20,25,24,26,27,17,18,28,19,18,19,18,19,18,19,25,24,26,27,17,18,19,20,28,17,18,19,20,17,18,19,20,24,17,18,25,27,19,20,24,17,18,25,27,28,19,20,17,18,19,20,17,18,19,20,21,23,24,17,18,25,26,27,28,19,20,21,23,24,17,18,25,26,27,28,19,20,17,18,19,20,17,18,19,20,17,18,19,20,17,18,19,20,17,18,19,20,21,23,24,17,18,25,26,27,28,19,20,21,23,24,17,18,25,26,27,28,19,20,17,18,19,20,17,18,19,20,17,18,19,20,17,18,19,20,17,18,19,20,17,18,19,20,24,25,26,27,24,25,26,27,28,17,18,19,20,18,19,21,23,24,17,18,25,26,27,28,19,20,21,23,25,28,19,20,21,23,25,28,19,20,24,25,26,27,17,18,19,20,17,18,19,20,17,17,18,18,28,19,19,20,20,17,17,18,18,19,19,20,20,17,18,19,20,17,18,28,19,20,17,18,19,20,21,23,24,17,18,25,26,27,28,19,20,17,18,19,20,17,18,19,17,18,19,20,21,21,23,23,24,24,17,17,18,18,25,25,26,26,27,27,28,28,19,19,20,20,17,18,19,20,21,23,24,24,24,17,17,17,18,18,18,18,18,25,26,26,26,27,27,28,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,28,21,24,17,25,26,21,17,18,28,19,20,23,24,26,27,28,21,23,24,25,26,27,21,23,24,25,26,27,21,23,24,25,26,27,21,23,24,25,26,27,24,25,26,27,24,26,27,28,21,24,26,21,21,23,25,27,28,23,21,25,27,28,23,24,26,28,23,24,26,27,28,28,28,23,27,23,24,26,27,28,23,24,26,27,28,23,24,26,27,28,21,23,24,26,27,25,21,24,26,23,27,28,17,18,28,19,20,21,23,24,26,27,28,28,17,18,19,20,17,18,19,20,21,23,24,17,18,25,26,27,28,19,20,21,23,24,25,26,27,28,21,23,24,17,18,25,26,27,28,19,20,21,23,24,17,18,25,26,27,28,19,20,17,18,19,20,28,17,18,19,20,17,18,28,19,20,17,18,28,19,20,17,18,28,19,20,17,18,28,19,20,17,18,28,19,20,23,27,23,27,23,27,23,27,0,0,0,0,21,23,17,18,19,20,17,18,19,20,17,18,19,20,17,18,19,20,21,21,21,23,23,24,24,24,24,24,17,17,18,18,25,25,25,26,26,26,26,26,27,27,27,27,28,28,28,28,19,19,20,20,17,18,19,20,21,23,24,24,17,17,18,18,25,25,26,26,27,27,28,19,19,20,20,25,24,26,27,28,24,25,26,27,25,24,26,28,24,26,28,27,24,17,18,25,26,27,28,19,20,17,18,19,20,17,18,28,19,20,17,18,19,20,27,27,27,17,17,27,27,27,27,27,27,27,17,18,19,20,21,23,24,24,17,17,18,18,25,25,26,26,27,27,28,28,19,19,20,20,17,18,19,20,17,18,19,20,27,0,17,18,19,20,17,18,19,20,17,18,19,20,17,17,18,18,19,19,20,20,17,17,18,18,19,19,20,20,17,18,19,20,17,17,18,19,20,24,25,26,27,17,18,19,20,17,18,19,20,28,17,18,19,20,24,17,17,18,18,25,26,27,28,19,19,20,20,24,17,17,18,18,25,26,27,19,19,20,20,25,24,26,27,24,24,17,17,18,18,25,25,26,26,27,27,28,28,19,19,20,20,17,18,28,19,20,28,21,23,24,25,26,27,21,23,24,25,26,27,28,21,23,24,17,18,25,26,27,28,19,20,21,23,27,28,21,23,24,17,18,25,26,27,28,19,20,21,24,26,23,27,23,27,21,24,26,23,27,23,27,21,23,24,25,26,27,17,18,19,20,18,19,20,21,23,24,17,18,25,26,27,28,19,20,21,23,24,17,18,25,26,27,28,19,20,17,18,19,20,21,23,24,17,18,25,26,27,28,19,20,0,0,0,0,27,21,23,24,25,26,27,17,18,28,19,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,17,18,24,26,27,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,17,18,19,20,20,20,20,20,20,17,18,19,20,20,17,18,19,20,17,18,19,20,18,19,20,17,18,19,20,20,17,18,19,20,17,18,19,20,18,19,20,18,19,20,20,18,19,20,18,19,20,18,19,20,17,18,19,20,20,20,20,20,20,17,18,19,20,20,17,18,19,20,17,18,19,20,18,19,20,17,18,19,20,20,17,18,19,20,17,18,19,20,18,19,20,18,28,19,20,20,18,19,20,18,19,20,18,19,20,18,19,20,20,20,20,20,20,18,19,20,20,18,19,20,18,19,20,18,19,20,18,19,20,20,18,19,20,18,19,20,18,19,20,18,19,20,20,18,19,20,18,19,20,18,19,20,17,18,24,26,27,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,17,18,19,20,20,20,20,20,20,17,18,19,20,20,17,18,19,20,17,18,19,20,18,19,20,17,18,19,20,20,17,18,19,20,17,18,19,20,18,19,20,18,19,20,20,18,19,20,18,19,20,18,19,20,17,18,19,20,20,20,20,20,20,17,18,19,20,20,17,18,19,20,17,18,19,20,18,19,20,17,18,19,20,20,17,18,19,20,17,18,19,20,18,19,20,18,19,20,20,18,19,20,18,19,20,18,19,20,18,19,20,20,20,20,20,20,18,19,20,20,18,19,20,18,19,20,18,19,20,18,19,20,20,18,19,20,18,19,20,18,19,20,18,19,20,20,18,19,20,18,19,20,18,19,20,18,24,26,27,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,18,19,20,20,20,20,20,20,18,19,20,20,18,19,20,18,19,20,18,19,20,18,19,20,20,18,19,20,18,19,20,18,19,20,18,19,20,20,18,19,20,18,19,20,18,19,20,18,19,20,20,20,20,20,20,18,19,20,20,18,19,20,18,19,20,18,19,20,18,19,20,20,18,19,20,18,19,20,18,19,20,18,19,20,20,18,19,20,18,19,20,18,19,20,18,19,20,20,20,20,20,20,18,19,20,20,18,19,20,18,19,20,18,19,20,18,19,20,20,18,19,20,18,19,20,18,19,20,18,19,20,20,18,19,20,18,19,20,18,19,20,32,33,34,0,0,0,0,0,0,0,0,0,54,56,29,30,31,35,32,33,34,32,33,34,32,33,34,54,56,29,30,31,35,32,33,34,32,33,34,32,33,34,34,32,33,34,32,33,34,33,34,32,33,34,34,32,33,34,32,33,34,33,34,54,56,29,30,31,32,33,34,32,33,34,54,56,29,30,31,35,32,33,34,29,30,31,35,32,32,33,33,34,34,29,30,31,32,32,33,33,34,34,29,30,31,35,32,33,33,33,33,35,32,33,34,32,33,34,29,30,31,29,30,31,32,33,34,29,30,31,35,32,33,34,32,33,34,32,33,34,32,33,33,34,54,56,29,30,31,35,32,33,34,54,56,29,30,31,35,32,33,34,32,33,34,32,33,34,32,33,34,32,33,34,32,33,34,54,56,29,30,31,35,32,33,34,54,56,29,30,31,35,32,33,34,32,33,34,32,33,34,32,33,34,32,33,34,32,33,34,32,33,34,29,30,31,29,30,31,35,32,33,34,33,54,56,29,30,31,35,32,33,34,54,56,54,56,29,30,31,32,33,34,32,33,34,35,32,32,33,33,34,34,32,32,33,33,34,34,32,33,34,0,0,0,35,32,33,34,32,33,34,0,0,0,0,54,56,29,30,31,35,32,33,34,32,33,34,32,33,32,33,34,54,54,56,56,29,29,30,30,31,31,35,35,32,32,33,33,34,34,32,33,34,54,56,29,30,30,31,31,35,32,32,32,32,32,32,33,33,33,33,33,33,33,34,34,34,34,34,34,34,34,34,34,34,35,54,29,30,32,54,35,32,33,34,56,30,31,35,54,56,29,30,31,54,56,29,30,31,54,56,29,30,31,54,56,29,30,31,29,30,31,30,31,35,54,30,54,54,56,29,31,35,56,56,30,35,56,30,31,35,35,35,56,31,56,30,31,35,56,30,31,35,56,30,31,35,54,56,30,31,29,54,30,56,31,35,35,32,33,34,54,56,30,31,35,35,32,33,34,32,33,34,54,56,29,30,31,35,32,33,34,54,56,29,30,31,35,54,56,29,30,31,35,32,33,34,54,56,29,30,31,35,32,33,34,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,35,32,33,34,56,31,56,31,56,31,56,31,54,56,32,33,34,32,33,34,32,33,34,32,33,34,54,54,56,56,29,29,29,30,30,30,30,31,31,31,31,35,35,35,32,32,33,33,34,34,32,33,34,54,56,29,29,30,30,31,31,35,32,32,33,33,34,34,29,30,31,35,29,30,31,29,30,35,31,29,30,31,35,32,33,34,32,33,34,35,32,33,34,32,33,34,31,31,31,32,32,31,31,31,31,31,31,31,32,33,34,54,56,29,29,30,30,31,31,35,35,32,32,33,33,34,34,32,33,34,32,33,34,31,32,33,34,32,33,34,32,33,34,32,32,33,33,34,34,32,32,33,33,34,34,32,33,34,32,32,33,34,29,30,31,32,33,34,32,33,34,35,32,33,34,29,30,31,35,32,32,33,33,34,34,29,30,31,32,32,33,33,34,34,29,30,31,29,29,30,30,31,31,35,35,32,32,33,33,34,34,35,32,33,34,35,54,56,29,30,31,54,56,29,30,31,35,54,56,29,30,31,35,32,33,34,54,56,31,35,54,56,29,30,31,35,32,33,34,54,30,56,31,54,30,56,31,54,56,29,30,31,32,33,34,33,34,54,56,29,30,31,35,32,33,34,54,56,29,30,31,35,32,33,34,32,33,34,54,56,29,30,31,35,32,33,34,35,34,31,54,56,29,30,31,35,32,33,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,35,32,33,34,29,30,31,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,32,33,34,34,34,34,34,34,32,33,34,34,32,33,34,32,33,34,33,34,32,33,34,34,32,33,34,32,33,34,33,34,33,34,34,33,34,33,34,33,34,32,33,34,34,34,34,34,34,32,33,34,34,32,33,34,32,33,34,33,34,32,33,34,34,32,33,34,32,33,34,33,34,35,33,34,34,33,34,33,34,33,34,33,34,34,34,34,34,34,33,34,34,33,34,33,34,33,34,33,34,34,33,34,33,34,33,34,33,34,34,33,34,33,34,33,34,35,32,33,34,29,30,31,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,32,33,34,34,34,34,34,34,32,33,34,34,32,33,34,32,33,34,33,34,32,33,34,34,32,33,34,32,33,34,33,34,33,34,34,33,34,33,34,33,34,32,33,34,34,34,34,34,34,32,33,34,34,32,33,34,32,33,34,33,34,32,33,34,34,32,33,34,32,33,34,33,34,33,34,34,33,34,33,34,33,34,33,34,34,34,34,34,34,33,34,34,33,34,33,34,33,34,33,34,34,33,34,33,34,33,34,33,34,34,33,34,33,34,33,34,35,33,34,30,31,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,33,34,34,34,34,34,34,33,34,34,33,34,33,34,33,34,33,34,34,33,34,33,34,33,34,33,34,34,33,34,33,34,33,34,33,34,34,34,34,34,34,33,34,34,33,34,33,34,33,34,33,34,34,33,34,33,34,33,34,33,34,34,33,34,33,34,33,34,33,34,34,34,34,34,34,33,34,34,33,34,33,34,33,34,33,34,34,33,34,33,34,33,34,33,34,34,33,34,33,34,33,34,39,40,41,0,0,0,39,40,41,39,40,41,39,40,41,41,39,40,41,39,40,41,40,41,39,40,41,41,39,40,41,39,40,41,40,41,39,40,41,39,40,41,39,39,40,40,41,41,39,39,40,40,41,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,40,41,39,39,40,40,41,41,39,39,40,40,41,41,39,39,40,40,41,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,40,39,40,41,39,40,41,39,39,40,40,41,41,39,39,40,40,41,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,39,39,40,40,41,41,39,39,39,40,40,40,40,41,41,41,41,41,41,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,0,0,0,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,39,39,40,40,41,41,39,39,40,40,41,41,39,40,41,39,40,41,39,40,41,39,39,39,39,40,40,41,41,39,39,40,40,41,41,39,39,40,40,41,41,39,40,41,39,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,39,39,39,39,39,39,39,39,39,39,40,40,40,40,40,40,40,40,40,40,41,41,41,41,41,41,41,41,41,41,39,39,39,39,39,39,39,39,39,39,40,40,40,40,40,40,40,40,40,40,41,41,41,41,41,41,41,41,41,41,39,40,41,39,40,41,39,39,40,40,41,41,39,39,40,40,41,41,39,39,40,40,41,41,39,40,41,39,40,41,39,40,41,40,41,39,39,39,39,40,40,40,40,41,41,41,41,39,40,41,39,40,41,41,39,40,41,39,40,41,39,40,41,39,40,41,39,40,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,39,40,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,39,40,41,41,41,41,41,41,39,40,41,41,39,40,41,39,40,41,40,41,39,40,41,41,39,40,41,39,40,41,40,41,40,41,41,40,41,40,41,40,41,39,40,41,41,41,41,41,41,39,40,41,41,39,40,41,39,40,41,40,41,39,40,41,41,39,40,41,39,40,41,40,41,40,41,41,40,41,40,41,40,41,40,41,41,41,41,41,41,40,41,41,40,41,40,41,40,41,40,41,41,40,41,40,41,40,41,40,41,41,40,41,40,41,40,41,39,40,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,39,40,41,41,41,41,41,41,39,40,41,41,39,40,41,39,40,41,40,41,39,40,41,41,39,40,41,39,40,41,40,41,40,41,41,40,41,40,41,40,41,39,40,41,41,41,41,41,41,39,40,41,41,39,40,41,39,40,41,40,41,39,40,41,41,39,40,41,39,40,41,40,41,40,41,41,40,41,40,41,40,41,40,41,41,41,41,41,41,40,41,41,40,41,40,41,40,41,40,41,41,40,41,40,41,40,41,40,41,41,40,41,40,41,40,41,40,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,40,41,41,41,41,41,41,40,41,41,40,41,40,41,40,41,40,41,41,40,41,40,41,40,41,40,41,41,40,41,40,41,40,41,40,41,41,41,41,41,41,40,41,41,40,41,40,41,40,41,40,41,41,40,41,40,41,40,41,40,41,41,40,41,40,41,40,41,40,41,41,41,41,41,41,40,41,41,40,41,40,41,40,41,40,41,41,40,41,40,41,40,41,40,41,41,40,41,40,41,40,41,36,37,38,0,0,0,36,37,38,36,37,38,36,37,38,38,36,37,38,36,37,38,37,38,36,37,38,38,36,37,38,36,37,38,37,38,36,37,38,36,37,38,36,36,37,37,38,38,36,36,37,37,38,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,37,38,36,36,37,37,38,38,36,36,37,37,38,38,36,36,37,37,38,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,37,36,37,38,36,37,38,36,36,37,37,38,38,36,36,37,37,38,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,36,36,37,37,38,38,36,36,36,36,37,37,37,37,37,38,38,38,38,38,38,38,38,36,37,38,36,37,38,36,37,38,0,0,0,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,36,36,37,37,38,38,36,36,37,37,38,38,36,37,38,36,37,38,36,37,38,36,36,36,36,37,37,38,38,36,36,37,37,38,38,36,36,37,37,38,38,36,37,38,36,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,36,36,36,36,36,36,36,36,36,36,37,37,37,37,37,37,37,37,37,37,38,38,38,38,38,38,38,38,38,38,36,36,36,36,36,36,36,36,36,36,37,37,37,37,37,37,37,37,37,37,38,38,38,38,38,38,38,38,38,38,36,37,38,36,37,38,36,36,37,37,38,38,36,36,37,37,38,38,36,36,37,37,38,38,36,37,38,36,37,38,36,37,38,37,38,36,36,37,37,38,38,36,37,38,36,37,38,38,36,37,38,36,37,38,36,37,38,36,37,38,36,37,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,36,37,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,36,37,38,38,38,38,38,38,36,37,38,38,36,37,38,36,37,38,37,38,36,37,38,38,36,37,38,36,37,38,37,38,37,38,38,37,38,37,38,37,38,36,37,38,38,38,38,38,38,36,37,38,38,36,37,38,36,37,38,37,38,36,37,38,38,36,37,38,36,37,38,37,38,37,38,38,37,38,37,38,37,38,37,38,38,38,38,38,38,37,38,38,37,38,37,38,37,38,37,38,38,37,38,37,38,37,38,37,38,38,37,38,37,38,37,38,36,37,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,36,37,38,38,38,38,38,38,36,37,38,38,36,37,38,36,37,38,37,38,36,37,38,38,36,37,38,36,37,38,37,38,37,38,38,37,38,37,38,37,38,36,37,38,38,38,38,38,38,36,37,38,38,36,37,38,36,37,38,37,38,36,37,38,38,36,37,38,36,37,38,37,38,37,38,38,37,38,37,38,37,38,37,38,38,38,38,38,38,37,38,38,37,38,37,38,37,38,37,38,38,37,38,37,38,37,38,37,38,38,37,38,37,38,37,38,37,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,37,38,38,38,38,38,38,37,38,38,37,38,37,38,37,38,37,38,38,37,38,37,38,37,38,37,38,38,37,38,37,38,37,38,37,38,38,38,38,38,38,37,38,38,37,38,37,38,37,38,37,38,38,37,38,37,38,37,38,37,38,38,37,38,37,38,37,38,37,38,38,38,38,38,38,37,38,38,37,38,37,38,37,38,37,38,38,37,38,37,38,37,38,37,38,38,37,38,37,38,37,38,69,66,0,68,66,0,68,69,0,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,68,69,66,66,66,66,66,66,68,69,66,66,68,69,66,68,69,66,69,66,68,69,66,66,68,69,66,68,69,66,69,66,69,66,66,69,66,69,66,69,66,69,66,68,68,66,66,66,66,66,68,69,66,66,68,69,66,68,69,66,69,66,68,69,66,66,68,69,66,68,69,66,69,66,66,69,69,66,66,69,66,69,66,69,66,69,66,66,66,66,66,66,69,66,66,69,66,69,66,69,66,69,66,66,69,66,69,66,69,66,69,66,66,69,66,69,66,69,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,68,69,66,66,66,66,66,66,68,69,66,66,68,69,66,68,69,66,69,66,68,69,66,66,68,69,66,68,69,66,69,66,69,66,66,69,66,69,66,69,66,68,69,66,66,66,66,66,66,68,69,66,66,68,69,66,68,69,66,69,66,68,69,66,66,68,69,66,68,69,66,69,66,69,66,66,69,66,69,66,69,66,69,66,66,66,66,66,66,69,66,66,69,66,69,66,69,66,69,66,66,69,66,69,66,69,66,69,66,66,69,66,69,66,69,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,69,66,66,66,66,66,66,69,66,66,69,66,69,66,69,66,69,66,66,69,66,69,66,69,66,69,66,66,69,66,69,66,69,66,69,66,66,66,66,66,66,69,66,66,69,66,69,66,69,66,69,66,66,69,66,69,66,69,66,69,66,66,69,66,69,66,69,66,69,66,66,66,66,66,66,69,66,66,69,66,69,66,69,66,69,66,66,69,66,69,66,69,66,69,66,66,69,66,69,66,69,66,46,47,48,46,47,48,46,47,48,46,47,48,0,0,0,48,46,47,48,46,47,48,47,48,46,47,48,46,46,47,47,48,48,46,46,47,47,48,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,47,48,46,46,47,47,48,48,46,46,47,47,48,48,46,46,47,47,48,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,47,46,47,48,46,46,47,47,48,48,46,46,47,47,48,48,46,47,48,46,47,48,46,47,48,46,47,46,46,47,47,48,48,46,46,46,47,47,47,47,48,48,48,48,48,48,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,46,47,47,48,48,46,46,47,47,48,48,46,47,48,46,47,48,46,46,47,47,48,48,46,46,47,47,48,48,46,46,47,47,48,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,46,46,46,46,46,46,46,46,46,46,47,47,47,47,47,47,47,47,47,47,48,48,48,48,48,48,48,48,48,48,46,46,46,46,46,46,46,46,46,46,47,47,47,47,47,47,47,47,47,47,48,48,48,48,48,48,48,48,48,48,46,47,48,46,46,47,47,48,48,46,46,47,47,48,48,46,46,47,47,48,48,46,47,48,46,47,48,46,47,48,47,48,46,46,46,46,47,47,47,47,48,48,48,48,46,47,48,46,47,48,0,0,0,48,46,47,48,46,47,48,46,47,48,46,47,48,46,47,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,46,47,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,46,47,48,48,48,48,48,48,46,47,48,48,46,47,48,46,47,48,47,48,46,47,48,48,46,47,48,46,47,48,47,48,47,48,48,47,48,47,48,47,48,46,47,48,48,48,48,48,48,46,47,48,48,46,47,48,46,47,48,47,48,46,47,48,48,46,47,48,46,47,48,47,48,47,48,48,47,48,47,48,47,48,47,48,48,48,48,48,48,47,48,48,47,48,47,48,47,48,47,48,48,47,48,47,48,47,48,47,48,48,47,48,47,48,47,48,46,47,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,46,47,48,48,48,48,48,48,46,47,48,48,46,47,48,46,47,48,47,48,46,47,48,48,46,47,48,46,47,48,47,48,47,48,48,47,48,47,48,47,48,46,47,48,48,48,48,48,48,46,47,48,48,46,47,48,46,47,48,47,48,46,47,48,48,46,47,48,46,47,48,47,48,47,48,48,47,48,47,48,47,48,47,48,48,48,48,48,48,47,48,48,47,48,47,48,47,48,47,48,48,47,48,47,48,47,48,47,48,48,47,48,47,48,47,48,47,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,47,48,48,48,48,48,48,47,48,48,47,48,47,48,47,48,47,48,48,47,48,47,48,47,48,47,48,48,47,48,47,48,47,48,47,48,48,48,48,48,48,47,48,48,47,48,47,48,47,48,47,48,48,47,48,47,48,47,48,47,48,48,47,48,47,48,47,48,47,48,48,48,48,48,48,47,48,48,47,48,47,48,47,48,47,48,48,47,48,47,48,47,48,47,48,48,47,48,47,48,47,48,43,44,45,43,44,45,43,44,45,43,44,45,0,0,0,45,43,44,45,43,44,45,44,45,43,44,45,43,43,44,44,45,45,43,43,44,44,45,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,44,45,43,43,44,44,45,45,43,43,44,44,45,45,43,43,44,44,45,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,44,43,44,45,43,43,44,44,45,45,43,43,44,44,45,45,43,44,45,43,44,45,43,44,45,43,44,43,43,44,44,45,45,43,43,43,43,44,44,44,44,44,45,45,45,45,45,45,45,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,43,44,44,45,45,43,43,44,44,45,45,43,44,45,43,44,45,43,43,44,44,45,45,43,43,44,44,45,45,43,43,44,44,45,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,43,43,43,43,43,43,43,43,43,43,44,44,44,44,44,44,44,44,44,44,45,45,45,45,45,45,45,45,45,45,43,43,43,43,43,43,43,43,43,43,44,44,44,44,44,44,44,44,44,44,45,45,45,45,45,45,45,45,45,45,43,44,45,43,43,44,44,45,45,43,43,44,44,45,45,43,43,44,44,45,45,43,44,45,43,44,45,43,44,45,44,45,43,43,44,44,45,45,43,44,45,43,44,45,0,0,0,45,43,44,45,43,44,45,43,44,45,43,44,45,43,44,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,44,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,44,45,45,45,45,45,45,43,44,45,45,43,44,45,43,44,45,44,45,43,44,45,45,43,44,45,43,44,45,44,45,44,45,45,44,45,44,45,44,45,43,44,45,45,45,45,45,45,43,44,45,45,43,44,45,43,44,45,44,45,43,44,45,45,43,44,45,43,44,45,44,45,44,45,45,44,45,44,45,44,45,44,45,45,45,45,45,45,44,45,45,44,45,44,45,44,45,44,45,45,44,45,44,45,44,45,44,45,45,44,45,44,45,44,45,43,44,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,44,45,45,45,45,45,45,43,44,45,45,43,44,45,43,44,45,44,45,43,44,45,45,43,44,45,43,44,45,44,45,44,45,45,44,45,44,45,44,45,43,44,45,45,45,45,45,45,43,44,45,45,43,44,45,43,44,45,44,45,43,44,45,45,43,44,45,43,44,45,44,45,44,45,45,44,45,44,45,44,45,44,45,45,45,45,45,45,44,45,45,44,45,44,45,44,45,44,45,45,44,45,44,45,44,45,44,45,45,44,45,44,45,44,45,44,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,44,45,45,45,45,45,45,44,45,45,44,45,44,45,44,45,44,45,45,44,45,44,45,44,45,44,45,45,44,45,44,45,44,45,44,45,45,45,45,45,45,44,45,45,44,45,44,45,44,45,44,45,45,44,45,44,45,44,45,44,45,45,44,45,44,45,44,45,44,45,45,45,45,45,45,44,45,45,44,45,44,45,44,45,44,45,45,44,45,44,45,44,45,44,45,45,44,45,44,45,44,45],"f":[0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[1,1],[[-1,-2],2,[],[]],[[],1],[[1,1],3],0,0,[[1,4],5],[-1,-1,[]],[[1,-1],2,6],0,0,[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,8,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9,3],[10,3],[11,3],[12,3],[13,3],[9,3],[10,3],[11,3],[12,3],[13,3],[[9,9],9],[[10,10],10],[[11,11],11],[[12,12],12],[[13,13],13],[[9,9],2],[[10,10],2],[[11,11],2],[[12,12],2],[[13,13],2],[9,14],[10,14],[11,14],[12,14],[13,14],[[9,9],9],[[10,10],10],[[11,11],11],[[12,12],12],[[13,13],13],[[9,9],2],[[10,10],2],[[11,11],2],[[12,12],2],[[13,13],2],[[9,9],9],[[10,10],10],[[11,11],11],[[12,12],12],[[13,13],13],[[9,9],2],[[10,10],2],[[11,11],2],[[12,12],2],[[13,13],2],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[9,9],[10,10],[11,11],[12,12],[13,13],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[],9],[[],10],[[],11],[[],12],[[],13],[[9,9],3],[[10,10],3],[[11,11],3],[[12,12],3],[[13,13],3],[[9,4],5],[[9,4],5],[[10,4],5],[[10,4],5],[[11,4],5],[[11,4],5],[[12,4],5],[[12,4],5],[[13,4],5],[[13,4],5],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[9,-1],2,6],[[10,-1],2,6],[[11,-1],2,6],[[12,-1],2,6],[[13,-1],2,6],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[3,3],9],[[3,3,3],10],[[3,3,3,3],11],[[3,3,3],12],[[3,3,3,3],13],[9,9],[10,10],[11,11],[12,12],[13,13],[[9,15,3],2],[[10,15,3],2],[[11,15,3],2],[[12,15,3],2],[[13,15,3],2],[3,9],[3,10],[3,11],[3,12],[3,13],[[9,15],3],[[10,15],3],[[11,15],3],[[12,15],3],[[13,15],3],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[17,17],[18,18],[19,19],[20,20],[[21,21,22],3],[[23,23,22],3],[[24,24,22],3],[[17,17,22],3],[[18,18,22],3],[[25,25,22],3],[[26,26,22],3],[[27,27,22],3],[[28,28,22],3],[[19,19,22],3],[[20,20,22],3],[[24,24],-1,[]],[[17,22],17],[[17,17],17],[[18,18],18],[[18,22],18],[[25,25],-1,[]],[[26,26],-1,[]],[[27,27],-1,[]],[[28,28],28],[[19,19],19],[[19,22],19],[[20,20],20],[[20,22],20],[[24,24],2],[[17,22],2],[[17,17],2],[[18,22],2],[[18,18],2],[[25,25],2],[[26,26],2],[[27,27],2],[[19,22],2],[[19,19],2],[[20,20],2],[[20,22],2],[[25,25],25],[[24,24],24],[[26,26],26],[[27,27],27],[[17,17],22],[[18,18],22],[[28,28],22],[[19,19],22],[18,18],[19,19],[18,[[2,[18,18]]]],[19,[[2,[19,19]]]],[18,18],[19,19],[25,29],[24,30],[26,30],[27,31],[17,32],[18,33],[19,33],[20,34],[28,35],[17,36],[18,37],[19,37],[20,38],[17,39],[18,40],[19,40],[20,41],[24,[[42,[22]]]],[17,[[42,[22]]]],[18,[[42,[22]]]],[25,[[42,[22]]]],[27,[[42,[22]]]],[19,[[42,[22]]]],[20,[[42,[22]]]],[24,[[42,[22]]]],[17,[[42,[22]]]],[18,[[42,[22]]]],[25,[[42,[22]]]],[27,[[42,[22]]]],[28,[[42,[22]]]],[19,[[42,[22]]]],[20,[[42,[22]]]],[17,43],[18,44],[19,44],[20,45],[17,46],[18,47],[19,47],[20,48],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[17,17],[18,18],[19,19],[20,20],[[17,17,17],17],[[18,18,18],18],[[19,19,19],19],[[20,20,20],20],[[17,22,22],17],[[18,22,22],18],[[19,22,22],19],[[20,22,22],20],[[17,22],17],[[18,22],18],[[19,22],19],[[20,22],20],[[17,22],17],[[18,22],18],[[19,22],19],[[20,22],20],[21,21],[23,23],[24,24],[17,17],[18,18],[25,25],[26,26],[27,27],[28,28],[19,19],[20,20],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[17,17],9],[[18,18],10],[[19,19],12],[[20,20],13],[[17,17],9],[[18,18],10],[[19,19],12],[[20,20],13],[[17,17],9],[[18,18],10],[[19,19],12],[[20,20],13],[[17,17],9],[[18,18],10],[[19,19],12],[[20,20],13],[[17,17],9],[[18,18],10],[[19,19],12],[[20,20],13],[[17,17],9],[[18,18],10],[[19,19],12],[[20,20],13],[[24,15],18],[[25,15],17],[[26,15],19],[[27,15],20],[[24,15],18],[[25,15],17],[[26,15],19],[[27,15],20],[28,28],[[17,17],17],[[18,18],18],[[19,19],19],[[20,20],20],[[18,18],18],[[19,19],19],[[],21],[[],23],[[],24],[[],17],[[],18],[[],25],[[],26],[[],27],[[],28],[[],19],[[],20],[21,-1,[]],[23,-1,[]],[25,-1,[]],[28,-1,[]],[19,-1,[]],[20,-1,[]],[21,-1,[]],[23,-1,[]],[25,-1,[]],[28,-1,[]],[19,-1,[]],[20,-1,[]],[24,22],[25,22],[26,22],[27,22],[[17,17],22],[[18,18],22],[[19,19],22],[[20,20],22],[[17,17],22],[[18,18],22],[[19,19],22],[[20,20],22],[[17,22],17],[[17,17],17],[[18,22],18],[[18,18],18],[[28,22],28],[[19,19],19],[[19,22],19],[[20,20],20],[[20,22],20],[[17,22],2],[[17,17],2],[[18,18],2],[[18,22],2],[[19,22],2],[[19,19],2],[[20,20],2],[[20,22],2],[[17,17],17],[[18,18],18],[[19,19],19],[[20,20],20],[[17,17],22],[[18,18],22],[[28,28],22],[[19,19],22],[[20,20],22],[[17,17],17],[[18,18],18],[[19,19],19],[[20,20],20],[[21,21],3],[[23,23],3],[[24,24],3],[[17,17],3],[[18,18],3],[[25,25],3],[[26,26],3],[[27,27],3],[[28,28],3],[[19,19],3],[[20,20],3],[17,17],[18,18],[19,19],[20,20],[[17,22],18],[[18,22],20],[[19,22],20],[17,17],[18,18],[19,19],[20,20],[[21,4],5],[[21,4],5],[[23,4],5],[[23,4],5],[[24,4],5],[[24,4],5],[[17,4],5],[[17,4],5],[[18,4],5],[[18,4],5],[[25,4],5],[[25,4],5],[[26,4],5],[[26,4],5],[[27,4],5],[[27,4],5],[[28,4],5],[[28,4],5],[[19,4],5],[[19,4],5],[[20,4],5],[[20,4],5],[17,17],[18,18],[19,19],[20,20],[-1,-1,[]],[-1,-1,[]],[26,24],[21,24],[-1,-1,[]],[[[42,[22]]],17],[-1,-1,[]],[[[2,[22,22]]],17],[[[42,[22]]],18],[19,18],[-1,-1,[]],[[[2,[17,22]]],18],[[[2,[22,22,22]]],18],[-1,-1,[]],[21,26],[24,26],[-1,-1,[]],[23,27],[-1,-1,[]],[-1,-1,[]],[18,19],[[[2,[17,22]]],19],[20,19],[49,19],[[[42,[22]]],19],[[[2,[22,22,22]]],19],[-1,-1,[]],[[[2,[19,22]]],20],[[[2,[17,17]]],20],[[[2,[18,22]]],20],[[[42,[22]]],20],[[[2,[22,22,22,22]]],20],[[[2,[22,18]]],20],[-1,-1,[]],[[[2,[22,19]]],20],[[[2,[17,22,22]]],20],[28,20],[49,20],[23,28],[22,21],[22,24],[22,17],[22,25],[22,26],[[22,17],21],[[[42,[22]]],17],[[[42,[22]]],18],[[[42,[22]]],28],[[[42,[22]]],19],[[[42,[22]]],20],[[18,22],23],[[18,22],24],[[18,22],26],[[18,22],27],[[18,22],28],[[17,17,17],21],[[19,19,19,19],23],[[18,18,18],24],[[17,17],25],[[19,19,19],26],[[20,20,20,20],27],[[[42,[22]]],21],[[[42,[22]]],23],[[[42,[22]]],24],[[[42,[22]]],25],[[[42,[22]]],26],[[[42,[22]]],27],[[[42,[[42,[22]]]]],21],[[[42,[[42,[22]]]]],23],[[[42,[[42,[22]]]]],24],[[[42,[[42,[22]]]]],25],[[[42,[[42,[22]]]]],26],[[[42,[[42,[22]]]]],27],[[[50,[22]]],21],[[[50,[22]]],23],[[[50,[22]]],24],[[[50,[22]]],25],[[[50,[22]]],26],[[[50,[22]]],27],[18,24],[17,25],[18,26],[20,27],[[1,22,22,22],24],[[1,22,22,22],26],[[1,22,22,22],27],[[1,22,22,22],28],[25,21],[25,24],[25,26],[[25,17],21],[24,21],[24,23],[24,25],[24,27],[24,28],[[24,18],23],[26,21],[26,25],[26,27],[26,28],[27,23],[27,24],[27,26],[27,28],[28,23],[28,24],[28,26],[28,27],[[18,18],28],[[17,17],28],[[18,18],28],[[28,18],23],[[28,18],27],[22,23],[22,24],[22,26],[22,27],[22,28],[22,23],[22,24],[22,26],[22,27],[22,28],[22,23],[22,24],[22,26],[22,27],[22,28],[17,21],[18,23],[17,24],[17,26],[18,27],[[17,22],25],[[17,22,17],21],[[17,22,17],24],[[17,22,17],26],[[18,28,18],23],[[18,28,18],27],[18,28],[[[50,[22]]],17],[[[50,[22]]],18],[[[50,[22]]],28],[[[50,[22]]],19],[[[50,[22]]],20],[17,21],[18,23],[17,24],[17,26],[18,27],[20,28],[[22,22,22,22],28],[[17,15],-1,[]],[[18,15],-1,[]],[[19,15],-1,[]],[[20,15],-1,[]],[[17,15],-1,[]],[[18,15],-1,[]],[[19,15],-1,[]],[[20,15],-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[21,21],[23,23],[24,24],[25,25],[26,26],[27,27],[28,28],[21,3],[23,3],[24,3],[17,3],[18,3],[25,3],[26,3],[27,3],[28,3],[19,3],[20,3],[21,3],[23,3],[24,3],[17,3],[18,3],[25,3],[26,3],[27,3],[28,3],[19,3],[20,3],[17,9],[18,10],[19,12],[20,13],[28,3],[17,14],[18,14],[19,14],[20,14],[17,3],[18,3],[28,3],[19,3],[20,3],[17,22],[18,22],[28,22],[19,22],[20,22],[17,22],[18,22],[28,22],[19,22],[20,22],[17,22],[18,22],[28,22],[19,22],[20,22],[[17,17,22],17],[[18,18,22],18],[[28,28,22],28],[[19,19,22],19],[[20,20,22],20],[[18,18,18],23],[[18,18,18],27],[[18,18,18],23],[[18,18,18],27],[[18,18,18],23],[[18,18,18],27],[[18,18,18],23],[[18,18,18],27],[[17,17],25],[[18,18,18],24],[[19,19,19],26],[[20,20,20,20],27],0,0,[[17,17],17],[[18,18],18],[[19,19],19],[[20,20],20],[17,22],[18,22],[19,22],[20,22],[[17,17],17],[[18,18],18],[[19,19],19],[[20,20],20],[17,22],[18,22],[19,22],[20,22],[[21,21],-1,[]],[[21,26],-1,[]],[[21,24],-1,[]],[[23,27],-1,[]],[[23,23],-1,[]],[[24,18],-1,[]],[[24,24],-1,[]],[[24,22],-1,[]],[[24,21],-1,[]],[[24,19],19],[[17,17],17],[[17,22],17],[[18,18],18],[[18,22],18],[[25,22],-1,[]],[[25,25],-1,[]],[[25,17],-1,[]],[[26,19],-1,[]],[[26,18],18],[[26,22],-1,[]],[[26,26],-1,[]],[[26,21],-1,[]],[[27,27],-1,[]],[[27,23],-1,[]],[[27,20],-1,[]],[[27,22],-1,[]],[[28,19],-1,[]],[[28,22],28],[[28,18],-1,[]],[[28,28],28],[[19,19],19],[[19,22],19],[[20,20],20],[[20,22],20],[[17,17,17],17],[[18,18,18],18],[[19,19,19],19],[[20,20,20],20],[[21,21],2],[[23,23],2],[[24,24],2],[[24,22],2],[[17,17],2],[[17,22],2],[[18,22],2],[[18,18],2],[[25,22],2],[[25,25],2],[[26,26],2],[[26,22],2],[[27,22],2],[[27,27],2],[[28,28],2],[[19,19],2],[[19,22],2],[[20,20],2],[[20,22],2],[[25,25],25],[[24,24],24],[[26,26],26],[[27,27],27],[[28,28],28],[[24,22],24],[[25,22],25],[[26,22],26],[[27,22],27],[[25,17],17],[[24,18],18],[[26,18],18],[[28,18],18],[[24,19],19],[[26,19],19],[[28,19],19],[[27,20],20],[24,-1,[]],[17,17],[18,18],[25,-1,[]],[26,-1,[]],[27,-1,[]],[28,28],[19,19],[20,20],[[22,22],17],[[22,22,22],18],[[22,22,22],19],[[22,22,22,22],20],[17,17],[18,18],[28,28],[19,19],[20,20],[17,17],[18,18],[19,19],[20,20],[[22,22,22,22,22,22],27],[[22,22,22,22,22,22],27],[[22,22,22,22,22,22],27],[17,17],[[17,17],22],[[22,22,22],27],[[22,22,22],27],[[22,22,22],27],[[22,22,22],27],[[22,22,22,22],27],[[22,22,22,22],27],[[22,22,22,22],27],[[17,22],17],[[18,22],18],[[19,22],19],[[20,22],20],[-1,21,[[52,[],[[51,[21]]]]]],[-1,23,[[52,[],[[51,[23]]]]]],[-1,24,[[52,[],[[51,[24]]]]]],[-1,24,[[52,[],[[51,[24]]]]]],[-1,17,[[52,[],[[51,[17]]]]]],[-1,17,[[52,[],[[51,[17]]]]]],[-1,18,[[52,[],[[51,[18]]]]]],[-1,18,[[52,[],[[51,[18]]]]]],[-1,25,[[52,[],[[51,[25]]]]]],[-1,25,[[52,[],[[51,[25]]]]]],[-1,26,[[52,[],[[51,[26]]]]]],[-1,26,[[52,[],[[51,[26]]]]]],[-1,27,[[52,[],[[51,[27]]]]]],[-1,27,[[52,[],[[51,[27]]]]]],[-1,28,[[52,[],[[51,[28]]]]]],[-1,28,[[52,[],[[51,[28]]]]]],[-1,19,[[52,[],[[51,[19]]]]]],[-1,19,[[52,[],[[51,[19]]]]]],[-1,20,[[52,[],[[51,[20]]]]]],[-1,20,[[52,[],[[51,[20]]]]]],[[17,17],17],[[18,18],18],[[19,19],19],[[20,20],20],[[17,17],17],[[18,18],18],[[19,19],19],[[20,20],20],[[27,18],18],[[22,22,22,22],28],[17,17],[18,18],[19,19],[20,20],[[17,17],17],[[18,18],18],[[19,19],19],[[20,20],20],[[17,17],17],[[18,18],18],[[19,19],19],[[20,20],20],[[17,22],17],[[17,17],17],[[18,22],18],[[18,18],18],[[19,19],19],[[19,22],19],[[20,22],20],[[20,20],20],[[17,22],2],[[17,17],2],[[18,22],2],[[18,18],2],[[19,19],2],[[19,22],2],[[20,20],2],[[20,22],2],[[17,17],17],[[18,18],18],[[19,19],19],[[20,20],20],[[17,17],17],[17,17],[18,18],[19,19],[20,20],[[24,15],18],[[25,15],17],[[26,15],19],[[27,15],20],[[9,17,17],17],[[10,18,18],18],[[12,19,19],19],[[13,20,20],20],[17,17],[18,18],[19,19],[20,20],[[28,28,22],28],[22,17],[22,18],[22,19],[22,20],[[24,24],-1,[]],[[17,17],17],[[17,22],17],[[18,22],18],[[18,18],18],[[25,25],-1,[]],[[26,26],-1,[]],[[27,27],-1,[]],[[28,28],28],[[19,22],19],[[19,19],19],[[20,22],20],[[20,20],20],[[24,24],2],[[17,17],2],[[17,22],2],[[18,18],2],[[18,22],2],[[25,25],2],[[26,26],2],[[27,27],2],[[19,22],2],[[19,19],2],[[20,22],2],[[20,20],2],[[25,25],25],[[24,24],24],[[26,26],26],[[27,27],27],[-1,24,[[52,[],[[51,[24]]]]]],[-1,24,[[52,[],[[51,[24]]]]]],[-1,17,[[52,[],[[51,[17]]]]]],[-1,17,[[52,[],[[51,[17]]]]]],[-1,18,[[52,[],[[51,[18]]]]]],[-1,18,[[52,[],[[51,[18]]]]]],[-1,25,[[52,[],[[51,[25]]]]]],[-1,25,[[52,[],[[51,[25]]]]]],[-1,26,[[52,[],[[51,[26]]]]]],[-1,26,[[52,[],[[51,[26]]]]]],[-1,27,[[52,[],[[51,[27]]]]]],[-1,27,[[52,[],[[51,[27]]]]]],[-1,28,[[52,[],[[51,[28]]]]]],[-1,28,[[52,[],[[51,[28]]]]]],[-1,19,[[52,[],[[51,[19]]]]]],[-1,19,[[52,[],[[51,[19]]]]]],[-1,20,[[52,[],[[51,[20]]]]]],[-1,20,[[52,[],[[51,[20]]]]]],[17,[[42,[22]]]],[18,[[42,[22]]]],[28,[[42,[22]]]],[19,[[42,[22]]]],[20,[[42,[22]]]],[28,[[2,[18,22]]]],[21,[[42,[22]]]],[23,[[42,[22]]]],[24,[[42,[22]]]],[25,[[42,[22]]]],[26,[[42,[22]]]],[27,[[42,[22]]]],[21,[[42,[[42,[22]]]]]],[23,[[42,[[42,[22]]]]]],[24,[[42,[[42,[22]]]]]],[25,[[42,[[42,[22]]]]]],[26,[[42,[[42,[22]]]]]],[27,[[42,[[42,[22]]]]]],[[28,1],[[2,[22,22,22]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[21,[[2,[17,22,17]]]],[23,[[2,[18,28,18]]]],[27,[[2,[18,28,18]]]],[28,18],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[[21,17],17],[[24,17],17],[[26,17],17],[[23,18],18],[[27,18],18],[[23,19],19],[[27,19],19],[[21,17],17],[[24,17],17],[[26,17],17],[[23,18],18],[[27,18],18],[[23,19],19],[[27,19],19],0,0,[24,24],[25,25],[26,26],[27,27],[17,17],[18,18],[19,19],[20,20],[18,17],[19,17],[20,18],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[17,[[53,[17]]]],[18,[[53,[18]]]],[19,[[53,[19]]]],[20,[[53,[20]]]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[[22,22],17],[[22,22,22],18],[[22,22,22],19],[[22,22,22,22],20],0,[[21,[50,[22]]],2],[[23,[50,[22]]],2],[[24,[50,[22]]],2],[[25,[50,[22]]],2],[[26,[50,[22]]],2],[[27,[50,[22]]],2],[[17,[50,[22]]],2],[[18,[50,[22]]],2],[[28,[50,[22]]],2],[[19,[50,[22]]],2],[[20,[50,[22]]],2],[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],0,0,0,0,0,[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[17,17],[18,17],[19,17],[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[17,18],[18,18],[19,19],[20,18],[20,20],[17,20],[18,20],[19,20],[20,20],[17,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[17,18],[18,18],[19,19],[20,18],[20,20],[17,20],[18,20],[19,20],[20,20],[17,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[17,17],[18,17],[19,17],[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[17,18],[18,18],[19,19],[20,18],[20,20],[17,20],[18,20],[19,20],[20,20],[17,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[17,18],[18,18],[19,19],[20,18],[20,20],[17,20],[18,20],[19,20],[20,20],[17,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,18],[28,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,17],[19,17],[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],0,0,0,0,0,[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[17,17],[18,17],[19,17],[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[17,18],[18,18],[19,19],[20,18],[20,20],[17,20],[18,20],[19,20],[20,20],[17,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[17,18],[18,18],[19,19],[20,18],[20,20],[17,20],[18,20],[19,20],[20,20],[17,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[17,17],[18,17],[19,17],[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[17,18],[18,18],[19,19],[20,18],[20,20],[17,20],[18,20],[19,20],[20,20],[17,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[17,18],[18,18],[19,19],[20,18],[20,20],[17,20],[18,20],[19,20],[20,20],[17,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,17],[19,17],[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],0,0,0,0,[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[20,18],[20,20],[20,20],[20,20],[20,20],[18,17],[19,17],[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,17],[19,17],[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,17],[19,17],[20,17],[20,18],[20,20],[20,20],[20,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,18],[19,19],[20,18],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],[18,20],[19,20],[20,20],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[32,32],[33,33],[34,34],[[54,54,55],3],[[56,56,55],3],[[29,29,55],3],[[30,30,55],3],[[31,31,55],3],[[35,35,55],3],[[32,32,55],3],[[33,33,55],3],[[34,34,55],3],[[29,29],-1,[]],[[30,30],-1,[]],[[31,31],-1,[]],[[35,35],35],[[32,55],32],[[32,32],32],[[33,33],33],[[33,55],33],[[34,34],34],[[34,55],34],[[29,29],2],[[30,30],2],[[31,31],2],[[32,55],2],[[32,32],2],[[33,33],2],[[33,55],2],[[34,55],2],[[34,34],2],[[29,29],29],[[30,30],30],[[31,31],31],[[35,35],55],[[32,32],55],[[33,33],55],[33,33],[33,[[2,[33,33]]]],[33,33],[35,28],[32,36],[33,37],[34,38],[32,39],[33,40],[34,41],[29,25],[30,24],[31,27],[29,[[42,[55]]]],[30,[[42,[55]]]],[31,[[42,[55]]]],[32,[[42,[55]]]],[33,[[42,[55]]]],[34,[[42,[55]]]],[29,[[42,[55]]]],[30,[[42,[55]]]],[31,[[42,[55]]]],[35,[[42,[55]]]],[32,[[42,[55]]]],[33,[[42,[55]]]],[34,[[42,[55]]]],[32,43],[33,44],[34,45],[32,46],[33,47],[34,48],[32,17],[33,18],[33,19],[34,20],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[32,32],[33,33],[34,34],[[32,32,32],32],[[33,33,33],33],[[34,34,34],34],[[32,55,55],32],[[33,55,55],33],[[34,55,55],34],[[32,55],32],[[33,55],33],[[34,55],34],[[32,55],32],[[33,55],33],[[34,55],34],[54,54],[56,56],[29,29],[30,30],[31,31],[35,35],[32,32],[33,33],[34,34],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[32,32],9],[[33,33],10],[[34,34],11],[[32,32],9],[[33,33],10],[[34,34],11],[[32,32],9],[[33,33],10],[[34,34],11],[[32,32],9],[[33,33],10],[[34,34],11],[[32,32],9],[[33,33],10],[[34,34],11],[[32,32],9],[[33,33],10],[[34,34],11],[[29,15],32],[[30,15],33],[[31,15],34],[[29,15],32],[[30,15],33],[[31,15],34],[35,35],[[32,32],32],[[33,33],33],[[34,34],34],[[33,33],33],[[],54],[[],56],[[],29],[[],30],[[],31],[[],35],[[],32],[[],33],[[],34],[54,-1,[]],[56,-1,[]],[54,-1,[]],[56,-1,[]],[29,55],[30,55],[31,55],[[32,32],55],[[33,33],55],[[34,34],55],[[32,32],55],[[33,33],55],[[34,34],55],[[35,55],35],[[32,55],32],[[32,32],32],[[33,33],33],[[33,55],33],[[34,34],34],[[34,55],34],[[32,55],2],[[32,32],2],[[33,33],2],[[33,55],2],[[34,55],2],[[34,34],2],[[32,32],32],[[33,33],33],[[34,34],34],[[32,32],29],[[33,33,33],30],[[34,34,34,34],31],[[35,35],55],[[32,32],55],[[33,33],55],[[34,34],55],[[32,32],32],[[33,33],33],[[34,34],34],[[55,55,55,55],35],[[55,55],32],[[55,55,55],33],[[55,55,55,55],34],[[54,54],3],[[56,56],3],[[29,29],3],[[30,30],3],[[31,31],3],[[35,35],3],[[32,32],3],[[33,33],3],[[34,34],3],[32,32],[33,33],[34,34],[[32,55],33],[[33,55],34],[32,32],[33,33],[34,34],[[54,4],5],[[54,4],5],[[56,4],5],[[56,4],5],[[29,4],5],[[29,4],5],[[30,4],5],[[30,4],5],[[31,4],5],[[31,4],5],[[35,4],5],[[35,4],5],[[32,4],5],[[32,4],5],[[33,4],5],[[33,4],5],[[34,4],5],[[34,4],5],[32,32],[33,33],[34,34],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[54,30],[-1,-1,[]],[56,31],[-1,-1,[]],[[[42,[55]]],32],[46,32],[-1,-1,[]],[[[2,[55,55]]],32],[17,32],[39,32],[-1,-1,[]],[[[42,[55]]],33],[[[2,[55,55,55]]],33],[18,33],[[[2,[32,55]]],33],[40,33],[47,33],[41,34],[[[2,[33,55]]],34],[[[42,[55]]],34],[20,34],[35,34],[-1,-1,[]],[[[2,[55,55,55,55]]],34],[48,34],[[[2,[55,33]]],34],[[[2,[32,32]]],34],[[[2,[32,55,55]]],34],[56,35],[55,54],[55,29],[55,30],[55,32],[[55,32],54],[[[42,[55]]],35],[[[42,[55]]],32],[[[42,[55]]],33],[[[42,[55]]],34],[[33,55],56],[[33,55],30],[[33,55],31],[[33,55],35],[[32,32,32],54],[[33,33,33,33],56],[[32,32],29],[[33,33,33],30],[[34,34,34,34],31],[[[42,[55]]],54],[[[42,[55]]],56],[[[42,[55]]],29],[[[42,[55]]],30],[[[42,[55]]],31],[[[42,[[42,[55]]]]],54],[[[42,[[42,[55]]]]],56],[[[42,[[42,[55]]]]],29],[[[42,[[42,[55]]]]],30],[[[42,[[42,[55]]]]],31],[[[50,[55]]],54],[[[50,[55]]],56],[[[50,[55]]],29],[[[50,[55]]],30],[[[50,[55]]],31],[32,29],[33,30],[34,31],[[1,55,55,55],30],[[1,55,55,55],31],[[1,55,55,55],35],[29,54],[29,30],[[29,32],54],[30,54],[30,56],[30,29],[30,31],[30,35],[[30,33],56],[31,56],[31,30],[31,35],[35,56],[35,30],[35,31],[[33,33],35],[[32,32],35],[[33,33],35],[[35,33],56],[[35,33],31],[55,56],[55,30],[55,31],[55,35],[55,56],[55,30],[55,31],[55,35],[55,56],[55,30],[55,31],[55,35],[32,54],[33,56],[32,30],[33,31],[[32,55],29],[[32,55,32],54],[[32,55,32],30],[[33,35,33],56],[[33,35,33],31],[33,35],[[[50,[55]]],35],[[[50,[55]]],32],[[[50,[55]]],33],[[[50,[55]]],34],[32,54],[33,56],[32,30],[33,31],[34,35],[[55,55,55,55],35],[[32,15],-1,[]],[[33,15],-1,[]],[[34,15],-1,[]],[[32,15],-1,[]],[[33,15],-1,[]],[[34,15],-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[54,54],[56,56],[29,29],[30,30],[31,31],[35,35],[54,3],[56,3],[29,3],[30,3],[31,3],[35,3],[32,3],[33,3],[34,3],[54,3],[56,3],[29,3],[30,3],[31,3],[35,3],[32,3],[33,3],[34,3],[32,9],[33,10],[34,11],[35,3],[32,14],[33,14],[34,14],[35,3],[32,3],[33,3],[34,3],[35,55],[32,55],[33,55],[34,55],[35,55],[32,55],[33,55],[34,55],[35,55],[32,55],[33,55],[34,55],[[35,35,55],35],[[32,32,55],32],[[33,33,55],33],[[34,34,55],34],[[33,33,33],56],[[33,33,33],31],[[33,33,33],56],[[33,33,33],31],[[33,33,33],56],[[33,33,33],31],[[33,33,33],56],[[33,33,33],31],0,0,[[32,32],32],[[33,33],33],[[34,34],34],[32,55],[33,55],[34,55],[[32,32],32],[[33,33],33],[[34,34],34],[32,55],[33,55],[34,55],[[54,30],-1,[]],[[54,54],-1,[]],[[56,31],-1,[]],[[56,56],-1,[]],[[29,55],-1,[]],[[29,32],-1,[]],[[29,29],-1,[]],[[30,55],-1,[]],[[30,33],-1,[]],[[30,54],-1,[]],[[30,30],-1,[]],[[31,31],-1,[]],[[31,55],-1,[]],[[31,56],-1,[]],[[31,34],-1,[]],[[35,33],-1,[]],[[35,35],35],[[35,55],35],[[32,55],32],[[32,32],32],[[33,33],33],[[33,55],33],[[34,55],34],[[34,34],34],[[32,32,32],32],[[33,33,33],33],[[34,34,34],34],[[54,54],2],[[56,56],2],[[29,29],2],[[29,55],2],[[30,30],2],[[30,55],2],[[31,55],2],[[31,31],2],[[35,35],2],[[32,55],2],[[32,32],2],[[33,55],2],[[33,33],2],[[34,55],2],[[34,34],2],[[29,29],29],[[30,30],30],[[31,31],31],[[35,35],35],[[29,55],29],[[30,55],30],[[31,55],31],[[29,32],32],[[30,33],33],[[35,33],33],[[31,34],34],[29,-1,[]],[30,-1,[]],[31,-1,[]],[35,35],[32,32],[33,33],[34,34],[[55,55],32],[[55,55,55],33],[[55,55,55,55],34],[35,35],[32,32],[33,33],[34,34],[32,32],[33,33],[34,34],[[55,55,55,55,55,55],31],[[55,55,55,55,55,55],31],[[55,55,55,55,55,55],31],[32,32],[[32,32],55],[[55,55,55],31],[[55,55,55],31],[[55,55,55],31],[[55,55,55],31],[[55,55,55,55],31],[[55,55,55,55],31],[[55,55,55,55],31],[[32,55],32],[[33,55],33],[[34,55],34],[-1,54,[[52,[],[[51,[54]]]]]],[-1,56,[[52,[],[[51,[56]]]]]],[-1,29,[[52,[],[[51,[29]]]]]],[-1,29,[[52,[],[[51,[29]]]]]],[-1,30,[[52,[],[[51,[30]]]]]],[-1,30,[[52,[],[[51,[30]]]]]],[-1,31,[[52,[],[[51,[31]]]]]],[-1,31,[[52,[],[[51,[31]]]]]],[-1,35,[[52,[],[[51,[35]]]]]],[-1,35,[[52,[],[[51,[35]]]]]],[-1,32,[[52,[],[[51,[32]]]]]],[-1,32,[[52,[],[[51,[32]]]]]],[-1,33,[[52,[],[[51,[33]]]]]],[-1,33,[[52,[],[[51,[33]]]]]],[-1,34,[[52,[],[[51,[34]]]]]],[-1,34,[[52,[],[[51,[34]]]]]],[[32,32],32],[[33,33],33],[[34,34],34],[[32,32],32],[[33,33],33],[[34,34],34],[[31,33],33],[32,32],[33,33],[34,34],[[32,32],32],[[33,33],33],[[34,34],34],[[32,32],32],[[33,33],33],[[34,34],34],[[32,32],32],[[32,55],32],[[33,33],33],[[33,55],33],[[34,34],34],[[34,55],34],[[32,55],2],[[32,32],2],[[33,33],2],[[33,55],2],[[34,55],2],[[34,34],2],[[32,32],32],[[33,33],33],[[34,34],34],[[32,32],32],[32,32],[33,33],[34,34],[[29,15],32],[[30,15],33],[[31,15],34],[[9,32,32],32],[[10,33,33],33],[[11,34,34],34],[32,32],[33,33],[34,34],[[35,35,55],35],[55,32],[55,33],[55,34],[[29,29],-1,[]],[[30,30],-1,[]],[[31,31],-1,[]],[[35,35],35],[[32,55],32],[[32,32],32],[[33,55],33],[[33,33],33],[[34,55],34],[[34,34],34],[[29,29],2],[[30,30],2],[[31,31],2],[[32,55],2],[[32,32],2],[[33,55],2],[[33,33],2],[[34,34],2],[[34,55],2],[[29,29],29],[[30,30],30],[[31,31],31],[-1,29,[[52,[],[[51,[29]]]]]],[-1,29,[[52,[],[[51,[29]]]]]],[-1,30,[[52,[],[[51,[30]]]]]],[-1,30,[[52,[],[[51,[30]]]]]],[-1,31,[[52,[],[[51,[31]]]]]],[-1,31,[[52,[],[[51,[31]]]]]],[-1,35,[[52,[],[[51,[35]]]]]],[-1,35,[[52,[],[[51,[35]]]]]],[-1,32,[[52,[],[[51,[32]]]]]],[-1,32,[[52,[],[[51,[32]]]]]],[-1,33,[[52,[],[[51,[33]]]]]],[-1,33,[[52,[],[[51,[33]]]]]],[-1,34,[[52,[],[[51,[34]]]]]],[-1,34,[[52,[],[[51,[34]]]]]],[35,[[42,[55]]]],[32,[[42,[55]]]],[33,[[42,[55]]]],[34,[[42,[55]]]],[35,[[2,[33,55]]]],[54,[[42,[55]]]],[56,[[42,[55]]]],[29,[[42,[55]]]],[30,[[42,[55]]]],[31,[[42,[55]]]],[54,[[42,[[42,[55]]]]]],[56,[[42,[[42,[55]]]]]],[29,[[42,[[42,[55]]]]]],[30,[[42,[[42,[55]]]]]],[31,[[42,[[42,[55]]]]]],[[35,1],[[2,[55,55,55]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[54,[[2,[32,55,32]]]],[56,[[2,[33,35,33]]]],[31,[[2,[33,35,33]]]],[35,33],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[[54,32],32],[[30,32],32],[[56,33],33],[[31,33],33],[[54,32],32],[[30,32],32],[[56,33],33],[[31,33],33],0,0,[29,29],[30,30],[31,31],[32,32],[33,33],[34,34],[33,32],[34,33],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[32,[[53,[32]]]],[33,[[53,[33]]]],[34,[[53,[34]]]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],0,0,0,[[54,[50,[55]]],2],[[56,[50,[55]]],2],[[29,[50,[55]]],2],[[30,[50,[55]]],2],[[31,[50,[55]]],2],[[35,[50,[55]]],2],[[32,[50,[55]]],2],[[33,[50,[55]]],2],[[34,[50,[55]]],2],[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],0,0,0,0,0,0,0,[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[32,32],[33,32],[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[32,33],[33,33],[34,33],[34,34],[32,34],[33,34],[34,34],[32,34],[33,34],[34,34],[33,34],[34,34],[32,33],[33,33],[34,33],[34,34],[32,34],[33,34],[34,34],[32,34],[33,34],[34,34],[33,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[32,32],[33,32],[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[32,33],[33,33],[34,33],[34,34],[32,34],[33,34],[34,34],[32,34],[33,34],[34,34],[33,34],[34,34],[32,33],[33,33],[34,33],[34,34],[32,34],[33,34],[34,34],[32,34],[33,34],[34,34],[33,34],[34,34],[35,33],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[33,32],[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],0,0,0,0,0,0,0,[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[32,32],[33,32],[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[32,33],[33,33],[34,33],[34,34],[32,34],[33,34],[34,34],[32,34],[33,34],[34,34],[33,34],[34,34],[32,33],[33,33],[34,33],[34,34],[32,34],[33,34],[34,34],[32,34],[33,34],[34,34],[33,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[32,32],[33,32],[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[32,33],[33,33],[34,33],[34,34],[32,34],[33,34],[34,34],[32,34],[33,34],[34,34],[33,34],[34,34],[32,33],[33,33],[34,33],[34,34],[32,34],[33,34],[34,34],[32,34],[33,34],[34,34],[33,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[33,32],[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],0,0,0,0,0,[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[34,33],[34,34],[34,34],[34,34],[34,34],[33,32],[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[33,32],[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[33,32],[34,32],[34,33],[34,34],[34,34],[34,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],[33,33],[34,33],[34,34],[33,34],[34,34],[33,34],[34,34],[33,34],[34,34],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[39,39],[40,40],[41,41],[[39,39],39],[[39,57],39],[[40,57],40],[[40,40],40],[[41,57],41],[[41,41],41],[[39,57],2],[[39,39],2],[[40,40],2],[[40,57],2],[[41,41],2],[[41,57],2],[39,32],[40,33],[41,34],[39,36],[40,37],[41,38],[39,[[42,[57]]]],[40,[[42,[57]]]],[41,[[42,[57]]]],[39,[[42,[57]]]],[40,[[42,[57]]]],[41,[[42,[57]]]],[39,43],[40,44],[41,45],[39,46],[40,47],[41,48],[39,17],[40,18],[40,19],[41,20],[[39,39],-1,[]],[[39,57],-1,[]],[[40,57],-1,[]],[[40,40],-1,[]],[[41,41],-1,[]],[[41,57],-1,[]],[[39,57],-1,[]],[[39,39],-1,[]],[[40,40],-1,[]],[[40,57],-1,[]],[[41,57],-1,[]],[[41,41],-1,[]],[[39,57],-1,[]],[[39,39],-1,[]],[[40,57],-1,[]],[[40,40],-1,[]],[[41,57],-1,[]],[[41,41],-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[39,39,39],39],[[40,40,40],40],[[41,41,41],41],[39,39],[40,40],[41,41],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[39,39],9],[[40,40],10],[[41,41],11],[[39,39],9],[[40,40],10],[[41,41],11],[[39,39],9],[[40,40],10],[[41,41],11],[[39,39],9],[[40,40],10],[[41,41],11],[[39,39],9],[[40,40],10],[[41,41],11],[[39,39],9],[[40,40],10],[[41,41],11],[[40,40],40],[[],39],[[],40],[[],41],[[39,39],57],[[40,40],57],[[41,41],57],[[39,39],39],[[39,57],39],[[40,57],40],[[40,40],40],[[41,41],41],[[41,57],41],[[39,57],2],[[39,39],2],[[40,40],2],[[40,57],2],[[41,57],2],[[41,41],2],[[39,39],39],[[40,40],40],[[41,41],41],[[39,39],57],[[40,40],57],[[41,41],57],[[39,39],39],[[40,40],40],[[41,41],41],[[39,39],3],[[40,40],3],[[41,41],3],[[39,57],40],[[40,57],41],[[39,4],5],[[39,4],5],[[40,4],5],[[40,4],5],[[41,4],5],[[41,4],5],[[[42,[57]]],39],[[[2,[57,57]]],39],[-1,-1,[]],[[[2,[39,57]]],40],[-1,-1,[]],[[[42,[57]]],40],[[[2,[57,57,57]]],40],[[[2,[57,57,57,57]]],41],[[[2,[40,57]]],41],[[[42,[57]]],41],[[[2,[39,57,57]]],41],[[[2,[57,40]]],41],[-1,-1,[]],[[[2,[39,39]]],41],[[[42,[57]]],39],[[[42,[57]]],40],[[[42,[57]]],41],[[[50,[57]]],39],[[[50,[57]]],40],[[[50,[57]]],41],[[39,-1],2,6],[[40,-1],2,6],[[41,-1],2,6],[[39,15],-1,[]],[[40,15],-1,[]],[[41,15],-1,[]],[[39,15],-1,[]],[[40,15],-1,[]],[[41,15],-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[39,14],[40,14],[41,14],[[57,57],39],[[57,57,57],40],[[57,57,57,57],41],[39,57],[40,57],[41,57],[[39,39],39],[[40,40],40],[[41,41],41],[39,57],[40,57],[41,57],[[39,39],39],[[40,40],40],[[41,41],41],[39,57],[40,57],[41,57],[[39,57],39],[[39,39],39],[[40,40],40],[[40,57],40],[[41,57],41],[[41,41],41],[[39,57],2],[[39,39],2],[[40,40],2],[[40,57],2],[[41,57],2],[[41,41],2],[39,39],[40,40],[41,41],[[57,57],39],[[57,57,57],40],[[57,57,57,57],41],[39,-1,[]],[40,-1,[]],[41,-1,[]],[39,39],[[39,39],57],[-1,39,[[52,[],[[51,[39]]]]]],[-1,39,[[52,[],[[51,[39]]]]]],[-1,40,[[52,[],[[51,[40]]]]]],[-1,40,[[52,[],[[51,[40]]]]]],[-1,41,[[52,[],[[51,[41]]]]]],[-1,41,[[52,[],[[51,[41]]]]]],[[39,57],39],[[39,39],39],[[40,57],40],[[40,40],40],[[41,41],41],[[41,57],41],[[39,57],2],[[39,39],2],[[40,40],2],[[40,57],2],[[41,57],2],[[41,41],2],[[39,39],39],[[40,40],40],[[41,41],41],[[39,39],39],[[39,39],39],[[40,40],40],[[41,41],41],[[39,39],39],[[40,40],40],[[41,41],41],[[39,39],39],[[40,40],40],[[41,41],41],[[39,39],39],[[40,40],40],[[41,41],41],[[9,39,39],39],[[10,40,40],40],[[11,41,41],41],[[39,58],-1,[]],[[39,39],-1,[]],[[39,59],-1,[]],[[39,14],-1,[]],[[39,60],-1,[]],[[39,61],-1,[]],[[39,62],-1,[]],[[39,63],-1,[]],[[39,57],-1,[]],[[39,46],-1,[]],[[40,61],-1,[]],[[40,58],-1,[]],[[40,59],-1,[]],[[40,14],-1,[]],[[40,63],-1,[]],[[40,60],-1,[]],[[40,57],-1,[]],[[40,47],-1,[]],[[40,40],-1,[]],[[40,62],-1,[]],[[41,62],-1,[]],[[41,58],-1,[]],[[41,63],-1,[]],[[41,57],-1,[]],[[41,61],-1,[]],[[41,41],-1,[]],[[41,14],-1,[]],[[41,59],-1,[]],[[41,48],-1,[]],[[41,60],-1,[]],[[39,57],-1,[]],[[39,14],-1,[]],[[39,39],-1,[]],[[39,63],-1,[]],[[39,62],-1,[]],[[39,59],-1,[]],[[39,60],-1,[]],[[39,46],-1,[]],[[39,61],-1,[]],[[39,58],-1,[]],[[40,57],-1,[]],[[40,14],-1,[]],[[40,47],-1,[]],[[40,63],-1,[]],[[40,40],-1,[]],[[40,59],-1,[]],[[40,61],-1,[]],[[40,62],-1,[]],[[40,60],-1,[]],[[40,58],-1,[]],[[41,63],-1,[]],[[41,48],-1,[]],[[41,59],-1,[]],[[41,57],-1,[]],[[41,62],-1,[]],[[41,58],-1,[]],[[41,61],-1,[]],[[41,60],-1,[]],[[41,41],-1,[]],[[41,14],-1,[]],[39,39],[40,40],[41,41],[57,39],[57,40],[57,41],[[39,57],39],[[39,39],39],[[40,57],40],[[40,40],40],[[41,41],41],[[41,57],41],[[39,57],2],[[39,39],2],[[40,40],2],[[40,57],2],[[41,57],2],[[41,41],2],[-1,39,[[52,[],[[51,[39]]]]]],[-1,39,[[52,[],[[51,[39]]]]]],[-1,40,[[52,[],[[51,[40]]]]]],[-1,40,[[52,[],[[51,[40]]]]]],[-1,41,[[52,[],[[51,[41]]]]]],[-1,41,[[52,[],[[51,[41]]]]]],[39,[[42,[57]]]],[40,[[42,[57]]]],[41,[[42,[57]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[40,39],[41,40],[36,[[7,[39,-1]]],[]],[-1,[[7,[-2]]],[],[]],[46,[[7,[39,-1]]],[]],[43,[[7,[39,-1]]],[]],[-1,[[7,[-2]]],[],[]],[44,[[7,[40,-1]]],[]],[47,[[7,[40,-1]]],[]],[37,[[7,[40,-1]]],[]],[38,[[7,[41,-1]]],[]],[45,[[7,[41,-1]]],[]],[48,[[7,[41,-1]]],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],0,[[39,39],39],[[40,40],40],[[41,41],41],[[39,39],39],[[40,40],40],[[41,41],41],[[39,39],39],[[40,40],40],[[41,41],41],[[39,39],39],[[40,40],40],[[41,41],41],[[39,[50,[57]]],2],[[40,[50,[57]]],2],[[41,[50,[57]]],2],[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],0,0,0,[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[39,39],[40,39],[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[39,40],[40,40],[41,40],[41,41],[39,41],[40,41],[41,41],[39,41],[40,41],[41,41],[40,41],[41,41],[39,40],[40,40],[41,40],[41,41],[39,41],[40,41],[41,41],[39,41],[40,41],[41,41],[40,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[39,39],[40,39],[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[39,40],[40,40],[41,40],[41,41],[39,41],[40,41],[41,41],[39,41],[40,41],[41,41],[40,41],[41,41],[39,40],[40,40],[41,40],[41,41],[39,41],[40,41],[41,41],[39,41],[40,41],[41,41],[40,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[40,39],[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],0,0,0,[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[39,39],[40,39],[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[39,40],[40,40],[41,40],[41,41],[39,41],[40,41],[41,41],[39,41],[40,41],[41,41],[40,41],[41,41],[39,40],[40,40],[41,40],[41,41],[39,41],[40,41],[41,41],[39,41],[40,41],[41,41],[40,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[39,39],[40,39],[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[39,40],[40,40],[41,40],[41,41],[39,41],[40,41],[41,41],[39,41],[40,41],[41,41],[40,41],[41,41],[39,40],[40,40],[41,40],[41,41],[39,41],[40,41],[41,41],[39,41],[40,41],[41,41],[40,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[40,39],[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],0,0,[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[41,40],[41,41],[41,41],[41,41],[41,41],[40,39],[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[40,39],[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[40,39],[41,39],[41,40],[41,41],[41,41],[41,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],[40,40],[41,40],[41,41],[40,41],[41,41],[40,41],[41,41],[40,41],[41,41],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[36,36],[37,37],[38,38],[[36,36],36],[[36,62],36],[[37,37],37],[[37,62],37],[[38,62],38],[[38,38],38],[[36,62],2],[[36,36],2],[[37,37],2],[[37,62],2],[[38,38],2],[[38,62],2],[36,32],[37,33],[38,34],[36,39],[37,40],[38,41],[36,[[42,[62]]]],[37,[[42,[62]]]],[38,[[42,[62]]]],[36,[[42,[62]]]],[37,[[42,[62]]]],[38,[[42,[62]]]],[36,43],[37,44],[38,45],[36,46],[37,47],[38,48],[36,17],[37,18],[37,19],[38,20],[[36,36],-1,[]],[[36,62],-1,[]],[[37,37],-1,[]],[[37,62],-1,[]],[[38,62],-1,[]],[[38,38],-1,[]],[[36,62],-1,[]],[[36,36],-1,[]],[[37,37],-1,[]],[[37,62],-1,[]],[[38,62],-1,[]],[[38,38],-1,[]],[[36,62],-1,[]],[[36,36],-1,[]],[[37,37],-1,[]],[[37,62],-1,[]],[[38,62],-1,[]],[[38,38],-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[36,36,36],36],[[37,37,37],37],[[38,38,38],38],[36,36],[37,37],[38,38],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[36,36],9],[[37,37],10],[[38,38],11],[[36,36],9],[[37,37],10],[[38,38],11],[[36,36],9],[[37,37],10],[[38,38],11],[[36,36],9],[[37,37],10],[[38,38],11],[[36,36],9],[[37,37],10],[[38,38],11],[[36,36],9],[[37,37],10],[[38,38],11],[[37,37],37],[[],36],[[],37],[[],38],[[36,36],62],[[37,37],62],[[38,38],62],[[36,62],36],[[36,36],36],[[37,37],37],[[37,62],37],[[38,38],38],[[38,62],38],[[36,62],2],[[36,36],2],[[37,37],2],[[37,62],2],[[38,62],2],[[38,38],2],[[36,36],36],[[37,37],37],[[38,38],38],[[36,36],62],[[37,37],62],[[38,38],62],[[36,36],36],[[37,37],37],[[38,38],38],[[36,36],3],[[37,37],3],[[38,38],3],[[36,62],37],[[37,62],38],[[36,4],5],[[36,4],5],[[37,4],5],[[37,4],5],[[38,4],5],[[38,4],5],[39,36],[[[42,[62]]],36],[[[2,[62,62]]],36],[-1,-1,[]],[[[2,[62,62,62]]],37],[[[42,[62]]],37],[40,37],[-1,-1,[]],[[[2,[36,62]]],37],[[[2,[36,62,62]]],38],[[[42,[62]]],38],[[[2,[36,36]]],38],[[[2,[62,62,62,62]]],38],[[[2,[37,62]]],38],[-1,-1,[]],[41,38],[[[2,[62,37]]],38],[[[42,[62]]],36],[[[42,[62]]],37],[[[42,[62]]],38],[[[50,[62]]],36],[[[50,[62]]],37],[[[50,[62]]],38],[[36,-1],2,6],[[37,-1],2,6],[[38,-1],2,6],[[62,62],36],[[62,62,62],37],[[62,62,62,62],38],[[36,15],-1,[]],[[37,15],-1,[]],[[38,15],-1,[]],[[36,15],-1,[]],[[37,15],-1,[]],[[38,15],-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[36,14],[37,14],[38,14],[36,62],[37,62],[38,62],[[36,36],36],[[37,37],37],[[38,38],38],[36,62],[37,62],[38,62],[[36,36],36],[[37,37],37],[[38,38],38],[36,62],[37,62],[38,62],[[36,36],36],[[36,62],36],[[37,62],37],[[37,37],37],[[38,62],38],[[38,38],38],[[36,62],2],[[36,36],2],[[37,37],2],[[37,62],2],[[38,62],2],[[38,38],2],[36,36],[37,37],[38,38],[[62,62],36],[[62,62,62],37],[[62,62,62,62],38],[36,-1,[]],[37,-1,[]],[38,-1,[]],[36,36],[[36,36],62],[-1,36,[[52,[],[[51,[36]]]]]],[-1,36,[[52,[],[[51,[36]]]]]],[-1,37,[[52,[],[[51,[37]]]]]],[-1,37,[[52,[],[[51,[37]]]]]],[-1,38,[[52,[],[[51,[38]]]]]],[-1,38,[[52,[],[[51,[38]]]]]],[[36,62],36],[[36,36],36],[[37,37],37],[[37,62],37],[[38,38],38],[[38,62],38],[[36,36],2],[[36,62],2],[[37,37],2],[[37,62],2],[[38,38],2],[[38,62],2],[[36,36],36],[[37,37],37],[[38,38],38],[[36,36],36],[[36,36],36],[[37,37],37],[[38,38],38],[[36,36],36],[[37,37],37],[[38,38],38],[[36,36],36],[[37,37],37],[[38,38],38],[[36,36],36],[[37,37],37],[[38,38],38],[[9,36,36],36],[[10,37,37],37],[[11,38,38],38],[[36,62],-1,[]],[[36,57],-1,[]],[[36,46],-1,[]],[[36,60],-1,[]],[[36,14],-1,[]],[[36,63],-1,[]],[[36,39],-1,[]],[[36,59],-1,[]],[[36,61],-1,[]],[[36,58],-1,[]],[[37,61],-1,[]],[[37,14],-1,[]],[[37,47],-1,[]],[[37,63],-1,[]],[[37,58],-1,[]],[[37,40],-1,[]],[[37,62],-1,[]],[[37,60],-1,[]],[[37,57],-1,[]],[[37,59],-1,[]],[[38,63],-1,[]],[[38,60],-1,[]],[[38,57],-1,[]],[[38,62],-1,[]],[[38,59],-1,[]],[[38,61],-1,[]],[[38,14],-1,[]],[[38,48],-1,[]],[[38,58],-1,[]],[[38,41],-1,[]],[[36,59],-1,[]],[[36,61],-1,[]],[[36,60],-1,[]],[[36,57],-1,[]],[[36,62],-1,[]],[[36,63],-1,[]],[[36,39],-1,[]],[[36,14],-1,[]],[[36,58],-1,[]],[[36,46],-1,[]],[[37,47],-1,[]],[[37,58],-1,[]],[[37,63],-1,[]],[[37,14],-1,[]],[[37,57],-1,[]],[[37,61],-1,[]],[[37,59],-1,[]],[[37,62],-1,[]],[[37,40],-1,[]],[[37,60],-1,[]],[[38,62],-1,[]],[[38,61],-1,[]],[[38,63],-1,[]],[[38,48],-1,[]],[[38,41],-1,[]],[[38,14],-1,[]],[[38,57],-1,[]],[[38,59],-1,[]],[[38,60],-1,[]],[[38,58],-1,[]],[36,36],[37,37],[38,38],[62,36],[62,37],[62,38],[[36,36],36],[[36,62],36],[[37,62],37],[[37,37],37],[[38,38],38],[[38,62],38],[[36,36],2],[[36,62],2],[[37,62],2],[[37,37],2],[[38,38],2],[[38,62],2],[-1,36,[[52,[],[[51,[36]]]]]],[-1,36,[[52,[],[[51,[36]]]]]],[-1,37,[[52,[],[[51,[37]]]]]],[-1,37,[[52,[],[[51,[37]]]]]],[-1,38,[[52,[],[[51,[38]]]]]],[-1,38,[[52,[],[[51,[38]]]]]],[36,[[42,[62]]]],[37,[[42,[62]]]],[38,[[42,[62]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[37,36],[38,37],[-1,[[7,[-2]]],[],[]],[43,[[7,[36,-1]]],[]],[44,[[7,[37,-1]]],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[45,[[7,[38,-1]]],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],0,[[36,36],36],[[37,37],37],[[38,38],38],[[36,36],36],[[37,37],37],[[38,38],38],[[36,36],36],[[37,37],37],[[38,38],38],[[36,36],36],[[37,37],37],[[38,38],38],[[36,[50,[62]]],2],[[37,[50,[62]]],2],[[38,[50,[62]]],2],[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],0,0,0,[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[36,36],[37,36],[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[36,37],[37,37],[38,37],[38,38],[36,38],[37,38],[38,38],[36,38],[37,38],[38,38],[37,38],[38,38],[36,37],[37,37],[38,37],[38,38],[36,38],[37,38],[38,38],[36,38],[37,38],[38,38],[37,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[36,36],[37,36],[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[36,37],[37,37],[38,37],[38,38],[36,38],[37,38],[38,38],[36,38],[37,38],[38,38],[37,38],[38,38],[36,37],[37,37],[38,37],[38,38],[36,38],[37,38],[38,38],[36,38],[37,38],[38,38],[37,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[37,36],[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],0,0,0,[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[36,36],[37,36],[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[36,37],[37,37],[38,37],[38,38],[36,38],[37,38],[38,38],[36,38],[37,38],[38,38],[37,38],[38,38],[36,37],[37,37],[38,37],[38,38],[36,38],[37,38],[38,38],[36,38],[37,38],[38,38],[37,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[36,36],[37,36],[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[36,37],[37,37],[38,37],[38,38],[36,38],[37,38],[38,38],[36,38],[37,38],[38,38],[37,38],[38,38],[36,37],[37,37],[38,37],[38,38],[36,38],[37,38],[38,38],[36,38],[37,38],[38,38],[37,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[37,36],[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],0,0,[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[38,37],[38,38],[38,38],[38,38],[38,38],[37,36],[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[37,36],[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[37,36],[38,36],[38,37],[38,38],[38,38],[38,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],[37,37],[38,37],[38,38],[37,38],[38,38],[37,38],[38,38],[37,38],[38,38],0,0,0,0,0,0,0,0,0,[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],[[68,[],[[65,[-1]],[67,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-1,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-1,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],[[68,[],[[65,[-1]],[67,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],[[68,[],[[65,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-1,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-1,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],[[68,[],[[65,[-1]],[67,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-1,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-1,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],[[68,[],[[65,[-1]],[67,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-1,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-1,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[68,[],[[65,[-1]],[67,[-2]]]]],-2,[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-1,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],[[69,[],[[64,[-1]],[67,[-2]]]]],[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],[[[69,[],[[64,[-1]],[67,[-2]]]]],-2,[],[]],[[[66,[],[[64,[-1]],[65,[-2]]]]],[[66,[],[[64,[-1]],[65,[-2]]]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[46,14],46],[[46,46],46],[[47,47],47],[[47,14],47],[[48,14],48],[[48,48],48],[[46,46],2],[[46,14],2],[[47,47],2],[[47,14],2],[[48,14],2],[[48,48],2],[46,32],[47,33],[48,34],[46,36],[47,37],[48,38],[46,39],[47,40],[48,41],[46,[[42,[14]]]],[47,[[42,[14]]]],[48,[[42,[14]]]],[46,[[42,[14]]]],[47,[[42,[14]]]],[48,[[42,[14]]]],[46,43],[47,44],[48,45],[46,17],[47,18],[47,19],[48,20],[[46,14],-1,[]],[[46,46],-1,[]],[[47,47],-1,[]],[[47,14],-1,[]],[[48,14],-1,[]],[[48,48],-1,[]],[[46,46],-1,[]],[[46,14],-1,[]],[[47,47],-1,[]],[[47,14],-1,[]],[[48,14],-1,[]],[[48,48],-1,[]],[[46,46],-1,[]],[[46,14],-1,[]],[[47,14],-1,[]],[[47,47],-1,[]],[[48,14],-1,[]],[[48,48],-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[46,46,46],46],[[47,47,47],47],[[48,48,48],48],[46,46],[47,47],[48,48],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[46,46],9],[[47,47],10],[[48,48],11],[[46,46],9],[[47,47],10],[[48,48],11],[[46,46],9],[[47,47],10],[[48,48],11],[[46,46],9],[[47,47],10],[[48,48],11],[[46,46],9],[[47,47],10],[[48,48],11],[[46,46],9],[[47,47],10],[[48,48],11],[[47,47],47],[[],46],[[],47],[[],48],[[46,14],46],[[46,46],46],[[47,14],47],[[47,47],47],[[48,48],48],[[48,14],48],[[46,46],2],[[46,14],2],[[47,47],2],[[47,14],2],[[48,14],2],[[48,48],2],[[46,46],14],[[47,47],14],[[48,48],14],[[46,46],46],[[47,47],47],[[48,48],48],[[46,46],3],[[47,47],3],[[48,48],3],[[46,14],47],[[47,14],48],[[46,4],5],[[46,4],5],[[47,4],5],[[47,4],5],[[48,4],5],[[48,4],5],[-1,-1,[]],[[[42,[14]]],46],[[[2,[14,14]]],46],[[[2,[14,14,14]]],47],[[[42,[14]]],47],[-1,-1,[]],[[[2,[46,14]]],47],[[[2,[47,14]]],48],[[[2,[46,14,14]]],48],[[[2,[14,47]]],48],[[[2,[46,46]]],48],[[[42,[14]]],48],[-1,-1,[]],[[[2,[14,14,14,14]]],48],[[[42,[14]]],46],[[[42,[14]]],47],[[[42,[14]]],48],[[[50,[14]]],46],[[[50,[14]]],47],[[[50,[14]]],48],[[46,-1],2,6],[[47,-1],2,6],[[48,-1],2,6],[[46,15],-1,[]],[[47,15],-1,[]],[[48,15],-1,[]],[[46,15],-1,[]],[[47,15],-1,[]],[[48,15],-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[46,14],[47,14],[48,14],[[46,46],46],[[47,47],47],[[48,48],48],[46,14],[47,14],[48,14],[[46,46],46],[[47,47],47],[[48,48],48],[46,14],[47,14],[48,14],[[46,46],46],[[46,14],46],[[47,14],47],[[47,47],47],[[48,48],48],[[48,14],48],[[46,14],2],[[46,46],2],[[47,47],2],[[47,14],2],[[48,48],2],[[48,14],2],[[14,14],46],[[14,14,14],47],[[14,14,14,14],48],[46,-1,[]],[47,-1,[]],[48,-1,[]],[-1,46,[[52,[],[[51,[46]]]]]],[-1,46,[[52,[],[[51,[46]]]]]],[-1,47,[[52,[],[[51,[47]]]]]],[-1,47,[[52,[],[[51,[47]]]]]],[-1,48,[[52,[],[[51,[48]]]]]],[-1,48,[[52,[],[[51,[48]]]]]],[[46,46],46],[[46,14],46],[[47,47],47],[[47,14],47],[[48,14],48],[[48,48],48],[[46,46],2],[[46,14],2],[[47,47],2],[[47,14],2],[[48,48],2],[[48,14],2],[[46,46],46],[[47,47],47],[[48,48],48],[[46,46],46],[[47,47],47],[[48,48],48],[[46,46],46],[[47,47],47],[[48,48],48],[[46,46],46],[[47,47],47],[[48,48],48],[[9,46,46],46],[[10,47,47],47],[[11,48,48],48],[[46,59],-1,[]],[[46,57],-1,[]],[[46,14],-1,[]],[[46,62],-1,[]],[[46,39],-1,[]],[[46,63],-1,[]],[[46,60],-1,[]],[[46,58],-1,[]],[[46,61],-1,[]],[[46,46],-1,[]],[[47,62],-1,[]],[[47,60],-1,[]],[[47,59],-1,[]],[[47,57],-1,[]],[[47,63],-1,[]],[[47,47],-1,[]],[[47,40],-1,[]],[[47,61],-1,[]],[[47,14],-1,[]],[[47,58],-1,[]],[[48,61],-1,[]],[[48,62],-1,[]],[[48,60],-1,[]],[[48,57],-1,[]],[[48,58],-1,[]],[[48,59],-1,[]],[[48,41],-1,[]],[[48,14],-1,[]],[[48,48],-1,[]],[[48,63],-1,[]],[[46,58],-1,[]],[[46,46],-1,[]],[[46,61],-1,[]],[[46,60],-1,[]],[[46,62],-1,[]],[[46,39],-1,[]],[[46,14],-1,[]],[[46,57],-1,[]],[[46,59],-1,[]],[[46,63],-1,[]],[[47,58],-1,[]],[[47,40],-1,[]],[[47,62],-1,[]],[[47,61],-1,[]],[[47,59],-1,[]],[[47,60],-1,[]],[[47,47],-1,[]],[[47,57],-1,[]],[[47,63],-1,[]],[[47,14],-1,[]],[[48,14],-1,[]],[[48,61],-1,[]],[[48,58],-1,[]],[[48,41],-1,[]],[[48,57],-1,[]],[[48,63],-1,[]],[[48,48],-1,[]],[[48,62],-1,[]],[[48,60],-1,[]],[[48,59],-1,[]],[14,46],[14,47],[14,48],[[46,46],46],[[46,14],46],[[47,14],47],[[47,47],47],[[48,14],48],[[48,48],48],[[46,46],2],[[46,14],2],[[47,47],2],[[47,14],2],[[48,48],2],[[48,14],2],[-1,46,[[52,[],[[51,[46]]]]]],[-1,46,[[52,[],[[51,[46]]]]]],[-1,47,[[52,[],[[51,[47]]]]]],[-1,47,[[52,[],[[51,[47]]]]]],[-1,48,[[52,[],[[51,[48]]]]]],[-1,48,[[52,[],[[51,[48]]]]]],[46,[[42,[14]]]],[47,[[42,[14]]]],[48,[[42,[14]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[47,46],[48,47],[39,[[7,[46,-1]]],[]],[36,[[7,[46,-1]]],[]],[43,[[7,[46,-1]]],[]],[-1,[[7,[-2]]],[],[]],[37,[[7,[47,-1]]],[]],[40,[[7,[47,-1]]],[]],[44,[[7,[47,-1]]],[]],[-1,[[7,[-2]]],[],[]],[38,[[7,[48,-1]]],[]],[41,[[7,[48,-1]]],[]],[-1,[[7,[-2]]],[],[]],[45,[[7,[48,-1]]],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[[14,14],46],[[14,14,14],47],[[14,14,14,14],48],0,[[46,46],46],[[47,47],47],[[48,48],48],[[46,46],46],[[47,47],47],[[48,48],48],[[46,46],46],[[47,47],47],[[48,48],48],[[46,46],46],[[47,47],47],[[48,48],48],[[46,[50,[14]]],2],[[47,[50,[14]]],2],[[48,[50,[14]]],2],[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],0,0,0,[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[46,46],[47,46],[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[46,47],[47,47],[48,47],[48,48],[46,48],[47,48],[48,48],[46,48],[47,48],[48,48],[47,48],[48,48],[46,47],[47,47],[48,47],[48,48],[46,48],[47,48],[48,48],[46,48],[47,48],[48,48],[47,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[46,46],[47,46],[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[46,47],[47,47],[48,47],[48,48],[46,48],[47,48],[48,48],[46,48],[47,48],[48,48],[47,48],[48,48],[46,47],[47,47],[48,47],[48,48],[46,48],[47,48],[48,48],[46,48],[47,48],[48,48],[47,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[47,46],[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],0,0,0,[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[46,46],[47,46],[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[46,47],[47,47],[48,47],[48,48],[46,48],[47,48],[48,48],[46,48],[47,48],[48,48],[47,48],[48,48],[46,47],[47,47],[48,47],[48,48],[46,48],[47,48],[48,48],[46,48],[47,48],[48,48],[47,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[46,46],[47,46],[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[46,47],[47,47],[48,47],[48,48],[46,48],[47,48],[48,48],[46,48],[47,48],[48,48],[47,48],[48,48],[46,47],[47,47],[48,47],[48,48],[46,48],[47,48],[48,48],[46,48],[47,48],[48,48],[47,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[47,46],[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],0,0,[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[48,47],[48,48],[48,48],[48,48],[48,48],[47,46],[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[47,46],[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[47,46],[48,46],[48,47],[48,48],[48,48],[48,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],[47,47],[48,47],[48,48],[47,48],[48,48],[47,48],[48,48],[47,48],[48,48],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[43,43],43],[[43,63],43],[[44,63],44],[[44,44],44],[[45,45],45],[[45,63],45],[[43,43],2],[[43,63],2],[[44,63],2],[[44,44],2],[[45,45],2],[[45,63],2],[43,32],[44,33],[45,34],[43,36],[44,37],[45,38],[43,39],[44,40],[45,41],[43,[[42,[63]]]],[44,[[42,[63]]]],[45,[[42,[63]]]],[43,[[42,[63]]]],[44,[[42,[63]]]],[45,[[42,[63]]]],[43,46],[44,47],[45,48],[43,17],[44,18],[44,19],[45,20],[[43,63],-1,[]],[[43,43],-1,[]],[[44,63],-1,[]],[[44,44],-1,[]],[[45,45],-1,[]],[[45,63],-1,[]],[[43,43],-1,[]],[[43,63],-1,[]],[[44,63],-1,[]],[[44,44],-1,[]],[[45,63],-1,[]],[[45,45],-1,[]],[[43,43],-1,[]],[[43,63],-1,[]],[[44,44],-1,[]],[[44,63],-1,[]],[[45,45],-1,[]],[[45,63],-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[43,43,43],43],[[44,44,44],44],[[45,45,45],45],[43,43],[44,44],[45,45],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[-1,-2],2,[],[]],[[43,43],9],[[44,44],10],[[45,45],11],[[43,43],9],[[44,44],10],[[45,45],11],[[43,43],9],[[44,44],10],[[45,45],11],[[43,43],9],[[44,44],10],[[45,45],11],[[43,43],9],[[44,44],10],[[45,45],11],[[43,43],9],[[44,44],10],[[45,45],11],[[44,44],44],[[],43],[[],44],[[],45],[[43,43],43],[[43,63],43],[[44,44],44],[[44,63],44],[[45,45],45],[[45,63],45],[[43,43],2],[[43,63],2],[[44,63],2],[[44,44],2],[[45,63],2],[[45,45],2],[[43,43],63],[[44,44],63],[[45,45],63],[[43,43],43],[[44,44],44],[[45,45],45],[[43,43],3],[[44,44],3],[[45,45],3],[[43,63],44],[[44,63],45],[[43,4],5],[[43,4],5],[[44,4],5],[[44,4],5],[[45,4],5],[[45,4],5],[[[2,[63,63]]],43],[46,43],[-1,-1,[]],[[[42,[63]]],43],[[[42,[63]]],44],[-1,-1,[]],[[[2,[63,63,63]]],44],[[[2,[43,63]]],44],[47,44],[[[2,[63,44]]],45],[[[42,[63]]],45],[[[2,[44,63]]],45],[-1,-1,[]],[[[2,[43,63,63]]],45],[[[2,[63,63,63,63]]],45],[48,45],[[[2,[43,43]]],45],[[[42,[63]]],43],[[[42,[63]]],44],[[[42,[63]]],45],[[[50,[63]]],43],[[[50,[63]]],44],[[[50,[63]]],45],[[43,-1],2,6],[[44,-1],2,6],[[45,-1],2,6],[[43,15],-1,[]],[[44,15],-1,[]],[[45,15],-1,[]],[[43,15],-1,[]],[[44,15],-1,[]],[[45,15],-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[43,63],[44,63],[45,63],[[43,43],43],[[44,44],44],[[45,45],45],[43,63],[44,63],[45,63],[[43,43],43],[[44,44],44],[[45,45],45],[43,63],[44,63],[45,63],[[43,63],43],[[43,43],43],[[44,63],44],[[44,44],44],[[45,63],45],[[45,45],45],[[43,63],2],[[43,43],2],[[44,44],2],[[44,63],2],[[45,45],2],[[45,63],2],[[63,63],43],[[63,63,63],44],[[63,63,63,63],45],[43,-1,[]],[44,-1,[]],[45,-1,[]],[-1,43,[[52,[],[[51,[43]]]]]],[-1,43,[[52,[],[[51,[43]]]]]],[-1,44,[[52,[],[[51,[44]]]]]],[-1,44,[[52,[],[[51,[44]]]]]],[-1,45,[[52,[],[[51,[45]]]]]],[-1,45,[[52,[],[[51,[45]]]]]],[[43,43],43],[[43,63],43],[[44,63],44],[[44,44],44],[[45,63],45],[[45,45],45],[[43,43],2],[[43,63],2],[[44,44],2],[[44,63],2],[[45,63],2],[[45,45],2],[[43,43],43],[[44,44],44],[[45,45],45],[[43,43],43],[[44,44],44],[[45,45],45],[[43,43],43],[[44,44],44],[[45,45],45],[[43,43],43],[[44,44],44],[[45,45],45],[[9,43,43],43],[[10,44,44],44],[[11,45,45],45],[[43,62],-1,[]],[[43,59],-1,[]],[[43,39],-1,[]],[[43,58],-1,[]],[[43,14],-1,[]],[[43,61],-1,[]],[[43,57],-1,[]],[[43,46],-1,[]],[[43,60],-1,[]],[[43,63],-1,[]],[[44,59],-1,[]],[[44,47],-1,[]],[[44,40],-1,[]],[[44,61],-1,[]],[[44,63],-1,[]],[[44,62],-1,[]],[[44,58],-1,[]],[[44,60],-1,[]],[[44,57],-1,[]],[[44,14],-1,[]],[[45,48],-1,[]],[[45,60],-1,[]],[[45,61],-1,[]],[[45,62],-1,[]],[[45,63],-1,[]],[[45,14],-1,[]],[[45,57],-1,[]],[[45,41],-1,[]],[[45,58],-1,[]],[[45,59],-1,[]],[[43,62],-1,[]],[[43,57],-1,[]],[[43,58],-1,[]],[[43,14],-1,[]],[[43,61],-1,[]],[[43,60],-1,[]],[[43,59],-1,[]],[[43,46],-1,[]],[[43,39],-1,[]],[[43,63],-1,[]],[[44,57],-1,[]],[[44,47],-1,[]],[[44,61],-1,[]],[[44,62],-1,[]],[[44,58],-1,[]],[[44,59],-1,[]],[[44,14],-1,[]],[[44,60],-1,[]],[[44,63],-1,[]],[[44,40],-1,[]],[[45,57],-1,[]],[[45,58],-1,[]],[[45,48],-1,[]],[[45,63],-1,[]],[[45,14],-1,[]],[[45,59],-1,[]],[[45,41],-1,[]],[[45,62],-1,[]],[[45,61],-1,[]],[[45,60],-1,[]],[63,43],[63,44],[63,45],[[43,43],43],[[43,63],43],[[44,44],44],[[44,63],44],[[45,45],45],[[45,63],45],[[43,63],2],[[43,43],2],[[44,63],2],[[44,44],2],[[45,45],2],[[45,63],2],[-1,43,[[52,[],[[51,[43]]]]]],[-1,43,[[52,[],[[51,[43]]]]]],[-1,44,[[52,[],[[51,[44]]]]]],[-1,44,[[52,[],[[51,[44]]]]]],[-1,45,[[52,[],[[51,[45]]]]]],[-1,45,[[52,[],[[51,[45]]]]]],[43,[[42,[63]]]],[44,[[42,[63]]]],[45,[[42,[63]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,16,[]],[-1,16,[]],[-1,16,[]],[44,43],[45,44],[-1,[[7,[-2]]],[],[]],[36,[[7,[43,-1]]],[]],[-1,[[7,[-2]]],[],[]],[37,[[7,[44,-1]]],[]],[-1,[[7,[-2]]],[],[]],[38,[[7,[45,-1]]],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,[[7,[-2]]],[],[]],[-1,8,[]],[-1,8,[]],[-1,8,[]],[[63,63],43],[[63,63,63],44],[[63,63,63,63],45],0,[[43,43],43],[[44,44],44],[[45,45],45],[[43,43],43],[[44,44],44],[[45,45],45],[[43,43],43],[[44,44],44],[[45,45],45],[[43,43],43],[[44,44],44],[[45,45],45],[[43,[50,[63]]],2],[[44,[50,[63]]],2],[[45,[50,[63]]],2],[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],0,0,0,[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[43,43],[44,43],[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[43,44],[44,44],[45,44],[45,45],[43,45],[44,45],[45,45],[43,45],[44,45],[45,45],[44,45],[45,45],[43,44],[44,44],[45,44],[45,45],[43,45],[44,45],[45,45],[43,45],[44,45],[45,45],[44,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[43,43],[44,43],[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[43,44],[44,44],[45,44],[45,45],[43,45],[44,45],[45,45],[43,45],[44,45],[45,45],[44,45],[45,45],[43,44],[44,44],[45,44],[45,45],[43,45],[44,45],[45,45],[43,45],[44,45],[45,45],[44,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[44,43],[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],0,0,0,[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[43,43],[44,43],[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[43,44],[44,44],[45,44],[45,45],[43,45],[44,45],[45,45],[43,45],[44,45],[45,45],[44,45],[45,45],[43,44],[44,44],[45,44],[45,45],[43,45],[44,45],[45,45],[43,45],[44,45],[45,45],[44,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[43,43],[44,43],[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[43,44],[44,44],[45,44],[45,45],[43,45],[44,45],[45,45],[43,45],[44,45],[45,45],[44,45],[45,45],[43,44],[44,44],[45,44],[45,45],[43,45],[44,45],[45,45],[43,45],[44,45],[45,45],[44,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[44,43],[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],0,0,[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[45,44],[45,45],[45,45],[45,45],[45,45],[44,43],[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[44,43],[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[44,43],[45,43],[45,44],[45,45],[45,45],[45,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45],[44,44],[45,44],[45,45],[44,45],[45,45],[44,45],[45,45],[44,45],[45,45]],"c":[],"p":[[6,"EulerRot",0],[1,"tuple"],[1,"bool"],[5,"Formatter",7166],[8,"Result",7166],[10,"Hasher",7167],[6,"Result",7168],[5,"TypeId",7169],[5,"BVec2",32],[5,"BVec3",32],[5,"BVec4",32],[5,"BVec3A",32],[5,"BVec4A",32],[1,"u32"],[1,"usize"],[5,"String",7170],[5,"Vec2",206],[5,"Vec3",206],[5,"Vec3A",206],[5,"Vec4",206],[5,"Affine2",206],[1,"f32"],[5,"Affine3A",206],[5,"Mat3",206],[5,"Mat2",206],[5,"Mat3A",206],[5,"Mat4",206],[5,"Quat",206],[5,"DMat2",1853],[5,"DMat3",1853],[5,"DMat4",1853],[5,"DVec2",1853],[5,"DVec3",1853],[5,"DVec4",1853],[5,"DQuat",1853],[5,"I64Vec2",4060],[5,"I64Vec3",4060],[5,"I64Vec4",4060],[5,"IVec2",3163],[5,"IVec3",3163],[5,"IVec4",3163],[1,"array"],[5,"U64Vec2",6308],[5,"U64Vec3",6308],[5,"U64Vec4",6308],[5,"UVec2",5447],[5,"UVec3",5447],[5,"UVec4",5447],[5,"__m128",7171],[1,"slice"],[17,"Item"],[10,"Iterator",7172],[6,"Option",7173],[5,"DAffine2",1853],[1,"f64"],[5,"DAffine3",1853],[1,"i32"],[1,"u8"],[1,"u16"],[1,"i16"],[1,"i8"],[1,"i64"],[1,"u64"],[17,"Vec2"],[17,"Vec3"],[10,"Vec4Swizzles",4954],[17,"Vec4"],[10,"Vec2Swizzles",4954],[10,"Vec3Swizzles",4954]],"b":[[122,"impl-Display-for-BVec2"],[123,"impl-Debug-for-BVec2"],[124,"impl-Debug-for-BVec3"],[125,"impl-Display-for-BVec3"],[126,"impl-Debug-for-BVec4"],[127,"impl-Display-for-BVec4"],[128,"impl-Display-for-BVec3A"],[129,"impl-Debug-for-BVec3A"],[130,"impl-Debug-for-BVec4A"],[131,"impl-Display-for-BVec4A"],[313,"impl-Add%3Cf32%3E-for-Vec2"],[314,"impl-Add-for-Vec2"],[315,"impl-Add-for-Vec3"],[316,"impl-Add%3Cf32%3E-for-Vec3"],[321,"impl-Add-for-Vec3A"],[322,"impl-Add%3Cf32%3E-for-Vec3A"],[323,"impl-Add-for-Vec4"],[324,"impl-Add%3Cf32%3E-for-Vec4"],[326,"impl-AddAssign%3Cf32%3E-for-Vec2"],[327,"impl-AddAssign-for-Vec2"],[328,"impl-AddAssign%3Cf32%3E-for-Vec3"],[329,"impl-AddAssign-for-Vec3"],[333,"impl-AddAssign%3Cf32%3E-for-Vec3A"],[334,"impl-AddAssign-for-Vec3A"],[335,"impl-AddAssign-for-Vec4"],[336,"impl-AddAssign%3Cf32%3E-for-Vec4"],[529,"impl-Div%3Cf32%3E-for-Vec2"],[530,"impl-Div-for-Vec2"],[531,"impl-Div%3Cf32%3E-for-Vec3"],[532,"impl-Div-for-Vec3"],[534,"impl-Div-for-Vec3A"],[535,"impl-Div%3Cf32%3E-for-Vec3A"],[536,"impl-Div-for-Vec4"],[537,"impl-Div%3Cf32%3E-for-Vec4"],[538,"impl-DivAssign%3Cf32%3E-for-Vec2"],[539,"impl-DivAssign-for-Vec2"],[540,"impl-DivAssign-for-Vec3"],[541,"impl-DivAssign%3Cf32%3E-for-Vec3"],[542,"impl-DivAssign%3Cf32%3E-for-Vec3A"],[543,"impl-DivAssign-for-Vec3A"],[544,"impl-DivAssign-for-Vec4"],[545,"impl-DivAssign%3Cf32%3E-for-Vec4"],[581,"impl-Display-for-Affine2"],[582,"impl-Debug-for-Affine2"],[583,"impl-Debug-for-Affine3A"],[584,"impl-Display-for-Affine3A"],[585,"impl-Display-for-Mat3"],[586,"impl-Debug-for-Mat3"],[587,"impl-Display-for-Vec2"],[588,"impl-Debug-for-Vec2"],[589,"impl-Debug-for-Vec3"],[590,"impl-Display-for-Vec3"],[591,"impl-Debug-for-Mat2"],[592,"impl-Display-for-Mat2"],[593,"impl-Display-for-Mat3A"],[594,"impl-Debug-for-Mat3A"],[595,"impl-Debug-for-Mat4"],[596,"impl-Display-for-Mat4"],[597,"impl-Display-for-Quat"],[598,"impl-Debug-for-Quat"],[599,"impl-Debug-for-Vec3A"],[600,"impl-Display-for-Vec3A"],[601,"impl-Display-for-Vec4"],[602,"impl-Debug-for-Vec4"],[609,"impl-From%3CMat3A%3E-for-Mat3"],[610,"impl-From%3CAffine2%3E-for-Mat3"],[612,"impl-From%3C%5Bf32;+2%5D%3E-for-Vec2"],[614,"impl-From%3C(f32,+f32)%3E-for-Vec2"],[615,"impl-From%3C%5Bf32;+3%5D%3E-for-Vec3"],[616,"impl-From%3CVec3A%3E-for-Vec3"],[618,"impl-From%3C(Vec2,+f32)%3E-for-Vec3"],[619,"impl-From%3C(f32,+f32,+f32)%3E-for-Vec3"],[621,"impl-From%3CAffine2%3E-for-Mat3A"],[622,"impl-From%3CMat3%3E-for-Mat3A"],[627,"impl-From%3CVec3%3E-for-Vec3A"],[628,"impl-From%3C(Vec2,+f32)%3E-for-Vec3A"],[629,"impl-From%3CVec4%3E-for-Vec3A"],[630,"impl-From%3C__m128%3E-for-Vec3A"],[631,"impl-From%3C%5Bf32;+3%5D%3E-for-Vec3A"],[632,"impl-From%3C(f32,+f32,+f32)%3E-for-Vec3A"],[634,"impl-From%3C(Vec3A,+f32)%3E-for-Vec4"],[635,"impl-From%3C(Vec2,+Vec2)%3E-for-Vec4"],[636,"impl-From%3C(Vec3,+f32)%3E-for-Vec4"],[637,"impl-From%3C%5Bf32;+4%5D%3E-for-Vec4"],[638,"impl-From%3C(f32,+f32,+f32,+f32)%3E-for-Vec4"],[639,"impl-From%3C(f32,+Vec3)%3E-for-Vec4"],[641,"impl-From%3C(f32,+Vec3A)%3E-for-Vec4"],[642,"impl-From%3C(Vec2,+f32,+f32)%3E-for-Vec4"],[643,"impl-From%3CQuat%3E-for-Vec4"],[644,"impl-From%3C__m128%3E-for-Vec4"],[872,"impl-Mul-for-Affine2"],[873,"impl-Mul%3CMat3A%3E-for-Affine2"],[874,"impl-Mul%3CMat3%3E-for-Affine2"],[875,"impl-Mul%3CMat4%3E-for-Affine3A"],[876,"impl-Mul-for-Affine3A"],[877,"impl-Mul%3CVec3%3E-for-Mat3"],[878,"impl-Mul-for-Mat3"],[879,"impl-Mul%3Cf32%3E-for-Mat3"],[880,"impl-Mul%3CAffine2%3E-for-Mat3"],[881,"impl-Mul%3CVec3A%3E-for-Mat3"],[882,"impl-Mul-for-Vec2"],[883,"impl-Mul%3Cf32%3E-for-Vec2"],[884,"impl-Mul-for-Vec3"],[885,"impl-Mul%3Cf32%3E-for-Vec3"],[886,"impl-Mul%3Cf32%3E-for-Mat2"],[887,"impl-Mul-for-Mat2"],[888,"impl-Mul%3CVec2%3E-for-Mat2"],[889,"impl-Mul%3CVec3A%3E-for-Mat3A"],[890,"impl-Mul%3CVec3%3E-for-Mat3A"],[891,"impl-Mul%3Cf32%3E-for-Mat3A"],[892,"impl-Mul-for-Mat3A"],[893,"impl-Mul%3CAffine2%3E-for-Mat3A"],[894,"impl-Mul-for-Mat4"],[895,"impl-Mul%3CAffine3A%3E-for-Mat4"],[896,"impl-Mul%3CVec4%3E-for-Mat4"],[897,"impl-Mul%3Cf32%3E-for-Mat4"],[898,"impl-Mul%3CVec3A%3E-for-Quat"],[899,"impl-Mul%3Cf32%3E-for-Quat"],[900,"impl-Mul%3CVec3%3E-for-Quat"],[901,"impl-Mul-for-Quat"],[902,"impl-Mul-for-Vec3A"],[903,"impl-Mul%3Cf32%3E-for-Vec3A"],[904,"impl-Mul-for-Vec4"],[905,"impl-Mul%3Cf32%3E-for-Vec4"],[912,"impl-MulAssign-for-Mat3"],[913,"impl-MulAssign%3Cf32%3E-for-Mat3"],[914,"impl-MulAssign-for-Vec2"],[915,"impl-MulAssign%3Cf32%3E-for-Vec2"],[916,"impl-MulAssign%3Cf32%3E-for-Vec3"],[917,"impl-MulAssign-for-Vec3"],[918,"impl-MulAssign%3Cf32%3E-for-Mat2"],[919,"impl-MulAssign-for-Mat2"],[920,"impl-MulAssign-for-Mat3A"],[921,"impl-MulAssign%3Cf32%3E-for-Mat3A"],[922,"impl-MulAssign%3Cf32%3E-for-Mat4"],[923,"impl-MulAssign-for-Mat4"],[925,"impl-MulAssign-for-Vec3A"],[926,"impl-MulAssign%3Cf32%3E-for-Vec3A"],[927,"impl-MulAssign-for-Vec4"],[928,"impl-MulAssign%3Cf32%3E-for-Vec4"],[986,"impl-Product-for-Mat3"],[987,"impl-Product%3C%26Mat3%3E-for-Mat3"],[988,"impl-Product-for-Vec2"],[989,"impl-Product%3C%26Vec2%3E-for-Vec2"],[990,"impl-Product%3C%26Vec3%3E-for-Vec3"],[991,"impl-Product-for-Vec3"],[992,"impl-Product-for-Mat2"],[993,"impl-Product%3C%26Mat2%3E-for-Mat2"],[994,"impl-Product-for-Mat3A"],[995,"impl-Product%3C%26Mat3A%3E-for-Mat3A"],[996,"impl-Product%3C%26Mat4%3E-for-Mat4"],[997,"impl-Product-for-Mat4"],[998,"impl-Product%3C%26Quat%3E-for-Quat"],[999,"impl-Product-for-Quat"],[1000,"impl-Product-for-Vec3A"],[1001,"impl-Product%3C%26Vec3A%3E-for-Vec3A"],[1002,"impl-Product%3C%26Vec4%3E-for-Vec4"],[1003,"impl-Product-for-Vec4"],[1026,"impl-Rem%3Cf32%3E-for-Vec2"],[1027,"impl-Rem-for-Vec2"],[1028,"impl-Rem%3Cf32%3E-for-Vec3"],[1029,"impl-Rem-for-Vec3"],[1030,"impl-Rem-for-Vec3A"],[1031,"impl-Rem%3Cf32%3E-for-Vec3A"],[1032,"impl-Rem%3Cf32%3E-for-Vec4"],[1033,"impl-Rem-for-Vec4"],[1034,"impl-RemAssign%3Cf32%3E-for-Vec2"],[1035,"impl-RemAssign-for-Vec2"],[1036,"impl-RemAssign%3Cf32%3E-for-Vec3"],[1037,"impl-RemAssign-for-Vec3"],[1038,"impl-RemAssign-for-Vec3A"],[1039,"impl-RemAssign%3Cf32%3E-for-Vec3A"],[1040,"impl-RemAssign-for-Vec4"],[1041,"impl-RemAssign%3Cf32%3E-for-Vec4"],[1069,"impl-Sub-for-Vec2"],[1070,"impl-Sub%3Cf32%3E-for-Vec2"],[1071,"impl-Sub%3Cf32%3E-for-Vec3"],[1072,"impl-Sub-for-Vec3"],[1077,"impl-Sub%3Cf32%3E-for-Vec3A"],[1078,"impl-Sub-for-Vec3A"],[1079,"impl-Sub%3Cf32%3E-for-Vec4"],[1080,"impl-Sub-for-Vec4"],[1082,"impl-SubAssign-for-Vec2"],[1083,"impl-SubAssign%3Cf32%3E-for-Vec2"],[1084,"impl-SubAssign-for-Vec3"],[1085,"impl-SubAssign%3Cf32%3E-for-Vec3"],[1089,"impl-SubAssign%3Cf32%3E-for-Vec3A"],[1090,"impl-SubAssign-for-Vec3A"],[1091,"impl-SubAssign%3Cf32%3E-for-Vec4"],[1092,"impl-SubAssign-for-Vec4"],[1097,"impl-Sum%3C%26Mat3%3E-for-Mat3"],[1098,"impl-Sum-for-Mat3"],[1099,"impl-Sum-for-Vec2"],[1100,"impl-Sum%3C%26Vec2%3E-for-Vec2"],[1101,"impl-Sum%3C%26Vec3%3E-for-Vec3"],[1102,"impl-Sum-for-Vec3"],[1103,"impl-Sum-for-Mat2"],[1104,"impl-Sum%3C%26Mat2%3E-for-Mat2"],[1105,"impl-Sum%3C%26Mat3A%3E-for-Mat3A"],[1106,"impl-Sum-for-Mat3A"],[1107,"impl-Sum-for-Mat4"],[1108,"impl-Sum%3C%26Mat4%3E-for-Mat4"],[1109,"impl-Sum%3C%26Quat%3E-for-Quat"],[1110,"impl-Sum-for-Quat"],[1111,"impl-Sum%3C%26Vec3A%3E-for-Vec3A"],[1112,"impl-Sum-for-Vec3A"],[1113,"impl-Sum-for-Vec4"],[1114,"impl-Sum%3C%26Vec4%3E-for-Vec4"],[1940,"impl-Add%3Cf64%3E-for-DVec2"],[1941,"impl-Add-for-DVec2"],[1942,"impl-Add-for-DVec3"],[1943,"impl-Add%3Cf64%3E-for-DVec3"],[1944,"impl-Add-for-DVec4"],[1945,"impl-Add%3Cf64%3E-for-DVec4"],[1949,"impl-AddAssign%3Cf64%3E-for-DVec2"],[1950,"impl-AddAssign-for-DVec2"],[1951,"impl-AddAssign-for-DVec3"],[1952,"impl-AddAssign%3Cf64%3E-for-DVec3"],[1953,"impl-AddAssign%3Cf64%3E-for-DVec4"],[1954,"impl-AddAssign-for-DVec4"],[2100,"impl-Div%3Cf64%3E-for-DVec2"],[2101,"impl-Div-for-DVec2"],[2102,"impl-Div-for-DVec3"],[2103,"impl-Div%3Cf64%3E-for-DVec3"],[2104,"impl-Div-for-DVec4"],[2105,"impl-Div%3Cf64%3E-for-DVec4"],[2106,"impl-DivAssign%3Cf64%3E-for-DVec2"],[2107,"impl-DivAssign-for-DVec2"],[2108,"impl-DivAssign-for-DVec3"],[2109,"impl-DivAssign%3Cf64%3E-for-DVec3"],[2110,"impl-DivAssign%3Cf64%3E-for-DVec4"],[2111,"impl-DivAssign-for-DVec4"],[2146,"impl-Display-for-DAffine2"],[2147,"impl-Debug-for-DAffine2"],[2148,"impl-Display-for-DAffine3"],[2149,"impl-Debug-for-DAffine3"],[2150,"impl-Debug-for-DMat2"],[2151,"impl-Display-for-DMat2"],[2152,"impl-Debug-for-DMat3"],[2153,"impl-Display-for-DMat3"],[2154,"impl-Display-for-DMat4"],[2155,"impl-Debug-for-DMat4"],[2156,"impl-Display-for-DQuat"],[2157,"impl-Debug-for-DQuat"],[2158,"impl-Display-for-DVec2"],[2159,"impl-Debug-for-DVec2"],[2160,"impl-Debug-for-DVec3"],[2161,"impl-Display-for-DVec3"],[2162,"impl-Debug-for-DVec4"],[2163,"impl-Display-for-DVec4"],[2175,"impl-From%3C%5Bf64;+2%5D%3E-for-DVec2"],[2176,"impl-From%3CUVec2%3E-for-DVec2"],[2178,"impl-From%3C(f64,+f64)%3E-for-DVec2"],[2179,"impl-From%3CVec2%3E-for-DVec2"],[2180,"impl-From%3CIVec2%3E-for-DVec2"],[2182,"impl-From%3C%5Bf64;+3%5D%3E-for-DVec3"],[2183,"impl-From%3C(f64,+f64,+f64)%3E-for-DVec3"],[2184,"impl-From%3CVec3%3E-for-DVec3"],[2185,"impl-From%3C(DVec2,+f64)%3E-for-DVec3"],[2186,"impl-From%3CIVec3%3E-for-DVec3"],[2187,"impl-From%3CUVec3%3E-for-DVec3"],[2188,"impl-From%3CIVec4%3E-for-DVec4"],[2189,"impl-From%3C(DVec3,+f64)%3E-for-DVec4"],[2190,"impl-From%3C%5Bf64;+4%5D%3E-for-DVec4"],[2191,"impl-From%3CVec4%3E-for-DVec4"],[2192,"impl-From%3CDQuat%3E-for-DVec4"],[2194,"impl-From%3C(f64,+f64,+f64,+f64)%3E-for-DVec4"],[2195,"impl-From%3CUVec4%3E-for-DVec4"],[2196,"impl-From%3C(f64,+DVec3)%3E-for-DVec4"],[2197,"impl-From%3C(DVec2,+DVec2)%3E-for-DVec4"],[2198,"impl-From%3C(DVec2,+f64,+f64)%3E-for-DVec4"],[2379,"impl-Mul%3CDMat3%3E-for-DAffine2"],[2380,"impl-Mul-for-DAffine2"],[2381,"impl-Mul%3CDMat4%3E-for-DAffine3"],[2382,"impl-Mul-for-DAffine3"],[2383,"impl-Mul%3Cf64%3E-for-DMat2"],[2384,"impl-Mul%3CDVec2%3E-for-DMat2"],[2385,"impl-Mul-for-DMat2"],[2386,"impl-Mul%3Cf64%3E-for-DMat3"],[2387,"impl-Mul%3CDVec3%3E-for-DMat3"],[2388,"impl-Mul%3CDAffine2%3E-for-DMat3"],[2389,"impl-Mul-for-DMat3"],[2390,"impl-Mul-for-DMat4"],[2391,"impl-Mul%3Cf64%3E-for-DMat4"],[2392,"impl-Mul%3CDAffine3%3E-for-DMat4"],[2393,"impl-Mul%3CDVec4%3E-for-DMat4"],[2394,"impl-Mul%3CDVec3%3E-for-DQuat"],[2395,"impl-Mul-for-DQuat"],[2396,"impl-Mul%3Cf64%3E-for-DQuat"],[2397,"impl-Mul%3Cf64%3E-for-DVec2"],[2398,"impl-Mul-for-DVec2"],[2399,"impl-Mul-for-DVec3"],[2400,"impl-Mul%3Cf64%3E-for-DVec3"],[2401,"impl-Mul%3Cf64%3E-for-DVec4"],[2402,"impl-Mul-for-DVec4"],[2408,"impl-MulAssign-for-DMat2"],[2409,"impl-MulAssign%3Cf64%3E-for-DMat2"],[2410,"impl-MulAssign-for-DMat3"],[2411,"impl-MulAssign%3Cf64%3E-for-DMat3"],[2412,"impl-MulAssign%3Cf64%3E-for-DMat4"],[2413,"impl-MulAssign-for-DMat4"],[2415,"impl-MulAssign%3Cf64%3E-for-DVec2"],[2416,"impl-MulAssign-for-DVec2"],[2417,"impl-MulAssign%3Cf64%3E-for-DVec3"],[2418,"impl-MulAssign-for-DVec3"],[2419,"impl-MulAssign%3Cf64%3E-for-DVec4"],[2420,"impl-MulAssign-for-DVec4"],[2466,"impl-Product-for-DMat2"],[2467,"impl-Product%3C%26DMat2%3E-for-DMat2"],[2468,"impl-Product%3C%26DMat3%3E-for-DMat3"],[2469,"impl-Product-for-DMat3"],[2470,"impl-Product%3C%26DMat4%3E-for-DMat4"],[2471,"impl-Product-for-DMat4"],[2472,"impl-Product-for-DQuat"],[2473,"impl-Product%3C%26DQuat%3E-for-DQuat"],[2474,"impl-Product-for-DVec2"],[2475,"impl-Product%3C%26DVec2%3E-for-DVec2"],[2476,"impl-Product-for-DVec3"],[2477,"impl-Product%3C%26DVec3%3E-for-DVec3"],[2478,"impl-Product%3C%26DVec4%3E-for-DVec4"],[2479,"impl-Product-for-DVec4"],[2496,"impl-Rem-for-DVec2"],[2497,"impl-Rem%3Cf64%3E-for-DVec2"],[2498,"impl-Rem-for-DVec3"],[2499,"impl-Rem%3Cf64%3E-for-DVec3"],[2500,"impl-Rem-for-DVec4"],[2501,"impl-Rem%3Cf64%3E-for-DVec4"],[2502,"impl-RemAssign%3Cf64%3E-for-DVec2"],[2503,"impl-RemAssign-for-DVec2"],[2504,"impl-RemAssign-for-DVec3"],[2505,"impl-RemAssign%3Cf64%3E-for-DVec3"],[2506,"impl-RemAssign%3Cf64%3E-for-DVec4"],[2507,"impl-RemAssign-for-DVec4"],[2532,"impl-Sub%3Cf64%3E-for-DVec2"],[2533,"impl-Sub-for-DVec2"],[2534,"impl-Sub%3Cf64%3E-for-DVec3"],[2535,"impl-Sub-for-DVec3"],[2536,"impl-Sub%3Cf64%3E-for-DVec4"],[2537,"impl-Sub-for-DVec4"],[2541,"impl-SubAssign%3Cf64%3E-for-DVec2"],[2542,"impl-SubAssign-for-DVec2"],[2543,"impl-SubAssign%3Cf64%3E-for-DVec3"],[2544,"impl-SubAssign-for-DVec3"],[2545,"impl-SubAssign-for-DVec4"],[2546,"impl-SubAssign%3Cf64%3E-for-DVec4"],[2550,"impl-Sum-for-DMat2"],[2551,"impl-Sum%3C%26DMat2%3E-for-DMat2"],[2552,"impl-Sum-for-DMat3"],[2553,"impl-Sum%3C%26DMat3%3E-for-DMat3"],[2554,"impl-Sum-for-DMat4"],[2555,"impl-Sum%3C%26DMat4%3E-for-DMat4"],[2556,"impl-Sum-for-DQuat"],[2557,"impl-Sum%3C%26DQuat%3E-for-DQuat"],[2558,"impl-Sum%3C%26DVec2%3E-for-DVec2"],[2559,"impl-Sum-for-DVec2"],[2560,"impl-Sum-for-DVec3"],[2561,"impl-Sum%3C%26DVec3%3E-for-DVec3"],[2562,"impl-Sum%3C%26DVec4%3E-for-DVec4"],[2563,"impl-Sum-for-DVec4"],[3205,"impl-Add-for-IVec2"],[3206,"impl-Add%3Ci32%3E-for-IVec2"],[3207,"impl-Add%3Ci32%3E-for-IVec3"],[3208,"impl-Add-for-IVec3"],[3209,"impl-Add%3Ci32%3E-for-IVec4"],[3210,"impl-Add-for-IVec4"],[3211,"impl-AddAssign%3Ci32%3E-for-IVec2"],[3212,"impl-AddAssign-for-IVec2"],[3213,"impl-AddAssign-for-IVec3"],[3214,"impl-AddAssign%3Ci32%3E-for-IVec3"],[3215,"impl-AddAssign-for-IVec4"],[3216,"impl-AddAssign%3Ci32%3E-for-IVec4"],[3239,"impl-BitAnd-for-IVec2"],[3240,"impl-BitAnd%3Ci32%3E-for-IVec2"],[3241,"impl-BitAnd%3Ci32%3E-for-IVec3"],[3242,"impl-BitAnd-for-IVec3"],[3243,"impl-BitAnd-for-IVec4"],[3244,"impl-BitAnd%3Ci32%3E-for-IVec4"],[3245,"impl-BitOr%3Ci32%3E-for-IVec2"],[3246,"impl-BitOr-for-IVec2"],[3247,"impl-BitOr-for-IVec3"],[3248,"impl-BitOr%3Ci32%3E-for-IVec3"],[3249,"impl-BitOr%3Ci32%3E-for-IVec4"],[3250,"impl-BitOr-for-IVec4"],[3251,"impl-BitXor%3Ci32%3E-for-IVec2"],[3252,"impl-BitXor-for-IVec2"],[3253,"impl-BitXor%3Ci32%3E-for-IVec3"],[3254,"impl-BitXor-for-IVec3"],[3255,"impl-BitXor%3Ci32%3E-for-IVec4"],[3256,"impl-BitXor-for-IVec4"],[3297,"impl-Div-for-IVec2"],[3298,"impl-Div%3Ci32%3E-for-IVec2"],[3299,"impl-Div%3Ci32%3E-for-IVec3"],[3300,"impl-Div-for-IVec3"],[3301,"impl-Div-for-IVec4"],[3302,"impl-Div%3Ci32%3E-for-IVec4"],[3303,"impl-DivAssign%3Ci32%3E-for-IVec2"],[3304,"impl-DivAssign-for-IVec2"],[3305,"impl-DivAssign-for-IVec3"],[3306,"impl-DivAssign%3Ci32%3E-for-IVec3"],[3307,"impl-DivAssign%3Ci32%3E-for-IVec4"],[3308,"impl-DivAssign-for-IVec4"],[3323,"impl-Display-for-IVec2"],[3324,"impl-Debug-for-IVec2"],[3325,"impl-Debug-for-IVec3"],[3326,"impl-Display-for-IVec3"],[3327,"impl-Debug-for-IVec4"],[3328,"impl-Display-for-IVec4"],[3329,"impl-From%3C%5Bi32;+2%5D%3E-for-IVec2"],[3330,"impl-From%3C(i32,+i32)%3E-for-IVec2"],[3332,"impl-From%3C(IVec2,+i32)%3E-for-IVec3"],[3334,"impl-From%3C%5Bi32;+3%5D%3E-for-IVec3"],[3335,"impl-From%3C(i32,+i32,+i32)%3E-for-IVec3"],[3336,"impl-From%3C(i32,+i32,+i32,+i32)%3E-for-IVec4"],[3337,"impl-From%3C(IVec3,+i32)%3E-for-IVec4"],[3338,"impl-From%3C%5Bi32;+4%5D%3E-for-IVec4"],[3339,"impl-From%3C(IVec2,+i32,+i32)%3E-for-IVec4"],[3340,"impl-From%3C(i32,+IVec3)%3E-for-IVec4"],[3342,"impl-From%3C(IVec2,+IVec2)%3E-for-IVec4"],[3382,"impl-Mul%3Ci32%3E-for-IVec2"],[3383,"impl-Mul-for-IVec2"],[3384,"impl-Mul-for-IVec3"],[3385,"impl-Mul%3Ci32%3E-for-IVec3"],[3386,"impl-Mul%3Ci32%3E-for-IVec4"],[3387,"impl-Mul-for-IVec4"],[3388,"impl-MulAssign%3Ci32%3E-for-IVec2"],[3389,"impl-MulAssign-for-IVec2"],[3390,"impl-MulAssign-for-IVec3"],[3391,"impl-MulAssign%3Ci32%3E-for-IVec3"],[3392,"impl-MulAssign%3Ci32%3E-for-IVec4"],[3393,"impl-MulAssign-for-IVec4"],[3405,"impl-Product%3C%26IVec2%3E-for-IVec2"],[3406,"impl-Product-for-IVec2"],[3407,"impl-Product-for-IVec3"],[3408,"impl-Product%3C%26IVec3%3E-for-IVec3"],[3409,"impl-Product%3C%26IVec4%3E-for-IVec4"],[3410,"impl-Product-for-IVec4"],[3411,"impl-Rem%3Ci32%3E-for-IVec2"],[3412,"impl-Rem-for-IVec2"],[3413,"impl-Rem%3Ci32%3E-for-IVec3"],[3414,"impl-Rem-for-IVec3"],[3415,"impl-Rem-for-IVec4"],[3416,"impl-Rem%3Ci32%3E-for-IVec4"],[3417,"impl-RemAssign%3Ci32%3E-for-IVec2"],[3418,"impl-RemAssign-for-IVec2"],[3419,"impl-RemAssign-for-IVec3"],[3420,"impl-RemAssign%3Ci32%3E-for-IVec3"],[3421,"impl-RemAssign%3Ci32%3E-for-IVec4"],[3422,"impl-RemAssign-for-IVec4"],[3442,"impl-Shl%3Cu8%3E-for-IVec2"],[3443,"impl-Shl-for-IVec2"],[3444,"impl-Shl%3Cu16%3E-for-IVec2"],[3445,"impl-Shl%3Cu32%3E-for-IVec2"],[3446,"impl-Shl%3Ci16%3E-for-IVec2"],[3447,"impl-Shl%3Ci8%3E-for-IVec2"],[3448,"impl-Shl%3Ci64%3E-for-IVec2"],[3449,"impl-Shl%3Cu64%3E-for-IVec2"],[3450,"impl-Shl%3Ci32%3E-for-IVec2"],[3451,"impl-Shl%3CUVec2%3E-for-IVec2"],[3452,"impl-Shl%3Ci8%3E-for-IVec3"],[3453,"impl-Shl%3Cu8%3E-for-IVec3"],[3454,"impl-Shl%3Cu16%3E-for-IVec3"],[3455,"impl-Shl%3Cu32%3E-for-IVec3"],[3456,"impl-Shl%3Cu64%3E-for-IVec3"],[3457,"impl-Shl%3Ci16%3E-for-IVec3"],[3458,"impl-Shl%3Ci32%3E-for-IVec3"],[3459,"impl-Shl%3CUVec3%3E-for-IVec3"],[3460,"impl-Shl-for-IVec3"],[3461,"impl-Shl%3Ci64%3E-for-IVec3"],[3462,"impl-Shl%3Ci64%3E-for-IVec4"],[3463,"impl-Shl%3Cu8%3E-for-IVec4"],[3464,"impl-Shl%3Cu64%3E-for-IVec4"],[3465,"impl-Shl%3Ci32%3E-for-IVec4"],[3466,"impl-Shl%3Ci8%3E-for-IVec4"],[3467,"impl-Shl-for-IVec4"],[3468,"impl-Shl%3Cu32%3E-for-IVec4"],[3469,"impl-Shl%3Cu16%3E-for-IVec4"],[3470,"impl-Shl%3CUVec4%3E-for-IVec4"],[3471,"impl-Shl%3Ci16%3E-for-IVec4"],[3472,"impl-Shr%3Ci32%3E-for-IVec2"],[3473,"impl-Shr%3Cu32%3E-for-IVec2"],[3474,"impl-Shr-for-IVec2"],[3475,"impl-Shr%3Cu64%3E-for-IVec2"],[3476,"impl-Shr%3Ci64%3E-for-IVec2"],[3477,"impl-Shr%3Cu16%3E-for-IVec2"],[3478,"impl-Shr%3Ci16%3E-for-IVec2"],[3479,"impl-Shr%3CUVec2%3E-for-IVec2"],[3480,"impl-Shr%3Ci8%3E-for-IVec2"],[3481,"impl-Shr%3Cu8%3E-for-IVec2"],[3482,"impl-Shr%3Ci32%3E-for-IVec3"],[3483,"impl-Shr%3Cu32%3E-for-IVec3"],[3484,"impl-Shr%3CUVec3%3E-for-IVec3"],[3485,"impl-Shr%3Cu64%3E-for-IVec3"],[3486,"impl-Shr-for-IVec3"],[3487,"impl-Shr%3Cu16%3E-for-IVec3"],[3488,"impl-Shr%3Ci8%3E-for-IVec3"],[3489,"impl-Shr%3Ci64%3E-for-IVec3"],[3490,"impl-Shr%3Ci16%3E-for-IVec3"],[3491,"impl-Shr%3Cu8%3E-for-IVec3"],[3492,"impl-Shr%3Cu64%3E-for-IVec4"],[3493,"impl-Shr%3CUVec4%3E-for-IVec4"],[3494,"impl-Shr%3Cu16%3E-for-IVec4"],[3495,"impl-Shr%3Ci32%3E-for-IVec4"],[3496,"impl-Shr%3Ci64%3E-for-IVec4"],[3497,"impl-Shr%3Cu8%3E-for-IVec4"],[3498,"impl-Shr%3Ci8%3E-for-IVec4"],[3499,"impl-Shr%3Ci16%3E-for-IVec4"],[3500,"impl-Shr-for-IVec4"],[3501,"impl-Shr%3Cu32%3E-for-IVec4"],[3508,"impl-Sub%3Ci32%3E-for-IVec2"],[3509,"impl-Sub-for-IVec2"],[3510,"impl-Sub%3Ci32%3E-for-IVec3"],[3511,"impl-Sub-for-IVec3"],[3512,"impl-Sub-for-IVec4"],[3513,"impl-Sub%3Ci32%3E-for-IVec4"],[3514,"impl-SubAssign%3Ci32%3E-for-IVec2"],[3515,"impl-SubAssign-for-IVec2"],[3516,"impl-SubAssign-for-IVec3"],[3517,"impl-SubAssign%3Ci32%3E-for-IVec3"],[3518,"impl-SubAssign%3Ci32%3E-for-IVec4"],[3519,"impl-SubAssign-for-IVec4"],[3520,"impl-Sum-for-IVec2"],[3521,"impl-Sum%3C%26IVec2%3E-for-IVec2"],[3522,"impl-Sum%3C%26IVec3%3E-for-IVec3"],[3523,"impl-Sum-for-IVec3"],[3524,"impl-Sum%3C%26IVec4%3E-for-IVec4"],[3525,"impl-Sum-for-IVec4"],[3537,"impl-TryFrom%3CI64Vec2%3E-for-IVec2"],[3539,"impl-TryFrom%3CUVec2%3E-for-IVec2"],[3540,"impl-TryFrom%3CU64Vec2%3E-for-IVec2"],[3542,"impl-TryFrom%3CU64Vec3%3E-for-IVec3"],[3543,"impl-TryFrom%3CUVec3%3E-for-IVec3"],[3544,"impl-TryFrom%3CI64Vec3%3E-for-IVec3"],[3545,"impl-TryFrom%3CI64Vec4%3E-for-IVec4"],[3546,"impl-TryFrom%3CU64Vec4%3E-for-IVec4"],[3547,"impl-TryFrom%3CUVec4%3E-for-IVec4"],[4102,"impl-Add-for-I64Vec2"],[4103,"impl-Add%3Ci64%3E-for-I64Vec2"],[4104,"impl-Add-for-I64Vec3"],[4105,"impl-Add%3Ci64%3E-for-I64Vec3"],[4106,"impl-Add%3Ci64%3E-for-I64Vec4"],[4107,"impl-Add-for-I64Vec4"],[4108,"impl-AddAssign%3Ci64%3E-for-I64Vec2"],[4109,"impl-AddAssign-for-I64Vec2"],[4110,"impl-AddAssign-for-I64Vec3"],[4111,"impl-AddAssign%3Ci64%3E-for-I64Vec3"],[4112,"impl-AddAssign-for-I64Vec4"],[4113,"impl-AddAssign%3Ci64%3E-for-I64Vec4"],[4136,"impl-BitAnd-for-I64Vec2"],[4137,"impl-BitAnd%3Ci64%3E-for-I64Vec2"],[4138,"impl-BitAnd-for-I64Vec3"],[4139,"impl-BitAnd%3Ci64%3E-for-I64Vec3"],[4140,"impl-BitAnd%3Ci64%3E-for-I64Vec4"],[4141,"impl-BitAnd-for-I64Vec4"],[4142,"impl-BitOr%3Ci64%3E-for-I64Vec2"],[4143,"impl-BitOr-for-I64Vec2"],[4144,"impl-BitOr-for-I64Vec3"],[4145,"impl-BitOr%3Ci64%3E-for-I64Vec3"],[4146,"impl-BitOr%3Ci64%3E-for-I64Vec4"],[4147,"impl-BitOr-for-I64Vec4"],[4148,"impl-BitXor%3Ci64%3E-for-I64Vec2"],[4149,"impl-BitXor-for-I64Vec2"],[4150,"impl-BitXor-for-I64Vec3"],[4151,"impl-BitXor%3Ci64%3E-for-I64Vec3"],[4152,"impl-BitXor%3Ci64%3E-for-I64Vec4"],[4153,"impl-BitXor-for-I64Vec4"],[4194,"impl-Div%3Ci64%3E-for-I64Vec2"],[4195,"impl-Div-for-I64Vec2"],[4196,"impl-Div-for-I64Vec3"],[4197,"impl-Div%3Ci64%3E-for-I64Vec3"],[4198,"impl-Div-for-I64Vec4"],[4199,"impl-Div%3Ci64%3E-for-I64Vec4"],[4200,"impl-DivAssign%3Ci64%3E-for-I64Vec2"],[4201,"impl-DivAssign-for-I64Vec2"],[4202,"impl-DivAssign-for-I64Vec3"],[4203,"impl-DivAssign%3Ci64%3E-for-I64Vec3"],[4204,"impl-DivAssign%3Ci64%3E-for-I64Vec4"],[4205,"impl-DivAssign-for-I64Vec4"],[4220,"impl-Display-for-I64Vec2"],[4221,"impl-Debug-for-I64Vec2"],[4222,"impl-Display-for-I64Vec3"],[4223,"impl-Debug-for-I64Vec3"],[4224,"impl-Display-for-I64Vec4"],[4225,"impl-Debug-for-I64Vec4"],[4226,"impl-From%3CIVec2%3E-for-I64Vec2"],[4227,"impl-From%3C%5Bi64;+2%5D%3E-for-I64Vec2"],[4228,"impl-From%3C(i64,+i64)%3E-for-I64Vec2"],[4230,"impl-From%3C(i64,+i64,+i64)%3E-for-I64Vec3"],[4231,"impl-From%3C%5Bi64;+3%5D%3E-for-I64Vec3"],[4232,"impl-From%3CIVec3%3E-for-I64Vec3"],[4234,"impl-From%3C(I64Vec2,+i64)%3E-for-I64Vec3"],[4235,"impl-From%3C(I64Vec2,+i64,+i64)%3E-for-I64Vec4"],[4236,"impl-From%3C%5Bi64;+4%5D%3E-for-I64Vec4"],[4237,"impl-From%3C(I64Vec2,+I64Vec2)%3E-for-I64Vec4"],[4238,"impl-From%3C(i64,+i64,+i64,+i64)%3E-for-I64Vec4"],[4239,"impl-From%3C(I64Vec3,+i64)%3E-for-I64Vec4"],[4241,"impl-From%3CIVec4%3E-for-I64Vec4"],[4242,"impl-From%3C(i64,+I64Vec3)%3E-for-I64Vec4"],[4282,"impl-Mul-for-I64Vec2"],[4283,"impl-Mul%3Ci64%3E-for-I64Vec2"],[4284,"impl-Mul%3Ci64%3E-for-I64Vec3"],[4285,"impl-Mul-for-I64Vec3"],[4286,"impl-Mul%3Ci64%3E-for-I64Vec4"],[4287,"impl-Mul-for-I64Vec4"],[4288,"impl-MulAssign%3Ci64%3E-for-I64Vec2"],[4289,"impl-MulAssign-for-I64Vec2"],[4290,"impl-MulAssign-for-I64Vec3"],[4291,"impl-MulAssign%3Ci64%3E-for-I64Vec3"],[4292,"impl-MulAssign%3Ci64%3E-for-I64Vec4"],[4293,"impl-MulAssign-for-I64Vec4"],[4305,"impl-Product%3C%26I64Vec2%3E-for-I64Vec2"],[4306,"impl-Product-for-I64Vec2"],[4307,"impl-Product-for-I64Vec3"],[4308,"impl-Product%3C%26I64Vec3%3E-for-I64Vec3"],[4309,"impl-Product-for-I64Vec4"],[4310,"impl-Product%3C%26I64Vec4%3E-for-I64Vec4"],[4311,"impl-Rem%3Ci64%3E-for-I64Vec2"],[4312,"impl-Rem-for-I64Vec2"],[4313,"impl-Rem-for-I64Vec3"],[4314,"impl-Rem%3Ci64%3E-for-I64Vec3"],[4315,"impl-Rem-for-I64Vec4"],[4316,"impl-Rem%3Ci64%3E-for-I64Vec4"],[4317,"impl-RemAssign-for-I64Vec2"],[4318,"impl-RemAssign%3Ci64%3E-for-I64Vec2"],[4319,"impl-RemAssign-for-I64Vec3"],[4320,"impl-RemAssign%3Ci64%3E-for-I64Vec3"],[4321,"impl-RemAssign-for-I64Vec4"],[4322,"impl-RemAssign%3Ci64%3E-for-I64Vec4"],[4342,"impl-Shl%3Ci64%3E-for-I64Vec2"],[4343,"impl-Shl%3Ci32%3E-for-I64Vec2"],[4344,"impl-Shl%3CUVec2%3E-for-I64Vec2"],[4345,"impl-Shl%3Ci16%3E-for-I64Vec2"],[4346,"impl-Shl%3Cu32%3E-for-I64Vec2"],[4347,"impl-Shl%3Cu64%3E-for-I64Vec2"],[4348,"impl-Shl%3CIVec2%3E-for-I64Vec2"],[4349,"impl-Shl%3Cu16%3E-for-I64Vec2"],[4350,"impl-Shl%3Ci8%3E-for-I64Vec2"],[4351,"impl-Shl%3Cu8%3E-for-I64Vec2"],[4352,"impl-Shl%3Ci8%3E-for-I64Vec3"],[4353,"impl-Shl%3Cu32%3E-for-I64Vec3"],[4354,"impl-Shl%3CUVec3%3E-for-I64Vec3"],[4355,"impl-Shl%3Cu64%3E-for-I64Vec3"],[4356,"impl-Shl%3Cu8%3E-for-I64Vec3"],[4357,"impl-Shl%3CIVec3%3E-for-I64Vec3"],[4358,"impl-Shl%3Ci64%3E-for-I64Vec3"],[4359,"impl-Shl%3Ci16%3E-for-I64Vec3"],[4360,"impl-Shl%3Ci32%3E-for-I64Vec3"],[4361,"impl-Shl%3Cu16%3E-for-I64Vec3"],[4362,"impl-Shl%3Cu64%3E-for-I64Vec4"],[4363,"impl-Shl%3Ci16%3E-for-I64Vec4"],[4364,"impl-Shl%3Ci32%3E-for-I64Vec4"],[4365,"impl-Shl%3Ci64%3E-for-I64Vec4"],[4366,"impl-Shl%3Cu16%3E-for-I64Vec4"],[4367,"impl-Shl%3Ci8%3E-for-I64Vec4"],[4368,"impl-Shl%3Cu32%3E-for-I64Vec4"],[4369,"impl-Shl%3CUVec4%3E-for-I64Vec4"],[4370,"impl-Shl%3Cu8%3E-for-I64Vec4"],[4371,"impl-Shl%3CIVec4%3E-for-I64Vec4"],[4372,"impl-Shr%3Cu16%3E-for-I64Vec2"],[4373,"impl-Shr%3Ci8%3E-for-I64Vec2"],[4374,"impl-Shr%3Ci16%3E-for-I64Vec2"],[4375,"impl-Shr%3Ci32%3E-for-I64Vec2"],[4376,"impl-Shr%3Ci64%3E-for-I64Vec2"],[4377,"impl-Shr%3Cu64%3E-for-I64Vec2"],[4378,"impl-Shr%3CIVec2%3E-for-I64Vec2"],[4379,"impl-Shr%3Cu32%3E-for-I64Vec2"],[4380,"impl-Shr%3Cu8%3E-for-I64Vec2"],[4381,"impl-Shr%3CUVec2%3E-for-I64Vec2"],[4382,"impl-Shr%3CUVec3%3E-for-I64Vec3"],[4383,"impl-Shr%3Cu8%3E-for-I64Vec3"],[4384,"impl-Shr%3Cu64%3E-for-I64Vec3"],[4385,"impl-Shr%3Cu32%3E-for-I64Vec3"],[4386,"impl-Shr%3Ci32%3E-for-I64Vec3"],[4387,"impl-Shr%3Ci8%3E-for-I64Vec3"],[4388,"impl-Shr%3Cu16%3E-for-I64Vec3"],[4389,"impl-Shr%3Ci64%3E-for-I64Vec3"],[4390,"impl-Shr%3CIVec3%3E-for-I64Vec3"],[4391,"impl-Shr%3Ci16%3E-for-I64Vec3"],[4392,"impl-Shr%3Ci64%3E-for-I64Vec4"],[4393,"impl-Shr%3Ci8%3E-for-I64Vec4"],[4394,"impl-Shr%3Cu64%3E-for-I64Vec4"],[4395,"impl-Shr%3CUVec4%3E-for-I64Vec4"],[4396,"impl-Shr%3CIVec4%3E-for-I64Vec4"],[4397,"impl-Shr%3Cu32%3E-for-I64Vec4"],[4398,"impl-Shr%3Ci32%3E-for-I64Vec4"],[4399,"impl-Shr%3Cu16%3E-for-I64Vec4"],[4400,"impl-Shr%3Ci16%3E-for-I64Vec4"],[4401,"impl-Shr%3Cu8%3E-for-I64Vec4"],[4408,"impl-Sub-for-I64Vec2"],[4409,"impl-Sub%3Ci64%3E-for-I64Vec2"],[4410,"impl-Sub%3Ci64%3E-for-I64Vec3"],[4411,"impl-Sub-for-I64Vec3"],[4412,"impl-Sub-for-I64Vec4"],[4413,"impl-Sub%3Ci64%3E-for-I64Vec4"],[4414,"impl-SubAssign-for-I64Vec2"],[4415,"impl-SubAssign%3Ci64%3E-for-I64Vec2"],[4416,"impl-SubAssign%3Ci64%3E-for-I64Vec3"],[4417,"impl-SubAssign-for-I64Vec3"],[4418,"impl-SubAssign-for-I64Vec4"],[4419,"impl-SubAssign%3Ci64%3E-for-I64Vec4"],[4420,"impl-Sum-for-I64Vec2"],[4421,"impl-Sum%3C%26I64Vec2%3E-for-I64Vec2"],[4422,"impl-Sum%3C%26I64Vec3%3E-for-I64Vec3"],[4423,"impl-Sum-for-I64Vec3"],[4424,"impl-Sum%3C%26I64Vec4%3E-for-I64Vec4"],[4425,"impl-Sum-for-I64Vec4"],[5474,"impl-Add%3Cu32%3E-for-UVec2"],[5475,"impl-Add-for-UVec2"],[5476,"impl-Add-for-UVec3"],[5477,"impl-Add%3Cu32%3E-for-UVec3"],[5478,"impl-Add%3Cu32%3E-for-UVec4"],[5479,"impl-Add-for-UVec4"],[5480,"impl-AddAssign-for-UVec2"],[5481,"impl-AddAssign%3Cu32%3E-for-UVec2"],[5482,"impl-AddAssign-for-UVec3"],[5483,"impl-AddAssign%3Cu32%3E-for-UVec3"],[5484,"impl-AddAssign%3Cu32%3E-for-UVec4"],[5485,"impl-AddAssign-for-UVec4"],[5508,"impl-BitAnd%3Cu32%3E-for-UVec2"],[5509,"impl-BitAnd-for-UVec2"],[5510,"impl-BitAnd-for-UVec3"],[5511,"impl-BitAnd%3Cu32%3E-for-UVec3"],[5512,"impl-BitAnd%3Cu32%3E-for-UVec4"],[5513,"impl-BitAnd-for-UVec4"],[5514,"impl-BitOr-for-UVec2"],[5515,"impl-BitOr%3Cu32%3E-for-UVec2"],[5516,"impl-BitOr-for-UVec3"],[5517,"impl-BitOr%3Cu32%3E-for-UVec3"],[5518,"impl-BitOr%3Cu32%3E-for-UVec4"],[5519,"impl-BitOr-for-UVec4"],[5520,"impl-BitXor-for-UVec2"],[5521,"impl-BitXor%3Cu32%3E-for-UVec2"],[5522,"impl-BitXor%3Cu32%3E-for-UVec3"],[5523,"impl-BitXor-for-UVec3"],[5524,"impl-BitXor%3Cu32%3E-for-UVec4"],[5525,"impl-BitXor-for-UVec4"],[5563,"impl-Div%3Cu32%3E-for-UVec2"],[5564,"impl-Div-for-UVec2"],[5565,"impl-Div%3Cu32%3E-for-UVec3"],[5566,"impl-Div-for-UVec3"],[5567,"impl-Div-for-UVec4"],[5568,"impl-Div%3Cu32%3E-for-UVec4"],[5569,"impl-DivAssign-for-UVec2"],[5570,"impl-DivAssign%3Cu32%3E-for-UVec2"],[5571,"impl-DivAssign-for-UVec3"],[5572,"impl-DivAssign%3Cu32%3E-for-UVec3"],[5573,"impl-DivAssign%3Cu32%3E-for-UVec4"],[5574,"impl-DivAssign-for-UVec4"],[5586,"impl-Debug-for-UVec2"],[5587,"impl-Display-for-UVec2"],[5588,"impl-Debug-for-UVec3"],[5589,"impl-Display-for-UVec3"],[5590,"impl-Display-for-UVec4"],[5591,"impl-Debug-for-UVec4"],[5593,"impl-From%3C%5Bu32;+2%5D%3E-for-UVec2"],[5594,"impl-From%3C(u32,+u32)%3E-for-UVec2"],[5595,"impl-From%3C(u32,+u32,+u32)%3E-for-UVec3"],[5596,"impl-From%3C%5Bu32;+3%5D%3E-for-UVec3"],[5598,"impl-From%3C(UVec2,+u32)%3E-for-UVec3"],[5599,"impl-From%3C(UVec3,+u32)%3E-for-UVec4"],[5600,"impl-From%3C(UVec2,+u32,+u32)%3E-for-UVec4"],[5601,"impl-From%3C(u32,+UVec3)%3E-for-UVec4"],[5602,"impl-From%3C(UVec2,+UVec2)%3E-for-UVec4"],[5603,"impl-From%3C%5Bu32;+4%5D%3E-for-UVec4"],[5605,"impl-From%3C(u32,+u32,+u32,+u32)%3E-for-UVec4"],[5639,"impl-Mul-for-UVec2"],[5640,"impl-Mul%3Cu32%3E-for-UVec2"],[5641,"impl-Mul%3Cu32%3E-for-UVec3"],[5642,"impl-Mul-for-UVec3"],[5643,"impl-Mul-for-UVec4"],[5644,"impl-Mul%3Cu32%3E-for-UVec4"],[5645,"impl-MulAssign%3Cu32%3E-for-UVec2"],[5646,"impl-MulAssign-for-UVec2"],[5647,"impl-MulAssign-for-UVec3"],[5648,"impl-MulAssign%3Cu32%3E-for-UVec3"],[5649,"impl-MulAssign-for-UVec4"],[5650,"impl-MulAssign%3Cu32%3E-for-UVec4"],[5657,"impl-Product-for-UVec2"],[5658,"impl-Product%3C%26UVec2%3E-for-UVec2"],[5659,"impl-Product-for-UVec3"],[5660,"impl-Product%3C%26UVec3%3E-for-UVec3"],[5661,"impl-Product%3C%26UVec4%3E-for-UVec4"],[5662,"impl-Product-for-UVec4"],[5663,"impl-Rem-for-UVec2"],[5664,"impl-Rem%3Cu32%3E-for-UVec2"],[5665,"impl-Rem-for-UVec3"],[5666,"impl-Rem%3Cu32%3E-for-UVec3"],[5667,"impl-Rem%3Cu32%3E-for-UVec4"],[5668,"impl-Rem-for-UVec4"],[5669,"impl-RemAssign-for-UVec2"],[5670,"impl-RemAssign%3Cu32%3E-for-UVec2"],[5671,"impl-RemAssign-for-UVec3"],[5672,"impl-RemAssign%3Cu32%3E-for-UVec3"],[5673,"impl-RemAssign-for-UVec4"],[5674,"impl-RemAssign%3Cu32%3E-for-UVec4"],[5690,"impl-Shl%3Cu16%3E-for-UVec2"],[5691,"impl-Shl%3Ci32%3E-for-UVec2"],[5692,"impl-Shl%3Cu32%3E-for-UVec2"],[5693,"impl-Shl%3Ci64%3E-for-UVec2"],[5694,"impl-Shl%3CIVec2%3E-for-UVec2"],[5695,"impl-Shl%3Cu64%3E-for-UVec2"],[5696,"impl-Shl%3Ci16%3E-for-UVec2"],[5697,"impl-Shl%3Cu8%3E-for-UVec2"],[5698,"impl-Shl%3Ci8%3E-for-UVec2"],[5699,"impl-Shl-for-UVec2"],[5700,"impl-Shl%3Ci64%3E-for-UVec3"],[5701,"impl-Shl%3Ci16%3E-for-UVec3"],[5702,"impl-Shl%3Cu16%3E-for-UVec3"],[5703,"impl-Shl%3Ci32%3E-for-UVec3"],[5704,"impl-Shl%3Cu64%3E-for-UVec3"],[5705,"impl-Shl-for-UVec3"],[5706,"impl-Shl%3CIVec3%3E-for-UVec3"],[5707,"impl-Shl%3Ci8%3E-for-UVec3"],[5708,"impl-Shl%3Cu32%3E-for-UVec3"],[5709,"impl-Shl%3Cu8%3E-for-UVec3"],[5710,"impl-Shl%3Ci8%3E-for-UVec4"],[5711,"impl-Shl%3Ci64%3E-for-UVec4"],[5712,"impl-Shl%3Ci16%3E-for-UVec4"],[5713,"impl-Shl%3Ci32%3E-for-UVec4"],[5714,"impl-Shl%3Cu8%3E-for-UVec4"],[5715,"impl-Shl%3Cu16%3E-for-UVec4"],[5716,"impl-Shl%3CIVec4%3E-for-UVec4"],[5717,"impl-Shl%3Cu32%3E-for-UVec4"],[5718,"impl-Shl-for-UVec4"],[5719,"impl-Shl%3Cu64%3E-for-UVec4"],[5720,"impl-Shr%3Cu8%3E-for-UVec2"],[5721,"impl-Shr-for-UVec2"],[5722,"impl-Shr%3Ci8%3E-for-UVec2"],[5723,"impl-Shr%3Ci16%3E-for-UVec2"],[5724,"impl-Shr%3Ci64%3E-for-UVec2"],[5725,"impl-Shr%3CIVec2%3E-for-UVec2"],[5726,"impl-Shr%3Cu32%3E-for-UVec2"],[5727,"impl-Shr%3Ci32%3E-for-UVec2"],[5728,"impl-Shr%3Cu16%3E-for-UVec2"],[5729,"impl-Shr%3Cu64%3E-for-UVec2"],[5730,"impl-Shr%3Cu8%3E-for-UVec3"],[5731,"impl-Shr%3CIVec3%3E-for-UVec3"],[5732,"impl-Shr%3Ci64%3E-for-UVec3"],[5733,"impl-Shr%3Ci8%3E-for-UVec3"],[5734,"impl-Shr%3Cu16%3E-for-UVec3"],[5735,"impl-Shr%3Ci16%3E-for-UVec3"],[5736,"impl-Shr-for-UVec3"],[5737,"impl-Shr%3Ci32%3E-for-UVec3"],[5738,"impl-Shr%3Cu64%3E-for-UVec3"],[5739,"impl-Shr%3Cu32%3E-for-UVec3"],[5740,"impl-Shr%3Cu32%3E-for-UVec4"],[5741,"impl-Shr%3Ci8%3E-for-UVec4"],[5742,"impl-Shr%3Cu8%3E-for-UVec4"],[5743,"impl-Shr%3CIVec4%3E-for-UVec4"],[5744,"impl-Shr%3Ci32%3E-for-UVec4"],[5745,"impl-Shr%3Cu64%3E-for-UVec4"],[5746,"impl-Shr-for-UVec4"],[5747,"impl-Shr%3Ci64%3E-for-UVec4"],[5748,"impl-Shr%3Ci16%3E-for-UVec4"],[5749,"impl-Shr%3Cu16%3E-for-UVec4"],[5753,"impl-Sub-for-UVec2"],[5754,"impl-Sub%3Cu32%3E-for-UVec2"],[5755,"impl-Sub%3Cu32%3E-for-UVec3"],[5756,"impl-Sub-for-UVec3"],[5757,"impl-Sub%3Cu32%3E-for-UVec4"],[5758,"impl-Sub-for-UVec4"],[5759,"impl-SubAssign-for-UVec2"],[5760,"impl-SubAssign%3Cu32%3E-for-UVec2"],[5761,"impl-SubAssign-for-UVec3"],[5762,"impl-SubAssign%3Cu32%3E-for-UVec3"],[5763,"impl-SubAssign-for-UVec4"],[5764,"impl-SubAssign%3Cu32%3E-for-UVec4"],[5765,"impl-Sum-for-UVec2"],[5766,"impl-Sum%3C%26UVec2%3E-for-UVec2"],[5767,"impl-Sum%3C%26UVec3%3E-for-UVec3"],[5768,"impl-Sum-for-UVec3"],[5769,"impl-Sum-for-UVec4"],[5770,"impl-Sum%3C%26UVec4%3E-for-UVec4"],[5782,"impl-TryFrom%3CIVec2%3E-for-UVec2"],[5783,"impl-TryFrom%3CI64Vec2%3E-for-UVec2"],[5784,"impl-TryFrom%3CU64Vec2%3E-for-UVec2"],[5786,"impl-TryFrom%3CI64Vec3%3E-for-UVec3"],[5787,"impl-TryFrom%3CIVec3%3E-for-UVec3"],[5788,"impl-TryFrom%3CU64Vec3%3E-for-UVec3"],[5790,"impl-TryFrom%3CI64Vec4%3E-for-UVec4"],[5791,"impl-TryFrom%3CIVec4%3E-for-UVec4"],[5793,"impl-TryFrom%3CU64Vec4%3E-for-UVec4"],[6335,"impl-Add-for-U64Vec2"],[6336,"impl-Add%3Cu64%3E-for-U64Vec2"],[6337,"impl-Add%3Cu64%3E-for-U64Vec3"],[6338,"impl-Add-for-U64Vec3"],[6339,"impl-Add-for-U64Vec4"],[6340,"impl-Add%3Cu64%3E-for-U64Vec4"],[6341,"impl-AddAssign-for-U64Vec2"],[6342,"impl-AddAssign%3Cu64%3E-for-U64Vec2"],[6343,"impl-AddAssign%3Cu64%3E-for-U64Vec3"],[6344,"impl-AddAssign-for-U64Vec3"],[6345,"impl-AddAssign-for-U64Vec4"],[6346,"impl-AddAssign%3Cu64%3E-for-U64Vec4"],[6369,"impl-BitAnd%3Cu64%3E-for-U64Vec2"],[6370,"impl-BitAnd-for-U64Vec2"],[6371,"impl-BitAnd%3Cu64%3E-for-U64Vec3"],[6372,"impl-BitAnd-for-U64Vec3"],[6373,"impl-BitAnd-for-U64Vec4"],[6374,"impl-BitAnd%3Cu64%3E-for-U64Vec4"],[6375,"impl-BitOr-for-U64Vec2"],[6376,"impl-BitOr%3Cu64%3E-for-U64Vec2"],[6377,"impl-BitOr%3Cu64%3E-for-U64Vec3"],[6378,"impl-BitOr-for-U64Vec3"],[6379,"impl-BitOr%3Cu64%3E-for-U64Vec4"],[6380,"impl-BitOr-for-U64Vec4"],[6381,"impl-BitXor-for-U64Vec2"],[6382,"impl-BitXor%3Cu64%3E-for-U64Vec2"],[6383,"impl-BitXor-for-U64Vec3"],[6384,"impl-BitXor%3Cu64%3E-for-U64Vec3"],[6385,"impl-BitXor-for-U64Vec4"],[6386,"impl-BitXor%3Cu64%3E-for-U64Vec4"],[6424,"impl-Div-for-U64Vec2"],[6425,"impl-Div%3Cu64%3E-for-U64Vec2"],[6426,"impl-Div-for-U64Vec3"],[6427,"impl-Div%3Cu64%3E-for-U64Vec3"],[6428,"impl-Div-for-U64Vec4"],[6429,"impl-Div%3Cu64%3E-for-U64Vec4"],[6430,"impl-DivAssign-for-U64Vec2"],[6431,"impl-DivAssign%3Cu64%3E-for-U64Vec2"],[6432,"impl-DivAssign%3Cu64%3E-for-U64Vec3"],[6433,"impl-DivAssign-for-U64Vec3"],[6434,"impl-DivAssign%3Cu64%3E-for-U64Vec4"],[6435,"impl-DivAssign-for-U64Vec4"],[6447,"impl-Display-for-U64Vec2"],[6448,"impl-Debug-for-U64Vec2"],[6449,"impl-Debug-for-U64Vec3"],[6450,"impl-Display-for-U64Vec3"],[6451,"impl-Debug-for-U64Vec4"],[6452,"impl-Display-for-U64Vec4"],[6453,"impl-From%3C(u64,+u64)%3E-for-U64Vec2"],[6454,"impl-From%3CUVec2%3E-for-U64Vec2"],[6456,"impl-From%3C%5Bu64;+2%5D%3E-for-U64Vec2"],[6457,"impl-From%3C%5Bu64;+3%5D%3E-for-U64Vec3"],[6459,"impl-From%3C(u64,+u64,+u64)%3E-for-U64Vec3"],[6460,"impl-From%3C(U64Vec2,+u64)%3E-for-U64Vec3"],[6461,"impl-From%3CUVec3%3E-for-U64Vec3"],[6462,"impl-From%3C(u64,+U64Vec3)%3E-for-U64Vec4"],[6463,"impl-From%3C%5Bu64;+4%5D%3E-for-U64Vec4"],[6464,"impl-From%3C(U64Vec3,+u64)%3E-for-U64Vec4"],[6466,"impl-From%3C(U64Vec2,+u64,+u64)%3E-for-U64Vec4"],[6467,"impl-From%3C(u64,+u64,+u64,+u64)%3E-for-U64Vec4"],[6468,"impl-From%3CUVec4%3E-for-U64Vec4"],[6469,"impl-From%3C(U64Vec2,+U64Vec2)%3E-for-U64Vec4"],[6503,"impl-Mul%3Cu64%3E-for-U64Vec2"],[6504,"impl-Mul-for-U64Vec2"],[6505,"impl-Mul%3Cu64%3E-for-U64Vec3"],[6506,"impl-Mul-for-U64Vec3"],[6507,"impl-Mul%3Cu64%3E-for-U64Vec4"],[6508,"impl-Mul-for-U64Vec4"],[6509,"impl-MulAssign%3Cu64%3E-for-U64Vec2"],[6510,"impl-MulAssign-for-U64Vec2"],[6511,"impl-MulAssign-for-U64Vec3"],[6512,"impl-MulAssign%3Cu64%3E-for-U64Vec3"],[6513,"impl-MulAssign-for-U64Vec4"],[6514,"impl-MulAssign%3Cu64%3E-for-U64Vec4"],[6521,"impl-Product-for-U64Vec2"],[6522,"impl-Product%3C%26U64Vec2%3E-for-U64Vec2"],[6523,"impl-Product-for-U64Vec3"],[6524,"impl-Product%3C%26U64Vec3%3E-for-U64Vec3"],[6525,"impl-Product-for-U64Vec4"],[6526,"impl-Product%3C%26U64Vec4%3E-for-U64Vec4"],[6527,"impl-Rem-for-U64Vec2"],[6528,"impl-Rem%3Cu64%3E-for-U64Vec2"],[6529,"impl-Rem%3Cu64%3E-for-U64Vec3"],[6530,"impl-Rem-for-U64Vec3"],[6531,"impl-Rem%3Cu64%3E-for-U64Vec4"],[6532,"impl-Rem-for-U64Vec4"],[6533,"impl-RemAssign-for-U64Vec2"],[6534,"impl-RemAssign%3Cu64%3E-for-U64Vec2"],[6535,"impl-RemAssign-for-U64Vec3"],[6536,"impl-RemAssign%3Cu64%3E-for-U64Vec3"],[6537,"impl-RemAssign%3Cu64%3E-for-U64Vec4"],[6538,"impl-RemAssign-for-U64Vec4"],[6554,"impl-Shl%3Ci64%3E-for-U64Vec2"],[6555,"impl-Shl%3Cu16%3E-for-U64Vec2"],[6556,"impl-Shl%3CIVec2%3E-for-U64Vec2"],[6557,"impl-Shl%3Cu8%3E-for-U64Vec2"],[6558,"impl-Shl%3Cu32%3E-for-U64Vec2"],[6559,"impl-Shl%3Ci8%3E-for-U64Vec2"],[6560,"impl-Shl%3Ci32%3E-for-U64Vec2"],[6561,"impl-Shl%3CUVec2%3E-for-U64Vec2"],[6562,"impl-Shl%3Ci16%3E-for-U64Vec2"],[6563,"impl-Shl%3Cu64%3E-for-U64Vec2"],[6564,"impl-Shl%3Cu16%3E-for-U64Vec3"],[6565,"impl-Shl%3CUVec3%3E-for-U64Vec3"],[6566,"impl-Shl%3CIVec3%3E-for-U64Vec3"],[6567,"impl-Shl%3Ci8%3E-for-U64Vec3"],[6568,"impl-Shl%3Cu64%3E-for-U64Vec3"],[6569,"impl-Shl%3Ci64%3E-for-U64Vec3"],[6570,"impl-Shl%3Cu8%3E-for-U64Vec3"],[6571,"impl-Shl%3Ci16%3E-for-U64Vec3"],[6572,"impl-Shl%3Ci32%3E-for-U64Vec3"],[6573,"impl-Shl%3Cu32%3E-for-U64Vec3"],[6574,"impl-Shl%3CUVec4%3E-for-U64Vec4"],[6575,"impl-Shl%3Ci16%3E-for-U64Vec4"],[6576,"impl-Shl%3Ci8%3E-for-U64Vec4"],[6577,"impl-Shl%3Ci64%3E-for-U64Vec4"],[6578,"impl-Shl%3Cu64%3E-for-U64Vec4"],[6579,"impl-Shl%3Cu32%3E-for-U64Vec4"],[6580,"impl-Shl%3Ci32%3E-for-U64Vec4"],[6581,"impl-Shl%3CIVec4%3E-for-U64Vec4"],[6582,"impl-Shl%3Cu8%3E-for-U64Vec4"],[6583,"impl-Shl%3Cu16%3E-for-U64Vec4"],[6584,"impl-Shr%3Ci64%3E-for-U64Vec2"],[6585,"impl-Shr%3Ci32%3E-for-U64Vec2"],[6586,"impl-Shr%3Cu8%3E-for-U64Vec2"],[6587,"impl-Shr%3Cu32%3E-for-U64Vec2"],[6588,"impl-Shr%3Ci8%3E-for-U64Vec2"],[6589,"impl-Shr%3Ci16%3E-for-U64Vec2"],[6590,"impl-Shr%3Cu16%3E-for-U64Vec2"],[6591,"impl-Shr%3CUVec2%3E-for-U64Vec2"],[6592,"impl-Shr%3CIVec2%3E-for-U64Vec2"],[6593,"impl-Shr%3Cu64%3E-for-U64Vec2"],[6594,"impl-Shr%3Ci32%3E-for-U64Vec3"],[6595,"impl-Shr%3CUVec3%3E-for-U64Vec3"],[6596,"impl-Shr%3Ci8%3E-for-U64Vec3"],[6597,"impl-Shr%3Ci64%3E-for-U64Vec3"],[6598,"impl-Shr%3Cu8%3E-for-U64Vec3"],[6599,"impl-Shr%3Cu16%3E-for-U64Vec3"],[6600,"impl-Shr%3Cu32%3E-for-U64Vec3"],[6601,"impl-Shr%3Ci16%3E-for-U64Vec3"],[6602,"impl-Shr%3Cu64%3E-for-U64Vec3"],[6603,"impl-Shr%3CIVec3%3E-for-U64Vec3"],[6604,"impl-Shr%3Ci32%3E-for-U64Vec4"],[6605,"impl-Shr%3Cu8%3E-for-U64Vec4"],[6606,"impl-Shr%3CUVec4%3E-for-U64Vec4"],[6607,"impl-Shr%3Cu64%3E-for-U64Vec4"],[6608,"impl-Shr%3Cu32%3E-for-U64Vec4"],[6609,"impl-Shr%3Cu16%3E-for-U64Vec4"],[6610,"impl-Shr%3CIVec4%3E-for-U64Vec4"],[6611,"impl-Shr%3Ci64%3E-for-U64Vec4"],[6612,"impl-Shr%3Ci8%3E-for-U64Vec4"],[6613,"impl-Shr%3Ci16%3E-for-U64Vec4"],[6617,"impl-Sub-for-U64Vec2"],[6618,"impl-Sub%3Cu64%3E-for-U64Vec2"],[6619,"impl-Sub-for-U64Vec3"],[6620,"impl-Sub%3Cu64%3E-for-U64Vec3"],[6621,"impl-Sub-for-U64Vec4"],[6622,"impl-Sub%3Cu64%3E-for-U64Vec4"],[6623,"impl-SubAssign%3Cu64%3E-for-U64Vec2"],[6624,"impl-SubAssign-for-U64Vec2"],[6625,"impl-SubAssign%3Cu64%3E-for-U64Vec3"],[6626,"impl-SubAssign-for-U64Vec3"],[6627,"impl-SubAssign-for-U64Vec4"],[6628,"impl-SubAssign%3Cu64%3E-for-U64Vec4"],[6629,"impl-Sum%3C%26U64Vec2%3E-for-U64Vec2"],[6630,"impl-Sum-for-U64Vec2"],[6631,"impl-Sum-for-U64Vec3"],[6632,"impl-Sum%3C%26U64Vec3%3E-for-U64Vec3"],[6633,"impl-Sum%3C%26U64Vec4%3E-for-U64Vec4"],[6634,"impl-Sum-for-U64Vec4"]],"a":{"cross":[972,2453,3404,4304],"determinant":[972,2453,3404,4304],"magnitude":[822,823,824,825,826,2341,2342,2343,2344],"magnitude2":[832,833,834,835,836,2349,2350,2351,2352,3367,3368,3369,4267,4268,4269,5624,5625,5626,6488,6489,6490],"mix":[837,838,839,840,841,2353,2354,2355,2356],"scale":[686,687,688,689,2233,2234,2235],"wedge":[972,2453,3404,4304]}}],\ ["grid",{"doc":"Two Dimensional Grid","t":"FFFNNNNNNNNNNNNNNNNNNNNNNNQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN","n":["Grid","GridColIter","GridRowIter","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clear","clone","clone_into","cols","eq","fill","fill_with","flatten","fmt","from","from","from","from_vec","get","get_mut","get_unchecked","get_unchecked_mut","grid","index","index","index_mut","index_mut","indexed_iter","init","insert_col","insert_row","into","into","into","into_iter","into_iter","into_vec","is_empty","iter","iter_col","iter_col_mut","iter_cols","iter_mut","iter_row","iter_row_mut","iter_rows","new","next","next","pop_col","pop_row","push_col","push_row","remove_col","remove_row","rotate_half","rotate_left","rotate_right","rows","size","to_owned","transpose","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id"],"q":[[0,"grid"],[75,"core::clone"],[76,"core::cmp"],[77,"core::ops::function"],[78,"alloc::vec"],[79,"core::fmt"],[80,"core::fmt"],[81,"core::iter::traits::iterator"],[82,"core::slice::iter"],[83,"core::iter::adapters::step_by"],[84,"core::slice::iter"],[85,"core::result"],[86,"core::any"]],"d":["Stores elements of a certain type in a 2D grid structure.","","","","","","","","","Clears the grid.","","","Returns the number of columns of the grid.","","Fills the grid with elements by cloning value.","Fills the grid with elements returned by calling a closure …","Returns a reference to the internal data structure of the …","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns a grid from a vector with a given column length. …","Access a certain element in the grid. Returns None if an …","Mutable access to a certain element in the grid. Returns …","Returns a reference to an element, without performing …","Returns a mutable reference to an element, without …","Init a grid with values.","","","","","Traverse the grid with row and column indexes.","Init a grid of size rows x columns with the given data …","Insert a new column at the index.","Insert a new row at the index and shifts all rows after …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Converts self into a vector without clones or allocation.","Returns true if the grid contains no elements. For example:","Returns an iterator over the whole grid, starting from the …","Returns an iterator over a column.","Returns a mutable iterator over a column.","Iterate over the columns of the grid. Each time an …","Returns an mutable iterator over the whole grid that …","Returns an iterator over a row.","Returns a mutable iterator over a row.","Iterate over the rows of the grid. Each time an iterator …","Init a grid of size rows x columns with default values of …","","","Removes the last column from a grid and returns it, or …","Removes the last row from a grid and returns it, or None …","Add a new column to the grid.","Add a new row to the grid.","Remove a column at the index and return a vector of it.","Remove a Row at the index and return a vector of it.","Rotate the grid 180°.","Rotate the grid 90° counter-clockwise.","Rotate the grid 90° clockwise.","Returns the number of rows of the grid.","Returns the size of the gird as a two element tuple. First …","","Transpose the grid so that columns become rows in new grid.","","","","","","","","",""],"i":[0,0,0,1,21,20,1,21,20,1,1,1,1,1,1,1,1,1,1,21,20,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,21,20,21,20,1,1,1,1,1,1,1,1,1,1,1,21,20,1,1,1,1,1,1,1,1,1,1,1,1,1,1,21,20,1,21,20,1,21,20],"f":[0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[1,[-1]]],2,[]],[[[1,[-1]]],[[1,[-1]]],3],[[-1,-2],2,[],[]],[[[1,[-1]]],4,[]],[[[1,[-1]],[1,[-1]]],5,6],[[[1,[-1]],-1],2,3],[[[1,[-1]],-2],2,[],[[8,[],[[7,[-1]]]]]],[[[1,[-1]]],[[9,[-1]]],[]],[[[1,[-1]],10],11,12],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[9,[-1]],4],[[1,[-1]]],[]],[[[1,[-1]],4,4],[[13,[-1]]],[]],[[[1,[-1]],4,4],[[13,[-1]]],[]],[[[1,[-1]],4,4],-1,[]],[[[1,[-1]],4,4],-1,[]],0,[[[1,[-1]],[2,[4,4]]],-1,[]],[[[1,[-1]],4],[[14,[-1]]],[]],[[[1,[-1]],[2,[4,4]]],-1,[]],[[[1,[-1]],4],[[14,[-1]]],[]],[[[1,[-1]]],[[0,[[16,[],[[15,[[2,[[2,[4,4]],-1]]]]]]]]],[]],[[4,4,-1],[[1,[-1]]],3],[[[1,[-1]],4,[9,[-1]]],2,[]],[[[1,[-1]],4,[9,[-1]]],2,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[1,[-1]]],[[9,[-1]]],[]],[[[1,[-1]]],5,[]],[[[1,[-1]]],[[17,[-1]]],[]],[[[1,[-1]],4],[[18,[[17,[-1]]]]],[]],[[[1,[-1]],4],[[18,[[19,[-1]]]]],[]],[[[1,[-1]]],[[20,[-1]]],[]],[[[1,[-1]]],[[19,[-1]]],[]],[[[1,[-1]],4],[[17,[-1]]],[]],[[[1,[-1]],4],[[19,[-1]]],[]],[[[1,[-1]]],[[21,[-1]]],[]],[[4,4],[[1,[-1]]],22],[[[21,[-1]]],[[13,[-2]]],[],[]],[[[20,[-1]]],[[13,[-2]]],[],[]],[[[1,[-1]]],[[13,[[9,[-1]]]]],[]],[[[1,[-1]]],[[13,[[9,[-1]]]]],[]],[[[1,[-1]],[9,[-1]]],2,[]],[[[1,[-1]],[9,[-1]]],2,[]],[[[1,[-1]],4],[[13,[[9,[-1]]]]],[]],[[[1,[-1]],4],[[13,[[9,[-1]]]]],[]],[[[1,[-1]]],[[1,[-1]]],3],[[[1,[-1]]],[[1,[-1]]],3],[[[1,[-1]]],[[1,[-1]]],3],[[[1,[-1]]],4,[]],[[[1,[-1]]],[[2,[4,4]]],[]],[-1,-2,[],[]],[[[1,[-1]]],[[1,[-1]]],3],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,[[23,[-2]]],[],[]],[-1,24,[]],[-1,24,[]],[-1,24,[]]],"c":[],"p":[[5,"Grid",0],[1,"tuple"],[10,"Clone",75],[1,"usize"],[1,"bool"],[10,"Eq",76],[17,"Output"],[10,"FnMut",77],[5,"Vec",78],[5,"Formatter",79],[8,"Result",79],[10,"Debug",79],[6,"Option",80],[1,"slice"],[17,"Item"],[10,"Iterator",81],[5,"Iter",82],[5,"StepBy",83],[5,"IterMut",82],[5,"GridColIter",0],[5,"GridRowIter",0],[10,"Default",84],[6,"Result",85],[5,"TypeId",86]],"b":[[27,"impl-Index%3C(usize,+usize)%3E-for-Grid%3CT%3E"],[28,"impl-Index%3Cusize%3E-for-Grid%3CT%3E"],[29,"impl-IndexMut%3C(usize,+usize)%3E-for-Grid%3CT%3E"],[30,"impl-IndexMut%3Cusize%3E-for-Grid%3CT%3E"]]}],\ diff --git a/src/cosmic/app/core.rs.html b/src/cosmic/app/core.rs.html index 9acdb2ffa70..82cb8524cf9 100644 --- a/src/cosmic/app/core.rs.html +++ b/src/cosmic/app/core.rs.html @@ -309,6 +309,10 @@ 308 309 310 +311 +312 +313 +314
// Copyright 2023 System76 <info@system76.com>
 // SPDX-License-Identifier: MPL-2.0
 
@@ -357,6 +361,9 @@
     /// Enables debug features in cosmic/iced.
     pub debug: bool,
 
+    /// Disables loading the icon theme from cosmic-config.
+    pub(super) icon_theme_override: bool,
+
     /// Whether the window is too small for the nav bar + main content.
     is_condensed: bool,
 
@@ -406,6 +413,7 @@
     fn default() -> Self {
         Self {
             debug: false,
+            icon_theme_override: false,
             is_condensed: false,
             keyboard_nav: true,
             nav_bar: NavBar {
diff --git a/src/cosmic/app/cosmic.rs.html b/src/cosmic/app/cosmic.rs.html
index 2b646f059d5..1c11f2a2723 100644
--- a/src/cosmic/app/cosmic.rs.html
+++ b/src/cosmic/app/cosmic.rs.html
@@ -593,6 +593,13 @@
 592
 593
 594
+595
+596
+597
+598
+599
+600
+601
 

// Copyright 2023 System76 <info@system76.com>
 // SPDX-License-Identifier: MPL-2.0
 
@@ -1158,6 +1165,13 @@
             }
 
             Message::ToolkitConfig(config) => {
+                // Change the icon theme if not defined by the application.
+                if !self.app.core().icon_theme_override
+                    && crate::icon_theme::default() != config.icon_theme
+                {
+                    crate::icon_theme::set_default(config.icon_theme.clone());
+                }
+
                 self.app.core_mut().toolkit_config = config;
             }
 
diff --git a/src/cosmic/app/mod.rs.html b/src/cosmic/app/mod.rs.html
index eb8393163ca..e42a8c2e617 100644
--- a/src/cosmic/app/mod.rs.html
+++ b/src/cosmic/app/mod.rs.html
@@ -818,6 +818,10 @@
 817
 818
 819
+820
+821
+822
+823
 
// Copyright 2023 System76 <info@system76.com>
 // SPDX-License-Identifier: MPL-2.0
 
@@ -862,6 +866,7 @@
 pub use self::command::Command;
 pub use self::core::Core;
 pub use self::settings::Settings;
+use crate::config::CosmicTk;
 use crate::prelude::*;
 use crate::theme::THEME;
 use crate::widget::{context_drawer, nav_bar, popover};
@@ -886,16 +891,19 @@
     settings: Settings,
     flags: App::Flags,
 ) -> iced::Settings<(Core, App::Flags)> {
-    if let Some(icon_theme) = settings.default_icon_theme {
-        crate::icon_theme::set_default(icon_theme);
-    }
-
     let mut core = Core::default();
     core.debug = settings.debug;
+    core.icon_theme_override = settings.default_icon_theme.is_some();
     core.set_scale_factor(settings.scale_factor);
     core.set_window_width(settings.size.width as u32);
     core.set_window_height(settings.size.height as u32);
 
+    if let Some(icon_theme) = settings.default_icon_theme {
+        crate::icon_theme::set_default(icon_theme);
+    } else {
+        crate::icon_theme::set_default(core.toolkit_config.icon_theme.clone());
+    }
+
     THEME.with(move |t| {
         let mut cosmic_theme = t.borrow_mut();
         cosmic_theme.set_theme(settings.theme.theme_type);
diff --git a/src/cosmic/app/settings.rs.html b/src/cosmic/app/settings.rs.html
index 3291ad08472..ebf92d3d341 100644
--- a/src/cosmic/app/settings.rs.html
+++ b/src/cosmic/app/settings.rs.html
@@ -182,7 +182,7 @@
             client_decorations: true,
             debug: false,
             default_font: font::FONT,
-            default_icon_theme: Some(String::from("Cosmic")),
+            default_icon_theme: None,
             default_text_size: 14.0,
             resizable: Some(8.0),
             scale_factor: std::env::var("COSMIC_SCALE")
diff --git a/src/cosmic/config/toolkit.rs.html b/src/cosmic/config/toolkit.rs.html
index 4a805f31465..719bbea9319 100644
--- a/src/cosmic/config/toolkit.rs.html
+++ b/src/cosmic/config/toolkit.rs.html
@@ -34,6 +34,10 @@
 33
 34
 35
+36
+37
+38
+39
 
// Copyright 2024 System76 <info@system76.com>
 // SPDX-License-Identifier: MPL-2.0
 
@@ -53,6 +57,9 @@
 
     /// Show maximize button in window header.
     pub show_maximize: bool,
+
+    /// Preferred icon theme
+    pub icon_theme: String,
 }
 
 impl Default for CosmicTk {
@@ -60,6 +67,7 @@
         Self {
             show_minimize: true,
             show_maximize: true,
+            icon_theme: String::from("Cosmic"),
         }
     }
 }