From 7afd3ab1a132db9e50008d9d9c55d942dc6837db Mon Sep 17 00:00:00 2001 From: Jaime Pillora Date: Tue, 1 Sep 2015 00:15:11 +1000 Subject: [PATCH] stripped engine interface - not enough time :sad: somewhat usable now --- .gitignore | 2 + ct/engines/engine.go | 32 --- ct/engines/native/native.go | 181 -------------- ct/engines/utorrent/utorrent.go | 3 - ct/server.go | 225 ------------------ ct/shared/torrent.go | 19 -- engine/engine.go | 208 ++++++++++++++++ engine/torrent.go | 94 ++++++++ main.go | 7 +- server/server.go | 175 ++++++++++++++ ct/server-api.go => server/server_api.go | 56 ++--- server/server_files.go | 81 +++++++ .../server_search.go | 4 +- static/files.go | 176 ++++++++------ static/files/css/app.css | 12 +- static/files/css/sections/downloads.css | 14 +- static/files/css/sections/torrents.css | 11 +- static/files/css/semantic.min.css | 4 +- static/files/index.html | 13 +- static/files/js/config-controller.js | 12 + static/files/js/downloads-controller.js | 40 +++- static/files/js/engine-controller.js | 24 -- static/files/js/omni-controller.js | 49 ++-- static/files/js/run.js | 35 +-- static/files/js/semantic-checkbox.js | 2 +- static/files/js/torrents-controller.js | 2 +- static/files/js/utils.js | 3 +- static/files/template/config.html | 25 ++ static/files/template/download-tree.html | 20 ++ static/files/template/downloads.html | 16 +- static/files/template/engine.html | 40 ---- static/files/template/omni.html | 74 +++--- static/files/template/torrents.html | 107 ++++----- 33 files changed, 955 insertions(+), 811 deletions(-) create mode 100644 .gitignore delete mode 100644 ct/engines/engine.go delete mode 100644 ct/engines/native/native.go delete mode 100644 ct/engines/utorrent/utorrent.go delete mode 100644 ct/server.go delete mode 100644 ct/shared/torrent.go create mode 100644 engine/engine.go create mode 100644 engine/torrent.go create mode 100644 server/server.go rename ct/server-api.go => server/server_api.go (68%) create mode 100644 server/server_files.go rename ct/search-handlers.go => server/server_search.go (94%) create mode 100644 static/files/js/config-controller.js delete mode 100644 static/files/js/engine-controller.js create mode 100644 static/files/template/config.html create mode 100644 static/files/template/download-tree.html delete mode 100644 static/files/template/engine.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..bf658ff3e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +downloads +cloud-torrent.json diff --git a/ct/engines/engine.go b/ct/engines/engine.go deleted file mode 100644 index 874181503..000000000 --- a/ct/engines/engine.go +++ /dev/null @@ -1,32 +0,0 @@ -package engine - -import "github.com/jpillora/cloud-torrent/ct/shared" -import "github.com/jpillora/cloud-torrent/ct/engines/native" - -type ID string - -//the common engine interface -type Engine interface { - Name() string //name (lower(name)->id) - NewConfig() interface{} //*Config object - SetConfig(interface{}) error - NewTorrent(magnetURI string) error - StartTorrent(infohash string) error - StopTorrent(infohash string) error - DeleteTorrent(infohash string) error - StartFile(infohash, filepath string) error - StopFile(infohash, filepath string) error - GetTorrents() <-chan *shared.Torrent -} - -//TODO engines which require polling -type EnginePoller interface { - //Polls the status of all torrents and all files, passes updated torrents - //down the Torrents channel - Poll() error -} - -//insert each of the cloud-torrent bundled engines -var Bundled = []Engine{ - &native.Native{}, -} diff --git a/ct/engines/native/native.go b/ct/engines/native/native.go deleted file mode 100644 index dd10416ab..000000000 --- a/ct/engines/native/native.go +++ /dev/null @@ -1,181 +0,0 @@ -package native - -import ( - "encoding/hex" - "fmt" - "log" - "time" - - "github.com/anacrolix/torrent" - "github.com/jpillora/cloud-torrent/ct/shared" -) - -//the native Cloud Torrent engine, backed by anacrolix/torrent -type Native struct { - config *config - client *torrent.Client - queue chan *shared.Torrent -} - -func (n *Native) Name() string { - return "Native" -} -func (n *Native) NewConfig() interface{} { - //default config - return &config{ - Config: torrent.Config{ - //apply defaults - DataDir: ".", - }, - } -} - -func (n *Native) SetConfig(obj interface{}) error { - //recieve config - c, ok := obj.(*config) - if !ok { - return fmt.Errorf("Invalid config") - } - - client, err := torrent.NewClient(&c.Config) - if err != nil { - return err - } - n.client = client - return nil -} - -func (n *Native) NewTorrent(magnetURI string) error { - _, err := n.client.AddMagnet(magnetURI) - if err != nil { - return err - } - return nil -} - -func (n *Native) getTorrent(infohash string) (torrent.Torrent, error) { - var t torrent.Torrent - ih, err := str2ih(infohash) - if err != nil { - return t, err - } - t, ok := n.client.Torrent(ih) - if !ok { - return t, fmt.Errorf("Missing torrent %x", ih) - } - return t, nil -} - -func (n *Native) StartTorrent(infohash string) error { - log.Printf("start %s", infohash) - t, err := n.getTorrent(infohash) - if err != nil { - return err - } - t.DownloadAll() - return nil -} - -func (n *Native) StopTorrent(infohash string) error { - return fmt.Errorf("Unsupported") -} - -func (n *Native) DeleteTorrent(infohash string) error { - t, err := n.getTorrent(infohash) - if err != nil { - return err - } - t.Drop() - return nil -} - -func (n *Native) getFile(infohash, filepath string) (file torrent.File, err error) { - t, err := n.getTorrent(infohash) - if err != nil { - return - } - for _, f := range t.Files() { - if filepath == f.Path() { - file = f - return - } - } - err = fmt.Errorf("File not found") - return -} - -func (n *Native) StartFile(infohash, filepath string) error { - f, err := n.getFile(infohash, filepath) - if err != nil { - return err - } - f.PrioritizeRegion(0, f.Length()) - return nil -} - -func (n *Native) StopFile(infohash, filepath string) error { - return fmt.Errorf("Unsupported") -} - -func (n *Native) GetTorrents() <-chan *shared.Torrent { - n.queue = make(chan *shared.Torrent) - go n.pollTorrents() - return n.queue -} - -func (n *Native) pollTorrents() { - for { - time.Sleep(time.Second) - if n.client == nil { - continue - } - for _, t := range n.client.Torrents() { - //copy torrent info - st := &shared.Torrent{ - Name: t.Name(), - Loaded: t.Info() != nil, - InfoHash: t.InfoHash.HexString(), - Progress: t.BytesCompleted(), - Size: t.Length(), - } - //copy files info - files := t.Files() - st.Files = make([]*shared.File, len(files)) - for i, f1 := range files { - peices := f1.State() - f2 := &shared.File{ - Path: f1.Path(), - Size: f1.Length(), - Chunks: len(peices), - Completed: 0, - } - for _, p := range peices { - if p.Complete { - f2.Completed++ - } - } - st.Files[i] = f2 - } - //enqueue update - n.queue <- st - } - } -} - -func str2ih(str string) (torrent.InfoHash, error) { - var ih torrent.InfoHash - n, err := hex.Decode(ih[:], []byte(str)) - if err != nil { - return ih, fmt.Errorf("Invalid hex string") - } - if n != 20 { - return ih, fmt.Errorf("Invalid length") - } - return ih, nil -} - -//mask over TorrentDataOpener to allow torrent.Config to be marshalled -type config struct { - torrent.Config - TorrentDataOpener string `json:",omitempty"` //masks func -} diff --git a/ct/engines/utorrent/utorrent.go b/ct/engines/utorrent/utorrent.go deleted file mode 100644 index f0f9b56d0..000000000 --- a/ct/engines/utorrent/utorrent.go +++ /dev/null @@ -1,3 +0,0 @@ -package ct - -//TODO the uTorrent engine (drives uTorrent via HTTP API) diff --git a/ct/server.go b/ct/server.go deleted file mode 100644 index d5bc16553..000000000 --- a/ct/server.go +++ /dev/null @@ -1,225 +0,0 @@ -package ct - -import ( - "encoding/json" - "fmt" - "io/ioutil" - "log" - "net/http" - "strconv" - "strings" - - "github.com/jpillora/cloud-torrent/ct/engines" - "github.com/jpillora/cloud-torrent/ct/shared" - "github.com/jpillora/cloud-torrent/static" - "github.com/jpillora/go-realtime" - "github.com/jpillora/scraper/lib" -) - -//Server is the "State" portion of the diagram -type Server struct { - //config - Port int `help:"Listening port"` - Host string `help:"Listening interface (default all)"` - Auth string `help:"Optional basic auth (in form user:password)"` - ConfigPath string `help:"Configuration file path"` - //http handlers - fs http.Handler - scraper *scraper.Handler - scraperh http.Handler - //enabled torrent engines - engines map[engine.ID]engine.Engine - //realtime state (sync'd with browser immediately) - rt *realtime.Realtime - state struct { - Engines map[engine.ID]engineState - SearchProviders scraper.Config - Users map[string]realtime.User - } -} - -//engine state shared with clients -type engineState struct { - Name string - Config interface{} - Torrents torrents -} - -func (s *Server) init() error { - //init maps - s.state.Engines = map[engine.ID]engineState{} - s.state.Users = map[string]realtime.User{} - //will use a the local embed/ dir if it exists, otherwise will use the hardcoded embedded binaries - s.fs = ctstatic.FileSystemHandler() - s.scraper = &scraper.Handler{Log: true} - if err := s.scraper.LoadConfig(defaultSearchConfig); err != nil { - log.Fatal(err) - } - s.state.SearchProviders = s.scraper.Config //share scraper config - s.scraperh = http.StripPrefix("/search", s.scraper) - - //prepare all torrent engines - s.engines = map[engine.ID]engine.Engine{} - for _, e := range engine.Bundled { - if err := s.AddEngine(e); err != nil { - return err - } - } - //realtime - rt, err := realtime.Sync(&s.state) - if err != nil { - log.Fatalf("State object not syncable: %s", err) - } - s.rt = rt - - //check users every second - go s.userWatch() - - //initial config provided - var cfg []byte = nil - if s.ConfigPath != "" { - var err error - if cfg, err = ioutil.ReadFile(s.ConfigPath); err != nil { - return err - } - } else { - cfg = s.defaultConfig() - } - - //load default or provided - if err := s.loadConfig(cfg); err != nil { - return err - } - - //ready - return nil -} - -func (s *Server) Run() error { - if err := s.init(); err != nil { - return err - } - // TODO if Open { - // cross platform open - https://github.com/skratchdot/open-golang - // } - log.Printf("Listening on %d...", s.Port) - http.ListenAndServe(s.Host+":"+strconv.Itoa(s.Port), http.HandlerFunc(s.handle)) - return nil -} - -func (s *Server) AddEngine(e engine.Engine) error { - name := e.Name() - id := engine.ID(strings.ToLower(name)) - if _, ok := s.engines[id]; ok { - return fmt.Errorf("engine.Engine %s already exists", id) - } - s.engines[id] = e - torrents := torrents{} - s.state.Engines[id] = engineState{ - Name: name, - Config: e.NewConfig(), - Torrents: torrents, - } - go s.torrentsWatch(torrents, e.GetTorrents()) - return nil -} - -func (s *Server) torrentsWatch(torrents torrents, queue <-chan *shared.Torrent) { - for t := range queue { - torrents[t.InfoHash] = t - s.rt.Update() - } -} - -//runs in a go routine -func (s *Server) userWatch() { - //TODO poll engines when users connected - for user := range s.rt.Changes() { - log.Printf("user %+v", user) - if user.Connected { - s.state.Users[user.Address] = user - } else { - delete(s.state.Users, user.Address) - } - s.rt.Update() - } -} - -func (s *Server) handle(w http.ResponseWriter, r *http.Request) { - //basic auth - if s.Auth != "" { - u, p, _ := r.BasicAuth() - if s.Auth != u+":"+p { - w.WriteHeader(http.StatusUnauthorized) - w.Write([]byte("Access Denied")) - return - } - } - //handle realtime client connections - if p := r.Header.Get("Sec-Websocket-Protocol"); p != "" { - s.rt.ServeHTTP(w, r) - return - } - //embedded realtime js lib - if strings.HasSuffix(r.URL.Path, "realtime.js") { - realtime.JS.ServeHTTP(w, r) - return - } - //search - if strings.HasPrefix(r.URL.Path, "/search") { - s.scraperh.ServeHTTP(w, r) - return - } - //api call - if strings.HasPrefix(r.URL.Path, "/api/") { - //only pass request in, expect error out - if err := s.api(r); err == nil { - w.WriteHeader(http.StatusOK) - w.Write([]byte("OK")) - } else { - w.WriteHeader(http.StatusBadRequest) - w.Write([]byte(err.Error())) - } - return - } - //no match, assume static file - s.fs.ServeHTTP(w, r) -} - -//generates the default configuration for all engines -func (s *Server) defaultConfig() []byte { - configs := map[engine.ID]interface{}{} - for id, e := range s.state.Engines { - configs[id] = e.Config - } - b, _ := json.Marshal(configs) - return b -} - -//load a json configuration -func (s *Server) loadConfig(b []byte) error { - - //batch alter configuration - configs := map[engine.ID]json.RawMessage{} - if err := json.Unmarshal(b, &configs); err != nil { - return err - } - - for id, msg := range configs { - e, ok := s.engines[id] - if !ok { - return fmt.Errorf("engine: %s: missing", id) - } - - c := s.state.Engines[id].Config - if err := json.Unmarshal(msg, &c); err != nil { - return fmt.Errorf("engine: %s: replace config failed: %s", id, err) - } - - if err := e.SetConfig(c); err != nil { - return fmt.Errorf("engine: %s: apply config failed: %s", id, err) - } - } - s.rt.Update() - return nil -} diff --git a/ct/shared/torrent.go b/ct/shared/torrent.go deleted file mode 100644 index 69f5678a2..000000000 --- a/ct/shared/torrent.go +++ /dev/null @@ -1,19 +0,0 @@ -package shared - -//cloud torrent specific torrent structs - -type Torrent struct { - InfoHash string //hash of torrent - Name string - Loaded bool - Progress int64 - Size int64 - Files []*File -} - -type File struct { - Path string - Size int64 - Chunks int - Completed int -} diff --git a/engine/engine.go b/engine/engine.go new file mode 100644 index 000000000..92df096f9 --- /dev/null +++ b/engine/engine.go @@ -0,0 +1,208 @@ +package engine + +import ( + "encoding/hex" + "fmt" + "io/ioutil" + "log" + "os" + "path/filepath" + "sync" + + "github.com/anacrolix/torrent" +) + +type Config struct { + DownloadDirectory string + EnableUpload bool + EnableSeeding bool +} + +//the Engine Cloud Torrent engine, backed by anacrolix/torrent +type Engine struct { + mut sync.Mutex + cacheDir string + client *torrent.Client + ts map[string]*Torrent +} + +func New() *Engine { + return &Engine{ts: map[string]*Torrent{}} +} + +func (e *Engine) Configure(c Config) error { + //recieve config + if e.client != nil { + e.client.Close() + } + tc := torrent.Config{ + DataDir: c.DownloadDirectory, + ConfigDir: filepath.Join(c.DownloadDirectory, ".config"), + NoUpload: !c.EnableUpload, + Seed: c.EnableSeeding, + } + client, err := torrent.NewClient(&tc) + if err != nil { + return err + } + e.mut.Lock() + e.cacheDir = filepath.Join(tc.ConfigDir, "torrents") + if files, err := ioutil.ReadDir(e.cacheDir); err == nil { + for _, f := range files { + if filepath.Ext(f.Name()) != ".torrent" { + continue + } + client.AddTorrentFromFile(filepath.Join(e.cacheDir, f.Name())) + } + } + e.client = client + e.mut.Unlock() + //reset + e.GetTorrents() + return nil +} + +func (e *Engine) NewTorrent(magnetURI string) error { + //adds the torrent but does not start it + _, err := e.client.AddMagnet(magnetURI) + if err != nil { + return err + } + return nil +} + +//GetTorrents moves torrents out of the anacrolix/torrent +//and into the local cache +func (e *Engine) GetTorrents() map[string]*Torrent { + if e.client == nil { + return nil + } + e.mut.Lock() + defer e.mut.Unlock() + for _, t := range e.client.Torrents() { + ih := t.InfoHash().HexString() + torrent, ok := e.ts[ih] + if !ok { + torrent = &Torrent{InfoHash: ih} + e.ts[ih] = torrent + } + //update torrent fields using underlying torrent + torrent.Update(&t) + } + return e.ts +} + +func (e *Engine) getTorrent(infohash string) (*Torrent, error) { + ih, err := str2ih(infohash) + if err != nil { + return nil, err + } + t, ok := e.ts[ih.HexString()] + if !ok { + return t, fmt.Errorf("Missing torrent %x", ih) + } + return t, nil +} + +func (e *Engine) getOpenTorrent(infohash string) (*Torrent, error) { + t, err := e.getTorrent(infohash) + if err != nil { + return nil, err + } + if t.t == nil { + newt, err := e.client.AddTorrentFromFile(filepath.Join(e.cacheDir, infohash+".torrent")) + if err != nil { + return t, fmt.Errorf("Failed to open torrent %s", err) + } + t.t = &newt + } + return t, nil +} + +func (e *Engine) StartTorrent(infohash string) error { + t, err := e.getOpenTorrent(infohash) + if err != nil { + return err + } + if t.Started { + return fmt.Errorf("Already started") + } + t.Started = true + for _, f := range t.Files { + f.Started = true + } + t.t.DownloadAll() + return nil +} + +func (e *Engine) StopTorrent(infohash string) error { + t, err := e.getTorrent(infohash) + if err != nil { + return err + } + if !t.Started { + return fmt.Errorf("Already stopped") + } + //there is no stop - kill underlying torrent + t.t.Drop() + t.Started = false + for _, f := range t.Files { + f.Started = false + } + t.t = nil + return nil +} + +func (e *Engine) DeleteTorrent(infohash string) error { + t, err := e.getTorrent(infohash) + if err != nil { + return err + } + os.Remove(filepath.Join(e.cacheDir, infohash+".torrent")) + delete(e.ts, t.InfoHash) + if t.t != nil { + t.t.Drop() + } + return nil +} + +func (e *Engine) StartFile(infohash, filepath string) error { + t, err := e.getOpenTorrent(infohash) + if err != nil { + return err + } + var f *File + for _, file := range t.Files { + if file.Path == filepath { + f = file + break + } + } + if f == nil { + return fmt.Errorf("Missing file %s", filepath) + } + if f.Started { + return fmt.Errorf("Already started") + } + t.Started = true + f.Started = true + log.Printf("prioritze %s %d", f.Path, f.Size) + f.f.PrioritizeRegion(0, f.Size) + return nil +} + +func (e *Engine) StopFile(infohash, filepath string) error { + return fmt.Errorf("Unsupported") +} + +func str2ih(str string) (torrent.InfoHash, error) { + var ih torrent.InfoHash + e, err := hex.Decode(ih[:], []byte(str)) + if err != nil { + return ih, fmt.Errorf("Invalid hex string") + } + if e != 20 { + return ih, fmt.Errorf("Invalid length") + } + return ih, nil +} diff --git a/engine/torrent.go b/engine/torrent.go new file mode 100644 index 000000000..1ac52d585 --- /dev/null +++ b/engine/torrent.go @@ -0,0 +1,94 @@ +package engine + +import ( + "time" + + "github.com/anacrolix/torrent" +) + +type Torrent struct { + //anacrolix/torrent + InfoHash string + Name string + Loaded bool + Downloaded int64 + Size int64 + Files []*File + //cloud torrent + Started bool + Percent float32 + DownloadRate float32 + t *torrent.Torrent + updatedAt time.Time +} + +type File struct { + //anacrolix/torrent + Path string + Size int64 + Chunks int + Completed int + //cloud torrent + Started bool + Percent float32 + f *torrent.File +} + +func (torrent *Torrent) Update(t *torrent.Torrent) { + torrent.Name = t.Name() + torrent.Loaded = t.Info() != nil + torrent.Size = t.Length() + + totalChunks := 0 + totalCompleted := 0 + + tfiles := t.Files() + if len(tfiles) > 0 && torrent.Files == nil { + torrent.Files = make([]*File, len(tfiles)) + } + //merge in files + for i, f := range tfiles { + path := f.Path() + file := torrent.Files[i] + if file == nil { + file = &File{Path: path} + torrent.Files[i] = file + } + chunks := f.State() + + file.Size = f.Length() + file.Chunks = len(chunks) + completed := 0 + for _, p := range chunks { + if p.Complete { + completed++ + } + } + file.Completed = completed + file.Percent = percent(file.Completed, file.Chunks) + file.f = &f + + totalChunks += file.Chunks + totalCompleted += file.Completed + } + + torrent.Percent = percent(totalChunks, totalCompleted) + //cacluate rate + now := time.Now() + bytes := t.BytesCompleted() + if !torrent.updatedAt.IsZero() { + dt := float32(now.Sub(torrent.updatedAt)) + db := float32(bytes - torrent.Downloaded) + torrent.DownloadRate = db * (float32(time.Second) / dt) + } + torrent.Downloaded = bytes + torrent.updatedAt = now + +} + +func percent(n, total int) float32 { + if total == 0 { + return float32(0) + } + return float32(int(float32(10000)*(float32(n)/float32(total)))) / 100 +} diff --git a/main.go b/main.go index 6f8bc72df..d82b6fc70 100644 --- a/main.go +++ b/main.go @@ -3,15 +3,16 @@ package main import ( "log" - "github.com/jpillora/cloud-torrent/ct" + "github.com/jpillora/cloud-torrent/server" "github.com/jpillora/opts" ) var VERSION = "0.0.0" //set with ldflags func main() { - s := ct.Server{ - Port: 3000, + s := server.Server{ + Port: 3000, + ConfigPath: "cloud-torrent.json", } opts.New(&s). diff --git a/server/server.go b/server/server.go new file mode 100644 index 000000000..f3bd13a00 --- /dev/null +++ b/server/server.go @@ -0,0 +1,175 @@ +package server + +import ( + "encoding/json" + "fmt" + "io/ioutil" + "log" + "net/http" + "os" + "path/filepath" + "strconv" + "strings" + "sync" + "time" + + "github.com/jpillora/cloud-torrent/engine" + "github.com/jpillora/cloud-torrent/static" + "github.com/jpillora/go-realtime" + "github.com/jpillora/scraper/lib" +) + +//Server is the "State" portion of the diagram +type Server struct { + //config + Port int `help:"Listening port"` + Host string `help:"Listening interface (default all)"` + Auth string `help:"Optional basic auth (in form user:password)"` + ConfigPath string `help:"Configuration file path"` + //http handlers + files, static http.Handler + scraper *scraper.Handler + scraperh http.Handler + //torrent engine + engine *engine.Engine + //realtime state (sync'd with browser immediately) + rt *realtime.Handler + state struct { + realtime.Object + sync.Mutex + Config engine.Config + SearchProviders scraper.Config + Downloads *fsNode + Torrents map[string]*engine.Torrent + Users map[string]*realtime.User + } +} + +func (s *Server) init() error { + //init maps + s.state.Users = map[string]*realtime.User{} + //will use a the local embed/ dir if it exists, otherwise will use the hardcoded embedded binaries + s.files = http.HandlerFunc(s.serveFiles) + s.static = ctstatic.FileSystemHandler() + s.scraper = &scraper.Handler{Log: true} + if err := s.scraper.LoadConfig(defaultSearchConfig); err != nil { + log.Fatal(err) + } + s.state.SearchProviders = s.scraper.Config //share scraper config + s.scraperh = http.StripPrefix("/search", s.scraper) + + s.engine = engine.New() + + //realtime + s.rt = realtime.NewHandler() + if err := s.rt.Add("state", &s.state); err != nil { + log.Fatalf("State object not syncable: %s", err) + } + //realtime user events + go func() { + for user := range s.rt.UserEvents() { + if user.Connected { + s.state.Users[user.ID] = user + } else { + delete(s.state.Users, user.ID) + } + s.state.Update() + } + }() + + //configure engine + c := engine.Config{ + DownloadDirectory: "./downloads", + EnableUpload: true, + EnableSeeding: true, + } + if _, err := os.Stat(s.ConfigPath); err == nil { + if b, err := ioutil.ReadFile(s.ConfigPath); err != nil { + return fmt.Errorf("Read configuration error: %s", err) + } else if err := json.Unmarshal(b, &c); err != nil { + return fmt.Errorf("Malformed configuration: %s", err) + } + } + if err := s.reconfigure(c); err != nil { + return fmt.Errorf("initial configure failed: %s", err) + } + + //poll torrents and files + go func() { + for { + s.state.Lock() + s.state.Torrents = s.engine.GetTorrents() + s.state.Downloads = s.listFiles() + // log.Printf("torrents #%d files #%d", len(s.state.Torrents), len(s.state.Downloads.Children)) + s.state.Unlock() + s.state.Update() + time.Sleep(1 * time.Second) + } + }() + + //ready + return nil +} + +func (s *Server) reconfigure(c engine.Config) error { + dldir, err := filepath.Abs(c.DownloadDirectory) + if err != nil { + return fmt.Errorf("Invalid path") + } + c.DownloadDirectory = dldir + if err := s.engine.Configure(c); err != nil { + return err + } + b, _ := json.MarshalIndent(&c, "", " ") + ioutil.WriteFile(s.ConfigPath, b, 0755) + s.state.Config = c + s.state.Update() + return nil +} + +func (s *Server) Run() error { + if err := s.init(); err != nil { + return err + } + // TODO if Open { + // cross platform open - https://github.com/skratchdot/open-golang + // } + log.Printf("Listening on %d...", s.Port) + return http.ListenAndServe(s.Host+":"+strconv.Itoa(s.Port), http.HandlerFunc(s.handle)) +} + +func (s *Server) handle(w http.ResponseWriter, r *http.Request) { + //basic auth + if s.Auth != "" { + u, p, _ := r.BasicAuth() + if s.Auth != u+":"+p { + w.WriteHeader(http.StatusUnauthorized) + w.Write([]byte("Access Denied")) + return + } + } + //handle realtime client connections + if r.URL.Path == "/realtime" { + s.rt.ServeHTTP(w, r) + return + } + //search + if strings.HasPrefix(r.URL.Path, "/search") { + s.scraperh.ServeHTTP(w, r) + return + } + //api call + if strings.HasPrefix(r.URL.Path, "/api/") { + //only pass request in, expect error out + if err := s.api(r); err == nil { + w.WriteHeader(http.StatusOK) + w.Write([]byte("OK")) + } else { + w.WriteHeader(http.StatusBadRequest) + w.Write([]byte(err.Error())) + } + return + } + //no match, assume static file + s.files.ServeHTTP(w, r) +} diff --git a/ct/server-api.go b/server/server_api.go similarity index 68% rename from ct/server-api.go rename to server/server_api.go index 80661d3b4..19631586f 100644 --- a/ct/server-api.go +++ b/server/server_api.go @@ -1,55 +1,31 @@ -package ct +package server import ( "bytes" + "encoding/json" "fmt" "io/ioutil" - "log" "net/http" - "regexp" "strings" "github.com/anacrolix/torrent" "github.com/anacrolix/torrent/metainfo" - "github.com/jpillora/cloud-torrent/ct/engines" - "github.com/jpillora/cloud-torrent/ct/shared" + "github.com/jpillora/cloud-torrent/engine" ) -type torrents map[string]*shared.Torrent - -type request struct { - Engine string - URL string -} - -//path matcher -> engine id/action type -var pathRe = regexp.MustCompile(`^\/api\/([a-z]+)\/([a-z]+)$`) - func (s *Server) api(r *http.Request) error { - defer r.Body.Close() if r.Method != "POST" { return fmt.Errorf("Invalid request method (expecting POST)") } - m := pathRe.FindStringSubmatch(r.URL.Path) - if len(m) == 0 { - return fmt.Errorf("Invalid request URL") - } - - eid := engine.ID(m[1]) - e, ok := s.engines[eid] - if !ok { - return fmt.Errorf("Invalid engine ID: %s", eid) - } + action := strings.TrimPrefix(r.URL.Path, "/api/") data, err := ioutil.ReadAll(r.Body) if err != nil { return fmt.Errorf("Failed to download request body") } - action := m[2] - //convert url into torrent bytes if action == "url" { url := string(data) @@ -88,15 +64,22 @@ func (s *Server) api(r *http.Request) error { action = "magnet" } + //update after action completes + defer s.state.Update() + //interface with engine switch action { case "configure": - if err := s.loadConfig(data); err != nil { - return fmt.Errorf("Configure error: %s", err) + c := engine.Config{} + if err := json.Unmarshal(data, &c); err != nil { + return err + } + if err := s.reconfigure(c); err != nil { + return err } case "magnet": uri := string(data) - if err := e.NewTorrent(uri); err != nil { + if err := s.engine.NewTorrent(uri); err != nil { return fmt.Errorf("Magnet error: %s", err) } case "torrent": @@ -106,17 +89,16 @@ func (s *Server) api(r *http.Request) error { } state := cmd[0] infohash := cmd[1] - log.Printf("torrent api: %s -> %s", state, infohash) if state == "start" { - if err := e.StartTorrent(infohash); err != nil { + if err := s.engine.StartTorrent(infohash); err != nil { return err } } else if state == "stop" { - if err := e.StopTorrent(infohash); err != nil { + if err := s.engine.StopTorrent(infohash); err != nil { return err } } else if state == "delete" { - if err := e.DeleteTorrent(infohash); err != nil { + if err := s.engine.DeleteTorrent(infohash); err != nil { return err } } else { @@ -131,11 +113,11 @@ func (s *Server) api(r *http.Request) error { infohash := cmd[1] filepath := cmd[2] if state == "start" { - if err := e.StartFile(infohash, filepath); err != nil { + if err := s.engine.StartFile(infohash, filepath); err != nil { return err } } else if state == "stop" { - if err := e.StopFile(infohash, filepath); err != nil { + if err := s.engine.StopFile(infohash, filepath); err != nil { return err } } else { diff --git a/server/server_files.go b/server/server_files.go new file mode 100644 index 000000000..d70df037b --- /dev/null +++ b/server/server_files.go @@ -0,0 +1,81 @@ +package server + +import ( + "fmt" + "io/ioutil" + "log" + "net/http" + "os" + "path/filepath" + "strings" +) + +type fsNode struct { + Name string + Size int64 + Children []*fsNode +} + +func (s *Server) listFiles() *fsNode { + rootDir := s.state.Config.DownloadDirectory + root := &fsNode{} + if info, err := os.Stat(rootDir); err == nil { + if err := list(rootDir, info, root); err != nil { + log.Printf("File listing failed: %s", err) + } + } + return root +} + +func (s *Server) serveFiles(w http.ResponseWriter, r *http.Request) { + if strings.HasPrefix(r.URL.Path, "/download/") { + //dldir is absolute + dldir := s.state.Config.DownloadDirectory + file := filepath.Join(dldir, strings.TrimPrefix(r.URL.Path, "/download/")) + //only allow fetches/deletes inside the dl dir + if !strings.HasPrefix(file, dldir) || dldir == file { + http.Error(w, "Nice try\n"+dldir+"\n"+file, http.StatusBadRequest) + return + } + switch r.Method { + case "GET": + http.ServeFile(w, r, file) + case "DELETE": + if err := os.RemoveAll(file); err != nil { + http.Error(w, "Delete failed: "+err.Error(), http.StatusInternalServerError) + } + default: + http.Error(w, "Not allowed", http.StatusMethodNotAllowed) + } + return + } + s.static.ServeHTTP(w, r) +} + +//custom directory walk + +func list(path string, info os.FileInfo, node *fsNode) error { + if (!info.IsDir() && !info.Mode().IsRegular()) || strings.HasPrefix(info.Name(), ".") { + return fmt.Errorf("Non-regular file") + } + node.Name = info.Name() + node.Size = info.Size() + if !info.IsDir() { + return nil + } + children, err := ioutil.ReadDir(path) + if err != nil { + return fmt.Errorf("Failed to list files") + } + node.Size = 0 + for _, i := range children { + c := &fsNode{} + p := filepath.Join(path, i.Name()) + if err := list(p, i, c); err != nil { + continue + } + node.Size += c.Size + node.Children = append(node.Children, c) + } + return nil +} diff --git a/ct/search-handlers.go b/server/server_search.go similarity index 94% rename from ct/search-handlers.go rename to server/server_search.go index 5f0cdac0b..daa1e2496 100644 --- a/ct/search-handlers.go +++ b/server/server_search.go @@ -1,4 +1,4 @@ -package ct +package server //see github.com/jpillora/scraper for config specification //cloud-torrent uses "-item" handlers @@ -18,7 +18,7 @@ var defaultSearchConfig = []byte(`{ }, "tpb": { "name": "The Pirate Bay", - "url": "https://thepiratebay.se/search/{{query}}/{{page:0}}/7//", + "url": "https://thepiratebay.gd/search/{{query}}/{{page:0}}/7//", "list": "#searchResult > tbody > tr", "result": { "name":"a.detLink", diff --git a/static/files.go b/static/files.go index 865c04a27..abfe9fecc 100644 --- a/static/files.go +++ b/static/files.go @@ -19,8 +19,8 @@ // files/css/themes/default/assets/fonts/icons.woff2 // files/css/themes/default/assets/images/flags.png // files/index.html +// files/js/config-controller.js // files/js/downloads-controller.js -// files/js/engine-controller.js // files/js/omni-controller.js // files/js/run.js // files/js/semantic-checkbox.js @@ -28,8 +28,9 @@ // files/js/utils.js // files/js/vendor/angular.min.js // files/js/vendor/query-string.js +// files/template/config.html +// files/template/download-tree.html // files/template/downloads.html -// files/template/engine.html // files/template/omni.html // files/template/torrents.html // DO NOT EDIT! @@ -115,7 +116,7 @@ func filesCloudFaviconPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/cloud-favicon.png", size: 5995, mode: os.FileMode(420), modTime: time.Unix(1433047882, 0)} + info := bindataFileInfo{name: "files/cloud-favicon.png", size: 5995, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -135,7 +136,7 @@ func filesCssLatoLato1Woff() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/Lato/Lato-1.woff", size: 35700, mode: os.FileMode(420), modTime: time.Unix(1436482792, 0)} + info := bindataFileInfo{name: "files/css/Lato/Lato-1.woff", size: 35700, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -155,7 +156,7 @@ func filesCssLatoLato2Woff() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/Lato/Lato-2.woff", size: 35896, mode: os.FileMode(420), modTime: time.Unix(1436482792, 0)} + info := bindataFileInfo{name: "files/css/Lato/Lato-2.woff", size: 35896, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -175,7 +176,7 @@ func filesCssLatoLato3Woff() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/Lato/Lato-3.woff", size: 36580, mode: os.FileMode(420), modTime: time.Unix(1436482792, 0)} + info := bindataFileInfo{name: "files/css/Lato/Lato-3.woff", size: 36580, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -195,7 +196,7 @@ func filesCssLatoLato4Woff() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/Lato/Lato-4.woff", size: 36744, mode: os.FileMode(420), modTime: time.Unix(1436482792, 0)} + info := bindataFileInfo{name: "files/css/Lato/Lato-4.woff", size: 36744, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -215,12 +216,12 @@ func filesCssLatoLatoCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/Lato/Lato.css", size: 671, mode: os.FileMode(420), modTime: time.Unix(1436482792, 0)} + info := bindataFileInfo{name: "files/css/Lato/Lato.css", size: 671, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesCssAppCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x84\x54\xd1\x4e\xdc\x30\x10\x7c\xbe\x7c\x85\x8b\x54\x09\x50\xe3\xbb\x02\x2d\x6d\x50\x25\xfe\xa3\xea\x83\x13\xef\xe5\x2c\x1c\xaf\x65\x6f\x08\xd7\x8a\x7f\xef\xda\xce\x1d\x17\x0a\x6a\x5e\x92\x38\xb3\x33\xbb\xe3\x71\xaa\x7b\x33\x78\x0c\x24\xc6\x60\xcf\xcf\xe4\x3a\x42\x47\x06\x5d\x5c\xe3\xe0\x8c\xec\x62\x3c\xbb\xb8\x7b\x17\x43\x18\x02\x38\x8a\xff\xc3\x69\x9c\x9c\x45\xa5\x8f\xc0\x6a\x7d\x29\x7a\x8b\xad\xb2\x22\xd2\xde\x42\x14\xe2\x72\x5d\xed\x68\xb0\x9f\x44\x8b\x7a\x2f\xfe\x54\xab\xc9\x68\xda\x35\xe2\xf3\x66\xf3\xf1\xae\x5a\x0d\x2a\xf4\xc6\x35\x62\xc3\xcf\x5e\x69\x6d\x5c\x9f\x5f\x9e\xab\x4a\x76\xaa\x87\x54\x31\xaf\xd7\x84\x3e\xd5\xf9\xa7\x17\x6c\xdd\x22\x11\x0e\x8d\xb8\x29\xcb\x83\x7a\xaa\x67\x81\xdb\xcd\x61\xa9\x28\xa4\x42\xa1\x46\xc2\x4c\x7e\x3f\x80\x36\x4a\x9c\x9f\x16\x24\x8e\x0b\x16\x14\x7c\x1d\xc5\x17\xf5\x4c\xb7\xec\x86\x3b\x4d\xe8\x67\xa6\x7c\x83\xf1\xe6\xdb\xcc\xb8\xca\xc3\x4b\x32\x64\x41\xa8\x4c\xbb\x45\x47\x75\x34\xbf\x81\x99\xe5\xd7\x2f\x01\x06\x26\x4f\x3c\xd9\xae\xe2\x96\x1c\x46\x02\x9d\xe0\x1d\x5a\x0c\x8d\xe8\x83\xda\x17\x6f\xc0\x5a\xe3\xa3\x89\xe9\xa3\x36\xd1\x5b\xb5\x6f\x84\x71\xd6\x38\xa8\x5b\x8b\xdd\x03\xb3\xe1\x23\x84\xad\xc5\xa9\x11\x3b\xa3\x35\x38\x5e\x9a\x76\x86\xa0\x8e\x5e\x75\xac\xeb\x70\x0a\xca\xf3\x2a\xc1\x13\xd5\x2f\xe8\x03\x77\x56\xfa\xc9\xa3\x76\xd6\x74\x0f\xbf\x72\x1f\x63\x88\xa9\x11\x8f\xc6\x11\x84\xd2\x0b\xeb\xab\xd6\xce\x8d\xce\x00\x0d\x5b\x35\x5a\x12\x1f\x4a\x74\x94\xa3\x82\x35\x1d\xba\x25\xe5\xc2\x88\xab\x64\xc3\x73\xce\x51\xb5\xfa\xf1\xea\xaa\x56\xca\xfb\x39\x58\x15\xe7\xaa\x9a\x0d\x4d\x11\xc1\x68\x52\x26\x1b\x11\xc0\x2a\x32\x8f\x90\x68\x4e\x0d\x3f\x91\xb9\x92\xd7\xc5\xef\x23\x42\x46\x52\x34\xc6\x25\x93\x6a\x23\x5a\xde\x80\x64\x50\xda\xeb\xab\xbc\xff\xc1\xf4\x3b\x3a\xa4\x21\xef\x84\xe3\x78\xe4\x26\x4a\x52\x8e\x91\xbc\x7e\x0d\x91\xed\xc8\x5f\x5c\x96\xc9\x96\x2b\x6b\x7a\x16\xea\xe0\xc5\xcb\xc3\xd1\xab\x77\xa0\x34\x84\x13\xda\xd2\xc3\x9c\xfe\x37\xc7\xfd\xb7\x5a\x6e\x0d\x7b\x25\x0f\xe7\x94\x63\xfb\xee\x88\xf3\x5c\x85\xbf\x9c\xb4\xc5\xf1\xf9\x9e\xdf\x4e\x5c\xdc\xc8\xdb\x39\xb5\xc7\x70\x42\x09\x27\xa5\x34\x48\xea\xac\x16\xd2\xa9\x01\x5e\xcf\x9b\xa5\x16\xc9\x58\x4d\x18\x74\xdd\x06\x50\x0f\x8d\xc8\x37\xc6\xda\x32\xd3\xe8\xf3\x2f\x46\xcc\x0f\xbc\x57\x2c\xbf\xfc\x91\x14\x9f\xff\x06\x00\x00\xff\xff\x0c\x48\x99\xe4\xf3\x04\x00\x00") +var _filesCssAppCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x84\x54\xd1\x6e\xdb\x3a\x0c\x7d\x8e\xbf\x42\xb7\xc0\x05\xda\x62\x56\xd2\xae\x5b\x37\x17\x03\xfa\x1f\xc3\x1e\x64\x4b\x76\x88\xca\xa2\x20\xd1\x4d\xb3\xa1\xff\x3e\x4a\x72\xd2\xb8\x6b\x37\xbf\xc4\x56\xc8\x73\xc8\xc3\x43\x55\xf7\x30\x7a\x0c\x24\xa6\x60\xcf\xcf\xe4\x3a\x9a\x8e\x00\x5d\x5c\xe3\xe8\x40\x76\x31\x9e\x5d\xdc\xbd\x1b\x43\x18\x82\x71\x14\xff\x15\xa7\x71\xe7\x2c\x2a\x7d\x0c\xac\xd6\x97\x62\xb0\xd8\x2a\x2b\x22\xed\xad\x89\x42\x5c\xae\xab\x2d\x8d\xf6\x83\x68\x51\xef\xc5\xaf\x6a\xb5\x03\x4d\xdb\x46\x5c\x6d\x36\xff\xdf\x55\xab\x51\x85\x01\x5c\x23\x36\xfc\xee\x95\xd6\xe0\x86\xfc\xf1\x5c\x55\xb2\x53\x83\x49\x19\xf3\x79\x4d\xe8\x53\x9e\x7f\x7a\x89\xad\x5b\x24\xc2\xb1\x11\x37\xe5\x78\x54\x4f\xf5\x4c\x70\xbb\x39\x1c\x15\x86\x94\x28\xd4\x44\x98\xc1\xef\x47\xa3\x41\x89\xf3\xd3\x84\x84\x71\xc1\x84\x82\x9f\x23\xf9\x22\x9f\xe1\x96\xd5\x70\xa5\x29\xfa\x99\x21\xdf\x40\xbc\xf9\x32\x23\xae\x72\xf3\x92\x80\xac\x11\x2a\xc3\xf6\xe8\xa8\x8e\xf0\xd3\x30\xb2\xfc\xfc\x29\x98\x91\xc1\x13\x4e\x96\xab\xa8\x25\xc7\x89\x8c\x4e\xe1\x1d\x5a\x0c\x8d\x18\x82\xda\x17\x6d\x8c\xb5\xe0\x23\xc4\xf4\xa7\x86\xe8\xad\xda\x37\x02\x9c\x05\x67\xea\xd6\x62\xf7\xc0\x68\xf8\x68\x42\x6f\x71\xd7\x88\x2d\x68\x6d\x1c\x1f\xed\xb6\x40\xa6\x8e\x5e\x75\xcc\xeb\x70\x17\x94\xe7\x53\x32\x4f\x54\xbf\x44\x1f\xb0\x33\xd3\x77\x6e\xb5\xb3\xd0\x3d\xfc\xc8\x75\x4c\x21\xa6\x42\x3c\x82\x23\x13\x4a\x2d\xcc\xaf\x5a\x3b\x17\x3a\x07\x68\xd3\xab\xc9\x92\xf8\xaf\x58\x47\x39\x2a\xb1\xd0\xa1\x5b\x42\x2e\x84\xb8\x4e\x32\x3c\x27\x1f\x55\xab\x6f\xaf\x9e\x6a\xa5\xbc\x9f\x7d\x55\xb1\xad\xaa\x59\xcf\xe4\x10\x8c\x90\x2c\xd9\x88\x60\xac\x22\x78\x34\x09\xe5\x54\xef\x13\x96\x6b\xf9\xb1\xc8\x7d\x8c\x90\x91\x14\x4d\x71\x89\xa4\xda\x88\x96\xf5\x4f\xfa\xa4\x51\x5f\xe7\xf1\x07\x18\xb6\x74\x30\x43\x6a\x28\xd5\x24\xb9\xa9\x1e\x06\xd1\x63\x18\x25\xbb\x80\x12\x52\xf1\xcd\xd1\xa0\x57\x07\xca\xb7\x13\xc0\xf9\x89\x8e\x85\xf6\x6a\x04\xcb\x03\x1d\xd1\x61\x1e\xd6\x5f\x32\x65\x3b\x31\x83\xcb\xd5\xe7\x41\x2a\x0b\x03\xd7\xdf\x99\x97\x09\x1d\x16\xba\xde\x1a\xa5\x4d\x38\x29\xaf\xb4\x36\xef\xd4\x9b\x2a\xfe\x99\x2d\x7b\xe0\x11\xc8\xc3\xf6\xf3\x32\xbc\xab\xdc\x2c\x57\xc1\x2f\xfb\xbb\x58\xca\xaf\xf9\xeb\x64\x38\x1b\x79\x3b\xef\xc2\xd1\xf2\xa6\x58\x9e\x92\xc7\x24\x75\x56\x0b\xe9\xd4\x68\x5e\xf7\x9b\xa9\x16\x7e\x5b\xed\x30\xe8\xba\x0d\x46\x3d\x34\x22\xff\x70\xac\x2d\x3d\x4d\x3e\x5f\x5c\x62\x7e\x61\x0b\x30\xfd\xf2\x7a\x2a\x13\xfe\x1d\x00\x00\xff\xff\x00\xed\x02\x94\x49\x05\x00\x00") func filesCssAppCssBytes() ([]byte, error) { return bindataRead( @@ -235,12 +236,12 @@ func filesCssAppCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/app.css", size: 1267, mode: os.FileMode(420), modTime: time.Unix(1436521621, 0)} + info := bindataFileInfo{name: "files/css/app.css", size: 1353, mode: os.FileMode(420), modTime: time.Unix(1441020402, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesCssSectionsDownloadsCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xe2\xe2\xd2\xcb\xcb\x4f\xc9\x2f\xcf\xcb\xc9\x4f\x4c\x29\xd6\x51\x00\xf2\x4a\x0b\xc0\x6c\x85\x6a\x2e\xce\x92\xd4\x8a\x12\xdd\xc4\x9c\xcc\xf4\x3c\x2b\x85\xe4\xd4\xbc\x92\xd4\x22\x6b\xae\x5a\x40\x00\x00\x00\xff\xff\x2f\x35\x67\x14\x33\x00\x00\x00") +var _filesCssSectionsDownloadsCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x74\x8e\xc1\xae\xc2\x20\x10\x45\xd7\x8f\xaf\x98\xcd\xdb\x59\xd2\xc6\x1d\x4d\xfc\x17\x52\x26\x76\x12\x9c\x69\x60\x6a\x35\xc6\x7f\x17\xaa\xb1\x0b\xd3\xdd\x85\xcb\xb9\x07\x63\x2c\x4b\x90\x85\xa3\xf8\x90\x0f\x50\x4e\xf3\xb4\x66\x78\x98\x3f\xc5\x9b\x36\x3e\xd2\x99\x1d\x0c\xc8\x8a\xa9\x37\xcf\x82\x7c\x01\xb0\x33\xd9\x48\x59\xc1\x0e\x52\x7a\xd6\x8a\x2d\x14\x74\x74\xd0\xb5\xed\xff\xfe\x7b\x52\xbc\xbc\xa9\x24\x71\xb5\xc9\xe4\x07\xd2\xbb\x83\xb6\x2f\xea\xe4\x39\x93\x92\x14\xf5\xa7\x00\x7b\xcc\x80\x3e\x63\x43\xdc\xc8\xac\x75\x7b\x77\xda\x8d\x72\xc5\x04\xa7\xed\x63\x25\x8e\xe8\xc3\x76\xf9\xe3\xed\xea\xe2\x2b\x00\x00\xff\xff\xa8\x07\x45\xbb\x12\x01\x00\x00") func filesCssSectionsDownloadsCssBytes() ([]byte, error) { return bindataRead( @@ -255,7 +256,7 @@ func filesCssSectionsDownloadsCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/sections/downloads.css", size: 51, mode: os.FileMode(420), modTime: time.Unix(1436521506, 0)} + info := bindataFileInfo{name: "files/css/sections/downloads.css", size: 274, mode: os.FileMode(420), modTime: time.Unix(1441029906, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -275,12 +276,12 @@ func filesCssSectionsOmniCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/sections/omni.css", size: 812, mode: os.FileMode(420), modTime: time.Unix(1436521472, 0)} + info := bindataFileInfo{name: "files/css/sections/omni.css", size: 812, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesCssSectionsTorrentsCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x53\xd1\x6e\xdb\x30\x0c\x7c\x6e\xbe\x42\x2f\x7b\x29\x66\x35\x29\x16\x74\xb3\x81\xfd\x8b\x6c\xd1\x36\x31\x59\x14\x28\x26\x4e\x3b\xec\xdf\x27\xc5\xc9\x5c\x27\xde\xd6\x37\x43\xbe\x3b\xf2\x8e\x64\x84\x46\x90\xbc\x16\x62\x06\x2f\x51\xfd\xdc\x3c\x0c\x86\x3b\xf4\x45\x4d\x22\x34\x94\xea\x79\x1b\x4e\xd5\xe6\xd7\x66\x73\x05\x65\x0c\x05\xd3\xa0\xbc\x96\x6a\xab\xbf\xed\xab\xc4\x49\x84\x1e\xb0\xeb\xa5\x54\xbb\x5b\x82\xa6\x00\x7e\xc1\xda\x2d\xf4\x34\xfa\x96\x94\xf6\x66\x80\xcf\x77\xaf\xbd\x89\x7d\xe6\x0a\x9c\xa4\xa0\x23\x70\xeb\x68\x2c\x15\x38\x87\x21\x62\x4c\xb5\xe7\xc7\x1e\xad\x05\x9f\x9e\xc6\x1e\x05\x8a\x98\xca\x41\xa9\x3c\x8d\x6c\x42\xf5\xb7\x92\x59\xbc\x25\x2f\x45\xc4\xb7\x84\xde\xe9\x67\x86\x61\x15\x7d\x6d\xe5\x1d\x7a\xab\x5f\xf6\xf7\xf0\x28\x46\x0e\xe7\x2c\x83\xb1\x16\x7d\x57\x08\x85\x6b\x30\x0f\x16\x63\x70\x26\xa5\x80\xde\xa1\x87\x75\xee\x77\x65\xf1\x98\x15\x6e\xd0\x45\xed\xa8\xf9\xb1\xce\xd1\xc3\x41\xc0\x66\x52\x43\x8e\xb8\x54\x2e\x0f\xa4\x63\xf3\x7a\x83\x6f\x92\x01\x26\x17\xd3\x87\x3b\x0c\x7e\x2e\xf6\xf4\xb8\x68\x78\x9f\xfa\x7d\x7c\xba\x64\x6f\x92\x9a\x2f\x15\x67\xcd\xbb\xfa\x14\x02\x58\xcd\x34\xaa\xab\xe6\x6c\x3e\xa5\x94\xac\x4f\xde\xdf\x2b\x35\x89\x0b\x5c\x7d\x20\x4f\x4b\xa3\x77\x64\xac\x6e\xd1\xc1\x3c\xb5\x40\x11\xf3\xf6\xa6\xa6\xc0\x19\xc1\x23\xac\x6e\xc3\xbf\xa4\x02\x53\xc7\x10\xe3\x52\xce\xd4\x31\x99\x90\x2c\x77\xce\x61\x9b\x3e\x1c\xb4\x32\x7d\x8d\x68\xa5\xcf\xd3\xdc\x7e\xaa\x16\x97\xf0\x92\x2f\xe1\xad\x40\x6f\xe1\x34\x41\xff\x24\xf0\xe5\xec\x7e\xba\xac\xe9\xd7\x7c\x2d\x67\x99\x9a\xd8\x02\xe7\x65\x9d\x36\xe2\xff\x1d\xeb\xda\x70\x6e\x7b\x29\xb4\x6a\x36\x2a\x69\x89\x44\x09\x2b\x99\x37\x78\xbc\x10\x6b\x72\xf6\x76\x0a\x5f\x2f\x53\xf8\x1d\x00\x00\xff\xff\x83\x56\x62\x61\x20\x04\x00\x00") +var _filesCssSectionsTorrentsCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x53\xcd\x6e\xdb\x30\x0c\x3e\x37\x4f\xa1\xcb\x2e\xc5\xac\x3a\xc5\x82\x6e\xf6\xd3\xc8\x16\x6d\x13\x90\x45\x81\x62\xea\x34\xc3\xde\x7d\x92\x9d\x2c\x71\x92\x6d\xbd\x09\xd2\xf7\x43\x7e\xa4\x22\xb4\x82\xe4\xb5\x10\x33\x78\x89\xea\xe7\xe6\x69\x34\xdc\xa3\x2f\x1a\x12\xa1\xb1\x52\xaf\x65\x38\xd4\x9b\x5f\x9b\xcd\x19\x94\x31\x14\x4c\x8b\xf2\x51\xa9\x52\xff\xd8\xd5\x89\x93\x08\x03\x60\x3f\x48\xa5\xb6\xb7\x04\x4d\x01\xfc\x8a\xb5\x5d\xe9\x69\xf4\x1d\x29\xed\xcd\x08\x5f\xef\x6e\x07\x13\x87\xcc\x15\x38\x48\x41\xef\xc0\x9d\xa3\xa9\x52\xe0\x1c\x86\x88\x31\x79\x5f\x2e\x07\xb4\x16\x7c\xba\x9a\x06\x14\x28\x62\xb2\x83\x4a\x79\x9a\xd8\x84\xfa\x6f\x96\x59\xbc\x23\x2f\x45\xc4\x63\x42\x6f\xf5\x2b\xc3\xf8\x10\x7d\x2e\xe5\x0a\x5d\xea\xb7\xdd\x3d\x3c\x8a\x91\xfd\x9c\x65\x30\xd6\xa2\xef\x0b\xa1\x70\x0e\xe6\xc9\x62\x0c\xce\xa4\x14\xd0\x3b\xf4\xf0\x98\xab\xc7\xbd\x80\xcd\x12\x2d\x39\xe2\x4a\xb9\x1c\x6e\xcf\xe6\xe3\x06\xdf\xa6\x62\x98\x5c\x4c\x07\xb7\x1f\xe7\x98\x5f\x9e\x57\xb6\xbb\xe4\xfa\xfc\x72\x4a\xd0\x24\x1d\x5f\x29\xce\x6a\x77\xce\x14\x02\x58\xcd\x34\xa9\x2b\xb5\x93\x56\xea\x35\x35\xb0\x74\x70\xad\xd4\x26\x2e\x70\xfd\x89\x54\x2c\x4d\xde\x91\xb1\xba\x43\x07\xf7\xe3\xbe\x79\x0e\xc0\xed\x69\xd9\x02\x45\xcc\x5b\x9a\xca\x06\x67\x04\xdf\xe1\xe1\xd4\xff\x65\x16\x98\x7a\x86\x18\xd7\x72\xa6\x89\xa9\x4d\xc9\x72\x73\x52\x65\x3a\x38\xe8\x64\x39\x4d\x68\x65\xc8\x53\x2b\xbf\xd4\xab\x8d\x7f\xcb\x1b\x7f\x2c\xd0\x5b\x38\x2c\xd0\x3f\x19\x7d\x9b\xf3\x59\x7e\xd0\xf2\x74\xf9\x15\xb3\x4c\x43\x6c\x81\xf3\x52\x2e\x93\xff\x7f\xc5\xba\x31\x9c\xcb\x5e\x0b\x3d\x6c\x36\x2a\xe9\x88\x44\x09\x2b\xb9\x6c\xea\x74\x22\x36\xe4\xec\xed\x9c\xbe\x9f\xe7\xf4\x3b\x00\x00\xff\xff\xe9\x3f\xce\x99\x09\x04\x00\x00") func filesCssSectionsTorrentsCssBytes() ([]byte, error) { return bindataRead( @@ -295,12 +296,12 @@ func filesCssSectionsTorrentsCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/sections/torrents.css", size: 1056, mode: os.FileMode(420), modTime: time.Unix(1436522214, 0)} + info := bindataFileInfo{name: "files/css/sections/torrents.css", size: 1033, mode: os.FileMode(420), modTime: time.Unix(1441020402, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesCssSemanticMinCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\xbd\xed\x8e\xeb\xb8\x92\x20\xf8\x7f\x9e\xc2\x5b\x85\x8b\xaa\xbc\xd7\xf6\x95\xfc\xed\x4c\x74\xed\x1d\xec\x62\x30\x0d\xcc\xce\x02\x3b\x3b\x40\x5f\xdc\xae\x1f\xb2\x44\xdb\xaa\x94\x2d\x97\x3e\x32\x4f\x9e\xc4\x69\xec\xb3\xec\xa3\xed\x93\x2c\xbf\x24\x45\x90\x41\x8a\xce\x73\xaa\xba\x7a\xce\xdc\xae\xb4\x18\x8c\x08\x06\x83\xc1\x60\x30\x48\x4e\xfe\xfa\xe7\xff\x34\xf9\xf3\xe4\xfb\xc9\xff\x60\x97\xe4\xda\xe4\xe9\xe4\x7f\xfe\xf3\x64\x36\x89\xe7\xf1\x62\xbe\x14\x25\xe7\xa6\xb9\xd5\x8f\x7f\xfd\xeb\x29\x6f\xce\xed\x61\x9e\x96\x97\xbf\x76\xa0\xb3\xff\xb3\x3a\x0d\x3f\xfe\xe7\x3f\x77\xe0\x1c\xfa\xf5\xf5\x75\x5e\x77\x25\x6d\x2e\xab\xf1\x62\x01\xf1\xbf\x95\xb7\xb7\x2a\x3f\x9d\x9b\xc9\x22\x8a\x57\xfc\xe7\xb5\xa9\xf2\x43\xdb\x94\x55\x2d\x8a\xff\x2f\x56\xb0\xa4\x66\xd9\xa4\xbd\x66\xac\x9a\x34\x67\x36\xf9\x3f\xfe\xf9\xff\x9e\x14\x79\xca\xae\x35\x03\x24\xca\x1b\xff\x50\xb6\x55\xca\xe6\x25\xe7\x43\x03\xd4\x7f\xe5\xd0\x8a\xd2\x5f\xff\xd3\x9f\xa7\x8f\xc9\xb1\x61\xd5\xf4\xf1\xc0\x8e\x65\xc5\xde\x0f\xe5\xa7\x59\x9d\x7f\xce\xaf\xa7\xc7\xfc\x7a\x66\x55\xde\x7c\x39\x37\x97\x02\x7e\x3f\x94\x15\xa7\x3b\xe3\x5f\x9e\x8e\x9c\xb5\xd9\x31\xb9\xe4\xc5\xdb\x63\x9d\x5c\xeb\x59\xcd\x6b\x1c\x9f\x66\x97\x7a\xd6\xb0\x4f\x8d\xa8\xc1\x66\x49\xf6\x4b\x5b\x37\x8f\x71\x14\xfd\xe9\x69\xf6\xca\x0e\xcf\x79\xe3\x28\x95\xe8\xc4\xd7\xc7\x78\x75\xfb\xf4\x25\xbf\xde\xda\xe6\x1f\xcd\xdb\x8d\xfd\x93\x80\xff\x79\x0a\x3e\x70\xc9\xe5\x05\xfa\x52\xb3\xa4\x4a\xcf\xe8\xd3\x2d\xa9\xeb\x57\xce\xed\xcf\xef\x1d\xdd\xe4\x76\xe3\x60\xc9\x35\x65\x8f\xd7\xf2\xca\x38\xa7\xe5\x67\xf3\xe3\x97\xa4\xe2\x7d\x52\xb0\x69\x52\xe7\x19\x9b\x66\xac\xe1\xa4\xea\xe9\x31\x3f\xa5\xc9\xad\xc9\xcb\xab\xf8\xb3\xad\xd8\xf4\x58\x96\x42\x74\x67\x96\x64\xe2\x3f\xa7\xaa\x6c\x6f\x53\xce\xd7\x75\x7a\x4d\x5e\xa6\x35\x4b\x25\x70\xdd\x5e\x2e\x49\xf5\xf6\x9e\xe5\xf5\xad\x48\xde\x1e\x0f\x45\x99\x3e\x7f\x49\xda\x2c\x2f\xa7\x69\x72\x7d\x49\xea\xe9\xad\x2a\x4f\x15\xab\xeb\xe9\x0b\x27\x58\xf6\x90\xf9\xb5\xc8\xaf\x6c\x26\x2b\x3c\xbd\x30\xc1\x55\x52\xcc\x92\x22\x3f\x5d\x1f\x0f\x5c\x03\x44\xa9\x42\xc4\xf9\x6e\x7e\xfc\x47\x2a\x14\xa5\x2c\xea\x9f\x1f\x7a\x14\xb2\x91\x67\x26\x94\xe9\x31\xfa\xf2\x8f\x73\x9e\x65\xec\xfa\xf3\xb4\x61\x17\x5e\xdc\x30\x04\xf7\x25\x79\x3f\x24\xe9\xb3\x68\xc6\x35\x7b\x8c\x26\xd1\x53\x5a\x16\x65\xf5\xf8\x7d\x14\xed\x8f\x59\xf2\x24\xfb\x2c\x63\x69\x59\x25\xa2\x61\xba\xce\x63\xc2\x9b\xf9\xc2\x85\xf5\x78\x2e\x39\x8f\xef\x65\xdb\x08\xbe\x38\xb5\xe4\x70\xa8\xfe\xd1\xe4\x4d\xc1\x7e\x7e\xef\x75\xa6\x69\xca\xcb\x63\x7c\xfb\x34\xc9\xf8\x9f\x2c\xfb\x72\x98\x96\xb7\x46\x49\xae\xe6\xcc\x5f\x4f\xef\x52\x09\x5e\x15\xcb\xdb\x28\xfa\x92\x1d\xaf\xea\x5b\xdd\xbc\x15\xec\x31\x6f\xb8\x00\xd2\x2f\x5c\xa4\xcf\x90\xdd\xef\x8f\x47\xc0\x6f\xf4\xa5\xbe\x24\x45\xf1\x3e\x28\xd4\x2e\xfa\xd3\x97\xba\x3d\xf0\xde\xb8\x81\xaf\xdb\xf5\x9f\x9e\xa4\x8c\x3b\x11\x3d\xdd\xca\x3a\x97\xad\xab\x18\x17\x10\x6f\x98\x53\xf0\x02\x53\x53\xde\x1e\x67\xf3\x35\xbb\x08\xdc\xef\xba\x75\xb3\xf9\x42\x7c\xc9\x2f\x27\xdd\x6c\x2e\x8b\xfa\xe5\x24\xfb\xe8\xb1\xe2\x3a\xf3\xf0\x2e\x24\x75\x2c\xca\xd7\x47\xd5\x21\x5f\x94\x42\xbd\xf3\x46\x9d\xf2\xeb\x63\xcc\x2e\x93\x55\xc4\x07\xc0\xb9\x82\xe3\x4e\x74\x2f\xe3\x9c\x8b\x81\xd7\x77\xe9\x8d\xeb\xa1\xe8\x98\xa4\x62\xc9\x80\x36\xe1\xc6\xe2\x4b\x5a\x72\xed\x7d\x3e\x64\x53\x01\x53\x27\x17\xdd\x70\x3d\x5c\x2f\xe5\xb5\xac\x6f\x49\xca\xa6\xfd\x5f\x70\xfc\xf1\x06\x70\x8b\xd3\x70\xfd\x95\xe3\x09\xf4\x12\xb7\x3e\x69\x33\xd0\x54\x32\xd7\xb6\x42\x62\xe8\x7f\xe8\xe6\x44\x1a\xd3\xc0\xde\x4b\x5e\xe7\x87\x82\x75\x14\x14\xca\x77\xa9\x5f\x0d\x1f\x87\x35\xb7\x44\x17\xa5\x5e\x1a\x42\x98\xa0\x09\x18\xd8\xea\x33\x1a\xeb\x7c\xfc\x30\x6c\x22\x78\x97\x5c\xf2\x86\x1c\xfb\xaa\xfe\x53\xda\x56\x35\x67\xfe\x56\xe6\x5c\xb2\x95\x26\xf6\x0f\x3e\x26\x12\xce\x5d\xf6\x33\x24\xdb\x7f\x7c\xd7\x95\x32\x76\x4c\xda\xa2\xd1\x95\x1e\x1f\xa5\x25\x39\x96\x69\x5b\xcf\xf2\xeb\x95\xdb\x03\x59\xcf\xfe\xde\xeb\xc4\xd3\x2d\xc9\x32\xd1\xaf\x91\x32\x74\xef\x50\x11\xaf\x5c\x02\x49\x01\x2d\x60\x7a\x66\xe9\x33\xef\x7a\xdc\xe8\x84\x0f\xfe\x9f\x1d\xc6\xd9\xc0\xaf\x6a\x5c\xdb\xcb\x81\x55\x3f\x73\xbe\xb4\x54\x24\x53\xb3\xfa\x96\x5f\x67\xb0\xc3\x1d\xd0\x7c\x74\x63\xe8\x77\xcd\xb0\xd4\x38\xdb\x1a\x53\xc2\x17\xfd\x7c\xcc\x59\x91\x3d\xd1\xca\x4d\xa0\x19\x18\x50\x1f\x66\xa9\xc0\x54\x10\x1c\xbb\x2a\x0c\x76\xcb\x35\x17\x7c\x91\x3c\x71\x25\xea\x7a\x48\x58\xa9\xba\x2c\xf2\x6c\x52\xe7\x05\x57\xdd\x5e\x9f\x27\x8b\xdb\x20\xdd\xf9\x92\x0f\xf6\xc9\x7c\xb3\x90\xff\xd9\x8a\x91\x5f\xb0\x13\xbb\x66\x54\x47\x37\x42\x87\x3a\x63\xc8\x47\x4e\x91\xdc\x6a\xf6\xd8\xfd\xf1\xa4\x0b\xc4\x60\xd4\xf0\xd9\xb4\x39\xbf\x0f\xf5\x0f\x65\xf6\x26\xb5\xb2\x13\xbb\x98\x36\xe5\xd7\xce\x76\x00\x6a\x4f\x17\xde\x4b\xaf\x79\xd6\x9c\x1f\x97\x0b\x6e\x4e\x9e\x90\xb9\xdc\x8a\x7f\x68\x02\xff\x6f\x49\x53\x4e\x7f\xf8\xaf\x8c\xb7\x55\x18\xbc\xc9\x7f\x67\x2d\xfb\x61\xfa\x9f\xab\x3c\x29\xa6\xfd\xd7\x29\x98\xe6\xf1\x74\x8d\x0c\x69\x3c\x5f\x2e\xb5\x39\xae\x4e\x87\xe4\xc7\x68\x2a\xfe\xcd\x77\x0f\xba\xd2\x85\x9b\xc1\xb3\xe0\x52\xf8\x3f\xdc\xb0\x0a\x7f\xe6\xcb\x39\x9e\x9e\x17\xd3\xf3\x72\x7a\x5e\x4d\xcf\xeb\xf7\xaf\xe2\xcd\x64\x86\x5d\xba\xee\xeb\xba\x9f\x9b\xf4\xf4\xc7\x45\xc5\x7b\x6d\x36\x99\xc7\x1b\xde\x71\x0f\xd1\x24\xae\x06\x40\x02\x60\xa2\x21\x8c\x39\x0a\xf4\xf0\x39\x7e\x17\x62\xef\x28\xf7\xc0\x52\x4c\x02\xd9\x97\xf3\x02\x4c\x40\xf1\x7c\x1b\xaf\xe4\xd7\x25\xfa\xba\xd8\xc9\x8f\x2b\xf4\x31\xda\xc6\xf2\xeb\x1a\x7e\x95\x5f\xe2\xc7\x63\x5e\xd5\xbc\x4d\xe7\xbc\xc8\xb8\x10\xf1\xcf\x25\xfe\xb9\xc2\x3f\xd7\xe8\xe7\x0d\xfe\xd2\x4a\x35\x13\xd3\x9c\x68\xda\x63\x91\x40\x22\xf0\xd7\x12\xfd\x5a\xa1\x5f\x6b\xf8\xeb\x06\x7e\x74\xf8\xf5\xc4\xc9\x67\xb3\x5e\x8d\x85\xa4\xb9\xec\xcc\x6e\xfc\xd2\xb9\x19\xfd\x54\x7f\x58\x1c\x97\x5f\xe0\x70\x2f\x94\xdf\x05\x9c\x83\x99\x06\x4e\x53\xb6\x38\x1e\x49\xb5\xfc\xa2\x0d\xf5\xc7\xab\x7f\xb4\x66\x37\x4d\x98\xfc\xf7\x33\x6c\x50\xdb\x24\x52\x6e\x0c\xa6\xdd\xff\xe6\xab\x07\x3f\x3d\xd4\x5a\x48\x6c\x44\x0c\x77\x53\xa2\x88\x7c\x13\xfc\x73\xbe\x6a\xd2\x93\x10\x9e\xc8\x9f\x48\x07\x1a\x0e\x4b\xae\x59\xbd\x9f\xaa\xad\xae\x72\x95\x1d\xce\xde\x93\xdd\xa7\x2c\x12\xff\x08\xce\x36\x0f\x5f\x67\x55\xfb\x11\x20\xdd\xc8\x89\xf0\xc3\xfb\xb9\x66\xbb\x5b\x6f\x85\x77\x18\x0b\x9f\xf3\x89\x70\x98\xd4\xb7\xfa\x9c\x64\xdc\xcd\x92\x1f\x4c\x53\x85\x46\xd4\x13\x70\xac\x95\xcb\xa1\x10\xa8\xd6\xf3\xe5\xa2\x90\x26\xe5\xf7\x43\x81\xe4\x97\xe4\xa4\x97\x53\x7a\x02\x13\x6e\x49\x5b\x3f\x72\x2b\xb6\xde\x0a\x0b\x28\xe7\x79\xc5\x93\x18\xd8\x7c\x68\xf3\xa9\x55\x32\x7e\xe3\xfa\x70\x6d\xb8\x8f\xc5\xe7\xdd\xa9\x2a\x8b\x26\x52\x9a\xcb\xfd\x74\x15\x4f\x57\xcb\xe9\x3c\x5e\x3f\xc8\xf2\x7e\xf1\xd8\xd6\x62\x92\x94\x2a\x04\x56\x71\xc4\xd7\xda\xfe\x68\x43\x75\x2b\x52\xc1\x8e\x72\xfd\x4b\x31\xff\x36\x6f\xdc\xe8\xd7\x13\xb1\xd2\x9e\x9a\xbd\x3f\x94\x18\x3f\x87\x86\x52\x95\xfb\x6f\x4f\xbf\x2b\xb1\xd7\xbc\x28\xb8\xbd\x4d\xae\xbc\x97\x7e\xf8\x61\x68\x70\x72\x9b\x9d\xb9\x1a\x14\x42\x15\xb4\x56\x83\x3e\x01\xc3\x4b\x9b\x5c\x62\x0c\xec\xc4\x3f\xa7\x2e\xf4\x9d\xce\xa9\x8e\x8c\x60\x45\x62\x32\xcf\x53\xb1\x4e\x50\x22\x79\x9c\xef\xd6\x10\x44\x3a\xd1\x36\x17\x0e\xe4\x36\x57\x3f\xfc\xf0\xbf\xe4\x97\x5b\x59\x35\xdc\xe7\xb8\x47\x25\x45\x89\xc4\xbd\x8b\xa7\xf1\x66\x3b\x5d\x2c\x17\x82\xc0\x00\xb0\xe4\x00\x0b\x1a\x68\xa0\x68\xb5\xc4\xd1\x58\xb5\x9c\xee\x20\xf5\xe2\x1a\xd4\x55\x5f\xc8\x49\x26\xa5\xda\xec\x10\x4e\x68\xf3\xc5\x77\xee\xdc\xb9\x47\xa5\xd1\x42\xc4\x3e\xc1\x65\x16\x89\x7f\xe3\x2a\xe3\xe1\xca\xad\x4b\x58\x76\x2e\xad\xf5\xb2\x10\x88\xdb\xd9\x0b\x3e\xe4\x12\x4f\x51\x26\xc2\x96\x07\xff\x57\x4b\xd2\x8e\x4b\xe0\x75\xa8\x65\xf8\x81\xae\x5b\x63\x1b\x94\x75\xea\x17\x3f\xe9\xc9\x73\xc6\x5e\x38\x44\xed\x34\x8e\x49\x51\x4c\xa2\x7a\x22\xa6\x91\xa4\x9a\xf6\xd6\x6b\x61\x5b\x36\x3f\x24\x12\x86\x96\xaa\x8e\x41\xf6\x6d\x4d\x0e\x7c\xfd\xc5\x57\x9c\x4f\x7a\x75\x28\xd4\x59\xf8\xa2\xeb\xe8\x4f\x4f\x05\x3b\x36\xf2\x8f\xce\xad\x9f\x6f\x56\x7c\xbe\x51\x33\xe6\xa4\xff\xf5\xa4\x16\x40\xb1\x9c\x8b\xf8\xcf\xde\x97\xd4\xbf\xf1\x8c\xb5\x8e\xa2\xaa\xff\xc8\xe7\x2f\x8e\x4d\xad\x00\xa1\x42\x70\xcd\xa7\x98\x97\x71\xd4\xdf\x95\xf7\x7e\x21\x7b\xe5\x3a\x26\x89\x2a\x56\xe4\xfa\x9c\x2f\x49\x3b\xd9\x3f\x8d\x02\x58\x98\x66\x39\x6f\x8c\xfa\x2b\xe5\x5a\x2c\x62\x3a\xc7\xfc\xca\x3f\x3e\x05\x80\x78\x64\xda\x0d\x93\xe3\xf1\x88\x06\x36\xf8\xbb\x5f\x05\x4b\xaf\x44\x8a\xbf\xfb\xa4\xe4\x21\xba\x65\xd4\x54\xa8\x1e\x4a\x0e\x7c\xa6\xcf\xa4\xa1\x35\xba\x4b\x5b\x5f\x6b\x00\x63\x46\x3e\xc1\x11\xf5\xe5\x6f\x9d\x98\x9e\xd9\xdb\xb1\x4a\x2e\xac\x9e\x00\x79\xbe\x1f\xab\xf2\xf2\x8e\x46\x8c\x74\xcb\xaa\xb2\x49\x1a\xf6\x63\xf4\xf0\x44\x7c\xfb\xd2\x94\xee\x2a\xcb\x4d\x94\xb1\x13\x51\x4f\x17\x7c\xf9\xf2\xb7\x3f\x0c\x27\x72\x86\x4a\xea\x3c\x35\x87\x85\x88\x7a\xce\xf3\xab\x70\xac\x59\xf6\x30\x6c\x33\x00\x6d\x40\x83\xeb\x21\x18\x95\x1a\x70\x1a\x13\x1f\x5a\x9d\x6e\x25\x49\x02\x27\xdb\x2e\x72\x07\x26\x51\x3e\xf7\x76\x5f\xf5\x17\x59\xd8\x7f\x43\xb6\x1e\x17\xb9\xbf\x75\x0b\x53\x6c\x96\x89\x19\x22\xcd\xb2\xcc\x36\xcf\x50\x08\xab\x07\xc2\x42\xcf\x97\xd0\x7d\xa1\xe6\x17\xda\xbd\x31\x4a\x08\x33\x0f\x24\xde\xcb\xc7\x6e\x1f\xd1\x67\x83\x37\xa0\x4d\xa2\x32\x0e\x43\x15\x7b\xd6\x32\x22\xdf\xe6\x82\xeb\xc2\xbf\x16\xac\x5b\xf0\xcc\x2a\x15\xe5\x36\x7d\x0c\x4c\x65\x32\xd7\x26\xf6\x1d\x7a\xba\xbd\xaa\x76\x33\x0f\x5d\x55\x87\xa2\x7b\x14\x36\xc7\x3a\x46\x51\x69\xdb\x2b\xec\xb2\xb4\xdf\x22\xe2\xf9\xa4\x19\xa4\x71\xab\x26\xda\xa8\xfb\xa9\x41\xdb\x77\xb1\xf5\x85\xa6\x06\x80\x7a\x26\x4b\x41\x1c\x46\x6d\x37\x04\xd0\x9b\x06\xb5\x97\x98\xe1\xd5\xd6\xe3\x7c\xa9\xe6\x69\x3e\x85\x3f\xf9\x0a\x29\x56\x3a\x6f\xde\x24\x66\x36\x6e\x21\xa2\x97\x9e\xfa\x86\x00\x69\xb1\x77\x1a\x14\x24\x0f\x37\x70\x80\x60\xb8\xf8\xfb\x96\x4f\x2d\x5b\xd9\x17\x3d\xb9\xaa\xd8\xa0\x23\x0d\xf0\xf2\x24\xcd\xb0\xfc\x4b\xec\xe4\xfd\x5d\x98\x75\xb9\xef\xea\x28\x73\x7d\xaf\x86\xf0\xfd\x3d\xd2\x54\x5b\x5f\xbd\xc6\x46\xa1\x78\x5c\xaa\xe1\x6d\x9a\xd0\x13\x4f\xeb\x54\xb1\xa7\xe8\x4e\xde\x88\x96\x8a\x86\x1a\x58\x8e\x49\xc6\x82\x74\x8e\x06\x0c\xd0\xb7\xde\x65\xbe\x4f\xe7\xac\x6a\x0e\xbd\x0b\xe3\xcb\x1c\x74\xf2\xcf\x61\xd5\x60\xf7\x5b\xcd\x25\xcb\x7e\x8c\xcd\xfe\xea\x3f\xdb\x9f\x82\xc5\xd9\x2f\x96\x23\x5b\xeb\xdc\x9c\xf0\xc9\x89\xe6\x45\x14\x50\x1f\x9d\xfc\x84\xda\x35\x24\xa3\xc8\xc9\xd9\x7c\xeb\xe0\x4c\x16\x50\x1f\x47\x39\xa3\x2c\x66\xf4\x1b\xf7\x5c\xe7\x91\x0d\x7e\x82\xe1\x9a\x8b\xd8\x88\xf4\xf8\x8d\x80\xc1\x13\x9d\x6e\xc0\x21\x3d\xab\x59\x8a\x24\xf7\x57\x34\x6d\xb0\x7d\xc0\x17\x52\x9c\xb0\x17\x9c\xda\xeb\x50\x22\xc3\xd5\x7a\x83\xe1\x21\x67\x13\x73\xd5\x72\xef\xb0\x78\x79\x55\xee\xa5\xe5\x9f\x50\x95\xac\xd0\x87\x12\x6a\x78\xc7\x38\xa3\x20\xc7\x24\x65\x87\xb2\x7c\x76\x07\x78\x96\x87\xf5\x76\x9f\xf9\xfa\x32\x34\xf8\xe3\x0c\x39\x51\x9c\x38\xa3\x3d\xcb\xe3\x3a\x4b\x76\x3e\x7e\x48\x74\xce\x00\xcf\x32\x5e\xed\x77\xcb\x51\x7c\xcd\x6b\xde\x70\x37\xdb\x2d\xa7\x55\xb4\x5f\xa4\xe9\x6f\x2f\x27\xcc\x88\x53\x4c\xab\x74\xbf\x4f\x8f\x77\x36\xcb\x27\xa5\x5d\x74\xd8\x8e\xa2\x3b\x95\xe5\x89\xdb\xd1\x5b\xd1\xd6\x9e\x90\xe1\x72\xb5\x5b\x6e\x7e\x7b\x49\xd9\xcc\xb8\x43\x88\x9b\xf5\x72\x35\xae\x04\x04\x46\xa7\xc4\x0e\xe9\x32\x59\xec\x47\x51\x16\xf9\xf5\x99\xf1\xb5\x91\x5b\x5c\xf1\x71\xb7\x3b\xb0\x7b\x11\x39\x9b\xba\x88\xf7\x71\x7a\xb8\x1b\x9d\xb3\x9d\x71\xb2\x5d\xec\xc7\x15\xed\xad\x6c\x9b\xf6\xe0\x09\x24\xa7\x69\xbc\x8b\xbd\xcd\xfc\x36\x5a\x81\x19\x71\x6b\x44\x12\x27\x0b\xef\x14\x46\x61\x73\x4a\x29\x49\xe3\x55\x3c\xae\x0d\x9c\xcd\x26\x39\x55\xc9\xc5\x63\x67\xf6\xdb\xcd\xfe\x77\xb0\x33\x26\x2b\x6e\x4b\xc3\xb6\x2c\xf1\x0e\x67\x1a\x9f\xdb\xd6\xb0\xcd\x6a\xb7\x1a\x45\x78\x93\x71\x0f\x56\x37\x6e\x59\x45\x11\x9f\x05\x7e\x87\xb9\xcb\x64\xc5\x29\xab\x88\x1b\xd1\xa3\xb7\xf3\x68\x7c\x4e\x59\x45\x62\xd6\x19\xd7\xab\x17\xcf\x04\xbf\xfa\xdf\xb7\xf1\x1e\x4d\xa8\xdf\x44\x26\x2f\xa3\x33\xf9\x7a\xb1\xdd\x27\x0b\x40\xd8\xa8\xe7\x6c\xf4\x2a\x5e\x1f\x77\x91\x59\x51\xd5\xfa\xc9\xdc\x85\x03\xfb\xef\x2b\x19\x90\x9f\xc9\x78\xb3\x6f\x79\x46\xec\x7d\x58\x65\xae\xc4\x82\x6e\x0f\x13\xb1\x24\xfd\x75\xc5\x58\xcf\x8d\x64\x63\xa2\xb8\x12\xc0\xff\x48\x8b\xa4\xae\xff\xfc\x4f\xdf\x09\x87\x75\x72\x2c\x4a\xb1\x1a\xf8\xee\x67\x10\xa0\xf4\x43\xd4\xef\xf2\xcb\xa3\x28\x7c\x42\xbe\x2f\x8e\x78\xa9\x64\x56\x88\x4e\x85\x80\xbc\x14\x69\x90\x8e\xa4\x2c\xc5\x54\x22\xc4\x42\x4f\x53\x64\xc5\x73\x49\x36\x30\xec\x8a\x3f\x0d\xbe\x78\x9f\x24\xb1\xde\xed\x17\x3b\x99\x3b\x21\x72\xf4\x4d\x4c\x72\x2f\x80\x40\x07\xbe\xfb\x70\x22\x5c\x68\x7f\x81\xc0\x49\x94\x7b\xf9\x5d\xce\x37\xfb\xcd\x6a\xa1\xa9\x5c\xf2\x6b\x0e\xb1\x82\xdf\x3d\x16\xa2\xa0\xac\x40\x7a\x98\x48\x2f\x13\xbb\x45\x32\x4d\x4c\x3a\x70\xf9\xf5\x0d\xd6\x05\xbf\x31\x52\x5c\x80\x91\x0a\x84\x1c\xed\xa6\x43\x2a\x93\xad\x61\x65\xf8\x01\xa3\x35\x4a\x30\xde\xbd\x64\x75\xb5\xec\xf0\x82\x7a\x14\x2e\x1a\x4b\xdf\xd4\x82\x6b\x14\x0a\xe2\xc3\x0f\x18\x93\x51\x82\xf1\xcd\xb5\x08\x57\x3d\x5b\xf9\x09\xb1\xd1\xff\x34\xd8\x83\xdf\x0d\x94\x0a\xe1\x62\xdf\xa1\x3c\xb7\x98\x55\xf0\x1b\x23\xc5\x05\x06\xd6\x95\x21\xbf\x0b\x1f\x8d\xc6\x46\x06\xfe\x64\xe8\x91\x59\x66\xa0\x37\x75\xc9\x54\x7b\xbf\x9a\xeb\xdc\x25\xb3\xa6\x32\xc0\xce\xfa\xa6\x7d\xde\xf7\xf6\xd9\x34\xa9\x7c\x09\x6d\x6d\x64\x4c\x89\x9d\x0d\x6b\x62\x13\xd3\x93\x77\xed\xbb\x81\xdb\x31\x30\x9f\x6a\x15\x45\xae\x94\xa7\x90\xdc\xac\xb1\x74\x14\xdf\x74\x89\x1a\x65\x87\x5c\xe8\xea\x0e\x66\x2d\x84\x6a\x0a\x76\x0b\x8f\x8a\x2f\x24\xe2\xdf\x48\x08\xe1\x83\x0d\x1e\x4b\x0c\xb3\xf9\x87\x69\x33\x64\x03\x2c\x5f\x81\xb7\x60\x27\xfe\x7d\x8b\x16\x0c\x79\x02\xc1\x59\x34\xa0\x09\xf6\xe6\xa3\xd1\x04\x57\x8a\x0d\x62\x35\x5a\x3b\x78\x45\x59\x50\xee\xac\x2c\x9b\x15\xb7\x52\x04\xa5\xdd\x18\xcc\x51\x7b\x8e\x18\xc1\x37\x54\x90\x89\x63\xdc\x58\xea\xf0\x2d\xbb\xd4\x4d\xd4\xe8\xc0\x81\xa8\x81\x69\x69\xe9\x86\x11\xe7\x9b\x3a\x4b\x28\x3b\x67\x67\x38\x58\x9a\x60\x0f\x63\x32\x66\x28\xf9\x5c\xac\xd7\xd3\xee\x7f\x73\x3a\x19\x8c\x64\xcd\xd2\xa3\x91\x88\xe7\xe0\xb6\x8f\xb1\x45\x85\x32\x3d\x7c\x58\x46\xc2\xc9\x88\x6b\x65\x61\xcb\x01\x0f\xbb\x70\xd6\x6d\x4c\xfb\x10\x89\xba\x6c\x85\xdd\x92\x91\xbc\x3c\xb2\x25\xfe\x85\x70\x58\x33\xb6\x6e\x1d\xf6\x5b\x97\x91\x26\x78\xcd\x0c\x6e\xc8\x96\x48\x77\x0c\x50\x17\x6b\x20\xa1\xb9\xb3\x9f\xf8\xe5\x82\x65\x38\x2a\x44\x4e\xba\x9f\xac\x05\xb6\x22\xe1\xdc\x57\x80\xb8\x61\x62\xb5\xf8\xa0\xb3\xa0\x7a\x06\xc4\xd6\x81\x8f\x7e\x00\x3d\xb4\x23\x01\x12\x6a\x34\x25\x3b\x97\x0a\xb9\xce\xbe\x35\x8e\x95\x4d\xd1\x65\x76\xc8\xa6\xad\xc4\x91\x16\xb1\xde\x81\xf9\x29\x28\xf5\x43\xe6\x5b\x18\xdd\x43\x50\x04\x4e\x24\xc5\xcf\x4f\xd8\x99\x74\x25\x62\x2c\xe6\x6b\xc5\xce\x13\x38\x5d\x65\x67\xf0\x18\x33\x19\x91\x31\xdf\x27\x26\xd3\xfe\x96\xd4\xc0\xde\x53\xc4\x09\xf9\x40\x59\x66\xb1\x9c\x5e\xc4\x3f\x3b\x07\x56\x6e\x18\x3d\x0d\x9b\x55\xc6\xd2\x5b\x4b\x81\x2f\xbd\x81\x1c\xde\xb1\x6c\x7d\xd2\x57\x5a\x6d\x0b\x3f\x84\x8c\x96\xb2\x95\xad\x61\x48\x63\x10\xc1\xf0\x47\x04\xdb\xef\x69\xbe\x5f\x0f\xf4\x91\x76\x3f\x8c\x4a\x44\x0b\x54\x19\x3f\x46\x13\x58\xe7\xb8\xa1\x03\xdf\x4f\x41\xd9\x3f\xb6\x2a\x91\x99\x3f\xbe\x31\xa7\xa5\x6f\xc8\x7a\xb4\x1a\x34\x01\x18\x85\x30\x04\xd2\xee\xd8\xa7\x3a\xc0\x99\x6e\x12\x64\x9c\xea\x70\x16\xcc\x26\x2a\xd5\x66\x84\x2a\x09\x83\x93\x3c\x3e\xd6\x6a\x62\xc8\xde\x81\xd6\xd5\xac\x5e\xf5\xa1\x05\x50\xfb\x8f\x45\x9b\x67\x21\xa3\x6b\x6a\x43\xcb\xf8\x9e\x7f\xc4\x53\xe3\x39\xc0\xd4\x2a\x2c\xf3\xa6\x3c\x89\x7d\x2c\xeb\x30\x42\xdf\x60\x02\x42\x7f\x09\x75\x40\xbe\x5f\x1f\x0e\xd9\x76\x11\x94\xc2\x68\xf9\x22\x94\x9f\xe5\xe4\xdf\x19\x5f\xde\x6c\xd2\x78\x7b\xf8\x10\x9d\x34\xaf\xd2\xb6\x48\x2a\xda\x57\x88\xa3\x2e\x6e\x88\xc1\xb4\x6e\x68\x3b\xc0\x75\xdb\x75\xd5\x80\xa8\x9b\x34\x4d\x92\x9e\x87\x2c\x0b\x6c\x5d\xfa\xa0\x48\xe0\xb2\x09\xc9\xd9\xb6\x14\x3d\x31\x3e\x0e\xe9\x36\x11\xb6\x7b\x62\xd4\x55\x43\xd4\xe1\x3e\x4d\x08\xf3\x8f\xab\x0b\x95\x35\x1b\x8b\x0e\xf4\x59\x4e\x12\xd6\x67\x79\x16\x1b\x5a\x54\x15\x76\x0e\x98\x92\x31\x1f\x2a\x18\xef\x63\x04\x0d\x32\x8b\xac\x0c\xb0\x07\x4c\x7d\x5f\xcc\x90\xa6\xed\x3c\x81\x88\xbd\x4e\x85\x5f\x0e\xce\xca\xe0\xbd\x7c\x9e\xe5\xd7\x8c\x7d\x7a\x5c\x9a\x28\xdd\x07\x2c\xec\x89\x87\x4c\xe2\xef\xcf\x32\x94\x15\x71\x9a\xc1\x1e\x52\xe4\xca\x01\x4d\x69\x22\xf6\xbd\x5e\xf7\x87\xae\x95\x0c\xc1\xe7\xee\x08\x84\x8e\x1e\x0e\x67\x20\xba\x0f\xf8\x84\x70\xf7\x95\xca\xa9\x26\x0e\x3b\x9a\x87\x23\xc3\x0e\x20\x99\x62\xfd\x47\x96\x34\x89\xbc\xd2\xe6\xe7\x4e\xc2\x9d\xa0\xb8\x16\x55\x3f\xf6\xc5\x0f\x83\xa9\x47\x3d\xad\xfd\x6c\xc3\xa8\x58\x70\x3a\xe3\x1d\xdd\xd9\x32\xe8\xe9\xc0\xd3\x3b\xb0\x06\xc6\xd8\x26\xa0\xad\x64\x26\x2f\x14\x3a\x2c\xee\x05\x04\xc7\xbc\x4d\x36\xfa\x99\x4b\xa4\xc7\x76\x38\xf8\xcc\x65\x35\xa1\x3b\x19\x2e\x5c\x61\xd7\xc8\x45\x06\x68\x1c\xb3\x6f\xcd\x43\x4d\xfa\x77\x60\x74\xb7\xd8\xc1\xa4\x6a\x9d\x5f\x02\x72\x98\xd8\xcd\xa7\x0d\x68\x10\xe6\x00\x09\x18\x0e\xca\x7d\x68\x3d\x62\xa0\x70\x4a\xef\xc5\x2b\x02\x65\x13\x28\x19\x50\x66\x34\x00\xf1\x68\xfe\x9f\x9f\x58\x74\x27\x15\xfb\xc2\x03\x37\x11\x4a\x42\xca\x1b\x24\x69\x4c\x43\x80\x8c\x11\x3e\xeb\x4e\x16\xb8\xc7\xd4\xdd\x7c\x7c\x44\xa2\xb4\x3c\x43\x88\xdc\x27\x50\x63\x62\xd7\x3e\xa1\xb4\xae\x53\xcb\xce\xda\x5f\x7e\xa2\x3d\xae\x61\xf5\x26\xb1\xfe\xeb\x72\x81\x50\x34\xaf\x65\xaf\xc6\x6e\xd0\x9f\xa0\x53\x0f\xaa\xf4\x34\x55\xd5\x75\x5f\x73\x89\x89\x9c\x2b\xc6\xdc\x64\x96\x34\x19\x58\xc9\x20\xc4\xab\x2c\x97\xcb\xae\xfe\x0a\x0b\xa5\x6c\x2b\x37\xad\x15\x49\x0b\xd6\x31\x48\x2d\xd6\x5d\xd5\x35\x26\x03\x76\x20\x6d\x32\x6b\x9a\x0c\xa8\x63\x92\xe9\xab\x6e\x10\x99\x3a\xff\xe4\xa6\xb2\x21\xa9\x80\x2a\x06\x91\x78\x33\xdf\x6c\x36\x5d\xed\x2d\x26\x24\x0e\x5a\xb9\x49\x6d\x69\x52\xb0\x92\x49\x6c\x25\xd4\xb9\xab\xbf\x43\xc4\x18\xf0\x55\x09\x62\x3b\x92\x18\xaa\x64\x12\xe3\x5e\x65\x57\x7b\x8f\x48\x5d\xb9\xdf\xe5\xa6\xb4\x27\x29\xc1\x3a\x26\xa1\x78\x1e\xc7\x5d\xed\xf8\x5f\x97\x11\x56\x74\x9f\x08\x21\x34\xd6\x74\xb7\x0c\x61\xe5\x18\x8b\xb0\xf0\x77\x18\xac\x80\xc5\x58\x78\x3a\x6d\x3f\x8f\xf6\x00\x83\x69\x2b\xc4\x3d\x20\x5e\x92\x2e\x8b\x01\x2b\x1a\x24\x77\x62\x28\xeb\xb1\xac\x0c\x9a\x19\xfe\x9d\xba\x8b\xbc\x46\xaf\x3f\x02\x23\xf8\x72\xd5\xec\x4d\x9a\x13\xb5\x76\xda\xa1\x71\xf3\x23\x93\x86\x6b\x0c\x9d\x69\xc2\xbc\x28\xa5\x7d\x1a\xc3\x08\x2d\x95\x1f\x9b\x30\x43\xa3\xd8\x80\x95\xf1\x62\x13\xe6\x66\x0c\x99\x69\x78\xfc\x08\xa5\x7e\x8e\xa2\x34\xcc\x8b\x17\xa5\x32\x1d\xa3\x28\x91\x11\xf1\x22\x94\x16\x62\x14\x9f\x65\x2b\xfc\x7a\x13\xd2\x6a\x3c\xbe\xfd\x8d\x2e\x82\x04\x69\x0d\xf9\x91\x91\x22\x87\xf2\x18\x52\x38\xa8\x0f\x05\x5f\x6f\x43\x1c\xf0\x83\x67\x03\xf8\xfb\xf8\x10\xa7\xf1\x07\xd2\x5c\x2d\xaa\xf6\x86\xf9\x48\x82\x03\xa8\x0b\x37\xfc\x28\xbe\x9d\x61\xba\x71\xee\x6d\x5a\x30\x72\x49\x12\x73\x27\xcc\x26\xfc\xdf\x78\xfa\xbb\xc2\x4a\x6c\xc7\x02\x6a\xe6\x0e\xa6\x9b\x29\x3f\x1e\x6b\x2b\xd4\xcd\xfc\x31\x3a\xc6\xe3\x49\xe9\x7a\xbf\xd3\x52\x27\xeb\x33\xdc\xa0\x74\xed\xfe\xfa\x6e\x88\x19\xc9\xad\x72\x30\x63\x27\x9e\x04\xe9\x8b\x91\xd6\x45\x6f\x01\x2b\x65\x72\x9c\x7f\xd2\xa5\xe3\x0c\xda\xe9\x46\x5e\x25\x23\x39\x51\x8a\xe6\xe2\x44\x95\x7a\x38\x71\x66\x0d\x79\x14\xe7\x5e\x61\x7d\x84\xc5\xde\x8c\xd9\x52\x93\xf7\xe1\x82\xf5\xe2\x03\x5e\xcc\xd9\x87\xf7\x4c\x05\x25\x4b\xc2\x32\x5f\x1c\x2d\xcc\x56\xfc\xdf\xda\xd5\xc2\x2e\x73\xdc\xa0\x6b\x8b\x9e\x64\x0c\xa8\xb1\x8b\xf1\x40\x4c\xa3\xa9\x52\xb2\x2d\x7c\x9e\xf0\x1c\xb8\xec\x0f\x4f\x2c\x97\x23\xcd\xb3\x75\x7c\x84\x29\xaf\x9a\x2f\x62\xf1\x2f\x80\x31\x05\x38\xc6\x9b\x99\xeb\xe9\x29\xc7\xb9\xae\xce\x36\x80\x1a\x1f\xd0\xa0\x80\xcc\x28\xf7\x2e\x12\xc9\xfc\xb8\x4e\xd0\x89\x9b\x7e\x49\xdc\x85\xd5\xd0\xb7\x00\xf9\xdd\xa1\xc8\x16\xf7\x77\xa8\xf3\x7d\x92\x1c\x57\x64\x4f\x6e\x60\x78\x23\x3e\xa2\xfe\xee\x0d\xcc\xa2\x35\xfc\x80\xd6\xca\xdd\x26\x0f\xe1\xee\x96\xa9\x77\xe2\xf7\x7a\x78\x2d\x95\x9c\x18\xe6\xe0\xb5\x54\x42\x17\xc1\xb4\xfb\x78\xd8\x7a\x97\xa4\xe3\xc7\xc3\x20\x25\xe4\x48\x11\xa4\xdc\x27\xc7\x96\xdb\x28\x59\x87\xd1\xa2\x7c\xb2\x9e\x96\xd7\xb5\x6b\x5d\xbb\xe0\x63\xe5\x1e\xc6\xd7\xdb\x4d\x32\x7e\x2e\xac\x9b\x74\x5b\xd2\x31\xa0\x34\xe9\x37\x77\xeb\x48\xfd\x70\x32\xf4\x31\xa7\x4e\xa9\x90\x6b\x90\xa9\xd2\x51\xf6\x08\x9f\xce\xa3\x5a\x0e\x93\x25\xd4\xcb\xc5\x87\x2a\x75\xf3\xe1\xf6\xe8\x9c\x0a\x73\xaf\xa0\x3e\xc2\xa0\xe9\xd0\x0d\x12\xbb\xdf\x9f\x6b\x5d\x53\x44\x88\x91\x1b\xf7\xe6\xd6\xab\x74\xe7\xbc\xdc\x40\x97\x12\x2c\x79\x27\x2f\x4a\x7f\x1d\x8c\x87\xe1\x09\x73\xe6\x1c\x4d\x21\xd2\x68\x24\xa0\xc7\x6d\x22\x35\xdc\xcf\x98\x5f\xc9\xa3\x43\x16\xc4\x99\x02\x1c\xe1\xcc\xe3\xcf\x19\xc5\x4e\x77\x0e\x35\xe0\x8f\xe1\xcd\xf5\xac\x8f\xaa\xc4\xa8\x2f\x67\x4b\xe1\x1e\x9c\x23\x9e\x9c\x2d\xba\x70\x1d\x0e\xf5\xe3\x42\x06\x65\x80\x24\x47\x75\xf8\x0e\x5f\xce\xd9\x8e\x8f\x28\xbe\xaf\x21\xa7\x8a\x31\x94\xc7\x07\x3f\xf8\xfc\x39\x95\x1c\xf7\x41\x7f\x0e\x12\xb9\xd7\xa1\x83\x75\x81\xce\x90\x7c\x8f\x24\xd6\x8d\xdf\x96\x01\x69\x81\x9e\xa2\x89\xb9\x4f\x7b\x6f\x12\xb6\x1e\xbf\x60\x42\x61\xb5\xf5\x1b\x52\xf3\xb8\x75\x06\x53\x7e\x3c\xe1\x8e\xdd\x6a\x7f\x58\x6f\xbc\x1d\x0d\xdc\x04\x4b\x9d\xec\xcf\xbf\x9f\x6b\xe7\xd0\x14\x0f\x4b\x1f\x73\xee\x94\x32\xb9\x86\x9d\x99\xc3\xe9\x62\xd0\xf2\xee\xfc\x4a\x46\xbb\x99\x52\xd1\x9c\x6e\xa6\x2c\xf5\x70\xe2\xf2\xef\x7c\x8a\x73\xb7\x27\xfc\x01\x16\xb1\x83\x87\xa4\x76\xaf\x87\x67\x29\x28\x59\xf2\x55\x3e\xde\x82\xa5\xe9\x2a\x72\xb5\x50\x95\x52\x4c\x79\x26\x36\x87\x26\xbb\x78\x0f\xc4\x14\xe6\xe7\x39\x9a\x43\x84\xc7\x24\xa0\xd3\x9b\x72\x29\xfb\x08\x6b\xfe\xd8\xc5\x36\x39\x2e\xb7\x21\xbc\x49\xc0\x31\xde\x9c\xae\x9e\x5d\xee\xf0\xf5\xcc\x36\xfc\x11\x9c\x3d\xc8\xfc\xb8\x66\x8c\xb8\x7b\xa4\x24\xee\xc2\xea\x75\xf8\x48\xf9\xdd\xa1\xce\xa1\x2e\x5f\xc8\x18\x0d\x91\xe7\xb8\x3a\x07\x3b\x7d\xbe\xa6\x7c\x64\x10\xf8\xda\x52\x56\xe2\x42\x62\x28\x51\xf4\xc5\xe7\xf7\xb1\x68\x7b\x58\x7b\xef\x19\xf3\xf8\x7d\x88\xca\xbd\x8e\x1f\xaa\x0c\x94\x87\x66\xdd\xfd\x42\xc8\x62\xb7\xde\x8c\xef\x40\x62\x6a\xa0\xc3\x1c\xe4\xdc\xcf\x2f\x1c\x36\xab\xe5\x78\x44\x4f\xa3\xb5\x75\x1d\xd1\xf3\xb8\x7f\x26\x5f\x23\x98\xc2\x1d\xc0\x2c\xdd\x24\xcb\x80\xdd\x6d\xa9\xb0\xb6\x66\x11\xdf\x7f\x3f\x17\xd0\xa5\x33\x3e\xa6\x3e\xe6\x04\x2a\xb5\x72\x8d\x42\x55\x1a\xc0\xa2\xe5\x05\x8e\xa8\x1b\xbd\x67\x28\x55\xce\xc5\x8b\x2a\xf5\xf1\xe2\xf2\x03\xbd\x0a\x74\xaf\xc0\x3e\xc2\x24\x76\x04\xb1\xe4\xee\xf5\x04\x6d\x4d\xa5\x8b\xbe\xca\x17\x3c\x1e\x77\xeb\xd8\xb9\x34\x50\xa5\x24\x5b\x9e\x39\xcf\xa5\xd3\x4e\xf6\x43\x71\x85\xf9\x83\x8e\x26\x51\x27\x6d\x04\xa0\xd3\xe7\x72\xea\xfd\x18\x73\x5e\xd5\x3f\x6e\xb6\xcb\x28\xc4\x5b\x55\x80\xa3\xdc\x39\x5d\x42\x02\xc0\xe1\x13\x5a\xcd\xf8\x23\x38\x85\x88\xfd\x00\x05\x19\x71\x0b\x69\x69\xdc\x87\xd7\xeb\x18\xd2\x42\xbc\x47\xb3\x43\x5d\xc3\x90\x21\x1b\x24\xd5\x00\xcd\x0e\x76\x0e\xbd\xad\xf9\xc8\x80\xf0\x35\xe7\x96\x5f\x51\x52\x0b\xf8\xed\xf3\x0c\xb3\xfd\x6a\xbf\x4f\x3e\xe8\x19\x02\x1a\xf7\xfa\x85\xa0\x2a\xd0\x1c\x8a\x69\xf7\x55\xa9\xe9\x7a\x93\xc4\x21\x97\x5a\x52\xc9\x27\x24\x29\xb7\x3b\xb5\x58\xa4\x3b\xaf\x98\x06\x5a\xb6\x7e\x03\x5a\x1e\x5f\x10\x73\xe4\xc5\x72\x87\x1f\xb8\x5e\xae\x76\xe3\xb7\xf8\x2a\xd5\x34\x75\xc8\xfa\xfa\xfb\xf9\x80\xb4\x7e\xb8\x19\xfa\x98\xff\xa7\x54\xc8\xe9\xce\xc8\xd2\x51\xf6\x2c\xef\xcf\xab\x5a\x34\x1f\x52\xbd\x9c\x7c\xc8\x52\x37\x1f\x2e\xcf\xcf\xa3\x30\x77\x0b\xea\x03\x0c\x62\xbf\x0f\x4a\xec\x5e\xaf\xcf\xd4\x4b\xaa\xe0\x6b\x3d\x3e\x96\x39\xe3\x9b\xaa\x94\x60\xc9\x33\x93\xd1\xfa\xeb\x60\x3c\x0c\x4f\xb0\xa7\x47\x35\x85\xf4\xf4\x38\xa0\xd3\x97\x72\x68\xb8\x9f\x31\xff\xa4\x76\xdc\x24\x44\x52\x24\xc5\x99\x00\x1c\xe1\xcc\xe9\xe3\x59\xc5\x0e\x0f\xcf\x68\xc0\x1f\xc1\xbf\x03\xac\x8f\xaa\xc4\x88\x6f\x47\x49\xe1\x1e\x9c\x5e\xbf\x8e\x12\x5d\xb8\x0e\xdf\xe1\xd3\x8d\x0e\xca\x00\x49\x8e\xea\x70\xb0\x3f\xe7\x69\xc7\x47\x14\xdf\xd7\x90\x5b\x5b\xdd\x0a\x3c\xfb\xc3\x2f\xde\x3d\xde\xcd\xea\xe8\x77\x55\x7c\x1e\x1d\xa4\x72\xb7\x4f\x07\x2b\x43\xaf\x8e\x64\xdd\x7d\x3f\x77\xba\x5e\xef\x03\xee\x61\x47\xd4\xa0\x1f\x45\x93\x73\xef\x95\xee\x56\x8b\xed\xf8\x23\x0c\x1a\x2d\xe1\x97\x41\x7a\x3e\xff\xce\xe0\x6b\x04\xd3\x1d\x9b\xbd\xe9\x6a\xb3\x1d\x77\x4e\xf5\x3c\x6c\x69\x16\xf1\xfd\x77\xf4\xf3\x1c\x3a\xe3\x63\xea\x63\xbe\x9e\x52\x2b\x67\x9e\x85\x2c\x0d\x60\xd1\xf6\xf6\xfc\xea\x46\xef\xa7\x4a\x95\x73\xee\xa7\xca\x52\x1f\x2f\x4e\x8f\xcf\xa7\x40\x77\x6f\xfa\x7e\x80\x49\xc3\xe7\x43\x92\xbb\xdb\xeb\xb3\x34\x95\x2e\xfa\x2a\xcf\x2f\xcd\xd2\x8d\x3b\xfb\x46\x95\x92\x6c\xf9\xe6\x3b\x87\x4e\x3b\xd9\x0f\xc5\x15\xe6\x01\x3a\x9a\x44\x3c\x7d\x22\x01\xf1\x21\x25\x4f\x17\xd0\x73\xe2\x07\xb4\x3f\x61\xc9\x22\x88\x41\x05\x18\xc2\xa0\xdb\x1b\xb4\x01\x5c\xfe\xa0\xd9\x92\x3f\x84\x47\x08\xd9\x0f\x50\x93\x31\xaf\x90\x94\xc6\x7d\x78\xfd\x9e\x21\x29\xc4\x7b\xf4\x3b\xd4\x3b\x0c\x19\xb8\x41\x52\x0d\x50\xee\x70\x0f\xd1\xd7\x9a\x8f\x8c\x09\x5f\x73\x2a\x86\xee\x6f\x1e\x7e\xfa\xe3\x7d\x7c\xa6\xfb\xc0\x33\x3e\x06\xc5\x7b\x5d\xc3\xa1\x26\xd0\x1a\x82\x63\x4f\xb0\x6f\xb3\xdb\x8c\x3f\xbf\x06\xe8\x80\xfe\xa1\x08\x79\x42\x7d\xcb\xe3\x72\x3c\xef\x4f\xe0\xb4\xf5\x7a\xa0\xe4\x71\x04\x11\x3b\x3e\x1c\x77\x84\xf9\x56\xab\xed\x6a\xfc\x9d\x34\xa5\x8f\x86\xe2\x98\x1f\x7f\x3f\xe7\x8f\xd4\x0a\x27\x3b\x1f\x0d\xf1\x09\xc5\x71\x87\xf8\x44\xe9\x18\x73\x96\xcf\xe7\x53\x28\x47\xfc\x4c\x28\x95\x3b\x7e\x26\x4a\x9d\x5c\xb8\xbc\x3d\xb7\xa2\xdc\x1f\xde\xbb\x9f\x3d\xec\xea\x01\x69\xdd\xeb\xe7\x19\xea\x48\x7c\xff\xca\xd8\xde\x66\xbf\x66\xee\xd5\xb7\x28\xb5\x19\xf2\x4c\x59\xa4\xd6\xd2\x5c\x07\x61\x09\x8d\xeb\x91\xcd\x20\xa3\x67\x1c\xd0\x19\x3d\xa3\xd5\xda\xcb\xd6\x48\x70\x63\xb5\x5b\xda\x91\x61\x8a\x2f\x01\xe8\xe7\xcb\xe9\xc6\x99\xa5\x0e\x1f\x0e\x73\xff\x47\x70\xe0\x06\xc6\xc7\x74\x61\xc4\x75\x23\x24\x70\x07\x46\xaf\xd3\x46\x48\x2d\x58\x71\xc3\x83\x79\xe3\xa3\x70\x5c\x86\x63\x8a\x1b\xec\xa8\xb9\x1b\xf1\x11\x65\xf7\xb5\xa2\x61\x09\x7a\xd2\x0a\xfc\xf6\xf9\x69\x51\x74\x58\x27\x1f\xbd\x5b\x05\xd0\xb8\xd7\x51\x03\x55\x81\xaa\x50\x4c\x7b\x1e\x1b\x4c\x57\x87\xf1\x43\xa5\x90\x12\xe8\x22\x92\x94\xd3\xef\x89\xa2\x7d\xbc\x1b\x3f\x12\x22\x91\xda\x3a\x0d\x68\x79\xdc\x35\xcc\x91\x17\x4b\xb8\xc3\xc6\x19\x4f\xf7\x01\x47\x86\xa5\x6a\x9a\x3a\x64\x7d\xfd\xfd\x5c\x36\x5a\x3f\xdc\x0c\x7d\xcc\x69\x53\x2a\xe4\xbc\x21\x44\x96\x8e\xb2\x67\x79\x6d\x5e\xd5\x72\xf0\x21\xd4\xcb\xcd\x87\x28\x75\xf3\xe1\xf2\xdb\x3c\x0a\x73\xbf\xa0\xee\x67\x10\x3b\x6e\x50\x62\xf7\x7a\x6e\xa6\x5e\x52\x05\x5f\xe5\xbb\x6d\xb2\xa3\xfb\x59\x71\x5d\x4a\xb0\xe4\x99\xbd\x68\xfd\x75\x30\x1e\x86\x27\xcc\x7f\x73\x34\x85\x38\xe5\x26\x01\x7d\x41\x2f\x87\x92\xfb\x79\xf3\xc7\xa3\xf7\x81\xcc\x29\xc0\x71\xe6\x9c\x8e\x9c\x55\xec\xf0\xe4\x8c\x36\xfc\x11\x5c\x39\xc0\xfa\xa8\x62\x8c\x38\x73\x94\x14\xee\xc1\xe9\x75\xe7\x28\xd1\x85\x6b\x72\xa8\x43\x17\x32\x34\x03\x24\x39\xaa\xc6\xc1\x2e\x9d\xa7\x1d\x1f\xd1\x7d\x5f\x43\xde\x58\x51\x94\xaf\x50\x9a\xe8\x8b\xcf\xaf\x3b\x2e\xd2\x4d\xec\x8d\x2e\x79\xfc\x3a\x44\xe5\x5e\xcf\x0e\x55\x06\x7a\x43\xb3\xee\xf4\xee\x8e\xcb\x34\x59\x8c\x1f\x2c\xc0\xd4\x40\x7f\x39\xc8\x39\x1d\x25\x16\x1d\x56\x51\x30\x3d\x5b\xcf\x11\x3d\x8f\x97\x67\xf2\x35\x82\x29\xdc\xd3\x63\xc9\x21\x8d\x42\x33\xf0\x6c\xcd\x22\xbe\xff\x7e\xde\x9e\x4b\x67\x7c\x4c\x7d\xcc\xe3\x53\x6a\xe5\x5c\x59\xc9\xd2\x00\x16\x2d\x9f\x6f\x44\xdd\xe8\x53\x21\x52\xe5\x9c\xa7\x42\x64\xa9\x8f\x17\x97\xdf\xe7\x55\xa0\xbb\x8f\xae\x7c\x80\x49\xec\xf9\x61\xc9\xdd\xeb\xfb\xd9\x9a\x4a\x17\x7d\x65\xec\x8e\x2d\x62\x4f\x0a\x90\x28\x25\xd9\xf2\xcc\x77\x2e\x9d\x76\xb2\x1f\x8a\x2b\x34\x8e\x47\x36\x89\x8a\x97\x09\x40\x9f\xab\xe5\x54\xfd\x31\xfe\xfc\x31\x8e\x24\x4b\xc2\x0e\x63\x48\xc0\x10\x06\x9d\xde\x20\x01\xe0\xf0\x07\xad\x96\xfc\x11\x3c\x42\xc4\x7e\x80\x9a\x8c\x78\x85\xb4\x34\xee\xc3\xeb\xf5\x0c\x69\x21\xde\xa3\xdf\xe1\xe1\xbe\xf1\x81\x1b\x24\xd5\x00\xe5\x0e\xf6\x10\xbd\xad\xf9\xc8\x98\xf0\x35\xe7\x56\x71\xe7\xad\x42\x6f\xe4\xe3\x4f\x3e\x2f\xf1\xab\xee\xdd\xc3\x64\xee\x4e\xe2\x43\xb5\x61\x16\x1f\xcd\xfd\xd7\x5e\xc0\x67\xd0\x83\xf9\x72\x0e\x82\x4e\x4f\x2b\xf0\x1a\xbe\x0e\x2f\x91\x7f\x67\x52\x74\xcd\xd0\x77\xde\x9f\x57\xb3\xb4\xbc\x66\x86\x36\x98\x1f\x7d\xfa\xf0\x55\x37\x6d\x9b\x84\xee\xd5\x08\xb3\x3e\xd0\x09\x67\x1b\x9c\x5a\xb1\x58\x2c\x56\x8b\xf1\x3e\xb2\x68\x02\xbd\x70\x13\x75\x47\x5b\xc3\x6e\xdf\x1e\x30\xdb\xba\x41\x50\x1d\xd3\x8e\xc0\x6b\xb3\xd5\x2b\x6a\x86\x26\xe2\x6f\xde\x7c\x5f\xf3\xc1\xc3\x0f\x5a\x0d\x4c\xf1\x6e\xb3\xd1\x55\x27\x46\x15\xc6\x0c\x4d\x8a\xd5\xca\xd1\xda\xe3\x1a\x66\x3d\xbf\x78\xa7\xfc\x91\x09\x72\x11\x77\xe7\xe2\x1a\x77\xe1\x84\x53\x1f\x6d\xba\x2f\xb5\xf8\x43\x82\x0c\x4d\x2f\x0e\xbb\x4b\xea\xca\x4e\x89\x49\xd3\xf8\x36\x9e\x98\xf4\xd5\x6a\x6c\x50\xbc\x57\x8d\xfb\xea\xb6\xfc\x0c\xcc\x40\x8d\xed\x56\x8e\xd6\x0e\x4d\x78\xba\x43\x91\x4c\xfe\x80\x7a\x38\x89\x8f\x24\x41\x7d\x84\xfa\x68\xd3\x3d\x6a\xfc\x31\x41\x7e\xe3\x14\x29\x85\x96\x7e\xa1\x53\x38\x92\xe0\x61\xd5\x4b\x9e\x65\x05\xeb\x1f\x4d\x9d\xcc\x17\x6b\xf0\x80\x69\xbf\xdc\x26\xe2\x01\xfd\x4a\x1c\x2a\x81\xf5\x50\x27\x44\xa3\x1f\x6d\xec\x1e\x84\xfc\x6e\xfe\xdd\x13\x7e\x53\x47\xbf\xec\xc1\xe7\x9b\x82\x25\xd5\xe3\xa1\x6c\xce\x4f\x2f\x79\x9d\x1f\xf2\x22\x6f\xde\x1e\xcf\x9c\x57\x76\x45\x18\xc5\x92\x5f\x39\xc1\x0f\xea\xef\xce\x53\x7e\x78\x27\xdf\x9a\x1f\xad\xf6\x13\xd9\xc6\xfe\xef\x40\x82\x6a\x94\x92\x2f\x66\x4e\x43\xc6\xb0\x69\x6b\xc0\x6b\xa7\xe6\xdb\xfb\xc3\x53\x95\x76\x3d\xea\x59\xc3\xe1\x8d\x58\x18\x1c\x81\x4f\xe8\x7f\xd5\x13\xd7\x26\x07\xf6\x0b\x88\xdf\xf0\x3d\x6b\x9f\xa2\x93\x90\xbd\x40\xb1\xde\x29\xf1\x4a\xa1\x80\x97\xc8\xa9\x87\x84\x7b\x4d\x72\x61\xc6\x8f\x82\x92\x80\xe7\x76\xb8\x7e\x62\x1c\xfa\x92\xd4\x35\xb0\x0d\x01\x15\xf2\x6b\x1e\x0e\x5d\x5f\x92\xa2\x08\x07\x6f\xf2\xeb\x9b\x47\xb9\x46\x5f\x44\x76\x8a\x6d\xd0\x13\x07\xe5\x53\x7e\xe2\x46\x7c\x58\xec\x8e\x56\x80\x62\x1e\x05\x36\xa4\x3c\x0e\x0f\x84\x3c\x0a\x8c\x64\x3c\x0a\x0d\x45\x6c\xbf\xee\xa8\x5f\x81\xb5\xde\xb3\x9d\xb8\x1e\x91\xce\xf2\x97\x9c\x03\x76\x4f\xda\xc6\xb2\x37\xf0\x53\xc1\x83\xdd\x35\x1f\x01\x96\xd3\x8b\x34\x61\xc7\xb2\xba\x3c\xb6\xb7\x1b\xab\xd2\xa4\x66\x4f\x05\x6b\xb8\x29\x9f\x71\xcb\x96\xe6\xd7\xd3\xe3\x3c\x5a\x93\x2f\x0d\xef\xd6\x0f\x4f\x1c\xdf\xe1\x39\x6f\x66\x6d\x2d\x2a\xb0\x82\xa5\x7a\xa8\xcd\x2e\xe5\x67\xea\x6b\x6d\x7f\xb4\xa1\x34\xd2\x26\xb9\xcd\xce\x9c\xdd\x42\x1a\x0b\x3b\x72\xa6\xde\x39\xce\x3f\x33\xd9\x70\x28\x10\x65\xbd\x3b\xf1\x6b\x63\x7e\x2e\xab\xfc\x33\xaf\xc2\x3f\x00\x73\xf5\x28\x0c\x79\x5d\x16\x79\x36\x81\x8d\x8b\x1f\xb0\xc5\x32\xc1\x50\x6c\x6e\xa1\x1e\x3c\x3e\x55\x79\xf6\x13\xec\x16\x82\xc1\x81\x89\x1e\xca\x7e\xff\x5a\x77\x99\x78\x7f\xae\x33\x54\x3f\xfc\xf0\x24\xe6\x60\x6e\xcc\x5e\xf5\x54\x69\x74\xb3\xf5\xb2\xb5\x83\x9c\x9a\xa7\xa7\x8e\x42\xe7\xc3\xd9\xfd\x8b\xd8\x3f\x0c\xcf\x6e\x3f\xf5\xaf\x76\xf6\x6f\x64\xf7\xca\xf6\x9b\x08\xd8\xcd\x30\xda\x0b\xd0\xea\xc3\x7b\x3e\xfd\x71\xc6\xb9\x9a\xcc\x26\x31\xbb\x3c\xa0\x39\xd1\x2c\xf4\x4a\x0b\xa1\x8f\xcd\x89\xca\xea\xc7\x5e\x68\x9d\xa4\x16\xf6\x1b\xe2\xfd\xfc\xa3\x1f\x55\xe7\x7f\x0d\x8f\x0e\x3e\x0d\x4f\x06\xa2\x5e\x8e\x88\xf7\xcb\xfb\xc1\xd2\x0f\x64\xf9\x17\xd7\x24\xf6\x2f\xb2\x81\x0f\x72\xd4\x79\x8a\xdd\x45\x64\x3b\x81\x02\x59\x45\x4e\xf5\xe9\xdb\x4d\xea\x11\xf4\x5e\xc6\xb4\x45\x3d\xea\xeb\x57\x16\x2d\xca\xa8\x93\x23\xd2\x08\x31\xfd\x8b\x4e\xaf\x84\x4a\x68\x00\xab\x80\x6e\xb9\x6e\x9e\x7a\xaa\xba\x7b\xb7\x92\x96\x8f\x04\x92\x7d\xd9\x19\xf5\x2f\x7f\xbb\xb0\x2c\x4f\x26\xe5\xb5\x78\x9b\xd4\xa9\xb8\x98\x71\x92\x5c\xb3\xc9\x8f\x97\xe4\xd3\x4c\x31\xbc\xdd\x6c\x6f\x9f\x1e\xde\x3b\x5b\xc2\x27\x97\x86\x2f\x13\x92\x43\xc1\xe6\x55\xf9\x3a\xa1\xa8\xa9\xd8\x4f\x0f\xa6\xaa\x79\xb5\xb3\xb7\x32\xc6\xa4\xd1\xf5\x10\x34\x3e\x1f\x31\x39\xa1\x9c\x03\x3d\x0a\xae\xa2\x3a\x20\xb4\xcd\x80\x42\x08\xb4\x5f\x79\xa5\x3c\xfe\x10\x56\xf0\xb7\x92\x16\x65\x4a\xd7\xfa\xfd\xc9\x0f\x74\x6a\x70\x07\x59\xd6\x15\xce\xe4\x3f\xcd\xf3\x14\xbc\xd9\x6f\xcc\xf9\x9d\xa4\x79\x2d\x7a\xed\xab\xcc\xba\x54\xde\x7e\x24\x68\x81\x5b\xfe\x84\xb1\x41\xa2\xc1\xfb\x35\xa0\x39\x65\xf6\xdb\x36\x70\x24\xf6\x2d\x34\x4b\xdf\x8d\x73\x05\x24\x76\xf3\x23\x90\xa6\x55\xa4\x7b\x0b\xac\xbb\x6c\x0f\x8d\x2f\x3b\xd1\x3e\x3d\x5c\x81\x01\x68\xa4\x64\x64\x1d\xb9\x22\x0c\xc4\x5f\x01\x6f\x6d\x04\xbd\x94\xc4\x31\x6f\xa0\x9c\xd0\x92\x57\x86\x0a\xf8\xec\x38\x48\xb1\x8f\x1d\x74\x01\x71\x31\x54\x8d\xca\x72\xbc\x2d\x84\x7a\x60\xbf\x5a\x7c\xfa\x22\x5e\x02\x4e\x4e\x7a\x79\xcf\x55\xeb\x81\x8e\xa4\x74\x0f\x5e\xdf\x3e\xf5\x3a\x26\x5e\x5d\x47\x06\x50\x7c\x30\xb4\xee\xc0\xfd\x67\x01\x03\x62\x2e\x3a\xe4\xa2\xac\x65\xc6\xd2\xb2\x4a\xa4\x79\xc9\xaf\x67\x56\xe5\xcd\x53\x7d\x63\xc9\xb3\x72\x7c\x95\x72\x5f\x4a\xde\x3c\xe1\x12\x88\x25\x11\x47\xcb\x51\x66\xfd\x34\x2f\xe2\x46\xc7\x24\x65\x33\x2b\x74\xf2\xe4\x2e\xb2\x1b\xdd\xa9\x0f\xd9\x76\x60\xe5\x40\xd2\x47\x5b\x15\x3f\x36\x67\x76\x61\xf5\x5f\x33\x76\x4c\xda\xa2\xf9\x2b\x5f\x57\xb1\xa6\xfe\xab\x0c\x71\xd6\x7f\x15\x24\xea\xf9\xed\x7a\x7a\xb8\x96\xb3\x8a\xf1\x66\x35\x0e\x31\x6a\x7e\xe6\x49\xa7\xc6\xd3\xee\xc3\x35\x2b\xab\x2a\xe9\x95\x7b\x08\x92\xf5\x56\x59\x2c\x36\x3b\x68\x66\x54\x6f\xed\x2f\xd7\x5c\x28\x57\x52\x25\x87\x39\xbb\xe4\x5c\xf4\xac\xf6\x63\x9f\x2d\x36\x80\xc1\xa3\xc9\xe0\xf1\x74\x4e\xae\x39\xb7\x6d\xd7\x11\x34\xeb\x05\x40\x73\xb2\xda\xd9\xe4\xa7\x76\xa4\x9d\xb3\xed\x0e\xa0\xc8\x2d\x14\xa7\x36\x2f\x8a\x31\x1c\x71\xb4\x02\x48\x0a\x13\x49\x71\xe0\xad\x19\xc5\xb1\x8c\x00\x8e\x8b\x89\xa3\xba\xb0\x00\x1c\x6b\x28\xd6\xab\x81\xe3\xca\xb8\x66\x55\x05\xef\xfe\x5a\xca\xa6\x28\x46\xbb\x29\xde\x41\x01\x5f\x4f\x65\x2f\x8a\x9e\xb1\x72\xac\xa7\x23\x28\xe0\xca\x6a\xd7\x89\x0f\x82\xfc\x3a\xd6\xb2\xc5\x12\x4a\xf8\xc2\xc7\x74\x9a\x5c\xe7\x75\x72\x29\x2d\x86\xc6\x55\x0f\x0a\xba\x31\xab\xb7\x75\x53\x8d\x0a\x7a\xb1\x83\x82\x6e\x29\x1c\xc2\xa6\x8c\x60\x59\xc6\x50\xba\x55\x7b\xb0\xda\xf2\x3a\x86\x61\x09\x85\x2b\xba\x76\x9e\xd7\xb2\x87\x4d\x4c\x9f\xc6\x30\x6d\xa0\x80\x3f\x9b\xd5\x3f\xb3\xea\x90\xe4\xbf\x8c\x0e\xc8\xe5\x1e\x08\xd7\x6a\xcf\xa1\xac\xc7\x95\x78\x15\x6f\x20\x0a\x4e\x37\x2b\xcd\xe6\x1c\x0e\x63\x48\x56\x0b\x88\xe4\x7a\x2a\x92\x8c\xd5\x67\x13\x4d\x36\x86\x66\x03\xe4\x7b\x30\xed\xde\x81\x15\xa7\xbc\xbd\x8c\xe1\xd8\x03\xc9\x1e\x4c\x5b\x77\x68\xab\x67\xae\xfe\xf3\x63\x52\x8f\x8d\xa4\xf5\x02\xca\xd6\xb4\x76\x87\xb6\x38\x25\xe3\x9a\xbb\x5e\x21\xe9\x9e\xab\x24\x37\xed\xc4\xe1\x3c\x86\x63\x0b\x85\x6b\xda\x4c\xde\x22\x5e\x21\x1f\xc3\xb1\x47\x92\xbd\xda\x5c\xfc\x32\x82\x61\xb3\x80\x72\x65\xd5\xa5\xcd\x2c\x7d\x1b\xeb\x9b\xcd\x1a\x8a\xd4\x62\x81\x37\x84\x8d\x35\x64\xb3\x85\x02\x2d\x2d\x8d\x2f\xb8\xd7\x34\x3a\x07\x45\x50\xa0\xa6\x8d\x3c\x54\xc9\xe7\xbc\x18\x43\xb1\xd8\xa1\x7e\x4d\x2e\x89\x35\x68\xc6\x2c\xe3\x76\x0d\x25\x7a\x6e\x1b\x6b\x0a\x39\x34\xa3\xb3\x29\x14\x68\xd9\xbe\xb0\x46\x5b\x24\x13\xd3\xcb\x08\xa6\x5d\x84\xe4\xda\xd4\xaf\xc9\xd5\xea\xdf\x31\xfb\xb8\x5b\x42\xc1\xf2\x35\x79\xd5\x5a\x52\x79\x1b\xc3\xb1\x46\x9a\x5a\x88\x65\x91\x81\xe2\xf3\x18\x8a\x1d\x10\x6c\x6a\xb6\x82\xcf\x64\x49\x36\xa6\x22\xfb\x18\x08\x36\x4d\x4d\x14\x65\x5a\xd6\x86\xe9\x77\x62\xda\x00\x99\xa4\x66\xbf\x70\xb7\xf4\x34\x66\x88\xf6\x3b\x20\x11\x11\x94\xa8\xc4\x71\xab\xa3\x9a\x93\xb9\x4f\xda\x1e\x8a\xdc\xe2\xf0\x38\xea\x43\xc5\x50\x48\xa6\x79\x93\x7c\xc9\xa1\xf0\x39\x79\x11\xae\xcb\xb8\x4b\x06\x05\x66\x5a\xfe\xfa\x35\x6f\x3e\x2b\x67\x68\x14\xd1\x06\x28\x62\x6a\x5a\xbb\xb4\x6c\x98\x58\x19\x95\x79\x35\xce\xd2\x1e\x4a\xfe\xd9\xc2\x54\x3e\x07\x76\x61\x1c\xc7\xb0\x07\xce\x79\x61\xaa\x64\x3a\x66\x2f\xe2\x78\x85\x74\x92\xbb\x54\x65\x69\x0e\xf7\x74\xcc\x7e\xc6\xf1\x16\x49\x39\xb7\x86\x68\x3a\xe6\x31\xc4\xf1\x1e\xca\xd7\x34\xa0\x62\x89\x7b\x39\x8c\x7b\xbe\x8b\x05\x94\x6d\xc9\xd7\x0e\x73\xa1\x8f\x26\xb6\x6a\x14\xcf\x0a\x4a\xd6\x34\x16\x35\x77\x83\x02\x78\xd9\x42\xd1\x9a\xde\x61\x3a\xf8\x79\x9e\xb5\x00\x14\x6b\x72\x63\x22\xe6\x91\x59\x9d\x3c\x66\x43\xe3\x25\x5c\x67\xa5\xe7\x8a\xaf\xa9\xf8\xbc\x40\x5b\xe4\x74\xcc\x45\x8c\x97\x70\xb9\x95\xbe\x99\xf5\xdf\x6e\x83\x75\x75\xe3\x80\xeb\xad\xd4\xf4\x33\xd3\xcf\x2c\x3d\x9b\x26\xc4\x89\x6b\x05\x97\x5d\x96\x74\x4e\xdc\x25\x48\xae\x63\xd6\x3d\x5e\xc1\x75\x57\xf6\x8b\x81\x24\xfb\x25\xe7\xb3\x58\x33\xe6\x04\xc4\x2b\xb8\xf2\xca\xd8\xf5\x92\x54\xe6\xf8\xce\x9e\x47\x91\xc0\xd5\x56\x66\x2e\x01\xb3\x52\x6c\x99\xa6\xe3\x6b\x40\xb8\xe0\xca\xcc\xf1\xd4\x61\xb1\x0c\xb5\x1b\x1f\x5a\x7a\x15\x5c\xac\xb9\x39\xac\xb2\xb1\x09\x90\x2f\x4c\x81\x94\x99\x39\x39\xb0\xb4\xe5\x4e\xfe\xe8\xd8\x5c\xc3\x55\x17\x33\xfb\x9b\xd5\x4d\x19\xb0\x44\xde\xc0\x45\x17\x33\xa7\x19\x76\x7a\xbb\x8d\xf9\x38\xf1\x06\xae\xba\x98\x39\xb5\xbc\x72\x46\x58\x25\x16\xa7\xe7\x64\x2c\xca\xc2\x71\xc1\x75\x17\x33\x5d\x3f\x11\xbb\xaa\xd8\x28\x92\x2d\x5c\x32\x31\xcb\x68\xdd\x06\x1f\xdf\x8d\x02\x2e\x98\x98\xb9\x2a\x66\xcd\x39\x2f\x6f\xe3\xc2\xdd\xc2\xf5\x12\x33\x2d\x1f\x6b\xab\xf2\xc6\xb8\xea\xb5\xd7\xbc\x1c\xe7\x08\xae\x9b\x8e\xe6\xbc\x7b\xcc\xaf\x21\x93\xf7\x0e\x2e\x77\x8e\xf9\x2f\x16\x9a\xb1\x55\x46\xbc\x83\x8b\x9d\x63\x52\x3c\x7b\x56\xd9\xc7\xd1\x21\xbe\x83\xcb\x9e\xa3\x39\xc4\x2f\x79\x5a\x95\x57\x56\x8f\x0b\x7a\x0f\x17\x3f\xc7\xa4\x2a\x99\x8b\xa5\x31\x67\x2e\xde\xc3\x35\xd0\xd1\xd4\xc0\x63\x95\x5c\xd3\x51\xcf\x66\x0f\x17\x41\x27\xd3\x3c\x9c\x92\x83\xbf\xbb\x67\x4b\x5e\x7d\x08\x39\x9e\x0e\x06\x02\x1d\x60\xe4\x0b\xe5\x13\xb7\x5f\xe3\x98\x50\x78\xf1\x64\x4e\x74\xa7\x8a\x8d\x39\xdc\x1a\x0d\x9c\xef\x4e\xf6\xfc\x52\x56\x27\x7f\x4f\x69\x34\x70\xca\x3b\x72\xe2\x7c\x8a\x3b\xb5\xb9\xbd\x9c\x39\x79\x7d\x64\x8d\x0c\xc5\x1a\x4f\xa6\xf1\x11\x81\xd3\x10\x96\x50\xb4\xf1\x64\x8e\x8a\x53\xce\x1d\xed\xa2\x49\xbc\x16\xb9\xc3\x04\x67\xbe\x93\x19\xfb\x94\x4f\xe3\x8d\x0d\xd4\x0e\x13\x9c\xfe\x4e\x09\xf0\xfa\x7a\x6c\x41\x7d\x0f\xe7\xbf\x93\xe9\xd2\x72\xc1\x5f\xfd\x06\xb5\x43\x03\xa7\xbd\xd3\xcd\x42\x93\x64\xac\x28\xdb\x9b\x77\x68\xf4\xda\x08\x27\xbf\x5f\xdb\xa4\x29\xf9\x1c\x5a\x60\x5e\x7a\xcc\xbf\x86\x60\x84\x33\xe1\xc9\x1c\xb3\x42\xe8\xfe\x31\xab\xd1\xa0\x00\xe4\xc9\x9a\x37\x78\xb7\xbd\xe6\x5c\x59\x03\x16\x25\x1d\x42\x38\x33\x9e\xcc\x59\x84\x0b\xad\x61\x97\xc4\x1f\x4e\xef\x30\xc1\x79\xf1\x64\xce\x24\x1c\x53\x88\x2a\xa0\x68\xa4\x92\xf6\xec\x90\xd7\xb5\x15\xb1\x3d\x79\x03\x09\x1a\x1b\x0a\x4c\x9e\xda\x37\x62\x00\x7b\xbd\xcd\x0e\x0d\x9c\x69\xcf\xa6\x97\x78\xe6\xeb\xdc\xf9\x33\xff\x3f\x21\x98\xe0\x6c\x7b\x66\x49\x95\xd1\x9e\xfd\x39\x44\x56\x28\x4c\x79\x36\x87\x0d\x67\x2b\x6b\x2b\x7f\x6c\xbd\x37\x9a\x70\xed\x52\x95\x49\x63\x8d\xe3\x73\x88\x61\x41\x91\xca\x73\x92\x37\xa6\x95\x3a\x7b\x1d\xb5\x0e\x0b\x9c\xbe\xcf\x66\xbf\x9f\xdb\xeb\x29\xa9\x42\x7a\x0d\xc5\x2b\x73\x53\xc2\xf9\x35\x1b\x9f\xb7\x35\x26\x14\xb7\xcc\xcd\x59\x25\x17\x99\x23\x41\xe6\x12\xc5\x2e\x73\xd3\xf0\xe6\x75\x95\x30\x6f\x10\xa0\x43\x03\xa7\x6e\x2b\x0a\xcb\x1b\x16\x36\xc5\xc1\x08\xa6\xac\x74\x9d\x97\xa9\xf0\xf5\xb8\x2f\xcc\x9d\xd8\xb2\x32\x97\x8b\xb9\xd7\x31\xe9\xd0\xc2\xa8\x66\xfe\xab\x25\xab\x24\xc4\x58\xa2\xb0\x66\x6e\x1a\x4b\x8e\x24\xc0\x37\xc1\x81\xcd\x3c\x65\xc4\x30\xcb\x43\x46\x07\x0a\x6b\xe6\xa6\x85\xcc\x9b\xa4\x08\xd1\x46\x14\xd7\xfc\x25\xb9\x24\x76\xa8\xe3\x97\x90\x41\x8f\x62\x9b\xbf\x98\x6b\xc5\x5f\xca\x2a\x0b\x12\x0e\x8a\x6f\xfe\x92\xdc\xac\xb8\xf1\x2f\xb7\x00\x2c\x28\xc4\xf9\x6c\x0e\x8c\x67\x76\x7d\x0b\xd1\xc4\xfd\x12\x08\xf8\xd9\x5c\xdf\x3d\xbf\x55\xa7\xb7\xcf\x63\x3b\xcb\x1d\x2a\x14\x29\xe5\x0e\x49\x99\x59\xa6\xec\xd9\xbb\x59\xd2\x21\x82\x01\xd3\x67\xd3\x8e\x3d\xe7\x55\x7e\x48\xfc\x31\x86\xde\xf9\x43\x41\xd2\xf2\x52\x56\xd6\xde\xd8\x73\x48\xc7\xe3\xf0\xe8\xb3\xd9\x5f\x35\x5f\x31\x36\x9c\xb1\xa6\x11\x5b\xc5\xd9\xfc\xca\x5e\x82\xb4\x1b\x07\x4b\x9f\x4d\xaf\xe9\x5a\x56\xcd\x99\xcf\x6e\x23\x4b\xda\x1e\x19\x8c\x97\x3e\x9b\x03\xb7\x2e\xdb\x7b\x90\xa1\x90\xe9\x73\xfb\x9a\x58\x83\xef\x39\xc4\x09\x30\xe3\xa6\x6f\x17\x6e\xe3\xe8\xa5\xd7\x73\xc8\x48\xc6\x11\xd4\xe7\xe4\x73\xf2\x7c\xae\xed\x8d\x97\x67\x6f\x84\xa5\xc7\x05\x43\xa9\xd6\x56\x7d\x91\x94\x41\x7d\x88\x42\xa9\x85\xb9\x16\x2b\xd8\x21\xb9\x86\x2c\xe7\x8c\x58\x6a\x61\x06\x7d\x94\x8e\x15\x6d\x1a\x34\xc1\xe0\xa0\x6a\x61\x8e\xa1\x22\x67\xe9\xb9\x61\xd7\xba\x61\xfe\x58\xc7\xb0\xfe\x01\x62\x2f\x4c\x2f\xac\xae\x72\x2e\xae\xeb\x73\xd8\x52\x0a\xae\x36\x8b\xfc\x40\x04\xc8\x8a\xa0\x95\x14\x8a\xaf\x16\xac\x2e\x9b\xb3\x69\x92\x8b\xa0\x1e\x44\x41\xd6\x22\x6f\xce\x2d\x48\x40\xe9\x51\x85\xb8\x4f\x38\xc6\x5a\x98\xfe\x53\xd1\x7e\x62\xdc\x2c\xb6\x55\x88\xbb\x8a\x43\xad\x45\xd2\xbc\xd8\x3c\x79\x23\xda\x3d\x9e\x35\x16\xf8\x9b\x85\x26\x68\xe4\xa1\x70\xeb\xc5\xc4\x21\x4c\x6b\x9a\x86\x38\x29\x38\xe2\x7a\x31\xf5\xfc\x52\x5e\x93\x40\x3c\x70\xc9\x79\x31\xdd\x8b\x4b\x59\x64\xe5\x4b\x90\x46\xa2\x68\xeb\xc5\x9c\x49\x2f\x32\xf3\x8c\xf1\xca\x41\xb8\xe0\x52\xf3\x92\x64\xc9\x29\xa9\x53\x2b\x8f\xe7\x12\xa4\x00\x9b\x78\x09\x71\x55\xf5\x59\x1c\xeb\xa1\xad\xe7\x25\x64\x62\x8d\x37\xcb\x3d\xc4\x98\xb2\xac\xb4\x35\xfd\xe2\x0d\xcb\xf5\xa8\x36\x6b\x88\xca\x32\x31\x97\x10\x6f\x3a\xde\xec\x41\xea\xdd\xa1\xad\x6c\xbd\xb2\x82\x7e\x7c\x21\x79\x09\x0b\xb5\x6c\xe3\x2d\x60\xd1\x9c\x23\x2e\x62\x8b\x74\x24\xeb\xa8\xc7\xb4\x42\x3d\x91\x5a\x2b\xe2\x4b\x90\x72\x6c\x37\x50\xfc\xe4\x74\x2f\x42\xe1\x17\x91\x98\x72\x4d\xee\x08\x24\xc4\xdb\x3d\xea\x8d\xaa\xc9\xaf\xf9\xaf\xad\xa5\xca\x21\xfe\x7f\xbc\x5b\xc4\x10\x57\xcb\xd7\x23\x84\x3d\xbc\x04\x75\xc1\x6e\x05\xbb\x80\x8f\xa4\x9a\xaf\x6f\xac\x2c\xb2\x4b\x50\x1b\x77\x5b\xd4\x09\x45\x63\xb1\x14\x64\xa2\x77\xfb\xbd\xd9\xbc\xdc\x4a\x73\xb8\xb4\x21\xa8\xf6\x0b\x3c\x06\xb2\xfc\xc5\xda\x4e\xb8\x04\xd9\xe8\xfd\x1a\xc9\xbc\x48\x5e\xad\xf1\x14\xe4\x6e\xed\xb7\x50\xde\xec\x53\x6e\xed\x10\x5f\xbc\xfb\x96\x33\xb1\xfe\x1f\x42\xcb\x82\x93\xb7\xda\xee\x7b\xff\x84\x21\x71\xa0\xa0\xf2\xa5\xfc\x2c\x02\x94\x84\x46\xfa\x1d\x35\x85\x09\xce\xf3\x56\x10\xe9\x9a\x5c\xf2\x91\x4d\x66\x8d\x06\xce\xf2\x57\x73\xda\xb9\xb2\x57\xee\x9e\x16\xc8\x20\xfa\x90\xa1\xb8\xf2\xd5\x6c\xd6\x35\x3f\x31\xff\xf8\xd0\x58\xe0\x14\x7f\x35\x93\xdd\xb8\x41\x38\x96\xc5\x33\x8e\x52\x79\xd1\xc1\x99\xfe\x6a\x2e\xe6\x24\x53\x61\x8d\x83\x53\xfd\xd5\xd4\x44\xb1\x1f\x5a\x25\x23\xa9\xc2\x9d\x12\xc0\xb9\x1e\x64\xd4\x9a\x28\xfd\x93\x85\xc6\x05\xe7\xfb\xab\xa9\xd7\x5c\x58\xaf\x49\x98\x5e\x42\x99\xb3\x9b\x95\x80\x7c\xf5\xaf\xbe\x35\x16\x38\xcf\x5f\xb9\x15\x31\x67\x84\x6b\x48\xff\xa3\x88\xf2\x35\xb7\x86\xc7\xd5\x6f\x86\x34\x92\x25\x92\xf1\xeb\xfc\x33\x4b\x88\x78\xcb\x35\x64\xa8\xa1\x38\x72\x69\xce\xbd\xe5\x65\x24\x10\xa0\x91\xc0\x38\xf2\xcd\x1c\xb0\x37\x3e\xb5\x5d\x42\x74\x07\x05\x90\x6f\xa6\x68\x6e\xac\x0a\x11\x0e\x0a\x1f\xeb\xdd\xa4\x5b\x59\xbc\xc1\xf0\x63\x8f\xd2\xbf\xa1\xa4\x11\x6e\x0c\x69\x93\xdb\x12\x37\xbf\x83\xa7\x51\xc1\x18\xf2\xcd\xdc\x9b\xba\x9d\xf3\x22\xbf\xdd\x38\x72\xff\xec\xd8\xd9\x48\x24\xf3\xe7\x9c\x58\x15\xdf\xfc\x8e\x9d\x46\x04\xe3\xc8\x37\x73\x6c\x70\xd1\x85\x99\x22\x14\x48\xbe\x99\x8a\xa4\x16\xb3\xb7\x9c\x3b\x03\xfe\x8d\x17\x8d\x0c\x46\x93\x6f\x79\x93\x26\x79\xe5\x0a\x23\xdc\x42\x34\x14\x05\x95\x6f\xa6\x77\x7e\x6b\x59\xd5\x94\x22\x21\xca\xef\xd5\x69\x5c\x6b\x24\x79\xbe\x10\xe5\xce\x97\xa5\xad\x21\x7d\x88\x62\xcb\xe2\x38\x52\x7b\xb2\x8c\x93\x3f\xdd\xa2\x9b\xe9\x60\x78\x99\xb3\x64\xb9\xab\x37\xbf\x33\xa1\xb1\xc0\x68\xf2\x4d\x99\x7c\x33\x2c\x7d\x0b\xb1\xb8\x28\xa2\xfc\xab\x39\x54\x7e\x4d\xc6\x76\x4e\xbb\xe9\x1b\xc8\xb9\x32\x05\x5c\xb1\xd1\x2c\x09\x8d\x07\x85\x94\x2b\x73\x1a\xa9\x84\x8d\x0b\x9a\x24\x51\x50\xb9\xba\x3f\xf5\xad\x43\x03\x63\xca\xd6\x2c\x52\xb5\xf5\xd8\x36\x89\x46\x03\x63\xca\xd5\xab\x89\xe6\x95\x8f\x94\x10\x34\x28\xa8\x5c\x9b\x5d\x55\x27\x6d\x96\xcb\x83\x4b\x41\x3c\xa1\xd8\x72\x6d\x46\xc6\x6a\x91\xaa\x58\x9a\xc3\xd8\x8b\x0f\x06\x98\x6b\x2b\x40\xc6\xde\xd2\x33\x1b\x3b\xa5\xd3\xa1\x82\x21\xe6\xda\x9c\x2a\xeb\x76\x2c\x90\xdf\x3b\x81\x50\x5c\xa6\x4e\xd6\xaf\x2c\x63\x61\x78\x60\x1c\xb8\x36\x1d\xb7\x3a\xbf\x9e\x12\x6e\x0f\x42\x4c\x25\x8e\x02\x2b\x3b\xcb\xa5\xc2\x2c\xbf\xb9\xf6\x07\x0c\x34\x36\x14\x06\xae\x4d\x4f\xb0\x2e\xca\x97\xb1\x73\x56\x3d\xa6\x15\xda\xf4\x10\xab\xdc\x37\x66\x05\xd2\xcd\x84\xc2\xfa\x45\x1c\x07\xab\x82\x9c\x5f\x14\x1a\xae\xad\x18\x25\xe7\x95\x4f\x8b\x61\xbc\xc2\xc0\x70\x2d\x66\xa9\x64\x5e\xb0\xd2\xb2\xea\x75\x88\xdb\x8a\x03\xc4\x75\xa2\xd6\xf7\x96\xff\x5a\xfb\xf7\x21\x3a\x5c\x30\x46\x5c\x8b\xb0\x94\x35\x43\xd4\x41\x1a\x87\xe2\xc3\xb5\xc5\x4c\x79\x19\x3b\x90\x35\xac\x60\xa0\xd4\xad\x5d\x07\xbe\xbc\xe6\xee\x5e\x90\xe6\xa2\xc0\x70\x9d\x94\xf3\xa6\xb4\x82\x71\x75\xc8\xf4\x87\x23\xc3\xac\xe0\xc8\x8a\x17\x90\x31\x39\x28\x57\x10\x32\xb8\x6e\xac\xcd\x09\xb0\x7e\x0b\x5c\x52\xa1\xc8\x70\xfd\x2a\xce\xa8\xd8\x3e\x7a\x1d\xe2\xa3\xe3\xc0\x30\xf7\x85\xec\xc3\x0c\x1d\xbe\xc6\x9b\xae\xda\xe3\x5b\xa3\xb4\x67\xeb\x04\x6c\x13\x34\xfc\x50\x7c\x58\x7b\xda\xdd\x6e\x76\x6e\x85\x45\x9a\x10\x5f\x1b\x87\x8a\x1b\xd3\x2e\x36\xa5\xff\xec\x45\x8f\x05\x2e\x1c\x1b\xd3\xcf\x6e\xce\x49\x1e\xbe\xbe\x06\x92\x6f\x92\x5f\x72\xd2\xcf\x6e\xbc\x59\x92\x3d\x2e\xb8\x82\x6c\x4c\x73\xd5\x94\xcf\x6c\xf0\xdb\xbc\x88\x50\x8a\x6e\x93\x5f\xca\x4a\xf8\xa0\xe6\xc8\x69\x82\x6c\x15\xca\xd5\x6d\x4c\xb7\xbd\x69\xab\x67\x71\xb0\x76\x74\x43\xb8\xc3\x06\x57\x93\x8d\x25\x26\xee\xb1\x85\x39\x37\xf1\x06\xae\x28\x1b\xd3\x5a\x35\xe5\xf5\x14\x84\x06\x25\xfe\x36\xa6\x39\x10\xad\x63\x21\xfe\x2c\xce\xfe\x6d\xb8\x85\xcb\x33\x7b\xd0\x04\x59\x2a\x94\x01\xdc\xb4\x7c\xb6\x33\x3d\xc0\x26\xc8\x48\xa1\xec\xdf\x26\xc9\x5f\x6d\xa5\x0c\x71\xf9\xe3\xdd\x02\x29\xf8\xf5\x33\x11\xf9\x6d\x82\x8c\x14\x4a\x25\x6e\x4d\x1c\xed\xb3\x38\x49\x19\x34\x2d\xa0\x8c\xe2\xd6\xb4\x01\x7c\x89\x14\xe6\xd9\xe2\x5c\xe2\xd6\x54\xed\xb6\x16\x57\xac\x95\xd5\x1d\xee\x28\xce\x2a\xd6\xa7\xac\x4d\xb4\x2a\x15\x97\x0f\x98\xc6\x32\x81\xfe\xd3\x1f\x3d\x11\xb8\xbc\x6c\xab\x96\x58\x84\xb5\x41\x4a\x8b\x92\x8e\x5b\xf3\x28\x49\xfb\xf9\xc0\x9e\xc7\x07\x76\x2c\x0c\xf2\x10\x1f\x7e\x31\xdb\xfb\x92\x34\xf2\xb4\x44\x2a\x2e\x7a\x18\x47\x34\xc3\x53\xbe\x70\x56\x5f\xf2\xab\x38\x23\x67\xe2\xf5\x4f\x64\x1a\x1b\x9c\xf6\x5f\x4c\x03\xc8\x3d\x55\xf6\xb9\x65\x23\xe9\x94\x1a\x13\x9c\xf3\x0f\x62\x87\xa0\x3e\x73\xce\xc4\xf5\x19\x8e\x99\xf6\xc5\x1f\xf0\xd1\x68\x51\xd4\x98\xab\x9c\x1f\xa5\x3f\xc5\xa5\x43\x09\x9d\x81\x97\x9c\x35\x57\xeb\x36\x84\x97\x90\x3e\xc5\xc1\xe3\x97\xe4\xda\x26\x8d\x69\x8b\x5e\xfc\xf3\x51\x87\x08\x3a\x02\xaf\x49\x51\xe4\x2a\x2b\xe6\xd8\x72\x8b\x6f\x2a\xcc\xab\xdf\x0f\xe8\xd4\x04\xce\xe0\xd4\x35\x06\xaf\xfe\xb1\xd4\x6b\x1b\x90\xd5\x9b\xa9\x20\x6f\xec\x32\xb2\x5a\xeb\xd0\xe0\x3d\xde\xb7\xb2\xb1\x66\xdb\x37\xbf\xf5\xd7\x88\x50\xf8\x57\x25\xe8\xa8\x73\xa1\x06\xb6\xcf\x41\x3a\x8b\xe2\xc0\x9f\xa9\x84\xf0\xcf\xfe\x35\x46\x87\x07\xce\xda\x9f\xf3\xcb\x21\x39\xbc\x9a\xed\xfb\xec\x9f\x4d\x3a\x4c\x72\xda\x96\x77\x14\xb1\x64\xb8\xe6\x08\xde\x06\x8b\xef\x41\x13\xb7\xe1\x4c\x66\x93\x79\xbc\x59\xb3\xcb\x43\x24\xef\x3d\xeb\x00\x09\x80\x89\x86\x18\xee\xab\x93\xb7\xd5\x1c\x93\x4b\x5e\xbc\x3d\xfe\xb7\xa4\x29\xa7\x3f\xfc\x57\x56\xbc\x30\x61\x94\x26\xff\x9d\xb5\xec\x87\xe9\x7f\x16\xb9\xe4\xd3\xfe\xeb\x94\x2f\xc8\xea\x59\xcd\x6d\xf7\xd1\xba\x8c\x12\x5d\xac\x33\x5f\x2e\x39\x25\xe3\x7e\x4a\xd9\x10\xe2\x16\xca\x07\xd0\x68\x74\x6d\x29\xb8\x0c\x68\xa6\x1a\x01\x21\xdd\xb7\x6f\x02\xa8\x09\x5f\x54\x1d\x3a\x81\x42\x96\x57\x51\x44\x5d\xe1\x87\x5b\xb1\x20\xaf\xcd\x5c\x43\x86\xf5\xf5\x56\xdd\x35\x3c\x8d\xb8\x2f\x6b\x96\xb2\xa2\x78\x2a\xc5\xed\x9b\xdc\xb0\xc7\xf0\xca\x2b\x71\x99\x50\x47\x4e\x36\x4c\xb5\xcb\x77\xf7\x95\x6e\x87\x20\xf3\x28\xae\x9e\xd3\x6d\x26\x2f\xfe\x19\x1a\xa2\x45\xa2\x2e\xdb\x9b\x6f\xd7\x15\x12\x1e\xe7\x5a\x5c\xf9\x33\x05\x5f\xf2\xcb\x89\xc6\x09\x7a\x41\x33\xab\xee\x04\x5a\xc8\xb6\xc0\xcb\xe6\xc6\x1a\xa1\xa9\x82\x56\x18\x0c\xc0\xf6\xf9\x1b\x30\x99\xeb\x3b\x8e\x82\xae\xd1\xe6\xbc\xdb\x6c\xfc\xa5\x43\x61\x30\xd1\x7f\x7f\xef\xfa\x49\xde\x6b\xa6\x58\x08\x69\x23\xaf\xee\xc7\x41\x28\xcb\x78\xff\xb7\x22\x6b\xec\xc0\x0a\x70\x27\xe9\x0f\x3f\x0c\xb7\x54\xc9\x2b\x66\x83\x38\xfc\xcb\x0d\x0e\xac\xe8\xcb\x39\x06\x36\x67\x40\x2e\xef\xda\x3a\x2f\xc8\xb2\x78\xbe\x8d\x57\xb2\x7c\xe9\x28\x5f\xec\x64\xf1\xca\x51\x1c\x6d\xe5\x7d\xaa\xe7\x35\x5d\x2e\xcb\x62\xdf\x28\xd6\x78\x56\x8b\xdd\xda\xe4\x13\x02\x4f\x21\x83\x4e\x2c\xf1\xca\x66\xd7\x05\x6c\xb2\xed\x80\x9b\xef\x35\x67\x12\x52\xdc\x75\xac\x41\xb8\xdf\x3c\x03\x77\xde\x01\x79\x6b\xe0\x42\x5c\x5b\xe4\x10\xb9\x06\x11\xd7\x50\xb6\x17\x5a\xec\x1a\x44\x5d\x6a\x4c\x4b\x5e\x83\xc8\x9b\x8c\x6d\x08\x9b\x67\x24\x50\x93\xc5\xd1\xae\xb9\x43\xfe\x26\xe3\xbe\x3e\x30\x5a\x10\xd2\x0d\x62\x60\x76\x20\xa4\xd5\xb0\xef\x66\xd5\xc3\x6b\xa1\x2e\xc9\x8e\x09\x4c\xc6\xad\xf9\x7c\x48\x7e\xf4\xd2\x7c\x88\xd4\x31\x0b\x46\x26\xa0\x9a\x16\xde\xc1\x0d\xe9\x98\xba\x7d\x23\xad\xfc\xdb\x70\x01\xa4\xa8\x96\x83\xf3\x10\x4d\x04\x94\x78\x6c\x40\xd8\x93\x7e\x1e\xb3\x89\x9b\x36\x78\xb8\xda\x1d\x83\xe5\x55\xda\x72\xa5\x91\x5f\xa7\x56\x71\xfd\x6b\x9b\x54\x4c\xb7\xc4\x1a\x0f\x12\x27\xd1\x66\x6a\xce\x07\x50\x73\xd9\x8f\x2c\x43\x77\x53\x82\xfb\x98\xf5\xc4\x22\xbf\xd8\xec\xf3\x2f\xc2\x36\x67\x9d\xba\x74\x32\x98\x2f\x35\x4f\xdc\x8f\xeb\x46\x44\x62\x7e\xd1\x8f\x2d\xa0\x97\x95\xcc\x87\x12\x8b\xb6\x1f\xe3\xe8\x45\x2e\x00\x97\x18\x80\x18\xad\x7a\xfc\xca\x40\x2b\x4f\x44\x1a\x78\xcd\xd7\x7b\x14\x5e\x08\x89\x11\x9b\xaf\xdb\x48\xc4\x25\x77\xe2\x4e\x26\xc7\x2c\xda\x1e\xd6\x4b\x13\x33\x02\xc5\xa8\x19\x1f\x8c\x9b\xc8\x7c\xc6\x2c\xbf\x3e\x1b\x88\xb3\xfd\x6a\xbf\x4f\x4c\xc4\x00\x10\xa3\xcd\xd2\xf5\x26\x89\x4d\xb4\x6d\x75\x2b\x4c\x8e\xd7\x9b\xd5\x71\x67\x23\x86\xa0\x18\xf5\x3a\x5d\xaf\xf7\x2b\x03\x75\x35\xe8\x85\xe3\x69\x19\x85\x77\x80\x33\xf9\xc5\x0f\xaf\x28\x5b\x26\x1e\x17\xc6\x58\xa3\xe8\xb0\x4e\x32\x13\x2b\x00\xc4\x68\xc9\x47\xeb\xf5\x8b\x74\x18\xb1\x7a\x22\xd8\x44\x8c\x40\x31\x6a\xfa\x75\x54\xa9\xf2\xf2\xe2\x4e\x71\xc1\x27\x5a\xb4\xf4\x17\x76\xde\xba\xcb\x70\xe1\xf3\x8d\x52\xa9\x83\x2b\xaa\x81\x01\xf4\x3b\xb8\xa6\x52\x7d\xa8\xc0\xc1\x55\x95\x6e\x0f\x0a\x1a\x5c\x51\xe9\x2e\x54\xc1\x70\x76\xa5\x76\xf6\x2a\x76\x07\x49\xa1\x7d\x83\x16\x05\x57\x54\x0a\x06\xf5\x24\xb8\xaa\x52\x21\xfc\xac\xa2\xa1\x64\xe6\xc3\xf9\xc4\x44\xed\xba\x63\x76\xa7\x97\x58\x7d\xdd\xa4\x69\x92\xf4\xdc\x23\xc1\xaf\x2e\xaa\x19\xa2\xe3\xb8\x5f\x61\xf7\x8b\x65\x31\xc3\x27\xd5\xec\x24\x1e\x63\xe0\xb3\xd5\x8f\xe0\xc6\xe0\x29\x5c\xd7\x45\xeb\x87\x87\xef\x97\xcb\xe5\x13\xc0\x71\x7f\x5d\xe2\x35\x12\xc0\xe9\x30\x4b\x74\x72\x4a\x12\xcb\x20\x91\xf0\x78\x44\x1e\x16\xe2\x9f\xeb\x81\x4b\x62\x7a\x59\xaf\xd2\xdd\xd1\x1a\xf3\x54\x0d\x63\x3a\x58\xa6\x99\xfb\x7d\x52\x6a\xc2\x59\xb0\x34\x5d\x59\x13\x19\x59\x05\x93\x5a\x6e\xb3\xc5\x6a\xef\x22\x45\x4e\x41\xc7\xe3\x6e\x1d\x1f\x9c\xb4\x3c\x73\x11\xaf\x99\x2d\x12\x17\x31\x62\x52\xe2\x15\x58\xe6\x16\xa0\x73\x76\x3a\x1e\xf7\x19\x5b\x3a\x09\x51\xd3\x54\xca\x67\x08\x4f\x5f\x79\xe6\xab\x2c\xc9\xd6\xee\xde\xb2\x27\xae\xe3\x71\xb3\x5f\x33\x27\x25\xd7\x0c\x76\x3c\x6e\xb7\x1b\x73\x3e\xc0\xef\xe4\x63\x3a\xd6\x23\xf7\x89\xab\x06\x26\xb4\x4d\x7d\xaf\xfc\xd3\x93\x9b\xf9\x56\x6a\xe2\xae\x63\xb6\x8a\xad\x16\xcc\x3d\xa6\xa0\x95\x41\x76\xb1\x1f\xe8\xc2\xc9\xec\x1c\xcf\x0e\x14\x2c\x2a\x44\xb1\x32\xef\xc2\xf7\xf4\x00\xca\x72\x75\x7f\xb6\x5c\x87\x18\xa0\xd3\xa1\x84\xac\x0e\xee\xf2\xff\xa5\xad\x9b\xfc\x98\x93\x60\xaa\xec\x8d\x84\xd3\xcb\x9a\xb1\xdb\xa5\x87\xf7\x98\xd4\x4d\xe0\x62\x1d\x82\xd8\xfc\x47\x5a\x24\x75\xfd\xe7\x7f\xfa\x4e\xb4\x7d\xa2\xcb\xbf\xfb\xb9\x5f\xa9\x0d\x2f\x67\xc1\x65\x8e\x11\xbd\xd2\x81\xbf\x1e\x97\xfc\xec\x42\x26\x0b\x49\x6c\x2a\x04\xd3\x45\x11\xf5\xad\xe5\xba\x6e\xbf\x22\x1a\xee\x76\x07\xd3\x60\x17\xc4\xd1\xfd\xad\x17\x46\xde\x7b\xff\xfb\xe7\x01\x28\x84\x68\x12\x24\x91\xd3\xb5\xdc\x0b\x1f\x74\x59\xbd\x6b\x02\x77\xde\xe9\xae\xdf\x25\x70\x4d\xa4\xdf\x1f\xc5\x43\xa3\x43\x98\x54\x85\xb1\x54\x34\xd9\x98\xef\xb4\x50\x80\x34\xbe\xcf\x56\xfc\xdf\xda\x78\x11\x69\xbe\x8c\x87\x76\xaa\x37\x95\x20\x71\x3b\x1e\xa1\x5f\x69\x72\x00\x81\xb0\x06\x04\x91\xf7\xa5\x9f\x63\xf5\x7c\xd0\x79\xa1\xff\xbb\xd4\xff\x5d\xe9\xff\xae\xf5\x7f\x37\x0f\x74\x2c\x45\x85\x3b\x9c\xa4\x87\xb8\x8c\x7a\xd3\x8a\x86\xeb\x96\xb3\x86\x27\x83\xc5\x7c\x3c\x92\x32\x46\x0f\x3a\x88\x3b\xeb\xd1\xf0\x90\x5f\x42\xbb\x01\xf3\x30\xd2\xe1\x08\x58\xdd\x3d\xcf\x07\x94\x7e\x8c\x49\xa9\xd4\x43\x1f\xd7\x22\x06\x9c\xf9\x1a\x96\x28\x04\xdc\x41\xf3\x69\x3e\x98\xa5\xf4\xa2\xbc\x59\xf2\x72\xa0\x76\xa3\xea\x34\x6d\xd2\xff\xd1\x3f\x9f\x28\xeb\xb8\x28\xa8\x96\x38\x38\x87\xef\x7a\x99\xf8\x07\x95\x36\x31\x83\xb8\xd4\x6e\xbd\xc5\x9a\xed\x81\x15\x31\x2c\x5a\x7b\xbe\x46\xbf\x91\x72\xbb\xa9\xcb\xa1\x85\x14\xdc\x07\x2b\x22\x79\x78\x97\xe6\xab\x47\xe0\xdf\xf4\x2e\x55\xca\xde\xe1\x7e\xd5\x3f\x73\x53\x58\x3f\xd5\x55\xea\x79\xd6\x40\xc0\xd7\x7f\x15\x46\xb3\x9e\xb3\xb2\x79\xb8\x0f\xfc\x7f\xfd\x3e\x67\xc7\xfc\xd3\x83\xd8\xbb\x4a\x9a\x1f\x7f\x60\x97\x03\xcb\x32\x96\xcd\xca\x1b\x9f\xfd\xde\x6e\xec\x87\x87\x69\x18\xb2\xd7\xf2\x78\x5c\xf4\x78\xc4\xaf\xbb\xaa\x7e\xac\x66\xd3\x0c\x15\x9b\xaa\x65\x77\x71\x5c\xbf\x9c\xbe\x97\x7f\xf5\x28\xf8\x97\x1f\x1e\x74\xb8\xb0\x79\x2b\xc4\x83\xb8\xbc\xa0\x78\x32\xf7\xd4\xe4\xef\x17\x79\x26\xb3\xe9\x60\x5c\x0f\x67\x10\xfb\x83\x5f\x72\xbc\x9f\x86\x1c\x8f\x61\x47\x0d\x3e\x88\xaa\x87\x74\xe7\x8b\xcc\x17\xcb\x61\x5b\x6a\xbe\xef\x62\xec\x48\x6d\xec\x66\xe0\x77\x91\xcc\x46\x79\x1b\x80\x02\xc6\x81\x6f\x81\x88\xb7\xf5\xca\xfa\xd3\xcc\x80\xe1\xcb\xcc\xb7\x5a\x1c\xac\xfb\xea\xd7\x42\xe4\x6e\xa1\xb5\xe9\x2c\x0c\x16\xf0\x6f\x75\xc0\x94\xbb\x4d\x62\xca\x79\x07\xdb\x12\x1d\xf9\xe4\x9a\x5f\x74\x93\x39\xe4\x4c\x43\x4e\x16\xf5\x44\x2d\x8c\x27\xf9\xf5\x98\x8b\xac\x9d\xa7\x60\xc8\x2f\x7f\xeb\x90\x3f\xb3\xb7\x63\x95\x70\x4d\x9c\xc0\x2a\xef\xc7\xaa\xbc\xbc\xdb\x8f\xa2\x55\xa5\x48\x0b\xfa\x31\x82\xcf\x9d\xf5\xdf\xbe\x34\xa5\xbb\xca\x72\x13\x65\xec\x44\xd4\xd3\x05\x5f\xbe\xfc\xed\x8f\xc3\x4a\x3e\x67\x97\xdb\x39\x11\x16\x30\x53\xf1\x72\xdd\x4b\xfa\x15\xe3\x2e\xc8\x2d\x17\x2e\x43\x68\x1e\x84\xac\xe5\xf8\xb9\x95\xb9\xd0\xc7\x19\x7b\xe1\x7a\x59\x2b\x85\x1c\x82\xd8\x48\x07\x0a\xb1\x72\x95\x95\xd2\xb6\xaa\xb9\x7f\xa8\xeb\x0e\xf0\x3b\xfc\x46\x9d\x4a\x5b\xd0\xa5\x7c\x04\xd6\x13\x26\x1e\x9d\xf4\x94\x41\x2a\x8f\x06\xeb\x88\x17\xb4\x53\x60\x3c\x5b\xba\x8e\x22\x76\x01\xaf\x15\xf5\x9e\xd2\x1a\x7d\xb6\xde\xf9\x9d\x73\x85\x36\x7c\x72\xf9\x94\x2f\x1e\xf3\x00\x83\xde\xde\x46\x58\x35\x18\xfa\x88\xf8\xed\x1c\x70\xc0\x78\xe7\x31\xe0\x80\x90\x58\x25\xe5\xb7\xdb\xd0\xbb\xc3\x8b\x54\xc5\x1b\x2a\x23\xd4\x48\x1a\x87\x1f\x67\xf1\x34\x36\x1f\x05\x84\x25\xe4\xd7\x2f\xc3\xdb\x56\xa1\x74\xe2\xe9\xcc\x41\x47\x95\x90\x5f\x85\x54\x84\xb5\x7e\xcd\x6b\xf1\xca\x58\x93\x34\x43\x53\xd5\xba\xd7\xfc\x08\x7e\xba\x47\xce\x5e\x0d\x1c\xcc\x0c\x2e\x73\x7c\x17\x0c\x71\xe3\xc7\x35\xda\xc9\x97\x5c\xb7\x87\xf1\x31\xf3\x31\x32\x73\x71\x32\xeb\x59\x51\xaa\xd1\x91\xe9\x55\x0d\x28\x18\x50\xec\xb5\x74\x2b\x77\x1f\x55\x70\xc7\xd3\x56\x88\x8b\x3b\xf4\xf6\xf5\xcc\xcd\xb7\xb6\x14\x7d\x8c\x17\x0d\x07\x15\xaf\x84\x10\xd6\xee\x97\x8e\xfe\x43\x18\x6b\xe7\xab\x0b\xf4\x43\x20\x6b\x1b\xab\x8f\xe9\x43\x28\x6b\x4b\x4a\x87\xef\x21\x8c\xb5\xbb\xd4\x47\xea\x11\x3d\x73\xab\x48\x05\xe5\x31\x22\x63\xd7\x47\xc7\xdf\x21\x8c\xb5\x87\xd3\x87\xda\x91\x1c\xcd\x0d\x99\xdc\xe8\x18\x10\x53\xb7\xc2\xc3\x48\x94\xcb\x25\x8d\xc5\x12\xba\x15\x0f\xb6\x42\xb4\x10\xda\x8a\xe9\xda\x41\x56\xcc\xa7\x11\x96\x35\x03\xa5\x06\x30\x0e\xac\xda\xa1\x4e\x08\x6e\x05\x47\x8d\x78\x25\x46\x6d\x84\x37\xcd\x98\x23\x04\xb6\x62\x94\x76\xd4\x10\xe3\x36\xe2\x8c\x50\xda\x70\x90\x4f\x41\x81\x31\xbf\x0d\xd9\x80\x9d\x9c\x17\x40\xc5\x75\xea\xd9\xf7\xff\xe5\xbf\xfc\x97\x11\x32\x83\x22\x90\xc4\x80\x9e\xd8\x24\xcd\x11\x7a\x0f\x55\xad\x53\x0e\xa2\x9d\xc6\xd9\x34\xcd\x11\x1f\x4e\x73\x50\x4d\x92\x28\xd0\x5c\x9b\xaa\x69\x42\xc2\xa9\x02\x15\x27\xc9\xc2\x21\x60\xd3\x35\x8d\x52\x38\xdd\x7e\xac\x90\x54\x87\x91\x64\xd3\x34\x8d\xdc\x1d\x34\x87\x21\x47\x53\x05\x43\x92\x90\xb1\x61\x36\xc3\xe9\x7a\x87\x4b\x3f\xb0\xa9\x96\x62\x2b\x1c\x4e\xb1\xb7\x00\x24\xc9\xc1\x3e\xd8\x34\x4d\xab\x1e\x4e\x13\x18\x12\x92\x2a\x34\x34\x36\x5d\x73\x9e\x70\xd1\x55\x21\x25\x23\xa1\x66\xbe\xdb\xae\xe5\xf3\x99\xc6\xf7\x58\x7e\x54\x71\x20\xb3\x68\xee\xce\x4d\xe5\x13\x79\x7e\x22\x92\x76\x9c\xe0\x32\x78\x64\xc0\xaf\x3c\xf0\xdd\xa3\xff\x46\x95\x9d\xa7\x8a\x5c\x1a\xd5\x7c\xb5\xd9\xbf\xc9\xd3\x27\x66\x7d\xf7\xaf\xc7\x28\x5a\x7c\xd7\x01\x5d\x92\xbc\x98\x97\x6d\x53\x80\x73\x35\x08\x74\xd9\x83\xf2\x35\x3e\xab\xae\xfd\xc9\x51\x04\xb6\x63\x3d\x58\xcd\x39\xa1\x81\xe2\x81\x2c\xf7\xca\x9a\x7c\xb8\x7f\x19\x41\x0d\x14\xcf\xc3\x51\x4e\x0c\xb2\xee\x41\xf2\x2b\xf7\xcf\x48\x98\xb4\x87\x39\x54\xe5\x6b\x3d\xdc\xac\x03\xa1\x16\x03\x4b\x4d\x42\xb2\xb3\x38\x40\x88\x9a\x04\x19\x48\x09\xf7\xff\x9a\x25\x24\xad\xed\xd0\xb0\xb4\xbc\x5c\x86\xe3\x2a\x18\x6a\x6d\x42\x91\x34\x77\x9b\x41\x96\xe7\xf2\x46\x62\x4a\x4c\x71\xd3\x98\x06\x82\x4d\x55\xde\xce\x6f\x14\xd0\x3e\xee\x81\x6e\xc9\x9b\x8b\xf7\x7d\xd6\x43\x1d\xd9\xf0\xb2\x2f\x02\x19\x14\x25\xe1\x43\xed\xe2\xd3\xbd\x04\x76\x4e\xfd\x4c\x72\x9f\x0c\xf8\xf8\xaa\xa6\x25\x69\xa6\x03\x9e\x22\x39\x90\x10\x4b\x34\x20\x28\x10\x16\x0d\x3a\x97\x0d\xb7\xa1\x22\x90\x41\x55\xb2\xa4\x3e\x1f\x4a\x70\x04\x1d\xc1\xad\xc0\x60\x11\x97\xb5\x93\xdd\xc7\x76\x58\x52\x14\xcc\x71\xe0\x9b\x8f\xcd\x4b\x4e\x0f\xbc\x78\x11\x01\x9d\xca\x28\x59\xc7\x0b\xd0\xc1\x7c\xad\xc6\x52\xaa\x83\xe3\xe5\xc2\xd2\x74\x4f\x07\xc6\x4b\xc0\x5e\x9e\x3e\x33\x12\xe7\x6a\x6d\x59\x18\x9d\x09\x49\x42\xa7\xa0\xa7\x28\xb9\xc5\xab\x41\x23\x0e\x2d\x35\xa4\xe3\xdd\x0e\x9b\x3f\x37\xb5\xfd\x7e\xb0\x45\x79\x0d\x2e\xd8\x46\x50\xd9\x30\xd0\xca\x9b\x88\xfb\x50\x9a\x1a\x67\xcc\x1c\xd8\x3e\xdd\x67\xb6\x19\xf0\x82\x6f\x80\x22\x7c\x6a\xf8\xff\x29\xd8\xed\x5c\xd2\xdd\x02\xf4\xef\x98\x5f\x29\x15\x8d\x01\xf9\xd7\xbc\x7f\x17\x06\x83\x1c\x8c\x91\x5c\x17\x49\x4d\x4d\x37\xf1\x71\x43\x41\xfa\x14\xe7\xb8\x05\xad\xbf\xbd\xa9\xfd\x3d\x0a\x6e\xe8\x9f\x84\x06\x18\xba\x86\xbd\xb1\x8c\xdb\xb7\x1b\x39\x11\xc4\xc7\x03\x30\x70\xe2\x44\xe1\xa1\x6a\x1d\xad\x19\x34\xf0\xcc\x67\xd8\xe6\xc0\x48\xd2\x8b\x78\xe8\xef\xac\x7c\xbd\x8a\x50\x2a\x39\x4f\x0d\x4d\x50\x2f\x4d\x93\x40\x0c\x00\x1d\x2b\x46\x72\x16\x81\x31\x2c\x02\x3c\x24\xc8\x30\x22\x0f\x65\xf9\x0c\x5e\xd0\xc2\x60\x0c\x58\x83\x9c\x36\xf6\x8b\xe3\xa0\x22\x55\xde\x90\x6a\xb9\x1a\x0c\x8f\xdc\x6b\x21\x61\x06\x96\x92\x4c\xa4\x5f\x90\x40\x83\xe1\x61\x59\x4e\x83\xac\x08\x3b\x72\xa6\x07\x76\x04\x8c\xce\x61\x38\xbc\x0a\x21\xd6\x0c\x1b\x89\xa3\xb8\x29\xae\x02\xe7\xb5\xf5\xdc\xeb\x20\xb0\x81\xdc\xdc\x12\x72\x94\x45\x1b\x34\xc8\x6f\xbc\x5f\xc9\x39\x6e\x33\x8c\x9f\xf6\x7a\xce\x49\x03\x1e\x6d\x18\x30\x55\x34\xc8\x76\xe8\x8d\x4a\xbc\x4f\x4e\x4e\x29\xdb\x15\x50\xb5\xe6\x95\x91\x46\x3b\xda\xee\x91\xbf\x27\xc6\x32\xe9\x5b\x80\x51\x95\x93\x62\xde\x65\x18\x11\x0d\xb5\x1f\x38\x6f\x6f\xae\x91\xb4\x5f\xc2\xc9\x89\x9c\xc4\xf7\x6b\x04\xe2\xb6\xfc\xd1\x7e\x07\xc4\x70\x29\xb9\xfb\xed\x1b\x2f\xfb\x2d\xe8\x21\xd7\xd8\xdb\x03\x37\xb1\xbc\x1e\xf3\x53\x4b\x93\x4e\x80\x17\x95\x17\x0d\xed\xb8\x1e\x22\x60\xa0\x3f\x3b\x1c\x8d\x0c\x88\xed\xda\xbf\x52\x87\x27\x0e\x30\xb0\x3e\xa5\x67\xb1\x7c\x27\xc1\x52\xec\x66\x79\x4d\x1a\xcb\x0c\x60\x77\x9f\x31\x68\xd8\x6e\x05\x39\xbd\x82\x65\x83\x84\x99\xd3\x9d\x1b\x03\x5f\x9e\x55\x49\x4d\xbb\x39\x99\xd1\x51\x1c\x99\xb4\x15\xa4\xfd\x8a\x97\xc0\x5b\xe5\x6b\xa9\xfc\x85\x84\xda\x6d\x81\x07\x9d\x5c\xf9\xec\x46\x63\x4b\x0e\xa0\x21\xe9\x5b\x5a\x90\x50\x87\x1d\x70\xdb\xe9\xd9\x39\xc3\x20\xbe\x99\x34\x03\x03\x55\xd8\x2a\x7f\x7b\x81\x93\x6b\x40\x7b\x9c\x24\x36\x4c\x3b\xe0\xc2\x7f\x3c\x7f\x6d\xf1\x5c\xe1\x73\xf0\x0e\x06\x0b\x1e\xd0\x0c\xcc\x1c\xd9\xbc\x29\xf9\xa0\xae\xe8\xb9\x78\x0b\x16\x8c\x6e\xa8\x1d\xc2\xd7\xd2\x6b\xc6\xc5\x72\x65\x9a\x06\x27\xe4\x1a\xb8\x0a\xc5\x4d\x46\x37\xc8\x4e\x8f\xd6\x7b\xc0\xe0\xb1\xf4\x41\x26\x40\xda\xd5\x95\x5e\x44\xc7\x0b\x0b\xca\x83\x72\x63\x03\xd7\xf9\x89\x34\xc4\xdb\x18\xb5\x88\x24\xbd\x43\x4d\x21\x41\x80\xdb\x76\xbd\x96\xed\x35\x65\xae\x25\x65\x32\x10\x3c\xe4\x55\x73\xce\x12\xd2\x46\x1c\xc1\xb8\xe6\x9d\x41\x4e\xa3\x69\x04\x1c\xb2\xb4\x29\x49\xbb\x7a\x04\x4b\x25\x71\xea\x8c\x1c\xc7\x0c\x11\x23\xc3\x26\x83\xc2\x71\x9b\x9a\xe5\x29\xbd\x56\x01\x53\x56\xdd\xb4\x19\x2d\x83\x18\x2c\xab\xeb\x1b\xd5\xfc\x45\x7c\x00\x0b\xef\x4b\x42\x1b\x96\x1d\x8c\xfa\x38\x40\x06\x7e\x5e\xe1\xb5\xad\x90\x16\xf0\x32\x5d\x10\x03\xa1\xab\xec\xb7\x6b\x52\xbd\x29\xd3\x78\xe2\xe6\x8a\x1e\x2b\xc0\x33\x95\xbb\xee\x1e\xc8\x15\x36\xb7\x1e\xc8\x61\xfc\x15\xac\x3e\xe4\x0e\x76\x07\xf7\xea\x44\x6a\xd7\x62\x01\x7a\x93\x71\xde\xca\x9a\x7d\x6a\xc9\xa5\xf6\x02\x68\x7f\x29\xee\x2d\x9e\x7b\xb8\xdb\x93\xa0\xfd\xee\x34\x59\x27\xa1\xeb\x0c\x7b\xe7\x64\xad\x41\x3d\x4e\x55\x9e\xcd\x8b\xe4\xcd\xe1\xb0\x45\x03\xfe\x82\x2f\x78\x7d\x90\x03\x4e\x95\x3d\xe9\x01\x1d\x1a\xfa\xb9\xa4\xbd\xce\x88\x21\x10\x97\x3f\x19\x03\x0f\x96\x89\x28\xa8\x4f\x58\xd1\x36\x33\xa1\xbd\x62\x8a\xb6\xd0\xe5\xff\x94\x5f\x86\x47\xe8\xb1\xeb\x05\x82\x20\x15\x19\x7a\x8b\x17\xd0\xb1\x4f\x9f\x1b\x47\x4c\x29\x02\xcd\x71\x2d\x0f\x07\x7d\x12\x57\x68\x90\x0b\xb1\x15\x5a\xd3\x91\x20\x83\x24\x4e\xf9\x91\x14\xed\xe6\x00\xc6\x4a\x72\x24\x41\x52\xe0\x98\x3a\x96\x3d\x03\xa1\x5b\x91\xd0\xb1\x8a\x2d\xb4\x43\xa7\xab\x63\x81\xb1\x01\xec\x9c\xe8\xfe\x62\x4b\x00\x73\x29\xe9\x95\xc3\x0a\x58\xb4\x8a\xb4\xe7\x51\x92\x42\x83\xf2\xc2\x48\x62\x87\x18\xf8\x25\xf2\x86\x65\xb2\x33\x32\x60\x1d\xcb\x2b\x23\x83\xa9\xd9\x06\xac\xc3\xe8\x05\x0f\xdb\x03\x96\x58\xd2\xb8\xa6\xc7\x23\x98\x1e\xe9\xa8\x33\x08\x57\xc8\x3b\x58\x3c\xbe\x62\x9c\x61\xd0\xf4\xcc\xd2\x67\xb1\x5b\x43\x02\x83\x10\x41\xfb\xf9\x33\x3d\x9f\x80\x38\x82\xd0\x18\xb1\x30\xe7\x72\x6b\xf3\xfa\x4c\x47\x61\xa0\x6b\x55\xba\x02\x86\xc0\xab\x4a\xae\xe9\x99\x9c\xc7\xe3\xe5\xd0\x96\x43\x5b\x14\x35\x7b\xa3\x5d\x48\xe0\xf0\xb6\x54\x4f\xc4\x20\x3c\x7e\x29\x49\x1d\x8b\x41\x2c\xfe\x98\x50\x9b\x11\x31\xd0\xb0\x22\x3f\xb2\x79\xe5\x70\xdb\x52\xc0\x75\x79\xa1\x42\xd5\x31\x58\xb0\xd5\x65\x9a\xd2\x72\x64\x68\x29\x2c\x76\xd4\x68\x77\x27\x06\xeb\xba\x2c\x4f\xb8\xc6\x52\x7d\xbd\x00\x31\x2a\x6e\xf1\x6a\xee\x97\xe7\xb4\x8b\xb5\x06\x31\x41\xf1\x40\x77\x5e\x93\xe6\x68\x03\xf0\x09\xfb\x7d\xe4\x16\x9c\x0e\x20\x25\xa0\x21\x2e\xff\x35\x8e\x87\x41\xf0\x6b\x5b\xf2\xd5\x85\x3c\x20\x40\x00\x46\x99\x01\xe8\x0c\x2c\x82\xf9\x88\x15\x45\x7e\xab\xf3\xda\x3f\x79\xc4\xab\xd8\xae\xe1\x99\x9c\x62\x10\xd1\x4a\xdb\x03\xbd\x12\xc4\x20\x64\x54\xf9\x60\x0a\x88\xbb\x5c\x8d\x3c\xa6\x40\xa9\x17\x33\x81\x45\xba\x2d\xb9\x6c\x3c\x00\x37\x98\x5b\x01\x57\xe0\x23\x4a\x6d\xb8\xb9\x63\x47\x6e\xb5\x01\x23\x89\x5c\x49\x47\xab\x2d\x5a\x81\x79\x56\x41\x6b\x73\x0d\xe6\x81\xdd\x62\x1e\x7d\xa0\x56\xd4\x47\xcb\xc9\x13\x7a\x5f\xa7\x24\x7a\x6f\x15\x38\x4b\xb6\x74\xcc\x6f\x60\xfa\x92\x5f\x1d\x30\x78\xbd\xea\x0e\x66\x1d\x41\x94\x25\xc9\x72\x72\x4d\x06\x7a\xb2\x66\x05\x4b\x65\x1a\x91\x0b\x78\xbf\xc0\xdc\xf9\x16\xe9\x1b\x12\xd4\x37\x0f\xad\xcc\x0e\xf3\x60\x4f\x90\x24\x03\x90\xef\xc1\x4e\x49\x79\x3a\x89\x8e\x3a\x52\xde\xce\x22\x5a\x59\x80\xe4\xf2\x21\x5a\xc3\x70\x1d\xed\xdd\x82\x78\x8d\x4c\x3f\xa7\x5c\xb4\x01\xcd\xed\x5c\x36\x64\xb0\x6e\x19\xc1\xd9\x5e\x5c\xba\x4b\x06\x32\xa2\x1d\x58\xc4\x8a\x1b\x26\x13\x11\xca\xad\x48\x94\x60\xc5\x77\x65\xaf\xf5\x2d\x71\xec\x8f\xb0\x04\x44\xc2\x58\xe2\xa4\x1d\x03\x5d\xbb\xe5\xcc\x09\xb7\x00\xbe\xaf\xe8\x2a\x0f\x60\x0c\x28\x57\xe5\xab\x31\xbe\x64\x24\x92\xf4\x9c\x13\x7f\xbd\x96\xdc\x75\x8d\x91\xe1\x7b\xa9\xa4\x6f\x49\x7b\xcc\xeb\xa5\x05\xea\x9a\x4f\xa2\xf5\xca\x60\xc6\x85\x74\x13\x19\x80\x4e\x94\x1b\x53\x2e\x74\x83\x36\x0b\x03\xcc\x25\xaf\x8d\xdd\x1c\x1a\xe3\x76\x6b\x01\xba\x70\x6e\x07\xc5\x97\xc9\xf4\x22\xb4\xe4\x6c\x50\xb2\xb2\x81\x5d\x62\x4a\xd6\x36\x2c\xcd\x6d\xb2\xb1\x21\x5d\xec\x26\x5b\x5a\x65\x9c\x5c\xec\x68\x78\x77\x13\xf7\x74\x05\x07\xeb\x0e\x0d\x76\xb2\x0f\x74\x97\x0f\xd2\xc6\x09\x98\x6d\x0d\x40\x9a\x3e\x08\x33\x2b\x30\x97\x1c\x40\x90\x59\x01\x3a\x05\x00\xb6\xca\x93\xeb\x49\xb6\xa5\x3d\xb8\x25\x1c\x03\x2b\x81\xe0\xdd\x8e\x5b\x4c\x57\x20\x5b\x18\x83\x44\x28\x04\xed\x10\x5c\x0c\xb2\xa1\x14\xbc\x93\xef\x95\x01\xe8\x66\x78\x6d\x40\x3a\x38\xdd\x58\x9c\x3a\x58\xb4\x47\xa7\x5f\x8b\xe3\xa5\xb3\x86\x93\xe9\xe5\xce\x55\x85\xe6\x7e\xb9\x77\xc1\xbb\x9a\xb1\x4c\xcc\xd9\xd7\x05\xb9\x8e\x4c\x48\x9a\x87\x75\x6c\xc2\x39\x9b\xb7\x06\x09\x43\x25\xb7\x17\x5e\xc3\x19\x83\x8c\x2d\x00\x4d\x33\x01\xc3\x1a\x03\xac\xab\x67\x80\xa5\x05\xd0\x4e\xb6\xb7\x0e\x73\xd4\xcd\x78\xce\x8a\x3b\xe6\xaf\xe8\xe2\x6f\x6f\x89\xde\x09\x09\xd2\x8b\xca\x57\x3a\x66\x0e\x96\x71\x4d\xe5\x4a\x25\xd9\x61\x18\x9f\x97\x1d\xaf\xc0\xda\xb6\x7e\xf6\x66\x9a\x81\xad\x01\x56\x3f\x37\x74\x54\x0f\xb8\x71\x45\x72\x73\x01\x81\xc8\x8d\x38\x87\x46\x0f\xfa\x04\x2c\x85\x0e\x39\xbd\xac\x05\x11\xd6\x53\x42\xe6\x4e\xc4\xc0\x5b\x79\x66\x6f\xae\x84\xb3\x18\xe4\x42\x72\x2f\x99\x8c\x3c\x80\x04\xa2\x63\x59\xd0\x11\xeb\x68\x7b\x30\x80\xe6\xe2\x08\x30\x09\x09\x02\x1e\xec\x85\x15\x8e\xe1\xb0\xda\x19\x60\xae\x31\xb6\xda\x43\x27\x9b\x94\x05\x88\x3d\x08\x10\xaf\x66\x6c\x30\xa8\x48\x99\x22\x51\xa6\x36\x9c\x0f\xef\xd1\x14\xa2\x37\xda\xb6\xa2\x84\xe9\xad\xb1\xc6\xec\xdc\xb2\xa3\x0f\x3c\x8d\x31\xf8\x6b\x59\x79\xb7\x8a\x41\x9a\xa4\x84\x67\x9f\x52\xe6\xcb\x0d\x8e\x41\xd6\xa4\xe2\x47\x8c\x6c\xe9\x64\x79\x6b\xad\x70\x2d\x79\x07\xad\xb7\x82\xd1\x6c\xbd\x13\xef\xad\x62\x74\xb0\x78\x81\xaa\xf4\x56\xd8\xe2\x0a\x2f\x79\xc6\xfc\x15\x76\xb8\x82\xc8\xab\xf4\xc2\xef\xe1\xd2\xcd\x91\x85\x19\x81\xed\x9d\x5f\xdd\x40\x60\x2c\x94\x64\x58\x26\x06\x5b\x5a\xe7\xe6\x52\xac\xc9\x19\x16\x78\x8b\x75\xbd\x24\x41\x06\xfd\xaf\xe8\xd4\x24\x90\xce\xcb\x21\x7c\x0b\xf5\x41\x57\x84\x9a\xe7\xa4\x9d\xda\xc3\x04\x5a\x6e\x3d\x1d\x49\x1c\x60\x23\xb7\x66\xd5\x8b\x63\xef\x1d\xa4\x91\x33\xc7\x3a\x19\x78\x69\x75\x43\x87\xcf\x81\x7b\xc6\x2e\xb7\xe6\xcd\x0d\x08\xe2\x0a\xe7\xf6\x72\xa8\x47\x16\x9a\x30\x69\x04\xc3\xbb\xbc\x76\x90\xb6\x2a\x98\x98\x9f\x93\x82\xdc\xa6\xd9\xed\x0d\x96\x9d\xed\xdf\x81\x0c\xf1\x8b\xc3\xac\xc2\x0d\xa8\xca\x61\x9d\x41\x7c\xf8\xc2\xc8\x79\x1b\x2c\xc6\x7b\xde\x15\x77\xa4\xfa\x2e\x4d\xd9\xd0\xd3\x07\x48\xb2\xd3\x70\xae\xf9\x03\x64\xda\x5d\xda\x3a\x4f\xc9\x1e\x1c\xec\xa5\x1a\xfe\xe2\xe2\x05\xef\x34\x32\x84\xf1\x5e\xca\xa2\xbd\xb8\xbb\x0e\x6c\x20\x6b\x48\x5a\x29\x16\x30\xfe\x98\x96\x74\x56\x17\xd8\xda\xa8\x1b\x76\x9b\x8b\xe3\x31\xaf\x8e\x0c\x30\x30\xc1\x1e\x93\xba\xf1\xc3\x42\x13\xe5\x01\x83\x21\x37\x72\xbf\x3c\x5a\xc1\x64\xda\x96\x1c\xc4\x11\x48\xe4\xae\x69\x57\x2a\x02\xf9\x3d\x47\x94\x7d\x89\xa1\x18\x6e\xa2\x07\x14\x2c\x15\xa4\xe4\x7c\xa0\x20\x9c\xff\x0b\x9d\x0d\x1f\x81\x65\x42\x7b\xbd\xb4\x8e\x14\xb2\x08\x68\x9e\x03\x84\x52\x3c\xd2\x88\x0e\xfa\x9e\x16\x65\x2d\xce\x4b\x25\x32\xe1\x9c\xde\x4e\x5a\x40\x37\x33\xa9\x9e\x69\xa7\x0e\x6c\x5c\xa4\xe5\xf1\xc8\x68\xcf\x06\x3a\x2b\x25\x29\xb1\x23\x48\xa9\x6d\xf3\x42\x5e\xbe\xe5\xf3\x95\x40\x4e\x45\x59\xdf\x72\xc7\x9e\x3c\x70\xf8\xd9\x45\x66\x85\xa4\xa4\xca\x1d\xa1\x83\x58\x71\x35\x48\xc8\x29\x26\x02\x09\xe1\x17\x71\x55\x48\x42\xa6\xf4\x47\x20\x1d\x9c\x4c\xb5\x06\xf9\x46\x45\x99\xca\xfb\x3e\xd4\xd2\x89\x34\x67\x60\x9a\xb9\x25\x29\x9b\xd7\xe7\xb6\x69\x68\x73\x8b\x32\x49\xb9\x97\x53\xd5\x39\x6d\x23\x41\x36\x69\x27\x6e\x0a\x0c\x24\x93\xde\x12\x92\x3b\x90\x49\x5a\xdf\x1c\x3b\x9c\x60\xf3\x3b\x25\xa7\xbf\xf8\x00\x97\x3d\x9f\xc8\x03\x03\x07\xb0\xa4\xaf\x48\x35\x8b\x0f\x20\xa9\x24\x77\x65\x48\x2e\xc0\x54\x7b\x20\x77\x46\x16\x20\x08\x22\x36\xeb\x29\x90\x18\x2e\xc1\x9a\xb2\x72\x52\x8b\xa1\xa1\xe2\x7c\x8b\xc7\x86\x18\x25\xc9\x05\x98\x0f\xce\x65\x43\xa6\x11\x2c\x96\x1b\xb8\x80\x25\x37\xdf\x16\x20\xba\x52\xb7\x87\x57\x3a\x27\x69\x69\xac\x33\x29\x2d\x85\xfb\x7d\x62\xda\x21\x0f\xa6\x44\x60\xaf\xaf\x2e\x69\x47\x21\x4b\x11\xc8\x3c\xa9\x53\x76\x75\xa8\x5c\x94\x65\x18\x98\xaf\xa8\x7d\xd0\xcc\x40\x5d\xdc\xce\xc9\x81\xf9\x69\xc4\xeb\xcc\x51\xcb\x4b\x2c\x5e\x1b\xc4\x74\x99\x9f\x16\x08\xc9\xa3\x4a\x7e\x52\x20\x3c\x2f\x6b\x5d\x5b\xf9\xd4\xd7\x08\xa9\x05\x5d\x69\x84\x14\x58\x87\xf1\xcf\xa4\xcf\x00\xf2\x44\x4a\x3a\x0b\x06\x9c\xed\x12\xc6\x98\xf6\x91\xe0\x89\x2e\xb1\x18\xd6\xb7\x75\x50\x90\x2b\x0c\xa9\x6e\xf8\xa0\x00\x41\x00\x54\x9c\x62\x75\x46\x99\x97\x1b\x03\x50\x5d\x35\x45\x82\x6e\x0d\x50\x67\x40\x7a\xb9\x33\x20\xf5\x65\xa0\x24\xec\x30\xe4\x44\x72\x1c\x09\x02\xf2\xf3\xda\xc6\x91\xd0\x19\x81\xa5\x57\x7e\x75\x02\xc1\x9c\x91\xeb\xb3\x83\x27\xb0\xc8\x4f\xe9\x9c\x39\xb0\xde\x16\x67\xa9\x48\x10\xd0\x05\xf2\x52\x3b\x12\x08\x9c\x38\x4d\xe8\xed\xfb\x14\x1e\xdb\x52\x9f\x29\xa8\x3d\x98\xe2\xba\xf3\xe0\x2e\x81\xa6\x40\xa0\x63\xa0\x07\x68\xa8\xf3\x67\xd6\x9c\xab\xb2\x3d\xd1\x8d\x49\x01\x0f\x1c\xad\xcb\x4b\x49\xe1\xf4\x59\xd3\x39\x2a\x60\x6b\xb4\x15\xb7\xb4\xd1\x2b\x72\x30\x23\xb5\x37\x3e\xad\xa7\x55\x7e\x23\x83\x4e\x20\x59\x93\x5b\x7f\x0f\x1c\x3a\x87\x46\x47\xec\x62\x60\xb8\xe5\x5b\xec\x55\x72\x23\xd7\x67\xc0\x66\xb3\x96\xdc\x29\x8e\xc1\x76\xe7\xcd\xb1\x89\x1d\x83\x6d\xce\xac\x2c\x0a\xda\x55\x80\xb9\x1b\x5c\x14\x74\x30\x6f\x50\xb6\x37\x32\xc2\x18\x83\xac\x8e\xaa\xa5\xe7\xbf\x18\xa4\x73\xbc\xd2\x8e\xcd\x1a\x0e\xe9\x8a\x3a\xd5\x1b\x83\x33\x43\xf5\x99\x3d\xd3\xd3\x7a\x04\x57\x3c\x6f\x37\x3a\xe5\x87\x65\x06\x90\x70\xa6\x48\x39\x02\x77\xfb\x54\x96\x22\xb0\x2e\x5e\xc4\xa3\x63\xc9\xe0\x08\xcd\x4b\x5e\x93\x4d\x00\x49\xed\x17\x99\x97\xe5\xa4\x3b\x58\x93\x2c\xaf\xd3\x92\x8e\xad\xc4\x47\xb0\x6d\xa6\x1e\xb0\x94\xa7\xdc\x1c\xe7\xd7\xe2\xe3\x12\x0d\xcc\x1b\x7d\xe4\x13\x1c\x43\x7f\x15\x57\x12\x57\x9e\x84\x96\x1d\x08\x6d\x72\x87\x5a\xa4\xbd\xfa\xa0\x17\xc8\x92\x32\x3e\x8f\xfa\xa0\x87\x21\x73\xca\x9b\x73\x7b\xf0\x9d\x12\x5b\x98\x4c\x93\x50\x7b\x8b\x5b\x12\x2c\x31\x08\x93\x40\xe8\x44\x9d\xb8\xf8\x9a\x36\x86\xd9\xc2\x86\xf3\x34\x24\x5b\x9a\x0a\x07\xd2\x69\xc8\x0a\x96\x86\xba\x32\x99\xb2\xb5\x25\x7d\xd2\x8a\xc6\xa6\xd8\xbd\x27\x95\x62\x78\x62\xff\x53\x9a\xd1\x9b\x88\x60\xa1\x90\x37\x69\x49\xe7\xba\x81\x13\x35\x22\x83\xbd\x3d\xf8\xce\x1c\x81\xb3\x98\x1a\x98\x84\x1a\x8c\xd3\x27\x97\xd3\xb6\x43\x20\x3e\x92\x7b\x8b\x3f\x57\x80\x00\x9c\xe4\x11\x67\x9d\xe9\x44\xbc\x78\x03\x27\x4a\x71\x23\x92\x18\xe7\xc7\x82\x5e\xbc\x82\xa4\xef\xfc\xca\xc1\xf9\x14\x42\xe5\x38\xc5\x1b\x98\x3c\x9c\xa7\xcf\xa4\xe1\x00\x87\x54\x13\xba\xcb\xc0\x19\x55\xde\x65\x87\xd6\x95\x04\xbc\x8d\x6d\x38\x8f\x0c\x41\xce\x79\xd3\x5e\x0e\x05\xc9\x1d\xb8\xa0\x43\x01\xf9\x10\x82\x0d\xfe\xdb\x8d\x9e\x7e\xc0\x21\xd9\x57\xee\xe7\x95\xaf\xa4\x75\xdc\xc2\x94\x08\xde\x6b\x74\x68\x1c\x6c\xbd\xf1\x51\xd4\x92\xfd\x0a\x36\xdd\xb2\x2a\x3f\x1c\x1c\xb3\x22\x38\x16\x51\x3f\xbf\xd1\xd6\x18\x1c\x85\x38\x96\x6d\xe5\x96\x03\x48\x35\xe3\x8b\xe3\xa2\x20\x5d\x87\x1d\x1a\xdb\x0d\xb9\x20\x8f\x77\x83\x44\x5f\x48\x17\x0a\xc4\xb5\x5f\x59\x7e\xa0\x29\x0d\xc2\xac\xd8\xb5\xa2\x5d\x07\x78\x2a\x39\x39\xc9\xab\x00\xc9\x9e\xd9\xa5\xc6\x38\xf1\x9c\x90\x8d\xc1\x41\xe6\x97\xfc\xc2\xe8\xb4\x49\x10\x08\x12\x57\x91\x91\x30\xd0\x67\xa9\x32\xe7\xa4\x0a\x66\x8b\xb7\xe4\x5c\xd2\xf4\x98\x61\xa4\xc9\x08\x11\x3c\x53\x93\xd1\x87\xeb\x63\x70\x0c\x4f\x01\x79\x86\x06\xb8\xb6\xa5\x96\xe3\x88\xb5\xb7\xd2\x97\xbf\x9d\x2c\xa9\x0a\x24\x24\xf0\x2f\x79\xbf\xa5\x79\x49\xce\x39\x31\x48\x0f\xcb\xf2\x13\x1d\x18\x03\x79\x61\xb9\xbc\x62\xcc\x91\xf9\x08\x92\xc2\x06\x40\xff\xe4\x04\xf2\xc2\x32\xee\xe2\xd2\xde\x20\xc8\x05\xfb\xa5\x2c\x2f\x05\xe9\xb9\x81\x14\xb0\x03\xe3\xba\x97\xd2\x61\xb3\x95\x09\xe5\xe9\x9e\x03\xf0\x67\x1b\x46\x1b\xf3\xc3\x06\xc3\xf8\xd0\x81\x85\xcd\xad\x74\x2c\x9d\xe3\x03\x30\x4d\xec\x45\xdc\x89\xed\x48\x1f\x3d\xc0\xc0\x0e\x5f\x65\xb8\x2e\xf5\x89\x0f\xd0\xed\x75\xec\xb9\x26\x60\x39\x9a\x31\x3a\x55\x21\x06\xcb\xc6\x5f\xea\xa3\xbc\x41\x8b\x04\x03\x7b\xa1\xec\x40\xae\x02\x62\x70\xde\x9e\x5d\x6e\xf4\x11\xa9\x38\x43\xc6\xd0\x23\x59\xe0\xc2\x9d\xe8\x51\x09\xbc\xb6\x73\x22\x8e\xea\xc8\x1c\x5e\x12\x12\x46\x63\xe4\x53\xe9\x6e\x1b\x0a\x1c\xb6\x5f\x7f\x25\x01\x36\xc0\x10\x73\x8b\x48\xf3\x06\xf4\xa2\xc8\x33\xe6\xba\x29\x23\x66\x5b\xe4\x43\x93\xc1\x87\x18\x5c\x86\xf4\xe6\x38\x77\x0c\x8e\x4c\x89\x17\x91\x8f\x94\x62\x2f\xa2\x85\x01\xe4\x96\xff\x02\x24\xfb\xe5\xe5\xa7\x73\x49\x3a\xda\x0b\x90\x14\x24\xa6\x86\xc2\x11\x9d\x58\x44\x70\x8f\x34\xb9\xde\x12\x32\x1a\xb6\x88\x60\x58\xff\xad\xe6\xf8\x92\x8c\x0e\x71\x67\x30\xd6\x72\x65\x69\x93\x89\x0c\x1a\x72\x27\x6d\x01\x8e\xb3\x88\x9b\xa9\x1c\x07\x4e\x16\xe0\x78\x25\x2f\xe3\x96\x98\x5c\x9c\x2f\x40\xa2\x56\x21\x9a\x42\xae\x54\x16\xe8\xb6\xb7\xa2\xa8\xe9\x83\xcb\xc0\xf4\x9f\xf3\xaa\xa9\xf3\xeb\xa1\x2d\xa8\x89\x71\x11\xc3\x5b\xb3\x2e\xb7\xe2\x4d\x6c\x7b\xd0\xe7\xf8\xd7\xd0\xc1\x49\x1a\xde\xd3\x24\x18\x50\x63\xae\xc4\x35\xf7\xe3\x28\x30\x10\x17\xe5\x86\xcb\xb1\x88\x58\x80\x88\xa3\x7a\x95\x96\x04\x82\xa7\x6b\x9f\xe9\xfb\xf6\xc0\x46\x5b\xf2\x52\xba\x2e\xd6\x01\x69\x09\x72\xcb\x90\x84\x41\x49\x9a\xf4\x9d\x24\xf0\xfc\x8e\x98\x37\x3a\xb3\xd6\xdd\x6f\x23\xb7\x19\x8d\x6f\x7c\xe6\x65\x8d\xf9\x51\x1d\x97\x31\x3e\x92\xc7\x80\x22\x7c\x54\x9f\xa6\xab\x4a\x08\xe2\xb2\x80\xe4\x40\x96\x34\xdc\xf5\xaa\xa9\x02\x8a\x15\x78\x3f\x83\x38\x89\x3a\xcc\x5d\x5d\x55\x79\x16\x99\x5e\xaf\x82\x21\x25\xb6\xf3\x9c\xa7\x10\x40\x7c\x16\x5c\x0c\xd3\x11\x10\xfc\x92\xd5\x80\xd3\x21\xb2\x10\xc6\xcf\x14\xc1\xcd\x27\x96\x64\xae\xcb\xbf\xe0\x39\x13\x9d\x8a\x40\x9f\x7f\x89\x40\x0e\x91\x3a\x44\x42\x01\x81\xdd\x6d\xb5\x75\xed\x01\x05\xd1\xaf\x3c\x6d\x1c\x97\xdf\x2c\xd1\x2d\x69\x37\x5b\x01\xf8\x2c\x9e\xd2\xa7\xa9\xc1\x59\x4e\x99\x84\x46\xc2\x80\x1c\x53\x17\x08\x30\x49\xf9\xe9\x4a\x27\x6a\x80\x9d\x78\x19\x28\x09\x3a\xa9\xa6\xce\x3f\x79\x40\x07\x89\x67\x25\xcd\x1c\xbc\x95\x2a\xbf\x3a\x8f\xa8\x83\x28\x45\x92\xd1\x57\x4f\x0d\x0a\x46\x1f\x8d\x85\x17\x4a\x39\x2e\x4c\x41\x37\x4c\x9e\xdb\xe3\x91\x6e\x16\x58\x2a\x03\x67\xa1\x1f\x01\x09\x69\xee\xe1\x3d\x98\xe2\x82\xcb\x9b\xbc\xc2\x64\x9c\x8f\x83\xbc\xfc\x98\x8e\x72\xc3\x73\x51\xf2\x10\x93\x33\x1c\x6e\x1c\x62\x72\xc1\x59\x87\x98\xdc\x80\x83\xde\x3d\x33\xd3\xca\xdc\xaa\xfc\x25\xa1\xd3\x1a\x76\x70\xf3\x66\xf4\xfe\x4e\x11\xb3\x6d\xeb\xda\x71\x03\x21\xbc\x33\x54\x4c\x3f\x3e\x6b\x02\xb2\xd3\x38\xd2\x51\xe8\x1d\xb4\x3d\x95\x37\x47\x16\xac\xd0\x8b\xf2\x14\x70\x71\x98\xcc\xec\x9a\x37\xf4\x72\x19\xde\x1f\xf6\x9a\x73\x37\x88\x0e\xc0\xc2\xdd\x4f\x75\x8b\x97\x8f\x45\x90\x83\x21\xcd\x68\xd8\x35\x61\x69\x25\x6e\xa6\x73\x85\xf4\xe1\xdd\xa8\xe7\xcc\x97\x87\x0b\x93\xd1\xc5\xd1\xf5\x73\x59\xd1\xa7\x7d\x40\xa3\x18\x7d\xdd\x19\x08\xbc\x0b\x90\xa0\x1b\x1a\x07\xc0\xc0\x0b\x1a\xc5\xfd\x36\xa3\x47\x0c\xe0\xe1\x2e\x54\x21\xe0\x80\x17\x82\x1f\x3d\xe4\x85\xa0\x03\x0e\x7a\x9d\x8a\x92\x74\x86\xe1\xad\x10\xaf\x15\x9f\x74\x48\x8b\x02\xd2\x6b\x0e\x55\xce\x8e\x29\x9d\xb2\x0a\x6f\x8f\x10\x37\x59\x93\x8d\x00\x69\xad\x47\x2e\x7f\x52\xdd\x41\xca\x35\xb7\x74\xa6\xa7\x53\xf3\x29\xd8\x71\x0d\x44\x8a\xf7\xae\xe7\x2d\xa9\x30\xa9\x71\xfd\x4b\x69\xfa\x65\x57\xb1\x28\x08\xdc\x84\xe5\x2e\x15\x9d\x44\x90\xc1\x98\x61\x4b\x8f\xeb\x0c\xee\x6b\x57\x95\x2b\xed\x0b\x2c\x45\x45\xc0\x1b\xf4\x77\x3f\xbf\x88\x17\xb8\x3c\xe7\x87\xe0\x61\xb8\x1e\x76\xf4\x3c\x5c\x0f\x19\x70\x24\xae\x87\x0d\x39\x15\xc7\xae\x72\x11\x47\x6f\x34\xc3\x6b\x7c\xc5\x8d\xe9\xb5\x7a\x68\x8a\x02\x85\xa6\x9e\x53\x75\x64\x08\x46\x60\xf1\xcd\x7b\x56\x04\x70\xe9\x9b\x8d\xf7\x18\x1d\xb7\x4b\xe4\xee\x14\x83\x7b\xd7\x7c\x2d\xef\x18\x0d\x60\xff\x50\x9a\x9b\xb0\x3b\xa0\x93\x0b\x27\xeb\x08\x81\xc1\xfc\x3f\xbe\xfe\x7a\xa6\xaf\xa1\x03\xc9\x7f\x47\xd1\x0c\xbe\x2e\xf8\x85\xbe\x7e\x06\xe4\xff\xf1\x45\xf0\xd8\xc5\x2a\x23\x7b\x65\x47\xec\xd3\xb6\xf4\x36\x21\x3c\x5e\x94\xa0\x0b\xa6\xfa\xc5\x18\xb5\x08\xe8\x0a\xe5\x26\x1f\xaf\x46\x62\x06\x81\xec\x9b\x6b\x96\x8c\xc1\xea\x5f\x9c\x37\xba\x91\x17\x12\xc1\x23\x47\x43\x26\xf7\xb1\x75\x5c\xc9\x38\x98\xab\x5f\x5b\x56\x3b\xb4\x15\x5e\x19\x97\x34\xe2\xab\x0b\x0e\x8c\x13\x71\xc3\x23\xd9\x0c\x70\xd7\xd1\x25\x17\x17\x34\xb9\xae\x41\x86\x99\xb9\x3d\xa0\x7b\x8e\x5c\xa2\x0b\x80\x18\x7d\x35\xdc\x12\x5e\x59\x5e\x9d\x1c\x37\x5e\x47\xd4\xe2\x8e\x84\x04\xcb\x0c\xb9\xee\x09\xbb\x38\x51\x68\x59\x42\x6f\x1b\x80\x6c\x69\xd6\xd2\xe9\x19\x60\x2b\xf8\x40\x9f\xa4\x5c\x81\x15\x3c\x9d\x07\x02\x2f\xe8\xa7\xa9\x80\xd5\xe5\xd5\x74\x88\x7f\xb9\x99\x5f\x2a\xfa\x32\x1c\x98\x04\x52\x82\x2c\x90\xbe\x1a\x19\x9a\x82\x79\x21\xcf\xd5\xab\x51\x67\x3c\x53\xe4\xd0\x50\xd3\x1a\xdc\x47\xce\x0b\x6b\x6a\x3e\xb3\x5f\x47\x53\x47\x1a\xfa\x7e\x71\x90\x81\xf2\xd9\xb1\x77\x06\xdc\xf5\xb2\x19\x8f\x16\xc0\x0b\x3c\x64\x74\x96\xbc\xce\x07\x5e\x59\xfe\x9a\xcf\x46\xaf\x01\xe7\xab\x9f\xac\x75\x4d\x49\xf0\x16\xc3\x7f\x5d\x2e\xe9\x98\xfe\xc0\xd5\x2b\xcb\x3f\x39\xae\xa6\x19\xda\x7a\xc8\xaf\xa5\x7c\x2e\x84\xe4\x1e\xdc\x61\x7e\x12\xef\x55\xde\xe8\x3d\x73\xb0\xc4\x52\x97\xe9\x15\x8e\x1d\x37\x90\x27\x2b\xae\x57\x6f\x1c\x5b\xa7\x0c\x5e\x63\xf0\x2a\xc2\x58\xf4\x39\x0e\x78\xe4\xb2\xa1\x73\xbc\x01\xaa\x94\x52\x39\x98\xe0\x3f\xa8\x9c\x4b\xbb\x54\xa0\x62\xfc\x86\xd4\xe1\xb4\x73\xc8\x4d\xa9\x19\x13\x8f\x05\xd0\x37\xe3\xc2\x7b\x29\x5f\x18\x7d\x8b\x0d\xbe\x4f\x92\xec\x49\x78\xa1\xe4\x85\x55\xdc\x1f\xa4\x6f\x69\x04\x69\xb0\xf2\x12\x4c\xf1\x7e\x48\x49\xce\xa4\x92\x19\x7d\xd8\x9f\x44\x05\x2e\xad\xf1\x22\x12\x1c\xfb\xf0\x6c\x71\xfb\xdd\x2d\xdc\x21\x21\x58\xdb\x8b\x88\x5e\xdd\x54\x25\x19\x3d\x86\x57\x4a\x4a\xc8\xc0\xab\x24\x25\x6c\xf0\x15\x92\x80\x87\xbb\x08\xe8\x2a\xc1\x74\xae\xcc\xe1\x29\x2d\x40\xea\x63\x9f\xfe\x55\x1e\x8f\x79\x9a\x27\x05\x02\x04\x53\xfc\x90\x05\x45\x43\xc2\xd5\x34\x79\x09\x9a\x48\x26\x92\x4f\xcc\x8b\xf3\xaa\xef\xb7\x52\x3f\xf1\xc9\x7d\xe6\x44\xa8\xff\x13\xf9\x52\x2f\xf9\x40\xcf\xd3\x25\xf9\x34\xd3\xaf\xf4\x46\xd1\x9f\x9e\xac\xf7\x8d\xe4\xb5\xa6\x37\x3e\xcf\x8b\x47\x8c\x2e\xa7\x81\x6a\x47\x43\x22\x1f\xb8\x99\x70\xa0\xe9\xf0\xab\x7e\x39\x61\x48\x93\xa0\xce\xda\x4e\xda\xa6\x54\x4f\x54\xcb\xd7\x72\x55\xed\xa9\xf9\xa1\xee\x71\xc9\xe7\x0f\xd5\x7b\xfc\xdd\x13\xab\x7d\x0d\xfc\xa9\xee\x9e\x50\xd5\x4f\x2b\x83\x27\x57\xf5\x33\xfd\x72\x79\x3e\x54\x87\x1f\x86\xd6\xc0\x8f\xb0\x51\x50\xc4\xc3\x03\xe9\x42\xc2\x88\x27\xeb\x6b\x8f\xd9\x2e\xe1\xe8\xe9\x92\x7a\x62\xc8\xde\xd7\xbf\xbc\xb6\xe4\x47\xf5\x33\xc1\x12\x55\xd0\x73\x45\x16\x76\x8c\x51\x85\x77\xf1\xa6\x1f\x87\x82\x0f\xbe\x5b\xec\x51\x05\x3d\x7b\x64\x61\xc7\x1e\x55\x78\x17\x7b\x0a\x81\x64\x4f\x0e\x05\xc4\x17\xfa\xd2\x33\x84\xbf\x76\x9c\xa0\xaf\x1d\x0b\x54\x09\x89\xa6\x96\x8a\x46\xbc\x9c\xaf\x5f\x73\x1f\x5e\x34\x34\x64\x83\x3e\x0f\x52\x81\x9f\x11\x33\x66\x11\x8d\x49\xb2\x33\xd5\x36\x00\x17\x75\x8f\x94\xc6\xb7\x4f\x93\xba\xe4\x4e\x9c\xf1\xf4\xa9\x64\x77\x78\x67\xb1\x27\x8c\x3f\xd5\xef\x7d\xf2\x9f\x7e\x33\x3b\xa8\x5a\xcf\xae\xf1\xb9\x6b\xb8\x41\x64\xe2\xa6\xef\xc0\x44\xf5\xc3\x3a\x8a\x2a\xdd\x0d\xc7\xa2\xcd\xa1\x82\x80\xdf\x3d\x42\xf8\xad\xe3\x0b\x7c\xab\xad\x0f\x54\xcd\x9a\xb0\xa6\x1e\x4b\x9a\xbc\x24\x0d\x12\x1b\xfc\xd0\xe3\x47\x1f\x3b\xd6\xe0\x47\x24\x30\x5c\x40\xe1\x50\x4c\xaa\xb7\xe0\x67\x2a\xca\x34\x17\x1a\x4b\xcf\x49\xfa\xad\x5d\xf9\xa4\x5d\xf7\xda\xae\xfc\xe1\x91\x76\xa9\x5e\x04\x06\xf2\x06\x5f\xea\x77\xf9\xf3\x51\xc4\xc2\x9e\x10\x17\xe2\x09\x75\xfd\x41\x8d\x6f\xf9\xc8\x9e\x1c\x74\xf2\x05\x64\x1b\x31\xf1\xbd\x43\x2f\x8b\x30\xfe\xc8\xc6\xde\x7d\x91\x81\xb9\x98\x6a\xc0\xa3\xc8\xfc\x98\xc9\xdb\xdd\x89\xb6\x80\xd2\x77\x8c\x3c\x52\x43\x83\x49\x3f\x02\xf2\x8c\x3f\xd5\xef\x90\x03\xa1\x19\x98\xe7\x5e\x57\xc4\x06\x1e\x9a\x1a\xba\x9f\xa8\xf7\xe1\xe7\x61\xa2\x18\xbe\x89\x9e\xd7\x3d\x1a\xdd\x3e\x41\x85\x7c\x02\x4f\x1e\x6e\xe3\xd5\x62\xb7\xde\xc6\x5d\x8f\x36\xf9\xf5\x0d\xce\x94\xfd\x4f\x44\x1b\x7e\xee\xa7\x4e\xf0\x6d\xa0\xbd\xf3\xd0\x16\x74\x39\xf5\x4d\x47\x5b\x3f\xca\xd8\x53\x01\xbf\x11\x75\xf4\xbd\x23\x8f\x3e\x0e\xf4\xe3\xb5\x87\x81\xbd\x6c\xfa\x6a\xd9\x31\xa0\x12\x34\xa0\x8c\xc1\x07\x2c\x7c\x54\xd0\x8b\x1f\x7d\x1d\x98\x58\x46\x6e\x26\x7a\xc9\xeb\xf7\x25\x7b\x12\xe0\x37\x22\x8d\xbe\x77\x94\xd1\xc7\x81\xf0\xca\xd3\xfa\x78\xae\xbb\x7e\xd5\x71\x20\x9f\xab\x1c\xe6\xa1\xee\x17\x9e\x9d\x86\xaf\xfd\xc4\x34\x7c\x1a\x28\x6f\x7c\x4d\x9e\x2b\xba\x8b\x7d\x47\x59\xbd\x7c\x39\x78\x99\x2d\xd9\x72\xf8\xb9\x23\x0e\xbf\x41\xad\xf3\x51\x5f\x99\xdd\xde\xbd\xa3\x39\x74\x2f\xfc\x82\x3b\x1e\x97\xf4\x3d\x8f\x3f\x0f\x9c\xec\x37\x3e\x4e\xcc\xd1\xd7\x99\xb5\x1e\xa4\xb3\x63\x8f\xd1\x64\xc6\x2d\x37\x86\x83\x7c\x19\xfc\x10\x53\x14\x32\xf5\x3d\x56\x85\x74\x32\x1f\x50\x5f\x6f\x6d\xe3\x59\xc5\x74\xef\xbe\x77\xe8\xca\x4f\xae\xa2\x63\xc1\x40\xd9\xa5\x86\xdf\x61\x35\x08\xae\x96\x39\xd0\x5f\xd9\x3d\x0c\x6c\x4d\x14\x73\x1d\xf3\xe6\xea\xa5\xa3\x2f\x1e\x66\x17\xd8\x38\x44\xf7\x49\xfd\x9c\xc4\x13\xd9\x05\x82\x19\xfc\x05\xff\xea\xe2\x63\x43\xfd\x26\xb9\xcd\xce\xbc\x0f\xe5\x26\xc7\x0c\x70\xb9\x58\xaf\xa7\xdd\xff\xa2\x87\x27\x71\xa2\x55\xfb\xad\x72\xd2\x93\x2d\xd3\xbd\xcf\xd5\x9e\x77\x37\x9f\x88\x64\xf7\x1e\x93\x4b\x5e\xbc\x3d\xfe\xb7\xa4\x29\xa7\x3f\xfc\x57\x56\xbc\x30\xe1\xf4\x4e\xfe\x3b\x6b\xd9\x0f\xd3\xff\x5c\xf1\x65\xe8\xb4\xff\x3a\xad\xf9\xb2\x6f\x56\xb3\x2a\x3f\x0e\x6f\xdf\x6f\xb6\xbb\x8d\x78\xd7\x5e\x4c\x6d\xc3\x42\x51\x3e\x81\xfe\xe4\xf7\x00\xd7\x0f\xa4\x9c\x8d\x69\x5e\x0e\x52\xae\x15\x4f\xe8\xa5\x7f\xa5\x15\xe6\xc2\x94\xab\x51\x3d\x61\x49\xcd\xa6\xc3\xa3\xf8\xf0\x9b\xc4\x8b\x21\x9f\xbe\x31\x3a\xf3\x35\x7e\x43\x69\x1e\x81\x76\xf2\x9f\x33\xae\x79\x29\x3b\xcb\xeb\xb5\xde\x6d\x61\xac\x2c\xa5\xe3\xf5\x2f\xe5\xe7\x0f\x55\xab\x3f\x4a\x32\x91\xe1\xb3\x69\xff\x59\x86\xde\xf4\x18\x80\x42\x40\x78\x96\x0f\x58\x1b\x12\xf1\xcf\xd5\xdf\xb6\xc8\xc4\x7b\x5c\xf2\x7e\x55\xfd\x5f\x49\xed\x27\x15\x00\xe9\x82\x1f\xbd\x71\x48\x0e\x5c\xbb\xda\x86\x3d\x75\xe1\x90\x1f\x7e\x78\x12\x57\xb6\xac\xf9\x60\x94\x4e\x8e\xf8\x43\x8f\xd6\xd9\x7c\x23\x6c\x1d\x57\xd8\x68\x22\x8c\x99\xfe\xd5\xf9\xcc\x52\xdb\x06\xbf\xb3\xff\x4d\xb9\x9e\x9d\x7a\xcf\xf9\x60\x72\xaf\x70\xbc\x2d\x49\x8e\xdc\x31\xfb\x5d\x1b\xd2\xa9\x5f\x72\xe5\xb6\x59\x69\x7d\xcb\xbd\xc7\xeb\x4c\x6c\xbc\x4d\xe6\x9b\x7a\x22\x6c\x45\x52\x3d\x8d\x02\x58\x98\x66\x39\x6f\x8c\xfa\x2b\xe5\xbd\xde\x70\x8b\x7a\xe4\x8e\x20\x6f\x4e\x00\x88\x47\xc0\xdd\xa3\xda\x49\x92\x4c\x40\xe4\x09\xfe\xdd\x41\xd6\xcd\x5b\xc1\x1e\x65\x5f\x74\x9f\x94\x3c\x44\x1f\x41\x45\x8b\xa4\xd4\x84\x61\x82\xb1\x2c\x53\xf3\x8f\x65\xda\xd6\x40\xf1\xe5\x6f\xa7\xe6\x2f\xf7\xd3\x55\x3c\x5d\x2d\x6d\xe5\xe7\xa6\x30\x58\xf3\x2d\xfa\xa3\x86\x83\x66\xf0\x3e\x4b\x63\x4f\x6f\x06\x71\xc3\xea\x38\x69\x8e\x5b\xa7\x71\x52\x84\xa5\x72\xd3\x0b\x33\x6b\x90\xe8\x9c\x55\x15\x37\xd9\xba\x1b\xed\xb7\xdb\x8f\xe2\x95\x2d\x43\xf7\xb2\xc3\x21\x3e\xc4\x4f\xe8\x29\x7b\x77\xf7\x41\x0a\x93\xc0\x8e\x10\x33\xf7\x2e\x12\xff\x1f\xd9\x60\x13\x95\x47\xbe\xa1\x18\x46\x24\x16\x84\x46\x76\xc2\xfd\x2d\xdb\x8e\x22\x0c\x6b\x5f\x00\x9e\xf0\x56\x6a\x64\xc0\x10\x20\x37\x0f\x29\x02\x00\x02\xaf\xfb\xfb\x02\xe4\x00\xac\xf3\x99\x22\x58\x15\xeb\xd0\x50\x62\xf3\xa4\x76\xab\x87\xd9\xe3\xbd\x37\xf5\x5d\xf0\xcf\x05\xae\x7c\x69\x45\x5d\x2d\xfb\x23\x9b\x2d\xbd\xfc\xe7\x86\xd2\xcd\xc4\x3f\xd2\x82\xaf\x30\xfe\xfc\x4f\xdf\x09\x24\x13\x41\xe2\xbb\x9f\xdd\x44\x10\x2a\x83\x4c\xe4\x6b\xa9\xc8\x1d\x92\x11\x0f\x89\x73\x18\x97\x23\x90\x13\x08\x9f\x5f\xcf\xdc\x51\x1d\x43\x7e\x97\xad\x84\x4e\xf6\x7c\x4d\x69\x0d\x89\x7a\x44\xa5\x3f\x82\x31\x40\xb9\x4d\xb4\xb6\xfa\x18\x5b\x20\xb6\x17\x02\x56\x11\x2a\x84\x24\x9d\x91\xe8\x09\xc7\xb6\xf8\x1f\x9d\x93\x21\x56\x3f\x5d\xf4\x6e\xa7\x57\x19\xfd\xce\xca\xda\x98\xe3\xc5\xa2\x4f\xb9\xf6\xc3\x1f\x11\xe5\xe5\x6b\x0c\x93\xf9\xd2\x76\xd9\xcd\x32\xa3\xa9\x13\xac\x95\x5a\xc3\x3b\xde\x0c\x15\xb4\x24\xa4\xdc\xb3\x29\x5d\xa6\x9d\x50\x35\x9a\x82\x85\xb7\xee\x25\x24\x85\xa5\x03\x6f\xa2\x64\x36\xef\x46\x31\xa2\x25\xae\x24\x40\xdd\x25\x8f\x0e\xb0\xca\x86\x1c\xe2\xd3\x02\x5a\xa0\x9c\x2f\x85\x43\xa8\xe3\xad\x1a\xbb\x6f\x04\xab\x9a\x43\x14\x50\xf9\x9c\xdc\x49\x72\x2c\xc9\xa4\x0f\xd5\xfd\x18\x45\x8e\xf9\x33\xa9\x84\xf0\x47\x58\x18\xbb\x2b\x0d\x3b\x13\x7b\xbb\x79\xf0\x3e\xfe\x4d\xb7\xbe\x53\xd7\x58\x07\xc3\x0e\xac\xe8\x86\xdf\x4f\xea\xe7\xfb\xf8\xfa\x3e\xb2\xd6\xf7\x11\x5a\xdf\xeb\x5f\xfd\xf8\x21\xc3\x70\x36\x65\x3e\x43\x34\x3f\x8a\x74\x8d\x2b\xab\x1e\x7a\x41\xc8\x9e\xde\x8a\xf0\x0d\xef\xec\xee\xa3\x0e\x09\x77\xdf\x6d\x94\x12\x57\x2f\x6c\x85\x73\xa2\x21\xbe\xfb\xf9\x01\x17\x4b\x51\x82\xd2\x9f\xd0\xcc\x28\x7b\x42\x4c\x5e\x9d\x9a\x70\x8e\xe4\xc7\x7e\xa4\x77\x05\x8a\x2b\x5c\xf6\xad\x59\xd3\x9d\x04\x58\x91\x20\x2e\x5e\x70\x21\xd2\x40\x03\x35\xd2\xc2\x6e\x40\x48\x1d\x33\xdb\x8e\x71\xa2\xc9\xde\x4d\x1a\x6b\xe9\x08\x13\x76\x23\xbf\x42\xde\x13\xad\x52\x1a\xa9\xd0\x27\x31\xe6\xf5\xf8\xe1\x7f\xc1\x38\xbd\xbd\x0f\x03\xec\x38\xd7\x6c\x02\x3d\x6d\x83\xd7\xe6\xc0\x74\xf6\x38\x18\xb1\x6a\x04\x88\xf6\x3c\xfc\x44\xa1\x5d\x4a\x5f\xe8\xeb\xf0\x2a\x3b\x80\xb7\x89\x06\x17\x4b\x04\x43\x7a\xfb\x31\x57\x4b\xe3\xa9\xab\x60\x48\x4d\x00\x36\xc3\x8a\x53\x5a\x01\x4a\x33\x32\x29\x01\xa0\xd5\x41\xd3\x4a\xbf\x0e\x17\x1f\xc5\x02\xfb\x52\xf7\x45\x1a\x19\xae\x40\x01\x7e\x23\x93\xf6\x01\x11\x75\x7f\xdc\x65\xcf\x7a\xd3\x69\x11\xc4\xd6\x41\x4e\x22\xaa\xd8\x32\x5b\xbf\xd9\xd8\x0d\xe7\xc7\x25\x9c\x90\x4a\x83\xe0\x3e\x6a\x05\x68\x02\x76\xbf\x85\xc0\x91\xdc\x7c\xd4\xf0\x52\x74\xbe\xf5\x8c\x43\xae\x1c\x74\x40\xaf\x5f\xcc\xeb\x7d\x76\x59\xf6\xcd\x46\xb2\x89\x59\x37\x6d\xf0\x0a\x0d\x6d\x52\x9b\xa9\x12\x86\xd8\x30\xc5\x7b\x96\x26\x54\xb7\xb3\x88\x36\x55\x80\xb7\x81\xf7\xfc\xcc\xd2\x7e\x67\x0e\x6e\xcc\x59\x40\xdd\x26\x1a\xda\x43\xb3\xa0\x56\x98\x93\x7e\xa3\xca\x02\x34\x1a\xa6\xe6\xa4\xa0\x04\x1d\xee\xfe\x8b\x52\xbc\xd9\x01\xb6\x98\x64\x92\x8c\xbd\x56\xff\x9e\xed\xc4\x3f\x23\xe0\xd3\x7d\x1c\xa0\xd5\xde\xbc\xd4\xba\x61\xf3\x43\x2c\x5e\x76\x1c\xab\x1d\x71\xda\xe8\x5d\x18\xb9\x58\xe1\x4b\x85\x8b\xaa\x2a\x9b\xfa\xaa\x98\xdb\x46\x91\x6b\xb3\x43\x86\x05\xf2\xcf\xf2\x54\x4c\xa7\xc9\x9f\xfc\x5b\x20\x23\x5b\x1a\x7d\xf1\x20\xd6\x47\x79\x13\x35\xce\x25\x50\xeb\x19\x00\x63\xa7\x1b\xe8\xe5\xdf\x97\x64\xe8\x1f\x62\x6d\x22\x0b\x26\x89\x51\xf4\x84\x16\xe7\xc3\xe2\x70\x47\xb5\x4d\x70\xdc\x2d\xf0\xcc\x86\x99\x65\x90\xe6\xe3\x59\xe4\x0c\x51\xae\xfc\x04\x06\x4e\x90\x0f\x3e\x91\xae\x0d\xf6\x60\x26\x22\x79\x38\xc9\xc3\xd4\x8f\x9b\x20\xab\x73\x8d\x54\x0f\xd0\x5c\x9b\xc8\x04\xfa\x1d\x6a\x47\xd4\xe6\x47\xde\x38\x20\x01\xa7\x08\x81\xb8\x6e\x80\x5a\x25\x3a\xb2\x51\xfa\x15\xd7\x48\x07\x7c\x8d\x72\x21\xb6\xdc\x3d\x52\x4f\xb4\x0a\x0d\x0d\x17\xed\xd6\xbd\xa1\xa6\x53\x79\xe5\x2b\x37\xd5\x35\x3b\x89\x77\xa6\x7f\x92\x51\x92\xf2\x26\xfd\xb5\xa1\x54\xa2\x41\xb9\x7e\x77\xd4\x73\x4e\xa2\x7e\x0e\x54\x36\xd0\x07\x58\xa0\x2a\xba\xa7\xce\x21\x87\x94\xc2\xa7\x69\x79\x5a\xe5\x9c\x05\xc7\x70\xfa\xd8\x74\xce\xe3\x18\xab\x65\x69\xfe\xa2\x9c\xed\x0e\xe0\xe1\x1d\x04\x41\x16\x95\xb5\x5c\x37\x25\x69\xe1\xfb\x37\x60\xa2\x3c\xa8\xcd\x54\x2c\x82\x94\x7a\xe9\x47\x35\x72\x30\x11\xc0\x07\xf4\xa0\x83\x59\x00\x7b\xfe\xff\xf8\xb2\xc9\x35\x3f\x51\xd3\x02\xdc\x2e\xd2\x53\x8f\x35\xc9\x4c\xd4\x5f\xf6\x0a\x0c\xcf\x1a\xe6\x86\xc4\xd0\x28\x91\x96\x11\x6c\xcb\xfa\xcc\xbb\xc5\xe0\x6e\xcf\x7a\x0e\x26\xea\xcf\x99\x87\x1b\x8b\x7a\x67\x4d\x41\x5b\xf1\x7e\x29\x26\x33\x93\x6d\x1e\x48\x12\xb3\x6e\x40\x40\x51\x29\x64\x72\x02\x63\xb3\xff\x65\xd8\x9e\xc1\x4e\xdb\x69\x27\x28\xea\x14\x43\x76\xfa\x25\xa2\x77\x65\xec\x62\xa8\x3b\x3e\x41\xf2\xe5\xde\xe8\x46\xb6\x5a\x6a\x91\xfc\x8b\x33\xcb\xfe\xfe\xe3\x6c\x1d\xfd\xe9\xa1\xff\xfd\x2f\x3f\x8a\x9f\x55\xd9\xf0\xbf\x7f\x9c\xad\xd6\x19\x3b\x3d\xc8\x65\xdc\x47\xeb\x7e\xb8\x9e\x0e\x7f\x56\x43\xac\x18\x6c\x73\xbb\xdd\x32\xd2\x03\xeb\xb6\x3e\xd6\x1b\xb8\xc7\x2d\x7f\x7d\xbb\x79\x6c\xe8\xa5\x21\x10\x6c\x77\xd2\xbd\x7b\xf8\x33\x95\xfa\x8a\x42\xbf\x0e\xcf\xf4\x78\x3c\x02\xeb\xa3\x77\xb2\x41\x5a\xac\xd6\x39\xb0\xab\x3d\x13\x5b\xda\xe2\x7f\xd1\xc4\xcc\xc6\x70\x25\xcf\xa2\xe0\x0f\x11\xc7\xa6\x43\xfe\xfd\x5e\x16\x11\xe8\xd6\xd9\x86\xaa\x55\x9a\x55\xfd\xeb\xf3\x4c\x5c\x28\xff\x89\xfb\xe5\x54\x37\x8d\x26\xe8\xd0\x29\x37\x41\xbb\x6f\x56\x5b\x47\x3b\xee\xbb\xef\xfa\x66\x2b\x21\x74\xcc\xcf\x62\xdd\xc4\x7e\xe7\x23\x0a\xdd\x02\x1c\xa6\x78\xde\x59\x2a\x67\x84\x48\x63\x80\xc1\x2c\x37\x94\x9e\x79\xc6\xc0\x94\x47\x3f\x42\x6c\x86\xfd\xf2\x6f\xd6\x39\x96\xd4\xb5\x9b\x6b\x5b\x58\x19\xf6\xe1\x2b\x4d\xbd\x1d\x20\x03\x8d\x68\xa5\x8a\x63\x3e\xd2\xdb\x81\x88\xa7\xe4\x57\xdd\xc9\xe6\x6e\x83\x03\x87\x86\x06\x9d\x34\x26\xdc\xbb\x7a\xca\xd3\x09\x63\x9d\x24\x7c\x42\x7b\x5f\xd3\x6a\x80\x96\xae\xb6\x33\xdb\x2e\x68\x09\x3d\x3b\x2b\xd6\x3b\x1b\x82\xbd\xe2\x4f\xab\x82\x45\xc4\x92\x66\x5f\x4d\x87\x84\x28\x2a\x28\xa2\x6c\x00\x2b\x2f\xd3\x4b\xa2\xab\x24\xae\x0d\x16\x97\x3c\x60\x63\xd5\x2b\xd1\x90\x92\xc9\x4d\xab\x1a\xa3\x9d\x2a\x0b\xf7\x4c\x8f\x6c\x58\x2a\x36\x67\xe9\x22\xf8\x35\x64\xe7\xd2\x99\x0a\x17\xeb\x1d\x58\xc8\x7b\xe8\xac\x21\xa7\x49\xbd\xc7\x78\x9f\x89\x71\xa6\x42\x45\x93\x58\x66\xac\xa9\xff\x6b\xf0\x1d\x68\x1f\x4c\xf3\x47\x6c\x59\xa8\xd6\x7e\xf7\x73\xa7\x03\x46\x46\xaa\xc7\x83\xf9\x97\x1f\x67\xa2\xd9\x4e\x2f\xa5\x2f\xf7\x95\x05\xec\x58\x62\xa7\x4e\x38\x94\xa3\xcd\xd0\xdd\x36\x9c\x9c\xe8\x26\x88\x31\xa1\x23\x91\x07\x08\x9d\x1e\xef\x48\xfb\xd5\xd0\xd3\x62\xe4\xbe\x7b\xca\x9b\x2e\x9a\x38\x53\x64\x1e\x94\xda\x50\x05\x28\x28\x30\x93\x1f\xb1\x2c\x10\x56\x59\xf7\x2f\x5d\x5d\x04\x67\x97\x8f\x2b\x02\x41\x80\x77\x98\x40\x80\xe8\x00\xfc\x54\x31\x76\xbe\x03\xf8\x55\x80\x34\xc3\xf2\x4e\x2c\x9d\xc5\xfe\x13\x12\xf2\x90\xc4\xfe\x93\xc3\xf4\x20\x3f\xa9\xdf\xbd\x45\x08\x8d\x8e\x83\x38\xc7\xfb\x74\x1e\xad\x1d\x9d\x6a\x96\xb8\x7b\x70\xa6\x41\x3d\x9d\x68\x82\x50\xad\xf0\xf6\x2b\x6e\xd5\x07\x55\xc0\x62\xd4\xd2\x02\x7f\x53\xe4\xa2\xd0\xa3\x1a\xce\xda\x40\x3b\x48\x49\x10\x11\x1e\x3b\xc8\x01\x42\xf8\x44\x3e\x48\x3f\x35\x29\x5f\xb2\xcb\x1b\xe9\xd6\xb4\x32\xde\x15\x3b\x17\xd3\xf6\x1e\x2b\x19\x17\x91\x53\xad\x34\x4c\x7d\x58\xc2\x9c\xba\x88\xc9\xeb\x8b\x2f\x30\x66\xc5\x4a\x95\xf3\x6a\x4f\x38\x96\xa9\xfd\xe2\x0d\x76\x01\xbc\x4e\x73\x6a\xcd\xb7\x5f\x46\xe2\x5d\x00\xe9\xb8\x24\x28\xa4\x24\xab\x36\x2a\x9b\x63\x40\xd9\x2b\x0f\x89\xb1\x3f\x8d\xfe\x3e\x64\x47\x81\x70\xba\x8a\x96\x4e\x13\x2b\x48\xaa\xc3\xa8\xc4\x5a\x39\x12\xff\xcc\x2d\x0c\xfd\x91\x5c\x40\x3b\x53\x64\x35\xc1\x04\x52\xec\xa2\x14\x26\x8b\x5d\x80\xc2\xcd\xd0\x07\x68\x8b\x57\x82\x72\x2e\x9c\x21\xc2\x5d\x77\x9f\x26\x9e\xed\x20\x63\xa5\xa7\x50\xa9\x23\xc3\x10\x93\xfa\x62\x22\x22\x52\x2f\x0f\xe2\x01\x04\x18\xd1\x1d\x7e\xf7\x71\x23\xbb\xdd\xf1\x21\x4e\xe3\xcc\x1e\x1c\xae\x62\x6a\xa1\x6f\x92\x87\x31\x22\x82\x0b\x58\xdc\x15\xd8\xb5\x03\x78\x55\x1a\x08\xab\x02\x3d\xa4\x08\xbb\xb4\xf1\x4e\x21\x98\xed\x75\x28\x1f\x52\x4e\x8b\x4b\xa4\xa2\xae\xd2\x10\x21\x0c\xf5\xad\xd5\xa5\xfd\xd9\x25\x02\x77\x04\x42\xe1\x40\x93\x3e\x96\x4e\xb4\xe0\xff\x96\x56\xad\x96\x21\x46\xba\x9f\x1e\x55\x5c\x1e\x76\xcb\x94\xb0\xd3\xae\x62\x8f\x2a\x76\xd4\xb0\x26\x9a\x3c\xd0\x8a\x68\xd4\x0d\x60\xf4\x8b\x89\x3e\xa1\xd4\xb1\xc7\x4b\x7e\x1d\xd5\xd1\xd5\x7a\x97\xa4\x1b\xa7\x74\xac\xe2\x00\xe9\x84\xe9\x2d\xe6\xdb\x50\x5b\xb2\x30\x80\xfb\x81\x13\x42\x69\x8d\xaf\x1f\xd1\xd9\x96\xf9\x54\x76\x71\xdc\xec\xf6\x7b\xa3\xd2\xa9\x62\x0c\x7a\xbc\xe0\xb7\x47\x69\xd7\x87\x43\xb6\x5d\x38\xbb\xc5\x2a\x76\x76\x0b\x20\x07\x3b\x82\xe0\x82\x52\x5b\xbb\x76\x00\xaf\xca\x7e\xc2\xaa\x40\x35\x29\xc2\x2e\xdd\xdc\x6c\xd2\x78\x7b\x70\x0a\xc1\x2c\x36\xdb\x1b\xa2\x87\x16\x97\x48\x11\x5d\xa5\x01\xbc\x02\x66\x2c\x55\xb4\x3f\xdf\xaf\x8b\x0a\x87\x47\x19\x57\x8b\x64\xb9\x36\x95\xb1\xac\xc4\xdb\x17\x80\x15\xf8\xc1\xa3\x8e\x2c\xda\x1e\xd6\x4b\x67\x4f\x58\xc5\x4e\x75\xec\x08\x41\xba\xb0\x63\x42\xbe\x9b\xdb\x42\xe3\xec\x5a\x6d\x27\x6d\x29\xa2\xed\xf8\x3e\xee\x81\x72\x37\x77\xe3\x9e\x6d\xac\xe2\x31\x49\x25\x04\x5b\x6e\xc1\xb8\xbd\x55\x27\x96\x80\x36\x40\xf1\x59\xca\x4c\x7c\xbf\x5f\x9b\x35\x12\x8f\x3a\x67\xbb\x75\xb2\xd8\x19\xd5\x6e\xe2\x50\xc0\xc0\xca\xf0\xd3\xa3\xca\xd9\x7e\xb5\xdf\x27\xce\x0e\xb2\x8a\x47\x55\x79\xa0\x0a\xfb\x65\xec\xeb\xb8\x12\x9b\x9c\x7c\x31\x11\x10\x2a\x0c\xa8\x92\x5f\x47\xd5\x37\x4b\xd7\x9b\x24\x76\x4b\xc7\x2c\x1e\x57\x5f\x93\x25\x97\x38\xdc\xaa\xeb\xc0\x10\xc0\xfd\x20\x32\x4b\x6d\xad\xaf\xf7\x2b\xad\x44\xe1\x51\xd9\x74\xb3\xd8\xef\x2c\x6e\xda\xea\x56\x40\x0b\x0c\x3f\xf8\x1c\x82\xcd\xea\xb8\x73\xab\xad\x55\x3c\xae\xb6\x80\x2e\xea\x93\x80\xef\xe3\xca\x6b\xf2\x63\xb5\x9d\x56\x5f\x48\xdb\xf1\x7d\x54\x85\xd7\xe9\x7a\xbd\x5f\xb9\x25\x65\x16\x07\xa8\xb0\xc5\x96\x5b\x30\x1e\x35\x76\x61\x09\x68\x03\x14\x9f\xad\xca\xf6\xf7\x0f\x28\xb3\x42\xe2\x75\x28\x96\xe9\xc6\xec\xd2\x0a\xc5\x02\xfb\x5f\x5e\xfb\x2b\xce\x0c\x7b\xec\xaf\x51\x3c\xaa\xc8\x3d\x51\xd8\x29\xfe\x8f\x21\xc6\x17\xb3\xd1\x37\xd6\x92\xbe\xf9\xf1\x3e\xd1\x27\x98\x59\xa0\xf3\x36\xb3\x6e\x9b\xbd\xd9\x6d\x76\x1e\x9b\x6d\x14\x8f\x2b\xbc\xc1\x90\x43\x86\x6e\x55\xa7\xeb\x07\xb0\xde\x8b\xd9\x67\x56\x8f\x4b\xfe\xff\xcc\x63\xb3\x2c\x29\x40\xa7\x0c\x3f\x3d\x9a\x18\x45\x87\x75\xe2\x0e\xcf\x58\xc5\xa3\x9a\x38\x50\x45\xe9\x4c\x23\x5f\xc7\x95\xd1\xe4\xe4\x8b\x89\x80\x30\xa5\x80\x2a\xf9\x75\x54\xab\xa2\x28\x5d\x1d\xdc\xe3\xd4\x2a\x1e\xd7\x2a\x93\x25\x97\x38\xdc\x7a\xe5\xc0\x10\xc0\xfd\x20\x32\x6b\x00\x5b\x5f\xef\x37\x9e\x12\x85\x2f\x96\x15\xed\x16\x5b\x93\x9b\x37\xf1\x0a\xef\x2b\x60\x04\x7e\xf0\xa8\xed\x71\x91\x6e\xe2\xa3\xb3\x63\xac\xe2\x51\xb5\x85\x74\x61\x9f\x84\x7c\x1f\x57\x5e\x93\x1f\xab\xed\xa4\xfa\x22\xda\x8e\xef\xa3\x2a\x7c\x5c\xa6\xc9\xc2\x3d\xc0\xad\xe2\x71\x15\xb6\xd9\x72\x0b\xc6\xad\xc6\x4e\x2c\x01\x6d\x80\xe2\xb3\x54\x99\xf8\x7e\xbf\x32\x6b\x24\xbe\xb5\xd8\x22\xd9\x47\xa6\x3a\xab\x93\x3c\xaa\xed\x3f\x01\x9e\xe4\x5f\xaa\x14\x6e\x0c\x92\x07\x3b\xf0\x89\xa4\x01\x07\xfe\xd4\x8f\x0d\x67\x7f\x0d\x57\x57\x03\x24\xe6\x47\x47\xc6\xbd\xc8\x4a\xe8\x77\x23\x57\x5d\x86\xed\x90\x0e\xb3\xe4\xbf\xac\x54\x3f\xb5\x4d\xdc\x1d\xec\x1e\x68\xe2\x4f\x03\xc5\x1e\xdb\x42\xe3\xee\xb2\x8c\x61\x7a\x2f\x3a\xc1\x89\x4f\xf3\x50\x3c\xb8\x33\x1b\xd9\xe5\xd6\xbc\x51\xec\x51\x05\x04\x93\x11\x64\x31\x7a\x32\x2e\xa2\x75\xe5\x63\x3a\xd2\xbe\x95\xb7\x29\x8e\x65\xc8\xdb\xa0\x24\x29\x2b\x81\x09\x6f\x36\xbb\xa0\xbb\x3d\x65\x02\x65\xd0\xdd\x58\x76\xee\x8d\x4e\xd5\x25\xb3\x83\x71\x99\xeb\x7b\x97\x1b\xb9\xe8\xc4\x02\x12\x73\xe7\xdf\x2c\x2d\xf7\xce\x34\x61\x2c\xa0\xe4\xc0\x7b\x10\xae\x1f\xb0\x78\xc1\xee\x76\x77\xf8\x8c\xaa\x8a\x96\x40\xa4\xec\x61\x36\xf9\x6c\x2e\xc7\x8d\x4c\xf2\x5d\x76\xc9\x8d\xeb\xe8\x4f\x18\x3d\xaf\x8c\x66\xc4\xa1\x40\x6f\x75\x9b\x0c\x12\xf7\xca\x3a\x31\x92\x0c\x43\xc4\x7e\xbe\xc1\x2e\x37\xdc\x03\xf7\x35\x47\xee\xcc\xbb\x79\x56\xa9\x1a\x1b\x93\xe5\xa1\x96\xc1\xd0\x20\x3d\x4d\xdb\x64\x09\xa5\x57\x47\x18\xab\xda\xd0\x77\x33\x53\xf5\x1a\xea\xac\xe7\x64\x47\x67\x98\xf4\xa2\x5a\x4b\xfb\x3e\xb0\xd8\x67\x09\xe8\x89\xa2\x4c\x7c\xa3\x79\xc8\x8d\x8e\x54\x92\xc8\x2c\xee\x24\x0c\xee\x0a\xd1\x37\x97\xcd\x62\xfb\x00\xbd\x3a\x29\x3a\x68\xd1\xf0\xb3\xb7\x6d\xe0\x68\xa8\xb8\x2f\x0e\xdd\xb6\x0b\x3c\xc3\xfe\x27\x55\x51\x1c\xd0\xc4\x57\xe5\x0e\x35\xc1\x6f\xb2\x2a\x48\xb8\x30\x66\x4a\x0a\x1c\x5e\x49\xaa\x8e\xa8\xc2\x4a\x95\x15\xbf\x27\xae\xd1\x10\x47\x56\x87\x4a\xfd\x2f\xaa\x8a\x3c\xed\x8a\x6e\x82\x05\x73\x68\xeb\x23\x86\x12\x49\xba\x93\xad\xa0\x1f\xe0\x17\xb2\xbe\x38\xf1\xda\x37\x34\xaf\x9b\x69\x59\xf4\x7f\xb6\xfd\x9f\xef\xe2\xff\xa8\x14\xc3\x99\x7c\xdc\x45\x26\x53\x68\xb5\x88\x65\x2e\x67\x9f\x95\xdf\xa3\x82\x27\xa5\x00\x5a\xf4\xb9\x25\x3f\xe3\xe1\x02\x4f\xe7\x03\xec\xe0\xaa\x6a\x80\x1c\x7c\x6d\xa9\xaf\xe6\xc5\xd5\xe6\x31\xff\x81\xc0\x44\xfe\xdf\x9f\xe6\xe2\xb6\x82\x69\xf7\x51\xff\x1c\x08\x4e\x8a\x1c\x10\xe2\xbf\xfa\xc4\x0e\x29\x32\x01\xfd\xd4\x88\x84\x9b\x19\xff\x26\x5e\xf4\x3c\xe6\x9f\x58\xf6\x44\xca\x13\x7c\xec\x87\x28\xaf\x22\x9e\x2e\x1c\x5c\x94\xa5\x94\xb6\x71\xab\xea\x17\xcc\x1f\x38\x34\xa2\x3e\x92\xac\xff\x54\xe4\x50\xe8\xba\x52\xeb\x2f\x7f\x07\x93\x39\xbe\xfa\xbd\x77\x56\xd2\x82\x89\x87\x16\xcb\xe6\xfc\x24\x93\x67\xf2\x42\xa4\x19\x81\x2b\xf4\x4d\xe9\x22\x8d\x30\x5a\x42\xeb\xd0\x04\xb3\x86\x7b\x00\x69\x12\xad\x3c\x88\xba\x71\xe7\x39\x5d\x82\x69\x93\x5a\x86\x0b\xde\x47\x14\x0b\x62\x2c\x0b\x88\xa6\xe5\x6e\xf6\x20\x42\xeb\xd8\x4b\x77\x5a\x58\x25\xfe\xf7\x57\x37\x99\xcd\xd2\x77\x2a\x19\x4d\xea\x6e\x5a\xea\xba\x4e\xa9\x66\xca\xd7\x1f\x16\x21\x75\x1b\x46\x5c\x59\x79\x8d\x72\xd2\xa1\x5f\x6f\x21\x3c\x2d\xf7\xa9\x0d\xe2\xb8\x86\xd9\x88\xc9\x90\xce\xc9\xb9\x99\xe8\x27\x34\xf4\xfd\x29\x56\xd3\x3c\xb0\xef\x8e\xd7\x48\x1c\x52\x7b\x2c\xaf\xc5\x1b\xa9\x13\x36\xc0\x5d\xaf\x9f\x58\xf4\xe0\xb5\xe6\xe6\x57\xaa\x97\x7c\xab\x4a\xbb\x0b\x2b\xe7\xda\x00\x3c\x79\x62\xf1\xe4\x92\x23\xc5\xa9\x0f\x36\x58\xe8\xc6\x1b\x10\x64\x89\x89\xcc\xd7\x00\xfd\x98\x01\xd1\x89\xb8\xaf\x2f\x27\x9f\xf8\x7d\x4a\xd0\xd5\xa4\x3b\xdf\xb8\x6f\xd0\xc1\xa4\xb6\xa4\x16\x71\xfd\xfd\xdd\xb0\xf1\xae\x71\x2e\xf5\xf1\x2f\x16\x36\x0f\xcc\x84\x6c\xee\x28\x0a\x1a\xc8\xcf\x05\x5d\x99\x52\xec\xde\x7f\x50\x07\x25\xee\x54\xd9\xbe\x43\x9c\x2c\xd8\x10\xee\x37\x93\x2c\x33\xe4\xd0\x72\x07\x29\x3f\x74\xf8\xa8\xd0\x15\xd4\xf4\xed\x52\x13\x55\x8a\xef\xd0\xc0\xa9\xe9\x96\xfe\x25\x86\x4f\xa3\x7e\xd3\xd7\x65\x50\xa9\xb2\x26\x26\x1d\x2d\x34\xf0\xe9\x30\xd8\x10\x50\x5f\x1c\x97\x74\xfd\x89\x39\x55\xa1\xcf\xee\x9b\xc2\x15\x22\x09\xea\xb8\xec\x03\x73\x6f\x86\x18\x41\x75\x8a\x59\x12\x1c\x28\x85\x78\xd0\x3d\x43\x6e\x16\xfc\x6c\x3d\x33\x06\x2f\xdc\xfb\xe8\xd5\xf7\xe6\x2d\x1f\x21\x7d\xa4\xb9\xca\x58\x9d\x56\xf9\x4d\xcc\xbc\x16\xc7\xa0\xcc\x60\x3b\x9c\x00\xbe\x42\x49\x3f\x1c\xf3\xdd\xcf\x26\x2d\x07\x98\xfd\x4c\x8e\x38\x2c\x06\x6f\x21\x71\xd2\x53\xe7\x3c\xc6\x09\x1a\x70\xc4\xcb\x39\xdd\xd5\xdc\xfd\x5b\x28\xd7\x76\xe2\x5c\x0d\xa0\x52\xf5\x3d\xcc\xf5\xf7\xce\xe0\xbf\xc5\xba\xc0\xd9\x0e\x18\x9e\x21\x9a\xd3\x47\xc8\x87\xab\xa9\xe0\x65\x11\x5d\xcf\xb8\xd1\x9b\x6e\x3d\x45\xc3\xef\xab\xbb\x71\x1b\x4e\x3b\x85\x7a\xcc\x17\x87\xd1\x69\x61\x42\xc9\xa9\x1c\x3c\x44\x42\x55\x32\x3a\x9e\x78\x61\x64\xb8\xda\x81\x88\x11\x90\xd8\xdc\x77\x23\x11\x57\x8d\x9a\x05\x14\x5a\x25\x38\xe3\x16\x66\x7a\xe1\x3b\xca\x90\x15\xd7\xf7\xca\x5b\x5d\x05\x4b\x5c\xa6\xb7\xf4\x09\xa0\x5b\xa4\xd8\x27\xfe\x8d\xab\x89\xe8\xda\xc3\x64\xe2\x29\x1f\xbc\x00\x65\x07\xa4\x76\x07\x39\x04\xc3\x73\x8e\x38\x30\x80\xbe\xbf\xeb\x79\x68\xc6\x5e\x38\x8d\xda\x3a\x7c\xb2\x8a\xa6\xea\xff\xcf\x97\xe6\xb4\x34\xec\xbc\x78\x89\x22\x30\x93\x3a\xbc\x90\x79\xb1\x9e\x76\xff\xb3\x89\x39\xe6\xf2\x09\x39\x21\xc3\x32\xdf\x45\xf7\x36\xff\x89\xd9\x33\x98\x7b\x58\xec\xbc\x4c\xda\x83\xde\x9e\x8f\x0d\xe9\xa0\x89\x79\xd8\xc3\x1a\x43\x68\xce\x99\x24\x56\x38\x79\x7e\x80\xf7\xc4\xd5\xa5\x3e\xaf\xcc\xcb\xbc\xe5\x94\x51\x78\x9d\xde\x99\x81\xd1\xe7\x5d\x11\xdb\x80\x64\xed\x20\xe7\x4a\x24\x1c\xf6\x75\xa6\xc4\xb7\x49\x62\x7c\x4d\x2c\x5d\xef\xdd\x43\xd7\x95\x6e\x2a\xe4\x40\x5d\xe8\x36\x94\x98\xfc\xa8\x37\x68\x48\xb6\x40\x91\xc5\x5d\xd7\x76\xf0\x84\x8d\x5d\x08\x1d\x67\xdc\x2c\xba\x1e\xd1\x77\xfe\x11\x68\x4b\xd5\x55\xa8\x1b\x40\x14\xdb\x72\x26\x2f\x79\x27\xf0\xda\xf2\x71\x53\xc7\x6f\xfd\x38\xa1\x48\xad\x1e\x38\x35\x3b\xcb\xd9\x9c\x11\x72\xd4\x20\xe9\xc6\x5c\xcd\x0a\xa6\x6e\x4c\x25\x1d\x43\x5c\xfc\x13\x39\x8a\xb1\x1b\x85\xf6\x9f\x87\x95\x02\xa9\xd8\xc6\x09\xcf\x35\xbd\xbd\x89\x35\x7a\x2a\x7e\xc2\xd9\x7f\xf8\x6a\xbd\x3b\xe5\x1f\x1b\xf7\x62\x1a\x91\x97\xe9\xc5\x51\xa2\x1b\x7b\x74\x12\xd7\x81\x15\x07\x55\x21\xf1\x9a\x59\x1a\x48\xd2\xd1\x92\x7e\x21\x6c\xa4\x41\x73\xa0\x55\x9e\x66\x3b\xa1\xc6\xb0\xa0\xfa\x4e\xde\x1d\xaf\x9b\xe1\x61\x4a\xaa\xa9\xa1\x97\xa1\x43\xfe\x0e\xf9\x22\x3c\xd1\xe2\xc1\x39\xa1\x8d\x09\xc6\x4f\xdc\x21\x21\x4c\x7d\x6d\x51\x17\x91\x28\x0b\xa5\x35\xc2\x49\x28\x50\x9e\xe5\x2f\x79\x36\x8e\x86\x06\xeb\x7a\x02\x9f\x18\x57\xd9\x19\xf2\x2d\x2b\xe4\x7e\xbc\xff\xd1\x07\x3f\xe2\x59\xdd\x91\x38\x78\xe5\x0f\x48\x55\xf0\x45\x77\xdd\xf3\xb4\x79\x83\x6b\xf7\xd2\x7a\xb0\x04\xea\x81\xd5\xd2\x72\x2c\x81\x60\x9c\x56\x23\x19\xe9\x3b\x12\x4a\x13\xc1\xc9\x0c\xe0\xc2\xb5\x6e\xd3\xbe\x7f\x30\xbb\x2d\xc4\x35\xa5\x8a\x63\xb8\xdb\x8a\x56\x8e\x15\x05\x6d\x31\x84\x4a\xf5\x77\xbc\x2f\x49\x67\xfc\x38\xb1\xa2\x03\xb7\x36\xf2\xae\x18\x6f\x7f\x39\x53\x80\xfa\x74\x0e\xeb\xe5\x5f\x7d\x8d\x53\x25\x6f\x32\xd6\x5b\x8b\xff\xdf\xff\xf3\xff\xfe\xd0\xdf\x0f\x1b\xd3\x0f\x98\x39\xa2\xa8\x44\x7b\x8c\xbd\x35\xac\x66\xc4\x4a\x9c\xea\x16\x57\x31\x71\x77\xb1\x0b\x14\x75\x8a\x0b\x48\x74\x14\xea\xfd\xe1\x59\x52\x3f\x5e\x62\x3b\xd4\x43\x63\xe4\xfa\xe5\x70\x52\x8f\x58\x0f\x02\x49\x76\xb5\xd0\x25\x08\x92\x72\xf7\x8c\xbb\x14\xbd\xf9\xc1\xda\x38\xc5\x7b\xa8\xef\xf2\x5d\x3f\x61\x34\x59\xcd\x9a\x47\x5d\x13\x87\x61\xd4\x63\xaf\x64\x98\xcd\xa2\x6f\x8d\x31\x58\x48\x25\x02\xd0\x59\x12\xf4\xb8\x73\x11\xc2\x07\x0d\x4d\x7a\x5d\x69\xf9\x8d\x46\x9d\x16\x47\x27\xb8\xfc\x9a\xf2\x9f\x62\x08\x76\xc2\xeb\x86\xa4\x86\xa8\x7f\xd4\x05\xd3\xef\xe6\xdf\x3d\x7c\x37\xf9\x0e\xe6\x44\xaa\x50\x6a\xc8\x60\xd5\xbb\xc5\xc6\x9d\xd4\xde\xae\x16\xfd\x4b\x3d\x5f\x3e\x26\x47\x84\x01\x08\x0b\xc9\x61\x61\x20\x33\xe2\x46\x1a\x89\x19\x2f\xb4\xc7\x8d\xa3\xfe\x58\xff\xd2\xe1\x34\xd4\x00\x13\x23\xd1\xeb\x75\xc3\xb5\x2b\x7d\xb2\x52\x6b\xbf\x40\x5f\xc3\xf6\x30\xf4\x0d\x79\xf0\x15\xd1\xe1\x35\xc9\xee\xfe\x38\x58\x5d\x2f\xc5\x5c\xde\x8c\xd7\xd5\xb1\xa4\x61\x46\x16\x6d\x3e\x91\xa9\x02\x3c\xf7\x43\x16\x56\xb1\x1c\x0c\x17\x31\x78\xe1\xb5\x4e\x91\xd6\xd7\xfc\x75\xe8\xa8\x89\xc4\x59\x6e\xd1\x1d\xdf\x8f\xf3\xd0\xd1\xec\x9a\x38\xdd\xe4\x1d\x15\x1c\x53\x5d\x87\x02\x0e\x1d\x42\x99\x29\x30\x67\xc7\xda\xa6\xca\x20\x0e\x9e\xee\xa6\x11\x0f\x4a\x65\xc8\xce\xb8\x47\xde\x15\x49\x1e\xc3\x4a\x72\x65\xd4\xfd\x1a\x87\xbd\x5f\xb6\x53\x9e\x7b\x57\x73\xdc\x84\x38\x20\xed\x31\x0b\xdf\x20\xe9\xee\xa9\x74\x0e\x62\x3b\x33\x64\xb8\x87\x9f\xc8\x15\x81\xbb\x48\xf3\x8d\xe9\x12\x84\x8d\xd1\xfe\xa1\x14\xd4\xac\x7e\xd5\x46\xb6\x6f\x4a\x82\x86\x95\x4b\x79\xda\x17\x61\xa2\x15\xdf\xe2\x01\xae\xf2\xe8\x55\x9d\x8d\x6d\xcc\x42\x06\xc9\x94\x26\x0c\x83\x1b\xf8\xc2\xd6\x51\x93\x6c\xe3\x32\x6d\xa9\x97\x5a\xf0\x0e\x0d\xc0\x42\x0c\x27\x7c\xbd\xa7\x5d\x21\xd4\xfa\xa2\xaa\x63\x1e\x36\x05\xe6\x5a\xa4\x13\x76\xd2\x61\x16\x69\xac\x0e\xb3\xa4\x16\x2c\xc6\x6d\x96\xd5\xb8\x18\x47\x6c\x2e\x01\xe5\x6a\xd8\x3d\x16\x97\x44\xfb\xb5\x06\x77\x84\x57\xda\xd2\x82\x61\x0f\xf4\xc4\xbf\x04\x71\x28\x94\xb9\xc3\x67\xa9\xfb\x1f\xc3\x5a\xba\x86\x83\x11\xfa\xf4\x35\xc4\x6d\x25\x60\xb3\xfa\x2b\x8e\x83\xec\x86\xcb\x10\xbb\xd4\x2d\xc0\x70\x9b\x90\x41\xc5\xb6\xd9\x36\x5a\x40\x19\x70\xb1\x92\xfa\xe4\x8f\x29\x61\x03\xb7\xa6\x86\x26\xb5\xb2\x86\x98\x3d\xa3\xca\x7a\x81\xa1\x1f\x6b\x7d\xba\x09\x6f\xe5\xdb\x44\xa3\x13\xd7\x8f\x06\xb2\x4a\x19\x11\x22\x48\xe1\x23\xe3\x19\x24\xbe\x6a\x54\x73\x17\x76\x5b\xfb\x03\x18\xea\x8c\x87\xe8\x3e\xf7\xdb\x60\xea\x38\x87\x01\xa3\x1e\xed\xda\x6d\xf0\x41\x0e\x03\xc8\x78\x3e\xcc\x28\xc6\xaf\x87\x99\x85\xd4\xe3\x61\x16\x0c\xf5\x76\x98\x05\xe4\x78\x3a\xcc\x82\x33\x9a\x2d\x45\x33\x36\xb0\x28\x20\xdd\x07\x84\x40\xd1\x79\x99\x31\xd4\x14\x90\x8d\xba\xeb\x07\x7c\xa2\x66\x0c\x37\x09\x65\x23\xef\xfa\xcf\x91\xe9\xe2\x33\xe4\x24\x42\xe3\x34\xce\x18\x3a\x12\xca\x46\xda\x6b\x0a\x3c\xb4\x33\x86\x9b\x80\x21\x30\x77\xfa\x85\x8e\xf5\x8c\x4a\x81\x00\x22\x70\xaf\x0c\xe1\x76\x7a\x39\xaa\x72\x34\x1c\x41\xc1\x54\xbb\xa2\x44\x39\x8d\x38\xb0\x85\xe2\x4d\xfd\x69\xb8\x35\x38\x38\x46\x1c\x9d\x05\x47\xce\xa2\x91\x2b\xd9\xd1\x03\x2f\xfa\xc1\x17\xcf\x0d\xed\x24\x78\x38\x28\x68\x6f\xd0\x91\x56\x70\xa9\xb2\x3a\x85\x67\x1f\x09\xd6\x1f\x1f\xe5\x1d\xec\x60\x6e\xeb\x9f\x1f\x82\x34\x03\xaf\xe7\x07\x24\xfb\x67\x58\xe5\x5e\x8b\xa8\xa4\x50\x4d\xe6\x9b\x7a\x22\xbc\x93\xa4\x7a\xf2\x95\x59\xf5\x45\xee\x62\xa5\xfe\x92\x81\xbf\xc7\xfc\x7a\xe4\xd6\x8a\x33\x11\x00\xe2\x11\x40\x77\x70\x36\x49\x12\xf8\xd2\x04\xf5\xea\x84\xf3\x3a\x7b\x79\x65\x3c\x7a\x78\x46\xe6\x6c\x72\xa7\x01\x60\xf9\xf2\xb7\xae\x4d\xcf\xec\xed\x58\x25\x17\xc6\x1b\xab\x54\xf8\x58\x95\xc6\xae\x19\x3c\x52\x1c\x11\xc7\x8c\xa3\x87\x2f\x4d\xe9\xae\xb2\xdc\x44\xf4\xf1\x64\x5d\xf0\xe5\xcb\xdf\xfe\x08\x4c\x98\x1a\x36\xb5\xd5\xbc\x7b\x3f\x7f\xb1\xde\x81\x93\xe5\xfd\x6f\xf3\x14\x68\xbc\xd8\xf7\x6f\x13\x2b\x67\xc0\x44\x0f\xbf\x22\x1a\xca\x3c\xc2\xf7\x93\xf4\x6f\x4c\x43\x9e\x14\x5d\x63\x3f\xc1\xa4\x81\x3e\x1b\x44\xb6\xf2\x81\xf6\x81\x88\xfe\x6d\x10\x41\x4f\x7e\x4a\x7f\xc2\x12\x13\xfc\x8c\x68\xac\xe6\xca\xcf\xe8\x68\xf4\xbf\x31\x8d\x85\x6e\x9f\x8e\x85\x5c\x2e\x62\x00\x1a\x36\x75\xc8\x36\xec\x00\x06\xbb\x6b\x6c\x53\x5b\x00\x38\x55\xd7\x19\xff\x18\xc2\xb9\x66\x7d\xf4\xfa\xcc\x40\xcd\x35\x4a\xf1\x56\xbd\x8b\x5f\x5f\xfa\xc1\x1d\x4d\xc0\x56\xd2\x83\x81\x6a\x84\xc7\xd4\x28\x7f\x8a\x4f\x4c\x1d\xd7\xe4\xc3\x7b\xba\x63\x8d\xaf\xf6\x7c\xa6\x66\x4f\x69\xb5\xae\x7c\xfc\x25\x85\xe6\x36\x63\xbc\x94\x0f\x04\x3e\x18\x31\x9f\xb6\xd5\xcd\xf2\x4a\xc5\x15\x1f\x2b\xc6\x1b\x59\x43\x73\x6b\x97\x11\xf5\x5b\x65\x91\xc5\x70\xaa\x9f\x1c\xdf\x81\x21\x80\xe9\x14\xfa\x8b\xbe\xed\x9c\x50\x4a\x0d\xd0\xe5\x99\xc2\x4a\xea\x68\xa7\xbd\x99\x47\x75\x15\x30\x09\xa6\x89\x18\xb3\x0d\xc6\x69\xee\xfe\x61\x61\x9b\x08\xb4\x09\x96\x91\x18\xb3\x0e\x86\x13\xeb\x21\x03\x08\x20\xd4\x4e\x0b\x6a\x2f\x60\xdc\x68\x95\xd1\x99\x9a\x1f\xc6\xec\x8e\xe9\xdc\x42\xfb\x0c\x75\x7d\xb8\x6a\xa4\x97\x2f\x5a\x86\xce\xf7\x83\x88\x95\xf4\x5c\xb5\xb5\xd8\x60\xed\xc5\x7c\x25\x3f\x5a\x23\x0c\xdc\xc2\xd2\xc9\x04\xd7\xdb\xaf\x7b\x89\x2b\xa3\x4b\xd7\xee\x9b\x0b\x6b\xaf\xe7\x8b\x61\xcd\x37\x84\x19\x48\x0b\x6a\x14\xdf\x69\x3f\xcd\xda\xe6\xdb\x5d\x33\x8b\x9a\xf0\xb4\x3a\x56\xec\xb7\xa3\xe8\xed\xd1\xde\x79\xd6\x71\x39\xe5\xf5\xd9\x2e\x80\x74\xc6\xb1\x3b\x2c\x3f\xe1\x9f\x36\x23\x38\x9b\x0a\x16\x98\x56\xc0\xca\x87\x57\x36\x4f\x46\x73\x1c\x08\x1d\x10\x6e\xfb\x52\x89\xf7\x39\x5d\x6f\x00\xea\x7b\x80\xa2\xe8\xf6\xa9\x1f\xaf\xc6\x95\x46\xda\x3d\x96\x8f\x55\x13\x81\x02\x71\xc3\x87\x24\x61\xbe\x9f\xa1\xde\x4c\xe9\x0f\x18\x2c\xf4\x43\x27\xc3\x04\xbe\x80\x4f\x9f\xa8\xbb\x39\x06\x44\xb2\x36\xb8\x0f\x04\x9f\x62\x5c\x54\xa6\x27\xd0\x47\x4f\x24\x43\x32\x19\xf4\x2a\xc2\x4e\x3d\xc2\xe8\x43\xd8\x14\x5b\x04\x3a\xf4\x50\x48\x70\x2b\x25\x73\x72\x9f\x45\xde\x47\x22\x7b\x66\xa8\x2b\x03\x67\x46\xed\xe1\xdb\x7d\xd1\x48\xc5\x38\x26\x15\x1c\xa6\x35\xc4\xa3\xa2\x7c\x58\x40\x43\x90\x4f\xbd\x5f\x3d\xe8\xc1\x50\x39\x36\x5b\x03\xcf\x9d\xa9\x6a\xa0\xdb\x31\xd1\xd8\xa4\xd8\x29\x9c\x08\xb0\x79\x68\xf6\xf7\x5e\xd1\xdb\xf5\xa0\xb6\x93\xf4\xdc\xf2\xc9\xfb\x7d\xa6\xe1\x11\x99\x8e\xf4\x14\x7d\xa6\x70\xe2\x37\x0e\x85\x93\x91\x38\x5e\x1f\xb7\xec\x17\xf0\x8b\xc0\x71\x29\xeb\x8a\x49\x81\xf1\xa7\xce\x02\xf4\xc7\x6f\xac\x21\x0f\xbd\x2c\xe3\xb9\x1f\xeb\x14\x54\x17\x44\x80\x17\xa1\x13\x19\x91\x7c\xfa\x9a\xcc\x77\xf5\x24\x6d\x0f\x79\x3a\x3b\xb0\xcf\x39\xab\x7e\x9c\xc7\x5b\x71\x32\x63\x27\x8e\xc5\x2c\xa6\xf1\x03\x57\xa9\xfa\xe9\x23\x95\x50\xf3\x94\x2f\x64\xb7\x8e\x90\x55\x7f\x6f\x15\x29\xa9\xee\xb0\x8d\x29\xaf\xae\x96\x79\x55\x6d\xcd\x07\x09\xeb\xfa\xcd\x47\xd6\xb8\x4b\x0c\xbe\xf2\x7a\xe6\xeb\xf7\x19\xf7\x8e\x53\xe1\xc3\xbe\x56\xc9\xcd\xc2\xfc\x93\x75\x78\x5a\x1f\x93\xb3\x8f\x6f\x52\x1d\x61\x4d\x5e\xf7\x77\xcb\x9d\x55\x89\x16\x38\x35\xd0\x16\x16\x51\xdb\xd5\xc1\x84\xfa\x5a\xea\x3a\x5c\xc6\xe7\xd2\x57\x33\x42\x25\x5f\x14\x84\xc0\xae\xa8\x97\x09\x18\x02\x64\xb5\x4e\xe9\x9c\x2d\xa1\x80\x17\x13\x43\x78\xb4\x20\x83\xa0\x9c\x5c\xe2\x9e\x98\x02\x30\x65\xde\x1c\xdd\xed\x6d\x4c\x14\xd4\x90\x68\xb4\x11\x91\xa3\x01\x88\x33\x43\x95\xfe\x30\x52\x06\x4c\x7e\x48\x23\x7e\x37\xa5\x25\x18\xbd\x47\xa6\xbf\x71\x67\xb7\xb7\x0f\xf4\xf4\xdf\x43\xa5\x67\x03\x86\x00\x51\xec\x7d\xa0\x8f\xff\x1e\xac\x8f\x04\x64\x10\x94\x8f\xd1\x7b\xa4\x19\xd2\xc7\x7f\x1f\xed\xe3\xbf\xbb\xfa\x38\x2b\x5f\xaf\x1f\xea\xe5\xdf\x51\x7e\x80\xc7\x0f\x75\xf5\xef\xa5\x90\x04\x9f\x7f\x88\x9e\x3e\x26\x1e\xe7\xa1\x3f\xa5\x60\x82\xba\x44\xdd\x55\xd0\x17\x1c\x88\xcb\x3d\x7f\x0b\xa7\x0d\x20\xfe\x8f\xe9\xb3\xa1\x06\xdc\xeb\xb2\xa1\xca\xdf\xda\x63\x33\x29\xfc\x71\xbd\x26\xc5\xe4\x1f\x7f\x3a\x97\x7c\xfe\x07\x98\x8f\x24\x9f\x7f\x7c\x73\xaa\xb6\xfe\xc2\x1c\xe0\x1c\xef\x10\xf0\xf1\xf9\xe4\xfa\xee\xdb\xaf\x24\xef\x6d\x76\xec\x63\x8e\xb3\x38\x85\x20\xf7\x39\xf3\xb3\x92\x57\xe0\xa6\x4c\xa5\x4e\x4d\xd4\x99\x14\xc4\x1d\x09\xe1\x2d\xb5\x39\x76\x74\xbc\x8b\xef\x70\x3d\xd1\x52\x8a\xe3\xc8\x7d\x1d\x76\x57\xe8\x2a\x80\xec\xaa\x00\xd0\x07\x85\xa7\x5e\xcb\xf7\xc8\x4e\x02\xf8\x0a\x1d\xac\xdc\x2d\x8f\x99\x57\x20\x33\xa7\x44\x66\x50\x24\xfd\x15\x29\x7a\xbe\xed\xa7\x6e\x63\xf8\x18\x70\x3f\x79\x06\x8e\xf1\x7a\xef\x93\xb3\x84\x42\xec\x92\x82\x71\xa2\x07\xa0\x47\xf3\x37\xf4\x0e\xec\x96\x8c\xc7\xce\x2a\x6a\x5f\x13\xdc\x21\xed\x0d\x51\x18\xed\xb6\x77\x1f\x48\xbb\x15\x2e\x13\x63\xce\xf6\x3c\x96\x7c\x49\xea\x67\xd0\xa7\xd8\x4f\xd2\x9b\x1e\xb5\x80\x0e\xe8\xce\x59\xc6\x04\x95\xa8\x26\xbb\x94\x28\x45\xa1\xbf\xfe\x42\x21\x94\xb4\x66\xba\xba\xec\x74\x21\x3d\x18\xe2\x7e\xf9\xe3\xf1\x48\x67\xba\xd8\xb1\xf0\xa9\x2a\x58\xf0\xff\x45\x13\xf3\x32\x80\xee\x9e\xe6\x0a\x5d\xd4\xec\x7e\xf1\xfd\x09\xdc\xf8\x05\x99\x76\x5e\xd1\x8c\x80\x46\xef\x6b\x50\x60\xdf\xea\x36\x61\x98\xd2\x2a\x37\xd1\x26\x9a\xc2\x77\x3f\x5b\x17\x48\x39\xce\x7d\xfb\xaf\x64\x33\xce\xf3\x3c\xa1\xeb\xd0\x60\xef\xcc\xe2\x41\xfa\xa8\x73\xb8\x02\xb2\x66\x84\x57\x9c\xe3\xdd\x63\xed\xba\xa0\xaf\x39\xa4\xee\xf9\xda\x89\x2f\xce\x1e\x9e\xa1\xff\x06\xed\x54\x8d\xa4\x9a\x89\xb7\x46\x35\x77\x3f\xc9\xb4\x46\xea\xe2\xa5\xbe\x49\x7a\xbe\xe8\x76\x27\xbe\xfb\xb9\xaf\x8b\x2f\xd2\x1c\xca\xd1\x0b\x29\x62\xbf\x55\xf4\xab\xc9\xb9\x2c\x90\x3d\x8c\xce\x62\xb9\x70\x5a\x34\x6d\xb6\x10\x59\x55\x4c\x53\xd6\x65\x36\xf1\x61\x0b\xa6\x1b\x06\x32\x25\x9c\xb3\xf2\xa0\xfe\x52\x35\x1f\x7e\x93\x96\xdf\x4f\xfc\x37\x11\xc1\xa9\xca\xb3\x09\xb0\x04\xdc\x6e\x16\xed\x45\x5d\xb0\x75\x4b\x4e\x4c\x02\x0c\x76\x12\xa6\x07\xd8\xa9\xf1\x5d\x92\x01\xaa\x83\xed\x1d\x6d\xe3\x54\xb6\x6f\x52\xe7\xe9\x5c\xde\xd1\xd8\x57\x06\x57\x86\x68\x03\xec\x18\xee\x1f\x33\xc6\xf6\x19\x01\xc9\x04\x17\x2d\x66\x03\x58\x69\xc9\xea\x2d\x2f\x98\xd5\xc2\xa5\x6e\x20\xe2\x4a\x90\xa6\xf9\xea\x77\x9c\xfa\x87\x21\x10\x56\xbf\x79\xc7\xa0\x23\x46\x1e\x03\x0f\x89\x74\xf8\xbb\xfb\x05\x26\x2e\x77\x60\xec\xb5\x83\xf4\x34\x36\x59\xc8\xcd\xf8\xce\xc4\x5b\x99\x04\xe6\x4b\x48\x21\x12\x73\x35\xc6\xe3\xb9\xcf\x17\x1e\xcf\x5d\x17\xba\x0b\xa4\xdd\xee\xba\x69\x16\x13\xf4\xb5\xd0\x3c\xae\xb2\x8f\x83\x99\x93\x85\x99\x83\x87\x85\xcf\x68\x52\x5a\x29\x75\x66\x39\x9c\x8e\x73\x2b\x86\x03\xeb\x1d\x7a\xe8\xb6\x54\xbe\x27\x6b\x96\xd4\x98\x72\xa3\x1a\xf5\x68\x38\xe0\x33\xb3\x4d\x56\x77\x7a\x67\xde\xe5\x24\x19\x80\x30\x89\xd5\x28\xd1\x9d\x0c\x14\xde\xd6\xe7\xee\x35\x9c\xe5\xed\x53\xa7\xf4\xa1\x07\x56\xad\x11\x67\x5e\x7d\x05\xc6\x8a\x1e\x5b\x1b\x4e\xc5\x1e\x92\x64\xb3\x5c\x77\x7b\x34\x22\x8b\x6c\x04\x58\x8d\x67\x52\xbc\xa6\x67\x41\x88\xcf\x02\x71\x59\x18\xb3\xbd\x21\x82\x5b\xea\xf3\x73\xe5\x85\xaf\xb6\x9a\xbe\xb7\xd1\x55\xe6\x0a\xa2\x7b\xdc\x8b\x04\xc1\xb7\x9d\x2f\xc8\x67\xc5\xe8\x7c\x30\x2b\xb1\xbe\x4b\xfe\x49\xf2\x1a\xa8\xdf\x7d\x93\xd4\xca\x9a\xa4\x86\x24\x61\xbd\x32\xeb\x10\xf7\xd7\x75\x2c\x5d\x37\x99\xf6\x89\xa2\x22\x97\xc7\xbd\xd2\xd1\x97\xe1\x65\xec\x98\xb4\x45\xf3\x24\x2f\xc5\x43\x17\xa5\x4a\x89\x00\x0f\xd8\x7a\x30\x10\xf8\xad\xe3\x99\x1f\x51\x7f\xd0\xc1\x55\x40\xf1\x7d\xef\xd9\x0f\xe8\x5d\x93\x37\x80\x12\x83\x4a\x4f\x46\xe4\x1a\x0c\x9c\x8f\x21\xd9\x0b\x3c\x26\x42\x1d\xc7\x51\x2f\x38\x81\xc7\x9c\x9e\x86\x77\xf6\x34\x67\x4b\x70\xaf\xe0\x70\x74\x44\xd3\x9e\xd5\xb7\xfc\x4a\x1f\x2e\x71\x41\xfc\xbb\x1c\x31\xc1\xd9\xe3\xf8\xd7\xb7\x39\x67\x42\x79\x29\x43\xc7\xc5\xd4\x31\x14\x28\xa1\x7f\xe7\xc3\x28\xff\xde\xac\x0c\x2e\xf8\x1d\x51\x11\xbc\x64\x45\x0b\x65\xf2\xea\x8d\xfe\xa6\x36\xec\x57\xab\xc2\x43\xc1\xd1\xe3\xe5\x50\x37\x87\x3c\xc0\xe3\xe3\x8b\x7e\x52\xf8\x3e\x3e\xc4\x69\x9c\xe9\xda\x2d\xbb\xaf\xf2\xf2\xb0\x5b\xa6\xdd\x32\x88\xb1\xeb\x7d\xb5\xd7\x87\x43\xb6\x55\x77\xba\x97\x5c\x0a\xa7\x3b\x89\xb3\x68\x7b\x58\x2f\xb5\xe7\x73\xbd\xb3\xd9\xd9\x7e\xb5\xdf\x27\xaa\xb2\x7a\xb7\xfc\x3e\xd6\xe5\xe3\xf4\x3a\x5c\x96\xdd\x4b\x5a\x3c\x0c\xae\x73\xc9\x93\xe2\xbe\xca\xea\x21\x67\x59\x59\xbf\xb2\x7a\x57\x75\xf5\x94\xee\xa8\xae\xa8\x9f\x9d\xcb\xa8\x6e\xea\xf1\x68\x07\x05\xee\xd3\x07\x0a\xde\xab\x01\x54\x05\x4f\x9f\x93\xe0\xbe\x5e\xa6\x2a\xb8\xfb\x95\x82\xf6\xf4\x24\x05\xee\xed\x3b\xa3\x82\x2b\x3c\xd2\x4d\xad\xf6\xeb\xc4\x56\xbc\xc4\x06\xc5\xc1\x2d\xa4\x0b\xe6\x75\xa4\x66\x1c\xa1\x9b\x92\x94\xe5\x08\x79\xfc\x18\xd0\x69\xa9\xc8\x44\x87\x51\x99\x93\xbb\x30\x22\x35\x23\x50\x2a\x1b\x73\x17\x4a\xac\x89\x04\x4e\x65\x78\xee\xc2\x09\x95\x95\x7a\xc4\x5e\x5a\xa3\xfb\x30\x22\x7d\xa6\x5a\x2e\x4d\xd4\x5d\x38\x2b\x6f\x7f\x2b\xbb\x75\x17\x42\x38\x2a\x42\x9e\xcf\x1f\xc7\x88\x07\x4e\xc8\xdb\xe6\x2e\x9c\xf8\xe5\x96\xe1\x59\xa3\x0e\x35\x58\xc6\x74\x5b\x7f\xc6\xdb\x2b\xde\x3a\xfd\x4e\x6b\x5f\x49\x2d\x86\xfc\xb5\xc0\x5b\xd0\xfa\x65\x17\x38\x2a\x1d\x8f\xcd\xf4\x88\xac\x0c\x98\xee\xd8\x82\x79\x99\x87\xf1\x76\x8c\x81\x00\xbe\x21\x63\x5c\x2a\x64\x9b\x05\x3a\x9c\x68\x9f\x99\xd3\x15\x26\x7d\xcd\x90\x2b\x9d\x75\x15\x8b\xaa\xfb\x92\xe5\xc1\x82\xdd\x2a\xee\x77\x57\x6f\xe1\x96\xcc\x79\x75\xb3\x19\x67\x9e\x1a\x36\xad\x4c\x9f\x0d\x79\xf4\x63\x70\xbd\xd6\x9b\x44\x7c\x19\x93\x09\x6e\xc8\xb0\x6c\x72\xdc\x1f\x13\xf7\x1d\xd7\x8d\x58\x3e\xbb\x2a\xb3\x83\xf8\xe7\xbb\xdc\xbb\x23\xed\x11\x44\x9f\x14\xa5\x96\x37\xb3\x93\x98\x37\x38\xc8\x8f\xf6\xc2\x6f\xf9\x30\x89\xa6\xe4\x67\x99\xba\x01\x57\x8d\x5f\x8f\xac\xeb\x91\x44\xfc\xc3\xb2\xf8\x36\xad\x59\xd3\x0c\xac\x3f\xd4\x9a\x31\x64\x5d\x6b\x22\xf1\x0f\x6e\x1e\xf6\x1a\xf6\xae\x16\xe0\xfd\x06\x57\x7f\x1c\x46\xec\xc5\xe9\x55\x6d\xd7\xb8\x34\x29\x52\x99\x2e\x33\xf9\x8b\x08\xcd\x77\xeb\x71\xeb\xf3\x25\xf9\x34\x1b\xa9\x39\x80\x58\x45\xf6\x2e\x1a\xb5\x44\x01\x51\xa6\xef\xb3\x15\xff\xb7\x26\x9b\xf7\x17\xea\xe3\xb0\x6b\x43\x5d\x87\x39\xb2\xbd\x45\x0b\x6c\xb8\x79\xc8\x7c\x1d\x97\x0e\x4e\x4c\xfa\x3f\xba\x03\x4b\x5f\x13\xd1\x1d\x8f\xe5\xba\x99\xb6\x5e\x23\xaf\xf0\xaa\x5d\x88\xc5\xbb\x37\x6e\xf4\x97\x7c\x57\xd5\x68\x64\x18\x93\x81\xfb\xde\x35\xde\x9d\x42\x45\x41\x62\xaa\x43\x09\xfd\xe4\xef\xf3\xff\xe8\x83\x64\x68\x9f\x1c\x10\x50\x76\xe4\xc0\x20\xea\x39\x5f\x9c\x36\x35\xad\xff\xdd\x15\xdf\x35\x28\x00\x45\xb4\xc9\x3f\xae\xcd\x03\xc1\xdf\x40\xa1\x1b\x76\xab\x27\xf2\x3f\x44\xd8\x85\x08\x59\x8f\x1c\x52\xee\xdf\x30\x51\x87\xe6\x27\x2a\xc6\xd8\xfd\x5a\xc8\x87\xbb\x9e\xcc\xcd\x55\xf2\xb2\x68\x32\xe8\xa6\x35\x80\x0c\xf1\x80\xa6\x38\xc3\xa2\xfd\x61\x3b\x2a\x40\xda\xe7\x81\x90\x2f\xdd\xc1\x5d\xc9\xee\xd0\xfb\x1a\x5e\x1c\xb0\x1e\xa2\x8f\x01\xb7\x77\x86\x9f\x90\xf5\x1d\x0d\xfb\xbb\x71\x79\xd1\xbf\xfc\x28\x7e\x76\x7b\x79\xab\x35\xb1\x05\x78\x5f\xdd\x0f\xd6\x33\x3b\x64\x4a\x77\x10\x11\xaa\xb7\xde\x90\xe8\x5e\x86\x9e\xea\x8d\x87\xe1\x83\x51\x3e\x28\x0c\xf9\xce\xf4\x37\x45\x3c\xb4\x0f\x6f\xeb\xf8\x5f\x7a\x7c\x8c\xf0\x3e\x3d\xd7\x3d\xfc\x52\x63\xbc\x5a\xf4\x33\x97\x3a\xcf\xde\x2b\xd4\x27\x5f\x06\x03\x94\x2c\xf5\x94\x62\xf7\x88\x80\x33\xd7\x6b\x02\x2d\x84\x85\xd2\xbe\x78\xb2\xb7\x2b\x84\xd9\x33\x6e\x0e\xb5\xb0\x81\x37\xb3\x03\x9b\x34\xd0\xd7\x7a\x63\x6d\x2a\x02\xe8\xc9\xbc\xc9\x9b\x82\xbd\x7f\xfd\x0b\xab\xfa\xfe\x8c\x08\x5c\xa9\x31\x3c\xba\x6a\x93\x85\x2f\xc0\x41\xe0\x55\x14\xd9\xb7\x89\x78\x56\x1e\x56\x53\xfe\x0d\xa1\x06\x13\xc5\x3c\xb6\x85\x05\x5e\xd7\xb3\xbe\xfe\x9b\xef\xe5\x65\xd2\xb0\xd3\xd8\x41\x6e\x23\xbc\x48\xc9\xbc\x15\x75\x83\xb9\x93\xcf\x6a\x19\xc6\x20\x51\x33\x0f\x7e\x17\x4b\x87\xb6\xd5\x85\xb2\x6a\x90\x91\x6f\x3a\xd8\x70\x5a\x5f\x8c\xdd\x64\xb8\xe1\x6a\x5c\x93\x6f\x6f\xba\x7a\x9f\x3a\x70\xcc\x7e\x76\xbb\x9f\xb0\x84\x9c\x2f\x2b\xb8\x9a\xf0\xd3\x9f\xef\xeb\xa2\xae\xc4\xb0\x49\xe8\xc0\x7e\x9f\x14\x0b\x77\xed\x71\x45\xed\x08\x98\xdb\xf0\xd8\x4d\x23\xa7\x78\x27\x32\xca\x1e\xe1\xaa\xc1\x8e\x14\x89\xde\x63\x9b\x5c\x3e\x0f\x89\xc7\x61\x58\x4c\x58\xfd\xb2\x1c\x51\x45\xdd\x61\xf2\xb7\x0b\xcb\xf2\x64\x22\x6c\xdc\x84\x8f\x59\xc6\xae\x93\xe4\x9a\x4d\x7e\x1c\xdc\xe0\xed\x66\xcb\x9d\xdf\xf7\x61\x02\x21\xfb\xe5\x5b\x74\xc7\x6f\xd3\x0b\x5f\x29\xfc\x11\x99\x93\x06\x03\xbe\xe1\x46\x16\x3d\xa2\x2c\x90\xc1\xb0\x58\x15\x13\xbb\x92\x19\x53\x4a\x7c\x31\x25\x8b\x3c\x7c\xa3\x8d\x2e\x73\xf2\x66\x55\x4d\x88\x6a\x98\x3b\x19\x02\x09\x9a\x3a\xb4\xa2\x76\x96\x55\x5e\x00\x63\xa3\x72\xd4\x72\x92\x76\xc0\x77\x53\x6e\x1f\x9f\xde\x1f\xb3\xc4\x65\xda\x3a\x1a\xe0\x05\x14\x7b\x6c\xb9\x5f\x97\x5d\xdb\x1d\x01\xc7\x24\xad\x29\x16\x04\xd5\x29\x3e\x34\x44\x69\xd7\x41\xee\x37\x1d\xbf\x67\xa9\xf8\xe7\xee\x2f\x4a\x3a\x22\xb1\x48\xde\x3c\x4f\x08\x08\x03\xa8\xb9\x78\x48\x12\x03\x1b\x37\xe8\x79\xf9\xff\xc1\x6b\x0d\xcb\x9d\x7f\x65\xbb\x28\xfa\x01\xca\x70\xc8\xf0\x01\x53\xb1\xad\x30\x7c\xd9\x43\xbc\x66\xec\x44\x34\x75\x15\xd8\xef\xe9\xd2\x50\x50\xa5\xe8\x14\x23\xaa\x1e\xa5\xba\xc7\xa3\xdb\x2c\xf7\x77\x89\xed\xf7\x0b\x6d\x96\x87\xe8\x95\x40\xdb\x4c\x64\x5a\x99\xf8\x53\xc4\xcf\x9c\x16\x7b\xb4\xd6\xd7\x19\xf3\x40\xf4\xdf\xce\xce\x87\x12\xbc\x7f\x0a\x08\xc5\xec\x9a\x1d\x8e\x45\x9b\x77\x7e\xe1\x90\x4c\xf5\x65\xd8\x6f\xe8\x67\x56\xc7\x63\x2c\x8e\x36\x5b\xf5\x09\x91\xba\x57\x4f\xee\xfa\x21\xab\x27\x89\x40\x45\x0d\xdc\xed\xd0\x27\x4b\xac\xb7\x65\x68\x41\xbb\xb0\x8d\xb6\x2a\x32\x16\x83\x23\x88\x82\x14\x40\x76\x9c\x5c\x0e\xa9\xba\xfa\xf5\x44\x6d\x50\xf5\xcf\xb2\xad\xc0\x4f\xde\xdf\xd4\xaf\x9f\x80\x75\x11\x76\x08\xc0\xd4\xf9\x27\xf0\xab\x39\xf3\x61\x0e\x7f\xbf\x96\x84\xd2\xc0\x02\x85\x5a\x17\xaf\xbb\xd2\x01\x0d\x2a\x5f\x2e\xe7\xcb\xe5\x52\xc1\x0c\x9c\x23\x90\xc5\x5a\x17\xf7\xed\xc4\xc5\x9a\x42\xcf\x36\x2a\x8d\x37\xf3\xcd\x66\xa3\x21\x86\x86\x62\x98\x95\x90\xef\x9f\x4c\xe1\x62\x98\xc5\x5c\x43\xa8\xfb\x1b\x07\xe9\xf5\x3f\x3b\xd3\xe4\xb9\xb7\xdd\xb4\xe8\x06\xbc\x71\x2d\x7b\x0f\x3d\xfc\x24\xea\xa0\x5b\xd7\xff\xa6\x67\xac\x14\x2f\xdc\xe5\xdc\x55\x57\xe9\x63\x5b\x15\x3f\x7e\x97\x25\x4d\xf2\x98\xdc\x6e\x05\xf7\xc8\xc5\xec\xf1\xd7\x4f\x33\x09\xdc\x34\xc7\xa7\xf4\xff\x67\xef\xcd\x97\x13\xd9\x91\x87\xd1\x57\x21\x66\xe2\x17\xe7\xf4\x78\x63\x5f\xba\x63\x1c\xb7\x8a\x1d\x03\x36\x60\x8c\xe1\xf7\xcd\x1f\x05\x14\x05\x36\x5b\x53\x60\x8c\x1d\x67\xe2\x3e\xcb\x7d\xb4\xfb\x24\x57\x52\x6d\xda\x4b\x85\xfb\xcc\x7c\xbf\xef\x8e\xcf\xe9\x6e\x57\x29\x33\x95\x29\xa5\x52\x99\x2a\x29\x35\x37\x76\x20\x36\xfc\xfb\x61\x3f\xbb\xca\xff\x00\x53\x97\x6d\x66\xd3\x97\x9a\x56\xd6\xc0\xcf\xbd\x56\x07\x7f\x1f\x75\xeb\x31\xd1\x7a\x6b\xbd\xa4\xe6\xbd\x0e\x7c\x5f\xb2\x61\xe1\xd3\xaa\xbd\x1f\x3e\x97\x3a\xe5\xf9\x2a\x05\x1e\xf5\x2e\x7c\xd9\xdf\xbe\x4c\xd7\x1d\x4b\x7f\x5d\xdf\x2c\xe1\xcb\xc3\x11\xbe\x9d\x8c\xd6\xfa\x7a\x3c\xdc\xdc\x99\x08\x75\x02\xa9\x36\x5e\x07\xd3\xf9\x04\x62\x6a\x5a\x07\xfc\xa9\x66\xd0\xaf\xf3\xf5\xb8\xb6\x5c\xa5\x92\x93\xf2\xd4\x02\x8f\x5b\xf8\xae\x98\x34\xaa\x4f\xf3\x91\x56\xde\x3d\xd4\x20\x7e\x1b\xe2\x6b\xed\xd5\x7c\x33\x1a\x94\x6b\xfd\x63\xbb\x0d\x99\xb2\x10\x68\x77\x33\x7e\xee\xa6\x8b\xa7\x57\x44\x4d\xcb\x42\xd2\x5a\x6b\x5c\x2d\xbc\x0c\x3b\x5a\x5a\xab\x40\xfc\x7b\xc4\x54\xb1\x9a\x98\x9b\x35\x50\x85\xb5\xca\x43\xfc\x03\x7a\xa9\x1f\x86\x83\xc4\xf2\xa3\x11\x37\x6a\xf0\xb9\x00\xa9\x36\xdb\x93\x6a\xe1\x63\x7a\x97\x2d\x74\x1a\xf0\xd9\xd8\xa0\xc6\x49\xe9\xa7\xd1\x73\xb1\xb7\x19\xed\x6e\xa0\x0c\x6b\xf8\xb2\x32\x04\xbf\xdd\xa7\xb5\x11\x90\xbd\x03\x5a\x6f\xbd\x29\xbe\xc1\xf7\xf5\x63\xd1\xb4\xee\x60\x3d\x7a\x5a\xd3\xde\xb5\x0e\x14\xa1\x0e\x60\x5a\x9a\xec\xa7\x5f\x1d\x55\x46\x9a\xae\x65\xb5\xd2\x46\xeb\xb4\x7b\x37\xc9\x8d\x36\xb0\x5a\x4d\xad\x0c\x49\x81\x02\xfc\x07\x49\x85\xe8\x4d\xdc\xfe\x03\xff\x74\xe0\x7b\x04\x57\x83\x2f\x8b\xa8\x95\xaa\xa8\xc9\x3b\x5a\x51\x83\x74\x67\x37\x37\x08\xf6\xde\xd2\x6e\x6e\x00\x5d\xdd\xd2\x7d\x7c\x87\x48\x55\xca\xe4\x7f\x7e\xbe\xf6\x83\x54\x54\x2b\x6d\xb5\xbb\xa1\xa6\xf7\xb5\x5a\x59\x1b\x95\x8e\xa0\xfd\x3b\x15\xd0\x3f\x75\x5d\x5b\x6d\x20\x8c\x6e\xc0\xae\xab\x96\xfb\x95\xf7\x4e\xa9\xbc\xb0\xf5\x8a\x36\xd1\xf5\x45\x7d\xad\xf5\x86\xf1\x87\x63\x39\xd9\x9a\xe7\x75\xed\x71\x78\xaa\x1d\xcb\x03\xa0\xf7\x0f\x37\x0b\xad\xd3\xd4\x4b\x17\x59\x2b\xff\xf0\xa8\x6b\x76\xf9\xae\xa3\x8f\xe7\xe0\xdf\xf2\xf1\x41\x9b\x0f\x07\xe5\x87\xb4\x55\x3a\xe6\xf5\x8a\xf3\xae\x53\xbe\xeb\xeb\x63\xa0\x99\x8f\x8e\xb6\xdc\xdc\xcc\x2e\xde\xb5\x44\xbe\x54\x3c\x02\xa5\xd2\x1b\x5a\x09\xea\x51\x67\x5b\x82\xa5\xc5\xa3\x5e\xae\x74\x5b\xc5\x72\x0f\xf2\x91\xd6\xeb\x8b\x74\xf1\xc1\x2a\x9f\x6a\x56\xb9\x34\x78\x6e\x56\xb3\xad\xf9\x41\x5f\xff\xcc\x17\x9a\xdb\x0b\xed\x29\x93\x78\xaf\x75\xe3\xef\xf7\xbb\xf2\xb4\xf6\xe8\x29\x26\xfc\x0b\xd4\x54\x2a\x99\xdd\xed\xf4\xf9\x98\xcf\x17\x3a\x5a\x53\xbb\x40\xfa\xa9\x7d\x7c\x0c\x86\x2f\xa8\x5d\x4a\x0f\xed\x81\xde\xbe\xb9\x49\xdd\xd8\x9d\xfb\x57\xed\x88\x4c\x4f\x1d\xfd\x8f\xb7\x5f\xa2\x79\x63\x58\xba\x81\xf0\x1f\x6e\x52\x68\xdc\x77\x78\x8d\xdd\x2a\x65\xe1\x3f\xa8\x9e\xf6\xc8\x7f\x0d\xac\xc7\xc0\x1d\x27\x60\xbc\x0c\x02\xfd\x07\x63\xd4\xd2\x1e\xb5\x6a\x1a\x3e\xec\x8b\xa3\x60\x5c\x94\xad\x92\x89\x8f\x93\x76\xc7\x97\x0b\xfd\x0b\x3a\x2f\x41\xd0\x39\x6a\x85\xe0\xb9\x05\xca\xf5\x72\xf0\x0c\x07\xa3\xde\x0a\x9e\xfb\xb0\x8d\xfb\xc1\xf3\x10\x96\xcf\x82\xe7\x8d\x76\x77\xd4\xd7\xc1\xb3\xad\x95\x8f\xc5\x1e\x1a\xff\x9d\x4e\x03\xbe\x31\xac\xe2\x32\x78\x2e\xc3\xff\x1e\x82\xe7\x3a\x10\xb9\x3c\x0b\x9e\x5b\xb0\x7c\x1f\x3c\x77\xe0\x73\x21\x78\xee\x6b\x15\xab\xd2\x0e\x9e\x87\xa0\xbc\xf2\x12\x3c\x6f\xb4\x27\xab\xf2\x11\x3c\xdb\x5a\xc3\xaa\x35\x3a\xc9\xc2\xd1\x7c\x6e\x6c\x47\xc9\x79\xbc\x5e\x9c\x97\xee\x7a\xda\xa9\x55\x2a\xc7\xeb\xd5\x46\xa6\x5e\x2d\x9c\x8c\xc1\x74\x3b\x5e\x55\xec\x7a\xb5\x92\x98\x56\xe7\x6f\x93\x75\xcb\xea\x14\xf5\xd5\x38\x99\x89\x8f\x06\xef\xf6\xf8\x94\x79\x19\x27\x13\xc1\x73\xa2\xb1\x1c\xa5\x9e\xec\xe1\x73\x23\x78\x97\x1c\xbd\x8d\xd7\xdd\xe5\xb8\xfa\xfe\xf6\xb4\x7a\x3a\x4d\x92\xcb\xb7\xf1\x42\x7b\x6f\xbe\x60\x74\xe2\xd3\xe5\x18\x94\x0d\x9f\xbb\xcb\x51\x51\x5f\x98\x3d\xfd\x63\xba\x9a\x9c\xa6\xb5\xee\xaa\x5e\x1d\x9d\xc6\xc9\xb8\xd5\x5d\x15\x0e\xd3\xea\x93\x3d\xae\xe6\xad\x49\xad\xf1\x66\xac\x9e\x5e\xa6\xc5\xcc\x06\xc0\x1c\xef\x17\xf9\xb7\x51\x50\x7e\x18\x26\x0b\x7b\xad\xdc\xd2\xc6\x47\xd0\xab\xb5\x57\x6d\x62\xe9\x5b\xad\x3a\xd1\x0c\x4d\x8f\xc3\x8e\xbf\xd3\xf4\x92\x56\x7c\x85\x5a\x7a\xd2\xc0\x88\x69\x75\x34\xf4\x7e\x68\xe9\x19\xf8\x2f\xc0\x3b\x69\xd5\x57\x6d\x74\x84\x78\x69\x6d\xd8\xd1\x6d\x54\xde\xd1\x13\x5a\xad\x03\xe9\xbc\x69\xb5\xba\x36\x39\x6a\x16\xec\x62\xa0\x3d\x2b\xad\x9a\xd7\xc6\x16\xa0\x5f\xed\x6b\x63\x0d\xc0\x83\xe7\xa6\xa5\xbf\xa0\xf7\x1d\x7e\x79\xdf\xd2\x97\x90\xaf\x29\xa4\x5f\x2d\x43\x3e\xb9\x70\x23\x0b\xd4\x07\xf8\x98\x6a\x10\xfe\x08\xdf\xbf\xc1\xb9\x6c\xd4\x01\x7c\xd6\x5a\x9a\xd1\x71\xca\xeb\x70\xee\x2a\xa6\xa1\x41\xe0\xd2\xe9\x1e\x21\x7e\xda\xc1\x03\xf5\x39\xf4\xe0\x44\xa8\x2f\x60\x3b\x81\x7f\x3f\xb4\x1a\xa0\x7b\x04\xed\x02\xe4\x9c\x42\x3a\x40\x6e\x50\xff\xc9\x91\x03\xca\x3b\x84\xed\x73\x80\xe5\x23\xc4\x37\xe0\x07\xb6\x03\x98\xc0\x26\x88\xcf\x0d\x7c\xff\x02\xcb\x81\xfc\x1b\x97\xce\x11\x4e\x65\xcd\xa3\x06\xca\xb9\xf8\x07\xad\x8a\xfa\x6b\xef\x8d\x47\xef\xc7\x99\x12\x25\x3f\x70\x5e\xed\x00\x3b\x7c\x5c\xbe\x00\x3f\xe4\xc5\x48\x26\xe6\x93\x95\x5d\x1d\x26\x97\xa7\x61\xf2\x7d\xe9\x8d\x77\x67\x1e\xcd\xf3\x69\x94\xea\x5a\x0b\xcc\xdb\x37\xb9\x72\xa9\x78\x73\xf1\x0e\xac\x98\x6d\x17\x75\x6b\xb4\x48\x1e\xb5\xde\xd1\x1a\x15\x8b\xc7\x63\x05\x8c\xf8\xe2\xc8\xb0\xb5\x6e\x65\x90\xb0\xe6\xf5\x53\x79\xbc\x58\x5a\x96\x5d\xd1\x3b\x83\x62\xf5\xd8\xa9\xbc\x8e\xeb\x4d\x2d\xdd\xaf\x58\x73\xbb\x34\x1f\x0d\x7a\xc5\x63\xf1\x15\xf8\x45\x4d\x6d\x83\xde\x69\xdb\x0a\x28\x3f\x3a\xe5\xfa\xa8\x7a\x82\x34\xf5\x61\xbd\x3a\xb4\x16\x9b\xed\x1c\x94\xdd\xf5\x2b\x73\x0b\xbe\xaf\xc3\xf7\x63\x30\xe1\xe8\xb6\x65\x97\x46\x88\x7e\x7b\xa5\x8d\x87\x95\xe5\x68\xd0\x05\x4e\x5b\x71\x0f\xe8\x03\x3f\x09\xc0\x8d\x9e\x96\xa3\xe6\x58\x2b\x36\x8b\x3a\xa4\x5f\x6e\x0c\x2a\xaf\xe0\xdf\x4a\x27\xa1\x0f\x6d\xad\xff\xd2\xd9\x69\xd5\x7a\xbc\x3e\xae\xf7\x2a\x23\x1b\x58\x09\x00\x5b\x6a\x16\x5b\x90\x7f\x6b\xd4\x2c\x57\x86\xaf\x75\xcb\xd6\x80\x39\xdf\xd5\xef\x40\xbb\xff\xac\x03\xbe\xf5\xd7\x96\xb5\x58\x14\xef\x40\x3b\xec\xec\x47\xad\xd2\x18\x6e\xbb\x83\xaa\xde\xa9\x26\x2b\xbd\xc1\x93\xf5\x32\xe8\x95\x2d\xbb\xac\x3f\x0e\x9a\x60\x2c\xbd\xdb\x73\xf0\xfb\xa8\x9e\x03\x56\xa8\x32\x5f\x0e\x7a\x49\xd0\x4e\xa7\xa3\x1e\x6f\xed\x6c\x0b\x68\x4f\xb9\x6d\x75\x40\x3b\xea\x3d\xf0\xee\xd4\x2e\xd6\x81\x7c\x5a\xb1\x5d\x1c\x8e\x8b\xda\x70\xa7\xe9\x43\xc0\xf3\x1d\x2c\x5f\x1c\xad\x7a\xb9\x0f\x78\x69\x54\x86\x39\xe0\xaf\x0e\x1a\x56\xb7\x09\xca\x8b\xa0\xec\xe4\x95\x69\xbb\x7a\xae\x5c\xd4\x8b\x4f\xe0\x79\x70\x57\x4f\x96\x51\xdf\xb8\xed\xa5\x55\x73\xb0\x7d\x17\xc7\x3a\x70\x6c\x3b\xa0\xad\x7c\x9e\x80\xcc\x8d\x5e\x7b\xde\x2d\xf7\xe0\xec\xb1\xb7\x35\xcb\xb6\x3b\xfd\x4a\x17\x0c\x8c\x61\xbf\x03\x9e\x5f\x6d\xd8\x36\x75\x40\xab\xd8\x6f\x03\xb9\x61\x9f\x82\xdf\x7b\xed\x22\xc0\xbd\xeb\xc4\x7f\x1e\x61\x2b\xc0\x3e\xaa\xc7\x1b\xb0\xbd\xef\x9a\xc5\x62\x5a\x07\xe3\xa6\xde\xb4\xca\x5a\xf5\x1e\xf0\x52\x3d\x16\xe3\x6d\xab\x5e\xdf\x5a\x00\xae\x09\xda\xfc\x05\xc0\x35\x9b\xe5\x7d\x7f\xd0\x2c\xd7\xb4\x7e\x77\xd4\x68\x82\x49\xad\xd7\x4e\x83\xf7\x2d\xf0\xbe\x3b\x28\xef\x1f\xbd\xb2\xea\xa9\x02\xcb\x1f\xdd\xf2\x36\x40\xd4\x4a\xe5\xf6\x13\x28\x07\x26\x19\xf4\xf5\xa0\x52\xb4\xb5\xcd\x0e\xf0\xa3\x75\x72\x5a\xb1\xd1\xbf\x7b\x2f\x76\xea\xcb\xce\xae\x7c\xa7\x2d\x9e\x40\x59\x79\x80\xda\xf6\xf4\xd4\x01\x38\x3a\x6c\x77\x5b\xeb\x2c\x3b\x9b\x9f\x77\xf5\xfa\xe6\x65\x38\xd6\x1a\x77\x8b\xf2\x0b\x90\x73\x8e\x3d\x8f\x6d\x10\x33\x74\x92\x00\x0f\xd1\xa8\x2f\x9d\xf7\x50\x57\x96\xa5\x6e\x0e\xca\x3e\xb5\xec\x3a\x94\x13\x78\xef\x03\xc0\x47\xff\x69\x31\x04\xbc\x81\xe9\xf0\x05\xf6\x0f\xe0\x45\x7b\xd8\x81\xf1\xd7\xa9\x94\x86\xe5\x3a\x68\xcb\x34\x68\x5b\xad\xd2\x7d\xea\x0e\x81\xc7\xd0\x02\xed\x60\x0d\x61\x3f\x8e\xfb\x6d\x10\x8d\xc0\x79\xb3\xd8\xd9\x6c\x2d\xbb\x13\xaf\xdc\xe5\xf4\x3d\xd0\x9f\x05\xd4\x99\xd2\xe9\xf4\xae\x69\xe9\x1d\x90\xbd\x03\x64\xd7\x4b\x0b\x7b\x6f\xeb\x65\x40\xab\x7e\x7f\x77\x4a\x1e\xcb\x0b\x50\x7e\x44\xe5\x8f\xa0\xbc\xec\x94\x77\x60\x3f\xa2\xf2\x4a\xef\xf4\xae\x5b\xa8\x7c\x00\xca\x6b\x4e\xf9\x04\x94\x5b\xa8\xbc\x5a\x3c\x81\xf6\x42\xe5\xa3\x66\x53\xab\xdf\xe5\xca\xc0\x9d\x7b\xea\x0f\x00\x47\x25\xa0\x8f\xf5\x2a\x68\x83\x41\x35\x51\xea\xc4\x75\x38\x3f\x76\x5e\xef\xee\x80\x9c\x6d\xbd\x77\x38\x8e\x7b\xf6\xb8\xbe\x7c\x05\xf4\x36\x50\xb6\x11\xa2\x07\xf9\xed\xbe\x42\x7a\x13\x50\x5f\xb1\xda\x83\xf5\xc5\x41\x79\x0b\x95\xd7\x00\xbf\xba\x8e\xca\x67\xa0\xbc\x82\xca\x8b\xc0\xae\x74\x86\xa8\xbc\x0e\xf9\x7d\x47\xe5\x0b\x50\x5e\x77\xca\x5b\xa0\xfc\x15\x95\x37\x8a\x47\xeb\xc1\xd5\xff\x06\xb0\x41\xa0\x0d\xdb\xc3\xa2\x5e\x02\x3a\xad\x0f\xa1\x3e\x2c\x9e\xe6\x50\x67\xed\x62\x07\x8c\x59\x00\xb3\x38\x01\xb8\x03\xf8\xb3\x01\x74\x26\x76\xbd\xa8\xd7\xa0\x3e\x6b\xaf\x4f\xb0\xcf\x2b\xc3\x95\xf6\x32\x7c\xb4\x5e\x80\x7e\x3e\x0d\xf8\x65\xe3\xfa\x13\x90\xb1\x68\xe1\xfd\xa7\x57\x76\xda\xfa\x0e\x8c\xd3\xca\xa3\xe6\xb4\x41\x11\x8e\x15\x6b\x27\x87\xd9\xd8\xf5\xd2\xc0\x19\x6b\x45\x00\xde\xd4\x4a\x9e\xee\x20\x9b\xe2\x8f\xf1\x3b\x60\x0b\x80\x3d\xd3\x8d\xb8\x63\x88\xf5\xf2\xc3\xa2\x95\xb6\x7b\x1b\xbd\x82\xe4\x38\x02\x3a\x47\xab\x7b\xc2\x79\x05\xbf\x97\xdb\xf3\x7b\xd0\x2e\xcd\xde\xf1\x50\xf9\x38\x02\xb8\xb4\x10\x0e\xfc\x5e\x1a\x7e\x58\x00\x26\x0f\x75\x49\xab\x2c\xfa\x56\x73\xa1\xc3\x48\x15\xda\x46\x30\x8e\x56\x77\x8b\xd7\xc9\x4b\xf7\xd4\x9e\xd7\x2b\xf3\x05\x1c\x87\x60\x2c\x41\x7b\x78\xd0\x3a\xe5\xa7\x4a\x11\xf0\x51\x02\xfd\xa6\x69\x03\x38\x9e\xe0\x1f\x00\x5b\x83\xe3\x5d\x7f\xed\xef\x46\xc3\xcd\xa1\x7e\xd2\xac\x87\xfa\x06\x8e\xdb\x77\xa0\x5b\x1a\x68\x8f\x72\x63\x0c\xfe\xf4\xb4\x83\x03\x5b\x86\x63\x11\xd9\xe2\x6e\x0f\xd8\xf4\xaa\x63\x5f\x3a\x80\x4d\xfb\x58\xb7\xc0\x6c\x3b\x06\xff\xae\xb4\xf7\xed\xa8\xf3\x5a\x7f\x01\x63\xad\xde\x39\x15\x81\xad\x71\xf9\x8a\x8f\x00\x7e\xb7\x04\xc7\xe1\x10\xf6\x5b\xd1\xf6\xe6\x8c\x62\x27\xa9\xbf\x02\x9d\x28\x75\x92\x95\x57\x68\xfb\xb4\xd7\xf6\xbc\x8a\x9e\x75\x20\x47\x6b\x89\x70\x7a\x2d\x0b\xcd\x0d\x8b\x76\x15\xf5\x73\x0e\xd0\x8f\x1b\x40\x87\x06\xc7\x62\x19\xf0\x07\xea\x19\x0e\x34\xac\x8e\x96\x6b\x6b\x41\x84\x0a\x6d\x03\xe8\x23\xbd\x07\xf5\xad\x8f\xe8\x01\x59\x56\x43\x38\x4f\x00\x3b\x3c\x2a\xde\x43\x9b\x63\x8d\xa0\x0d\xee\xda\x2f\x40\x87\x5e\xa0\x6e\xe9\xc5\xe1\x4b\x77\x55\x4e\xc3\xb1\xdd\x02\xba\x09\xb4\x16\xd9\x57\xbd\x37\xb4\x9a\x5e\x7b\x7f\x1c\x61\x9b\x7d\xa0\x36\x5b\x00\x7b\x0b\xc7\x61\x51\xb3\xba\x8b\x76\x0d\xd5\x9f\x2c\xc3\xf2\xb8\xdb\xa6\x25\xd0\xa6\xa0\xbf\x1c\x5c\x60\xa3\xfb\x83\x62\xda\x7a\x00\x73\x59\x15\xda\x43\xac\x0c\xce\x7f\xa8\xfd\x7d\xd8\xe1\x12\xf2\xde\x83\x30\x83\x2a\xd4\xc3\x97\xfa\x49\x1f\x0e\xe7\xf6\x7c\xe0\xd9\xb4\x62\xcb\xef\xc7\x3a\xd0\x01\x50\x6f\xc2\xe7\xab\xdc\x0a\x78\x06\x76\xa2\x5e\xd5\x57\xc8\x26\x06\xfd\x9e\x04\x73\x2a\x80\x81\x6d\xfa\x54\xed\x03\xbf\xe0\xa1\xf2\x7a\xb0\x7b\x43\x1d\x58\x6d\xa0\x3f\x60\x3c\x9e\x80\x2e\x20\x7d\x83\xf3\xb9\x96\x1f\xf4\xb2\xef\x0d\xab\xdc\x87\x63\xfd\xbe\x78\x04\x6d\x96\xa9\x42\xfb\xdb\x5d\x82\x79\xa6\xf4\x3e\x92\xc2\x83\xb9\xb4\x55\xb4\x19\x9c\xe6\xae\xbc\xd2\xba\x1d\x68\x53\xb2\x80\xf7\xf7\xbb\xf4\xc6\xaa\x97\xc0\xbc\x0b\xda\x75\xf1\x62\x09\xe1\x61\xbf\x37\x77\xda\x0a\xd1\x3e\xc1\xbe\x32\x00\xce\x00\xf6\xa1\x2f\xb7\xad\x8d\x2a\x77\xa7\x16\x68\x6f\xed\x50\xff\x58\xf8\xbc\x3c\x40\xbb\x0a\xe7\x99\xdd\x2f\xd0\xfb\xb2\x09\x22\xd7\xfb\xa3\x55\x6d\x40\x7d\xd5\xee\xc0\x18\x58\xac\x20\x8d\x46\x69\x58\xed\x80\x71\xdd\x2e\x0d\x07\x5d\x30\xbf\x41\xbd\x07\x73\x17\x7c\xae\xac\x80\xfe\x0d\x20\xce\x1c\xc9\x06\x74\x0e\xb4\x5d\xbe\xfe\x01\xf4\xbc\x47\xea\x52\xfd\x69\x15\xf0\xed\xb4\x21\xd6\x47\x60\xde\x2a\x95\x77\x75\x38\x56\xdc\x36\xf3\xe5\x84\xe3\xe0\x94\x05\x36\x16\xc2\xe5\xa1\x2d\x78\x82\xbc\x42\x3f\x06\xf8\x38\xba\xd6\xed\xf7\xcb\xa0\xbc\x09\x6d\x45\x59\x0b\x29\x87\x73\x1a\xb0\x95\xfa\x3d\xb0\x5f\xf0\xb9\x0e\x7c\xcd\xfc\xcf\xe6\x58\x2f\x21\x7d\x7b\xed\x83\x7e\x4a\x5b\xdd\x0d\x98\xa3\x1f\x83\x76\xee\x02\x9f\x0a\x8e\x0f\xbb\xdc\x02\xfd\xab\x57\x9a\x4d\xe0\x23\x97\x8e\xf0\xf7\x2a\xfa\xfd\x11\xfd\x5e\x03\xbf\xeb\xee\xfb\x3a\xfa\xdd\x79\xdf\x70\xe0\xe3\xf0\xf7\x3b\x07\x1e\xfd\xde\x74\xe0\xd1\xef\x2d\x07\x1e\xfd\xde\x76\xe0\xe1\xfc\xa4\xdf\x3b\xf0\xe8\xf7\x07\x07\x1e\xfd\xde\x71\xe0\xd1\xef\x5d\x07\xde\x86\xbf\xf7\x1c\x78\xf4\xfb\xa3\x03\x8f\x7e\xef\x3b\xf0\xe8\xf7\x27\x07\x1e\xce\xc7\xfa\xc0\x81\x47\xbf\x3f\x3b\xf0\xe8\xf7\xa1\x03\x8f\x7e\x1f\x39\xf0\x1b\xf8\xbb\xe1\xc0\xa3\xdf\xc7\x0e\x3c\xfa\x7d\xe2\xc0\xa3\xdf\xa7\xa0\x2d\x4f\x77\xa7\x60\xcc\x3c\x03\x1b\xd4\x5a\x1c\x8e\x6d\xd8\x87\x15\xd0\x87\xa5\xfa\x0e\x8c\x4b\x08\x6b\xb9\xf6\xe5\x04\xfa\x39\x0d\x61\x87\x50\x37\x4e\x98\x6e\x54\x41\x1f\x95\x80\x3f\x5b\x1a\x42\xf8\x17\x00\xff\x01\x60\x53\x10\x76\x54\x84\xb0\x07\x30\x86\x21\x5c\x1f\xc0\x81\xf1\xe7\x8f\x43\x7d\x05\x60\xe3\x00\x36\x89\x60\xc1\xd8\x6a\x03\x5b\xda\x3e\x41\x58\x0b\xc1\xda\x25\x0b\xc2\x6d\x01\x5c\x02\xe7\xd7\x00\xfc\xb6\x7b\x2e\xbf\x55\x1b\xc0\xf6\x3d\x7e\x6d\x04\xeb\xf2\x3a\xee\x1d\xc1\xf8\x9d\x03\xfb\xd6\x7a\xed\xd7\x80\xfd\xef\xf6\x8f\x4d\xb8\xd6\x51\x3e\x80\x40\x70\xde\x43\xbe\xe0\x30\x33\x3a\x74\xa0\x33\xae\xc3\xb9\x45\xaf\xc7\x81\x1f\x7c\x6a\x1f\x6d\xab\xb3\x29\xf6\x9f\x7a\xdd\x26\xf0\xfd\xad\xc9\x4f\xe0\x9b\x80\x8e\x2c\xbf\x6a\xc3\x79\x77\xd0\xd4\xb5\x45\x65\x01\x7c\xaa\x76\x19\xb6\xc3\x02\x8c\x59\x30\x21\xba\xef\x2a\xe5\x01\x88\x3b\x06\x20\xc0\xbc\x49\x03\x3b\x51\x4f\xbe\xeb\x1d\xb8\x5e\xa2\xfd\xfd\x2f\xdf\xe0\xbe\x4a\x63\xff\xfb\x6f\xfb\xdd\xc1\xdc\x9f\xb6\xe6\x6f\xdf\x2e\xf9\xeb\xdc\xce\x76\xb2\xcd\x8c\x5e\xe6\x76\x57\xb9\xa7\xf1\x42\xb5\x6b\x79\xab\xa8\x9b\x3e\xf0\x0e\x9d\x58\xee\x41\xb4\x7a\xe4\xfd\xe8\x0f\xfd\x53\xfe\xa4\x79\xab\xde\x70\x95\x55\xd3\x07\x0f\x66\xa5\xa1\x0d\xe0\xaa\x38\x7c\x59\x45\x21\xe6\x3d\x8c\x2e\xfb\x3b\xb4\x4a\x3e\x4c\x8d\xe2\xe8\xe5\x04\x11\xef\xc3\xbf\x6a\xda\xa8\x71\x93\xe9\xae\x26\xd5\x29\x8c\x4c\xf5\x24\xa2\x0e\x57\xaf\x57\xdd\x85\xb5\x4d\xdf\x27\xbd\x55\xf2\x31\x82\x2f\xa2\xfa\x51\xc8\xda\x19\x25\xdf\x33\x23\xf0\xab\xbe\x87\x21\x6a\x11\x2d\x60\xef\xf7\x85\xb5\x5e\x1b\x6d\x46\x20\x4a\x83\xe4\x5f\x50\xf4\x89\x50\x93\x5a\xcf\xce\x9b\x49\xb4\x6a\x0e\x1e\x67\x68\xe9\x08\xf1\x53\xec\xa0\x55\x74\xa3\x9a\x88\x9b\xb0\xfe\x0b\x67\xd5\x1c\xa1\x6a\xf6\x16\xbc\xb1\xc7\xc9\xf6\x1c\xd2\xcb\x07\xf5\xd7\xd1\xaa\x59\xd2\x59\x45\x07\xf4\xd2\x01\x3d\x67\x55\x7d\xbc\xaa\xec\x47\x1d\xb8\xa8\x0e\xe1\x2b\x50\x8a\xe2\xc7\xe4\x34\xad\xce\xdf\x8f\xe3\x54\x1b\x7a\x64\x0d\xb4\x4e\x5f\x44\x0b\xea\xb9\xdd\x2e\xa1\xad\x6a\x70\x55\x1d\x3e\xa2\x55\x79\xed\x09\xa1\x1a\x68\x95\xdd\x6c\xbc\xbf\x0c\xab\x8f\xe6\xf1\x71\x01\x42\xe7\x81\x6e\x65\x57\x77\x46\x27\x5f\xd2\xe2\xad\x87\x79\x75\x94\x3f\x56\x4b\xf5\x53\xeb\x51\x3b\x82\x3f\x27\xfb\x04\x42\xd4\xde\xeb\xc1\x18\x1e\xef\x9b\xef\x96\xd9\xaa\xd5\x6b\x0f\x9d\x9b\xc5\xa9\x7a\xb7\x1a\xbd\xe9\xb5\xd3\x4b\xab\xd8\xa8\x97\xb4\x07\xb3\x50\x4c\xea\xe9\x75\xb5\x6d\x0d\xc1\xac\x6b\x55\xb5\x91\xfe\x3a\xac\x82\x98\x49\xcf\xcf\x5f\xf4\x99\x3e\xac\x96\x7a\xa5\xb6\xfe\xb3\x33\xaa\x8e\x00\x48\x25\x7d\xbc\x79\xcb\x3f\xf4\xdf\x8a\x45\x10\x55\x35\x5b\xe5\xe6\x93\x76\x2c\xbf\x54\xf3\xf7\x75\x1d\xf8\x6b\x19\xcd\x78\x83\x8b\xfc\x90\x5e\x47\x6b\x57\x4b\xe5\x71\x2b\xf5\x90\x4f\x59\xa0\x23\xca\xcd\x4e\x29\xfd\xbc\x98\xac\x9f\x9e\x47\xd3\x7d\x7b\x50\x69\xf4\xf3\xa3\x9a\xd6\xbb\x5f\xf5\xac\x8d\x96\x7b\x4e\x95\xe6\x9d\x6c\xfe\x67\xf9\xae\x6b\x1d\x8d\xde\xae\x32\x5d\x94\xa7\x35\x6d\xb1\xd7\xf5\xe4\x6b\xa9\xf6\xf8\xba\x9e\x4c\x2e\xb2\xc9\xc3\x7d\x67\xb7\x1f\xd4\x6e\x56\xf1\xdc\x3a\x5e\x68\x34\xbb\xf1\xdd\x78\x68\x2f\xed\x8b\x8b\x6e\x62\xbf\x4e\x96\x76\xeb\xee\xfc\xf8\x72\xb7\x8e\x1b\x8b\xea\x5b\x7f\x33\xba\x7b\xd6\xb2\x2b\xfb\x61\x34\xba\x2b\xc4\x97\x93\x44\xaa\xff\xf6\x92\xe9\xb7\xf4\x75\x65\xba\x9f\x37\x1e\x7a\xa3\xc3\x66\xdd\xeb\xde\x19\xfb\x94\xdd\x2f\xe6\xde\x07\xf7\xf6\xcf\x41\x6f\x3a\x6c\x5c\x3c\x2c\xeb\x95\xd1\xc3\xd3\x28\xb3\xde\x68\x1f\x8b\x8a\x9e\x59\xf6\xfa\x9d\x71\x57\x3f\x6c\x97\xa7\x51\x23\xbd\x59\xbf\x34\xd2\xaf\x83\xd1\xbb\x36\x6b\xf4\x5f\xad\x86\xd1\xea\x6c\x0b\xcd\x7a\xbf\x5c\x4f\x54\xed\x6e\x2f\x61\x54\x5a\xd9\x69\x71\x97\x78\x6f\xbf\xc7\xe3\xa5\xbb\xee\xcf\x96\x39\x7d\x9a\xf7\x0b\xf1\x87\x4a\x23\x3f\x49\x6c\x0b\x3d\x5b\x8b\x0f\x7f\x3e\x7d\xac\x8b\x15\xf3\xed\xa9\xbb\x4b\x8f\xb7\xc7\xd6\x9b\x99\x01\xb1\xa8\x5d\xfd\xd8\x0d\x27\xef\xb5\xf5\xc2\x9e\x6d\x3b\x3f\x5f\xeb\x3f\xbb\xd9\x89\x75\x33\x7d\xdd\xde\x2f\xeb\x86\xfe\x54\xab\xf5\x37\x4f\xe3\x45\xb6\x54\x7c\x7c\xbe\x31\xbb\x8f\xc5\x5d\xbb\x73\x67\xb4\x86\xaf\x83\x65\x6e\x53\x4d\xa7\x66\x89\x78\xf2\x7d\xf8\xfe\xf0\xdc\xc9\xbe\x2d\x32\x77\xcb\xbe\xf1\xf3\xb0\x5b\xdf\xdf\x35\x76\xfb\xf8\xac\xba\xb1\x4e\xd6\x43\x72\x32\xde\x6e\xdb\x1f\x9d\xe4\x6c\x7c\xcc\x74\x97\x8f\x4f\x77\xfb\xe9\x64\xfc\xb0\xef\x54\x87\xed\xe7\xf2\xae\x31\xae\xf5\x66\x60\x6c\x4f\x1b\xcb\xe6\x4b\xb6\x53\xb9\x6f\x8f\x8e\xc5\x9f\xdd\x75\xa2\x9b\x7f\x1e\x65\xf2\x79\x10\x37\x2e\x27\xcb\xbb\x4d\xfe\xe9\xf1\xae\x66\x5a\xf7\xa3\xd6\xc7\x3e\x37\x79\xac\xed\xc7\x0b\x73\x67\xaf\x8b\xaf\xeb\xe3\xe4\x34\x4e\x8d\x92\xe9\x4c\xb2\xd6\xc9\x4e\x9f\xe7\xa9\x9b\xee\xc5\x7c\xda\x4a\x03\xb1\x5e\x2e\x1a\x8b\xd9\x4b\xa6\x78\xb1\xd4\x7f\xce\x16\x8d\xfb\xc6\xdd\x53\x75\xd0\xfa\x38\x6d\xd3\xc3\xd9\xe4\x69\x62\x75\x76\xaf\xef\x0b\xcd\x7e\x3e\x1d\xf4\xc7\x79\x69\x19\xef\x4e\x77\xa3\xd1\x32\xf5\xb2\x7f\xac\x25\xe7\xf6\x4d\xa6\xf7\x73\x39\x7f\xe8\xac\x8d\xec\xdd\x43\x7a\x66\xed\x0a\x8f\x8b\xce\xae\x56\x9d\x76\x37\x37\x4f\xf5\x75\x2b\xf1\x92\x48\x0d\xf6\xa9\xea\xb4\xd3\xcb\x0d\x72\x95\x0f\xfb\xb4\x8b\xdf\x3f\xd5\x0f\xb9\xb7\xe2\xf1\x70\x68\x5d\x98\xe5\xe1\x28\x3d\x28\x26\x9e\x66\xeb\xb7\xb5\xa9\x3f\x3e\xde\xe8\x9b\xf9\xfa\xa6\x5c\x32\xdb\xf5\xa7\xe6\x45\x66\xb8\xed\xed\xba\x6f\xab\x6c\xa3\x75\x48\x2e\xee\x8a\x87\x78\xef\xe9\xee\x69\xda\xb6\xfb\xfd\xdc\x70\xb3\xdd\xae\xd6\x0f\xab\xd5\x5d\xb5\x30\x4f\x3c\x7e\xb4\xef\xcc\xd6\x47\xf3\xe5\x26\xff\x36\xc9\x64\x6a\xb9\x5a\x3b\xf7\xfe\xda\x78\x4b\x3e\x9b\xbd\xd5\xac\x73\x91\x31\xa6\x85\xda\x78\xbf\x79\x78\x6d\xec\x07\xf5\xc7\xe9\xbe\x36\x5e\x6e\x9b\x27\x2d\xb5\xeb\x8f\x0e\xc9\xe5\xe0\xe5\x7e\x3d\x2c\x57\xad\xd1\xb6\x92\xa8\x3f\x75\xa6\x5a\xdc\x7e\xdb\xce\x53\x15\x63\x5c\xe8\x97\x06\x2f\xa5\x6e\xde\x18\x94\x4e\xcd\x55\xb3\x7e\x71\xd8\x96\xbb\x99\x64\x62\x3f\xd9\xcc\xde\x9f\x0b\x89\xb4\x65\xd7\x26\xab\xd5\x62\x9b\xb3\x17\x95\xcc\xdb\xa2\xf9\xf3\x66\x5c\x79\x49\xe7\x53\x66\x76\xf7\x92\xd9\x56\x53\xe3\xd2\xd3\x45\xcb\xe8\xe6\x5f\x34\xb3\xbb\xde\x4c\x56\x7b\x7d\x74\x31\x49\xcd\xdf\x2e\x12\xed\x54\x2f\x6b\xe4\x5e\xee\x7e\xb6\x0e\x96\x5e\xe9\x1f\x41\x78\xa8\x2f\x73\x7d\xad\x18\xff\xd8\x8d\x8b\xc6\x63\x62\xf5\x73\x96\xce\x5b\x53\xeb\xb9\x3e\x4a\x7f\xbc\x6e\x4b\xfb\xa7\xde\xec\x3e\x6d\xac\x72\x17\x4f\x19\xa0\x6b\xef\xf7\xb3\xea\xc5\xfb\x45\xaa\xda\xdc\x4d\x27\xd3\xd4\x6b\x63\x30\x1d\xb6\x27\xab\x87\x64\xbe\x5d\xe8\x8d\xee\x76\xbb\xda\x45\x7f\xbf\x7b\xea\xac\xbb\xd9\xe3\xae\x91\x2e\x3c\x19\xef\xf3\xd2\xdd\xee\xb8\x39\xec\xb2\xbd\x65\xed\x10\xdf\x77\x0f\x37\x77\x77\xab\x53\x7e\x99\xed\x27\xec\xdd\xfa\x35\x53\x1c\x3f\x0c\x5b\xe3\xce\xf2\x90\xcc\xad\xaa\xc7\x7a\xfc\x7d\x7b\x5a\xf4\xcd\xe7\xe5\xfd\xf2\xae\x94\xea\xf7\x37\xd9\x53\xe7\xf4\xfe\x76\x37\xd9\xe4\xd3\x8d\x5e\xb3\x98\xf8\x59\x7d\x6f\x5a\xf7\xd3\x4e\xe1\xa7\x91\x7f\xdc\x6e\x9e\x37\xc3\xea\xd1\x9e\xcf\x7f\x56\xe3\x6f\x5d\xfd\xd8\x2b\x2e\xa7\x95\xe9\x45\xfc\xb4\x9e\xbd\xd7\x7e\xee\x77\xc9\xfb\x97\xf4\x7b\xf7\x79\x9e\x7d\xde\x9e\xca\xf3\xea\x2c\xbd\xd8\xe5\xfa\x33\xbd\x9f\x88\x8f\x0b\x59\x2d\x67\xbc\x55\xc7\xd3\xd6\xa6\xb5\x7d\x32\x7e\xae\x2f\xd2\xef\x0f\xb6\x71\x33\x2e\x2c\x2b\x23\xc3\xe8\xdd\xdb\xef\x66\xea\x49\x9b\x3d\xb7\xef\x6d\xe3\xbe\xfb\xfc\xf8\x78\x01\x46\x69\xad\xfb\x76\x5f\x7d\x99\x6a\x1f\x89\xfe\xac\xd4\xd5\xeb\x89\x7e\xe2\xfd\xe2\xa5\x7a\x57\x6d\xc5\x97\x2f\xcf\xcb\xd4\xb1\x1b\x6f\x3d\x8d\x2e\x8e\xc9\x97\xa7\xe1\x9b\x5d\x48\x95\x2f\xa6\xdb\xca\xc0\x3e\xf4\x0f\xc3\x5c\xc3\x7e\x2c\x5c\x14\xe3\x87\x9b\xf8\xcf\x8b\xdc\x60\x32\x88\x8f\x07\x37\xd3\x49\xf5\x6d\x90\x7a\x5d\x6c\xf3\x2f\xad\x71\x7e\x5f\x7c\x3b\xe6\xf4\xe4\x5d\x6a\xa4\xa5\xfa\xf7\x99\x7b\xbd\xaa\xbd\xd5\x07\x53\x6d\xf8\x3e\x1f\xae\xa6\xef\x8b\x83\x95\x4c\x95\xc7\xb3\xe1\x4d\xe3\xe7\xec\x26\x95\x36\x2a\xdd\xe7\xc6\xf3\xfd\xfb\xcf\x9c\x69\xee\x4a\x89\x51\xbb\xdb\x78\x9e\x8d\xf2\xbb\x97\xe6\xe3\xf3\x68\x94\xc8\xb6\x92\xdd\xc2\xd3\x7d\xf5\xcd\xae\xbf\xf4\xe2\x0f\xed\x8b\xf1\x30\xfd\x5c\x07\xee\x4e\xd7\xea\x8c\xc7\x17\xc7\x59\xfe\x3d\x67\x55\x52\xc6\x53\xb9\x98\x6e\x97\xea\xa3\xd1\xa2\x9e\x5c\xf7\xe6\xeb\xc3\x6e\x9e\x9d\x67\x77\xf6\x20\x9e\x7e\x7a\xaf\xeb\x53\x3b\xf9\x9e\x4e\x75\x34\xd3\xd2\x0e\x9d\x69\x7e\x72\x28\x8c\x3f\x8a\xc3\x52\x22\x55\x7c\x58\x37\x6d\xbd\x30\xb1\xe6\xc9\x53\xb1\x96\x5e\xea\xa7\xe2\x47\x7e\x91\xd1\x67\x5a\xe6\xbe\xd3\x9d\xbd\x96\x5b\xc7\x7a\x7d\x6a\x2d\x33\xc7\x9c\xa6\xdd\xd4\xeb\xcf\xf3\x7a\xc9\x2e\x9b\xf7\x9d\xde\xc3\xa9\xfd\x5a\xbe\x68\xd4\x27\xd6\x4f\xf0\x7e\xf8\xd2\xa8\x03\xa7\xfc\xd0\x49\x1d\x57\x80\x46\xe3\xa2\xd3\x99\x95\xe3\xf7\xc7\xc7\x69\x75\xf7\x9a\x79\xbd\xd9\x0e\x6b\xc9\x4e\x29\xfb\xf1\xf3\x6e\xdc\xb9\x5b\x81\xf9\xf3\xc3\xb8\xaf\x76\x41\x59\x6a\x78\xf1\xf1\x3e\x2c\x6c\x2a\x95\x91\x5e\x30\xba\xf7\x3f\xbb\xaf\xa6\xfd\x98\x5d\xb6\xcc\xe6\xc3\x53\x6e\x11\x7f\x29\x1c\x7b\x8d\xde\xec\xa3\x7b\x1a\xc6\x9b\x85\x45\x67\xda\x04\x46\x74\xd1\x5f\x5f\xbc\x2f\xda\xdd\xf5\xfb\xd6\x04\x51\xe0\xea\xad\xb4\xcd\x7d\xbc\x58\xb9\x0b\xbd\x31\xfb\xb9\x7b\x72\x7c\x20\xf8\xc5\x11\x7e\x0d\x2e\xa5\x16\x93\x61\x52\x07\xd3\x74\x73\xd5\xe8\x1f\x3f\xaa\xe5\xce\x68\xa4\x1f\x5f\x2f\xba\xaf\x23\x30\x5d\x4e\x41\x20\x35\x5c\x8d\xeb\x43\xab\x75\xb4\x37\xd5\xde\x62\xd1\xb4\xea\x76\x46\x4b\x6e\x8e\x56\xae\x9e\x39\xf4\xee\x7f\xde\x1b\x8b\xc7\xe4\xcb\x6a\x54\xce\xd7\x33\x56\x67\x98\xc8\x15\x6f\xe2\x05\xbd\x53\x9e\x59\xa9\xd3\xfe\x62\x36\xcf\x5b\x6f\xc3\xce\x7b\x29\xfe\x92\xcd\x97\xee\x1b\x8b\xce\x3a\xdf\xbf\x28\xad\x47\xef\x9d\xd2\xa4\xd3\x2f\x2f\x5f\x9a\x2b\x10\xd3\x6f\x75\x6b\x5c\xbd\x49\xdd\xdc\x8c\x93\xbd\xfb\xd1\xc5\x68\x95\x06\x8c\x4c\x0e\x5a\x2d\x69\x8f\x97\xa5\x66\xaf\xbc\xca\x57\x2a\x4f\x8d\x79\x03\x18\x94\x66\x2d\x7b\xdf\xab\x6d\x5b\xd3\x4d\xa6\x3c\xa9\xa7\xda\xaf\xf1\x71\xf9\xb9\x71\xd3\x1c\xfe\x7c\x1b\xe5\x93\x4f\xcf\xb5\x6a\x65\x9a\xdd\xde\x3d\xbe\x9e\x8a\x76\xe7\x08\xfc\x93\x9f\x17\x9d\xd7\x9f\x40\x64\xc7\xbf\xe8\x5a\x43\xad\xb4\x38\x66\x9e\x7a\xf6\xac\x96\x6f\x2f\xf3\xa3\x43\x63\x39\xd3\xca\xfd\xe1\xc7\xf6\xed\x3e\x5b\x7f\xee\x14\xc7\xb9\x9b\x9b\x9b\xdc\xec\xd4\x3c\x95\x57\xdd\xb7\x7a\x06\xb8\x22\xda\xe6\xb5\xa8\x55\xc6\x37\x25\xf4\xed\xcd\x99\xff\x41\x03\x59\xa5\xb7\x9f\xb3\xf7\x6e\xa9\x72\x53\xbf\xd3\xd3\xb3\x42\x2a\xb3\xe8\xb7\x80\x23\xdb\x3f\x6a\x20\x90\xcf\x0c\x2b\x5b\xeb\x01\x3a\x3f\xce\x57\xc9\xc4\xab\xef\x61\xde\x6b\xfa\xd8\xfd\xba\x57\xd2\xf4\x61\xe0\x8f\x5a\x5a\x15\x7e\x28\x1c\x43\xbf\xa8\x18\x6f\xbc\x76\xdc\xfa\x6a\x83\xce\x29\xb9\x2b\x76\xf4\x5e\xf5\xe6\xa6\xd6\x5b\xc4\x1b\xe3\xc1\x61\x91\xb4\x4f\xdb\x3b\x63\xfc\x6e\xb5\xd3\x75\x6b\x50\x7b\x7c\x1c\xff\xec\xa5\x9b\x8f\xb5\x6a\x43\xaf\x7f\xb4\xe6\xaf\x95\xe7\xec\xc3\x5b\xbc\x3e\xdb\xf6\x6e\xba\xa3\x8b\xed\xa1\xb5\xed\xcd\xdb\xab\xd6\x7b\xea\xed\x65\xf9\x91\x59\x75\xb4\xe7\xfb\xd6\x58\x7b\x5b\x7f\xbc\x37\xaa\x1f\x47\x7d\xf5\xb2\xd6\xec\x74\x77\x52\x38\xbd\xce\x72\xa3\xc9\x66\x9d\x1f\xee\x56\xad\xbb\x7d\xda\x5e\x17\x8a\x37\x83\x6c\xce\xd2\x86\xb5\xe5\xdd\x2a\x77\x3c\x76\x7e\x2e\xa6\xad\xcc\xc6\xea\xdf\x34\xb5\xe5\x6c\x11\x5f\xd7\xf5\xca\x45\xf3\x7e\xb2\xad\x5d\xc4\x9f\xef\x1a\xa9\x66\x7b\xf2\xfe\x33\x91\xde\x3f\xbf\x17\x73\x89\xd5\x61\x58\x6c\xf4\x4e\x89\xe7\xc9\x22\x7b\xa1\x0f\x56\x89\x44\xa5\xde\xad\x26\xac\x51\x22\x39\xc8\x26\xef\xd7\x77\xd9\xe5\x70\xf3\xb3\xb7\x7f\x1f\x1e\x56\xf6\xe3\xdd\x36\x75\xf7\xb6\x3d\xed\xde\x1f\xe6\xef\x3b\xfd\xfd\xa1\x39\x9b\xe4\x0b\x9b\x76\x22\x77\xbf\x2d\x1c\x1a\xf9\xf5\xdb\x6b\xfa\x65\x39\x59\x0c\xe2\x85\xd3\xee\x75\x74\x93\x4e\xbe\x3c\x5f\x8c\x2b\x93\x42\xaa\xd3\xdd\x0f\x2f\x46\xa7\x1d\x30\xea\xa5\x55\xb2\xfa\x5c\x5d\x25\xf2\xa5\xd4\xcb\xbc\x65\xd8\x87\x4d\xaa\x9a\xba\x69\x1d\xad\x56\xfd\x6e\x90\x9c\x97\xdf\xee\x36\x1d\x7d\x5e\x4f\x24\x5f\x76\xeb\xf6\x76\xbb\xd9\xf4\xef\x8d\xd6\x6b\xeb\xd4\xca\x5f\xdc\xbd\xb6\xf4\xca\xe3\x7d\x7b\xf1\xd1\x4d\xcc\xf7\xdb\xfa\x29\xb7\x7e\x68\x55\x7b\x83\xf8\xc3\x0b\x88\xa5\xac\xfb\x87\xd4\xc5\xa0\x5b\xcb\xb4\x8a\xb9\x4d\x61\xd4\xed\x5e\xec\x6b\xf6\xf0\x31\x7e\xc8\xb6\xee\x1e\xee\x7b\xb3\xc7\xb5\x9d\x7b\xd1\x77\xdd\xf2\xcf\xd3\x63\xc9\xfc\xb0\x0b\x37\x66\x1f\x98\x97\xc1\xf6\x6d\x30\x69\x9b\x87\x5e\x26\x91\x68\x3c\x96\xf3\x3f\x8b\x15\x30\xa3\x1e\x12\xfa\x30\x51\xcb\x25\x7b\xa9\xe1\x6a\x91\x33\x1e\x4a\x85\xcc\x4d\xe1\x42\x6b\x27\x66\xf3\xb2\xed\xea\xeb\x1d\xd0\x83\x74\x35\x57\x2f\x42\xef\xb4\xbb\x00\x5e\x6a\xeb\xe3\xf5\xa5\xfd\xf8\x9a\x6b\xe7\xca\x9b\xd5\x29\x9e\xb1\x4f\x56\xa6\x01\x94\x54\x03\x8a\x97\xe8\x8c\x40\xbc\xa3\x37\x0f\x5a\xa9\xde\x5f\x2e\xde\xb5\x4e\xf5\x7e\x30\x7e\xad\x43\xc5\x1a\xc2\xd5\xcd\x1e\x88\xc6\xb4\xd6\xcb\xa4\x59\x2f\xdf\x69\xcb\x4a\xff\xb5\x77\x2a\x5a\xf5\xda\xdd\xae\x5c\xd5\xfa\xbd\xf7\x06\x88\x6b\xfa\x4f\x8b\x63\xa7\x3e\x1f\x82\x68\xae\x04\xa2\xb9\x95\x13\xcd\x59\x65\xcd\x79\xa7\x77\xe1\x57\xa4\xa7\x55\x5a\x9b\x5d\x54\x6c\x40\xd0\xee\xf4\x35\x18\x27\x05\x91\x1b\x8c\xc9\x7e\x73\x76\xa3\x8e\x77\xa6\x31\x9d\xec\x0e\xab\xb1\x7f\xb6\x17\x9d\x86\xe2\x9e\xc5\x10\x9f\xe4\x08\xc8\xc8\xcf\x01\x63\x70\x21\x27\x81\x03\xc8\x98\x73\xc5\x26\xb6\xab\x92\x3c\x20\xe2\x65\xf6\xcb\x60\xf7\x51\xa2\x03\x69\xf8\xce\x30\xee\xd9\xa5\x34\x73\x34\x06\x86\xa6\x90\x36\xcd\x82\xc1\xd9\x25\x8e\x17\x3b\x9b\xab\x03\xa0\x71\x72\x96\x62\xc4\x80\x1b\x9f\x7d\x59\x30\xe6\xd0\x76\xb2\x64\x1e\x1e\xc0\x51\x65\x07\x66\x7a\x40\xe7\xaa\x38\x67\x90\xf0\x2a\x3d\x30\x6e\xcb\x31\xc7\x5f\xe9\x96\x67\x92\x40\x92\x57\x69\x7a\x1b\x75\xd1\x2e\x5d\x2f\x2b\x31\x56\xb9\xb7\xf9\xdc\xe5\x81\x77\x14\x0d\x5d\xed\x8c\xe9\x20\xd6\x2a\x59\xef\x40\xc8\x7e\xb1\x3e\x09\x60\xc8\x4b\x9e\x05\x30\x19\x86\xb5\x4f\xce\x1d\xbb\x68\xcf\x1f\x1f\xc4\x3f\xb0\x36\x5e\x58\x22\x90\xb8\x57\xcb\xfc\x20\xa6\xe3\xe5\x6e\x5d\x19\xb6\x0d\x5b\x46\x00\xe6\x91\x82\xc3\x95\x73\xbc\x39\x38\x94\xe3\x6f\x06\x85\x90\xb7\x5b\x62\x04\xfb\xef\x63\xd7\xb3\x85\xb9\x9c\x5e\x52\xcf\xb6\xfb\xef\x27\x96\xa3\x1e\xbb\x90\x35\x81\xf1\xe0\x42\x62\x23\x96\x21\x16\x36\x9a\x31\xd8\x5b\x27\x0d\x37\xb9\xa3\x1c\xab\xd9\x4f\x22\xc9\x3d\x5f\xcd\x1e\x49\xa4\xd4\xca\x39\x1c\x47\x5e\xdb\x80\xb1\x00\xb7\xd7\x6f\xcd\xa9\xcb\xb6\xcb\x4b\xb4\xda\x95\xeb\x72\x6f\x8f\x26\xaa\x52\xb7\xab\xcc\x95\xbe\x7f\x4e\x83\x1c\x60\x76\x9b\xed\x61\x1f\x74\x29\x7a\x44\x79\x09\xfe\x1b\x2e\xef\xfd\xe3\x1b\x55\x84\xde\xfe\x7d\x0d\xb4\xd6\xdc\xfd\x83\x5b\x06\x6b\xe4\x97\x98\x2b\x63\xb1\xe4\x17\xd9\x40\x0d\x27\x73\x7e\xd9\x16\x0c\x98\xe3\x66\x37\xe5\x97\x4e\x8d\xbd\x29\x2e\xd9\x2f\x56\xe6\x15\x68\x66\x43\x50\xef\xde\x14\x15\x00\x44\x7e\xc9\x61\x87\xa3\x40\x69\x0d\x30\x92\xb1\x1d\xda\x74\x8f\x82\x09\xf0\x8f\xff\xb4\x6f\xa4\xf6\xfd\xda\x49\x68\x7f\x6a\xdb\x1c\xf6\x70\xa0\x61\xb7\xc3\x19\xdb\x2d\x68\x09\x63\x8d\xae\x9c\x83\xf9\x7a\x8d\xed\xd5\x1c\x0c\x96\x25\xca\xa1\x27\xb8\x3d\x3f\xfe\x8d\x3a\xf3\x9e\x04\x33\x76\x90\xd1\x1f\xcc\x56\xb9\x7c\x36\xe1\xcc\x83\xe4\x0d\xee\xcc\x71\x24\x26\x3f\x08\x27\x77\x82\x20\xb5\x84\xe0\xbe\x13\x2a\xe3\x44\x1c\x4f\xf2\x1a\x43\xf7\x77\xf0\xb2\x0b\x8b\x33\x0b\x84\x27\x12\xb8\xc4\x33\x5f\x45\xcc\x5b\x70\x2e\xf5\x3f\x98\x01\xe7\xe6\x62\x74\x47\x1f\x73\x0d\xe0\xb9\x1d\xed\xf7\x69\x0e\x3a\x66\x6e\x9f\x9e\xd3\x8b\x81\xee\xfd\xa7\x3f\x39\xd4\xc9\x61\xe2\x8d\x2c\x74\x34\x1f\xb8\x0f\xee\x73\x1e\x9d\xd4\x7f\xf7\x1e\x93\x30\xa7\x01\x35\x12\x41\xbb\xfd\xd8\x99\x88\x90\x67\x76\xff\xe0\x59\x95\xc9\xdc\x9c\xbc\x02\xf6\x78\xa6\x3b\xd4\x5e\x07\x59\xbb\x1c\x2b\xef\xdf\x42\x81\x40\x80\x97\x0e\x9c\xdc\x4f\xee\xc5\x0e\xe8\x4c\x22\x7e\x7f\xc3\x19\x9a\xf4\x15\x55\x09\x4c\x54\xd2\xd5\x65\xae\x36\xfe\x1f\xa0\x51\x8c\xa7\x79\xed\xf4\xcb\x02\x86\x5d\xbb\xcd\x16\x5e\x7e\x48\x1f\xa3\x0a\x01\xbf\xf5\x7f\x73\x53\x48\x04\x39\x13\x05\x8e\x9e\xa4\x52\x52\x67\x42\xb1\xf8\x75\x53\xee\x9b\x17\x4e\xb2\x5e\x3c\x1d\x05\x98\xbb\xdd\x66\x77\xbd\x32\x6d\xdb\xb0\x4c\xcc\x81\xb7\x0f\x93\x09\x78\xc9\x29\x39\x1a\xbb\x35\xcc\xda\xee\x96\xb0\x69\x06\x1c\x30\xb7\x58\x1e\xf8\x63\xed\x1c\xbb\xde\xee\x36\xab\xed\xde\xbd\x8f\x47\x70\x07\x2c\xdb\x46\x1e\x9e\x7f\xb0\xd0\x4d\x04\x7f\x45\x04\xa0\x62\x3c\xef\xcc\x31\xc6\xdb\x15\x0c\xc9\xf0\x7b\xe3\xb0\x8b\xe5\xc8\x0c\xf4\x98\x14\xdf\xfd\xb4\x61\xc8\x32\x5c\x81\x36\x99\x98\xf3\xcd\x32\xb8\x25\x0a\x0d\xad\x44\x3a\x7e\xe9\xfd\xf1\x8e\x4e\x7b\xf8\xab\xcd\x47\x74\xb4\xd9\x66\x02\x06\xbf\x5a\xe5\xf9\xc2\xa5\xf3\x3f\x9f\x84\xa4\x7e\x3e\xa6\xa3\x3d\x0a\xa2\xff\xd5\x4c\xe5\x33\xf9\x0c\x0f\x93\x5f\xa9\x10\x41\x51\xdc\xbf\x4e\xcd\x5c\x22\x97\x10\xe3\x0b\xaa\xa5\xd1\x18\xaf\xdc\x21\x20\xf3\xcd\x25\x10\xc8\x43\x97\x94\x3b\x7e\xba\x04\xc0\xf5\xd6\x25\x10\xbe\xcf\x2e\x81\x41\x9e\x7b\x48\x39\xe6\xbf\x4b\x05\x92\x17\x43\x5f\x5e\x52\x0e\x3d\x7a\xa7\x98\x9f\x1d\x81\xbc\x00\x81\xb9\xbc\x84\x39\x3b\xcc\x4b\xe0\xc4\x4e\xac\xcc\xbd\x6f\xcc\xcd\x6f\xa9\xe0\x7e\x3b\xd2\x23\xf8\xdf\x98\x59\x91\x83\xeb\x0b\xe1\x8e\x00\x81\xc5\xf7\x0c\xbe\xd8\xf2\x7b\x86\x5f\x3c\x03\x38\x59\x63\x28\xbb\xee\x55\x4b\x2d\x27\x10\x85\xc8\xe4\x33\xab\x47\x1e\xa6\x6b\xae\xb9\x04\x28\x20\x67\xee\x20\x92\x55\x8b\xf8\x99\x6c\x76\x6b\x73\x77\xad\x54\x35\x0e\x4b\xa5\xf7\x75\x2a\xa1\xf3\x06\xb3\xf5\x49\xc2\x7b\x16\x4e\x10\xeb\x8b\x00\xa9\xc0\x5f\x04\x46\xaf\x02\x88\xe0\x98\x25\x01\x11\x20\x67\x7d\x40\x04\x4a\x2d\x16\xc8\xc0\xb8\x2b\x07\x62\xd1\x95\xa0\xc8\x35\x05\x11\x18\xb9\x80\x43\x40\x39\x7e\x98\xa0\x90\x88\x3c\xc5\x6a\x14\xaa\x02\x3c\x78\xa9\x2a\x88\x11\xb8\x2a\x21\x06\xe7\xab\x86\x18\x5e\xa0\x22\x62\x04\xa1\xaa\x88\x51\xb8\x2a\x23\x07\x97\xa8\x8e\xac\xa9\x22\x41\xf3\x54\x49\x0c\xce\x53\x29\x0a\x9a\xaf\x5a\x14\x90\x1f\x92\x52\x33\x04\x4c\xa1\x44\x19\xa4\xf1\x38\x31\x4e\xfc\x20\xcd\x93\xd2\xdc\x13\xcc\x35\x49\x7f\xae\x71\x09\xc4\xa8\xf9\x50\x6e\xda\xe8\x19\x3f\xc4\xc0\xa9\x82\x73\xbd\x27\xb9\xb1\x53\x85\x16\xf8\x55\xa1\x86\x4f\x15\x81\xeb\x71\x29\x1a\x41\xf5\xe6\x89\x00\xcb\x73\xcc\x64\x66\x51\x0a\xeb\x68\xb0\x14\x84\x72\xa0\xa2\x6a\xf1\x24\x9b\xcf\xe6\x85\x4b\x78\x02\xcd\x45\x48\x52\xcd\x75\x17\x68\x38\x74\x57\xe6\xfa\xb0\x5c\x80\xc0\x75\x7c\x00\x51\xe0\x5a\xe4\x44\x80\xb7\x5e\x34\x2e\x10\x1c\x07\x01\x3e\xcc\xde\x5c\x29\x01\xc2\xf6\x0a\xf3\x4a\x24\x95\x4b\x40\x1d\x26\x78\x3d\xa0\xe4\x36\x45\x93\x18\xcb\x3d\xf6\xcb\x05\x71\x3f\xae\xf3\xf4\x86\xba\x39\x44\x85\x47\xb8\x60\xb1\x3e\x44\xae\xde\x41\xe3\x32\xa1\x50\xb5\x83\xed\xf4\x48\xe4\xa6\x62\x91\x79\x57\xa1\x8c\xcd\x9c\x99\x8b\xc0\x8a\xfb\x75\x9e\xa7\xa8\x0a\xbc\x60\xd8\x3c\x66\xa6\x93\xd9\x84\xbe\xd6\x85\xe7\x9a\xbb\x4b\xb2\xde\xb5\x00\x96\xb5\x34\xdd\x1b\x91\xec\x25\x5c\xd7\xfa\x16\xbb\x06\xc5\x22\xfd\x53\x40\x57\xf3\xfa\xcf\x63\xe3\x0c\x32\x51\xc2\x16\x35\xa6\xf0\x84\x7b\x5f\x68\x22\x01\x99\x33\x5b\xea\xd7\x51\xc3\x99\x53\x9d\x4c\xc2\x5a\xd4\x61\x31\x48\xa5\x28\x03\x75\xea\xe7\xc2\x8a\xa4\x91\x90\x17\xa2\x60\xd5\xc8\xb5\x23\xf6\xdd\x4b\x1c\xc8\xb0\x1e\x5a\xe0\x6a\x5f\xb0\x61\x8a\x69\x28\x1f\xd2\xaf\xc5\x87\x76\x5a\xd5\xbb\xc8\x13\x22\xfd\x4f\xb8\x1c\x55\x78\x13\x29\x14\xe0\x5f\x76\x4b\xaa\x94\x89\x7f\xc7\x5d\xa8\xb0\x62\xc9\x45\xa8\xdc\xe2\xff\xdc\x82\xea\x5d\x3d\xea\x37\xcf\xbf\xf9\x0a\xd4\x7f\x2b\x1f\x81\xe9\xd8\x99\x3f\x0f\x8b\x9d\xb7\xa7\xea\x36\xb0\xea\xb4\x09\xa4\x00\xf9\xa6\x95\x04\xb2\xbd\x0d\x5b\x6a\xd0\xce\xdc\xe1\xa2\x7c\xbb\x8d\xc8\x91\x00\x1d\xb7\xcd\xfe\xa7\xa7\xa4\x7f\xfb\x00\xfa\xa0\xea\x0e\xd5\xbf\xfd\x26\xf4\xad\xff\x5d\xc2\xe3\xdc\xab\x6c\x3e\x23\x3e\x7d\x9f\xdb\xb7\x6a\x1d\xc1\x31\x7a\x98\xb5\xa5\x3e\xd1\xb2\x17\xc5\x81\x22\x62\xca\xbd\x54\x05\xa6\x7d\x42\x06\x3a\x00\xf0\x8b\x1c\x48\x6e\x95\x12\x18\x11\x21\xc2\x0d\x24\x97\x92\xc9\x0d\x8a\x9f\xc2\x2d\x99\x24\x9c\xda\xfe\x4b\xee\xe6\x47\x66\x03\xa1\x10\xc1\xdb\x31\x4a\x6e\x73\x08\x3e\x4b\x7b\xd3\x92\x33\x29\x51\xbb\x8a\x71\x2f\x08\xfb\x5a\xcd\x94\xf9\x4e\x90\x3b\xa4\x62\xbf\xfd\x20\xeb\xc3\xbe\x74\x63\xa6\x7b\xbe\x98\x4e\xcd\x35\xb1\x35\x24\xee\xcd\x81\x2c\x03\xae\x42\xba\x7c\x20\xde\xb1\xeb\x14\x89\xfb\x47\xd0\xb4\x4a\x5d\x95\x90\x61\x37\xc7\x7a\x24\x79\x19\x6a\x11\x1d\xe1\xa5\x89\x0e\x11\x98\xce\x95\x20\x74\x29\x29\xb3\xa9\x6c\xaf\x2e\x18\xca\xf9\x2a\x24\xc2\x96\xda\x44\x52\x58\xf4\x43\x6c\x8a\x80\xf9\x61\x45\xe4\xd8\x42\x9b\xce\x1f\xeb\x36\xce\x9b\x98\x27\xb6\xd0\xa6\xb2\xcc\x3a\x70\x30\xd7\xac\x88\x06\x53\x66\x13\xa9\x68\xe1\x4f\x8e\xa0\x85\xb2\xd2\x0a\xa9\xb1\xa5\x36\x91\xb6\x16\xee\xd4\x2f\xe0\xf4\x9c\x0c\xb6\x22\x7a\x9c\x52\x9b\x49\x71\xeb\x80\xae\xb1\xbd\xc2\x0c\x1d\xb6\xd0\x27\x93\xb8\x4e\xb8\x3f\x84\x32\x48\x84\x64\xca\x82\xe4\xc2\xff\x15\xed\x2a\x88\x73\x9b\x40\xaa\x03\x72\x05\x91\xea\xa0\x5c\x41\xa5\xed\x29\x6f\x6c\xb9\x8a\x84\x28\x90\x4c\x5b\xa5\x9a\x2c\xeb\x33\x69\x7f\xca\xc7\x7d\x88\x55\x90\x59\x1e\x15\xab\x04\x27\x6e\x2c\x76\x23\x67\x30\xd2\xb8\xd2\x97\xef\xc4\xff\x60\xec\x6a\x8c\x63\x57\x49\x1a\x42\x14\x6c\x4e\xa4\xab\x61\x51\x00\xef\x6e\x43\xb8\x62\x64\xaf\x81\x25\x3b\x6f\x2e\xc0\xa9\x45\x63\x1c\xc3\x53\xe2\x1e\x26\x18\xe7\x73\xce\x5d\x7c\x83\x7d\xc6\x80\x23\x43\xc4\x07\x47\xda\xc1\x22\xe4\xaf\x73\x02\x0c\x34\xea\x18\x04\x11\x3b\x68\x78\x33\xd0\xa9\x84\x90\x7f\x38\x44\x58\xf8\x9c\x88\x7f\x67\x30\x32\x08\xe9\x94\x90\x7f\xc7\x58\x31\x18\x99\x38\x1f\x1c\x59\x0a\x16\x5a\xd2\x01\x3c\x7e\xb2\xc2\x0e\x30\x97\x7c\x09\xb2\xe2\x1e\xd8\x1f\xe1\x7e\x78\x16\x45\x08\x3f\x5f\x00\xbf\x94\x57\x49\x5e\xdc\x0f\xb0\x9b\x05\x48\xc2\xce\x98\x2d\x66\x7c\x94\x82\xb8\x3b\x40\x7f\xf3\x71\x48\x1b\x73\xce\xa4\xe5\x99\x2e\xba\xc7\x99\x25\xbb\x5b\xb6\x17\x38\x30\xac\x74\x5c\x20\xa2\x67\x78\x10\xe4\xf8\x11\x40\x84\xd7\x44\x29\x26\x07\x82\x1e\x1b\x3c\x10\x62\xb4\xf1\x01\xc2\x59\xd9\x87\x02\xb0\x1a\xc8\x85\x22\x6d\x11\x0f\x84\x56\x7d\x2e\xcc\x46\x04\xf0\xef\xf0\x43\xfe\xe7\xce\xce\xc4\xe1\x36\x71\x98\x4a\x80\xd1\x01\x24\xb1\x0e\xc1\xc6\x91\xc1\xc9\x37\x5e\x28\x49\x6e\x9f\x3e\x30\xc7\xd8\x48\x00\x69\x21\xbb\x20\x80\x15\x6e\x05\x05\x9e\x34\xa1\x75\xfb\x80\x4a\x40\x32\x5e\x7c\xa0\x2d\xbf\x09\x83\x6d\xe6\xf2\x8b\x79\xf9\xe7\x0d\x65\x0b\x01\xbf\xae\xb1\xcf\x6c\x36\xe9\x32\x85\x90\x3e\xb9\x10\x43\x5f\x2c\x9a\x93\xc8\x88\xbb\x6d\x61\x0c\x72\x76\xbe\x33\xb7\xe4\x08\x6a\x09\x6e\x15\x0d\xad\x04\xbb\x80\xd4\xab\x03\x3b\xfb\x0c\x31\x89\x33\xe5\x84\x70\x58\x89\x7f\x08\xc1\x39\xf1\x4c\x95\x82\x60\x32\x49\x9c\x64\x66\xca\x93\x6e\xa9\xb5\x5b\xd0\x2b\x41\xd8\xb5\x94\x68\x1d\x25\x40\xc3\x46\x70\xf0\xed\x62\x87\x51\xc2\xd6\x13\xe1\xe3\xed\xf5\x6e\x73\xa4\x57\x82\xe8\x85\x20\x7f\x99\x47\xb6\x22\x84\x6a\x80\xdf\xa7\xde\xcd\xa9\xc3\xb3\x3b\x18\x90\x0e\xc0\xaf\x26\xd8\xcd\xf1\x8e\x99\x73\x5f\x42\x4c\xff\xd2\x27\x30\x62\x4e\x31\x97\xcc\x5f\xfe\xc1\x21\x94\xe4\x11\x4a\xfa\x84\x10\xc6\x05\x81\xe7\x5d\x5b\xff\x47\x20\xf4\x64\xb3\x3c\xac\xd6\xce\xda\x29\x68\x80\x6f\x64\x7b\x78\xe5\x92\x1b\xaf\x49\x83\x4a\x5c\x74\xf3\x43\x18\xd5\xa0\x52\xd2\xd2\xa3\x57\x82\x85\x61\xc4\xcf\xdf\x3e\x55\x48\xfc\x41\xf0\x2f\xe1\x9b\x36\x5f\xd8\x04\xe5\x29\x8e\x73\xe5\x3c\xae\x53\x92\x86\xf3\xb9\xf3\x1a\xd9\x67\x0e\xbb\x6a\xff\x0f\x7e\xeb\xca\x2c\x27\x1f\xe5\x76\xb1\xb2\xa8\xae\x02\x6f\x3e\x39\xe7\xf4\x21\x40\x0c\x02\x5c\xc0\x27\xef\xec\x0e\x76\xa9\x3e\x2b\x53\x10\x06\xde\x5e\xcf\x37\xbb\xc5\x07\x68\x00\x78\xb1\xa7\xb3\x54\xcd\xd7\x90\x10\xa4\x4f\xde\x32\xe4\xd6\x00\xa3\x1d\xe9\x27\xd1\xb3\xf9\xff\xa2\xfa\x15\xbc\xa0\x4e\x33\x39\xd5\x7b\x03\x59\x7a\x0a\x88\x04\x95\xac\x59\x47\x72\xe8\x03\xd6\xb1\x09\x50\xee\xc9\xfc\xc0\x07\x2f\x73\xf7\xb3\xc2\xc5\x7b\xb9\x6c\x5e\x5a\xbd\x8c\x3e\xc9\x5b\x9a\x19\x3a\xe0\x8d\x0a\x0b\xc1\xdd\x7f\x5f\x65\x81\xd3\xc9\x2a\x0c\x24\xd2\xf1\xf8\x2f\xe2\x20\x91\xa1\x59\x00\x6f\x94\x78\x28\x24\x7f\x15\x0f\xc9\x14\xcd\x03\x78\xf3\x07\x3b\x22\xa9\x39\x9b\x1d\x7d\x24\x80\x3f\x87\x80\x91\x16\x73\x20\xdc\x19\xc4\x43\x08\x83\xc2\xad\x13\x69\x50\x82\x4b\x09\x8f\x1b\x05\xda\x1c\x28\x96\x76\x86\x26\x0d\x83\x10\x15\xe2\x3c\x38\x96\x3c\xfd\xb1\xc1\xc7\x87\x81\x92\x42\x35\x3c\x30\xb6\x16\xf7\x23\x44\x80\x05\xef\x7b\x55\x20\xce\x01\xe3\x10\xa7\x5a\x08\x84\xc1\x0a\xb4\x39\x50\x9c\x8e\xa5\x3e\x5a\x04\xd8\x30\x5c\x57\xa9\x85\x07\xc7\xa9\x87\xfa\x98\xe1\xe3\x23\x9f\x4a\xa1\x1e\x2e\x1c\xa7\x1e\xef\x23\x87\x8f\x08\x57\x26\x14\xe8\xf3\xc0\x38\xe4\xa9\x8f\x1f\x81\x32\x2a\x35\x16\x07\x8a\x37\xd6\xa8\x16\x5a\x2a\x76\x05\x1f\x90\xad\xa0\x70\x1d\x2f\x38\xff\xd1\x63\x1a\x2e\x67\x28\x0d\x6b\x1e\x20\x5b\x51\x5e\x30\xf2\xbc\x05\x18\xa5\x41\xce\x07\x65\x2b\xcb\x5d\x67\x0b\xc9\x54\x3c\x97\x2d\xb0\xc3\x5c\xb1\x32\x11\x28\xaf\x32\xef\x56\x46\x7a\xd8\xcf\x54\xeb\xe2\x43\xb2\x55\x09\x07\xa8\xb3\x16\xa6\x66\x08\x54\xab\xf2\xbe\xa5\x22\x08\xfe\x14\xc1\x9f\x1c\xa8\xd5\x54\x12\x9f\x98\x06\xb8\x13\x80\x1c\x9d\x34\xf4\x72\x13\x2f\xa5\x44\xda\x72\xae\x15\x97\xe3\x13\xe6\x9a\x6b\xa8\xa5\xf8\x84\x49\x96\x1b\x63\x39\x1d\x72\xa0\xcb\xcd\xad\x94\x12\x65\x56\x05\x06\x55\x4a\x82\xb4\x9c\x72\x9b\x29\xef\xe7\x10\x99\x42\x1a\x97\x36\x7f\x52\xc3\x17\xa2\xaf\xa4\x7d\x93\x5a\xb6\x10\xd5\xa5\xcd\x97\xd4\x70\x85\x2a\x6f\x38\x2d\xdf\x2e\x85\x28\xf2\x2c\x8c\x94\x58\x17\x1d\x30\x8e\x8d\x80\xeb\xdc\x80\x56\x60\x82\x08\x9b\x84\xea\x50\x82\x57\x05\x14\x5b\x38\x4c\x1c\x0e\x38\x43\x52\xf2\x1d\x93\x2b\x2c\x34\x68\x51\x84\x95\xc1\xab\x02\x8a\x61\x24\x23\x95\xcf\x3d\xb2\xa7\x91\xf8\x97\x62\xa8\x83\xca\xa0\x64\xdf\x7a\xb9\x62\x20\x63\x1e\x45\x0a\x29\x82\x32\xa4\x04\x48\x38\x8b\xf0\xf9\x87\x93\x49\x24\xfe\x65\x08\xca\x90\x12\x20\xd9\xf7\x70\xae\x08\x70\x3e\x8b\x22\x81\x0c\x5e\x15\x50\x0c\x23\xf9\x3c\xcf\xe7\x1e\xcd\x17\x91\xf8\x97\x62\xa8\x83\xca\xa0\x64\x7b\x06\xb8\x62\x38\x53\x78\x14\x31\xe4\x18\xea\xa0\x32\x28\xa1\x6f\xc7\x95\x01\xf9\x10\x51\x44\x90\x22\x28\x43\x4a\x80\x64\x5b\x2b\xf8\x56\x35\xa2\x2e\xc9\xe0\x55\x01\xc5\x30\x92\x9d\x1e\x7c\x25\x5a\x46\x1e\x0c\x21\x28\x11\x60\xa5\x60\xb2\x1d\x28\x82\xc9\x19\x79\x6f\xd1\xe6\x67\x29\x4a\x04\x58\x29\x98\x70\x67\x8c\x60\x9a\x76\x7d\xc7\x68\x33\x75\x08\x52\x24\xe8\x10\x40\xd9\xbe\x1d\xe1\x94\x1d\x59\xa4\x50\xa4\x48\xd0\x21\x80\x92\x5d\x45\x82\x49\x7c\x16\x5d\xa0\x10\x9c\x28\xc0\x72\x38\xd9\x86\x27\xd1\x84\x1e\x59\x9c\x30\x9c\x28\xc0\x72\xb8\x88\x7b\xb1\xfc\x35\xfb\x14\x5a\xb2\x17\x7f\xcf\x91\x06\x34\xb1\xd5\x66\xbc\x58\x46\x8e\x6b\x24\x68\x11\xe1\x43\x41\xcf\x8d\x5e\x22\x4a\xa6\x80\x16\x11\x3e\x14\xf4\xfc\xc8\x26\xaa\x6c\x2a\x88\x91\x31\x14\x80\xcf\x8f\x7a\x22\x4a\xa8\x82\x17\x15\x21\x1c\xf6\xcc\x88\x28\xaa\x6c\x0a\x78\x51\x11\xc2\x61\xcf\x8e\x96\x22\x4a\xa7\x80\x16\x11\x3e\x14\xf4\xfc\x48\x2a\xaa\x6c\x2a\x88\x91\x31\x14\x80\xbf\x10\x65\x45\x14\x51\x09\x31\x32\x86\x02\xf0\x99\x11\x58\x44\xf1\x54\xf0\xa2\x22\x84\xc3\x9e\x1d\x9d\x45\x9d\x17\x22\x6a\x67\x38\x7c\x28\xe8\x17\x22\xb7\xa8\x9a\xa9\x84\x19\x1d\x45\x05\xfa\x2b\x51\x5d\x64\xbf\x45\x05\x33\x3a\x8a\x0a\xf4\x17\x22\xbe\xc8\x1e\x8c\x1a\xee\x39\x48\x6a\xf0\x5f\x8b\x06\xcf\x70\x67\x22\x8b\xab\x88\xa4\x06\xff\x95\x48\x31\xb2\x7f\xa3\x84\x7a\x06\x8e\x12\xf8\x97\xa2\xc8\xe8\xce\x4e\x64\x51\xd5\x70\x94\xc0\xf9\x11\xa6\xf2\xf6\x3c\x2a\xc4\x2c\x14\x12\x6a\x21\xe6\x1e\xa6\xbe\xd9\x47\x0e\x31\xc5\x68\x11\xe1\x43\x41\xcf\x0e\x31\xa3\x49\xa6\x80\x16\x11\x3e\x14\xf4\x0b\x21\x66\x44\xd9\x54\x10\x23\x63\x28\x00\x7f\x21\xc4\x8c\x26\xa1\x0a\x5e\x54\x84\x70\xd8\x73\x43\xcc\x88\xb2\x29\xe0\x45\x45\x08\x87\x3d\x3f\xc4\x8c\x26\x9d\x02\x5a\x44\xf8\x50\xd0\x2f\x84\x98\x11\x65\x53\x41\x8c\x8c\xa1\x00\xfc\x95\x10\x33\x9a\x88\x4a\x88\x91\x31\x14\x80\xcf\x0d\x31\xa3\x89\xa7\x82\x17\x15\x21\x1c\xf6\xfc\x10\x33\xe2\xbc\x10\x51\x3b\xc3\xe1\x43\x41\xbf\x12\x62\x46\xd4\x4c\x25\xcc\xe8\x28\x2a\xd0\x5f\x0a\x31\xa3\xfa\x2d\x2a\x98\xd1\x51\x54\xa0\xbf\x12\x62\x46\xf5\x60\xd4\x70\xcf\x41\x52\x83\xff\x62\x88\x19\xdd\x9d\x89\x2c\xae\x22\x92\x1a\xfc\x97\x42\xcc\xa8\xfe\x8d\x12\xea\x19\x38\x4a\xe0\x5f\x0b\x31\x23\x3b\x3b\x91\x45\x55\xc3\x51\x02\x3f\x3b\xc4\xc4\x8e\x5f\xc9\xa3\xc9\xc9\x66\xb5\x3d\xec\xcd\x5d\xe4\x78\x52\x86\x18\x19\x43\x01\xf8\xec\xa8\x32\xaa\x84\x4a\x88\x91\x31\x14\x80\xbf\x10\x5d\x46\x96\x51\x0d\xf5\x0c\x1c\x25\xf0\x2f\x44\x99\x51\x25\x55\xc3\x8c\x8e\xa2\x02\x7d\x6e\xb4\x19\x59\x46\x25\xcc\xe8\x28\x2a\xd0\xe7\x47\x9d\x51\xa5\x54\x42\x8c\x8c\xa1\x00\xfc\x85\xe8\x33\xb2\x8c\x6a\xa8\x67\xe0\x28\x81\x7f\x25\x0a\x8d\x2a\xaa\x22\xea\x19\x38\x4a\xe0\xe7\x46\xa3\x51\xc5\x54\xc3\x8c\x8e\xa2\x02\x7d\x7e\x54\x1a\x79\x3e\x89\xac\xb5\x2a\x18\x0a\xc0\x5f\x89\x4e\x23\x6b\xac\x22\xee\x39\x48\x6a\xf0\x5f\x8a\x52\xa3\xfb\x41\x6a\xb8\xe7\x20\xa9\xc1\x7f\x25\x5a\x8d\xee\x11\xa9\x62\x9f\x87\xa6\x8a\xf1\xc5\xa8\xf5\x1c\xf7\xe8\x0c\xb1\x95\xd1\x54\x31\xbe\x14\xbd\x46\xf7\x97\x14\x91\xcf\xc2\x52\x44\xf8\x5a\x14\x7b\x86\xf3\x74\x86\xc8\xaa\x58\x8a\x08\x67\x47\xb3\x6e\x2e\x0f\xea\x8b\x69\xa2\x90\x28\xa8\x05\xb9\x28\x9b\x94\x4b\x3b\x72\xa0\x1b\x86\x7c\x16\x96\x22\xc2\xd9\x41\xef\x39\x12\x2b\x23\x9f\x85\xa5\x88\xf0\x85\x20\xf8\x2c\x99\xd5\xd1\xcf\xc4\x53\x46\xf9\x42\x50\x7c\x8e\xe4\xea\xd8\xe7\xa1\xa9\x62\x9c\x1b\x24\x9f\x25\xb3\x32\xf6\x79\x68\xaa\x18\xe7\x07\xcd\xe7\x48\xad\x8c\x7c\x16\x96\x22\xc2\x17\x82\xe8\xb3\x64\x56\x47\x3f\x13\x4f\x19\xe5\x2b\x41\xf5\x39\xa2\x47\x40\x3f\x13\x4f\x19\xe5\xdc\x20\xfb\x1c\xb1\xd5\xb1\xcf\x43\x53\xc5\x38\x3f\xe8\x3e\x6b\xfe\x3a\x4b\xcb\x55\xb1\x14\x11\xbe\x12\x84\x9f\xa5\xe1\x11\xf0\xcf\x45\x54\xc7\xf9\x52\x50\x7e\x9e\x9f\xa6\x8e\x7f\x2e\xa2\x3a\xce\x57\x82\xf4\xf3\x3c\xb6\x28\x14\xce\x47\x8d\x82\xf5\xc5\xa0\xfd\x5c\xf7\xed\xcc\x66\x88\x84\x1a\x05\xeb\x4b\x41\xfc\x79\xfe\x5c\x04\x02\x67\x63\x46\x40\xfa\x5a\x50\x7f\xa6\x73\x77\x66\x13\x44\xc1\x8c\x80\x74\x7e\x90\x8f\x25\xcb\x94\x87\xf3\xf0\xaf\x33\x83\x79\x39\xea\x19\x38\x4a\xe0\x67\x87\xf1\xd1\x25\x55\x44\x3d\x03\x47\x09\xfc\x0b\xe1\xfb\x19\xb2\xaa\x22\x9f\x85\xa5\x88\xf0\x85\xb0\x3d\xba\xc4\xaa\xb8\xe7\x20\xa9\xc1\x9f\x1b\xae\x9f\x21\xab\x22\xee\x39\x48\x6a\xf0\xe7\x87\xe9\xd1\xa5\x55\x44\x3d\x03\x47\x09\xfc\x0b\xe1\xf9\x19\xb2\xaa\x22\x9f\x85\xa5\x88\xf0\x95\xb0\x3c\xba\xc8\xca\xc8\x67\x61\x29\x22\x9c\x1b\x8e\x47\x17\x57\x15\xf7\x1c\x24\x35\xf8\xf3\xc3\xf0\x33\xe6\xa1\x33\xb4\x59\x0d\x47\x09\xfc\x2b\xe1\xf7\x19\x9a\xac\x8c\x7d\x1e\x9a\x2a\xc6\x97\xc2\xee\x73\xfc\x2a\x55\xec\xf3\xd0\x54\x31\xbe\x12\x6e\x9f\xe3\x61\xa9\xe3\x9f\x8b\xa8\x8e\xf3\xc5\x30\xfb\x3c\x77\xeb\x2c\xf1\x23\x20\xaa\xe3\x7c\x29\xbc\x3e\xc7\xff\x52\x46\x3f\x13\x4f\x19\xe5\x6b\x61\xf5\x59\xce\xd8\x59\xa2\xab\xe3\x29\xa3\x08\xc2\x69\x24\xb9\xb9\xde\x9b\x3b\xf7\xe6\xa0\x4b\xe6\x0d\xe2\x0d\x17\xd4\x2b\x04\xaf\x3f\xb1\xdb\x90\x9c\xf7\x3f\xbc\xdb\xf6\xe1\xf5\x2b\x5b\x63\xf2\x4a\xbf\x7f\x39\xd8\xfb\xc5\xec\x74\xe5\xdd\x78\xe4\x15\xaf\xec\xab\xd9\xd2\x24\x71\xf8\xb0\x2c\xd3\x5e\xeb\x3b\x77\xe3\x20\x76\xcc\xe9\x37\xea\x8a\x21\x56\x28\x3e\x9a\x2f\x6a\x8c\x10\x95\x0f\xfc\x49\x5d\x07\xf5\x07\xa7\x9d\xb8\x7d\x4d\x17\x53\xb7\x4c\xe1\x17\x7a\xe0\x37\x7c\x38\x57\x76\x50\xb7\xd2\x78\x37\x3f\x61\x5c\xa2\xda\xf0\x1b\xa1\x48\xf6\xfd\x46\x21\x41\x30\x02\xf4\x35\x62\x19\xce\xe5\x47\xe4\xc5\x4f\x81\x2e\x52\xf7\x48\x51\x6c\x89\xc0\xc4\x5c\xca\x31\x84\x4c\x27\x79\x4c\x53\xb7\x55\xc5\xf0\xc6\xc3\xef\x2b\x62\x5a\x47\x74\xa3\x11\xd1\x40\x44\x2f\x51\xed\x13\x93\xb4\x0f\x5d\xb3\x4c\x62\x39\x23\xbc\x2b\xba\x30\x99\x61\x63\xb8\x02\x39\x6d\xec\xdd\x7f\xb5\x3c\xb9\xe3\x25\xb8\x49\x09\xbc\xf2\x2f\x61\xc3\x6c\x86\xcf\x1b\x0e\x19\x73\x08\x03\x16\x5d\x69\x09\xa6\xe2\xcc\x5d\x8c\xde\xe5\x34\x3c\xba\x01\x4b\x42\xaa\xe8\xb2\x25\x96\xa8\x77\xb3\x12\x27\x0d\x79\xd0\xfa\x90\xa3\x18\xba\x87\x11\x51\x76\x35\x27\xb8\x19\x9f\x83\x82\x98\x15\xe1\xa0\xc2\x3f\x82\xfe\xc0\x5a\x97\x27\x92\x0b\xf4\x97\x7f\x7c\x13\x0c\xc9\xc8\x54\xf0\x01\x80\x5d\x7a\x75\x95\xd8\xbe\xc3\x6b\xf9\xc0\x7f\x3b\x6b\x6c\xfc\x9e\x2a\x5c\xa6\x13\x97\xe9\xd4\xe5\x75\x22\xf3\xed\x0f\x4a\xc9\x18\xba\x8a\xc3\x51\x84\x87\xf3\x44\x5d\x05\x47\x75\x16\x71\x71\x99\x73\x1f\x19\x75\x8d\x59\x5c\x95\x59\x38\x21\x49\xaf\x84\x94\x57\xf3\x83\xb9\xba\xed\x4b\xbd\x4a\xdf\xad\xf8\x95\x7e\x25\x2e\x1c\xe3\x5d\x6c\xe6\x34\x80\x57\xc5\xb9\x1a\x21\x26\x13\xc6\x80\x62\xf7\x7c\x1f\x9b\xb3\xcd\xce\x0c\x2e\xc9\x33\xc6\x36\xa0\xbf\x37\x7f\x78\x53\xfc\x5f\xfe\xf2\xc3\xe9\x1d\xf7\x2e\x2b\xc7\x6d\xf1\x9c\x07\x40\x78\xf2\x3b\xf4\x61\x62\x57\xb1\x24\x50\x9c\x6f\x6e\x39\xfb\xde\xbd\x37\x11\x48\x8c\x5d\xb4\x0a\x55\x0d\x63\x3e\x1e\xf3\x5b\x44\xd0\x1e\xae\xb9\x64\xba\x2e\xc4\x6c\x5e\x86\xdb\x48\x9c\x24\xe6\x9b\x45\x69\x4b\xac\x4b\xbc\x76\xe5\xa9\xc6\x62\x0d\xe9\xf0\xa4\x38\xcb\x3c\x9d\x4f\x4e\x51\x2b\x93\x99\xcc\xa5\xf7\xe7\x3a\xf9\xed\x17\xcb\xc0\x0c\xcb\x5f\x22\x4f\xe8\xf8\xf4\x6a\x89\x38\x4e\x24\xca\xca\x6b\x26\xd7\x51\x88\x58\x89\x9a\x1f\x23\x19\x89\x29\xc1\x48\x44\xef\x69\x8d\xc6\xdc\x99\x2f\xf0\xc9\x72\x19\xc2\x63\x46\xc0\x63\xc6\xe3\x11\x38\xe4\xcb\xa5\x37\x20\x3d\x67\x1c\x1d\xa3\xfd\x81\xfe\xbe\x02\xcf\x9b\xc3\x1e\xf4\x34\xe0\xfd\x47\x30\x62\x3d\xf3\x82\x6e\x71\x26\xad\x0b\xba\x28\x1a\xf4\xd9\x5f\xa7\x69\xf0\x5f\x86\xae\x05\x8f\x19\x2f\x25\x65\x8c\xca\x12\x70\x70\xd2\x8b\xc0\x2e\xe7\x56\x6c\xec\xda\x5a\xbe\xbe\x85\xf0\xcf\xc4\x59\x24\x77\xb7\x74\x84\xe3\xf0\x07\xc1\x7e\xf0\xcd\x80\x5b\x9f\xcf\x57\x70\x87\x31\xaf\xf6\xb0\xd6\x09\x03\x0c\x2e\x54\xe4\x0d\x5c\x2f\x04\x08\x97\x9b\x0b\xc9\x09\x4e\xbe\x27\xe4\xd7\xee\x86\xd6\xa4\x84\xc8\xab\x38\x49\x55\xbc\x80\x11\xe8\x1a\x0d\x3b\x07\xd7\x1d\x75\x97\x2a\x40\xcc\x1c\xa4\x8e\x15\xc9\xab\xa1\x1c\x77\x37\xf0\x96\x2d\x85\x50\x70\xa2\xf0\x93\x02\x63\x04\xe7\x94\xab\xd2\x21\x9b\x9f\xbe\x31\x1a\x5f\x21\x71\x5e\xdb\x7b\x63\xb7\xc7\x46\xa6\x07\x81\x4a\xaf\x16\x7b\x73\x65\x7f\x47\x8b\x23\x0c\xa0\xb7\x6a\xc2\xa7\x13\x86\xaf\xda\xc8\xb4\x08\xd2\x6b\x9e\x9c\x85\x0d\x85\x0e\x60\x00\x99\x2e\xe0\x42\xa8\xd3\x12\x76\x03\x67\xa9\x0a\x2f\x08\xe9\x09\x16\x88\xec\x05\xa6\x5c\x86\xcc\xe9\x02\x46\x16\x91\x00\xd2\x6e\x70\x62\xd6\xf0\x5e\xa0\xe1\x98\x4e\xe0\x01\x28\x53\x12\x76\x01\x02\xe6\xf4\x80\xb9\x9e\xaa\x0c\x04\x0a\x8c\xec\x00\xb2\x50\x8e\x2b\x8c\xf6\x65\xcd\x8f\x20\x78\x34\xae\x9d\x15\xcb\x05\x6f\xd5\x2f\x28\xa2\xd7\xe9\x82\x12\x7f\x05\x96\x7c\x25\x81\x16\x36\xb0\xbb\x76\xea\x37\xe1\xfc\xb4\x9d\x9b\x6b\xdb\x59\x4d\xbc\x5a\x6d\x3e\xe8\x37\x36\xf9\x02\x7f\x90\x08\xc8\xa9\x92\xd3\x7f\x38\x31\xa2\xdf\x28\x36\xa8\x3e\x15\x14\xf1\x5f\x73\x7a\x12\x44\x92\x2a\x13\x06\x09\x26\x1a\x28\x24\x14\x33\x4c\xd8\x62\x45\x2a\x64\x0f\xb2\xf7\xd1\xb3\x2b\xea\xa2\xe9\x82\x5e\x2e\x97\x4f\x19\x5c\x52\x2a\x24\x14\x1b\x9a\x23\x0a\x87\xe7\xff\xfd\x84\xba\xb6\xf7\x3b\x73\x3f\x99\xf3\xc6\x70\x50\x44\x8f\xe1\xa0\x44\xe2\x22\xd2\x40\x3c\xef\x18\x6b\x18\x4c\x04\xba\x14\x8a\xc0\x2b\x76\xdb\x81\x8f\x4c\x21\xe1\x5d\xb0\xd9\x2d\x60\xcb\x78\x5d\x46\x94\x4d\x17\x3b\x73\x82\x56\x6b\xd6\x9b\xdd\x0a\x2b\x44\xed\x18\x94\x3a\x82\x04\x7d\xc1\x94\x70\xdf\x4a\x1a\xfe\xf6\x6f\x61\x4d\xef\x42\xf0\x1b\x5f\x50\x48\xa0\x7f\xe2\x82\x42\xfe\xbe\x27\x48\xf1\x2c\xe8\xe5\x26\x30\x05\x43\x2b\x57\x6f\x26\x78\x87\x95\x73\xe6\xdf\xd5\x62\x3a\x5d\x9a\x0a\x76\x85\x01\x64\x4c\x0b\x17\x42\x9d\x96\xd4\xc0\x38\x18\xa2\xaf\x76\x0a\xe3\x51\xec\x0d\xf1\xe9\x84\xe1\x73\xac\x0b\x23\x95\x4c\x14\x99\x8d\xf9\xf7\x0b\x15\xe8\x87\xb3\xea\xac\xa0\x1f\x0c\x20\xa3\x1f\x5c\x08\x75\x5a\x52\xfd\x70\x30\xd8\xa6\xe4\xfb\x69\x5c\x4b\x2b\xf0\xd5\x38\x64\xc2\xd1\x39\xda\xc1\xc8\xe4\x0a\xf2\xbf\x0b\xcb\x3f\xb8\x2d\xca\xd3\x0d\xa7\x1f\x8e\x73\xe0\xab\xb2\x53\x8f\xf4\x35\x5c\x04\x1a\x03\xe6\x80\x35\x3a\xac\xa7\x80\x99\xe5\x66\xf7\xfd\xaf\xb3\xd9\x0c\x63\xc3\x79\x89\xd6\x0e\xe3\x97\xf0\xbf\xeb\xfc\x37\x59\xdd\xf8\xa7\x94\x2b\xce\x87\x9b\x2b\xe6\xcb\x0d\xf1\x02\xfb\xbc\x83\xd5\x32\x5e\x02\x2e\x59\x29\x9c\xd7\xe4\x3e\x03\xc4\x10\x0e\xcf\x91\x30\x31\x4e\x4c\x12\x53\x46\x48\x28\x39\x2d\x1a\x41\xe9\xcf\x11\xed\xc0\xe9\x1f\xf4\x96\x2b\x98\x0f\xcd\x91\x2b\x35\xce\xa7\x26\x71\x45\xb9\x0e\x7f\x6a\x8f\x59\x70\x1b\x09\x2b\x97\xf3\x9a\x23\x18\x0e\xcf\x91\x2c\x33\x1e\x4f\x73\x49\x25\xc9\x08\x4a\x7f\x86\x68\x9b\x9d\xb1\xb6\x38\x7d\xe6\xbe\xe7\x08\x47\x60\x70\xa4\x33\xe3\xb9\x71\x26\xa5\x24\x1d\x49\xea\xd7\x8b\x17\xbb\xde\x2e\xd6\x9c\xa1\x86\xde\xf2\xed\xc5\xb4\x90\x2e\x14\x0c\x25\xee\x31\xda\x7f\x4a\xd7\x6c\x0f\xbb\xed\x92\xd3\x35\xee\x7b\x4e\xd7\x10\x18\x3c\xc5\xcb\xa6\x67\x79\x45\xe1\x08\x52\x7f\x86\x78\xfc\x6d\x41\x8e\x6f\x4b\x0b\x86\xed\x11\xe2\x75\x59\x66\x92\x99\x28\x49\x85\xd1\xf9\x53\x44\x82\x75\xec\x4d\x63\xc9\x0a\x26\x79\xcb\x57\xc4\x78\x7c\x9c\x31\xd4\xcc\x3a\x46\xfb\xcf\x13\xeb\x64\x2e\x97\x9b\x23\x2b\x42\xc8\x7b\xc1\xac\x9c\x9c\x64\x13\xec\xc4\xcc\x13\x8e\xa0\xff\x6b\xc5\x0b\xb6\x47\xff\x3c\x18\xcb\x18\xfa\x40\xe4\xfa\x83\x9f\xec\x07\x24\x8e\xff\x4a\xe2\xb9\x7a\x2b\xa1\xea\x7c\xa9\x52\xfc\x36\xf5\x0b\xea\x53\x62\x87\x13\x74\x73\x43\x6d\x5e\x80\x4d\x84\xd5\xbc\x60\x3a\xf8\xf6\x7f\x56\x38\x0d\xf8\xe3\xc5\xd2\xf0\x35\x0f\x12\x27\x72\xdc\x19\xdb\xef\xf0\xaf\x80\x40\xf0\x8a\x7c\x54\x69\x69\x6e\x28\xc1\x6b\x52\xe9\xd7\x2a\x41\x1f\x30\x0b\x20\xce\x06\xc8\x5f\x17\x97\x53\x0c\x38\x1b\x43\xce\x50\x75\x1f\x91\xaf\x7b\x04\xdd\x5f\xa3\xec\x51\x6a\x54\xe3\xe8\x3f\xfa\xae\xd4\xd8\x12\x85\xa7\x1a\x55\x41\xe3\xd9\x6e\x50\x50\xf9\x7f\xdf\x7a\xdc\xaf\x1a\x79\x5f\xbf\xbe\x6a\xba\x39\x8c\x97\x60\xea\xba\xa6\xf6\x48\x51\x23\x87\x00\xa3\x37\xab\xfb\x85\xc1\xde\x40\x62\xe3\xa8\xbf\xf5\x21\x94\xe8\x2d\x3b\xcd\xe3\xc4\x99\x3e\x5d\xac\x41\x91\x79\x85\xba\x96\xad\xd0\x9f\x9f\x39\x45\xd8\x4c\xcd\xd9\xad\xc1\x51\x60\x78\x90\xda\xa9\x1d\x68\x19\x8f\x29\xf2\x0b\x04\x17\x5a\xfc\xc1\x42\x02\x8e\xcb\xad\x68\xd9\x9c\x43\xd0\xa1\xdc\x52\x58\xe8\x28\x71\x04\x11\x05\x95\x88\x85\x94\x22\x88\xaa\x11\x70\x25\xac\x45\x0a\xcf\xb6\x25\x7b\xbe\x92\x6a\x14\x78\xe6\x38\x6a\x4b\xc2\xc3\xbb\x91\x71\xd0\x01\x3a\xf5\xe6\x17\x30\x26\x6e\x17\x19\xbc\xa8\x12\xbe\x20\xc2\x3a\x64\xe0\xc2\x2a\x04\x72\x8b\x2b\x91\x22\xb0\x3d\x9c\x4a\x5d\xa7\xdc\x9f\x10\x7f\x00\x7d\x92\x8e\xda\x6f\xe8\x60\xab\x7a\xb7\x89\x2a\x11\x8a\x2b\x47\x10\x55\x23\xe0\x4a\x58\x8b\x14\x9e\x6d\x53\xf6\x48\x1f\x65\x80\x54\x54\x99\x6e\xfe\x65\xc4\x11\xc0\xaf\x44\x6c\x7e\xd4\xb4\x86\x6c\x7c\x11\x4f\xe2\xee\x92\x63\x70\x9a\x32\xcc\x96\x3b\x47\x4c\xa3\xb6\xa6\x7f\x3e\x33\xca\x9c\x25\xa8\x49\x32\x6d\x49\x31\xc4\x33\x87\x90\x37\xc9\xe4\x11\x82\xc3\x99\x26\xb3\xd7\x59\xe7\x27\x17\x62\xe3\xbd\xc3\x9c\x91\x67\x4c\xf7\x28\x64\x04\xab\x2d\xae\x4a\x3a\xa3\xa9\x8a\x4e\x99\x7c\x11\x7b\x92\x59\x42\x8e\xc2\x69\xe5\xf4\x75\x32\x9f\xc9\x25\xd2\xc9\x82\xbc\x95\xbd\xc3\x93\xea\x8d\x25\xc6\x90\xcd\x40\x51\xf9\xa7\x4e\xe2\x8b\x7d\x6a\xdf\x7d\xce\x65\x73\x5c\xf7\x59\xea\x17\x13\x61\x08\xc7\xe5\xfc\x1f\xed\x2f\x87\x58\x30\x8e\x73\xeb\x44\x73\xf6\xde\x98\xbc\xc2\x00\xfe\x5b\x34\x4f\x9a\xc1\x8e\xe6\x59\x0b\xd0\x7f\x9d\xa7\x1d\x26\x9d\x92\xe7\x1d\x95\x08\xd7\xc1\x8b\x48\x84\xeb\xc1\x45\xa5\xc1\x9f\x01\x23\x52\x11\xf8\x3d\xea\x7a\xa3\xd8\x33\x51\xc3\x95\x70\xdd\x51\x08\x47\xd4\xb9\x88\x84\x1f\x2d\x56\x88\xc0\x44\x14\xfc\x48\xb1\x84\x3a\x0f\x51\xd0\x23\xc6\x1a\x11\x98\x88\x44\x20\x62\x0c\xa0\xce\x46\x34\x02\xd1\x83\x5e\x7e\x34\x10\x71\x00\x73\xfd\xed\xa8\x46\x40\xe0\x4d\x47\x65\x45\xe0\xa7\x46\x25\x23\xf4\x41\x95\xad\x92\x62\xcb\x46\x8c\xd3\x22\xea\x9f\x5a\xcf\x44\x0b\xa4\xa2\x0e\x01\xd5\x8e\x8d\x1c\x68\x45\x6d\x0b\x55\xd5\x88\x1c\x04\x45\x65\x44\x5d\xb9\xce\x08\x92\x94\x4d\x83\xf2\x6a\x89\x38\x2a\x89\xec\xb7\x08\x42\x8e\xe8\xae\xcb\x17\x07\x67\x04\x91\xce\x08\xd6\x22\xcf\xd9\xaa\xcd\x12\x3d\x98\x8b\x3e\x73\x7f\x95\x95\xa8\x24\x54\x96\x9c\x7c\x24\xe7\xdb\x85\x28\xc0\x72\xd0\xf1\xfc\x2e\xca\xe9\x32\x82\x48\x8c\x53\xa1\xc7\x1f\x23\xb4\x08\x8e\x56\x5f\x3e\x18\xb3\x9b\x9d\x04\x0a\x23\xe2\xec\x30\x5c\x4c\x4d\x19\x10\x56\xae\xd0\x6c\xf2\x60\x95\x3a\x52\x88\x95\x38\x99\x3b\xa8\x97\xfe\xf9\x4c\x22\x90\xe4\x36\xaf\x4a\xd4\x4c\xf5\x10\x44\x8c\xb1\xb4\x9c\x46\x30\xad\x15\xfc\xdc\x47\xa4\x16\xf8\x46\x41\x07\xe7\x54\x71\x5d\xb9\xe2\x86\xbd\xae\xbe\x5c\xb1\xa2\x88\x3e\x4e\xf2\xea\x11\x48\x48\xb5\x88\xf4\xbc\x2a\x73\xe8\x56\x80\xb7\x23\xcf\x92\xfa\x84\xc4\xe8\xf8\x71\xfd\x48\xf5\x92\x88\x0a\x15\x7f\x8e\x37\xbb\xa9\xb9\x43\x4b\x10\xa4\xca\x90\xb9\x09\x14\x9b\xe4\x52\x05\x89\x1e\x4b\x1c\x78\x79\x03\xa8\x61\xed\x88\x94\x0c\xbe\x94\xf0\x28\xb6\xbd\x59\x02\x85\x15\xa6\x1a\x88\x22\xac\xa2\x8c\x91\x44\xfb\x9a\x44\x44\xa6\x0f\x89\x9d\xc0\x57\x9f\x92\xd2\xd5\xa7\x24\x6b\x34\x20\x43\xc1\x5f\x74\x62\x43\x74\x41\x37\x5a\xca\xf3\xb7\xac\x3b\x22\xae\x36\xe3\x05\x98\x6d\x2e\x43\x49\x78\xf7\xa2\x45\x24\xf2\x35\x16\x04\xd8\x3b\xd4\x76\x8a\xa8\x5f\x65\x9c\xc6\xe7\x56\xee\xf0\x47\xbc\xbf\x86\xf0\x14\x55\xc2\x15\xa0\x09\x93\xa0\x04\x2d\xdf\x38\x52\x16\xe1\x17\xec\x7b\x38\xbb\xd3\x1d\x91\x15\x34\xc7\x91\x21\x22\x89\xaf\xb2\x10\xde\x7d\x2a\xc8\x5f\x63\x9d\xc4\xe6\x55\x1c\x49\x17\x78\x78\x64\x15\x12\xac\x2f\x68\x10\x76\x2b\xff\x99\x46\xc6\x93\xee\x4b\xca\x22\x25\xf2\x55\x26\xc2\x0c\x8d\x1a\xf2\x57\x99\x17\x28\x0c\x81\x2c\xe0\x94\xd7\xf5\x7c\xbc\x70\x95\xf1\xf1\x84\x4a\x03\x85\x00\x3e\xe4\xc1\xdb\xe4\x04\x3d\x3f\x98\x8f\xc6\xdf\x7e\x8c\x36\x18\xff\x98\x6d\xd6\xfb\x2b\x7b\xf1\x61\x02\xff\x14\xfd\x7e\x74\xf2\x64\xa5\xe3\x82\xdc\x35\xec\x74\x79\xe9\x14\x24\x51\xba\x16\xfc\x38\x51\x1c\x4d\xa5\x68\xca\xdd\x19\xd3\xc5\xc1\xfe\x8e\x3e\xbf\x79\xfb\xa9\x21\x77\xdf\x0d\x10\xf6\xed\x3e\xbd\xc3\x52\xbf\xfd\xf6\x83\xdc\x02\xe7\x66\xed\x8a\xff\x98\x2c\x4d\x63\x07\x8f\x4a\xcd\x7f\xbc\x2d\xec\x05\x68\x9f\xc5\xfe\xf4\x7d\xbe\x98\x4e\xcd\x75\x40\x0d\x77\xd2\xf0\xc4\x6f\x01\x04\x68\x61\x0a\x00\x4f\x2a\x87\x60\x62\x44\xbb\x61\xb8\xb4\x37\x8e\xc0\xb0\x06\xc4\x28\xc0\xec\x02\x40\x2a\xf6\x80\x15\x9b\x53\xee\x07\xef\x83\x17\x96\xea\x06\x7e\xb0\x04\x5d\x77\x5d\xc8\xa0\x64\x65\xbe\x07\x13\x77\xfd\x97\xfd\xce\x58\xdb\x5b\x63\x67\xc2\x00\x27\xe8\x5d\xd0\x5f\xf4\x41\x33\xf7\x68\x27\xaa\xc5\x4b\x87\xf6\x03\x1d\xd7\x9f\x9a\x93\xcd\xce\x70\xb7\x10\xae\x4d\xa7\xe7\x17\x1f\x90\x01\xb7\x46\xb8\xdf\xd3\xdb\xf5\xb7\x37\xb6\x57\x73\x80\xbe\x84\x24\xdc\x5d\xec\x38\x17\x1e\xdc\xc1\x06\x88\xb6\xb9\x34\x27\x4e\x68\xe5\x1c\xef\xe7\xbc\xb5\xd9\x97\x2c\x94\x57\x39\xac\xc8\x69\xc1\xcd\xd6\x98\x00\x2d\x88\x5d\x27\xed\x98\x69\xd8\xe6\x65\x20\x3e\xf6\xce\x57\x62\xff\xdd\x8f\x5f\x40\x83\xea\x6b\x61\x8f\xbb\x79\xe3\x70\x48\xe7\xf7\x25\x3c\x30\x03\x5f\x7c\x9f\x6f\xde\xdc\xf4\xa2\x0c\x94\x81\x41\xf0\xd4\x09\xa3\x7e\xeb\x80\x72\xc2\x14\x6a\xec\xa1\x91\xcc\x0e\x44\x5a\xb9\x21\xb5\x6b\x18\x51\x5e\x4a\xf5\x1f\x81\xd0\xc9\x32\xc5\x04\x51\x18\x1a\x42\x11\xc1\x30\xb9\x34\x83\xb6\x09\xcf\x19\x08\xcc\x88\x93\x33\xd0\x5d\x25\xf1\x76\x59\x6f\xdf\xfd\x34\x80\x30\x51\x17\x36\x5a\x3c\xed\x82\x63\xc3\xd8\x5d\x59\xb0\xcd\x00\xa5\xdf\x29\x73\x16\x8b\x5f\xe2\x6f\x12\xdf\x62\x99\xf8\x7f\x5d\xd2\x40\x90\xf8\x37\x9c\xfa\xaf\xa3\x8a\x75\x37\x92\x8d\x35\x7b\xf8\x7c\x40\x35\x9c\x83\xe2\x36\xdf\x25\x69\xee\x9c\x32\xb2\x81\x83\xdc\xc2\x6e\xf2\x45\x8a\xde\xad\xe1\x74\xe0\x61\xf1\x8d\x52\xdf\xdb\xed\x77\x38\x79\x61\xe1\xb6\x53\x06\x8d\x8d\x03\x10\x1c\xb4\xc7\x47\x3a\x2c\x67\xad\x84\xfb\xd6\x66\x5f\x32\x2f\x08\xdb\x76\x9d\x12\x9f\x71\x25\x78\x0d\x9d\x36\x7c\x48\xa5\xe9\x03\xc1\x82\x60\x1b\xa8\xe3\xa7\x6b\x5f\x60\xca\x32\x6c\x91\x29\x48\x41\x79\x9d\xcc\x38\x43\x92\xc5\x9f\xee\x36\x5b\x60\x72\xd6\x0e\x21\x6c\x3c\x10\x6b\x83\x89\xb0\x41\x7c\x7b\x3d\x3e\x00\x16\xd7\x9f\xec\xcc\x83\x4e\x0e\x01\xe5\xf2\x8f\x0e\x81\xa7\x0c\xe2\x87\x8e\x66\xd1\x6b\x22\xfa\x75\xde\x04\xb3\xdf\x75\xde\x4f\xca\x86\x49\x71\xbd\x58\x03\x3f\x85\xca\x67\x29\xe3\xd5\x81\xe7\xb3\x1a\x0f\xb8\xcc\x42\x26\xf9\x95\xc5\x1c\x12\x01\x67\x09\x9a\xf3\x34\x7b\x0a\x0a\xbe\x13\x90\x73\x9b\x8f\xd6\x70\xaf\x74\x69\x8c\xcd\xe5\xa7\x32\x7d\x7b\x65\x2c\x97\x42\xa6\xc9\x3c\xb4\x67\x13\xc3\x59\x16\xc2\x44\x64\x1c\xdd\xc9\x26\x65\xfc\xea\x3a\x91\xcc\x70\x28\x64\xe9\xf6\xcf\x86\x90\xc4\xd9\x17\xc2\x70\xd8\xcf\xf2\x2b\xc7\xfa\x75\x6e\x1a\x60\x46\x44\x84\x10\x75\x4f\xfd\xd8\x62\xec\x9c\x1e\x61\x3e\xe2\xe9\x6f\xc1\x82\x2e\xf2\x9d\x90\x33\x01\xec\xe5\xca\x3b\x7d\x81\xbb\xd1\xb9\x38\xae\xa5\x07\x7c\x50\x43\x83\x8c\x5c\xd9\xa5\x29\xac\x2c\xe5\x3b\xd0\x8e\x3c\xce\x32\xae\x37\xa3\xc7\xa9\x42\x68\x0f\xfc\x32\x41\xb5\xc6\x04\x0e\x27\x6e\x72\x3d\x07\x98\x60\xd0\xf5\x71\xe9\xa0\xc1\x4d\xc5\xeb\xb7\x43\x10\x88\xf2\x32\x6d\xc2\x75\x0c\x0c\x84\x29\x22\xc2\x0c\x18\x49\xa4\xd8\x48\x02\xb3\xda\xee\x57\x18\xe0\xb1\xae\xa7\xc6\xee\x04\x2c\xc7\x76\xb3\x58\xef\xe1\x36\x32\x1e\xef\x44\xfe\xe7\xc0\x7d\x26\x1b\x0b\x2f\x20\x9b\x18\x6b\x19\x1b\x44\x57\x70\x79\x51\x58\x09\xb3\xb7\xcc\x67\xd2\x9d\xb2\x9d\xbf\x9d\x2e\x20\xe9\xb0\xc7\x42\x31\x87\x9a\x43\x8b\xdf\x4f\x5e\xbf\x04\x57\x1f\x7a\x16\x17\x69\x1b\x89\x18\xc3\x43\x15\x8e\x81\xf6\xc6\x9b\x33\xd0\x04\x1a\x9a\x02\x21\xde\xc4\x3f\xae\x1a\xd8\xe7\x84\x33\xab\xb9\xbf\x5c\x63\x66\xe1\xfb\x75\x0a\xbe\xc9\x83\x37\x74\x1e\x0c\xe0\x56\xc3\xf9\x9b\xe1\x00\x4d\x7d\xb0\x7f\x89\x31\x1f\x10\x62\xa6\xce\x95\x85\xb9\x1f\xcc\x45\x0a\xef\x57\x6c\xb2\xd6\x78\xcc\x4f\x6b\x86\x1c\xf3\xc0\x31\xba\xa5\x9d\x74\xbf\x9c\x29\xc1\x91\xc4\xee\x3d\x2a\x37\x78\x65\x62\xac\x5b\x32\x10\x38\xec\x6c\xd0\xe2\x48\xed\xcd\xdd\x0f\x89\xf1\x10\xba\x3f\x98\x90\x88\xb0\xa3\x93\x18\x97\x01\x27\x74\x91\x81\xbf\x96\x59\xae\x10\xdf\xcb\x1d\x06\x52\x63\x2b\xa0\x22\x5f\xa9\x70\x16\x22\x16\x6b\xdb\xdc\xf3\xab\xa3\x7d\x33\x27\x5b\x13\x35\x17\x28\xb2\x47\xc6\x58\x04\x27\x49\x37\x7f\x6d\xc0\x09\x51\xc5\x2d\x5e\x85\x24\x6e\x0b\x82\x35\xdf\x4d\x94\xd0\xc1\x1c\x54\x9a\x0c\x15\xf5\x49\x88\x60\x83\x47\xc8\x4b\xc0\x54\x48\xeb\xc5\x78\x0d\xea\x50\x45\xf6\xca\x9f\x7f\x28\x12\x42\x5c\x89\xa5\xa4\xbf\xdc\xf0\xfb\x1f\x1b\x5c\x62\xb6\xdd\xb1\xc6\xd4\x46\x29\x00\x1d\x62\x01\x63\x03\x17\xfd\xa6\x97\x82\xf7\xe4\x10\x9e\x9a\x33\xe3\xb0\x24\x52\xf1\xa4\xe3\x97\xce\xff\xd7\x29\x3c\x86\x64\x65\xa5\xe6\x1a\x42\x12\x7a\xc6\x16\xb5\xef\x27\xb5\x60\xc4\x5d\x7c\xa3\xbe\xab\x53\x1f\x3f\x7f\xe0\x7d\xc9\x5d\x93\x72\x35\x08\xd1\xe2\x77\xb6\xfa\xda\x45\xd8\x50\x50\x1f\x03\x92\xc1\x40\xce\x7c\x78\xe0\xc5\x64\x5c\x15\x22\xbb\x26\xc6\x9d\x69\xae\x13\x70\xbe\x63\x43\x38\x77\x5d\xf5\x3a\x13\xca\xc6\xc5\x02\x0f\x03\xa9\x18\x32\x23\x6a\x90\xc8\x0b\x26\xc4\x25\x0b\xaa\x8b\x24\x68\x95\x88\x1a\x17\xec\x9a\x46\x02\xb2\xc9\x80\x85\xae\x95\xec\x37\x31\x67\xd1\xe8\x4b\x15\x04\xb7\x3f\x08\x1b\x89\x77\x7b\x02\x31\x3a\x64\x03\x8e\xf2\xc7\x6e\xd9\x98\xdd\xbf\xcf\xe2\x7f\xcd\xe2\x53\xe3\x2f\xdc\x18\x9e\x6f\x8d\x28\x47\x51\xe4\xa9\x4a\x23\x85\x50\x8e\x5d\x0f\x92\xbe\x47\xc7\x61\x0f\x77\x94\x14\xdd\x75\x7a\x62\x54\x1b\x77\x1c\x96\x5c\x43\x85\x85\xf3\x51\x71\x63\xee\xd0\x21\x77\x4e\x85\x92\x90\x85\x4a\x3c\xfd\x41\x61\x89\x47\xe1\xdb\x2d\x11\x18\xa0\x11\x7a\x85\x96\xf0\x25\xc3\x94\x47\xe1\x96\x6b\xa7\x7d\x17\x18\xde\x56\x10\x73\xef\x63\x20\xd7\x62\xa4\x96\x0d\x33\x96\xae\xaa\x33\xcb\x86\xfb\x05\xba\x8c\x0c\x0f\x5c\xe4\x6b\xd1\xdf\x68\x34\xa1\x0f\xf5\xd7\xd9\x04\xfe\xc7\xaf\x26\x86\x37\xbe\xfb\x79\x48\x6a\xb8\x88\x2c\x38\xdb\x77\x64\xc8\x90\xc6\xb2\xb6\xcc\xb5\x02\xc0\x31\x63\x67\x56\x01\x53\x20\xec\x3b\x8c\xe9\x39\x95\x44\x61\x54\x9d\xa3\xec\x3f\xce\xdc\x7a\xc2\xb6\x91\xc7\xce\xad\xe8\x8b\x43\x9a\x75\x8f\x25\xeb\x14\x8c\xbe\x70\x65\x27\xe7\x11\x52\x19\x43\xb1\x68\x47\xca\x99\xbd\xd4\x34\x28\x20\x85\xeb\x12\xb1\xea\xe3\x7e\x20\xfb\x41\x57\xc0\x7a\xe6\x7e\x0f\xc0\xef\xe9\x87\x55\x2c\xf8\xd4\x15\x34\x38\x97\x2f\xca\xf2\x87\x73\xe8\xea\x2d\x33\xa8\xfc\xfd\x57\x82\xd1\x85\x77\x27\xb1\xc9\x2a\xf3\x4d\x88\x2f\xd3\x50\x5c\x0c\xfa\xe6\x1c\x49\x97\x09\xd9\xc8\x8b\x69\x08\x8d\x84\xef\x7f\xf2\x6b\xfe\x62\xab\x61\xe8\x97\x62\xd8\x60\xd0\xe0\x6a\x34\xe1\x65\xc5\xe4\x0d\x40\x7f\x81\x49\x24\xaf\x80\x71\x3e\x1e\x39\x82\x29\x5c\xe4\x79\x3b\x5a\x66\x8c\x0f\x4b\x63\x27\xe8\x59\x9e\x87\xcd\x89\x41\xa9\xed\x6b\x84\x8b\x80\x19\x22\xfc\x42\x17\xaf\xde\xd9\xf2\xb0\x70\x58\xfe\x14\xad\xed\x5d\xc0\x58\xfb\x1b\xb3\x11\x57\x0c\xc0\x08\xc6\x84\x21\x62\xf1\x1c\x57\xc4\x67\x59\x18\x62\x48\x41\x48\xfb\x8b\x03\x50\xd7\x5b\xa6\x39\xb7\x5b\xc2\x77\x62\xb3\xc5\x48\x25\x9e\x5a\x59\x50\x41\xb0\x89\x33\xa8\x58\x33\x61\x27\x99\xcf\x28\xa4\x02\x20\x83\xc7\xcf\xef\xcb\x4d\x1e\xcb\x5f\x8c\x71\x69\xba\x60\xee\x55\x3d\xd4\x22\x38\x93\x9a\x0e\x4e\xc1\x94\xe5\x25\xd5\x38\x03\x7a\x29\xe3\xac\xa0\x20\x29\x8d\xfd\xde\x40\x49\xbb\x89\x71\xc1\x4a\xf8\x71\xb5\x58\x4f\xcd\xf7\xef\x49\xa6\x6d\x2e\xae\x9d\xda\x03\x52\xee\x36\xeb\x4b\x1a\xf2\x9f\x22\x48\x21\x09\x7a\x4b\x30\x99\x9d\x67\x6b\x80\xdf\xd1\xf6\x0a\x72\xb9\x98\xbf\xf5\x83\xbb\x6b\x83\x47\xc7\x1d\x3c\xc1\x72\x6f\x0a\x28\x28\x3f\x44\x65\x31\x81\x07\x45\x78\xc7\x6c\x72\x7e\x1e\xe2\xb5\x7b\xe7\x25\xc7\x5e\x31\x55\x70\x16\x7c\xfc\xe6\x09\x99\xc1\xf9\x6b\x2d\x5c\xdb\x4c\xae\x8b\xd3\x8e\x72\x88\x69\xe4\xae\xd2\xfb\x73\x09\x7f\xf9\xde\x95\x87\xa7\xbb\xce\xef\x82\x65\x13\x92\x31\xf2\x03\x30\xe6\xd0\x7b\x8b\xe3\x92\x8d\x53\x3c\x86\xf1\xaf\xfa\x62\xbe\x79\x26\x49\xfa\xcd\x82\xf7\xad\x4f\xc1\x58\x8b\x1a\x17\x5b\x57\xe6\x70\xea\x2e\x2d\x07\xdf\xcc\xf3\xbc\x5d\x3f\xa8\x8d\xa9\x67\x6e\x55\xc4\xd7\x3c\x7c\x86\xb8\x86\xfb\xa9\x30\x0f\xdc\x5f\x42\x08\xf3\x21\xe5\x12\x61\xcb\x8a\x5c\xb9\x5c\x23\x4f\xae\x3a\xd3\x7d\x45\xfb\x33\xd2\x4f\x48\xd2\xc5\x69\x10\x4c\xf8\x55\x85\xe8\xbd\x78\x29\x58\xb0\x0e\x47\xe1\xfb\x4e\x97\xbc\x8f\x49\x30\x43\xc9\xd5\x0c\xaf\x84\xdb\xec\xbc\xaa\xf8\x5e\xa9\xb0\x02\xe9\x9a\x33\xcb\x6f\x3c\xc3\x30\xec\x7d\x73\x73\x6d\x06\x31\x25\x04\x60\xfe\x54\xe2\xd8\xaf\x28\x1d\x85\xf5\x10\xb5\x24\x08\xec\x4a\x4a\xd5\x88\x50\x44\x79\xc3\x86\xaf\xff\x44\x83\x45\xf9\x82\xe9\x23\xfa\x0e\xb2\x2b\x3b\xee\x9c\xa4\x24\x67\x4e\x12\x42\xe5\x20\x28\x86\x04\x55\x39\x55\x2a\x78\x93\xb8\xea\x53\xa9\x54\x84\x86\x53\xc6\x8c\x5c\x5b\x29\x04\xd9\xb2\x0b\x39\x58\x58\xe5\x93\xf1\x80\x7d\xd2\x8b\xc4\x84\xbf\x22\x86\x39\x7c\x2c\x33\xe9\x28\xbc\x5c\x9f\xc9\xcb\xb5\x1a\x2f\xf9\x6f\x74\x36\xe5\xa0\x92\x08\xca\xe7\xcf\x10\x32\x12\x5c\xcf\x41\x28\xc0\x27\x36\x56\xaf\x40\x75\x81\x0b\x90\xa5\x77\xfb\x32\x3c\xc9\x82\x3f\xce\x8c\x89\x5a\x80\xbb\xfb\x95\x2c\x91\x09\x47\x4e\xa7\x94\x37\x9f\xe2\x2d\xa8\x71\x3f\x55\x11\xa1\x9a\xeb\xb5\xe2\xeb\xcd\x54\xd8\x20\xbf\xad\x22\x43\x47\x96\x42\xde\xfd\x7d\x87\xb4\x7d\x55\x23\x80\x47\xea\xaa\xfd\x2b\x5a\x13\x10\xa2\xca\x27\x34\x6e\x3d\xd1\x51\x98\x7d\x07\x22\x70\xe3\xeb\x71\xa9\x82\xa4\xdc\xc1\x1f\x22\xaa\x32\x8e\xa1\x0c\x2f\xda\xd2\x20\x5e\x8c\x10\x2e\xaf\x49\x35\x88\x6f\xec\xc2\x6d\xdc\x59\x0c\xa5\x99\x78\x49\xa5\xab\x7c\x67\x80\x67\x1d\x49\xa7\x18\x0d\x52\x45\x43\xc9\x27\x4b\x5b\xc2\x2b\xe7\x53\x52\x9c\xb7\x4c\x21\xa8\x55\x62\x0a\x23\xb0\x70\x9e\x9e\x33\xfe\x83\xb4\x8a\x5f\xab\x5d\xb2\xaa\xbe\xac\x37\xe2\x93\x06\x9c\x29\x5a\xaa\x31\x7c\x2d\xa1\x7c\x39\x4e\x77\x3b\x8b\x37\xd0\x6a\x23\x62\xdc\x75\x12\x3a\x58\xc3\x0f\x3a\x5d\x25\x76\x8c\xfb\xcb\x8f\xfe\xfd\x4a\x6e\x99\xe0\xd3\xd7\x4b\x6c\x07\x31\xa0\x22\xdd\x16\x21\xaa\x4b\xe5\xfc\x8a\xec\x5c\x0a\x8f\x57\x85\x68\xde\xc7\x10\x6d\x6e\xe5\x68\x46\x10\x35\x62\x7a\x90\x89\x5f\x3a\xff\xfb\xdb\xaf\xf0\x2f\x47\x58\xeb\x50\xdf\x9a\x0e\xdb\xad\xb9\x9b\x40\xe1\x78\xdb\x62\x31\xf6\x82\x29\x5a\xb1\x7e\x1e\x29\x6c\x9b\x23\x1b\x72\xf9\x8a\x1a\xe8\x15\x71\x36\x4e\x00\x24\x3f\x1d\xc0\x81\x0f\x39\x23\xc0\x62\x78\x9f\xb8\xfd\x43\x34\xee\x69\x37\xf4\x2b\xfe\x05\x59\x4e\xe0\x56\xb6\x45\xc4\x3b\x46\xc6\x6c\x13\x11\x68\x88\x57\x6d\xde\xaf\x96\xaa\x8d\x5e\xcd\x90\x3a\x80\x34\x01\xe5\xfd\x5c\xf8\x4d\xf4\xc1\x0c\x14\x54\x4a\x2f\x33\x0b\x47\x38\x11\x65\x5f\xfa\xaf\x29\x3f\x91\xfd\x18\xc5\x23\x18\x7c\x63\xf2\x24\xba\xe4\xbf\x8e\xf1\xbe\x4b\x91\x85\xb8\x4b\x20\x82\x51\x98\x9d\x10\x5f\xce\x17\x1b\x5a\xbb\xaf\x88\xdd\xda\xc4\xf6\x07\xb4\x08\xec\xf3\xef\xab\x84\xff\xfa\x13\xcb\x47\xc3\x35\xc1\x98\x29\x24\x09\xba\xc6\x14\x2b\x67\x17\xa6\x39\xd3\x4c\xf6\x1b\x8f\x8c\xbb\x9b\x86\xdc\x9c\xc6\xcd\xd8\x42\xec\xe6\xc5\xde\x93\x6b\x6e\x3e\x79\x67\x19\xdc\x33\xa3\x24\x10\xbd\x4c\x8e\xef\x21\xa1\x47\x72\xd0\x60\x01\x57\xa4\xa6\xe0\x55\x46\xf9\xc0\x4a\xb1\x4a\x2f\x5e\xa1\xad\x61\x38\x18\x7b\x27\x38\xa6\x19\x0c\xf4\x2d\xfd\x01\x21\xce\xa7\xca\xc0\x05\x27\x38\xb8\x90\xfc\x0e\x0b\x76\xf0\x40\x63\x26\xea\xb5\x18\x59\x88\xaa\x41\x57\xda\x31\x23\x14\xdb\x62\x89\x00\x38\xcb\x96\x13\xf9\xed\x79\xf4\x7b\x54\x99\x73\xcb\x9c\xac\x36\x07\x42\x5c\x9d\xe8\x4a\x3b\xfa\x3d\xa6\x67\xee\xe5\x6f\x74\x7d\xee\x6b\xe1\xf7\x94\x89\xfc\x96\x39\xfa\x3d\x56\x21\xba\xaf\x8d\xae\x6e\x1b\xec\x0a\x17\x57\x26\xba\x14\x8e\x7e\x8f\x57\xe6\xdc\x9f\xc6\x54\xe7\xbc\x0e\xab\x50\x74\x51\x1b\xfd\x1e\xab\x10\x7e\x6c\xa7\x6b\x13\x6c\x4b\xa2\x64\xe3\xdf\x9e\x46\xbf\xc7\xaa\x42\xf7\x8d\xd1\x75\xa1\x97\x61\x95\x89\x2e\x35\xa3\xdf\x63\x95\xb9\xf7\x7f\xd1\xd5\xb9\xaf\xc3\x2a\x14\x5e\x34\x46\xbd\x27\x4d\x10\xfd\x59\xcd\xbd\x63\x93\x3b\xd5\x52\x4b\xe8\x1c\x87\x22\x2e\x3a\xae\x20\xf8\xbc\x47\x51\x64\xe7\x53\xcc\xff\x09\x8e\xa3\x0a\xb7\x9e\x60\x93\x2a\xb9\xdb\x8e\xf7\xf5\x50\x84\x2a\x67\x43\xc4\x4c\xf8\xa6\x1e\x87\x06\xf7\x7c\x8e\x7c\x57\x52\xa4\xcf\x64\x0a\xd5\xb1\x5b\xb6\xa8\x2f\x4b\x11\xd7\xe5\x38\xad\x44\x6e\x94\x97\x01\x70\x96\xbe\x93\xa0\x01\xdd\x3f\xd7\x29\x6e\x23\x0a\xb6\xab\x49\x8f\x79\x93\x9f\x73\x82\x1d\xc6\x54\xb4\x1a\x1c\xce\x66\x10\xd4\x0e\x7e\xff\xa2\x7a\x28\x17\xe4\x4b\xf2\x07\x3b\xb8\xff\x05\x8d\x40\xee\xe8\xfe\x95\xad\x21\x50\x6d\x7a\xcd\x53\xe1\x4b\xa2\xf8\xfb\x61\x70\x06\x8c\xd7\xe4\xfc\x81\x43\xaf\x77\x84\x5b\x27\x59\x96\x08\x31\xb8\x60\xd1\x16\x6d\x38\x90\xd7\x49\x36\x15\x2f\x26\xa1\xf9\x11\xc2\xc8\xcf\x87\x91\x4d\x91\x09\x6b\x0b\x72\x32\x13\x6e\x6b\x93\x55\x92\xc4\xeb\x10\x19\xa6\xc8\x67\x8f\xa4\x6d\x1a\x1e\x55\x62\xd3\x69\x46\x87\xff\xc9\x27\x3f\x09\x41\xd4\xd9\x1c\xb2\x69\x0d\xfe\xe7\x2e\xda\x2d\x9d\x1b\xdd\x04\x1f\x45\xfd\x85\x3f\x21\xb4\x70\xd7\x77\x56\x8c\xe3\xad\x42\x8a\x17\x13\x83\x6c\x84\x21\x0c\xf2\x3e\x2f\x4a\x91\x43\x3e\x97\x16\x14\x48\x90\xec\xc3\xef\xbd\x6e\x24\x85\xf6\x3f\xe1\xd1\x1e\xbe\x4c\x03\x0f\xe3\xe0\xc7\x93\x9c\x24\x1d\x1c\x24\xee\x29\xa0\xe0\xa6\x59\x93\xd9\xce\xe4\x3b\x71\x06\xfc\x8f\xe4\xdf\x8f\x8f\x2e\xd9\xd7\x11\x74\x91\x0c\x97\xc8\x2a\x82\xa8\xe8\x92\xf3\xfe\x8c\x4a\x9c\x60\x88\xac\x04\x0b\x77\x2e\x79\x05\x67\x54\xe3\x84\x40\xd4\x68\xf2\xc2\x9c\x4b\xf6\xf5\x19\x55\x38\x81\x0f\x55\x45\x10\xda\x5c\xf2\x0a\xce\x69\x30\x14\xee\x90\xd5\xec\xf0\x05\x2d\xe2\xed\x59\x72\xc0\x20\x87\x5e\xe1\x72\x6d\x22\xbd\x40\x45\xaf\xf7\xab\x55\xe1\x84\x36\x64\x15\x58\xf0\x72\xc9\x2b\x38\xa3\x1a\x27\xa0\x71\xc6\xeb\x62\xcf\x89\x1e\x98\xb7\x31\x1a\xc2\x79\x74\xe1\x90\x3d\x22\xb3\xf7\x06\x77\x9b\x2e\x4f\x82\x4a\xe4\x20\x82\x1a\x79\x48\x78\xf5\xe4\x8e\x49\x3a\xdb\x85\xfb\x1e\x8b\x18\xbd\x89\x8d\xa4\x46\xac\xf7\x09\x05\x90\x01\x10\xd1\x09\xb1\x77\xda\xd9\xba\x40\xee\x9d\x46\xef\x9c\xa5\x1c\x14\x91\x2e\x4d\xdb\x16\x10\xc3\x37\x32\x72\x81\xd9\xfc\x45\x18\x98\xc0\xef\x65\x4f\xef\xc1\x04\x7a\x40\x95\x24\x9f\x97\xfc\x80\x55\xbc\x1f\xd7\x23\x42\x78\x0f\x9f\xbc\x6c\xd4\x62\x70\x57\xa8\xe0\xa3\xc1\x77\xfa\xb3\x4e\xb0\xc5\x16\xc2\x3b\x6b\x79\xec\xe1\x65\xe7\x3d\xb5\xe6\x26\xbc\x19\xc8\xff\x50\x72\x49\x3c\x31\xd9\x20\xc8\x6d\xf1\x9c\x74\xe3\x9c\x44\xe4\xfc\x25\x48\xc4\xe3\xfe\xb8\xc1\x62\xe4\xe0\x86\x0f\x0c\x02\xde\x64\xc3\xc2\x38\xa9\xfe\x31\x38\x98\xbb\x9e\x05\x4b\x66\x70\x90\xe0\x04\x3a\x0e\x82\xd7\x66\x2f\xde\x59\x08\xe7\x2e\x36\x1c\x0a\xde\xde\xc0\x81\x43\xb7\x89\x61\x70\x68\xb1\x9b\x03\x07\x6f\xed\x0a\xa0\xe0\xb5\x18\x1c\xa0\xc4\x75\x22\x81\xb7\x03\xb7\x46\x9c\x77\xe7\x52\x09\x16\xa8\x70\x1d\x2f\xe0\x84\xd0\x95\x0f\x2c\x58\x9e\x6e\x50\x78\x1d\x75\xb0\x9f\xde\xb9\x9d\xda\xdb\x4c\x9f\x88\x27\xf0\x03\xa0\xc1\x97\x18\x4e\xde\x10\x87\xd2\x25\xf9\xc8\x9e\xb1\xe5\x03\x88\x8f\x6e\x53\x0a\x8c\x90\x02\x0d\x06\x56\x11\x7b\xf5\x49\x1c\x66\xc6\xd2\x98\xb9\x76\xd2\xff\x5e\xe1\xba\x67\x34\xa2\x97\x36\x0e\x11\xa0\x11\xf1\x24\xfd\x58\x36\x39\xd7\xba\xa1\xd3\x01\x18\x41\xef\xd3\x9f\xc7\x0c\xac\x00\xa1\xee\xc8\x2f\x27\xb0\x38\xa2\x04\x32\x46\x02\x4a\x17\x8e\x43\x09\x4c\x03\x91\xbb\xfa\x3a\x38\xf1\x17\x3a\xc1\x86\x9e\x1b\x0f\x8e\x5b\x82\xb1\x4c\x2e\x46\xa1\x8f\xc0\xe8\xb7\x25\x70\x81\x9f\x7f\xbf\x02\x10\xdf\xfc\xe7\xa1\xf3\xbc\xdb\xec\xc1\xc3\xef\xe9\xcc\xd4\xb4\xbe\xa1\x4c\x6f\xe7\xe2\x9e\x8b\xc7\x5b\x9d\x84\x11\x9e\xd3\xc4\x28\xb3\x94\xdb\xc4\xe8\x77\xce\x76\x18\xd1\x99\x2a\xd1\xe1\x24\xaf\xd8\x1f\x62\x09\xde\x2a\x1e\x27\x1b\xe5\x0f\x79\x71\x48\x97\x72\xa2\xda\xd0\xd3\x6b\xaa\x41\x27\x27\x44\x39\xc7\x79\xcb\xc1\xff\xc8\xd5\x2d\x8a\x4c\x34\x1e\x44\x54\x54\x14\x1d\x6a\x37\xd4\x69\xcf\x22\xe0\xc3\x2f\xb0\x0e\x52\x8d\xff\x82\xc2\x9f\xa9\xef\xea\xea\x1e\x83\x07\xb1\xb0\x1d\x57\x84\x46\x93\x67\xe5\x14\xd5\xf9\xac\xfe\x8c\xa0\x1c\xee\x52\x0b\x9a\x38\xbc\x6f\xfa\x9f\xd4\xd4\xc4\xdd\x84\x13\x64\x30\xfe\xeb\x74\xea\x84\x20\x70\xd2\xa0\x77\xdf\xab\x65\x1d\x41\xd5\x53\x47\xc1\x94\x73\x8d\xd0\x19\xf9\x3e\xf9\x07\xb1\x1d\x30\x9e\x6b\x99\x48\xed\x98\xa4\x57\xa1\x09\x12\x3c\x5c\x9f\x3e\x9d\x59\x0f\xa7\x00\x33\xf9\x89\xe0\xa4\x4c\xe3\xc0\xc1\x97\x05\x11\x83\x0e\x34\x97\xcd\x7c\x20\xa2\x6d\x1b\x96\xc9\x39\xe9\x07\x3f\x47\x7b\xf3\x5e\x90\xc1\x32\xc1\xa4\xb9\x36\x67\xf0\xbf\xe0\x36\x17\x27\x63\x02\xc0\x50\x49\x16\xaa\x94\x77\x98\xdc\x46\xfd\x4b\xd2\x10\x9f\x49\x92\xaf\xc0\xaa\x99\xbc\x51\xa6\xaa\x4b\x07\x22\x1e\xa3\xb7\x97\xb8\x3d\x11\x96\x2d\xd5\x01\x0a\x4d\x94\x8a\xc0\xbc\x4f\x84\xbc\xad\x02\x33\x63\xb5\x58\x9e\xbe\x37\x8d\xfd\xe6\xf2\xb7\x1a\x74\x62\xa1\x96\xc4\xda\xe6\xc1\xfc\xed\x52\xdb\x2d\x8c\xe5\xa5\xff\xf6\xd2\x06\xac\x5e\xd9\xe6\x6e\x31\x13\x9c\x3c\xfd\x4e\xae\xb0\x51\xf5\x07\xdf\xea\x88\x41\x40\x01\x6f\xb1\xcd\x81\x19\x7f\x63\x56\x2e\x83\xe5\x22\x75\x01\x95\xda\x28\xa6\x90\x4e\x96\xe0\xf2\x62\x8b\xd3\x42\x07\x07\x09\xb0\xc3\xf2\x7a\xb9\xb0\xf7\x04\x97\xf0\xc5\x95\xbd\x3f\x2d\xcd\x2b\x7f\x04\x81\x6e\x5e\x4c\x4d\x72\x67\x59\x8c\xbe\x9e\x88\x22\xaa\x26\x91\x07\xac\x28\x97\x0b\x1e\x5b\x2e\x38\xc3\x1b\xe3\x7c\x7f\xda\x9a\xdc\x03\x4e\xe4\xce\x4c\x01\x6d\x85\xf4\x47\xff\xef\xff\xfd\xff\xfc\xf6\xc3\xbd\x3e\x29\x70\xf5\x90\x5b\x4b\x1f\x8f\x26\x93\x14\x32\x75\xa9\x49\x7e\xcb\xc9\x48\x83\xa5\x2a\x75\x61\x26\xcb\x8d\x6d\xba\xfb\x7e\xc8\x94\x7f\xac\x28\x41\x4e\x52\x38\x6b\xa3\xb4\x8b\xae\xd3\x82\x4c\x5d\x90\x86\x58\x6a\xd0\x12\x76\xcc\xf9\x5a\xc7\xb5\x4d\x7e\xa9\x88\x4d\xee\x09\x47\x0f\x4e\x49\x83\x6e\x43\x77\x4f\x3a\x19\x53\x85\xff\x7a\xd3\x05\xbb\x78\x82\xf6\x28\x45\x45\x47\x37\x38\x38\x0b\x7e\xe8\xaa\x01\xfe\x3f\x34\x96\xef\x42\x07\xab\x4c\x24\x00\xbe\xd0\x84\x00\x31\x37\xc4\x81\xe4\x9e\x97\x0f\x75\x4e\x24\x86\xde\xdf\x99\x8f\x8c\xfc\x0f\xf2\xca\x30\x40\x9d\xba\x27\xcc\x4d\x94\xe5\xf1\x75\xc1\x63\xd2\xbd\xbd\x64\xb3\xfd\xe6\xfc\xe6\x30\xfb\xed\x93\xce\xc8\xc3\xdb\x97\x4f\x9f\xa3\xa7\xe4\x16\xe1\x0a\x72\xeb\xa8\x09\x2d\xbb\xa8\x42\xc6\x14\x92\x0e\x53\xcc\x6f\x54\xef\x78\xf3\x84\x8f\xe7\x6e\x87\xe3\x68\x22\x16\xb3\xe3\x5b\x11\x39\x4a\x47\x2f\xad\xe0\x90\x8e\xf9\x70\x6f\x02\x81\xa3\xef\x1b\x89\x7b\x05\xaf\xd5\xc2\x97\x07\xb8\x4b\x98\xd8\x8e\xbc\x14\x6e\x22\xf2\x9c\xfa\x5c\x4b\x29\xae\x86\x67\x2b\xb1\x95\x52\x9c\x5a\x8c\xe1\xfe\xc2\xa7\x4f\x65\xe1\xf0\xe7\x6b\x12\x7f\xb2\xd8\x4d\x50\xb2\x06\x3c\xc7\x5e\x38\x64\x50\x0d\xd6\x34\x44\x8d\x49\x97\x88\x9f\x71\xd6\xeb\x1a\x26\xe9\x59\x9a\x51\x22\xe7\x26\x94\x10\xe7\xca\x0d\x8a\xa1\x65\x7d\x0b\xac\x0d\xe7\xb3\x95\x39\x9b\x99\x39\x7f\x9f\xe2\x24\x97\x4d\x4d\x49\x1d\xa3\x89\x5c\xf2\x29\x73\x03\xa0\x71\x6e\x62\x18\xb9\x98\xda\xa0\xa0\x69\xfa\x3e\x9b\xc7\x5c\x26\x6b\xa6\xb2\x08\x74\x6d\x5a\x46\x88\x60\x20\x80\x8b\xcf\xfc\x2f\xe7\x46\x21\x9d\x4e\x27\x49\xc1\x68\x22\x97\x7c\xca\xfc\xc8\x6e\x3c\x4e\x8c\x13\x8a\x82\xd1\x34\x69\xc1\x0a\x89\xe4\x34\x39\x76\x3f\x56\xcd\x36\xb2\xde\x2a\xcc\x0c\x3f\x3b\xca\x5f\x53\xa9\xdc\xb8\x40\x09\x85\x13\xb8\x64\x29\x72\x85\x31\x8c\x69\x76\x3a\x53\x14\x06\xa7\x47\x0b\x92\x2c\xe4\x12\x79\x27\x02\x3f\x1a\xbb\x35\xa1\xd7\xbc\x0e\x1a\x9b\x59\x4f\x96\x7c\x2e\x6b\xa4\xf2\xa4\x2c\x14\x8d\x4b\x2e\x5d\x7e\xf7\x14\x80\xde\x8d\x15\x25\xa2\x48\xd2\x42\xe5\x93\x99\x49\xdc\xf1\x30\xcc\xdd\x6e\xb3\xfb\x92\xce\x11\x14\x2e\x39\x34\xbf\xae\x6d\x04\x41\x89\xaa\xd9\x87\xc9\xc4\xf9\xe0\x75\xbe\x6d\xa0\x68\x5c\x72\xe9\x7e\xdd\x32\x50\x24\x25\x86\x61\xbc\x04\x52\x50\xfa\xef\xef\xf3\x11\xc9\xe9\xee\x33\xa5\x56\x7e\xdc\xbd\x0e\x22\xa4\x29\xec\xeb\xd9\x0f\x76\x27\x03\x8e\xc7\x72\x0a\xd4\x7c\xe2\x6d\xbd\xc0\x1c\x3a\x4e\xe3\x8f\x41\xe3\xfb\x4c\x25\xcc\xf1\x24\x15\x67\x11\xe9\x0a\x12\x86\x91\x4d\x3a\xab\x91\xfe\x1e\x07\xb1\xb6\x9a\xc0\xa9\xfc\xc1\xee\x5f\x20\x31\xe9\x2a\xa6\x13\x30\x52\x1d\x3d\x70\xf7\x37\x48\x2a\x48\xcd\xc6\x3f\xd8\xdd\x0b\x38\x1e\x43\x3e\x93\x4a\xe7\xdd\x75\x61\x6f\x6f\x83\xb0\x8d\x0c\x33\x17\xf4\x01\xb6\x6f\x81\xc4\xa4\xab\x48\x4f\xd2\xd9\x9c\x03\xb8\x93\x2a\x06\x10\x20\x1f\x98\x28\x6c\xdb\x02\x86\xc6\xf0\x9f\x4e\xe7\xd2\x8e\x0d\x74\xf7\x34\x48\x8c\x79\x90\xea\xea\xaf\x89\xb8\x91\x32\x52\x0c\x1e\x4d\x3e\x6e\xe6\x27\x79\x87\x09\x7f\x3f\x83\xc4\x1c\xe5\xa7\x7e\xfb\x8f\x33\xf9\x44\x3c\xc3\xc1\x64\x6c\xc4\x24\x3b\x8b\xa7\x89\x15\x44\xa7\x06\x6c\x25\xae\x00\x5d\xe2\x44\x3a\x45\xad\x9d\x11\x77\xa1\x10\xeb\x74\x4c\xf9\x75\x22\xed\xd0\x70\x01\xe7\x07\x01\x5c\x9a\xaa\xca\xb0\x6d\x7c\x7e\xc6\x41\x73\x2e\x4d\xcf\x4d\xa6\xbf\x52\xc3\xa0\x11\x78\x5c\x47\xf7\x3a\x37\x62\x25\xcf\xc5\x60\xbe\x1c\x82\x57\x4c\xa4\xf8\xdd\x83\x8e\x2d\x66\x3b\x63\x65\x7e\xb2\x37\x2f\x93\xc7\xc8\xc8\x7a\xdd\xef\x70\xb0\xcd\xc7\x1b\x63\x37\x85\x8c\xba\x17\x74\x26\xf3\xc1\xd5\x51\x85\xb8\x13\x1b\x05\xb7\xf5\x39\xd9\x24\x77\xe6\x64\x0f\x06\xe8\xd2\xfc\xcb\x3f\x02\xcc\x54\x3c\x1e\x60\x26\x33\x34\x2a\xea\x06\x01\x66\x2a\x8b\x61\xe6\x69\xcc\xb9\xb1\x9c\xc5\xe0\xcd\xcc\xc2\xda\xb2\x71\x17\xe7\xda\xfe\x79\x30\x76\x66\x00\x86\xf8\x10\x33\x85\xb4\x2b\xe6\x20\xe1\xd4\x93\x84\x2c\x71\x3e\x1a\x57\x96\x44\x1e\xc3\x4c\x30\x15\x7a\x61\x03\x1f\x39\x99\xc6\x90\xd3\xbe\x50\xce\x1d\x31\x58\x1d\xc9\xb8\xa4\x8f\x1c\x69\x62\x0e\x12\xc1\x5a\x32\x83\xb1\x06\x1f\x38\x42\xf1\xd0\x88\x96\xf6\x1a\xfa\xf5\x64\x4f\x76\xc6\xd6\xdc\x09\x21\x69\xc6\xe0\xf5\xe6\xb1\x00\x8f\xa8\xc3\xa7\x3b\x36\xd6\x6b\x9c\x66\x3a\x9b\x67\x6b\x67\x9b\xd3\x41\x13\xb2\x8d\x1a\x96\xc0\x04\x51\x37\x07\xa9\x90\xc2\x7b\x8f\xaf\x89\x2c\x56\x32\x95\x96\xf0\xe8\x28\x3e\x36\xd8\x88\x0a\x73\x9c\xae\xbc\x1e\x2f\x96\x4b\x6a\x5c\x12\x80\xbe\x22\x5f\x6f\x8d\x35\x98\x2b\x57\x06\x06\x48\x28\x60\xd2\x03\x5c\x9b\x7b\x8a\x62\x26\xcf\x53\x36\x8a\x6d\xf7\x7a\x4e\x56\xe6\x14\xde\xbc\x09\x06\xdb\xc5\x13\x48\x4d\x20\xfb\xb2\x38\x38\xb8\xcd\x44\x8b\x4b\xc2\x2b\x61\xfd\xdb\x4d\x72\xd9\x9c\x77\x25\x2c\x4b\xc3\x59\x78\x72\x96\xa8\xd0\x16\x1d\x13\xb5\x01\xbe\x28\x84\x82\x63\x62\x51\xc8\x5f\xb4\xd8\x9b\xf6\x1e\x82\x73\xd2\x4b\x62\x9f\x5d\x52\xa9\x14\x0e\x1d\xfa\x89\xd5\xdf\x3f\x80\x2d\x28\xb0\x67\x46\xa3\x6f\x2e\x88\xb8\x9f\x20\xc2\x16\x82\x60\xfd\x58\x9b\xfe\x86\x5f\x83\x43\xde\x3d\xc6\xbd\x0f\xca\xe9\x12\xb2\x6d\xf0\x4f\x6a\xd8\x14\xec\x02\xfd\xf7\xd4\xd8\x1b\x57\xb0\x45\xfe\x41\xdd\x9a\x0a\xfc\xfe\xdd\xef\x7e\xa9\xe3\x9b\x4f\x80\x76\x5d\x7a\xbf\xd8\xb7\xe8\x9f\x4f\xea\xee\x1b\xf1\x55\xa4\x5e\x2b\xc3\x5b\x3f\xe9\x77\xb3\xa5\x89\xbd\x04\x6d\x0b\x5f\xe0\x80\x08\x00\xa3\x70\xb5\xd9\xc1\x73\x1f\xdf\x3d\xbb\x44\x94\x4d\x17\x3b\x67\xeb\xb5\x97\x95\x1a\xaf\x06\x2b\x9d\xa0\x9b\x7a\x7f\x78\xf5\xb1\x25\xfc\xb7\xae\x2d\x82\x46\x04\xff\x5e\xc8\xde\x83\xcb\xf7\x10\x54\x3e\xa7\xb9\x39\x4b\xbc\x2f\xe0\x97\x78\x80\xe8\x7c\x13\xe7\xed\xeb\x90\x7f\x0e\xe4\x15\x7b\x1b\x45\x7e\xfb\xcd\xef\xe0\x4f\xc6\x53\x82\x6f\x63\x06\xdd\xf1\x31\x83\xfa\x80\xe0\xc3\xca\x17\xe5\x11\x44\xc8\x82\x3c\xaa\xe6\xf3\xd7\x29\x8e\x7f\x85\x14\xba\x4f\x30\x76\x85\x3e\x5f\x10\x4a\x71\x04\x33\xe5\x77\xf8\x57\xa0\x0d\xc1\x2b\xf2\xf1\x0f\x7a\x04\xfc\x72\x3e\x5d\x36\x11\x97\xd4\xe1\x6f\xd4\x7a\x41\xce\x28\xc4\x06\x2f\xdb\x73\x60\x46\x62\xbf\x71\x2f\x3c\xa6\xfd\x63\xfe\x05\xc8\x88\xfe\x3f\x83\x2e\xc1\x3f\x15\x06\x77\x33\xc2\xb2\x5b\xc6\x9b\xc6\x9a\xe8\x36\xea\x35\x2c\xf4\x26\x57\x44\x23\x50\x1a\x96\x7e\xb4\xeb\x59\x78\xe4\xaf\x17\x2b\x6f\x1d\x01\xa7\xec\xbc\xa6\x1a\x17\x37\x36\xb0\xe3\xb0\x14\x69\xce\x63\xcc\x39\x77\xee\x2b\x53\xf0\x86\x7c\x62\xad\x25\x66\x33\x84\x27\x25\x69\xa6\xe1\xe5\x64\x02\xc6\x61\x91\x70\xff\x2e\x9e\x6a\x41\xf1\x4b\x10\x99\x88\x15\xab\x08\xbb\xdf\x49\xc2\x0e\x05\x25\xcb\x04\xea\x60\xb9\x6a\xcc\x92\xf3\x56\xdd\x99\xae\x48\x90\x03\xdb\x82\xd7\xa9\x27\x82\x51\xed\xad\x3c\xc3\x3c\x1f\x58\xb9\x20\x93\x2e\xbe\xc1\x83\xc9\xbe\x43\xce\xc8\x62\x13\x1f\x67\xe5\xa1\x87\xf0\x2d\xaf\xf8\x4f\x1b\xd1\x7e\x3d\x5e\x16\x4a\x21\x23\xb7\xfc\xbd\x14\x7e\xf3\x7c\x69\x53\x85\xf8\x10\x17\x97\x07\xf2\x5e\x60\x19\xb7\xd4\xce\x0b\x6c\xdf\x06\xbe\x82\x90\xf4\xf7\xf7\x5c\xb9\x37\x8d\x66\x39\x1b\x78\x52\x3c\x75\xf4\x2a\xba\xb8\x9e\x9a\xc0\x53\x5e\x6c\xe1\x18\xbe\xe4\x80\xad\xcc\xbd\xc1\x07\x12\xf1\xae\x0a\xcd\x50\x26\x6c\x33\x6e\x99\x63\x41\xa4\x01\xbc\xe1\x98\x7b\x6e\xec\x2f\xff\x60\x26\x74\x01\x1c\x7d\x11\x37\x09\xeb\x5c\xf1\xac\x40\x94\x02\x64\xee\xe2\xe6\xb0\x80\x9c\x74\x05\x56\x7d\x38\x3c\x53\x89\x80\x5f\xc7\xe5\x57\x21\x4d\x43\x0a\xd2\xa0\xf0\xa4\x54\xa0\x4e\x01\xe2\xc4\xa9\x36\xf1\xfa\x3c\xc6\x31\xab\x44\x21\xff\xc8\x09\xff\x33\x2d\xf5\xc9\xd8\xa1\x65\xbc\x01\x7f\x7f\x47\xd4\x03\x1f\xdc\xf7\x6c\xdd\x1c\x78\xaf\x2c\x40\xf3\x42\x77\xe4\xcd\x78\x61\xf5\x75\x86\xc9\xa4\x96\x89\xc7\xb9\xa6\xff\x56\x71\x40\xe0\x43\x01\xb3\x8a\xac\x91\xe1\xd9\x98\xd8\x56\x48\x39\xb6\xfd\x24\x76\x7b\xf1\x78\x24\x76\x5d\x49\x28\xa9\xf8\xbd\x31\x34\xb4\xd9\xc6\x86\x6f\x89\x65\x59\xee\xc5\x11\xe9\x6f\x14\xa1\xd8\xdf\xf8\xa4\x62\x7f\xa3\x76\x0a\xe1\x86\xce\x05\x91\x08\xc5\x42\xf0\xae\xc2\xc2\x20\x95\x0d\x86\x1c\x9c\xaa\x85\xd8\x72\x72\xcd\xb5\xd5\x31\x23\x7c\xe2\x88\x31\x89\x35\x7e\xfb\xed\xcb\x49\x6f\x45\x35\x60\xa7\xee\x43\x78\x21\x4e\x1c\x63\x21\x5a\xa0\xf5\x46\xe8\x04\x6e\x90\x2b\xfe\xe1\xb3\xad\x87\x10\xc2\x26\x05\xf7\x19\x1c\xc6\x4c\xce\x52\x54\xe7\xd3\x77\xfa\x33\xdd\x2d\x48\x6c\x22\xd2\xe9\xdb\xb0\xc6\x14\x80\x89\x6f\x18\x73\x44\x73\x96\x64\x79\x5a\xef\x95\xd9\xd2\x71\x2e\xc6\xa7\x40\x6c\xde\x77\x86\x98\xb3\x73\x9e\xde\xa3\xe3\xc8\x33\x5d\xac\x56\x3c\x39\x9d\xf7\xec\x07\x21\xa0\xbf\xc1\x39\x2b\x8e\x3a\x5e\xdb\x7b\x77\x03\x8b\x58\x11\x03\x18\x7a\xab\x60\xb0\xf3\x8f\xbb\x10\xf1\x85\x61\x12\xd4\x19\x36\x4c\x68\x48\x26\xc5\xe3\x5f\x67\xb3\x71\x2e\x6e\xf0\x2a\x71\x4f\x05\xa8\xb4\x01\x0d\x1a\x64\x01\x32\xb3\xc9\x14\x8f\xf8\x72\xf1\x6a\x86\x51\xf5\x61\xfe\x85\x2d\xeb\xd7\x19\xda\xb2\x14\x24\xaf\x65\x93\xb9\x14\x57\x78\xb7\xb9\x54\xda\x80\x06\xfd\x14\x11\x07\x9e\xd1\x8e\x99\x10\xdd\xd7\xf4\xf2\x23\xbe\x1e\xc7\xc9\x65\x24\x08\xd8\x9d\x28\x30\xce\x89\x12\xe3\x3f\xf0\x72\x3f\x5c\x07\xea\x00\x9c\x2a\xfe\xc1\x2e\x6c\x91\x1b\x0b\x20\x9d\x2d\xdd\x30\x50\x24\x4e\xe1\x71\x53\xe5\x2a\xa4\x79\x55\x55\x04\xc9\x1d\x81\xdc\xf5\x04\xd4\xa8\xd2\x29\x93\x86\x90\x1b\x6c\x16\x5e\xa4\x7d\x7c\x38\xce\xbc\xe2\xe4\x1d\x84\x48\x9f\xc4\x9d\xeb\x9e\x1e\x14\xc0\x8f\xfb\xa1\x03\x55\x10\x33\xd0\xbf\x74\xa6\x1d\xd1\x3b\x3b\x86\x17\x19\xfe\xa2\x1b\xf7\x9a\x74\xcf\xc6\x66\x68\x55\x20\x57\x03\x78\x2b\xbb\x63\x13\xfc\x37\x13\xef\xee\x73\x73\x50\x39\xbb\x5c\x20\x07\x97\xe4\xa3\xdb\x70\x78\x43\x06\x85\x9f\xfc\x3a\x9d\xdd\x2f\xec\x6a\x72\xb0\x99\x05\xab\xc8\x7d\xe2\xd6\xe3\x96\x09\xaa\x71\x76\xc8\x08\xaa\x71\x69\x38\x5b\x5b\x7c\xca\xc2\x47\x6f\x91\x95\x5f\x93\x93\xf0\x43\x5e\x93\xbb\xc5\xc5\xa7\x2d\x79\x96\x57\xe6\x6c\x9b\x91\x57\xb6\xf5\xd4\x28\xc8\x7d\xc8\x3e\xc9\xab\x71\x36\xcf\x84\x54\xe3\x6c\x7a\x09\x48\x8b\x9f\x43\x1a\x10\x6d\xa4\x91\x57\x06\x3f\xe4\xf9\x94\xb9\x0f\x61\x02\xc1\xcd\x34\xf2\x3a\xd0\x3e\x18\x9f\xae\xe0\x49\x5e\x8d\x93\x07\x44\x5e\x8d\xbb\x1b\xc6\x27\x2d\x79\x96\x57\xe6\x64\x03\x11\x8e\x24\x6f\x1c\x62\x06\x86\x19\xb9\xac\x21\xa4\xf1\xbe\x34\x8a\x89\xaa\xc9\xb1\xcc\xab\x99\xc0\x12\x54\x9c\xce\xe4\x8d\x49\x56\x75\x5c\x63\xb5\x84\xbc\x24\xd8\x12\xd4\x9d\xcd\x4e\x12\xb9\xb1\xf2\x48\xc7\xea\x09\x7d\xab\x52\xbd\x99\xcc\x67\xb2\x21\x26\x6d\xcb\x99\x56\xa4\xef\x54\x2a\x9e\x4e\x32\x59\x23\xa1\x6c\x0d\xf0\x6a\xc2\xde\xaa\x54\x0f\x46\x6e\xa6\x90\x56\xb3\x0f\x58\x2d\x92\x57\x6a\x42\x67\xf3\xd9\xbc\xa2\xc5\xc0\xea\x90\xbe\x53\xa9\x38\x1e\x9f\xa4\xc7\x21\xa6\x0a\xb3\x11\x58\x35\xa1\x6f\x55\xaa\x9f\xa5\x26\x46\x52\x34\xb2\x81\x2b\xe1\x10\x0a\xcf\xc1\xed\x83\xde\xd2\x7e\x92\xf3\xf1\xff\xb8\xe1\x50\xba\x0a\x0e\xbc\xfa\x27\x76\xbc\xdd\x02\x1e\x02\x41\x8f\xb8\xbb\x35\x13\xff\xaf\xd8\x55\x2c\x69\xae\xbe\xe1\x17\xb6\x62\x6f\xa9\xbb\xe9\xc9\x9a\x04\x15\x7d\x5f\xef\xe7\x4e\x94\xfc\x7b\x72\x7d\x91\xf8\xf6\x19\xe4\xb0\x77\xc0\x51\x62\x97\x68\xa2\x04\x28\x62\x61\x9c\xcc\x30\xe8\x87\x27\x15\xaf\x58\x4d\x3c\xba\x72\x4c\xc0\x14\x4f\x40\x94\x91\x86\x23\x1f\x8a\x26\x28\x09\xaf\xfd\xef\xb1\x01\x96\x58\xc4\x64\x06\xb2\x8e\xce\x2c\x13\xb2\x11\xef\x89\xd5\x35\xb6\x4a\x71\x8d\x98\x5c\x69\xae\x5c\x30\xf2\x8b\x2e\x97\x8f\x25\x91\x2b\x2e\x90\x2b\x7e\x96\x5c\x54\x8d\x98\x5c\x19\x9e\x5c\x30\xf7\x4f\x64\xb1\x7c\x24\xb1\x54\x4e\xfa\x20\xf8\x93\xe3\x8b\xc7\x07\x50\x96\x93\x62\x01\x13\x33\xcb\x15\x13\x65\x09\xe2\x09\xca\x91\xd3\xaf\x23\x40\x92\x08\x8a\xf2\x1f\xc1\xcd\xbd\x05\x24\x07\x2d\x26\xa7\x98\x10\x92\x95\x51\x58\x3d\x26\x64\x8e\x27\xa4\x93\x79\x29\xa2\x90\x18\x92\x44\x48\x98\xbc\x89\x27\x1d\xfe\x3e\x5c\x2c\xfc\x6b\xa6\x77\xb6\x92\xa9\x1f\x93\x32\xcf\x93\x12\x65\x8e\x8a\x28\x64\x80\x23\x91\x11\xe6\x9e\x72\x7e\xb8\xa2\x72\x8a\xa3\x49\xec\xef\xb7\xa4\x98\xc1\x04\x2e\x70\xe7\x8c\xe8\x9a\xbb\x57\xd0\xdb\x38\x57\xca\x78\x54\x2d\xdd\x0b\x75\x34\x11\xa7\xa5\x89\xb4\x5f\x13\xce\xac\xd3\xcd\x61\xbc\x84\xc7\x9f\x14\xdd\x08\x16\x27\x46\xfb\x13\x3f\xc2\x89\xa0\x39\x4f\x52\x75\xe8\x64\x2d\x61\xe1\x4f\x70\x41\xd0\x54\x76\x1e\xbb\x1c\xd4\x3f\x9d\x5b\x38\x41\x9d\xc9\x2d\x8b\xfa\x67\x73\x0b\xa7\x99\xf3\x98\x65\x31\xff\x74\x5e\xd1\x7c\x71\x26\xb7\x1c\x5c\x31\xbf\x7f\x96\xb7\xe9\xcc\x05\xe7\x49\xc0\xc3\xfd\xd7\x4b\x80\x6c\xfb\x79\x02\x70\x50\xff\xf5\xfc\xef\xcf\xd6\x20\x16\xf3\x5f\xcb\xbd\x78\x72\xf1\xef\xeb\xc9\xc1\x03\x23\xdf\xa8\x19\xa7\x50\x48\xfc\x67\xc6\xf9\xcf\x8c\xf3\x0b\x66\x9c\x3f\x6b\x4c\xfe\x6b\xe6\xa0\x7f\x9f\x4d\x97\xc7\x9a\xd1\xec\xfa\xaf\x5d\x24\x08\xb5\xe6\x72\xd6\x23\x59\xf4\x5f\xcb\x79\x98\x1d\x97\x33\x1e\xc5\x96\xff\xba\xe5\x8b\x68\xe1\x81\xbd\x37\x26\xaf\x30\xff\x8a\x2b\x1e\xb1\xdf\x97\xbe\xd0\x9a\x84\x75\xbf\x97\x8a\x0e\x7d\xc8\x91\xa9\x23\x14\x54\x75\x82\x6b\x51\x83\x13\x2a\xc1\x76\x79\xac\x98\x1b\x9e\xf9\x56\x8e\x01\x14\x03\xfc\xc1\x1c\xf5\x60\x0f\x3d\x4f\x36\xab\x95\xb9\xde\xdb\xfe\xb1\x19\x27\xf5\x19\xf6\x3d\x3a\xeb\x9f\xbb\xf3\x60\x43\x0e\xc8\x78\x50\x61\x9b\x05\x5d\xb8\x98\xf7\x9b\xfc\xec\x1c\xb6\xad\x9d\xc9\xce\xe6\xbf\x10\x64\xec\x44\xcf\xe4\xc6\xe8\x24\x9f\x07\xa1\x68\x3f\xf0\x4c\xc1\x02\x01\x62\x4c\x6b\x7a\x5b\x2e\x9d\xb3\x30\x78\xb6\x45\x74\x81\x6e\x8c\xee\x05\x0e\x29\x71\xa6\x36\x7c\x23\x46\x18\x95\xa0\x91\x65\x4d\xc4\xb9\xea\x8b\x43\xd3\xdd\x17\xcb\x3b\x95\x41\xec\x92\x75\xcf\x8b\xd0\xd7\x81\xc0\x8d\xeb\xb1\x50\xf2\xc1\xae\x5c\x06\x02\xdb\x9b\xcb\xdf\xd6\x1f\xc3\x32\x41\xe3\xe7\x44\xd0\xef\xf4\x91\x0d\x3f\x9d\x12\x53\x11\x9b\xe1\x29\xc8\x4d\xc6\x01\x76\x58\xfa\xa7\x8f\x84\x5b\xb9\x54\xb0\xef\x96\x23\xf0\x61\x3f\xdf\xec\xc8\xb1\xc9\xcf\xbb\xc9\x3b\x35\xc9\x12\x34\x3c\x8a\xbc\xf3\x6d\x42\x68\xf1\x3e\x48\x96\x63\xb8\x3b\x11\x9e\xad\x94\x5d\x12\x80\x2d\x15\x71\x37\x09\x91\xb9\x52\xc5\xad\xe3\xd5\x75\xfb\x37\xf9\x95\x04\x31\xcf\x08\x84\x12\x0a\xdb\xf4\xcb\xa2\xc2\xcd\xed\x9f\xbe\xfa\x3a\xf5\xd0\xeb\x79\xe0\xe9\x08\x54\xcb\x39\x67\x37\xde\x99\xc6\xeb\x15\x7c\xe6\x77\x24\x75\x48\x43\xa8\x19\xe8\xdc\xa6\xfd\xa9\xda\x56\x2e\x3c\x73\xb4\x91\x7f\x51\x6d\xd0\x72\x39\xcf\x7e\x8a\xf7\x42\x49\x2a\x8b\xde\x9e\x3e\x2a\x7e\xd3\xaf\xb4\x8a\xb0\xfd\xaf\x2e\x2e\xfc\x98\xbb\x85\x57\x73\x6c\x76\x2b\xdc\x7c\x4b\xec\x2c\x86\xc0\x06\x69\x7c\xdc\x00\x25\x06\x35\xc3\x00\x9d\x4d\x8d\x5e\xff\x54\xbd\x8f\xbb\x5c\x1a\x5b\x1b\x7e\x42\x76\xa9\x30\x22\x53\x00\x61\xe5\x36\x9b\x58\x11\xc6\x7e\xc6\x14\x03\x91\x4c\x4c\x57\xee\x3c\x1f\xbb\x72\x52\xff\x26\xf1\xf9\x29\x85\x4a\xa0\x99\x4e\x3a\x05\xd8\xd7\x5e\x2f\x39\x36\x27\x99\x1b\x62\x02\xc4\xd7\x8b\x15\xfc\x62\x2d\xd6\x66\x6f\x3b\x66\x9c\x93\xb2\x53\x74\xd7\xc0\x17\x6f\x8a\xe7\xe0\x5f\x4d\x4d\xd8\x7a\xd7\x09\xfb\x07\xef\xa5\x5c\x98\xe0\xa4\x1b\x52\xcc\x5b\x46\x36\x27\x09\x97\x93\x93\xc6\x6f\x7b\xf2\xf4\x03\xe9\x7e\x89\xd2\xd1\xf0\x00\xfc\x24\xbc\x28\x11\x0d\x17\xc2\x4f\xda\x67\x9a\x9c\x13\xd1\xf0\x2d\x73\xde\x15\xbd\x64\x87\x72\xe0\xef\x40\x80\xdb\x6b\xb8\x34\xb8\x17\xa6\x65\xc4\x5c\xb2\x9d\xeb\x47\x3a\x46\x86\xbf\xc1\xd0\x77\x3d\xe8\x0a\x78\x07\x6e\x45\x7e\x18\x8e\x86\xf1\x4f\xdd\x03\xc4\xc0\xde\x3a\x37\x35\x8b\xd3\x37\x72\x8e\xfc\x50\x87\x91\x00\x0f\x3f\x78\x47\xb6\xd8\x5a\xdc\xab\xaa\xa9\x4b\xda\x83\x9b\x9f\xb9\x4d\xe8\x8c\x3d\xd9\xc6\x4c\xdc\x95\x41\xaf\x84\xb7\xd1\x71\x58\x82\x47\xae\x94\x0e\xd3\x62\x47\x9b\x58\x32\x4c\x9e\x4a\xcf\x1b\x47\xff\x24\x82\x8c\xcc\x04\xaa\x24\x77\x66\x78\x1b\x73\x27\x5a\x89\x2a\xdc\x32\xa9\x34\xc5\x3a\xe1\x9f\x62\xe1\x79\x4f\x5c\xc8\x6b\xe0\x54\xf8\x69\x95\xae\xfc\xab\xee\xb0\x93\xd0\xb8\xdb\x96\x26\x4f\x71\xfa\x3e\x04\xcc\xe9\xec\xa5\x7b\x10\xce\xc2\xfc\xfa\xed\xc3\x0a\xd4\x7e\xf2\x63\x0e\x79\xaa\x0d\xae\x43\x12\x4e\x5d\x7c\x40\x8f\xbd\x71\x25\x38\x99\x0a\xda\x03\xb9\x4b\x9e\xd3\x44\xdf\x46\xe0\xa8\xb8\x38\x45\x2a\x9f\xa5\x83\x8d\x9d\xe8\x25\x78\xe1\xe7\x39\xf7\x4f\x5b\xc9\xf2\x56\x8b\xab\x42\xa2\x8b\xe4\xe1\x4b\x1f\x55\x22\xb7\x91\x6f\x1d\x5d\xe2\x8b\xe6\x27\x52\x90\xe8\x93\xe3\x1e\x72\x54\x0a\x8b\x47\xe3\x64\x30\x2a\x71\xfa\xf8\xbc\x7a\xe7\x16\xc8\x50\x9c\x32\x53\x32\xea\x52\x75\x43\xd4\x9d\xc3\xf6\xb6\x58\xe7\x02\xd7\x95\xea\x88\xac\xc4\xd8\x78\xc4\x91\x37\x4f\x18\xab\xe0\xfc\xbb\x1b\xae\x71\x4f\x1a\x24\xbf\x51\x23\x2b\x58\x23\xc9\xa0\x34\x60\xf4\xd1\x6b\x09\x27\xe8\x34\xa4\x58\x85\xf1\xce\x0c\x69\x69\xc9\xb9\x7d\xe6\x20\x86\xac\x57\x78\xf3\x04\xc1\x2e\x08\xc0\x38\xf7\x4d\xd0\x4b\x79\x61\x44\xa8\x34\x3d\xbf\xfd\xc6\x61\x05\x34\x34\xb6\xb6\x81\x56\xb4\x83\x89\x93\xf5\x19\xd9\x09\x23\x84\x09\xe7\x84\x90\xf4\xa4\x24\x74\x1c\x9d\x93\x28\xb4\x6b\x49\x96\x28\xd5\xe4\x38\x89\x31\xd1\x29\x21\x19\x3a\x76\xc8\x88\xc4\x37\x67\xe9\x78\xda\x08\x6d\x6d\xce\x72\x16\xb6\x60\xa4\x88\xf9\x5d\x74\x1b\x92\x84\x73\xe3\x32\xa4\x02\xe9\xf1\xb1\x04\xf7\xdc\xf3\x97\x4f\x94\xc9\xf8\xc5\x76\xbd\x86\x83\xc5\x82\xc3\x61\x61\x22\x86\x85\xae\x4e\x8c\x80\xfc\x74\x4e\x7c\x40\xbd\x27\x63\x03\xba\xd0\x8f\x0b\xe0\xdd\x32\xb6\x7b\x65\xb0\xe3\x59\x81\x6e\xdb\x1c\xf6\xee\x0d\x76\xa4\xf3\x8e\x47\x07\x3f\x04\x47\xd1\xc4\xe6\x3d\x8a\xf9\xf9\x53\x72\x3e\x61\xb2\xf2\x9d\x36\x04\x40\x2d\x6f\x07\x05\xaa\xeb\xfe\x0e\xb0\x78\x49\x9b\x07\x7e\xcb\xbb\x4a\xec\x57\x26\x43\xc1\x6b\x91\xae\xc9\xe3\x80\x21\xcb\xf2\x18\xa8\x97\x3c\x48\x9c\x13\x0d\x73\xdb\x31\xff\xc4\x77\x44\x03\x35\x81\x53\xa5\x2b\x27\x30\xb8\x02\x8b\xcd\x56\x7d\x76\xfa\x1f\xe7\xae\x26\x26\xe1\x0f\x5b\x83\x3c\xa3\x0f\xa7\x49\xb8\x6b\xc2\xa1\xf9\x77\xd8\xc1\x10\x2d\xfb\x0e\x8f\x85\x7f\x8d\x62\xb9\xed\x44\xdf\x13\x80\x3a\x80\xa3\x06\xe4\xee\x06\x4e\x2c\x47\xdf\x66\xc0\x9a\x2c\x2c\x29\x86\x2c\x7b\x8f\x9b\xf0\x06\xf9\x44\xbf\xf4\x72\x24\xc9\xe5\xec\x12\x26\xf9\xd7\x25\x25\x59\xf1\x54\xf3\xd4\x70\x51\xc2\xb2\xd0\xe0\x48\xd7\x78\x6e\x15\x59\x1a\x15\x8e\x25\xa5\xbf\xc2\xe0\x65\x4c\x6e\x94\xdf\x7c\x55\x03\xbf\x09\x97\x0e\xf8\x8d\x27\xca\x00\x94\x25\xfd\x6b\x94\x9d\x97\x1c\x32\xb4\xb7\x2d\x8e\x34\x78\x35\x0b\xd2\xa2\xf0\x41\x23\xd8\x4c\x26\xd1\x09\xc3\x2a\xf7\x83\x48\x96\xe1\x34\x24\xcd\x09\x0b\x19\xb2\x0c\xcf\x22\x7c\x29\x47\x09\xb7\xa1\xfe\x8c\x34\x24\x21\x15\xf1\x72\x8c\x70\x35\x4d\x21\x91\x88\x14\x4f\xf8\x7d\x8c\x69\x58\xa5\x6c\x20\x32\xac\x30\x97\x91\xdb\x24\xd7\x33\xe3\x6d\xb3\x03\xef\xfe\xf4\xbc\x0c\x0a\xd5\x2b\xa4\xb4\xe0\x53\x71\xe3\x1d\x4a\x16\x26\x65\x05\x1f\xf9\x5f\x92\x95\x22\xa4\x6a\x85\x94\x13\x52\xc9\x65\xe9\x24\x08\x9d\x71\x96\x61\xc8\x99\x51\x7d\x03\xc5\x8e\x58\x35\x21\x96\x9d\xe3\xff\xbe\x0c\x0f\x3c\x3f\xcd\x95\xf4\xf6\x6f\xd8\x07\x58\x94\xd8\xd1\xf9\xdb\x79\xe0\x98\x38\x07\x2b\xc4\xc6\x79\xc4\xe2\x31\x9c\xaa\x80\xd8\xbf\xd4\xdf\x0a\x4c\x88\xdb\x45\x39\x98\x86\xfd\xeb\xbb\x5a\xf1\xd0\x90\xf9\x2e\xa4\xc0\x86\xbf\x19\x48\xe6\x22\x52\x5a\xe9\x29\x96\x73\x2c\x34\xf2\xde\x2e\x0e\xcb\x49\x09\xcb\x5c\x6f\x31\x34\x7f\x37\x4b\x87\xf6\x7b\xf0\x90\x84\xcc\xda\xc2\x6c\xc9\x62\xf6\x7b\xf9\xc1\x0f\x4a\xc8\x2e\x8e\x15\x15\x5b\x32\xe1\xef\x75\x10\x11\x20\xd2\xd7\xfb\x59\xfa\x7c\xb2\xca\x01\x58\x40\xc8\xf1\x18\xc3\x69\xe1\x17\x9c\x49\xc8\x39\xfe\x53\x38\x39\x07\x0e\x91\x83\x46\x0d\xde\xe0\xce\x53\xe1\x20\xac\xc7\x53\xfe\x9f\x62\x2e\x0e\xa0\x2f\xd5\xa2\xe9\xe2\x6d\x31\xa5\x48\x8b\x33\xcf\x10\x5f\xbd\xd9\x58\x2f\x21\x23\x2b\xfa\xb0\x89\x05\xce\xf4\xfa\x03\xf9\xc9\x93\x52\x1e\x5e\x15\x2a\xab\x14\x3f\xe8\x4f\x61\x14\x5d\xaf\xb1\x79\x2d\xc3\x4a\x1c\xde\xfc\x4a\x74\xa8\x61\x1d\x33\x1c\x79\xa8\x2c\x37\xb8\xa8\xbc\xac\x36\x02\x02\x41\x3c\x84\x27\x9d\xe3\x53\x64\x60\xe5\x7e\xdf\x67\x60\x7f\xd1\x54\xca\x2e\xd8\xa1\x84\x4b\x36\x50\x6c\xe9\xf7\x8c\x04\xb5\xf5\xd2\x31\xfa\x04\xfe\x05\x49\x8d\xf8\xae\xc3\x54\x26\x5f\x14\x0a\xc0\x42\xc2\x1b\x1f\x10\x88\xcb\x0a\x82\x7f\x9e\xc2\xf7\xf9\x39\x3b\x1c\x93\x44\x1c\xc7\x11\xc8\xe6\x47\xf7\x10\xf7\x8a\x11\xe8\xcf\xcc\x15\x8e\x55\xa2\xd6\x6c\xa1\x3b\x5c\x7d\xc8\xdb\xeb\x37\x63\x79\x70\xef\x1c\xf3\xd1\x63\x0c\xc0\xe7\x2f\x5b\xc7\x80\x9f\x05\xf9\x51\xa7\x77\x85\x18\xfa\xa6\x1e\xdc\xeb\x70\xd8\x6e\xcd\xdd\x04\x79\x6a\xdc\x34\xb1\x18\xab\xe8\xb3\xbf\x4c\x16\x67\x5f\xc5\xd7\x65\xf1\x2f\x46\x67\x44\xe3\x3a\xa5\x94\x44\xc8\xa2\xaa\x09\xf3\xcf\xf0\xfe\xc1\xe1\x24\x3a\xe1\x76\xe4\x3f\xc3\x1b\x09\x87\x23\x56\x3e\x82\x1d\xa9\x34\x34\xf6\xd5\x41\x46\x94\xd9\x6b\xc2\xc9\xeb\x46\xd3\x87\xed\x14\xde\x08\x01\xd4\x27\xad\x5c\xd8\xd7\x02\x38\xe4\x43\xdb\x3d\x20\x75\x11\xde\x56\x0c\xb0\x20\x97\x31\xd3\x12\xde\xf2\x95\xb4\xb9\x3c\x87\xce\x65\x3f\xb5\x63\x3f\xe0\x13\x3b\x05\xe6\x20\x34\xfd\x00\x0a\x69\x2c\x03\x5a\x97\xa2\x02\x81\x79\xc3\xad\x3c\x96\xf0\x8d\x4b\x01\x63\xf9\x93\x5d\x65\xa7\xe7\x8c\x10\x6a\x4c\x57\x73\xab\xbc\x15\xf4\x3a\x3f\x3d\xa1\xa4\x32\x5a\x6f\xc3\x04\x24\x55\xd8\x9d\x34\xae\x13\x79\x6f\xc3\x1b\xb7\x92\x40\x7f\xc2\xc9\x93\x7b\xbe\x14\x32\x4d\x93\x3b\x27\xfc\x4f\xdc\x28\xe3\x14\xd7\xc0\x93\x25\x1c\xe1\x18\x8d\xe4\xd2\xfa\x64\xaf\x6b\x74\x32\x4e\x71\xc9\x51\x45\x2a\xb5\xf2\xa9\x79\xd5\x3a\x99\xe9\x50\xb5\x6e\xaa\x29\x2e\x41\xba\x4c\xa5\x62\x01\xbd\x4f\xf6\x76\x47\x94\x69\x8a\x4b\x8f\x2c\x51\xa9\x95\x4b\xeb\x93\x73\xe1\xa3\x93\x60\x8a\x5f\x2b\x55\xa6\x54\x2f\x9f\xde\x27\x7b\x13\x24\xcc\x30\xc5\x25\x47\x14\xa8\xd4\xc9\xa3\xf4\xc9\x5e\x0d\x89\xa3\xa0\x34\x53\x5c\xc2\xaa\x25\x3c\x7f\x26\xf0\x9a\x33\xc6\x94\xa9\xd3\xcd\x2e\xc5\xa5\x1d\xa5\x4c\x52\xb3\x93\xe7\x8e\x08\x4c\xc8\xaf\x2e\x8c\x6d\x25\x5d\xd8\xa4\xb3\x3b\x88\x8a\x6d\xa8\xc5\x24\x86\x06\x2a\xc7\x2d\x87\xeb\x09\x3b\x9f\xf4\x1d\x34\x75\xf7\xdb\xbf\x16\xd6\xc7\x88\x51\x42\xba\xd7\xc0\xf2\x00\x1d\x7b\x87\xf9\x4b\xc9\x4c\xe6\xd2\xfb\xe3\x2f\x28\x7b\x88\x62\xab\x26\x00\x51\xd1\x46\x39\x75\x7f\x20\xa4\x27\x79\x5a\x0e\x89\xc1\x13\xc1\x44\x62\x48\x6e\x02\x93\xe6\x64\x92\xa6\xba\x40\x66\x0b\x85\x40\x91\x78\x0a\xb1\x8e\xb3\x59\x3e\x93\x18\x93\x4c\x89\xcd\xa4\x00\x24\x12\x43\x52\xc3\x09\xd8\x31\xa7\x54\xaf\xc9\x2c\xa8\x10\x28\x1a\x4b\x72\x9b\x3a\x99\x4e\xb2\xb4\x2a\x09\x8d\x2b\x1f\x22\x12\x3b\x32\x73\x3b\x9b\x65\x0b\x19\x93\xe4\x45\x6c\x51\x05\x20\x91\xb8\xe1\x52\xf7\xd8\xc9\x4e\x67\x8c\xb5\x90\x99\x5a\x21\x50\x24\x96\x04\x35\x60\x1f\x76\x92\x8e\x91\x46\x27\x2e\x64\xae\xe4\xa5\x14\x48\xc4\x14\x42\x50\x28\x11\x86\xe4\xde\x46\x7d\x2f\x32\xa3\x09\x52\x3e\xb5\x8c\x2a\xe6\x4d\x93\x41\x2e\x22\xbc\x5f\xac\x4f\xa1\xf2\x0b\x81\x44\xf2\x23\x04\x85\x12\xb9\xfc\x49\x82\x49\xb1\xf4\x32\x9a\x72\xe9\x9d\xbd\x70\x7c\xbd\x22\x8b\xe4\x9c\xa6\x48\x82\x61\xed\x29\x86\x52\x6c\x10\x86\x6f\x3a\x9c\x96\x31\xcf\x6f\x92\x6b\xe1\x2a\x80\xe2\x2a\x12\x22\x93\xde\x49\x03\xa7\x90\x28\x90\x43\x3a\x42\xe0\xc4\xeb\x0e\x71\x0b\x45\x68\x1b\xbf\xd9\x9d\x5d\x90\x5c\x79\xa8\x22\x79\x2b\x65\x48\x82\x61\x6d\x25\x86\x52\xec\x0c\x86\x6f\xaa\x31\xa4\xcc\xf3\x9b\x24\x50\x17\x74\x26\x8c\xdf\xc7\x07\xf5\x26\xc9\x12\xe4\x42\xb5\x47\x04\xa4\xd8\xee\x34\xcf\xf4\x12\x85\x84\xf1\xb0\xe6\x30\x26\x93\xcd\x6e\xea\x5d\xbd\xe4\x3f\xc5\x82\x5f\xa9\x8f\x79\x9c\xc5\x7b\x01\x56\xb0\xfc\x82\xef\x88\x15\x62\x80\x18\x6b\xb1\x5f\x9a\x34\x1f\xe8\x25\xef\x0b\x06\x0d\x13\x7c\x8a\x25\x0f\x5a\xfd\x82\xcd\x6f\xd2\x53\xe7\x61\x02\xf9\x27\xde\xb9\x92\xfd\x93\xf9\x94\xe9\x7f\xe4\xf7\x41\x1d\xc9\xd0\x79\x95\xe9\x37\x49\x05\xe4\xad\x0e\x22\x74\x01\x0e\xfb\xb5\xc9\xfd\x88\xca\xf4\xb2\x1a\xbd\xd0\xa3\x86\x92\x26\x8b\x5d\x4f\x77\x9b\xed\x74\x73\x5c\x07\x2b\x63\x21\x30\xa1\x87\x82\xe8\xe5\x5e\xf7\x4c\x2f\xbe\x44\x8b\x1d\x9a\x11\x1c\x52\xf3\x15\x81\xb3\xa1\x83\xb9\x65\xda\xdf\xc2\x71\x29\x3b\x8a\xab\x02\x2e\x58\x6d\xe5\x5c\x6c\xed\xec\x36\x21\x2e\xaf\x76\xd6\xf9\x89\x47\xb2\xfd\xaf\x57\xe6\xfa\x10\x73\x77\x72\x38\xc3\x4d\xb0\x41\x21\x0c\xef\x96\xea\x13\x4e\xb4\x1f\x6c\x4a\x8d\x31\xed\x88\xf8\xdb\x6d\x80\xf1\x32\x7f\x4f\xe4\xe3\x53\xd3\xa2\x2f\xe2\xa6\x0a\x45\x05\xb4\x7e\x41\x1b\x89\x3e\x53\xd2\x4a\x43\x9f\x57\x62\x14\x40\xa2\xa9\xee\x86\x24\x15\x85\x55\x06\x25\x9a\x14\xc7\xa2\x5b\x56\xd8\x6e\x05\x49\xb3\x15\x04\xad\x56\x08\x1a\xcd\x19\xd5\x98\x19\x77\x8f\x8d\x79\xf7\xd2\x33\x00\x97\xbc\x97\xf8\x3c\x20\xba\x0e\x9b\xba\x4b\x9b\x48\x98\x0e\xf7\x13\x24\xd1\x39\x7a\xea\x26\x1b\xf1\x75\x2a\xde\xf9\x7a\x09\x2b\xf8\x04\xc3\x82\x39\x8a\xcf\x1a\x41\xff\x5e\x1f\x71\x96\x0e\x6c\x6f\xb4\xea\xa6\x08\xde\x51\x0f\xbf\x45\x02\x4b\x20\xde\x24\x16\x0e\xad\xd8\x1c\xcc\x39\x77\x1a\xe5\x96\x85\xa3\x37\x66\x84\x57\x85\x4f\x81\x2c\x20\x99\x12\x86\x9e\x82\x9c\x0c\x0c\x7e\x9e\x67\x85\x6a\x98\xd3\x8b\xaa\xf8\xf8\x90\x0b\xd3\x6c\xaf\xfd\x82\xdd\x17\x3c\xe0\x50\x7a\x18\x91\x4f\x6a\x37\x62\x44\x6f\xc3\xad\x4c\xe0\x6d\x90\xa5\x9c\x94\x3d\xce\xbd\x4b\xe4\xc0\xa6\xde\xc5\x18\xc3\xe0\xdf\x39\xe0\xaf\x65\x88\xdd\x32\x6c\x35\xf6\xff\x72\x7d\xb2\x09\xf9\x49\x5f\xf3\x70\x7f\xd8\xbb\xc9\xf7\xc3\x6e\xf9\xfb\x5f\x60\x46\x9a\xef\xc6\x76\xbb\x04\xf3\x1f\x54\xfc\x9b\xf7\x2b\x84\xb1\xdf\xcf\x7e\x4c\xe6\xc6\xce\x36\xf7\x7f\x3f\xec\x67\x57\xf9\x1f\x70\x56\xcc\xa6\x2f\x35\xad\xac\x81\x9f\xa6\x56\x07\x7f\x1f\xb5\xe3\x63\xa2\xf5\xd6\xb2\xac\x17\x3d\x03\x5f\x17\xf3\xf0\xef\x61\xb5\xbd\x1f\x3e\x6b\x0f\xb3\xfb\xfa\x1d\x78\xd4\x6b\xf0\x65\xf9\x7d\x3d\x7c\x6e\x1f\xd1\xaf\xf0\xaf\x81\x05\xff\xae\x8f\x92\xef\x99\xd1\xee\xf4\x92\xad\xc1\xe7\x0a\x2a\x3f\x55\xe7\xcb\xe1\xe0\xf1\x26\x5e\x9f\x43\xd4\xe2\x3d\x7c\x59\x1a\x6d\x8c\xea\xd3\x5c\xdb\xbe\xea\x19\x08\xb5\x86\x2f\xb5\x57\xa3\x9a\x88\x9b\x5a\xe3\xa0\xe9\x90\xa1\xbb\x3e\x7c\x59\xad\xbe\xbf\x0d\x93\x65\xed\x45\xd3\x07\x10\x7f\x87\x40\x33\x80\xa7\x39\xc0\xb4\xb4\x0a\xac\x6a\x87\xaa\xb2\xc6\xab\xca\x7e\x34\x2b\x26\xd6\xf1\x34\x14\x6b\x02\xf9\x7d\xa8\xe9\x6f\x93\x54\x07\xca\x87\xd8\xad\x22\xd1\xa0\xbc\xa0\x8e\x11\x00\x00\x45\x5a\xff\xa8\x8f\x20\x9d\xf2\x44\x7f\xd4\x2a\x2b\x08\x52\xe8\x80\xd2\x7a\x47\xe3\xfc\xe8\x65\xde\x5b\x4d\x87\x82\x1d\x93\x56\xcd\xba\xb9\x28\xdd\xa4\x35\xd0\x08\x45\xbf\x00\xff\xb1\xdc\x7f\x9d\x52\xc8\x97\x8e\xf8\x43\x70\x15\xd8\xa4\x25\x04\x72\x87\x40\x11\x95\xb2\x56\x7f\x28\x19\x37\x37\xa9\x9b\x1b\x47\x0e\xf8\x3c\x72\x9f\xf5\x9b\x8b\xd6\xc3\xdd\x51\x2b\xb9\xbd\x81\xfd\x80\xe7\xd9\xcd\x8d\xa6\x81\xae\x24\x44\x01\xb2\x97\x26\x19\xf7\x9d\x4e\x73\xd7\xfe\x78\xd5\x7d\xfc\xe0\x07\xf2\x9b\xba\xef\xb8\xef\x3a\x5a\x4f\x2b\xbf\x6a\xfb\x63\x05\xf4\x57\x0b\xd2\x8b\x3f\x1c\xcb\xc9\xca\xc7\xf0\xb9\x32\x8f\xeb\x15\x6d\x52\x6d\x1c\x87\x6f\x5a\x6f\x98\x28\x5b\x06\x10\xd1\xaa\xe9\x9d\x61\x55\xef\x4c\xea\xfa\x50\xab\x26\x8f\x93\xea\xec\x38\xd1\xb5\xce\xa4\x5c\x9c\xe5\xeb\xba\x06\x7f\x9f\xde\xe8\xd6\xd0\xa3\xaf\x41\xfa\xdb\x8e\x4f\xbf\xdb\x2e\x4d\x92\xad\x8f\xfa\x4c\xeb\x0e\x9f\x2a\x5a\x5e\xd7\x17\xad\x45\xe3\x34\x4c\x80\x0e\xac\xea\x47\x0b\xa8\xc2\xb0\x6a\x69\xfd\xba\x7e\x1c\x56\x06\xc7\x32\x60\x18\xbc\xdf\x68\x95\xa2\x36\x41\x65\xa0\xee\x40\x5e\x40\xff\xe7\x60\xb8\xb4\x13\xf9\x87\x87\x87\xbe\x56\x84\xfa\x00\x7f\x5a\x37\x85\xcd\x45\x1a\xfd\xfa\x71\x93\x7c\xc9\xb9\xbd\x85\xe4\x74\x1a\xa1\x48\xb4\xaf\x06\xfb\xdb\x6d\x53\xa7\x99\x52\x6c\x3f\xa0\x9f\x2a\xf3\xa6\xe3\xc2\x03\x7d\xdf\x1f\xfd\xb7\x77\x50\x1f\x6a\x96\x5e\xd4\xaa\x1d\x9f\x5f\x1d\x08\x16\xd0\xad\xf3\xe8\xa3\x9f\x92\x55\x3c\x04\x70\x65\xa8\x14\x1a\x8e\x57\xb2\x74\xec\xb9\x05\xcb\x17\xc1\x73\x07\x3c\xeb\xf7\xc1\x73\x1f\x8e\xaf\x56\xf0\x3c\x84\x7c\x60\xf4\x37\x5a\x5b\xd3\x0d\x48\x47\xeb\x74\x1a\x41\x7d\xde\xb3\x57\x9f\xf7\xec\xd5\xe7\x3d\x7b\xf5\x79\xcf\x5e\x7d\xde\xf3\x10\xc2\xc7\x83\x67\xb7\xbe\x5a\x5d\x1b\x76\xf4\xb8\x56\x7d\xd5\xc6\x96\xbe\xd6\x2a\x43\x6d\xd4\xd1\x4f\x5a\xad\xa5\x19\x1d\xfd\x4d\xab\xa6\x61\x0b\xbd\x6b\xc5\x34\xc0\x04\xef\xab\x65\x6d\xaa\xe9\x5b\xf8\x7e\x94\x6a\xcc\xa7\xd5\xe5\x61\x74\xa4\xde\x1f\xf5\x9e\x56\xed\xc3\x7f\x13\x5a\xf5\x08\xe9\x9f\x98\x7a\xca\x43\x6d\x7c\xd4\x0f\x5a\xad\x03\xe8\x83\x67\x00\x0f\xde\x2f\x03\xb8\x3e\x34\x29\x96\x56\xad\x6b\x66\x07\xfc\x0b\xf4\x77\x78\x04\xfc\x94\xe3\x10\x0f\xf1\xd5\xb4\xdc\x26\x52\xf8\xf9\xcb\x37\xe8\x7a\x1a\xfb\xdf\x7f\xdb\xef\x0e\xe6\xfe\xb4\x35\x7f\xfb\x76\xc9\x37\xf5\x8e\x73\xb5\x99\x09\x2c\xfd\x34\x5e\xa8\x76\x5f\x0b\xfd\xa7\x32\x34\xea\xbd\x23\x6c\x49\xa4\x55\x60\xbc\x68\x5c\x23\xe7\xfd\xe8\xa5\xee\xeb\x10\x8d\x81\x02\xfc\xab\x17\x87\xda\xb3\xaf\x6c\x37\x6f\x87\x72\xe1\xb1\xf9\x01\x35\xb1\xfe\xea\xe8\x86\x06\x75\xbc\x5e\x3f\x9a\x9d\x61\x32\x31\x47\x63\x6d\x03\x89\xc3\xe1\xab\x69\x8f\x5a\x21\x9f\xb6\xb6\xde\xcc\x51\x8c\x23\xfa\xce\xcc\x81\x74\x14\xcd\x14\x10\xbe\x89\x48\xb5\x61\x51\x69\x8c\x66\x0e\x03\x96\xc1\xa2\x77\x84\x84\xea\x6b\x68\x77\x23\xcd\x9c\x6e\xc6\xcf\x5d\x38\x5c\x4b\x6d\xc4\xae\xe5\xb0\xb2\x4a\x6b\xe5\x55\x62\x6e\xa2\xe9\xaa\xdd\xc2\x8b\x40\x7f\x69\x68\xa6\x80\xf4\x12\xc8\xcc\xc0\x46\xd1\x1f\x1e\xe0\xcc\x91\x39\x8e\x53\x6d\x24\x24\xaa\xa4\xe8\x31\x09\x49\x94\xc1\x50\x04\xf0\x9d\xb2\xae\xfb\x5a\x04\x5e\x59\xe0\x4f\x69\x97\xae\x69\xcd\x74\xf5\xf8\x90\xae\x6a\x1d\xb3\x68\x69\xa3\xfe\xcd\x45\x73\xf1\x9e\x06\xa3\x79\xf9\x78\x93\x3e\x34\x4b\x9a\xd9\x34\x6e\x16\xfd\x8b\x5a\xa7\x52\x83\xd5\xd6\x5e\x1f\x9c\x7f\xd3\x5d\xf4\xaf\xf6\x3a\x85\x7c\x34\x80\x35\xd0\x8f\xa0\x8e\x63\xfc\xa1\xdc\xed\x8c\x6a\x6b\xb7\x2e\xaf\xce\x54\xff\x38\x7d\xac\x24\x5a\x2f\x7a\xa2\xfb\xa2\x97\xef\x9f\x9f\xaa\xad\x72\x57\x47\xdc\x0e\x5f\xa1\xb9\x00\x2c\x94\xcb\xfa\x71\xd3\x7e\xda\xa6\xf2\x4b\x2d\xe7\xfd\xc9\xc1\x3f\xa9\x51\x2a\x35\x7e\x1f\x34\x5f\xeb\xc9\xce\x4b\x3a\x5d\x2f\xbc\x3f\xa6\x2a\xda\xe0\xfe\x25\x53\x6c\xbf\xd6\x0f\x9d\x45\xfa\xa2\xf1\xb2\x31\x1f\x16\xf5\x64\x75\x91\x1e\xd6\x17\x37\x87\xbe\x3e\x3c\x54\x17\x43\xb3\xb6\xa8\x2f\x6a\xf3\xf4\x0a\xbc\x37\x9a\xf3\x4d\xb2\xfe\x72\x7c\xc9\x55\x1e\x26\xa0\xdc\xbc\x5f\x0c\x2f\x9a\xaf\x9a\x75\x7f\x51\x48\x36\x33\xf3\x41\xb3\x90\xe9\x54\x16\x88\x66\xf6\xfe\x25\x7d\xf1\xf0\x32\x2a\x36\x11\xfd\x61\xb6\x56\x04\x38\x17\xef\x9d\xca\x4b\x7a\xd1\x9e\x6f\x0e\x90\x5e\x63\x9e\x36\xeb\xc5\x07\x1b\xbd\x5f\xd4\x4d\x50\x1f\xac\xe3\x50\x7b\x19\x42\x5e\xb2\x8d\x97\xf4\xa1\x53\xd4\x72\xe9\xa5\xfe\x08\xfe\x0c\x40\x7b\x3a\x3a\xfc\xff\xcf\x99\x1c\x3c\x97\x66\xc3\xfb\xc6\x68\x56\xfa\xf8\x00\x33\xa0\xed\xce\x4a\xa5\x87\x1b\xe3\x01\xcd\x54\xf8\x4c\x06\x9c\x21\x7d\x6c\xb9\x2c\x5b\x84\xa0\x7a\xfa\xe1\xc6\xd2\xb0\x59\x6d\x7f\x64\xe4\x74\x80\x2d\xfa\x4d\xd9\x83\xef\x39\xce\x16\xb4\xdf\x01\xdc\x7f\x66\xa2\xff\x13\x67\x22\x38\xc7\xfc\xf6\x4d\x90\x37\x08\x4b\x13\xf4\x67\xac\x5b\xf2\xe3\x1f\x62\xfb\x68\x70\xbd\x31\x88\x0f\x61\xd0\x74\xc5\xec\xd0\xfe\x21\x29\x0a\x15\x4b\xb0\x1b\x55\x5d\x50\x37\x07\xaf\x8a\xbc\x5e\xba\x5e\x7f\x4f\xfa\xff\x9a\xc5\xa7\x86\x7b\xf7\xfd\xdc\x9c\xbc\x8e\x37\xef\x92\x84\x0a\xe4\xa9\x80\x60\xb7\x65\x22\x47\x9e\x7f\xde\xd1\xa7\x8a\x33\xa0\x1c\x3b\x85\x00\xc1\xbf\xd6\xaa\x9b\xc3\x1e\x56\xc0\x1e\xe2\xc7\x0e\xf8\x78\x02\xc5\x16\xeb\xed\x61\xff\xdf\xd0\xd9\xf9\xbb\xf7\xee\x1f\x97\x22\x08\xb8\x54\xb6\xf9\x47\x48\x42\x63\x7f\x3d\x1b\x3f\xb3\x12\xf0\xe4\x25\x01\xb9\x4a\x90\x8c\x5c\x83\xbf\xc8\x8a\xc9\x0d\x9f\xee\x81\x01\xf2\x78\x28\x95\x92\x00\x65\x5d\xf2\xab\xfa\x83\x43\x8d\x93\x46\x1b\x67\x00\x57\x17\x12\x53\x9c\xcc\x99\x1c\x10\x58\x2f\xe2\x0a\x40\x1d\xcc\xf4\x53\x28\xb1\x8b\x8d\x6c\x92\x35\xe9\x8a\xdc\x95\xbb\xb4\x96\x72\x57\xda\x1c\x02\xf8\x73\x90\x87\x25\x25\x5b\xac\x3b\x87\x90\x9b\xfb\x22\x58\x4f\x24\x2e\xad\x24\x1a\x16\x9d\xfe\xe0\xb5\xab\x73\x2c\x24\x44\xa5\x88\x36\x86\xed\x29\x6a\x66\xda\x5c\x04\xca\xc8\x4f\xe7\xcb\x69\x5b\x63\xb9\x8c\x5d\x27\xd8\xa6\xc2\xdf\x73\x54\x8b\x90\xed\xc2\xdd\xbc\x47\x6a\xab\x2a\x07\xca\x07\x70\x3d\x5c\x98\xeb\xee\xca\x36\x97\xe6\x64\xef\x7d\x67\xd9\x7c\xf0\xde\xda\xec\x4b\xfa\xc5\x1f\x1c\x39\x14\xec\x08\xea\x64\xb4\x56\xf8\x5d\x32\x88\x08\x80\x4f\xbe\xf2\x8b\x97\xa7\xdd\x8b\xc9\x79\x34\x39\xad\x1f\x9a\x79\x98\xd4\x4f\xb4\x08\x29\xe3\x9d\x84\x20\x99\xcf\xc0\xff\x58\xfe\xd1\xdf\xe1\xf6\xd6\x25\xfd\x4f\x56\x8f\x58\xe3\x4b\xc0\x2a\x08\xc7\xad\x6f\xb6\x99\x1c\xec\x7f\x0a\x0d\x9e\x04\x07\xb7\x85\x61\x9c\xaa\xd7\x42\x20\x10\xe6\xf6\x57\xb6\x32\x46\x3e\x02\x27\xe7\xb6\x31\xfa\xcd\x9c\xfe\x53\x64\xfd\xa4\x48\x98\x69\x0c\x63\x35\x42\x3d\x14\x06\x6e\x7f\xc9\xec\xc7\x30\x1b\xf5\x15\x3c\xe2\xed\x93\xb9\xe4\xbf\x8e\x11\x76\x6e\x6a\xce\x8c\xc3\x72\x1f\xde\x38\xff\x0d\x26\x75\x98\x78\x68\xfa\x8f\x48\xcd\x83\xa1\xa9\xf4\x62\xb4\x5a\x18\x9c\xa0\x0a\xef\x9d\x70\x4a\x63\x01\x78\xed\x12\x24\xb3\xc8\xfc\xf0\xb7\xd7\x3b\x5e\x0a\xaa\x3c\xf0\x32\x71\xf7\x31\xed\x7e\xde\x24\x41\x18\x6f\x85\x2a\x26\x06\x91\x3b\x59\xa6\xb1\xc9\x12\xfe\xce\xcb\xf7\xf3\xc3\xfd\x3e\xe8\x4d\xbc\x5f\xfa\x8e\xcf\x63\x39\x68\x34\x2e\xc7\x8e\x36\xe2\x39\xb5\x88\xa9\x3f\xed\xba\x52\x18\x87\x81\x47\x57\x08\xfc\x02\x25\x51\x59\xd9\x6c\x30\xc7\x99\xbf\x5f\xa7\x9d\x9b\x5e\x53\xf4\xc7\x6a\xa6\x58\x52\x44\x3b\x56\xdc\x04\x82\xc0\x6e\x99\xbb\xa0\xdb\x29\x77\x01\xd7\x02\xfc\x6c\x21\x89\x15\x38\xce\x74\x81\xa3\x83\x84\x8b\x9c\x46\xdb\xab\xc8\x36\xdd\x09\xbe\x20\x0b\x2b\xc3\xd5\x8e\x5b\xa7\x1f\x49\xf1\xaf\x32\xa0\x32\x9e\xf8\x1e\x1f\xe6\x16\xa3\xe3\x94\x69\xc4\xaa\xd3\xcb\x5e\xd4\x90\xc0\xf3\xad\x61\xf1\x85\xb4\xb9\xe3\x19\xef\x46\xa3\x94\x23\xbf\x2b\xba\xd3\xa8\x67\xeb\xb8\x82\x56\xb1\x5f\xc4\xa5\x3e\xb8\x5f\x2c\x6e\xfb\x60\xfc\xf0\x9b\xde\x1d\x40\xc1\xb4\xe9\xf1\x03\xfb\xdc\xd8\x5d\x59\x90\x5b\xd0\xca\xbf\x23\x06\xb6\xc6\x0e\x7e\x90\xa5\x1a\xeb\x9b\xe3\x8d\x05\x34\x22\xe3\x4a\x3b\x37\xd8\xef\xe4\xf5\x6a\x92\xca\xa2\xf7\xe5\x0d\x17\x8b\xb5\x6d\xee\xfd\xed\x54\x78\x9f\xbb\x4f\x50\xc1\xae\xdc\xfe\xff\xa2\xa9\x53\x56\x03\x74\x7c\xc9\xeb\xe1\x58\x1c\xbf\xbd\x80\x29\xe3\x2a\x40\x04\x5f\x2e\x02\x2a\xe3\xd2\x49\x70\xa5\x9e\x9d\x2a\x9e\xc0\xc1\xe3\x0c\xdc\xc4\x37\x26\x0f\x24\x77\x50\x60\x1b\x1d\xb8\x83\x22\x2c\x91\xab\x90\xe6\xf7\x70\x5b\x27\x0c\x69\x48\x41\xd4\x3b\x14\x77\xe8\xd4\xfb\x92\x70\xea\x14\xbb\x23\x4a\x4d\x3c\xdf\x51\xbd\x45\xc3\x3d\xe4\xa8\xba\x4b\x3a\xb1\x91\xb4\xf0\x8c\x7a\xb9\x9e\xb3\x9a\x06\x9f\xd9\x1e\x62\x3b\x1f\x29\x70\x88\xd8\x1a\xe7\x20\xe2\xf3\x0e\x32\xa5\xc1\x69\x93\x8d\x65\xc1\xeb\xf6\x54\xfc\x9b\x8c\x00\x29\x70\x6f\xe8\x02\x37\xff\x02\x4d\xe4\x07\xcf\xe1\x11\x2a\x2a\x9f\x28\x9e\xb6\x07\x4c\x27\x12\xce\x70\xfd\xe1\xd2\xfa\x35\xbe\x90\xc0\x01\x3a\xcf\xed\x71\xdb\x49\x98\xee\x93\x2b\x67\xa0\x19\x7c\x31\xff\xe3\x77\x28\xfb\x1d\xfe\xaa\xe6\x17\xfc\x47\xe0\x22\x5c\xca\xfc\x09\x45\x14\x6e\x7f\xf3\x0c\x0c\x6d\x1e\x94\x70\x68\x63\x24\x41\x72\x6c\x4a\x84\x5a\x5c\x04\xc6\xf8\x5c\x81\x3e\x92\x2a\x32\x3b\xaf\xab\xc8\x22\x70\x79\x22\xa0\x32\x13\x55\xa8\x70\xd1\xeb\x14\xba\x59\x92\x81\x2b\xf2\x5f\xd4\xdc\x31\xa5\x06\x60\xfc\x8c\x48\x58\x81\x47\x13\x2e\x79\x94\x9a\x24\x1e\x0d\x9e\x43\x23\xb2\x84\x91\xf5\x43\xe8\xca\x44\x93\xf7\x3c\x4c\xb9\x2b\xf3\xb5\x86\x88\x66\x2e\x84\x3e\x4c\xc4\x66\x38\x07\x91\xf5\x61\x30\x33\x32\x5b\xec\xf7\xf4\xe2\xdf\x25\xaf\x80\xb3\xe0\x42\xe7\xda\x71\x51\x28\xef\x0a\xa7\x46\x3b\x4d\xf8\x0c\x2e\xda\x9d\x5c\x74\x81\xbf\xbe\x39\xf9\xde\xd9\x9c\xac\x5b\x68\x73\xf2\x4b\x6a\xde\x43\x1b\x50\x4b\x36\x2c\x7c\x5a\xc1\xcd\xc9\xa5\x4e\x79\xbe\x4a\xc1\x9d\x27\x5d\xb4\x53\x64\xfb\x32\x5d\x77\x2c\xfd\x75\x7d\xb3\x84\x2f\x0f\x68\x9f\xcd\x64\xb4\xd6\xd7\xe3\xe1\xe6\xce\x44\xa8\x13\x48\xb5\xf1\x3a\x98\xce\x27\x29\x77\xbf\x89\xa6\x55\xd1\xbe\x67\x6d\xbe\x1e\xd7\x96\xab\x54\x72\x52\x9e\xc2\xad\x2c\x5b\xf8\xae\x98\x84\x1b\x96\x47\x5a\x79\xf7\x50\x83\xf8\x6d\xb4\x65\xad\xbd\x9a\x6f\x46\x83\x72\xad\x7f\x6c\xb7\xd1\x8e\x17\x04\xda\x45\x5b\xd2\x8a\xa7\x57\x67\xef\x44\x16\xed\xd7\x69\x8d\xab\x85\x97\x61\x47\x4b\x6b\x15\x88\x7f\x8f\x98\x2a\x56\x9d\x2d\x6a\x5b\x6b\x05\xb7\xa0\x95\x9c\x1d\xa6\xfa\x61\x38\x48\x2c\x3f\x1a\x71\x03\xed\x5e\x2b\x40\xaa\xcd\xf6\xa4\x5a\xf8\x98\xde\x65\x0b\x9d\x06\x7c\x36\xd0\xde\xa7\xfb\x94\x7e\x1a\x3d\x17\x7b\x9b\xd1\xee\x06\xca\x80\xf6\x51\x57\x86\xe0\xb7\xfb\xb4\xbb\x25\xaa\xae\xad\x37\xc5\x37\xb4\xe3\xe6\x58\x34\xad\x3b\xb4\xd5\x2d\x0d\xb7\xa4\x74\xd0\xd6\x3d\x00\xd3\x92\x6e\xfd\xe8\x57\x47\x95\x91\xa6\x6b\x59\xad\xb4\xd1\x3a\xed\xde\x4d\x72\xa3\x0d\xac\x56\xd3\xd9\x35\x47\x6d\x15\x42\x52\x21\x7a\x13\x7f\x6b\x4e\x39\xd8\x12\x55\x83\x2f\x8b\xa8\x95\xaa\xa8\xc9\x3b\x70\xdb\x11\xa0\x8b\xb6\x36\x41\x81\x2c\xed\xe6\x26\x0f\xf7\x10\xe9\xe4\x16\xa8\x32\xbb\x79\xf6\x3f\x3f\xbf\xee\xc7\xd9\x1d\x57\xda\x6a\x77\x43\x4d\xef\x6b\xb5\xb2\x36\x2a\x1d\x41\xfb\x77\x2a\xa0\x7f\xea\xba\xb6\xda\x40\x18\xdd\x80\x5d\x57\x2d\xf7\x2b\xef\x9d\x52\x79\x61\xc3\x4d\xde\xba\xbe\xa8\xaf\xb5\xde\x10\x6d\xfe\x6e\xcd\xf3\xba\xf6\x38\x3c\xd5\x8e\xe5\x01\xd0\xfb\x87\x9b\x85\xd6\x69\xea\xa5\x8b\xac\x95\x7f\x78\xd4\x35\xbb\x7c\xd7\xd1\xc7\x73\xf0\x6f\xf9\xf8\xa0\xcd\x87\x83\xf2\x43\xda\x2a\x1d\xf3\x7a\xc5\x79\xd7\x29\xdf\xf5\xf5\x31\xd0\xcc\x47\x47\x5b\x6e\x6e\x66\x17\xef\x5a\x22\x5f\x2a\x1e\xe1\xee\xa9\x86\x56\x82\x7a\xd4\xd9\xa2\x6d\x4b\xc5\xa3\x5e\xae\x74\x5b\xc5\x72\x0f\xf2\x91\xd6\xeb\x8b\x74\xf1\xc1\x2a\x9f\x6a\x56\xb9\x34\x78\x6e\x56\xb3\xad\xf9\xff\xc7\xdc\x9b\x30\xab\xaa\x64\x89\xc2\x7f\xe5\x44\x75\x74\x54\xdf\xe7\x39\xc7\x09\xa7\xae\xe8\x13\x9d\xcc\x20\x0e\xa0\xa8\xf0\xa2\x5f\x84\xa2\x32\x38\xe0\x16\x15\xf5\xc6\xfd\xef\xdf\xca\x04\x14\x14\xf7\x70\xeb\xd6\xf7\xde\xae\x3a\x57\x20\xa7\x95\x2b\xd7\x94\xd3\x5a\x47\x7a\xfb\xd6\x6c\x29\xbb\x02\x1a\xd5\xca\x67\x51\x2b\x9d\x7b\x7b\x6e\x2e\x0e\x13\xc2\xc4\xff\x81\x96\x58\x76\xa1\xed\xe6\x93\xb0\xd9\x6c\xa9\x48\x41\x85\xe8\xfc\xda\xf5\x3a\x36\x3c\x82\x17\xb6\xdf\x1d\xd3\x5d\x7c\x44\x2f\x50\x7b\x2b\x14\x12\xd1\x23\x65\x0e\x61\x93\xa3\xa4\x4a\x71\x6a\xd3\x53\x52\xbe\x5f\xac\x12\xbe\xcf\x3d\x75\xd8\x61\xeb\xf8\x87\xb4\xd3\x35\x6f\x9f\x41\x7a\x8c\x93\xa3\x77\x21\x1a\xa7\x8f\xca\xd1\x36\x1a\xe2\x23\x5b\xf0\x77\x60\xcc\x3b\x5f\x70\x36\xbb\x48\xf3\x49\x57\xbd\xf5\x8b\xfc\xc2\xe0\x95\x33\xf5\x84\xf8\x14\xef\xfd\xc8\x1d\x43\x4e\x40\xde\x8f\xdc\x31\xe4\xa8\xee\xfd\xc8\x1d\xe0\x58\x4f\x1f\xb9\x83\xf4\x65\xfa\xc8\x5d\x3b\xa4\xb7\xf7\xf7\x00\x71\x21\x33\xb8\x1f\x91\x03\x29\x65\x33\xeb\xf4\x91\x3c\xf8\x5f\x3f\x7b\x24\x8f\x5b\xa6\x8f\xe4\x41\xfa\x21\x7d\x24\x0f\xde\x5b\xd9\x23\x79\x7c\x37\x7d\x24\x8f\x43\xbc\x97\x3e\x92\x37\xb2\xf9\xeb\xfd\x3d\x40\xb2\x2d\xca\x6a\xa5\x15\x2e\x26\xf2\xce\xac\x38\x25\x89\x71\xd8\xf6\x00\x5d\x3a\x2c\x57\x92\x04\xb9\x26\x09\xad\xcb\x74\x3c\xdf\xcd\x36\x7c\x20\x09\x7c\x79\x2e\x38\x27\x6b\xdb\xb1\x55\x86\xde\xcc\x2a\xb5\x92\x39\x3e\x07\xb3\x4b\xcd\x9b\x55\xca\xf7\xf7\xb2\xbc\x36\xab\xa3\xc0\x98\xc8\xf7\x6f\x15\xf3\x34\xdb\x6a\xeb\x99\x70\x3e\x8d\x36\xa3\x8b\x55\x59\x9f\x66\x2e\x3a\x2b\x5e\xaa\x9e\xd2\x7c\x3d\x83\x34\x63\xa2\xad\x4d\x86\x76\x17\x03\xfa\x3a\xdf\x58\x97\xb9\xa8\x6d\x24\xc1\xbc\xcc\x2a\x25\x5b\xdb\xb4\x8e\x73\x61\x14\xcc\x84\xa6\x6d\x89\xf2\x69\xba\x19\x79\x73\xa6\xe6\x43\x9e\xb0\xe7\x36\x4f\xe6\x3d\xfd\x68\x54\x5a\x07\xc4\x75\xf0\x71\xbe\x10\x89\x2b\x64\xd9\xf8\xf8\xa0\x85\xa6\x88\x2e\xe1\x81\x6f\x23\x9a\x45\xcc\x0a\x53\xe9\x05\x1f\xf4\xeb\xa8\x88\x7c\x37\x6c\xba\x86\x7f\x67\xe4\xd8\xe1\x0a\x1f\x33\x24\xc7\x0e\x0d\x95\x0e\x48\xba\x4a\x97\xf1\xb1\x42\xa8\xe7\x84\x8f\x13\x5a\x21\x3e\x3e\x48\xa8\x67\x83\x84\x26\x3e\x66\x48\x8e\x17\xce\x10\xe4\x87\x77\xc5\xa6\x3d\xf2\x5d\xcd\x4f\xd7\xf1\xb1\x44\x80\x6b\x8e\xeb\x17\x38\x0c\x67\x6e\x3e\xd3\x8e\x8e\x25\xce\xf1\x01\x6d\x21\xc4\xdf\x4f\x1f\x1c\xa7\xcc\xad\x47\x0b\x71\x79\x2a\x2a\x17\x1d\xab\x5c\xe3\x8b\x14\x00\xbf\x8b\xf1\x04\xbf\x57\x24\x42\xbd\x21\xe0\x05\xfa\x39\xc7\xf5\x40\xbf\xa1\xfd\x4b\xd4\x0f\xdc\xdf\xfb\xf1\x4a\x93\xc0\x0d\xf0\x60\x3c\x80\x02\xb3\x08\x9c\x3e\xfe\xee\xe1\x74\xe8\xbf\x1f\xd7\x13\x62\x55\xa6\x84\x08\xd2\x73\xcb\x1f\x91\x40\xc6\xeb\x90\xf0\x63\xf2\xc7\x3c\x1d\xad\x7d\xf8\xc3\x7a\x55\x05\x39\x1c\xae\x3d\xb0\x43\xbc\x29\x3e\x5e\xbf\x09\x04\xa3\xb2\xbe\x18\x95\xf3\x3a\xe1\xf7\xdb\x11\xe1\xbc\x3f\x56\x42\x1d\xd0\xdb\xc5\x06\xc7\x32\xc5\xc2\x19\xa4\x58\x10\x30\xb4\x6d\xba\x95\x10\x0d\x42\xdb\x64\x98\x30\xe4\x81\xe3\x19\x73\x1a\x20\x8d\x1f\x97\x6d\x47\xba\x70\x33\x77\x6d\xdb\x01\x4f\xab\x63\x46\x08\x55\x7e\x35\x93\x14\x44\xe9\xbc\xed\x04\xac\x63\x8e\x07\x4c\xc8\xac\xc0\x2e\x52\x90\x4f\xbe\xa1\x1d\x0f\xe9\x61\x94\x4e\x9b\xc2\x05\xd7\x49\x1b\x92\x60\xd8\xae\xbf\x73\x20\xad\xad\xf3\x8e\x8d\xbf\x4b\xf8\xfb\x0c\x14\x0e\x1d\xd8\x01\x6b\x92\xfa\xbb\x1b\x34\x33\xf8\xb5\x39\xd6\xc0\x68\x63\x0e\x50\x3f\xd8\x49\x90\xcf\x1c\xad\x4d\x65\x86\x18\x85\xa1\x71\xfd\x9c\x3c\xe6\x57\xf0\xcb\xab\x65\xda\x08\x90\xee\xa9\x7b\x24\x48\x25\x69\x26\x0d\x78\x33\x00\x29\x01\x79\x59\x85\xe9\x60\xf8\x6d\x53\xe1\x78\x63\x25\xd9\x01\x02\x71\xbe\xc7\x97\xd8\xa4\x37\x09\xe0\xa6\x57\x1d\xdb\x75\x99\x36\xe0\x61\x1f\x0c\x11\x2f\x1b\x3b\x6d\x2c\xd0\xaa\x50\xe1\x07\xe3\x91\xed\x8d\x07\x9c\x1d\x70\xf4\x70\xac\x00\x2f\x9d\x03\x07\x9e\x4d\xa9\x01\x52\x88\x77\xd6\xe3\x41\x05\xf0\x74\x09\xe9\x52\x67\x1f\xe0\x63\xdd\x5c\xd7\x56\x01\x8f\xf4\x00\xbe\x5d\xba\x8c\x04\xfd\x43\x4c\x97\x31\x66\x0c\x32\xf6\x88\x36\x00\xe6\x36\x4e\x77\x43\x5b\xe2\x74\x80\x45\xe6\x8d\x06\xd8\xab\x63\xd9\xd6\x14\x48\x67\x20\xed\x92\xa4\xa1\xbd\xd4\xe0\x18\x9a\x19\xc1\xfb\xb8\x2d\x55\x38\x32\x36\x31\xbe\x90\xd0\xc0\xf8\x75\x43\x09\x0c\x5b\x15\x70\x75\x83\x09\xfa\x2c\x0f\xba\x8e\xc6\x0d\xb0\xf6\x38\x04\xc8\x0e\x02\x55\xe7\x35\x60\x0c\x43\x57\xe1\x7d\x15\x60\xdc\x48\x50\x17\xa3\x77\xa1\xdf\x78\x4c\xe1\x79\xd0\x65\xa0\x6c\x5b\x2d\xbd\x85\x18\x0b\x78\x8c\xa4\x92\x8c\xf1\xdd\x56\x18\x86\xa2\x81\x6f\x24\xc5\xe6\x90\xd0\x03\x58\x84\x90\x29\x75\x6d\x49\xda\xd9\x90\x4f\x01\x9c\x7b\x90\x4f\x51\xb8\x83\x3e\x56\x38\x11\xe9\x9a\x29\x2b\xa0\xd4\x06\x5d\x0a\xbe\x77\xe0\xbb\x36\xe6\x0e\xc3\x24\x4d\xb8\xf0\x38\x7d\x18\xa7\x77\xa1\x20\x62\xb9\xee\x08\xd2\x41\x24\xc3\x58\x8f\x79\x26\x40\xfe\x1e\xe0\x41\x6a\x03\x31\xb2\xde\x3e\x33\xaa\xb4\x56\xf7\x5c\x1b\xb9\x23\x48\xe3\xc6\x04\xb7\x97\x91\x0a\x65\x68\x8c\xf7\x00\xa9\x6b\xd5\x7f\x6b\x4b\x92\xef\x19\x33\x24\xb7\x5d\xce\x83\x7e\x3a\xa9\xf7\x59\x00\x73\x06\xb5\x02\xe5\x48\x1d\xd2\x3a\xfa\x8e\x69\x65\xcd\x6a\x0d\xdc\xf7\xb9\x1d\x48\xb8\x9f\x60\xbd\x8f\x01\x0e\x7d\xe4\x1a\x00\x1b\xa8\x43\x0f\x8f\x0f\xc0\x82\xfa\x7b\xe0\x3f\x95\x67\x0d\x4e\x02\x5c\x52\x80\x5b\xc4\x6b\x23\xcd\x00\x8b\xa1\x03\x78\xb0\x0d\x3c\x8e\x33\xbd\x0b\xb3\x11\xac\x37\x19\xd5\xdf\xd9\x81\x5a\xe2\xdb\x0d\xfa\x00\xf4\xe3\x62\x9a\x61\x2f\x97\x33\x42\xd4\x1e\xfa\xae\x42\xdf\x69\xd6\x0d\x0e\x01\xcd\x41\x5d\x52\xaf\x7d\xa9\x84\x9c\x0b\xe9\x21\x49\x1f\x42\x3a\x17\xa5\xab\x78\x1c\x49\x3a\x3f\xb8\x9c\x69\x9b\xa4\x8f\x21\x5d\x8c\xd2\x2d\x48\xb7\x49\xba\xc0\x5c\x00\x5f\x24\xdd\x54\x14\x24\xb5\x1b\x1c\x98\x73\x23\x7d\x0c\x10\xb1\x40\x8f\x92\x00\x38\x18\x0b\x65\x56\x2d\xd1\x58\x3f\xaa\xab\x76\x1b\xfa\xd9\xa5\x07\xc7\x70\x36\x08\x66\xd2\x7a\x05\xf5\xf9\xb8\x6f\x26\xa9\x0f\xc3\xab\xad\x70\x7d\x16\xb4\xc7\x08\x03\xdc\x5e\x09\xd2\x3b\x24\x5d\x04\x78\x69\x9a\xa4\x2f\x21\x9d\x27\xe9\x0c\xc8\x15\xd5\x20\xe9\x12\x86\xf7\x4c\xd2\x5d\x48\x97\xa2\xf4\x0e\xa4\xaf\x48\xba\xcc\x84\x76\x3f\xa6\x7f\x19\x64\x10\xe0\xb0\x6b\x30\x34\x0b\x34\x4d\x1b\x98\x1e\xdc\x91\x83\x69\x36\x60\x54\xe0\x59\xc8\xe3\x5e\x20\xdf\x11\xfe\xf9\x50\x8f\x15\x48\x0c\x2d\x62\x7a\x46\xab\x11\x1e\x73\xde\xd8\x20\xcf\x18\xda\x1e\xd0\xe7\x68\x9c\x9f\x36\x93\x46\xd0\x47\xc6\x4e\x8f\x1f\xcd\xef\xd1\xb6\x0d\x7c\xca\x0f\x51\x84\x03\x06\xf3\x8a\xbd\x7f\x3f\x8f\x1f\x48\xec\x38\xe2\x35\x06\xb2\x2b\x88\x4d\x68\x87\xc8\x94\x1b\x8f\xb7\x41\x16\x80\x3c\xa3\xa7\xd1\x8d\x27\xb0\xb9\xfa\x6e\x87\x0a\x06\x3e\xcd\x93\x7e\x84\x50\x4f\x68\x6b\x97\x34\xac\xf0\xcc\x75\x9d\x1e\xe0\x45\x19\x84\x47\xfe\x1a\x42\x3e\xea\x65\x3e\x78\x66\x8d\xab\x0d\x79\x9a\x98\x96\x10\xef\xea\xb6\xe2\xd2\x78\xa6\x8a\x65\x23\xf0\xd1\xa6\xed\xae\x2c\x4f\xbb\x74\x1d\x89\x77\x5c\xcc\x87\xc0\x4b\x58\x1e\x1e\x91\xca\x8d\x78\x06\xe0\x60\x61\xdc\x10\x1a\x63\x7e\xc2\xff\x20\xaf\x88\xf9\x9d\x5e\xe9\x7b\xd3\xf0\x8f\xd2\x05\xd9\x7d\xc9\xc7\x7c\x7b\x06\xda\x42\x80\x0f\x4e\x9e\xc1\xbf\x01\x3a\x46\x79\x39\xcc\x8b\x44\x16\x6b\x03\x90\xe9\x42\x24\x5f\x54\x00\x33\x08\x25\x1b\xb4\xed\x0c\x7e\x37\xe8\xbc\x33\xd5\x95\xe4\x01\xaf\x49\xea\x85\x01\x59\x13\xc3\x55\x32\xa1\xbc\xc6\x62\x3e\x34\xf0\xb8\x31\x41\xa2\x33\x18\xb5\x42\xaf\x80\x26\x58\xb5\xc2\xaf\xb0\xec\x43\xab\xae\x23\x90\x77\x1a\xfa\xd1\x59\x93\x32\x83\x8e\x4d\x74\x83\xdb\x15\xc8\x38\x37\xa0\xfe\xd2\x14\x68\x68\x1c\x32\x1c\xc0\x07\xed\x18\x63\x94\x6a\xa3\x13\xcb\x5a\x98\xa1\x62\xd9\x00\x63\x44\x0f\x30\xbd\xe9\xa4\x3e\xe8\xcb\xc6\xc0\x7a\x02\xe4\xb0\xc9\xf4\xb0\xcc\xb1\x4d\x2c\x83\xb5\xc0\x03\x1a\xf2\x30\x6d\xd1\x8c\xe1\x69\x1b\x8e\xc2\xbc\xdd\x01\xda\x04\xaa\x25\xf2\x95\x1e\x18\xb6\x92\xe0\xfb\x1a\x62\x9c\x5d\x09\xce\x5c\x90\xb7\x98\x0f\x19\x64\x6b\x6e\x57\x24\xed\x57\x38\x9c\x5e\x8a\x71\xca\x02\x4e\x61\xbc\xa2\xb2\x20\xa3\xf5\x31\x43\xd9\x7d\xd0\x65\x02\x96\x87\xa9\x34\xac\xff\x08\xfe\x6f\x79\x8d\x35\x86\x7d\x80\xf3\x8c\x05\x4c\x87\x9e\x74\xa1\x0d\xc3\x09\x9c\x71\x22\xd3\x98\xce\x6d\x1c\x25\xa0\x01\x68\xb7\x7c\x83\x8b\xeb\xdc\x61\x06\x39\x21\x09\xf4\x86\xc8\xc4\xfb\xb8\x57\x40\xa7\x42\x1e\x8c\xd3\x91\xa0\x83\x5d\xd0\xe7\x57\xc7\x60\x60\xd0\x20\xb5\x81\x7e\x80\x1f\x2f\x40\x0b\x84\xde\xb0\x3e\x47\xcd\xf1\xa0\x7e\x96\x6d\x4e\xc7\xbc\xde\x63\x42\xc0\x59\x4d\xc0\xf2\x57\x5b\x83\x9e\x61\xcf\xe6\xbb\xf9\x41\x97\x76\x98\xe0\xa9\x8c\xb2\xe7\x36\x48\x53\xb1\x4c\xa9\x03\xec\xe7\x36\xe5\xdb\x12\x0b\x7a\x17\xf0\xea\x7a\xf6\xcb\xfc\x78\xdc\x95\x3d\xda\x90\xba\x2f\x78\xac\xa6\x50\x66\x8c\xc7\xf0\xd6\xef\x00\x99\x7c\xfb\xd2\x01\x7c\xa3\xa3\x74\x75\x6f\xb0\xf4\xb1\x5c\xc5\x7a\x66\xff\x17\xd0\x3d\xb7\x80\x99\x6b\x2f\xb4\x05\x19\xd3\x2b\x6a\x03\x0f\xb8\x1b\x5c\x87\xcc\x1a\x82\x0a\x7c\xdd\x65\x8d\xb1\x06\xfa\x0d\xd3\x3d\xe8\x2e\xfc\xce\x6f\x80\xfe\xc6\xb8\x8c\x43\xfa\x06\x34\x07\xb8\x6b\x4a\x57\xa0\xf3\x41\x96\x96\xa4\xd1\xe6\x0e\x77\x84\xc3\xd4\x18\x81\xde\x62\xb9\xbd\x84\x79\x25\xc6\xd9\xad\x9f\x98\x0f\x2e\x75\x90\xb1\x38\x5f\x13\xcb\x82\x11\x86\x15\xdb\x31\x01\xbe\xe2\xa8\xe9\x3a\x07\xe9\x0a\x96\x15\x1c\xfa\x20\x1d\xeb\x34\x90\x95\x74\x0f\xe4\x17\x7e\x97\xc0\xd6\x6c\xbe\x29\x33\x9a\x25\xf4\xb6\xd2\x61\x9c\x28\x5b\xf3\x41\x47\x0f\xef\x78\xd6\xc0\xa6\xc2\xfc\x11\x70\x1d\x18\x5f\x9a\x57\x14\x7c\x51\x3d\xc4\xcf\x02\x79\x1e\x92\x67\x11\x9e\xe9\xf8\xbb\x44\x9e\xa3\xef\x72\x94\xbf\x84\x9f\xdb\x51\x7e\xf2\xac\x44\xf9\xc9\x73\x27\xca\x4f\x9e\xbb\x51\x7e\xac\x9f\xe8\x5e\x94\x9f\x3c\xf7\xa3\xfc\xe4\x59\x8d\xf2\x93\x67\x2d\xca\x1f\xe0\xe7\x41\x94\x9f\x3c\x0f\xa3\xfc\xe4\x59\x8f\xf2\x93\xe7\x51\x94\x1f\xeb\x63\x7a\x1c\xe5\x27\xcf\x93\x28\x3f\x79\x36\xa2\xfc\xe4\xd9\x8c\xf2\xfb\xf8\x79\x1a\xe5\x27\xcf\xb3\x28\x3f\x79\xb6\xa2\xfc\xe4\x79\x0e\xb8\xbc\xb4\x2f\x77\x9e\x99\x80\x0c\xea\xb8\xc7\xb0\x8b\xc7\x90\x87\x31\x64\xa5\x3d\xf0\x25\xce\x6b\xc7\xf2\xe5\x02\xe3\x4c\xe1\xbc\x06\xa6\x8d\x4b\x8a\x36\x04\x18\x23\x16\xec\x59\xd6\xc0\xf9\x3d\xc8\x7f\x85\xbc\x55\x9c\xd7\x64\x70\xde\x23\xf0\x30\xce\xa7\x43\x3e\xe0\xbf\x1b\x1f\xd2\x1b\xc8\x5b\x82\xbc\x15\x92\x17\x78\xab\x0b\xb2\xb4\x7b\xc1\x79\x6d\x92\x37\x60\x6d\x9c\x6f\x07\xf9\xca\x69\x78\xa7\x00\x6f\x77\x10\xc3\x2b\x04\x90\x57\x4f\xe0\x0d\x48\xde\x18\xd6\xd9\x20\x04\xfe\x75\x40\xbe\x75\x56\xba\x08\xf2\x5f\xd3\x43\x85\xdc\xdc\x3d\xc2\x44\xd0\x19\x10\x5b\xd0\xa8\x99\x47\x15\x1b\xe3\x34\xd6\x2d\xb4\x54\x02\x3b\xf8\xd2\x0d\x03\x5b\xf5\x19\x7d\x34\xd0\x14\xb0\xfd\x6d\xeb\x0d\x6c\x13\x18\x48\x7c\x1f\xce\xd1\xc6\x0a\x8d\x5c\xde\x05\x9b\xaa\xcb\x61\x3c\xb8\xc0\xb3\xa0\x10\xe3\x6f\x3c\x37\x86\x79\xc7\x18\x26\x98\x45\x0a\xe4\x84\x54\x39\xd3\x2a\xb9\x31\xfa\x5f\x7f\xf1\xc5\x6c\x3b\x59\x45\xf5\x75\xb0\x0e\xa3\xb9\x5c\xff\xd5\xea\x51\xf2\x47\xf7\xf5\x4b\xf3\x82\x92\x55\x6f\x8e\x5c\xb4\x1e\xf7\x17\xbc\x8c\xc6\xc4\x65\x07\xfc\x09\x64\x8a\xd9\xc3\xb3\x4b\x7d\x4f\x56\xc9\x8d\xaa\x59\x22\x1f\x2d\x52\x39\x71\xb1\x21\x22\x53\x2e\xd6\xb4\x8d\x25\xcc\xf1\xcc\x94\xae\x90\xda\xf1\xea\xf5\x46\x73\xed\x1d\xd5\xab\x24\xab\xe4\x33\x92\xff\x76\x27\x1a\x20\x24\x2e\x3f\xe0\x91\x26\xfe\x0b\x18\xb2\x80\x7d\x38\xb4\xb6\xb4\x68\xfa\x26\xcc\xd2\x70\xf5\x1e\x99\x7d\x92\xa2\x15\x34\x08\x9a\x8b\x0a\x59\x35\x87\xd7\x25\x59\x3a\x22\xf0\x30\x2a\x59\x45\x8f\x5c\x80\x40\x7d\x85\x68\xd5\x9c\x14\x45\xc1\x0e\xbe\x04\xb3\x4a\xd7\xc1\xf5\x35\xef\xed\x4b\x64\xd5\xac\x92\x5c\xf4\x5e\x52\xf7\xfa\xa2\x55\xf5\xe4\xa2\x37\x43\x6e\xa5\xf2\xb8\x17\xcc\xd5\xba\xcc\x05\xe7\x9c\x5c\xf4\x96\xa3\x8b\xde\x64\x41\xbd\xb1\xdf\x97\xd1\x46\xc4\xab\xea\xf8\x95\xac\xca\xa3\x11\x29\x3a\x25\xab\xec\x0b\xf9\xec\x19\xc2\x70\x11\x0e\x5d\x98\x3a\x8f\x69\xbb\xbe\x69\x4f\xd5\x26\x8b\x4a\x9d\xbe\x23\x98\xcd\x50\x60\xa5\x4b\x67\x88\x42\xf8\x77\x09\x2e\x30\x45\x1d\xac\x8e\x53\x23\xec\x29\x67\x7b\xd1\x11\x25\xb1\xaf\x16\xdd\x8b\xd0\xde\x98\x27\x5a\xbc\x78\x1d\x46\x96\x58\xd4\x5f\xb4\x98\x0a\x4d\x6d\x85\xae\x6d\x80\xd6\xb5\x05\x64\xd2\x2b\x43\x80\x39\x13\xdd\x74\x3c\x7a\x49\x1b\x02\x3b\x60\xbb\xf4\x9b\x6a\x0a\x26\x64\xe1\xa9\xb0\x78\x6a\xf6\xf5\x13\xc3\xc0\xac\x4a\xe9\x70\xca\x08\x85\x9c\x27\x34\x7b\x12\x0d\xf6\x5a\x0d\x4d\x4f\x78\x91\x1f\xd7\xa7\xa2\xae\xc0\x72\xb3\x4e\xb5\xdf\xac\xda\x30\x10\x9c\xa2\xb2\xd4\xc4\xb5\xb6\xa3\x89\x39\x3f\x74\xc7\xbc\xac\x37\x4d\x11\x0d\x7a\x9b\x81\xed\xa3\xc6\xa4\xca\x3a\x6a\xbd\xf9\xc6\xb5\x35\x3b\x9c\x0e\xf6\xfc\xdc\xe5\xe6\x22\x72\x0f\x34\x5d\x59\xb1\xe2\x70\xb5\xb5\xac\x42\xbd\x72\xec\xa9\xfb\xc3\x58\x2c\x6e\x4a\x8d\x6d\xa9\x25\x2b\x5a\x69\x3f\x33\x82\x75\x50\x28\x68\xe5\xc3\xb6\xc2\xee\xb7\x9a\x13\x7a\xed\x6d\x69\xea\x0a\x27\xdd\x37\xdb\x13\x54\xdf\x04\x7d\xd3\x6c\xb7\x4a\x6b\xab\x5c\xd5\x4f\x5e\x4d\xef\xd0\x5b\x7e\x7e\x70\xe4\xfe\xc0\x3c\xfa\xdb\x81\xd6\x9e\x1e\xaa\x81\xce\x34\xce\xe3\x5e\xf0\x36\x1e\xcc\x0d\xb9\xd0\x5f\x4b\xbc\xd9\x1f\x99\xb5\xad\x8f\xae\x2e\x4f\xd7\xd6\x03\x5d\x9d\x69\xf4\x71\xb7\xbe\x98\x32\xe5\x6f\x3d\x99\x5a\x8d\xcd\x33\x5a\xca\xfa\xca\x96\xa7\x1d\x75\xd7\x52\x24\x9d\x93\xca\x42\xa0\x0d\xca\x53\xbe\x53\x9f\x33\xfb\xf2\xb9\x7b\x2e\x95\xd8\xb6\xf6\xd6\x59\xcc\x47\x8e\xde\x2a\xf5\x79\xb9\x69\x95\x77\xad\x41\x80\x4a\xc6\xdb\xe8\xba\x65\xf8\xc5\x69\xa4\xed\xa9\xd9\x2e\xec\x9c\x16\x35\x98\x8b\x06\xc2\x75\x6f\x58\x67\x71\xeb\x06\xcb\x9d\xfa\xb6\x92\xde\xb4\xba\x65\x17\xe7\xab\x5d\x6f\x2d\x4d\xe9\x91\x28\xea\xfe\x68\xe6\xd6\x59\x66\x38\x29\x2e\xb4\x21\xb3\xef\xaa\xed\x69\xc7\x58\x8d\xd7\x0d\x5f\xa0\xaa\xcb\x72\xa9\x72\x36\xce\xfd\x89\x5a\x3f\xb9\xb5\xf6\x5a\x9f\xbe\x1d\xf7\xdb\x5e\x5b\xde\x1f\x4a\x4b\xc1\xb7\x2f\x76\xbf\x62\xcd\x76\xbb\xee\x55\xad\x2c\x67\x61\x4d\x5b\x0f\x47\xed\xc3\xdc\x9a\xf5\x0f\xaa\x60\x74\x27\xdc\x5e\x9e\x89\x83\x25\xf0\xf6\x5c\x5e\x2b\x5e\x5d\xe5\x7b\x5d\x33\x64\xde\xb4\x6d\x59\x6b\x4e\xcc\x5a\xb3\x09\xf3\xc6\xb5\xb5\x6e\xfb\xcd\xd1\xb0\x2d\x2e\xec\x9e\xd9\xb9\x1e\x1a\xd6\x50\x3c\xcc\xdc\xc5\x3e\xd8\x32\xab\x6d\x68\x5d\x66\x55\xb3\x42\xd5\x2a\xa2\x5a\x9f\x4f\x9c\x6a\x51\x2b\x38\xf3\x0e\x05\xdd\xf2\x0a\xb2\xbb\xf4\x6a\x4c\x61\x4d\xbf\x2d\x5d\xb9\x27\xb7\x47\xc2\xb8\x73\xbd\xec\x28\x63\x69\x8d\x2c\x5b\xdd\xaf\xce\x2e\x0a\x26\x97\x23\x3d\x74\xd8\x75\x49\x9b\xef\x4d\x73\x5d\xf5\x0e\x43\xb1\xe2\x04\xc5\xda\xe0\x6d\xed\xf4\xd5\xed\xb4\xde\xee\x53\x4b\x7b\xdf\x1a\xba\xea\x5e\x14\xe6\x9a\x5f\x1c\x49\xdb\x4e\xd9\x2b\x57\xc7\x87\xaa\x30\x57\x07\x8d\x71\x83\xbf\x06\x97\x7d\xa9\x37\x92\x8e\x8d\x13\x13\x1e\x8f\x9d\xc2\x82\x33\x4c\x6a\xcc\x94\x47\xcb\xed\x69\xbb\xa0\x87\xc3\x22\xed\x3b\xdb\x22\xc7\x2e\xba\xd2\x48\x29\xd4\x8c\xdd\x60\xaf\x9d\x36\x75\xb9\x73\xac\xb8\x6d\xe6\x58\x1a\x8c\xda\xa3\x79\x37\xd0\xf5\x86\xe1\xef\x76\x9b\x6d\x7f\xb3\x69\x0b\x2d\xa7\x3c\xbc\x76\xdb\x8b\xce\x55\xf1\x8a\xcd\x93\x55\xab\x89\x0d\xb1\xdb\x38\xaf\xe4\x53\x65\xb2\x18\x6c\x96\x6a\xa1\x36\x9d\xb7\xc4\xd9\xc1\xef\xaf\xe4\xc3\x58\x1a\xce\x0f\xe2\x6c\xbd\x53\x2e\xa8\xba\xd7\xcd\x63\x65\x3d\xf6\x7a\x5b\x83\x13\x6c\x73\xc7\x97\xa5\x91\x3a\x47\xa5\xe0\xb4\x73\xaa\xfc\x74\xd6\xd2\xd9\xb1\xc7\x6a\xcd\xe9\x98\xbd\x28\x1b\x45\x2a\x1c\x77\x9c\x56\xab\x94\x0f\x96\xbf\x3c\x4f\x5a\x65\xca\x0e\x44\x6b\xb3\x71\x77\x8d\xc0\xe5\x6b\x27\x57\x79\x2b\xce\x78\x8f\x6a\x56\x17\xf5\xbd\x57\xdb\x09\xd5\x19\x3b\x2a\x74\xa6\x5a\xd3\x43\x0b\x6d\xeb\x5b\x9b\x03\x6d\x16\xac\xaa\x73\x2a\x94\xbb\xd5\x41\x7d\xda\xf0\xda\x6f\x9d\xa3\x4d\xf3\x7a\x08\xd3\x43\x7a\xdd\xd0\x11\x53\xba\xee\x67\xcc\x74\x58\xde\xbc\x2d\xa9\xa6\x3d\xb7\x27\x92\x49\x5d\x57\x3b\xf6\x30\x1a\x2c\x7b\xd4\x74\xd3\x28\x8c\x6a\x40\x6b\xe7\xde\x52\x28\x9c\x0b\x55\x41\xd9\xcf\xad\x79\x75\x25\x8f\xe7\x46\xd7\xda\xf4\x2b\xcd\x6e\x6b\x60\xb6\xf7\x7b\xb1\xa0\x1f\xf6\x23\x75\xab\xd5\xc3\xbd\x4c\xb5\x46\xd3\xb3\xc3\xb6\xf7\xa1\x7f\xdc\xd7\x07\x6b\xf1\x58\x3a\x68\xc7\x62\xbb\xbd\xb9\x34\xd7\x75\xbd\x1c\xec\xb7\xab\x1a\x33\xeb\x1b\x9d\x99\xba\x3e\x56\x1a\x1b\x21\x94\x4a\xe7\xdd\xc5\xd5\x17\x93\x75\x6f\xdd\x66\xab\xba\xee\xd7\x2f\xea\xe5\x7c\x6a\x5b\x7e\x93\x92\x07\x0a\x53\x7e\x13\xce\x8a\xdd\x9b\xab\xad\xb7\x69\x73\xb8\xf3\x27\xbe\x21\x84\x81\xe3\xbc\x09\xa5\x93\x46\x87\x03\x66\x3d\xe7\xe7\x85\xd2\x65\xbb\x3c\x8b\x6f\x87\x7d\xa5\xe7\x51\x67\x6d\xe2\xd4\x27\xbb\x0b\xe7\x08\x4b\xca\xdd\x37\xf4\x25\xad\x97\x4b\xb3\x56\x1d\x35\xa6\x27\x61\x36\xef\xf8\x9d\xdd\x68\xfa\xb6\x2d\x50\xe7\x7e\x30\x2d\xce\x5a\x6b\xde\x9c\x4e\x07\xbd\xe0\xbc\xa8\x8e\xd0\x72\xd2\xed\x05\xd3\x9e\x36\x19\x0e\x0b\xc0\xa5\xa2\x76\xea\x09\xde\x1c\x5d\xcb\xfa\x92\xd5\x68\xa9\xac\x97\xcf\x05\x4f\x68\x0b\x9d\xd2\xda\x9b\xac\xab\xa1\x56\xea\x8c\xcc\x42\x58\xf1\x46\xc6\x29\x68\x55\xb9\xc2\x7c\xc7\x8f\x83\xa3\x7e\x34\x1a\x72\x30\x6c\x15\x98\xd2\xb1\x58\x7a\x2b\x34\xc6\xd6\xb8\x34\x1b\x17\xe7\x96\x70\x1a\x57\x57\xee\xae\xe9\x75\x66\xcd\x03\x73\x0a\x1b\x74\xa5\x5d\x35\x51\x55\xef\xd5\x7a\xb4\x80\x4e\xd2\x78\x8e\x8c\xb3\x63\x6c\xe6\x67\xf7\x68\x57\xaa\xdc\x6c\x69\x14\xe5\xb7\x65\xb1\x4a\x4d\x79\x6d\x22\x4f\x7a\xe7\xb7\xc6\x62\xb1\x67\xcb\x66\x57\x93\x27\x4b\xb3\xb9\xf7\x94\xe1\xc4\x34\xcb\xf5\x4e\x45\x6b\x8d\x7a\xc2\x29\x90\xbc\x41\xa9\xdf\x2d\xcc\x0c\x6a\x22\x81\xb9\xa3\xd9\xea\x6c\x56\x08\x97\xcd\x73\xc3\xe6\xab\xd3\x11\xc7\x50\x5d\x56\x32\x4d\x57\xaa\x6c\x07\xce\xf6\xb8\x77\xea\x4e\x7d\x1f\x8c\x4b\xd4\xe8\x2c\xd1\xf3\xa0\x72\xa6\xaa\x2a\x5a\xd8\xe8\xa8\xce\x9b\xd6\xb1\x35\xbb\x32\x06\x5b\xae\x32\xfd\xad\x12\xd0\x2d\xcb\x76\x2a\x17\x46\xa4\xd6\xf4\x85\xb9\x36\xdd\x1a\xbd\x44\xb5\x9e\xaa\x2d\x57\x5c\x27\x94\xa4\xb9\xbd\xae\x85\x0d\x84\x8a\x92\x34\x71\x24\x36\xe0\x16\x3d\x75\xd0\xbf\x74\x57\x5c\x41\x96\x2c\xfb\x0d\xbe\x1b\x9e\x2c\x81\x51\x7e\x54\xab\xe1\x06\xea\x90\x0b\xaa\xba\xe4\x4a\xbd\x70\x38\x17\xf6\xab\xda\xaa\xb8\x33\xc4\x8a\xca\xd6\xaf\x6f\xed\x99\xda\xde\x80\xfe\xbc\x4e\x7b\x82\x06\x69\x55\xa3\x70\x3d\x1b\x2d\x9f\xe7\x4d\xba\x35\xd5\x7a\x6f\xda\x6a\x11\x0c\xeb\xeb\xce\x42\xe9\x8f\x1a\x6e\xc9\x6b\x85\x03\x79\xb0\xbc\x6a\x17\xa3\xa4\xb4\x5c\x75\xae\x80\x10\x75\xf5\x6d\xe1\xec\x76\xb5\xed\x79\xb7\x80\x59\xe0\xe6\xc4\xee\x1a\x57\xcf\x6e\x14\x68\x79\xf9\xb6\x1f\xc5\x4e\x2b\x60\x06\x81\x77\x83\xd9\xaa\x6b\x19\x15\x1a\xd4\xb4\xb2\x91\xf5\xf0\x2a\x70\xaa\x69\xd2\xe1\xaa\xa0\xad\x4c\x50\x97\x73\x98\x48\x19\x9b\x99\x64\xd8\x9d\x30\xf0\x85\x81\xeb\x2a\xb6\x14\xd4\x50\xc5\x0f\xed\x86\x54\x3b\x0e\x7a\x6f\xbd\xa9\x3b\xac\x78\x1b\x93\x6b\x4a\x35\x5b\x35\xca\x0d\xa6\x58\x6a\xd1\x2a\xb7\xb4\xab\x97\x43\x61\xe9\x34\xed\x93\xa1\x9e\xd9\x92\x57\x6f\xb2\x3d\xd9\x55\xb7\x4d\xbd\xc0\x6e\xcd\xb3\xca\x5a\xaa\xce\xad\x3d\x65\x03\x73\xfa\x1d\x6d\xcf\x04\xec\xa7\x63\x56\x19\xf4\xcc\x82\xb9\xa1\x00\x10\xeb\x88\xc4\x4a\x30\x5b\xb3\xca\x80\xdb\x34\x79\x7e\x24\x3b\x32\x08\x14\x45\xac\xf7\x06\xe2\xae\x33\xf7\x6b\x9c\x25\x55\xbb\xab\xd2\x8c\x9b\xc8\x45\xc5\x78\x3b\x99\xcd\xca\x68\x22\x0a\xfc\xbc\xbe\x6b\x0f\x57\x17\x26\x50\x43\xec\x8a\xaa\xa0\xae\xde\xa0\xcb\x91\x7d\xa1\xd9\x06\x62\xdd\xb0\x36\x1a\x04\x4b\xb1\xd9\x5d\x37\xcd\xa3\xbc\x5e\x22\x4e\x37\xae\xbb\x53\xaf\x2e\x4d\x54\x66\xd6\x28\x16\x8b\x8d\xe5\x45\xb9\x70\x1b\xed\x24\xd5\xc0\x14\x41\xfe\x8a\x41\xfc\xac\xc8\x92\xbd\xb7\x48\xff\x03\x82\x6c\xf6\xf4\xb6\x3c\x6b\x2c\x5f\x94\xda\x34\xb5\x6c\x55\x6b\xae\xde\x01\x43\x56\x0f\x11\x4c\xe4\x6b\x06\xbf\xb3\xfb\xd8\xf8\x89\x76\x25\xcb\xab\x9b\x85\xd9\x43\xf4\x2c\xde\xdd\x63\x11\x6d\xdc\xed\x51\x1b\x09\x78\xa3\x90\x38\x14\x61\x4a\xf2\x4a\x8d\xdb\x13\xc7\xea\xa5\xb2\x67\x54\x7a\x20\x14\x8b\xe2\xc0\x2d\xc9\xb3\xf1\xd1\xad\x04\x97\x5d\x7b\x3a\x3b\xdb\x5d\x4a\xb2\xc7\xe2\x70\x38\x7b\x1b\x50\xca\x50\x14\x64\x5a\xba\x76\x9c\x15\x3f\xa9\xf7\x4f\x25\x69\xb9\x1b\x14\x35\xb3\xb0\x3b\x76\x76\x03\xa7\xbb\xe9\x9c\xab\x27\x6f\x7d\xad\x6d\x54\x34\xe9\x75\x66\xe8\xb4\xbd\x9e\x65\xe1\x1a\xd2\x1b\x6f\x8b\x02\x4a\xb3\x5a\x97\xd5\xb2\x61\x5a\xfe\xb6\x69\xec\x37\x9d\xf6\x81\x0a\xb6\x2d\xa6\x38\xae\x37\x6c\x64\x88\xeb\xf6\xa6\x11\x86\xea\x9b\x3b\xef\xd4\x7c\x5b\x2f\x2a\x68\xbd\x74\x4b\x5b\x89\xe6\x0b\x4a\xcf\xda\x89\x85\xd2\xa4\x2d\x57\x95\xae\x75\x7e\x2b\x53\x87\xc9\x99\x69\x94\x37\x47\x83\x91\x07\x97\xf2\xc4\x72\xeb\x05\x7a\xbc\x29\x97\x79\x49\x13\xca\xb6\x59\xae\x8c\xeb\x95\xde\xb6\x5d\x5f\x1b\xfe\xdb\xe0\x70\x36\x8e\x9b\x60\xd8\xde\x55\xdb\xa7\xdd\x65\x7f\xee\x3b\xe7\x3d\x7d\xee\x2b\x4b\xab\xd9\xf2\xbb\xe5\x46\x6f\xd7\x3a\xca\xcd\xed\x69\x45\x79\x6b\xcb\x1d\x97\x5a\x97\xfd\xca\x2c\x52\x15\x6f\x52\x98\xf1\x56\xab\xaa\x6a\x07\xa3\x60\x5e\xf6\x20\xd4\xd9\x4d\x45\x98\x08\x9b\x72\x93\xad\x7a\x4e\x67\x1a\x1c\xfd\xaa\x50\x2d\x76\x42\xbb\x23\xb5\xc7\x15\x87\x3b\xb5\x7d\x95\x76\xa4\x72\xc5\xdb\x6f\xbb\xbb\x9d\xef\xeb\xbd\x69\x67\xd5\xb9\x74\x9a\x85\xf6\xaa\x43\xf3\xc3\x5e\xd7\xbd\x6a\x65\xe7\xb0\x93\x2e\x8d\x6d\xbf\x23\x0c\xc6\xa5\xbe\x07\x73\x29\xbb\xd7\xaf\x16\xc6\x9a\x58\xeb\x30\x0d\xbf\x65\x6a\x5a\xe1\x20\x06\xc6\xb0\x74\xac\x77\xda\xfd\xde\x60\x39\xdc\x06\x0d\x8f\xde\x6b\xdc\xdb\x65\xc8\x2e\xae\x41\xab\xb8\xd0\x41\xbc\x8c\x77\xa7\xb1\xd5\x5d\x1c\x07\xb5\x72\x59\x1e\x72\xcd\x37\x86\x07\x8d\x7a\x2c\xd3\x46\x59\x6c\x54\x06\x55\x63\xe3\x36\xa6\x7d\xb6\x55\x2b\xb6\x0a\xa8\x5b\x5e\x3a\x5c\x10\xd3\x6b\x1b\xe8\x80\x12\x1a\x12\x83\xad\x53\xcd\x05\x2b\xb5\x73\x5d\x79\xdd\xe1\xaa\xd1\x6d\x70\xfe\xe6\x52\xaa\x05\x17\xbb\x26\x03\x91\x22\x20\xbc\xb2\x6a\xc2\x7c\x87\x56\x8e\x88\x95\xf4\xb5\x7b\x46\xaa\xd0\x1b\xcf\x56\x12\x26\x2c\x03\xaf\x6e\x0e\x60\x36\x86\x3a\x9e\xa5\x48\x5c\x1b\xad\x79\x7d\x35\xb8\x30\xb6\x24\xb6\xf7\x9c\x80\xf4\xc1\x59\x86\x79\x8d\x3e\x72\x43\x55\x72\x0c\x98\xcd\xb1\x30\x9b\xdb\x44\xb3\x39\x9b\x43\xd1\x37\x5a\xc3\xbb\x48\xa3\x0d\x85\x96\x05\x3e\x80\x0a\x03\x55\x47\x78\x9e\xf4\xe8\xc8\xe4\x73\x8e\x01\x3e\xf0\xc4\xf0\xd2\x95\x40\x7c\x8a\x2d\xef\x64\xd4\xd7\x3d\x12\xdc\xdd\x80\x2c\x9a\xa5\xd2\xdf\xff\xf8\x39\x77\x37\x1b\x7c\xcb\xf3\xd9\x07\xc8\x1f\xd1\x1d\xd0\xcd\x26\x15\xdf\x92\x9c\x28\x7e\xe1\xd5\x20\x75\x6f\xed\xf1\x90\x58\x3a\xac\x77\x72\x72\x18\x3f\x3f\x3b\x36\xc8\x77\xdd\xff\xe2\xfe\x49\xb3\xf6\x5b\xca\x13\x42\xbe\x0b\x97\xe9\xd6\xdd\x90\x49\xf4\x8f\xa5\xbb\x5e\xff\xd8\xf8\xf3\x45\x14\x84\xf3\x65\xc2\x73\xc9\xf9\x71\x4f\x1e\xfe\xf3\x67\x2d\xf8\xc7\x8b\xcf\x9f\x72\x67\x51\x0b\xbe\x45\x87\xbf\xdf\x77\x56\x71\xcf\xf6\xaf\x70\x85\x00\x83\x01\xfd\xb5\x1c\x1c\xd6\xe7\x3f\x63\xf4\xdd\x0f\xe2\x27\x77\x77\xa3\x81\xbf\xc5\x83\xff\xfd\xc5\x08\x26\x84\x71\xc0\x34\x94\x0b\x2e\x1e\xe3\x67\x70\xe3\xaf\xc1\xf3\xc7\xc7\x0f\x79\xd0\xfc\x9a\xbb\xa7\xdf\x33\x4d\xff\xb0\x16\xeb\xf5\x0b\xea\x79\x88\x4a\x15\x2c\xec\x0d\xae\x23\x45\xde\xd9\x23\xeb\xee\xd6\x59\xec\xdd\x43\xfa\x8c\x63\x3c\xe8\x5b\xfb\xc6\x2f\xc4\xcd\xea\xcc\x9f\x5f\x7e\xfb\x1e\xd5\x32\xcf\x49\xfa\xfd\x21\xd2\xeb\x1f\x8f\x59\x09\x10\xd9\xca\x31\xf7\xe6\xe5\x22\x1e\x71\xd6\x8b\x5b\x1e\xe2\xfa\x87\xb8\x98\x7d\xe0\xd1\xe8\xf2\x45\xf6\xea\xfb\xed\x2a\x77\x9c\x37\x1a\xcd\x34\x87\xbe\x88\xa2\xb8\x9b\xda\xb7\x06\x6e\x7c\xbf\x74\xcf\x8b\xf9\xf3\xcd\xc2\xd8\xc7\x11\xbe\xdc\xf1\xfc\x29\xc9\xbd\x83\x69\xe5\x6e\x11\x39\x9d\xa8\x94\xb0\x9b\xeb\x7f\xe4\x7c\x7a\xae\xdb\xdf\xbb\xd8\x55\x71\x24\x26\xbe\xc5\xd2\x22\x73\x8b\x31\x3f\xcb\xfb\xc9\x7f\xe0\x61\x4a\x0d\x80\xbb\xbd\x21\xfd\x3b\x49\x7a\x18\x89\xa7\x01\xbd\x65\x8a\xc6\x29\x17\x53\x19\x0a\x06\x51\xf9\x33\x0e\x32\x7e\xa3\xe6\xff\xf5\x2a\xfe\x79\x52\x28\xf2\xe3\xff\x71\xb9\x54\x70\xf2\x9b\x7f\xe0\x84\xc4\x1f\x44\x68\x36\xec\x5a\xed\xb7\xbc\x42\xbf\x52\x2d\x3d\x32\x11\x90\xc9\xfa\x15\xe9\x3d\x84\x37\x7e\x8c\x04\x50\xba\x07\x45\xbe\xbb\x4d\xc2\xbe\xbc\x1f\xcf\x69\xa7\x2e\xc6\xe4\x73\x4e\x16\x8a\x5b\xbb\x31\xab\x3c\x87\x20\x78\x94\x5e\xef\xe8\x95\x9b\x40\x4c\x77\xf7\x2b\x48\x2d\xfd\xf6\x2e\xcc\x7f\x6a\x7c\x12\xcf\x5e\x8f\xf7\xae\x3e\xe9\xbf\xeb\x31\x46\xee\x61\xba\xfb\xe1\xc0\xdb\x1a\x7f\x79\xc6\x79\xca\xbd\x55\x4a\x51\x93\x78\x84\x79\xda\x2e\x2d\x43\x6f\x2e\x85\xbe\x13\xcc\xe7\x7b\x54\xff\x4c\x81\x4c\xb7\xbf\x11\x77\xfd\x49\xe7\x49\xfc\xe0\x67\x5b\x24\x63\xaa\xa4\x7a\x80\xfd\x2b\xe0\x31\x7f\xf2\x79\x5e\x7a\x72\x57\xf5\x10\x3d\x3d\x74\xdc\xc3\xe2\x07\x20\xc5\xc2\xa2\x3d\xdc\x4f\x77\x8f\x9e\xcf\x08\x7a\xe2\x4b\x56\x8f\x61\x9e\x09\xbe\x9e\x2e\x61\x51\xf7\x4b\x58\x59\x47\xf5\x1f\x79\x0b\xba\xe7\x49\xd4\x15\x89\x03\x1b\xbb\xf9\xbf\x3d\xe4\x8d\xd0\x7b\x51\x31\x9e\xd2\x6e\xf4\x5f\xce\xd8\x0b\x37\x71\x9a\x04\xcd\xc8\x0c\xd0\x2f\x72\x17\x21\x8e\x57\x02\xf6\x8b\xe5\xfc\xf6\xe4\xee\xfe\x96\x37\xd2\xf1\x19\xd3\xf2\x41\xf9\xdc\xb2\x3e\xb8\xf0\xcb\x0d\x32\x9f\x25\x92\x5f\x71\x4c\x87\x6c\xc1\x54\xe0\xe9\x17\x81\x31\xbf\x54\x5f\x81\x44\xfb\x49\x62\x64\xee\x13\xbe\x7a\x80\x9d\xe4\xc9\xe5\xc7\x7f\xc2\x49\xd6\x4b\x10\x73\x7c\xf9\xbd\x7b\x49\x33\x7d\x55\x30\x16\x0d\x04\x3f\x0f\x11\x07\x5e\x04\x6f\x7f\xf0\xfa\x75\x0f\xe2\x50\x8e\x7c\x86\x90\x48\x00\xf1\x33\xb5\xd8\xa4\xec\x8d\x3c\x0e\x7a\xf0\x40\xf0\xe8\x47\x31\xc5\x44\x91\xb5\x9b\xa0\xcf\x3f\x5a\xce\x0f\xd0\x82\x6b\xff\x98\xf2\xf6\x95\x87\x9d\x17\x41\x15\x62\x6e\x2f\xe5\x94\x8b\x82\x83\xfc\x7a\x15\x6a\xf5\xfb\xf3\x58\xbf\xcc\x9b\x0e\xcf\x92\xc2\x44\x86\x7c\x4a\xcf\x09\x91\x17\xc0\x34\xf2\x3e\x01\x66\x36\xa8\xec\xbb\x50\x66\xb3\xa6\xa2\xce\xbe\x00\x25\x07\xc4\x1b\xe9\x7f\x06\xc6\x9f\xcb\xf5\xd4\x4e\xa2\xce\x7e\x7f\x9d\x0d\x73\xd8\x67\xb2\x6d\xb0\x89\xfa\x61\x3e\x77\x73\x6b\xf3\x39\x5c\xfe\x23\xa9\x44\xc1\x6b\x6e\x21\xb5\xa2\xd8\x34\x3f\x1b\xe9\x8b\xd8\x58\x8e\xa7\x28\x3b\x8f\x1f\x6a\xbf\xa5\xa8\xfc\x67\x23\x16\xcc\x8f\x11\x4c\x1e\x28\xff\xb8\x03\x73\xd8\x7a\xc5\xe1\x30\xef\xc1\x57\xac\x7e\x7f\x1d\xf6\x24\x75\x4b\xfa\x66\x65\x25\xa1\x80\x6a\x49\xe0\xe0\x67\xde\xc0\x72\x3b\xe9\x6f\xd4\xd1\x6c\xf7\xee\x2a\xb1\x72\x0b\x4d\x93\x8f\xb5\x42\xa6\xb2\x77\x90\x9c\xd2\x15\x29\xa3\xe3\xb7\xe8\x3e\xdb\x53\x44\x91\x2f\x55\xf1\x73\x76\x04\x43\x78\x9b\x43\x0d\xef\x94\xb9\x79\x90\xfd\x74\x89\x9c\x6b\xf5\xb5\xd4\x55\xfd\x38\xfa\xd6\x2d\x12\x4a\x9e\x40\x82\x21\x5d\x04\xd6\xde\xdd\x1d\xdc\x87\xd6\x63\x36\x4d\xa7\x3f\x29\xbe\xd7\x1e\x8e\x1e\x79\x80\x18\x4e\xb9\xcb\x34\xd8\xc4\x49\x7d\xdb\xdf\x54\xc0\x13\x9b\xc7\xed\xfe\xc0\x1d\x4a\x3b\x29\x7a\xb0\x46\x9e\x6c\x91\x6f\xe9\x36\x6f\x97\xd4\xcb\x1f\xc8\x0a\xfc\xdf\x78\xd1\xea\x29\x52\x5b\x3e\x26\xb1\x5c\xc9\x1f\xc0\x9b\x3c\x79\x2f\x19\xcb\x91\x77\xd2\x53\x8e\xd3\xf2\xd2\x41\xbe\xe4\x0e\xdf\x13\x50\x49\xc2\x13\x38\xb7\x84\x27\x40\x92\x94\x67\x10\xe2\x14\x68\x3c\xc3\x6f\x59\x79\x9d\x8e\xca\x96\x11\xd8\xc4\xb3\xec\x3b\x08\xfd\x00\x25\xaf\xba\xfc\xb2\x03\x18\xcc\x2f\x04\xec\x4c\x59\x6b\x38\x24\x62\x2c\xce\x2a\x39\xfc\x04\x2f\x29\x1d\x9f\x5a\x63\x8d\x48\xe9\x95\x31\x10\xaf\xac\x3e\x91\xd7\x8b\x52\xb7\x98\x3e\xc4\xce\x8a\xc9\x9e\xa0\xf8\x56\x32\x92\x3b\xc1\xaf\x74\xe1\x54\x60\xbe\xa8\x9e\x14\x64\x64\x1c\x52\x46\x25\xb1\x31\x73\xf3\x44\xcf\x2f\xeb\x8c\xee\xf7\x12\x5c\xc5\x86\x44\x06\x45\x91\x32\x8d\xa0\x7b\x65\x4d\x67\x0b\x44\x79\x23\xa9\x47\x2c\x47\x90\x68\xbf\x45\xaf\x84\x9c\xf0\x6b\x8c\x8f\xef\x5f\x2f\x18\xcf\xd0\x13\x24\x46\x92\x92\xe0\xf2\x26\x47\xfe\x91\x4d\x23\xbd\xba\x25\xc6\x0b\x79\x78\x02\x81\xa3\xb8\xbd\x9a\x17\x87\x50\xc5\x0f\x3c\x61\xfb\xcf\xd9\x7e\x31\x5d\xfd\xc0\xef\x0f\xd3\x39\xe2\x8f\xfb\x3e\x4d\x7c\x15\xe7\xcd\xfc\x8f\xd2\x73\x20\x37\xf2\x31\x35\x59\x6c\xe2\xa5\xab\xc7\xc9\x64\x2e\xc1\xdf\xb4\x5b\x33\x52\xb4\xaf\x0c\xea\x47\x93\xf7\xeb\xb3\xc3\xf7\x26\x84\x9f\x9a\x81\x67\x5c\x24\x57\x1e\xdc\x28\xff\xd9\x69\xfd\x67\x2a\x7d\x31\xc6\x69\xa2\xcb\x49\x4d\x28\xeb\xbe\xa0\xfd\x47\x94\x2b\xb3\x7e\x12\xcb\x92\x6a\x13\x2f\x3f\xa6\x2c\x8d\x4f\x21\x38\xe5\x9b\x3c\x6e\xed\x05\xa8\xbf\x72\xe6\x87\x95\xc4\xdf\x61\x4e\xee\x39\x7c\x3b\x2c\xee\x9a\x21\x37\xcf\x93\xc3\xfb\xbc\x5c\xd1\xe4\x3b\xe2\xef\x57\x6b\x45\x99\xdd\x1b\x22\x39\x32\x02\x97\x08\x85\x1f\x98\x40\x33\xd4\x1a\x8b\x97\x88\x66\x6f\xae\x3f\x9b\xff\xec\x7a\x43\xb4\x93\xe5\x6f\xe0\xf3\x21\x8f\xb1\xef\x5c\xf6\x8a\xf7\x63\x39\x98\x2c\x02\xfe\x38\xdf\x96\x1f\x93\x2f\x97\xa8\x6b\xff\x9c\x1b\xfa\xa4\xf4\xad\x56\xb0\xce\xfc\xf5\x1a\xa3\x87\xcc\x43\xff\xf1\x3c\xab\x7c\xda\x07\x4b\x63\x18\xec\xa9\x72\xc6\x55\x7e\xd2\x00\xa8\x43\xeb\x3f\xb0\x71\xf6\xad\x80\x5d\xf6\xa4\x05\xcd\x53\xd2\x5d\x7e\x65\x16\x9a\x2a\xd9\x85\xa6\x64\x6a\x90\xef\x9e\xfb\xcb\x6c\xfe\x67\x19\x38\x6d\xda\xbd\x20\xe0\x38\x4b\x9e\x7e\xfe\xef\xcd\x62\xee\x4e\xbf\x61\xb7\xe5\xd3\xed\xfc\xdb\x7f\xe0\x2d\x00\xbc\x86\xf9\x03\x2f\x55\xef\x41\x2b\x92\x6c\xbf\xfd\xfe\x2e\x91\xbc\x87\xed\x1f\xdf\x70\xec\x82\x7c\x74\xc7\x69\x7f\x24\x50\x60\xaf\xc1\xdf\x80\x00\x16\x8b\x6d\x04\xcd\x3d\x74\x73\xa3\xde\x80\x9c\x1f\x80\x71\xb7\x6a\x1a\x3f\xa9\x56\xab\x05\x13\xae\x16\xc8\x87\xd7\xd5\xdf\x60\x6a\xd4\x9b\x5f\xa9\xbe\xf5\x13\x6a\x6f\x46\x2b\x32\x9f\xa9\xbe\xd5\xaa\x7c\xa5\xfa\x32\x45\xea\xc7\xaa\xe6\x73\xf5\x97\x5b\x95\xd2\x97\x1a\x20\x1d\x68\x60\x27\xb4\xb8\x81\xf7\x8a\xfd\xca\x98\x67\xef\xcf\x90\xbf\xb0\x5e\x95\x63\x35\xdc\xad\x8b\x54\xb4\x92\x67\xb0\x92\x58\x93\x11\x40\x29\x35\x9f\x76\x01\x9f\x65\xdc\x52\xbe\x93\xae\x57\x1a\x31\xd9\xdd\x7b\xa5\x13\x93\xf4\xc4\x63\x64\xd6\x7f\xf3\xa3\x8d\xf1\xc2\x10\xf9\x58\x2f\xde\xb4\x41\xf5\x61\x6a\xf7\x8e\x9a\xfe\x1a\x56\x72\x85\xd9\x43\x13\xb7\x7d\xd2\x7f\x06\xfd\x7f\xa6\xa1\x98\x6a\xbf\xd2\x10\x1e\xe5\xfa\x8b\x9d\x80\x87\xd6\x92\xbd\xde\x8c\x69\x11\x99\xd5\xf1\x40\xfe\xf6\xfd\x7d\xf8\xf2\x8a\xfc\xfe\xb8\xc6\xfa\x4e\x08\x54\xd2\xfe\xe7\x4c\x92\xa4\xe9\x0f\x73\xff\xfe\xec\xbd\xae\xfa\x7e\x73\x1f\xd4\xff\xde\x8c\xe2\x79\xcd\x22\x77\x6e\xf1\x44\xbc\xc4\x94\xca\xb1\x44\xfe\xfe\xf7\xbc\x0c\xd1\x1e\x48\xfc\x35\xbd\xad\xf7\xe8\xdb\x39\xdf\xe3\x73\x96\x19\x5f\x2f\xb3\xa4\x52\x1e\x0c\xbc\x8c\x33\xbe\xd4\x36\x56\xce\x24\x27\x67\xff\x2f\x67\x1f\xf3\x26\x26\xe3\x83\x11\x39\x26\xe4\x6d\x55\x27\x17\x23\x91\x19\x1c\x83\x49\x0e\x79\x3c\x6f\x52\x64\x87\x3f\xae\x21\x87\x7e\x32\xd8\xcd\x6c\x4a\xfc\xac\x80\xe0\x4e\x5b\xab\xf5\x16\xd6\xa6\xd1\xf4\x2a\x0f\xae\x98\xc8\x32\x55\x7e\xcf\xcb\x17\x93\x5b\xb6\xed\xd4\x2e\xe4\x7b\x95\x93\xbe\xbf\x5b\x6b\x84\x9d\x78\xf4\x7e\x2c\x4e\x8b\xed\x21\x48\x47\x8d\x8f\x19\xe1\x35\x91\x45\x9e\xf1\xe2\xcd\xa8\xbc\x15\xc1\xf7\x29\xfa\xff\x11\xc3\xf9\xab\x36\x55\x5e\x1f\x5e\x1a\x54\xd1\xe1\x06\x4c\x2e\x2f\xd7\x0a\x72\xe7\xe9\x11\x36\x63\xba\xcf\xab\xe5\x71\x87\xf1\x1e\xd2\x3e\x8a\xba\x1f\xc5\x3a\x7a\x71\xbc\xe3\xa1\xae\x98\x12\x1e\x36\x08\xf2\x5b\x7d\xda\x08\x4f\x2d\xff\x45\x6d\xe6\x2f\x03\xbc\xde\x19\x7b\x8a\x88\xfd\x68\x2c\xe5\xda\x05\xb7\x69\x76\x35\x77\x11\x37\xb3\x60\x96\x0d\xb6\xfd\xb8\x0f\xf2\xa9\xf5\x8f\x5b\x73\x91\xa0\x89\xd5\xd8\x03\x06\x1f\x96\x1e\x93\x4c\x8f\xec\x51\x6e\xb4\xbe\x27\xff\x7e\x36\x7e\xcb\xad\x30\xc2\x4a\x4e\xb5\x49\xc2\xcb\xca\xa9\xd2\xf7\xe4\x5f\x52\xf9\xda\x9f\xce\xc9\x29\xaf\xec\x78\xe7\xcc\xc5\xee\xfe\xd8\xef\xef\x0f\xbb\xca\x49\x65\x84\x10\xb2\x5b\xba\xcf\xbc\xf7\x10\x9d\xec\x71\x94\x22\x31\xbb\x98\x93\x71\xca\xae\xe6\x25\x49\x2f\x09\xa3\x9a\x4f\x18\x0f\xd0\x2e\xdd\x35\xf0\x18\xf6\x03\x88\x7b\xfc\x04\xe0\x03\x54\xb7\xdc\x84\x6e\x3e\x71\x40\xe0\xe7\x62\xbf\xf7\xf7\xdf\x9f\x3f\x65\x07\x28\x37\x43\x6a\xe4\xfe\x6d\xda\xa2\x28\xaa\xf2\xca\x66\x25\x05\x1e\xc3\x3b\x95\x96\xb7\x95\xca\xb8\x92\xf9\x6c\x56\x9e\x95\x73\xe0\xfb\x75\x5f\xd9\xcd\x4b\x48\x2d\xfc\xbe\x6a\x3c\xcf\x96\xfd\xa8\xbd\x78\x3e\x94\x64\x6e\xd5\xac\x9a\xf5\x41\xe6\x27\x59\xf0\xe3\x7e\xfa\xab\xb2\xac\xbc\x2c\xfd\x8a\xdf\x6f\xc5\xe7\xd6\xd2\x5a\x3e\x1c\x48\x7c\x10\xc7\xc9\xac\x24\x47\x1f\xa6\x26\x18\x79\xc7\x82\x22\x8b\x27\x97\xc0\xef\x4b\xe8\x0f\xbb\x19\xf7\x84\x5f\xa9\x4a\x3e\xb1\x25\x96\xdb\x0c\x2e\xfc\xdc\xca\xaf\xfb\xf7\xc7\xb5\xfa\xa7\x46\xb2\x2d\x3f\x34\x12\xed\x0e\x90\xca\x9e\x4d\xee\x7b\xb6\x54\x6b\x9f\x3a\x03\x43\x0e\x28\xdd\xf5\x56\x23\x52\x5c\x8f\x88\x7c\xd5\x78\xe1\x99\xb3\x3e\x02\x21\x7b\x6c\x26\x39\xde\x40\xda\x3b\xee\xc2\xe9\x7e\x9e\x42\xdd\x6d\xdf\x32\x3e\x94\x42\x76\x54\xa3\xb3\x7b\x2f\x67\x6c\x9f\x59\x0e\x4f\x6d\x4e\xc6\x5d\x8d\xcf\xe5\xc5\x10\x3c\x4c\xb7\xbe\x3f\xe7\xc8\x9f\x5f\xbe\xd7\xcc\xc3\xc0\x3e\xd4\xf3\xe5\x1d\x97\x3f\x55\xfe\x61\xde\xfd\x21\x56\xe2\x46\x5e\xae\xd1\x3c\xad\x76\x96\x77\xe7\x97\xf3\xac\xa7\xf5\xd0\xf7\x9b\xb8\x61\xf6\x93\x2b\x23\x4f\x15\xbd\x5c\x0a\xf8\x68\xae\x5f\xcb\xcc\x79\x5f\x02\x98\x99\x8b\xbe\xcc\xf5\xfb\x27\x8e\xeb\x7d\x16\x25\x49\x6b\xdf\xbf\xd0\xdf\xdb\x48\x7d\x76\x85\x23\x3e\x54\xfb\x72\xb9\x36\x37\xfd\xd5\x5e\x6a\x6e\xee\x9c\xc0\x98\xef\x1f\x21\x26\x81\x6d\xc0\x9e\x6f\x65\xa8\xeb\x7e\xf7\xe3\xe9\x60\xf1\x5f\xb1\x1d\x11\x83\xfe\x8e\x28\xc8\x97\x01\x7f\xe1\xda\x43\x2e\x04\x29\x3b\x22\x17\x8e\x5f\xd9\x09\xdd\xed\x38\x74\x4a\xf2\xa7\x4f\xfa\x25\x27\x63\x73\x10\x5b\xce\x1b\xc2\x74\x23\x69\x7b\xe1\x35\x58\x99\xbc\xc9\xbc\xf8\xcb\x30\x7e\x74\x72\x25\x1f\xe8\x47\x3b\x23\xc3\x13\x99\xb3\xc2\x37\xda\x49\x88\xe9\xe9\xf2\xc6\xbd\xda\xe7\xb5\xb5\x67\x3b\x3c\xf2\x8c\xbd\x3e\xba\x29\x23\x27\x4b\xe5\xa9\xc5\x99\xc7\xfd\xad\x6c\xb9\xc7\x55\xb3\xd4\x41\xc2\x38\xb7\x1f\x5f\x20\xc9\x33\x89\x52\x06\xcc\xf3\xf2\x63\xed\x49\x0e\xbc\x56\x9a\xf9\x6d\xfd\x4a\xe6\xde\xf7\x09\x68\xed\x49\xa2\x25\x0a\x29\x4f\xb5\xa7\x8e\x65\x47\xc5\x1b\x1f\xcc\x5f\x5f\x54\xf6\x70\x5a\xe8\x55\x10\x92\x3c\xcb\x32\x15\x4f\xe3\x79\x77\xf7\xe5\xa1\x80\xff\xa0\x6a\xf3\x85\xfd\x18\x4f\x2f\x9b\xf6\xea\x7b\x34\xd8\x64\xcf\x39\x89\xdb\x16\xf5\xfa\x36\x3e\x78\x5f\x90\x6c\x0e\xa6\xe3\x72\xa4\x62\x16\x3c\x9c\x33\xb8\x47\xff\x48\xa2\x80\x25\x41\xc0\x6a\xa9\x53\xef\xf1\x09\xae\xca\x3d\xfa\xcb\x2e\xb2\xd6\x3e\x1c\xa0\xd8\xf6\x22\x54\xf4\x4c\x57\xc9\x51\xc9\x94\xe9\xf0\x51\xd5\xf1\x70\x3d\x42\x5b\xbe\xed\x31\x67\xb6\x49\xff\x15\x83\x70\x03\x33\x9a\x06\x7c\x09\x05\xf1\x29\x9b\x7f\xdc\xcf\xdd\xbc\x40\xc1\xbb\x75\xbf\xc0\x41\xaa\x05\x8c\x8e\x7f\x39\x0e\x3e\xa4\x80\xd2\x5d\xe2\xe6\x0d\x4e\xe6\xe0\xfc\x27\xc7\xbc\x9c\x74\x36\xee\xf8\xc7\x9d\xfc\xf1\x5e\x2f\x7f\xbc\xea\xe6\x8f\x54\x3f\x3f\x1e\xe7\xd2\xf3\x00\xa4\x2f\x8d\x7c\x4b\x8f\xee\x67\x47\xb6\x9c\x33\xac\x9f\xee\x74\xb9\xfa\x4e\xa7\x93\xc4\x57\x09\xd1\x99\xb4\xe8\xf2\xd8\x7b\xbd\x7e\x9a\x5c\xbd\x64\xf0\xf4\x40\xbf\x5f\x71\x0a\x01\xe9\xea\xe3\x8e\x7f\x89\xc3\x7f\xbc\x8b\x84\x1f\x2f\xb1\xf0\xe3\xf3\x68\xf8\x96\x45\x46\xc6\x5c\x23\x70\x3f\x9a\x66\x71\x75\xef\x72\xce\x13\x16\x3f\x5b\x32\x1d\xb3\x23\x2b\x0f\xd3\x35\xbc\x4f\xcd\x4f\x02\xea\xd3\x45\xd3\xad\x67\x25\xd1\xab\x48\x1d\x6c\x5c\xfe\x9f\x8f\xd4\xa1\x44\x91\x3a\x50\x48\x22\x75\xd8\xb6\x47\x93\x70\x1a\x0c\xf1\xa1\x65\x08\xc4\x27\x59\x7f\x79\x94\x70\x2e\x9a\xb8\xeb\xe2\xce\x5b\x63\xd2\x25\x31\x23\x48\x0d\xe3\xc8\xa7\x17\xf1\x29\xe6\xf9\xcd\x8a\x42\x1c\x6f\xe1\x74\x7a\x24\x38\x6b\x63\xac\x22\xb5\xd9\x9c\xe1\x4a\xcf\xc4\x2b\x85\xe9\xe3\xa8\x1c\x28\xb4\x68\x12\x64\xe3\x44\xaa\x5a\x45\x3e\xc4\x06\x14\xa2\x71\x53\x9d\xa8\x52\xe1\x7c\x32\x2a\x1c\xdd\x25\x1e\xf3\x11\x1b\xb9\xac\x90\x01\x26\x27\xc4\x9e\xe3\x79\x9c\xab\x4c\xbe\xda\xc4\x67\xd8\xc8\x32\x77\x47\xec\x87\x84\xf8\x08\xa3\xb5\x09\x7d\xb2\xaa\x6a\x1c\xe1\x02\x71\xa7\xc4\x11\x5a\x08\x6d\x44\x91\x36\x10\xd2\x43\x1a\xfb\x42\x43\x9c\x45\x0f\x11\xbf\xc1\x59\x5a\x2a\xa4\x4a\xb9\x8e\xdc\x68\x2e\xef\x2b\x71\x05\xc7\x86\x15\x5b\xb4\x8b\x05\xb6\x48\x21\xd1\x8e\x1d\xae\xd1\x0f\x19\x13\x9f\xe1\x51\x2a\xc1\xd2\x3d\xd2\x06\x8f\x51\x1a\xc5\x23\x69\x93\xac\xa4\x16\x0e\x49\x7d\x76\x8a\x23\x19\x14\xa3\x7e\xe0\xf7\x49\xfc\x4e\x17\x0b\x9d\xbe\xa2\x62\x5f\xf1\x8f\x90\xa5\x3c\x8b\x67\xba\x82\xbd\x15\x5a\xb5\xf8\x1b\xfd\x08\x5d\xf7\xba\xa2\x6f\xe5\xef\x7f\x18\xde\x6a\x4f\x8d\xbf\xa9\xa4\x1a\x5a\x56\xb9\x35\x09\x3e\x40\x77\x4a\xdd\xab\x51\xa5\x87\xc6\x84\x77\x74\x9d\x0d\x39\x41\x0e\x8d\x13\x1a\x18\x65\x1c\x8b\x84\x0e\x71\x54\x03\xf8\x85\x21\x63\x90\x25\xd8\x48\xa7\x39\xdb\x12\x68\x95\xa3\x91\x6a\x71\x8c\x6a\x88\xcb\xd0\x80\x67\xb3\x48\x87\xb1\xcf\x12\x81\xc2\xf5\x0f\x48\xfd\xac\x15\x45\xaa\xb8\x4a\x4b\xa4\x19\x23\x1e\xea\x90\x2e\x9c\x2b\x5f\x70\xfd\x63\x44\xdb\x96\x44\x1b\x48\xa0\x6d\x5d\x02\x9c\x88\xb4\x0d\xdf\xc2\x29\xf6\x95\x8d\xd3\xe0\x5d\xe7\xe1\x37\xea\x2f\xd0\xd7\x40\x65\xaa\x68\x4c\x21\x2e\xc4\xfd\x55\x8b\x08\xe0\xee\x3a\xd6\x58\x54\x39\x1d\xda\xdf\xd2\x6e\x93\x96\x3d\x7d\x10\xc3\x0b\x65\x0d\x9e\x0e\x6d\x20\xb7\xd9\x8c\x0e\x31\x8c\x1c\x4d\x87\xaa\x5c\x0c\x6d\x8e\x3c\x57\x9b\x02\x6d\xdf\xf1\x09\xf5\xaf\x6f\xf5\x9f\x39\x8c\x9b\x2b\x8e\xb2\x91\xe0\x46\xba\x48\x5b\xa8\x1f\xe0\x33\x44\x86\xc0\x8f\x61\xb5\x01\xce\xd1\x0c\xfa\x2e\xc1\x77\x8c\x23\x89\x0e\x71\x1a\x6e\xfb\x36\x1e\x38\xf2\x85\x79\x9c\xb6\x7b\xb7\xc8\x17\x31\x45\x95\x80\x3d\xc7\xe4\x09\xd8\x84\x9b\x1b\xf1\x18\x12\x38\x50\x5e\xe4\x8b\x05\xa6\xd3\x14\x45\x0e\xf4\x17\xbe\x0b\x9f\xdc\xdc\xd3\xb7\xfc\xb8\x7e\xf8\x3b\x84\x68\x80\x14\xeb\x4e\x2c\x00\x3c\x8e\x57\x83\xe3\xf9\x20\xc9\x46\x6f\xf6\x0d\x7e\x89\xd0\xbb\xfa\xaa\xea\xdb\x5f\x0f\xb5\xa9\x7b\x3e\x15\xde\x13\xb8\xa3\x72\x3d\xe0\xd7\xfb\x7b\x08\xef\xcc\xbd\x5e\x1a\x97\xe7\xef\xfd\x81\x26\xc7\xc4\x47\x63\xf2\x8e\x63\x02\xb0\xd2\xed\x1d\xe0\x2d\x61\x2f\xff\x98\x0f\x69\xb4\xba\xb7\x97\xbc\x27\xed\x25\xef\x49\x7b\xf1\xfb\xad\xbd\xe4\x3d\x69\x2f\x79\xc7\xe5\xd9\xd5\xed\x3d\x69\x6f\xaa\xde\xa2\x30\x9c\xe2\xa8\x08\x63\x1c\x15\xc1\xb2\xe9\x2b\x8e\xf2\x40\xa2\x11\x30\x24\x0a\xc4\x11\x73\xf8\x53\xfe\xcd\x1a\x47\xb9\x38\xcd\x2a\x54\x5e\x5d\x03\x5c\x97\x19\xd2\x65\x1c\xc9\xc0\x50\xa3\xc8\x11\x46\x88\xd3\x4b\xb8\x6e\x12\x99\x41\xbb\x45\x70\xc0\x1e\x82\x2c\x1c\xf9\xe0\x18\xc3\xe0\xc4\x91\x10\x56\xe9\x08\x14\x83\xb8\x9d\xe1\xad\x1d\x74\x8c\xb0\xf8\x7e\x44\xa2\xd4\xdf\x5f\xed\x89\x73\xd5\xd2\x47\x24\xae\xd1\x88\x68\x05\x32\xc2\x03\xfb\x23\x4f\x9c\xac\xb6\x32\x08\xfd\xb5\xf0\x7f\xe6\xc4\xe9\xa5\xa9\xb0\x13\xae\x58\x6a\x0d\x95\x2b\xe6\x16\xe2\xad\x14\x11\x56\x12\x90\x24\x85\x0b\xd5\xc0\x31\x1c\xf0\xfb\x95\xd4\x41\xba\x3c\x44\xad\x02\x65\x3b\x89\x56\x64\x97\x31\x89\xa2\x98\xe5\xb8\x58\x0b\x02\x91\x10\x16\xe8\xe2\x24\xd6\x20\x5a\x71\x8a\xd3\x70\x52\x23\xd2\x82\xf8\x3f\x32\xea\x88\x68\xb1\x26\xf1\xa8\x70\x4e\xc2\xa5\xb1\xfb\x4e\x1a\xb4\x2b\xb7\x49\x3c\x67\xaa\x09\x35\x13\x28\x19\x50\x1f\x89\xe7\x4c\x9a\xb4\xcf\xf3\x38\x59\x23\x5a\xb1\x96\x78\xce\xe4\xb3\xee\x40\x71\x17\x38\x1c\xa0\x07\xaa\xe3\x68\x46\xb8\x53\x14\x89\x35\xa5\xa2\x7a\x81\x0e\x99\x02\x1d\xb0\x05\xda\xe6\x44\xdb\x47\xc2\xa8\x5f\x74\xa9\x60\x01\x54\x6c\xea\xc5\x82\xe2\x86\xa1\xe8\x56\x4e\xd4\xba\xef\x94\x68\x0d\x37\xc1\x48\xec\x99\xfc\x76\x39\xf2\x8e\x64\x11\x83\x3a\x07\x29\x81\x40\xbb\xa8\x76\x9f\xd3\x3a\x63\xe1\x82\xd6\xed\x1b\x05\xd7\x76\x38\x36\xca\xac\xd2\x3a\xce\x87\x74\xb9\x33\xd1\x2f\x1d\x71\x24\x74\x38\xb5\x3a\xd7\x8d\x50\x63\x9d\xb2\xe6\xd1\x5c\x6f\x82\xbf\x69\x34\xe9\x81\x41\x38\x4b\x42\xc4\x13\xab\x8a\x23\x79\xb4\xb1\x1c\x1c\xd9\xcc\x12\xf5\x00\x55\xc5\x8b\xce\x9e\x92\x7f\x47\xf8\x77\x38\xb9\xc5\xc5\x86\x37\x8e\xaa\x67\x32\x3d\xcf\x2f\xf4\x3d\xaa\xa2\xba\xa1\x57\x5d\x4b\x01\xbf\x92\x8e\xaa\x6b\xd4\x45\x8f\x72\xbb\x8e\x7f\x14\x5c\x6a\x2a\x3b\xd4\x42\x64\xfa\x81\x5e\x38\xab\xbc\x2b\xb9\x82\x6b\x4c\x15\x48\x13\x3d\x63\xd1\xc3\xdf\x5b\xe4\x7b\x41\xf6\xa8\xa3\xca\xa0\x46\x63\x46\x9d\xaa\x3c\x3d\x56\x56\x52\xa5\x0f\xc6\x90\xd4\x3a\x0f\xab\x3c\x1a\xc3\x73\xa1\x4b\xea\xaf\x31\xb2\xe7\xdb\xf8\x7b\x03\x7f\x77\xa8\x8a\x08\xed\x40\x9d\x1b\x11\xda\x92\x5c\x09\xda\xf4\x03\xa9\x50\x1b\x28\x34\x6e\x0b\xd2\x3d\xdf\xed\xbb\x46\x41\x59\x21\xbb\x57\x68\x55\xe6\xad\x4a\x73\x04\xf5\x40\x7d\x05\x80\xc1\x22\x30\x40\xfd\xb8\x4f\xd0\xee\xb1\x9f\xee\x03\x23\x9d\x1a\xa0\x02\xe2\xfa\x5d\x09\xda\x90\xe3\xbe\x75\x5d\xa9\x29\x15\x22\xf8\xa0\x8d\x4d\xdf\xad\x21\x89\x3d\x9d\xe6\x6e\xc1\x18\x01\x9e\x74\xfa\x11\x4f\x35\x5c\xff\xa6\xe7\x00\xbe\x78\xe8\x3b\x6d\x14\x24\x2f\xc2\x07\xe0\x65\x21\xba\xc8\x6b\x44\xdf\x5d\x11\xda\x13\x48\xbf\x30\xfc\x94\xdb\xbb\xc1\x2f\xab\x3a\xfc\x1b\x01\xcd\xb4\x23\x3e\xec\x00\x25\x0a\x6a\xe4\xd4\x96\xef\xa0\x31\xe6\x36\x30\x34\x13\xab\xac\xaf\x43\x2a\x93\x6f\x74\x69\xf9\x9c\x8d\x49\xad\xd9\xf5\x69\xaa\x5f\x04\x6b\x8c\xc4\x4d\xb3\xd1\x9d\x5d\x6e\x7f\x37\x7d\x48\x52\x09\x2b\xeb\x51\x1c\x22\x44\x54\x06\x1d\xbb\xf5\x65\xec\x58\x7b\x62\x3a\x63\xc0\xca\x3b\x15\x5b\x24\xde\x19\x49\x64\xc3\x72\x31\x7e\x5f\x16\x3d\xf6\x52\xba\x59\x73\xa9\x3f\x9a\xc4\xc5\x0a\x51\xff\xae\xc5\x11\xcc\xca\xfc\xeb\xff\xab\x5a\x1c\x7f\x65\xe2\x8c\xac\x8d\x3d\x04\xdf\xe3\x53\xb1\x77\x6d\x8e\x22\x67\xbe\xb4\x98\x8e\x4f\x05\xe9\xab\x74\x7c\x2a\x48\x1f\xa5\xe3\x53\xf1\x58\x1b\xa6\xe2\x53\xd1\x38\xa6\x4f\x2a\x3e\x55\x17\xd1\x5e\x3a\xfe\x14\x9b\x8c\xcf\x2d\xfe\x14\x6e\xef\x1e\x7f\x2a\x6a\xef\x1e\x7f\x2a\x6a\x2f\x1d\x7f\x0a\xb7\x77\x8f\x3f\x05\xf9\x6b\xe9\xf8\x53\xa4\xbd\x1c\xcd\x38\xc2\x31\x90\x48\x2c\x25\x1c\x6b\x89\x68\x3a\x1b\xb1\x1c\x02\x11\x1c\x3e\xe7\xbf\xcb\xaf\xbc\xba\x72\xe2\x29\xed\x6e\x71\x85\x70\xdd\x58\xd3\xa7\xe2\x17\x81\x99\xb4\x25\xf1\x91\x62\x18\x40\x7b\x93\x78\x49\x26\xd1\xd2\x12\x5a\x90\x78\x47\x71\x3b\xdc\xbd\x1d\x25\x1a\x66\x36\x8f\x02\xf2\xfe\x1e\x3d\xab\x3d\xf9\x00\x88\x2e\x54\x13\xa7\x42\xa9\x43\xd7\x2f\xd7\xc9\xf3\xe6\xa8\x59\x3f\x61\x29\x97\x06\xff\xdc\xf9\xb6\x0f\x21\xcd\xf1\x76\x76\xdf\xed\x78\xaf\x1b\xb7\x60\xdb\x37\xdf\x6d\xcb\xd2\xbc\xf1\xf7\x97\x37\xec\xbf\x7d\xa2\xf8\xf4\xb1\xf8\xab\xfd\xfd\xf4\x6d\xca\xcf\x6e\xf0\x3f\xb6\xf8\x37\xdc\x62\xeb\x6f\xf9\x3b\xfc\x1f\x97\x6c\x46\x25\x93\x43\x74\x0f\x57\x21\x93\x6b\xd4\x1f\x56\x33\x8d\xaa\xd9\xf8\xf3\xe9\xfa\x85\x43\xbb\xc8\xb1\x55\xca\x17\x5a\x99\x2c\xa6\xd7\x92\x15\xb1\x5a\xd6\x67\x1d\x39\x39\x11\x5f\x98\xb8\x6f\x61\x44\x8b\x9a\x54\xed\xdf\x9f\x96\xe8\xdf\x0d\xcb\x8d\x37\x64\x1f\x97\xf9\xab\x1f\xde\xe6\xfb\x2b\x3d\xad\x65\x1d\xbd\xf8\x3b\x12\x57\xfb\x7b\xd4\xab\xef\xf9\x8e\x5f\x08\x32\xa3\xbb\xcc\x69\xd7\x1a\x85\xff\xf5\xfd\x9e\x9a\x4e\x88\x8e\x23\xe0\xec\xbf\xa5\x8f\x0e\xa4\xb7\x4a\x6f\x5d\x4c\xa5\x67\x36\x49\x33\x5b\x41\x71\x13\xf7\xeb\xb0\xef\x6c\xc2\x3e\xd6\x9c\xb7\x03\x9b\x53\xf9\x4f\x6b\xed\x07\x4f\xa1\xee\xf3\xaf\xd1\xfd\xa8\x44\x01\xd1\xe3\x45\xde\xf8\xed\x1e\xe5\x3e\x75\x61\x2e\xe5\x00\x25\x5a\x12\xbd\x9f\xb1\x8a\x69\xaa\x02\xdf\x53\xb1\xd6\x93\xd7\xfb\xf9\x66\xf2\x7e\x5b\x8e\x4e\x43\x1b\x6f\x48\x67\xb7\x44\xe3\x0c\xb1\x73\x8b\xec\x36\x59\x5a\x52\x2a\xd3\x83\xff\xfd\xef\xe2\x62\x7d\x5a\x60\x86\xfb\xd6\x5d\x1c\x17\x7f\xff\x8e\xf6\xee\x74\xfd\xfd\xf6\xf5\x7b\x00\xf4\x00\xd4\xb3\x77\x33\xb1\xed\xff\xaf\xc4\xc7\x7f\x72\xe9\x04\x18\xc5\x98\xa9\xec\xb3\x3b\x6a\xef\xc4\xbf\xcf\x0c\x47\x1d\x2f\xd8\x67\x8e\x96\x57\x73\x1c\x77\xe4\x7b\xfc\xc8\xd0\xd6\xbb\xf7\x65\x32\x83\x16\x7b\x59\xcc\xba\x53\x8c\x3c\x1b\xc2\x3b\xf6\x6b\x13\xc9\xa6\xd4\x96\x71\x0a\xe2\x27\x78\xa9\x1b\x2a\x22\x1c\x64\x05\x51\x4e\xcb\xf1\xad\xfd\x3c\xa7\x8a\xc9\x65\x87\x57\xa7\x98\x73\x2b\xba\x79\x97\x81\x5c\xdf\x62\xbf\x75\x7f\xfb\x9f\x57\x7e\xee\xde\xaf\x22\x72\x07\xf0\xba\x96\x28\x3d\xb7\xa2\xb4\xf3\x8c\x8f\xfd\x45\xbe\x04\x87\x1c\x5a\x7b\x74\xd4\x91\x0b\x74\x21\xeb\xaf\x23\x75\x57\x24\xc6\x63\x13\x46\x2e\x13\x4b\xbb\xf2\x20\x6c\x32\xd5\xfd\x72\x53\x86\x0c\x19\xeb\xe6\x3e\xbd\x6d\xf4\xe8\xe1\xee\x66\x4a\x90\xda\xa2\xf3\x98\xfe\x36\xc8\x1c\x5a\x5d\x2c\xf1\xff\xee\xbc\x92\xe2\x94\x57\x57\xe6\xb2\x27\xea\x52\x1a\xf0\x7e\x04\x21\xdb\xe0\xaf\xf8\x34\x5a\xe6\x90\x5f\xe4\x6e\xe2\x4b\xc7\xfc\x23\x65\x1d\xab\xd8\xda\xe3\x36\x36\xd5\xf8\x59\xfb\xf7\x2f\xdf\x96\xfc\xe0\xe2\x40\xe6\xaa\xe4\x23\x0c\xcd\xe6\x13\x0c\xd4\xa7\x20\xc8\x5c\xa8\xfc\x00\x82\xec\x6d\xca\x47\x10\x1a\xd4\x23\x08\xd5\xc6\xa7\x40\x28\x53\xa5\x52\x1e\x5e\x6b\xf5\xc7\x0a\x2b\xcd\xcf\x55\x98\xb9\xc4\xf9\x51\xa7\x32\x37\x38\x1f\x61\xa0\x2a\x4f\x30\x94\xdf\x83\xe1\x46\x2b\x29\xbc\x66\xd5\x5b\xc2\x63\xfb\xb4\xee\x7c\xd6\xea\xe4\xbc\x49\xab\x94\x52\xda\xc4\x1d\x59\xee\x91\xf6\x3f\x41\xba\x8f\xe0\x24\xbe\x95\x62\x78\xbe\x25\xae\x96\x9e\x8f\x00\xbe\x50\x0c\x59\xf7\x11\xef\x94\xbb\xf7\xae\x96\xc9\x14\xf7\xf2\xe1\x6b\x9a\x85\x5f\x68\x84\xa8\xe5\x7b\x57\xb3\xfb\xe2\x0f\x9b\xa6\xcf\x53\x9d\xbb\xdb\xac\xd2\xc7\xdd\x7d\x29\xfd\x6a\x37\x5f\x71\xe9\xca\x73\xa1\xcf\x13\xfd\x8f\xc7\xae\x72\x5c\x1c\xa5\x3e\x65\x24\x64\xe9\xf5\x25\xbd\x74\x07\x12\x81\x9b\x29\xfb\x58\xc1\x3b\x02\xf3\xfb\xeb\xa4\x20\x11\xa6\x89\x6d\xb1\x4f\x6e\x36\xcd\xa6\x81\x6b\xc5\xfc\xf4\x9e\x13\xd5\x87\x09\x48\xe6\x54\xea\xc3\x79\xea\x47\xa7\xc9\xa9\x26\x6e\x9d\xfc\xfe\x94\x10\x23\xff\x39\x21\xe6\x82\xf7\x3d\xbc\xbe\x28\xf4\x1e\x24\x77\x32\x2f\xa7\x38\xf8\x67\xc4\xeb\xb7\x0b\x66\x37\x07\xac\xb1\x43\xd6\x67\xb7\xcc\x2f\xb3\xfe\x7a\x72\x2e\x9b\xb9\x0a\xf7\xf2\x32\x5b\x4e\x8d\xef\x79\x07\xbe\xe7\x8e\x46\xf1\x96\x25\x38\x4c\xc1\x42\x49\xa8\xb3\x4a\x7a\xf6\xc0\x6c\x5f\x93\x92\x39\xe8\x7b\x74\xed\xfb\x00\x4b\xea\x64\x5e\xf9\x6e\x7c\x3c\x53\x61\x7c\x4a\x35\x3b\xbf\x4e\x9d\x84\x3c\xae\xd7\x11\x74\x8f\x5a\xfd\xf1\x5c\x27\xcc\x9a\x72\x38\xb3\x1c\x77\xfc\xb1\xb2\x47\x70\x1f\x7d\x14\xe6\x36\xfe\x09\x35\xf1\x5c\xe4\xeb\x1a\xe3\xae\xe6\xb2\xee\x2e\x23\x3c\x6f\xa6\xeb\xf5\x03\x38\xe9\x59\x48\xf5\xab\xc6\x52\xaa\xc2\xbf\xd6\x64\x7a\xaa\xb7\x56\xf9\xf9\x64\x08\x55\xea\x3f\xbf\x6e\x0a\x3d\xd5\x4c\x51\x3f\x9f\xec\x9b\x0a\x0c\xcb\x97\x2d\x9c\xe7\xaa\xab\xd5\x9f\x4f\x96\x4e\xb9\xfe\xf3\x4f\xd8\x3a\x4f\x55\x57\x6a\x3f\x9f\x0c\x98\x72\x05\x9a\x8b\x38\x63\x0d\x09\x8b\x77\x46\xba\xfe\xd5\x91\x4e\x55\xf8\x97\x8e\xf4\x73\xbd\x7f\x85\xc1\x9b\x57\xeb\x33\xfd\x90\x91\xff\xea\x28\x3f\x57\x5d\x6f\x3c\x0f\x05\x19\xf9\xaf\x8e\xf2\x73\xd5\xb5\x52\x0e\x6d\xd6\x08\x6d\xe2\x02\xdb\xa9\x9d\x5d\x56\xbc\x2d\xf6\xb4\x6a\x39\x17\xde\x33\xd7\xf4\x93\x15\x22\x30\x91\xc9\x51\xf0\x87\xb3\xe8\xf9\x8e\xab\xa3\xab\x5a\xe5\x87\xf9\x7d\xad\x56\xfb\xcc\x9a\x47\xe5\xb7\x5c\x17\xbc\x19\x9b\xed\x1d\x4f\x20\x5f\x76\x3e\x8d\x6f\x56\xdc\xc1\x7c\xba\x80\x91\x93\xfc\xc7\x34\xc1\x6a\x76\xe9\x2d\x41\xf6\xaf\x9f\x07\xf7\xb0\x5e\xe4\x7b\x14\xcc\xdc\xc3\x7e\x34\x66\x48\x61\x22\xcd\x73\x3d\x64\xdd\xc6\x8d\x7a\xb1\xca\x57\xbb\x9d\x82\x2d\x27\xeb\x42\xb7\x75\x98\x9b\xe3\xac\xf8\x1a\x5d\x7a\x59\xef\xaf\xb8\x94\x02\xb0\x3f\x5f\xd5\x26\x83\x9e\x5d\xec\x83\x7c\xdf\xde\x59\x0b\xc4\x9f\x00\x69\x04\xbd\x1f\x5c\xc6\x89\xb4\x21\x36\x55\xb2\xb9\xef\xd6\x4b\x7c\xa8\x70\x1b\x7b\xba\xbc\xbf\x06\x9f\xb9\x67\xf6\x8f\xc7\x23\xa2\xc9\x95\xf7\xd8\x41\x7e\x52\x6d\xfa\x43\xf0\x8d\xc0\x92\x73\xc5\xb4\x44\x6e\xe4\xe6\xae\xcd\x3d\x55\x1b\x23\xe8\xa9\xf6\x6f\x11\x65\xbd\x68\xf5\x55\xa9\x24\x35\xa2\xca\x97\x9e\x59\x53\xd0\xbf\xf2\xe8\x91\xcd\x97\xb3\xb8\xfd\x1e\xf3\x3d\x8c\xc8\x47\x75\xbc\xbe\xfa\xb7\xf3\x77\xc7\xdd\xa7\x22\xff\xdc\x0e\xc3\xdf\x16\xba\x5b\xa5\xd2\xb3\xcb\xa0\x7f\xb3\x2c\x2b\x35\x81\xac\xd4\xb2\xee\x12\x53\x97\x8c\x53\x1e\xe7\xaa\xd5\x58\xc6\x7d\xbc\xbf\xf6\x09\x71\x95\xda\x02\xc8\xf1\x93\xf6\x70\xc3\x22\xe3\x18\x93\x60\xe3\x69\x3a\x5f\xfa\xe7\x16\xce\xd3\x46\x40\x39\x3a\xfe\x9f\xf5\x68\xf2\xb8\xe8\xfc\x0c\x4a\xe1\xb6\x44\xf0\xe8\x87\xf8\x9e\x37\xd9\x0e\x7b\x1e\xbe\xd4\xbd\x97\xf8\x42\x4a\x23\x7d\x23\x25\xba\x88\xf3\xb0\x8b\xf5\xaf\xb8\x0d\x73\xbf\xbc\x92\x1a\x98\x72\xbc\x23\x86\xc9\xfc\xdf\x66\x55\xfc\xbf\x7b\x9f\x62\x12\x4f\xf9\xac\x7e\x24\x5d\x7c\xfb\x22\xed\x31\xf9\xee\xed\x36\x4a\x26\x7b\x98\x91\xa6\xfb\xfd\xc5\xf5\xe7\x28\x63\x74\x58\xfa\x31\x67\xb6\xca\x98\xe1\xa2\x4c\x59\xac\x67\xb6\x05\x7f\x56\xc9\x30\x47\x17\x3e\xaa\xd9\x3b\x3a\x99\x6b\x5a\xf7\x9b\x26\x2f\xae\x04\x65\x71\x92\x3d\x54\x8e\x19\x37\xe3\x02\x38\x3f\x4f\x02\xe1\x13\x34\x0f\x77\x70\xd2\xd0\x64\x3d\x0b\x7f\x05\xb6\xe4\xcc\x79\x0a\xb8\xb4\xab\xda\xe7\x5c\x79\xe0\xdd\xd5\xee\xd3\x7d\xa4\x3f\x0b\x1e\xbe\xa4\x93\x37\x6e\x37\xb5\xf4\x8c\x89\xa7\xa1\xcb\x19\xe3\xc7\x3b\x50\xf9\x63\x92\xcd\x90\x34\x9d\xd7\x4c\x39\x26\x9b\x47\x90\xf2\xeb\xfc\x00\xd9\x0f\x59\x5e\xb4\x7b\x47\xf6\xad\xe1\x17\x98\xbe\x5f\xfc\x79\x85\xc9\x3b\x81\x27\xb5\xbf\x3b\x80\xe9\x31\x7f\x10\x09\xb9\x83\x98\xe6\xd1\xfc\xc6\x33\xfc\xf7\x7c\x93\xeb\x13\x8d\xff\x78\x57\x20\x11\x9f\xcf\xf6\xde\x8d\xf7\xb8\xb1\x34\x5e\xcc\x7f\xfb\xfd\xb5\x53\xcf\x72\xb4\xf8\x9b\x5c\x05\xcc\x4d\xba\x59\x93\x44\x33\xff\xf8\xd9\x6c\xdc\xd6\x27\x12\x07\x30\x59\x35\xfd\x49\x0f\x30\xf7\x88\x57\xa4\x78\xe6\x22\x7b\x4e\x85\xa9\x85\xb7\x0c\x6e\x9f\x6e\x7b\x43\x57\x16\x37\xaa\x4b\x14\x7d\xb5\x16\x47\x0c\xb8\xed\xe8\x81\xd1\x74\xf9\x86\xf3\xfe\xed\x7f\x9e\x72\xd7\x92\xdc\xf1\x1d\xd8\x28\x3d\x33\x0f\x4a\xb2\xde\x9a\xbd\x99\x61\x51\xe6\xb4\xc6\x2a\xcf\xca\x56\x79\x9e\xb6\xc2\x5f\x9c\xc2\x78\x51\xd9\xb7\x97\x6b\x97\x29\x67\x89\xb7\x99\x45\xb6\xec\x8d\xad\x9e\x6c\x9c\x18\xaa\x97\xde\xde\x92\x9b\xb6\xe1\x7d\x84\x73\xba\x1d\x2d\x44\x44\xc9\x0f\x91\x26\xca\xd4\x3e\xad\xec\xd2\xc9\x99\xd4\x68\x96\xfb\x98\xe7\xb6\x46\xe5\x1c\xf3\x52\x23\x0f\x99\xb7\x06\xf6\xbe\xbd\x5f\x04\x41\x4e\xe4\x99\x77\xf7\x0e\x3e\xe3\x52\x32\x73\xa7\xb2\xf2\x78\x43\x36\x1a\xc2\xd7\x8e\x89\x6e\x56\x64\xb4\x95\xf6\xee\x95\xe2\xb8\x13\x99\x00\x31\x29\x5d\x7f\xf7\x3a\x7f\xcb\x99\x32\xa9\xd3\x97\xe3\x6e\x19\x81\xe1\xc8\xa9\x71\x3c\x82\x71\x99\x6f\xc0\x44\xfb\xff\x4d\x8c\x56\xe0\x82\x08\x17\xdf\xca\x71\x7c\x96\xcf\xe6\xaf\xfc\xed\x7f\x72\x28\x2a\xe5\xd8\xe7\xb3\x15\x55\x5f\x54\x34\xad\x7f\xb1\x22\xea\x8b\x3d\xa8\xe5\x36\xbc\xa8\xcf\x66\x54\xf3\x4b\x0d\xd7\xf3\x7b\x30\xb7\x5a\x95\xaf\x55\xd4\xf8\x62\x0f\x9a\xb9\x0d\xcf\x28\x3c\x0a\x5f\x6a\xb8\xf5\xc5\x86\x81\x73\x72\x9b\xae\xd7\xe7\xd3\x66\xf9\x55\xd3\xff\x1b\xdf\x63\xc0\xa1\x17\xb1\x82\xfc\x3f\xff\xf5\x37\x20\xb9\x6f\xa9\x68\x12\x9f\x28\x51\xb9\x95\xc8\xf1\x24\xf5\x89\xf2\xd5\x9c\xf2\xef\xd1\xd9\x63\x79\xea\xcb\x10\xd7\x9e\x5a\x7c\x9f\xc0\x1e\xcb\xd7\x9f\x21\x7e\x97\xae\x1e\xcb\x37\xbe\x0c\x71\xf3\xa9\xc5\xf7\x09\xea\xb1\x7c\xeb\xcb\x2d\x12\x6a\x7a\x68\xf3\x7d\x4a\x4a\x11\xe5\xff\xb9\x13\xe5\xbf\x7f\x8a\x8a\xef\x05\x2a\x5f\x2d\x50\xfd\x6a\x01\xea\xab\x05\x6a\x5f\x2d\x50\xff\x6a\x81\xc6\x57\x0b\x34\xbf\x5a\xa0\xf5\xef\x7f\x42\x35\x64\x68\xe2\xcb\xa2\x21\x2d\x19\x3e\x59\xa0\xfa\xd5\x02\x5f\xe4\xfd\x34\xeb\x7f\xb2\x40\xfd\xab\x05\xbe\xc8\xdc\x69\xde\xfe\x64\x81\xd6\x17\x05\xee\xcf\xe0\x68\x59\x84\x30\x32\x85\xaa\xb5\xfa\xa2\x5a\xcf\x18\x2e\x84\x74\x1e\x26\x0c\xd9\x33\xf1\xcf\x86\x5c\xe2\x12\x27\x15\x06\xec\x61\x65\xa8\xd9\x6c\x7e\x21\xf2\x48\x1c\x0d\xa4\x9a\x04\x0e\x78\x0a\x81\x5d\x7d\x5e\x0e\xff\x6c\x99\xe7\xce\xfe\xba\xdb\xa8\x39\xb1\x3c\x9f\x57\xc5\xd2\x2e\xf2\xee\x76\x73\x2b\x9e\x07\xdf\x67\xb2\x3f\xb3\x0e\x3b\xd2\x93\xca\x17\xce\x94\xf1\x8a\xe4\x53\xb0\xd0\xcc\xac\xb3\xf6\x2a\x44\xdc\xfd\xc8\x79\xa6\x83\xbf\x92\x28\x64\x2f\x7a\x91\x73\x54\xf4\xe6\xcf\x24\x35\xf3\xbd\x2d\x98\xe4\x76\xe1\xbe\x9c\x9a\x0b\xda\x8b\xce\xfc\xac\xe4\xee\x2a\xbd\x8e\x7a\x49\xbd\x8c\x7a\x49\xe5\x0c\xed\x9d\xe2\x31\x3d\x3f\x8b\xbd\xda\x6c\x36\x6f\x54\x1e\xfd\x10\xe5\x15\xfe\xfe\x32\xe5\x3f\x63\x5f\x08\x4f\x31\xe1\x1f\xbd\x73\xbf\x4a\xc8\x6d\xf4\xd7\x87\x3c\xfa\x33\x9c\xee\xb7\xc0\xde\xaf\xfa\xb6\xac\x58\xa5\x6a\xe3\x55\x33\xe9\xc2\xdf\x5f\xa6\xfc\xc5\x7d\x8b\xab\x7e\xe8\x5b\xb3\x52\xb3\x4a\xe5\x6c\x4e\xe2\x31\xf4\x55\xcf\x22\x29\xf7\xaa\x91\x7b\xd1\xef\x2f\xbe\xff\xc5\xbd\x8a\xbd\x9b\x66\xfa\xd4\x2a\x57\xe6\x95\x59\xfa\xcc\x4b\x56\xb4\x3e\x8b\xcf\x8c\xd8\x7c\x59\x30\x01\x3d\xb5\x28\x7f\xf7\x70\xf7\x6a\xeb\x25\xe3\x63\xe4\xc6\xc0\xcf\x31\x8d\x3f\x90\xcd\x77\x6c\x24\x20\xfd\x88\x40\xfc\x16\x6f\x3e\x7e\x73\xb7\x4b\x77\x0b\xc2\xf3\x1f\x9f\xcf\xfa\xc7\x7f\x27\xd5\xaf\x16\x97\xe5\x7e\xba\x59\x04\xdf\x1e\xca\xfc\x5e\xfa\xf7\xdf\xef\x6e\x5d\x13\x3d\xf3\x07\x16\x4f\xbf\x3f\xba\xf7\xc3\x1f\xff\xf8\xe3\xbf\xff\xc2\xba\xf0\x48\xdc\x3c\xc4\xdd\x74\xc4\xbd\x8e\x5a\x7e\x8e\x3b\x01\xe6\x27\xfd\x35\x34\x78\x5f\x4b\x4a\x00\x7b\x37\x46\x78\xe9\x1e\x3c\x3a\x67\x29\x2b\x43\xa0\x0f\x7a\xfb\x9d\xac\x29\xcd\x99\x48\x9e\x29\xfe\x5f\x7e\x91\x07\x3e\x79\x5e\x14\x7b\x5f\x0e\x46\x02\xfb\x45\x91\x7c\xf1\x12\xc9\xc1\x17\x45\xf2\x78\x37\x65\x44\xdd\xf2\x4d\x0f\x87\xa9\xe5\x64\x7d\x5c\xe3\x7d\xe9\x67\x3e\x4e\x2f\x1d\x66\x77\x07\x1f\xeb\xfa\x9e\xfb\x35\xcf\xf4\x4a\xf6\xda\x2a\x99\xe0\xb2\x4f\x1e\x30\x3f\xbb\xf3\xfb\xa2\xcd\x87\xe2\xd9\xac\x78\x37\x20\x1f\xf0\x74\x4a\x54\x51\x24\x75\x3e\xbd\x87\xfc\xba\xa2\x3c\x88\xac\xe9\x7e\x4e\xd6\xd1\x93\xac\xb7\x0a\x62\xb7\xd8\xf6\x86\x9c\xed\xcd\xcb\x91\x63\x01\x65\x77\x2d\x4a\x19\x0f\x57\x29\x31\x90\x69\x39\xde\x86\xfa\x18\x80\x57\x19\x73\xdd\xc5\x45\x0b\xe8\x6b\xa0\xaf\x97\xac\x98\x5d\x1a\x8e\x0b\x1c\x1f\x75\xcb\x73\xfe\xea\xac\x59\xb5\x22\xf4\xd9\xe4\xb4\xe2\x47\x05\x52\x6c\xe6\xef\xf1\x5d\xbf\x0f\x4b\x2c\x4a\x8d\x59\x2d\xde\xea\x70\xb7\x1f\x77\x61\xde\xa2\x5a\xad\x48\x46\xec\x8e\x7b\xec\x2f\xf3\x43\x98\xea\xd4\xb2\x19\x95\xd8\xbf\x23\xae\x72\x66\xb4\x87\xc5\x74\xfd\x61\xfe\x52\x69\x56\x9b\x46\x38\xbd\x2c\xd6\xc0\x55\x1f\x96\x00\xc1\x52\x2f\x2f\x53\xc3\xf6\xa1\x28\xbd\x8d\x47\xb5\x7a\x1f\xbc\x4f\x97\xaa\x51\x56\x33\x16\x97\xd1\x28\x7e\xba\x64\x65\x61\x59\x54\x29\x3d\x9c\x9f\x2e\xba\x5c\x36\x6b\xe5\xd9\x7d\x5c\xbf\x52\x70\x31\x5f\xa6\x07\xf8\xd3\x45\xad\xb9\x55\x8f\x3b\x4a\x3c\xfc\x7f\xbe\xc9\x7a\xab\xb6\xb8\x0f\xf9\xa7\x0b\xd6\xe7\xcb\x44\x11\xc5\x63\xff\x85\x36\x17\x95\x98\x08\x60\xae\x7d\xb9\xb3\xf8\xe3\x6e\x4a\xa5\x59\x4f\xe4\x6f\x26\x63\x54\x71\xca\xbf\x67\x7a\xdb\x26\xa7\xb2\x56\x14\x78\xac\xba\xcf\xcd\x99\xa9\xad\xfc\xb8\xfb\x92\xb3\x7b\x93\x5f\xf0\x7e\x68\x21\xde\xfc\xc9\xa9\xe1\x16\x03\x6d\x9f\x9b\x35\x53\xe1\x7d\x6b\x64\xe6\xda\xf9\xb5\x45\x75\x55\x5a\xfb\x9c\x8c\x99\xba\xaa\xb7\xba\xf6\x64\x79\xe3\x0b\xe1\x82\x53\xa5\x9e\xb7\x66\x32\x9b\xdf\x71\xa6\x87\x3d\xcc\x24\xe0\x4b\x9e\x23\xd8\x58\x07\x5b\xeb\x05\x18\x77\x20\xd6\x9d\x9b\xb3\xe0\x54\x85\xdf\x72\x0f\x13\xde\x4e\x6d\xc6\x0a\x87\xc4\xcd\x4c\xbb\x36\xbe\xa9\xfc\x68\xc4\x0f\xd3\x7d\xb6\xbe\x74\xb9\xe7\x29\xf9\x2d\x50\x58\xba\x5c\x12\x85\x81\x80\x73\x23\xe5\x7a\xa5\xfa\x78\x43\xe7\x76\x02\x2a\xde\x53\xff\x37\x6b\x39\xad\x96\x4a\xdf\xef\x5b\xec\xf1\x87\xd2\xb7\x6c\x86\x87\xf4\x7c\xd0\x6f\xc1\x43\xbe\xbf\x9f\x1c\xc3\x7b\x07\x75\xd6\x28\x4d\x1f\x3d\x61\xdf\x4b\xff\xdc\x4d\x61\xf8\xd3\x97\x24\x9e\x82\x48\x95\x5f\x95\x79\x7d\x12\xea\x61\x83\xdc\x81\x91\x3e\xe4\x0f\x44\xea\xb2\x76\xde\x48\x64\x4b\xe6\x0e\x45\xa5\x51\xfd\x78\x28\x5a\x8b\x52\x29\x33\x14\xf1\x87\xdb\x50\xc4\xef\x0f\xe9\x2f\xa0\xcf\x8e\xc5\x3b\xe9\x4f\x83\x91\x05\x36\x87\xde\x5f\x62\xe2\x35\x0e\xf2\x0e\x66\xbe\x86\xf6\x13\x70\xe6\x05\x9f\x49\xa6\x66\x79\xdc\x19\x47\x19\x49\x35\x7c\xab\x38\x0b\xef\x6d\x2e\x58\xfb\x14\x90\xa9\x5a\x32\x59\x1e\x6f\xe2\xc3\xf4\x38\x0b\x57\x7a\xfb\x3e\xa3\x4a\x5e\xe5\x6a\x66\x75\xc4\xcb\x6c\xf7\x03\x23\x2f\xb2\x90\xb3\xdf\xe9\x53\x8c\x1a\xc9\xf7\xb0\x24\xfc\xff\xbb\x6f\x94\x94\xd6\x79\x05\xf8\xcf\xec\x31\x85\x97\xd9\xee\x37\x3f\xa7\x41\x80\x47\xf6\x45\x4e\x3c\x03\x7b\xe5\xe1\x34\x46\xca\x5f\xef\xdf\x94\xa1\x03\x94\xf5\x6f\xca\x78\x95\xdd\x06\xbf\x47\xfe\x4d\xdb\x5a\xd6\xbf\x69\xe4\x10\x29\xf2\x6f\xba\x96\x67\x93\x0e\x76\xca\x24\xe2\x5a\xb5\x6d\xe4\xd9\x8d\x16\xd0\x02\x7b\x4d\x1d\x9a\xc4\xf7\x4e\xec\xdf\xb4\x20\xd1\x45\x15\xea\xa8\xa5\xfc\x9b\x32\x57\x1b\x71\xd8\x5f\x66\x9f\x54\x6a\x45\xfe\x4d\xc3\x09\x73\xc6\xfe\x06\x75\xe2\x83\x8a\xdd\x45\xfe\x4d\x19\x09\x6d\xe1\x95\x17\x48\xf9\xc8\xbf\xe9\x92\x29\x6f\x4b\x14\x76\x6f\x87\xb3\xd2\x7d\x31\xe3\xdf\x74\x74\x41\xe8\x5f\xe9\xdf\xf4\x6c\xaa\x7f\x81\x7f\x53\x39\xce\xc7\x24\x85\x39\x24\xf5\x0c\x1e\xfb\x40\x62\x97\xc8\x6b\x32\x8d\x70\x76\xa2\xc3\xa6\xb4\x0f\xd7\x45\xc6\x6a\x0e\xfa\x67\x73\x99\xf1\xb8\xb5\x41\x7d\xc4\x35\xd1\x35\x94\x8a\xe8\xd8\x14\x1a\xa1\xd5\x67\xc4\xa6\xbc\x0c\xb7\x7d\xce\x6b\x8e\x87\xc5\x22\xf1\x7b\x2a\x16\xa9\xb3\xcf\x71\xc8\x50\x91\x5a\x0c\xd8\x82\xd4\xf7\xc3\x82\xcb\x52\x61\xdf\x46\xad\x26\x7b\x32\x7a\x07\x3b\xcf\x6f\xea\xbb\x7f\x8f\x9e\xbc\x50\xaa\xbf\x59\xff\xa8\xb7\xbf\xcf\xfa\x5b\x85\x7c\xfd\xe2\x01\x7b\x19\x2b\x61\x4f\x76\x34\xf1\xcc\x75\x42\x6a\x93\xe6\x43\xab\xca\x5f\xac\x2a\xad\x5a\x55\xf9\xda\xa4\xc5\x90\x13\xe1\x9d\x41\x0a\xdf\x1f\x36\x04\x24\xee\xea\x0b\xd1\x67\x8b\x48\x44\xe3\x71\xb5\x44\xf5\xc4\xf2\x8c\xdf\x22\x5a\xd0\xde\x6c\x9f\xde\x35\x03\xbe\x3b\x0c\xc4\xcb\xa5\xb7\x3d\x1b\xdc\x96\x3f\x73\x6b\xa7\xd9\xb3\x13\xb8\xd9\x62\x03\x7b\xfa\x9b\x77\xb0\xa7\xb3\x01\x86\x51\x09\xb9\x3e\xd2\x2c\xb1\x7b\xb6\xb6\xdd\x50\x3f\x73\x5a\x93\xa6\xe1\x19\xd9\xcc\x79\x58\x2a\x9c\x6d\xba\xbe\xd8\x3a\x75\x04\x78\xa0\x96\xa3\x60\x6c\x21\xce\x14\xde\x18\x5b\xd8\x5e\x42\xbd\xdc\x0b\x97\x8a\x44\x8b\x13\x6e\x30\x16\xc3\x7a\x82\x8f\x62\xa1\x04\x6d\x89\xc3\xc8\x43\x63\xb6\x5f\x8f\xf5\x22\x6d\x35\xf5\xdb\x68\xba\x54\xe8\xa1\xde\xa0\xe3\x81\xe7\x12\x9c\x61\x77\xa8\x7b\x0c\x27\x8f\x28\x86\xbe\x72\x22\x6b\x77\x3c\xc9\xa5\x18\x80\xfb\x88\xae\x7a\xa9\x6f\x4b\xd7\x8e\x43\x31\xfc\x95\x62\x3b\x57\x69\x81\x1c\x1d\xda\xb6\x3a\x9c\x7d\xb4\x69\x3b\xec\xb0\xc0\xf9\x2c\x0a\x3b\xf4\x1b\x52\x38\x3b\x04\x5c\xda\x15\xd1\x41\x4b\xe1\xbc\x6a\x33\xce\x6a\x26\x9e\xd1\xa2\xeb\xda\x13\x34\x28\xa9\xe2\x39\x30\x99\x37\x24\x30\xe1\x4a\xa0\xd5\x95\x02\x65\xda\x82\x16\x2c\x39\x9a\xaa\xb4\x69\x4b\x64\x69\x49\x61\xce\x52\x07\xf0\xe3\x77\x1d\x2a\xcd\x05\xb8\xbf\xf0\xdf\x00\x11\x8f\x6e\x43\xf5\x88\xdc\x8e\xcb\xda\x92\xa8\x60\x78\x6d\x80\x4f\x53\x01\x36\xeb\xcc\x9f\x09\x9c\x05\xa0\x7e\xba\x6f\x77\xca\x6c\xc8\xb9\x3c\x23\x09\x9d\x21\xda\x48\x9e\xea\xc9\x17\x8a\xed\x0e\x55\x48\xef\x5c\x44\x5b\x5a\xa2\xa1\x55\x40\x57\xf2\x3c\x22\x38\x00\x7e\x7f\xd5\x07\x3a\x0c\x07\x4c\x1d\x45\xfd\xb5\x0d\xe8\x7b\x28\xf8\x28\x18\xb0\x68\x3e\xf3\x6d\xec\x7f\x17\xfe\x4d\x25\x81\xb1\x2d\x8e\xd5\xac\x05\xa7\xae\x34\x0e\x51\x82\x72\x69\x0a\xac\x83\x34\x46\xe3\x16\x7c\x58\xe2\xe8\xd0\x17\x00\x1f\xf7\x3a\x43\x5c\x87\x35\x69\xb3\xc6\x82\xa3\x9b\x33\x41\x7d\x03\xdc\x06\x32\x6d\xeb\x32\x13\x4e\xed\x18\x86\x42\xd4\x86\xe0\xd2\x36\xa5\xe2\xba\x45\xc7\xea\xd2\xc8\x6a\xd3\x9e\x5a\xa2\x6d\x5f\xa4\x51\x69\x22\x3a\x9c\xcc\x69\xa8\x47\xdb\xe8\xce\x0b\x16\xf1\x7b\x0a\xb4\xa0\xf6\x90\x6d\x9d\xe9\x90\x62\xa5\x8b\x04\x38\x6c\xd2\x80\xbf\x72\x97\xa5\x98\x68\x6c\x2d\x11\xd3\x91\x7c\xbd\xe3\x04\xf0\x4f\xc6\xc5\x47\x51\x7f\xa3\x31\x07\x98\xee\xe3\xd4\xe6\xb5\xce\x80\x61\x5a\xa1\xaa\xd0\xa1\x1c\x02\xcc\xf6\x8a\x17\x3d\xc3\xe7\x43\xee\xf0\x4e\x7f\x22\xba\x08\x75\x89\xd6\x0f\xc8\xef\xd0\xa8\x17\x72\x0c\xe0\x90\xe0\xe1\xce\xdf\x00\xff\xcc\x42\x6d\xa0\x03\xee\xaa\x56\xbb\x30\x6e\xfc\x19\xfb\x46\xb6\xc6\xfc\xd5\x80\x77\xab\x12\xf9\x04\x86\x77\x4d\xed\x23\xd5\x00\xfa\x6d\xd2\xb2\x6b\x6d\xe4\x8b\xb1\xc5\xbf\x5d\x15\xad\x64\x1d\x69\xdc\x59\x02\xa9\x12\x74\x18\xdb\xef\x30\x67\x68\xc9\xe9\x68\x2a\xa3\xaf\xd4\x99\x24\xd0\xa1\x25\x04\x76\x87\xa7\xd5\xa0\xcd\xa8\x2b\xec\x67\xf9\xdc\xbf\x74\x56\x30\xce\x0a\xf4\xa7\x0d\x65\xe0\xbb\xaf\xc0\xfb\x4a\xba\x36\x8b\xea\x34\xe4\xe9\x69\xc8\x40\x9f\xba\xac\x4d\xf5\xa0\xed\xe1\x5d\x5e\x95\xe8\x4a\x28\x0e\x10\x63\x10\x7f\xce\xfd\x50\xaa\x00\xac\x4b\xe4\x60\x7f\xcb\xc0\xab\x67\x95\xf8\x5d\xa6\x2f\x06\xf0\x2e\xf9\xc5\x3e\x8c\xb1\x5f\x66\xe2\xcb\x98\x93\x5a\x34\xf0\x87\x44\xaf\x98\x3e\x87\xe6\xbe\xa0\x76\x58\x68\x47\xb0\x25\x0e\xf8\xc6\x80\x61\xe0\x8c\x29\xb2\x68\x29\x0c\x18\xde\x07\x25\xa8\x72\x1d\x5b\x33\x18\x26\x34\x24\x53\x46\x50\x56\xe7\x21\x0f\x8d\x56\xd0\x0c\xa6\x99\x10\xbf\xf7\x54\x13\xad\xf8\x1b\x4e\x41\x5c\xa2\x79\x40\x97\xb0\xc7\x3f\x86\x7a\x0f\xce\x0d\xc8\x02\x91\xb6\x09\x3e\x81\x56\x00\xb7\xf0\x8b\xe5\x26\x91\x69\x17\x90\x67\x21\x52\xbd\x12\xc7\x33\xaa\x2d\xa8\x52\x53\xa5\x2b\xb6\xc9\xa2\x27\x78\x8b\x63\x7a\x14\x4c\xcf\xda\x64\xc1\x1a\x15\x34\xe8\x28\xc8\x99\xd2\x2c\xe2\x68\x56\xe2\xc6\xc8\x0e\x04\x46\x18\x80\x7e\xd1\xbb\xd0\x1f\x46\xd3\x75\x4c\x0b\x2c\xf4\x85\x45\x35\xc0\x84\xaa\x6b\xa3\x09\x20\x5a\x74\x46\xdc\xb8\x76\x24\xf4\xc1\x74\x50\x5b\x15\xe7\x68\x12\x22\xc1\x4e\xfb\x9f\x6e\xd2\x40\x13\xe4\x37\xf1\x13\x4d\x70\x3d\x30\xca\x52\x68\x6f\x18\x14\x2a\x0c\x3f\x68\x32\x98\x16\x18\x43\x62\xfa\xba\xc4\xa2\x40\xf2\x6c\x0f\x78\x71\xb5\x61\xb0\xf7\xd6\xd1\xa0\x41\x7e\x07\x06\xd0\x73\x49\x6c\xd9\x16\xf0\xde\xa2\x0f\xfc\x4a\xe4\xa7\x18\xa2\x25\x9a\x74\x68\x2b\x44\xd8\x08\xaa\x26\x78\xc1\xbf\x98\x46\x01\x3f\xd5\xf8\x37\xa2\x4b\x2d\x4b\x9f\x74\x18\xd3\xa9\xa7\x2f\x41\x78\x41\x67\xed\x6d\x04\x17\x7e\x86\x5f\xc6\x92\xee\xdf\x01\x4e\xf2\x8c\xe1\xb5\x24\xc3\x0e\x40\x58\xa9\x04\x66\x39\xb4\xc9\x33\xc9\x1f\x86\xd1\x33\xfc\xa6\xbf\xb3\x77\xbd\x8a\x64\x95\x97\x31\x3f\x01\xfc\x7b\x02\xf7\x10\xf3\x54\x40\x47\xbf\x84\xb7\xe6\x68\x18\xff\x6a\xaa\x48\xbb\x1d\x47\xc2\x3c\x34\xb4\xae\x90\x07\xf8\xa9\xe3\x02\xec\x73\xec\x5b\x1b\xe0\x69\xcb\x80\xd3\x2e\x63\x00\xce\x02\x78\xb7\x25\xa6\xd8\x38\x30\xd0\xf6\xb8\xd6\x81\xfe\x52\x4b\x5e\x33\xd1\x0e\xa7\xb1\x56\x49\x76\x8d\x8d\xec\xa9\x55\xc8\xa7\xec\x92\xfc\x4d\x54\x15\x31\xbd\x69\xc6\x82\x58\x8a\x84\x7f\x2c\x7a\x66\x0b\x55\x84\x9d\x95\xb2\x96\xd6\x65\x23\x1e\x97\x86\x52\xc4\xf7\x1a\xf1\x2d\x8e\x61\x73\x09\x6d\xc2\xaf\x1c\xf1\x10\x02\x3e\x69\x03\x8f\xd2\x0a\xe8\x25\x06\x78\x86\xbc\xab\x56\x8f\xd9\xd6\x0a\x8c\x4d\xc1\xbb\xcf\xd3\xae\x45\x5b\xc8\x87\xf6\xb1\x48\xeb\xc0\xef\xbe\xb0\x22\xef\x2a\xc3\x4c\xd6\x35\x46\x95\x40\x10\xd9\x91\x57\x55\x0c\x13\x83\x75\x1e\x7f\xc4\x2e\x72\x3b\x2a\xdd\x8e\xc6\x3b\x25\x77\xce\x91\x1f\xf5\x68\x4c\x23\x3e\xe9\x60\x19\x05\xf8\xc4\xbe\xdc\x41\x06\xe1\xb1\x4f\xe0\x04\x1a\x81\xbc\x57\x4b\x87\x72\xd7\x0e\x96\x5f\x31\xee\x21\x2f\xe0\xd2\xda\x80\x6c\x16\x69\x07\xfa\xe2\x3a\xac\xc6\x1d\x14\x8d\xeb\xf8\xd0\x27\x5f\x2d\x69\xca\xa0\xa4\xb1\x6d\x64\xac\x65\x6f\x55\x53\x4b\x9d\x5a\x6f\x60\xec\x55\x8d\xdb\xc8\x43\xbd\x0c\x63\xa1\xa9\x83\x23\x51\x12\xb4\xad\x72\x9c\xc6\x99\xf8\x17\xbf\xcb\xf4\x6a\x7a\x51\xfd\xb6\x3a\xc0\x82\xcc\xa1\x89\x3c\x5b\x71\xbe\x7c\xb1\x7c\x15\xbe\xf7\x5c\xd0\xa3\x97\x4e\x5d\x63\xb8\x85\xe4\xe9\x1b\x79\xa0\x6f\xba\x03\x69\x21\xe9\xea\x3a\xa9\x43\xa0\x25\x2d\xa9\x5b\x70\x7c\x8f\x18\x61\x64\xbc\x56\xd8\xf3\xac\x8c\x18\xec\xcc\x9b\xd6\x30\x33\x62\x53\xbf\x4b\xe4\xb5\x85\x7d\xcd\x4f\x52\xb8\x8a\xc6\x10\xe3\x8c\xe5\x30\xce\x62\x9e\xc0\x34\xa6\x56\xe5\x14\xfe\xba\xb1\x5c\xec\xc2\x58\x77\xcf\x6a\x82\x4f\x8c\x3f\x5c\x27\xd4\xad\x97\x20\x2f\xe8\x7f\x4b\xe0\x35\x2b\xd2\x05\x50\xa6\x9b\xb4\x81\x71\x6e\x47\xe3\xd2\x8f\xf8\x10\xbf\x03\x5e\x0f\x20\x56\x4a\xa6\xe0\x20\x90\x2f\x1c\xf4\x4d\xe7\xe1\x1f\x87\x9f\x45\x2f\x6c\x8a\x36\x05\xdf\x55\x97\x56\x4b\x3b\x18\x0b\x93\x76\xf5\xd3\xe0\x6c\x98\x20\xe7\xdf\xc5\xef\xe8\xac\xb7\x3a\x57\xd5\x05\x86\x1b\x80\xed\x60\x72\x98\x06\xcf\xea\xbe\xc7\xae\x8a\xca\x1a\x31\xd0\xe7\xf5\x45\x0d\x64\xf5\x62\x6d\x69\x2d\xe4\x40\x36\x03\xfd\x49\xf8\x1f\x96\xd1\x4c\x77\x73\x0e\xba\xce\x8a\xe7\x11\xe8\x21\x5a\x1f\x8a\x4e\x73\xcb\xa8\x87\xb6\x34\xb0\x07\x22\x1d\x2c\x25\x87\x72\x34\x06\x68\x9a\x18\x1a\x86\xc1\x39\x18\x76\x03\xbf\x4f\x05\xb7\x2f\xcb\xaa\xee\x4a\x1e\xf0\xc9\x00\xda\x07\x1d\x4b\xc6\xd8\x91\x26\x1d\x2d\x98\xe9\x26\xea\x32\x17\xdb\x91\x70\x0c\x83\xc4\xbf\xf8\xcc\x02\x3d\x85\x6a\x88\xf3\xd1\x9a\x8c\x97\x8e\xfd\xeb\x37\x40\x86\x26\x7a\xf5\x36\x7e\x09\x3e\xa3\x67\x5d\xa7\x23\x9a\xd7\xf1\x37\x1e\x70\xdc\x0e\xb9\x88\x07\xdd\x80\x8e\xe5\x45\x9a\xbe\x13\xb9\x31\xe2\xaf\x29\xfd\x1d\xff\x82\xde\xbf\xe0\x3c\xdd\x38\x6f\x3c\xae\xb7\x77\x5c\x27\xe1\xb7\xa8\x1e\x81\xf0\x7e\x34\xae\x8f\xbf\x7b\xa4\xe9\x40\x86\xbe\x3a\xb4\xfd\x39\xa7\x02\xbf\x63\x5c\xda\xa1\xc2\x9e\xed\x21\x17\xfa\x6d\xd6\xeb\xcc\x79\xc7\x00\x3b\xc8\xd7\xc0\x36\x36\xdb\x8c\x3e\x13\xce\x81\x27\xa9\xe6\x80\x43\xbe\x02\x38\x24\x71\x15\x80\x40\x04\x1c\xa7\x80\xd6\x57\x72\x44\x1f\x40\x3b\x60\xfa\x80\x9d\xc0\xf4\x19\xdd\xeb\x82\x88\xc5\x7a\x96\xc5\xdf\x10\xd8\x0b\x76\xa0\xb0\x1b\xbd\xc7\xda\xbe\x2c\x84\x36\x8c\xa9\xc1\xb3\x64\xbe\xa4\x0b\x28\xc4\xf4\x62\xf0\x34\x91\x47\xaa\x3c\x98\xc1\x2c\x2b\x0c\x04\xd9\xd1\xfb\x0c\x0d\x54\x74\xee\x80\x4d\xb2\x92\xc1\xf8\x70\x84\x73\x88\xe5\xa6\xc9\x03\x4f\xf2\x0e\xf4\xd5\x29\x8d\xc1\x36\x9e\x40\xff\x40\x58\xf9\xd0\x0f\x90\x0d\x2a\x8c\xb9\x6a\x49\xd1\xaf\x3d\x20\xe4\xa0\x4a\x44\x5f\x02\x4d\xe9\x0a\xc8\x5f\x1a\x6c\x15\x06\x6c\x2e\xd6\x51\x45\xb0\x67\x38\xa4\x96\xba\x8c\xdd\x04\xfb\x1a\xcd\x45\x8d\xb3\x58\x95\x92\x38\x9a\x03\x9c\x94\x04\x1e\x81\x0c\x0d\x75\x2c\xf3\x78\x62\x3b\xd8\xbd\x2a\x22\x9e\x6f\xd9\x62\x25\x04\x39\x0c\xfa\xa2\x8f\xe8\x2e\x92\x57\x58\x1e\x13\xfe\x23\x63\x46\xe8\x23\xa0\x31\x5f\xd3\x67\x1d\xd3\xc7\x28\x45\x1b\x98\x26\x6e\x3c\x48\xe2\x34\xa4\x6c\x32\xfc\x1b\xc7\x6e\xa8\xf2\xb4\x35\xce\xe1\xe7\x47\x79\x91\xfd\xbd\xe7\x2f\xa7\xcb\x3e\xd3\x10\xf9\xdd\xa3\x81\x24\x4a\x29\x5a\x91\x52\xb4\xa2\xdb\x86\x23\x03\x8f\x88\x2e\xf2\x05\x6d\x45\x73\xaa\xcf\xb0\x8e\x31\x16\x87\x9d\x1e\xf0\xd0\x90\x3b\xdb\x30\x5e\xa0\x37\x00\xad\x98\x9e\x58\x87\x9b\x33\x2b\x4a\x05\xfc\xae\x01\x5f\x12\xd4\xc9\x47\xf1\x27\x74\x7e\x00\xb8\xbe\x8f\xb5\xc1\x61\x3a\x40\x1a\x9e\x33\x60\x3a\xe8\x48\x42\xb8\x6a\xb3\x76\x6d\xcd\x02\xbd\x40\x3a\xd0\x56\x87\x65\xc1\x3e\x03\x7b\x8f\x01\xf9\x62\x82\xdc\x6d\x82\x8d\x2e\x42\x5e\x18\x13\x18\x58\x15\xc6\x65\xb6\xa8\xb2\x61\xd0\x06\xa2\x02\xbd\x60\x8d\xe5\x50\x1a\x8b\x30\xf6\xdc\xd9\x00\xfe\xd6\x4d\xac\x3f\x45\xcd\x77\xb9\xb3\x2a\x93\x31\xb7\x29\xac\xd8\xba\x30\x4f\x18\xcb\xaa\xa5\x30\x61\x61\x05\xe3\x8b\x75\xa1\x48\x62\x87\xd8\xba\xb4\x43\x1d\x06\x60\xe6\x09\x1d\x21\x1d\xda\x92\x86\x60\xdb\x40\x5f\x39\x8d\x0e\x4b\x3d\x91\xe6\x80\x4e\x10\x94\x6d\xb6\x59\xb5\x04\xb6\xdd\x4a\x84\xf9\x11\xd8\xef\x98\xae\x74\x09\x0c\x5f\xb0\xa1\x75\x96\xd8\x97\x76\x07\x8b\xc0\x6a\xca\xfe\x45\x0d\x1b\xec\x5f\xac\x1c\x12\xbb\xf2\xfc\x6c\x43\x22\x9a\xe9\xab\xaa\x2e\xdb\x18\x0e\x1b\x40\xd6\x1c\x1f\xec\x6e\x8f\x81\xfe\xd9\x6a\x48\x17\xfd\xee\x7b\xf6\x2b\x99\xbf\x1e\x42\xf4\x86\xf8\x55\x12\x37\x25\x4d\x33\x0f\xf2\xeb\x16\x2f\x04\xdb\x81\x77\x5a\xf4\xf4\x2b\x4f\x13\x7b\x91\xe8\xde\x84\x3e\x89\x0e\x4e\xe8\x25\xb1\x2f\xa2\x32\x5e\x9a\x8e\xf8\x3f\x33\xb7\xb8\xe8\xe5\xdd\x9b\x51\xc6\xe3\x0f\x36\x09\xcc\x1f\x4a\x7d\xd6\x91\x34\xd6\x6e\xc2\x3c\xc3\xc2\xb8\xe6\x69\x2c\xab\x42\x4a\xe3\x6c\xaa\x0f\xbc\xda\xc5\x72\x05\xdb\x35\x9d\x61\xd3\x93\xb1\x5e\x09\x7d\x99\xc8\x77\x3c\x37\x09\x0d\x41\x66\x3a\xc5\x7e\x49\x08\x68\x75\x1c\x20\xa0\x3f\x28\xd3\x63\xa1\xcf\xdc\x15\x95\x7d\xb9\x59\x01\x4b\x75\xc0\xd9\x78\xfe\x62\x31\x98\xbe\x40\xfe\x00\x2c\x36\x8c\xbb\x8d\x69\x46\xc1\x72\x0d\xbe\xe3\x7a\x07\x5c\x14\x97\x81\xd8\x8b\x74\x08\x76\x0f\xf0\xbf\xa4\x92\xc5\x86\x2a\x37\x8c\x75\xfa\x85\x8b\xe5\xb8\xae\xdd\x6d\x9f\xc4\xae\x8d\xc6\x19\x74\xee\x12\x30\xe3\x70\x2a\x02\x39\xe5\x03\xdd\x71\x01\xf4\xa1\x1d\xc9\x2d\xe0\xa7\x90\x6a\x2f\xb7\x14\xf0\x43\x64\xab\xc9\xa6\x64\x2e\x96\x0d\x4b\x0e\xf9\x90\xb1\x6d\x09\xe1\xa9\x26\xc8\x32\xe6\x54\x57\xf1\x3b\x8d\x24\x79\x31\x59\xc9\xc8\xc6\xc2\xce\x97\x3c\x6d\x5d\x42\xe3\x7e\x61\x9b\x5a\x0f\x92\x55\x71\x86\xe1\xed\xd8\x69\x7d\xa6\xdf\x68\x23\x8e\x4b\x83\xe5\x01\x8c\x7d\x89\xbe\xdb\x5b\x25\x3a\xa2\x93\x12\x9d\x8d\x89\x43\x6c\x54\x6c\xb7\x96\x65\x17\xf3\xa9\x3d\xc0\x7c\x0e\xfd\x5e\x8a\x8e\x3e\x16\x51\xd6\xee\x55\xdb\xba\x02\xef\xd5\x2e\xd8\x4f\x90\xbf\x3c\x50\x6d\x12\xf3\x86\xe1\x56\x0b\x28\x03\xf2\x91\xca\xda\xbf\x61\x4c\xcf\xea\x6d\x3e\xe6\x22\xa6\x84\xe9\xb9\x82\xf9\x86\xc4\xe9\x71\x00\xcf\x36\x9e\x8f\x3d\xd9\xbc\x45\x34\x00\x5d\x7b\x6e\xe2\xf5\x1a\x78\x6e\x32\x5c\xc8\xb1\x2c\x48\x15\xda\xb6\x65\x5a\x17\x40\x1f\x49\x2c\xb3\xb1\x0c\xc0\x19\x03\xf6\xae\xb4\xa4\x24\x9e\xc8\x25\x9b\x33\xa7\xaa\xcd\x34\x1c\x7a\xc6\xd9\x52\x77\xb0\x5d\x49\x0a\xf0\x9a\x6c\xdb\x0c\x6f\x48\x0a\x43\xe1\xb9\x3f\xc0\x37\x1e\xf7\x61\x6c\x78\x54\xd2\x38\xcc\x87\x8c\xdf\x5a\x33\xaa\xbb\x63\x86\xf4\x86\x0b\xcb\x22\xe7\xf0\x56\xf1\x48\x22\x53\xc4\xd3\x0c\x91\xcc\x2f\x80\x51\xd7\x48\xcc\xea\x8b\xfb\x9c\xe2\x23\x1b\x21\x1a\xaf\xb4\x0d\x92\xfd\x7d\xb4\x21\x74\xfd\x66\xeb\x9d\xe3\xdf\xc8\xce\xc0\x7a\x08\x74\x90\x41\x6c\x14\xfa\x4c\x78\x36\xa1\x4f\xcc\xcf\xf1\x18\x83\x4c\x2c\x77\x62\xbd\x3a\x1f\x62\x79\xfe\x64\x07\x8c\x55\x3c\xf6\x02\x1b\x36\x7b\x3c\xc8\x21\x10\x78\xf0\xff\x0e\xe8\x5c\x09\xdb\x60\x84\x96\x19\x1c\x1f\x49\x55\x19\x32\xf7\xc6\xf2\xcc\x36\xf0\x10\x83\x78\x6d\x4e\xb0\x86\x06\xfb\xb2\x47\xe4\x79\xd8\xd1\x38\xd7\x58\x83\xfc\x9e\x00\x81\x8f\x65\xe4\xe3\xb6\xab\x87\x30\x6e\xaf\x81\x75\x3b\xa1\xb5\x55\x4a\xb7\x10\xb9\x2d\x2b\xb8\x0d\x83\x86\xfa\x86\x02\xc8\x09\x3c\xe7\xa6\xd5\x10\xf3\xb5\xc4\x10\x5b\x03\xe4\x0c\xc2\x71\x9a\x60\x5e\xab\x82\xfe\x08\x03\x05\xcb\x07\x06\xe8\x80\xc6\x32\x1f\xb4\x1b\xef\xac\x06\x60\x4b\x8c\x38\x07\xb8\x13\x05\xd8\xc8\xa1\x89\xfd\x8b\xac\x0e\x22\xfd\x46\xe8\xae\xff\x61\x3c\x4d\x29\x3d\x9e\x78\xcc\x26\x60\x63\xc3\x38\x44\xfc\x43\x5f\x08\xff\xc3\xbc\xd1\x22\xb1\xab\x6e\xb6\xb7\x6b\x09\x18\xbf\xf1\x78\x56\xf9\xfb\x38\x92\x18\x51\x34\x1e\x3b\x1b\xff\x82\x0d\x89\xed\x06\x90\xa9\xf2\xcd\x76\xbf\xd9\xf0\xc9\xdc\x2a\x91\xc7\x5b\xfa\xc1\x8e\x90\xff\xdc\x78\x62\x1b\xaa\x2d\xd3\x06\x18\x70\xd6\x98\xbb\xe8\x1b\x90\x54\x2c\x13\xe2\x71\xa6\x68\x98\xc5\x00\xf2\xe6\x7d\xbc\x16\x01\x63\x28\x44\xe3\x89\x75\x11\x8c\xb7\x0a\xf2\xd3\xf6\x7b\x44\xa7\xc2\x9c\x11\xe1\xa9\x78\x34\x8f\x90\x41\x47\xf6\xd9\xd0\x80\xf1\x1b\xaf\x71\xbb\xb8\x16\x1c\xdf\xea\x80\xed\x02\x4c\x17\x64\x7c\x17\x18\x26\x8e\x94\xb1\x2d\xe0\x56\x1c\xaf\xcb\xe0\x18\x73\x40\x91\xef\x36\xd7\x85\xba\xb1\x8a\xc5\xa6\xfe\x84\xbb\x70\x32\x19\x2b\x1a\xe6\xf2\x0e\x9a\xf2\x0e\x87\xe1\xe2\x31\x4f\x03\x4d\x29\xb8\x1f\x2c\x5a\x11\x3d\x4e\xe6\xbc\x60\x7f\x82\xad\x82\xeb\x17\xc9\x3a\x52\xa8\x77\x98\xd0\xe2\x18\x2c\xdf\x35\x5f\xe3\xd4\x26\xd4\xad\x4a\x77\x7d\x0d\xf3\x6c\xf9\xe0\xd4\x1a\xf3\x25\x7b\xbd\x02\xfe\x82\x84\x04\xfa\x45\x10\x21\xe4\xb1\x53\x6c\x1a\x54\x07\xaf\xab\xcf\xb0\xde\xad\x84\xf1\xe2\xec\x3d\x18\x06\x96\xbf\x24\x52\x08\xba\x07\xbc\x60\xd0\xf3\xbe\x46\x24\x25\x9e\xbe\x70\x37\x9d\x93\x0a\xf8\x93\xff\x3e\xc7\x8d\x8b\x56\xfc\xee\x21\xb3\x83\xc4\x90\xc7\xbb\x21\xf4\xcc\x7e\x55\x3e\x55\x3f\x89\x00\x42\xca\xd3\x55\x0c\xdf\xbd\xbe\xf8\xcf\xc7\xf4\xbe\xc0\xf3\x22\x0b\x31\x6d\x04\xd3\x6f\x15\x87\x8a\xb0\x42\x86\xb1\x41\xdb\xfb\x12\x73\xb6\x3b\x1c\xba\xfa\xec\xce\xd6\xda\xb4\x66\xf3\x0d\x64\x0c\xe8\x9d\x2d\x54\x6c\xcb\xa6\x2b\x3e\x10\x8c\x77\x8f\xb3\x45\x87\x68\x63\x23\x3e\x85\x93\x17\x7f\x14\xda\xdf\xd6\x6d\xf1\x6f\x88\x52\xf8\x63\x70\xba\x7a\x7f\x67\x71\xba\x74\xcf\xcf\xe1\xf7\xe1\xfd\x9d\x47\xb4\x81\x33\x25\xef\x02\x8e\xd8\xa1\xdc\xd3\xdb\x38\x30\xca\x38\xda\xb7\xe1\x18\xf5\xd6\x5e\xf2\x9e\xb4\x97\xbc\x27\xed\x25\xef\x49\x7b\xc9\x7b\xd2\x5e\xf2\x2e\xe0\xf4\xee\xfd\x3d\x6e\x0f\xc7\xce\xe2\xd0\x1c\xe1\xa8\x1d\x14\x8e\xa9\xf5\x6e\x9c\xae\x24\x76\xd6\x94\xc4\xd2\x9a\x5f\x8c\x89\xb6\x9b\x6d\xac\x87\xef\x56\x5e\x54\x90\xc7\x76\x84\x38\x96\x57\x09\xd7\x0f\xef\x6b\xf2\x5d\xbd\xe5\x5b\xe3\xe0\x39\x12\xa2\x5d\x2c\xe7\x70\x48\xbe\x38\xaa\x48\xf7\x16\x55\x84\xa1\x92\xfd\xc1\x4f\xfc\xfd\xd7\xbf\x2a\x36\x17\x6d\xe9\x49\x6c\x2e\x3e\x08\xbf\x14\x9b\x8b\x3b\x72\x78\x4f\xca\xf1\xeb\xc3\x93\xc4\xc5\xb1\xb9\xe8\x3e\x89\x8d\x73\x8f\xcd\x65\xcf\x92\xd8\x5c\x3c\x09\x18\xc3\x90\x58\x5a\xbb\x76\x7f\xba\x99\xdd\x22\x56\xea\x91\xb9\x9f\x13\x9b\x8b\x1e\x92\xfc\x71\x6c\x2e\xb2\xa3\x9b\xc4\xe6\xe2\xb5\x74\x6c\xae\xbe\x8b\x96\xe5\x24\x36\xd7\x88\x74\x83\x88\x05\x3a\x54\x80\x77\xd4\x4a\x1c\x9b\x8b\x1e\x47\x6c\x10\xc7\xe6\x12\x53\xb1\xb9\x78\xc2\xee\x24\x60\x19\xdd\xef\xe3\x1d\xdd\x5b\x6c\xae\x31\x89\x45\xf6\x22\x36\x17\x5d\x95\x9d\xb9\xb0\x3e\x9a\x21\x09\xef\x45\x23\x76\x4f\x89\x48\xa1\x84\xb0\x4f\x09\x48\xbd\xc7\xe3\x3a\x53\x6d\x20\x8c\x61\x91\x3a\x2a\x2c\x5a\x28\xe6\xc9\xd5\x0b\xa2\xca\x93\x18\x5c\xfd\x52\x9f\xfc\xaa\x92\x26\x46\xab\x60\x73\xf8\xcf\xa0\x42\x4b\x40\x98\x58\xea\x97\xfa\x9c\xa6\x9a\xa2\xdb\xf1\x95\xa1\x54\xed\x73\xbc\x30\x28\xd3\xa3\xf1\xba\xb5\x9a\x8e\x6b\xd7\x85\x58\x61\x1c\xea\x1c\x53\x74\x42\xd9\x73\xd0\x5b\xfa\x79\x3e\x94\xc2\xb9\xae\x57\x40\x35\x95\xb5\xa1\x11\x76\x26\x23\xbe\xeb\xa1\x4b\xf4\xad\x4b\xbe\x75\x45\xf2\xad\x8c\x63\x7a\x75\x58\xad\xac\x79\x30\xe5\xc3\x31\xbd\x58\x54\x21\xdf\xb8\x2e\xf9\xa6\xe1\xd8\x5f\xac\x74\x25\xdf\x56\x23\xfc\xad\xa2\x91\x7c\x56\x88\xbf\xf5\xd8\x39\xfe\x46\xf5\x48\x3e\xbb\x46\xbe\x71\x3c\xfe\x56\xeb\x56\xf1\xb7\x35\x0b\xdf\xce\x1d\x0f\xd7\xc7\x55\xba\x38\xdf\x10\x6b\xd9\x28\x6e\x18\x59\xec\x7b\x8e\x1b\x36\x46\x4a\x09\x70\x0b\x2c\xb4\x50\x99\x59\xa8\x84\x88\xb2\xd8\x9a\xaa\x95\x68\xb5\xc3\xcf\x6d\xd3\xa6\x9b\x1d\x79\xa5\x1e\xce\x4c\xc3\xef\x54\xd4\xb2\xc7\xda\x76\x6f\xa3\x21\x83\x33\xf7\xcd\x35\x6a\x24\xff\x1a\xf0\x8f\x5a\xf7\x17\x07\x7e\x79\xe0\x77\xc3\x6b\xb5\xcb\x5e\x1b\xdd\xfe\x81\xb7\x96\x96\x5e\x38\xd3\x87\x42\x69\x58\xed\x1c\x1a\xd5\x8e\xe7\x1c\x5a\xf0\xcc\xf7\x2d\x95\x5e\x1e\xf5\x42\xc9\x18\x15\x42\x4d\xf3\x97\x96\xda\xe9\xf5\xab\x9c\x59\x65\x5b\xe1\x84\x2d\x84\x93\x2a\x37\x59\x85\x9d\xba\xd8\xe0\xfa\x01\x4c\x9a\xf5\x5e\x41\x1e\x56\xf7\xda\xa4\xa1\x4d\xf5\x66\xeb\xaa\x36\x0b\xd7\x61\x43\x9b\x88\x38\x36\x97\x3a\x5b\x1e\xb8\xd6\x55\x59\xb4\xae\x12\x35\x5b\xce\x39\x1c\x87\x8c\x43\x93\xc6\xba\x7f\x10\x78\xe3\xa8\xb8\xc5\xc5\x39\x2c\x06\x7c\xeb\xcc\xd7\x3a\x6c\xcf\x29\x9c\xd9\x06\xdd\xd1\x79\x16\x68\xa5\x55\x2f\x8d\x0a\xa5\xf1\xba\xdf\xb7\x4a\xfd\x7e\x50\x2a\x94\x46\x67\x1c\xaf\x8c\x13\xaa\x0d\xad\x6f\x5d\xaa\x27\xeb\xd2\x13\xaa\x55\x8d\xc4\x1e\x43\x51\x99\x26\x37\x72\x2b\x34\x65\x0a\xb5\x90\x91\x8e\x0a\x86\xa5\x8b\x46\x8d\x45\xf5\xd0\x58\x50\x87\x86\x5b\x3d\xce\x16\xb5\x40\x82\xef\x55\xf8\x7e\xdc\x6d\xdd\x8b\xdb\x98\x2a\xd5\x4e\xb5\x5b\x95\x8e\x15\xb7\x21\x53\xbb\x4d\x7d\xf3\xa6\xb4\x17\x07\xff\x64\xb9\x4d\x98\xb8\x5c\x7d\xe9\x56\x77\xeb\x2c\x5f\x87\x6f\x8a\x21\x1d\x56\x0b\x91\x3e\x5a\x6d\x67\xb5\xdd\x30\x4a\xcf\x3f\xc8\x03\x23\xa8\xbb\x15\x66\x61\xb6\x1d\xd2\x76\x8b\xb4\x3d\x86\xf6\x0e\x8d\x0d\x75\x9c\xb9\xb5\xe3\x6c\x03\x6d\xb7\x48\xdb\x63\x7f\xb7\xab\x43\xdb\x86\xd4\xe1\xa0\x9f\xd7\x59\xa3\x6b\x8f\xdb\xae\xff\x06\xff\x8e\x6d\x97\x7a\xeb\xb8\x7e\x08\x70\x02\x47\xda\xa3\xfa\x86\x12\x1c\xb7\xde\x53\x8e\x33\x26\x3c\x1a\x47\xcf\xad\x0b\xf4\xa6\xea\x4b\xc7\xf5\xa2\x7e\x0a\xc7\xb3\x6d\x5b\x18\xf9\xd4\xb1\xe6\x36\xe8\x8d\x5b\xae\x28\x16\xc5\x97\x17\xdb\x40\xfa\x0b\x70\xb2\x75\xeb\x63\xd6\x9f\x50\xd2\x84\x63\xab\x34\x77\xc0\xe5\x01\xe7\x73\xbd\x10\x0e\x95\x20\x30\xf8\x35\x55\x37\x3c\xd3\x55\xaa\xd2\xa9\x8b\x71\xc0\xa0\xba\xd2\x6a\xea\x23\xb7\x31\x9e\xec\xdb\x3d\xd7\xaf\xf7\x0e\x6b\xa8\x6f\xed\x1f\x27\xae\xe9\x8a\x6b\x6a\x31\x76\xcc\x29\xb7\xf6\x07\xba\x63\xb6\xf9\x15\x35\x18\xc0\x2f\xb7\xda\xb5\x07\x2b\xb3\x37\x58\xed\x04\x7d\x65\x4e\x07\x8c\x3c\x1d\xac\x77\xc2\xc4\xab\xb9\xfd\x35\x55\x19\x63\x98\xf6\x93\x82\x67\xd5\xbb\xa5\x75\x05\xc6\xc0\x38\x38\xf3\x31\xd8\xea\xc8\x6b\x68\xa7\x03\x28\xd0\x85\xe4\x50\xa9\x78\x6f\x36\xfe\x0e\xba\xc9\xd8\x74\x5d\x23\x8a\xff\xe6\xec\x04\x76\x2d\xe1\x76\xc7\xfc\x5a\x1a\x8f\x9c\xdd\x54\xdc\x18\x53\x03\xe0\x52\x36\xc8\xee\x99\xd4\xa9\x7a\x38\x8f\x95\xd5\x8e\xe9\xaf\xfd\x92\xd4\xba\xf4\xec\x6b\x1f\xac\x6c\xa3\x3e\x58\x49\x05\x2d\x8a\x3d\xb7\xe8\x3b\xc8\x53\x0a\xe7\x59\x55\xaa\x42\xff\xfd\x8d\xea\x50\x47\x2e\x8a\xd3\x37\x15\x18\xa6\xb3\xd9\xf5\x03\x8f\x36\xf0\x38\x6e\x14\x57\x3a\x8a\xae\xef\xca\xae\xb4\x91\x5c\xe9\x4d\x74\x29\x17\xe0\xbb\x88\x9e\xea\x35\xf8\x4e\xb1\xc1\xeb\x16\x4c\x6c\x37\x38\x0f\x7c\x3f\x4a\x9e\xb4\xe9\xb9\x46\xbd\xed\xf9\xc7\xbe\x4b\x5d\x14\xcf\xb8\xf4\x98\x76\xbf\x2a\x5d\xfa\x21\x6d\x4c\x55\xd7\x64\x14\x2f\xfc\x97\xc1\x0a\x72\x75\xca\xfe\x35\x30\x7a\xed\x85\x36\xf1\xba\xd5\x59\x83\x5d\x5a\xe8\xdc\x37\x07\xf3\xa2\xd5\xa5\x0e\xc5\x06\x2b\x97\x47\xad\x90\x07\x19\xc3\xf1\xec\x5b\xa3\x6a\x3a\xd0\x0f\xaa\xa2\xad\x4c\x4e\x0a\x66\x12\xbf\x32\x19\xcd\xdb\xf5\x94\x95\x7f\x1c\xb8\x32\x23\x30\xdd\x66\xa5\x55\x66\xab\x3a\x1a\xab\x2b\xb9\xdd\x83\xef\x43\xb7\x26\x48\x2b\xc3\x90\x02\x98\x5d\xae\x8c\x69\xd7\x91\x70\xbf\x7a\xb2\x63\x8c\x79\xa6\x7f\x94\x0b\xd4\x8a\xc7\xcf\xae\xd1\x53\x70\x9a\x67\x4c\x35\xa6\x1f\xb8\xad\x8b\xc4\x3b\x26\x23\xe3\xba\x71\xac\x44\x34\xdd\x1f\x40\x16\x0d\xbc\x5d\x5b\x5d\x21\x6f\x59\xbd\x2e\x97\xa4\x0f\x72\x1b\x60\x4a\xbe\xbb\x97\xc0\x1e\x6b\x2b\x59\xe8\xe1\x6f\x6e\xad\x2d\xad\x24\x43\xc2\x79\xab\x61\x0c\x53\xea\x7b\xb0\x01\x98\xa4\x69\x2f\x86\x49\x72\x24\xc0\x35\x6b\x55\xab\x57\x2b\xfb\xdd\x98\xf2\x0c\x5e\x36\x35\x40\xcb\x4b\x2e\xfe\x06\xb0\xd6\xc1\x96\xb3\x71\xde\x6a\xe6\xbb\x51\xe7\x57\xc8\x59\x01\x1c\xc2\xca\x70\x61\x7c\x3b\xc0\xdf\x07\xc5\x6d\x06\x23\xb7\x68\xd5\xe8\xa4\x0f\x32\xa3\xae\xfc\xfa\xc0\x0d\xdd\x91\x4b\x9d\x18\xf8\x7e\x5c\xd7\x37\x84\xbd\xde\x76\xee\xd1\xad\xd7\x95\xb7\x49\x7d\x65\xbd\x69\x97\x8d\x50\x51\xa6\xc8\x55\x46\xf2\x40\xa1\x4d\xe8\xaf\xef\xaa\xce\x8e\x11\x3c\x7f\xa0\x38\xf0\xbd\x70\x5d\xf1\x31\x9c\x82\xe3\x8f\x61\xe2\x3d\x50\x00\xb7\x5b\x37\x84\x67\x6a\xd0\x05\x7e\x12\x56\x52\x04\x4b\xed\x34\xd7\xf9\xa5\xb5\x8d\xdb\x5c\x3a\xf2\xb9\xb9\xd9\x56\xcc\xc5\x4e\xae\xba\xd5\xa9\xb2\xf0\xb5\xd6\x72\x52\x6e\xda\xd5\x37\x65\x1e\x42\x9b\x08\x74\xc7\x65\xaa\x04\x30\xf6\x05\xa4\xf2\x30\x9e\xdd\x95\x51\x80\x71\x67\x54\xaf\xd6\xee\x7a\x54\xa5\xef\x49\x05\x68\x6f\x89\xa0\x3d\xa0\xb3\x42\xdb\xa3\x36\x1a\xd0\x16\xf0\xf2\xb4\xef\x18\x15\x80\x4d\x97\xdc\x22\x4c\x0d\x0d\xc0\xa7\x31\x16\x1d\x7f\x01\x70\x2e\x70\x8c\xcc\xb6\xe3\x63\x5e\x13\x30\x3e\xb9\x15\xd0\x31\x77\xb2\xba\x85\xb3\xd2\x60\xd5\x31\xe7\x18\x3d\xc9\xf6\x81\x2f\xa9\x05\x96\x15\x9c\xe7\x4f\xfb\x40\x67\xe2\x4a\x82\xfa\x6b\x92\xc4\xfa\xa7\xea\x44\x03\x9a\xf4\x2b\x1a\xc0\xb2\x3e\xbc\x15\x4e\xc7\xf6\x98\xda\xcd\x8e\xe6\xc9\x38\xb6\xdc\xc6\xa1\x75\x14\x05\xca\x9a\xb6\xb6\xbb\x31\xd3\x77\x24\x0c\x0b\xe0\xcc\x80\x89\x30\xa5\x9d\x0d\x61\xee\x4f\xb6\x48\x9a\x6c\xf9\xd9\x72\xbd\x51\xc6\xc6\x01\xcc\xae\xfa\x7a\xf2\x66\x6e\xf7\x5b\xa1\xe2\xd4\xda\x98\xfe\x34\x46\x61\x14\x7e\xaa\xad\xde\x2a\x97\xf3\x5c\xe1\x4b\x07\xb1\x40\xb9\x0d\x57\x39\xc8\x8b\xb3\xbf\x17\xdc\xb7\xfa\xdb\x2a\xd8\xd4\x29\xb3\x5e\xb6\x7d\xd3\xac\xae\x26\x53\x65\x2e\x1d\xb6\xcb\x4d\xf9\x62\x6d\xe5\xcb\x6c\xd2\xf2\xdd\xd0\xf1\xdd\x4a\x65\x82\xc7\x73\x27\xd6\x77\x6e\xbd\xa0\xf8\x3b\xc1\x5e\xef\x5a\xf6\x7c\x3c\xdf\xcd\xd6\x94\xd4\x3a\xbb\x21\xd0\xb8\xe8\x49\x6e\xcf\x95\xea\x92\xe7\xbf\x61\x7c\x2a\x9e\x7f\xe9\x79\x7e\xa5\xe7\x19\x75\xc5\x03\x1d\xb5\x92\x37\x93\x75\x6d\x31\xde\x98\xc2\xec\x29\x1d\xc6\x0c\xf0\x8f\xf9\x5e\xf2\x0c\xb7\xeb\x50\x87\xab\x5b\x5d\x30\x8b\xed\xae\xbe\xf0\xf1\x18\x77\xd2\x78\x1b\x78\x35\x01\x34\x59\xe1\x78\x78\x1b\x57\x77\xb3\x37\xe3\xe4\x1f\x2d\xb7\x76\x91\xb7\x92\x2d\x6d\xea\x16\x0f\x75\x76\xf1\xf8\x7a\xd2\xb1\xeb\x52\x15\xd9\x33\xde\x40\x59\x14\x64\xcf\x4f\x64\x0b\xf9\x85\xf7\xb7\xae\xeb\x5f\xf0\x7b\xc7\x35\xf0\x98\xbd\x29\xa0\x23\x15\x46\x9c\x6f\x67\xa3\x91\xa7\x56\xba\x2c\xfc\x56\xcd\xd0\x69\x59\xf6\x18\xe4\x2c\x96\xb5\x47\xd9\xad\xd6\x07\x73\x19\x6f\xea\x41\x3d\x14\xc0\x6f\x14\xf4\xb5\xbc\x3e\xad\xab\x6d\x6b\x2e\xb7\x4a\xbe\xb8\x70\x17\xf5\xb1\xb8\x32\x36\x03\x3c\xe6\x81\x14\x8c\xde\xd6\x6f\x25\xb3\x51\x2e\x33\x6d\xe1\x4a\x4f\xde\x26\xcb\xdd\x1b\xb3\xf5\xdb\x73\x67\x57\x57\x40\xdb\xba\xab\x29\x33\xde\x56\xe8\xb2\x59\x59\x1f\x27\xb6\x57\x15\x14\x04\x3c\xb6\xe8\x44\x38\x75\x31\xfc\x18\x8f\x3d\x4f\xaa\xf7\x48\xff\xb0\x7c\xac\x1d\xd5\x8d\xb9\x00\xbc\x4e\xcd\x95\x79\x7c\x4a\x67\xa2\x58\xa9\xd0\x4f\xb7\xeb\x4a\x15\xd1\xad\xf6\x94\x39\x25\xd7\x31\x5e\xed\xed\x42\xb1\x42\xcf\x2d\x94\x4b\x23\x5f\x41\xfc\x41\x2a\x84\x9b\x76\xc5\xd9\xbf\xb5\xb7\x6f\xed\xf6\x69\xfe\x56\x0e\x77\x95\xa3\xc3\xc8\x95\x3d\x6d\x96\x8b\x5b\xf1\x62\x2d\x76\xe7\xfa\x46\x7c\x1b\x2f\x8c\x02\xc8\xbc\x31\x91\x7d\x84\x37\x24\xad\x68\x8b\xe5\xc2\x52\x68\xbd\x4d\x27\xf2\x66\x31\x1e\xd5\x0c\x4a\x76\x40\x4e\xd4\xaa\xf4\x64\xd6\xba\xa8\xbc\x27\xb5\x3b\x36\xd6\x0f\x55\x2c\xad\xce\xe5\xa5\x38\xaa\x2e\xc5\x1e\x8d\x75\x7a\x99\x1e\x2b\xad\x52\x00\x7c\x3a\xee\xaf\x65\x10\x26\xbb\xf6\xd0\xab\x4d\x15\xa6\xbb\xc1\xb2\xa3\xbf\x91\xdf\x80\xd5\xa7\xe6\xda\x5c\x8c\xd6\x46\x01\x78\xb8\xd7\xc5\x7a\xdb\xdb\x2d\x7a\x1b\xa9\x60\xac\xcc\xf1\x70\x55\x03\xfd\x4e\xd5\x47\x80\x13\x65\x63\xb8\x86\x63\xba\xa0\x87\x85\xc1\xd2\x76\x07\x4b\xbf\x56\x73\xab\x63\x65\x61\xcc\x6b\xf6\xc4\x96\x4e\x7e\xc0\x6f\xa9\xa3\xe5\xc8\x6b\x2c\x47\x06\x0b\xff\x00\x34\xf6\x26\x2c\x25\xb9\xe5\x19\x98\xd7\x30\x9c\x17\x69\xe9\x6b\x85\x88\x8f\x81\x36\xaa\x0b\x61\xb1\x6d\xb5\x30\xfc\xf3\xed\xa1\xc9\x88\x87\xe6\xdc\xe8\x86\xc0\x23\x1b\x37\x1c\x41\xfd\x9b\xee\xc2\x68\xd5\x56\xe2\x42\xb3\x6a\xdd\xf2\xaa\x5a\xef\x3b\x54\x20\xf5\x8c\x80\xb7\xa5\x23\x0b\x72\x6f\xe0\xc8\x6d\x71\x2d\x1d\x47\xc0\x9b\x73\xe0\x19\xc1\x03\x1d\xea\x4a\x05\x90\x39\x1b\x12\x7b\x96\xc8\x25\x0a\x8f\x5f\x41\x21\xb1\x74\x4d\x06\xc6\x7e\x81\x63\xe8\xc6\xb6\x47\x1c\x43\xd7\x87\x67\xdb\xd3\x17\xda\x58\x07\xf9\xd5\x25\x34\x48\x01\x8d\x63\x39\x66\xc4\xbf\xb8\x4e\xbf\x8e\xdf\x81\xc6\x53\xef\xd2\xdb\x75\xf9\x76\xe4\x76\x40\x95\x7b\xc0\xc3\x9e\x3a\x2e\x36\xfe\x71\x0f\xed\xb7\x57\xc6\x9b\xba\x32\xea\xea\x4a\xaa\x63\x79\xdf\x25\x3a\x92\xc8\x13\x57\x5b\x9b\x63\x15\xec\x2c\x83\xe4\xc3\xb2\xcc\x14\x64\x6c\xf7\x30\xb2\xd0\x01\x9b\xa0\xbf\x96\x0a\xba\x47\xe4\xfc\x71\xe4\xca\x3d\x16\xdb\x5e\xb6\x5f\x60\xdc\xd0\x06\xfc\x8c\x95\xf5\x8e\x99\xae\xe5\xba\xbe\xdd\x31\x60\xaf\x4e\x95\xad\x0f\x63\x24\x0f\xf8\xb5\x58\x50\x17\x80\x0b\x90\xad\xac\x6b\x30\xf2\x92\x72\x8a\x4e\xb5\x00\xb8\x07\x03\x8c\x6a\x43\x7f\x07\x8c\x2d\x52\x12\xf0\xa6\xe4\x1a\xae\x00\x36\x04\xb6\xc5\xc0\xde\x21\xb1\x7e\xf1\x3b\xc6\x89\x08\xef\xf0\xef\xf6\xdb\x26\x79\xc0\xa6\x60\xa4\x36\xcc\x05\x0e\x0a\xad\xd6\x31\x8d\x81\x3e\x9b\x2b\x20\xd3\x47\x1e\xa6\x97\x5a\x1b\xd3\xcc\xd8\x0d\xbd\x39\xd1\x03\x60\x0f\xfa\x66\x6f\xb5\xaa\x33\xda\xd6\x64\xe6\x5e\xad\xde\xdd\xc2\x18\xbe\x51\x01\xbf\xf3\x8f\xb6\x5d\x03\xbd\x53\xbd\x0c\xe7\x14\xcc\x8f\x40\x0e\xd0\xe6\xbc\xb9\x12\x8f\xc0\x53\xb1\xbc\xaf\xc9\x05\x6f\x5b\x57\x96\x44\x07\x0f\x64\xc7\xd4\x5a\x2b\xf1\xa2\x60\xfa\x72\xc4\x5d\x73\x29\x96\x5b\xa0\xab\xaa\x40\x33\x06\xb4\x37\x5a\x48\x2d\x4c\x37\x20\x77\x9d\xba\x23\xd6\xb9\xa5\xdf\xa6\x97\xfe\xa8\xe0\x4c\x2a\xe2\x82\x3a\xd2\xa0\x1f\xfb\x76\xad\x8d\x6d\x90\xa1\x53\x1b\x88\x6b\xc3\x1d\xba\xbb\x5e\x7b\x45\xbd\x0d\x5d\xb9\x23\xb9\xe6\x00\xec\x14\xb7\x6f\x9b\x03\x7a\x4d\x31\xd3\x45\x5b\x2b\x6c\xfc\x41\x9f\x61\x2b\xd0\x47\x46\xb1\xa9\x02\xb7\xc2\x74\x57\x1b\x28\x6b\xd5\x0d\x5b\x57\x1b\x64\xca\xb4\xe3\x50\x05\xc9\xa3\x80\xf6\xe2\x78\xca\x40\x6f\x7d\xcf\x07\x99\x41\x45\xf1\x9b\x41\xef\xf6\x20\x8f\x18\xc7\x3e\x16\x71\xec\x63\x87\xc2\x7a\xef\x08\xf6\xd2\xb0\xd1\xa3\x09\xdd\x61\xd9\x87\xe9\xaa\x0f\xf4\x85\x65\x54\x9f\xd4\xeb\x27\x34\x0d\x7a\xd4\xaf\x8b\x91\xec\xc1\xf1\x9a\xc1\x36\xf1\xeb\x78\x1c\xc7\xcb\x5d\x9b\xf5\x28\x43\x5a\x51\x3d\xcd\x36\x6a\x05\xaf\x5a\xef\xd9\x52\xb9\xe8\x19\x0c\xf4\x97\x11\xb6\xc6\x11\x6c\x73\xb0\xd5\x77\x83\xde\xc6\x38\x2e\x80\x5e\x84\x8d\xdf\x5e\xda\xbb\x3a\xfc\x1e\x41\x2b\x32\x20\x17\xa0\x4f\x52\x01\x64\x45\x6f\x88\xed\xb9\x35\xd8\x28\xae\x89\xf9\x6b\xa1\x3b\x7e\x01\x74\x66\x1d\xf7\x0b\xf4\x3e\xe8\x59\x99\xf4\xd3\x00\x9b\x9c\x5e\x1b\x75\x8d\xd0\xa9\xed\x02\xad\x82\x7c\x96\xc1\xae\xf2\xa7\x2a\xd8\x40\x40\xc7\x17\x62\xdb\x6e\xa8\xe9\xc4\xde\xf5\xe8\xd5\xb6\xde\x5f\xc0\xf8\x9b\xc0\x27\x96\x7f\xd8\x3b\x42\xb7\x05\xfa\x01\xf3\x1f\xd8\xb8\x60\x03\xf8\x9b\xb6\x6b\xbc\xe1\xf7\x76\x6c\xc3\xb6\x89\x1e\x21\xb6\x2c\x7c\x07\xbb\xf7\x4e\x7f\x30\x67\x96\x3e\xb0\xab\x41\x0f\x16\x69\xe5\x4f\xdb\xed\x6e\x71\xc9\x83\x5c\x29\xaf\xeb\x17\x50\x6d\x3d\x6f\x6f\x2e\x2a\x98\xd7\xd6\xd4\xc6\x70\x6a\x0b\x71\xed\x8f\xc7\x8e\x0c\xf3\x23\x69\x0c\xf3\xa2\x1e\xd0\xc6\x18\xcb\x24\x3c\x2f\x1a\x82\xcc\xd5\xd6\xb2\x30\x06\xbc\x8c\x57\xbb\xa9\xb6\xa6\x0a\x86\x57\x5b\x74\x81\xe7\x2b\x6e\xbd\x5c\xf4\xab\x3d\x6f\x2e\xcf\xdf\xdc\x8a\xa0\x18\x93\x91\x6d\x08\x48\x2a\x94\x66\x0d\x15\x8d\x31\xbf\xc5\x31\xb7\x17\xa0\xbb\x29\xfc\xbd\x0a\xdf\x41\xef\x6e\xba\x11\x4d\x4c\x35\xbb\x36\xe0\xc8\xbc\xc8\x04\x9e\x37\xa6\x63\xa7\xb6\x11\x36\x12\x48\xea\x9a\x4d\xf4\xa3\x5b\x39\x5a\xd3\x69\xcb\x67\xfa\x56\x1d\xcf\x03\x7b\x27\xeb\x4a\x4f\x0b\xa7\x6d\xbb\xa2\xbc\xe1\x39\x6e\x34\xbf\x9b\x38\xbb\x01\x8f\x69\xda\xae\x09\x8c\x47\xb5\x55\xdb\xaf\x30\x9e\xd1\xeb\xda\x06\xe6\x97\xb6\x62\x4b\xeb\xa2\xe3\x33\x82\x2d\x8d\x19\xb0\x33\x69\x7c\x08\xd4\x91\x06\x1c\xb6\x87\x1d\x1f\x64\x07\x1e\x3b\xe3\xc8\x93\xf8\xe0\x60\xff\x83\xcd\xac\x39\xb2\x00\xb8\x00\x5a\x34\x7b\xcc\xca\x67\x34\x5b\xa6\x8b\x2b\x89\xe9\xda\x7e\x20\x45\xf5\xf6\x64\xdb\xdf\x30\xae\xd1\x16\x6c\x90\x53\x8e\x81\xeb\x1b\xc0\xf3\x1c\xcb\x2a\x79\xe9\x1f\x1a\xd8\xde\x97\xfd\xe3\x85\x37\x4e\x14\x8d\x60\x8c\x31\xdd\xd5\xc0\xa6\x97\x99\x3e\xd8\x2c\x98\x16\x3b\x1e\xd0\x52\xab\x09\xb4\x6b\x60\x5d\x0e\x76\x12\xc8\x50\x32\x8f\x02\x7a\x25\xfa\x54\x85\xf1\xc7\xf6\x2a\x96\x1d\x06\x91\x6d\xf0\x6f\x8c\xe7\x76\x82\xeb\x2f\x14\x80\x05\xec\xc9\x01\x9e\x6b\x0c\x5a\x61\x15\xec\xce\xa0\x4b\x1b\x03\xde\xa6\x5c\x26\xd1\x53\xa0\xbf\x80\xcf\x0a\x30\x57\x58\x00\x5d\x08\x98\xce\xc3\xd5\x79\x52\x95\x4f\x96\xb3\x13\x95\x2a\xbb\x0c\xc0\xae\x5d\x56\x0b\x60\x0b\xba\xc5\x53\x95\x56\x6b\xdb\xd7\x76\xbe\x57\x1d\xc1\xbc\x3e\xb4\xc7\xca\x7e\xe7\xee\x76\x44\x35\x6f\x8c\xbd\x7f\x3c\xb9\xf5\x75\xe1\xff\x63\xef\xcb\x9f\xdb\xb8\x75\xc7\xff\x15\xcd\xeb\x64\x5e\xfc\x89\xa4\xe8\x96\x8f\x99\xcc\x73\x9d\xa6\x55\x4e\xa7\x69\x1b\x3b\xf3\xed\x0f\xb2\xb4\xb2\xd6\x91\xb4\xaa\x8e\x38\xae\xc7\xef\x6f\xff\x12\xbc\x96\x07\x78\xac\x6c\xc7\x7e\xa9\x9b\xa6\xb5\x97\x20\x08\x02\x20\x08\x5e\xc0\xfc\x97\x57\x9f\x07\xf3\xe1\x2a\x6d\x9c\xf6\xd2\x5a\x0f\x78\x4a\x6c\x04\xac\x95\x89\x1d\x26\xb6\xe3\xe0\x97\x69\x9e\xe3\xbd\x95\xbc\x4b\xe7\x64\x1c\x12\xdf\xbf\x4e\xf8\x33\x6b\xbd\x1b\x8c\x3e\xcd\x77\xa6\x47\x7f\x7d\x18\xb2\xf9\xf7\x27\xf0\xe1\x47\xbd\x5f\x3b\x69\x73\xd0\x4b\xeb\x1f\x60\x2d\xc0\xd7\x3d\x64\x7c\x66\x1d\x62\x53\xdf\x13\xda\x97\x40\xe7\xf3\xb4\xf7\x91\xcc\x19\x44\xa6\xbd\xe9\x4f\x84\xce\xee\x9c\xd8\x68\xb1\x16\x23\xeb\x0c\x62\x17\xd7\xbf\x1d\xec\xb7\x67\x67\x87\x49\xe7\xc5\xf1\x05\xcc\x69\xbf\x93\x35\x67\xb3\xd7\x79\xfe\x66\xe7\xeb\xf1\x0b\xe2\x7b\x1f\x12\xf9\xd0\x79\x96\xe8\xe8\x4f\x07\x6f\xbe\x74\x5f\x7c\x19\x9c\x0d\x4f\x89\x6d\x83\x79\x17\xd6\x7d\x59\x4a\xd6\x79\xbf\xf7\x7a\x17\xfd\xcf\x4f\x2e\xde\x10\x1f\xe6\xe3\x2b\xc8\x33\x4f\xe6\xa1\x1e\xf4\x0f\xd6\xdf\x64\x0e\x7f\x0b\x79\xf2\xff\x7e\xba\xfc\xe3\xd7\xf3\x8f\x60\x2b\x5f\xd1\x75\x39\x19\x0b\xd4\xf7\x22\x36\xf5\xec\xe5\x4f\xbd\xec\xe9\xe0\xac\xf7\x74\x9f\xac\x0f\x89\xcc\x8f\x1b\xef\x0f\x0e\x93\x1f\x9f\xfc\x5d\xfb\x63\xd6\x7b\x3d\xf9\xd8\x5c\x7c\x4d\x5f\x76\x3e\x4d\xdf\xfe\xf6\xe1\xc9\xf9\xc5\xf0\x74\xfe\x35\x69\xb7\xbe\x74\xe7\xe7\xbf\xc3\x5a\xfc\x80\xe8\x54\xf3\xc3\xb9\xc8\xb9\xff\x84\xe7\xda\x5f\xf6\x9a\x19\xcd\xe9\x7f\x48\xfd\x66\x3a\xf6\x58\x3e\x7c\x80\x15\xf9\xf6\xc9\xdf\x57\x90\x6f\xff\x5d\x8f\xf0\x27\xa3\xf4\x1e\xca\x7c\xfe\xaf\x0f\xbe\x08\x3f\x64\xdc\xea\x10\x3e\x2b\x7e\x48\x46\xed\x27\xee\x87\x64\xd3\x9e\xe2\x87\x7c\xf9\xf4\x55\xf8\x6f\x07\x6f\xa9\xff\xd2\x22\x34\x82\x4d\x6a\x5d\x7c\xf8\xfc\xf2\xe3\xc7\xc9\xa7\xfe\x1f\x93\xf6\x87\xa3\xe9\xcb\x35\xf9\xff\xcf\xbf\x12\xdc\xef\x88\x3c\x88\x1d\x86\x1c\xff\x17\x64\x2d\x46\x6c\xef\x71\xe3\xb7\x83\xde\xc5\x87\x33\xe2\x4f\x90\x7a\x50\xff\xdd\x67\xb0\xd5\xc4\x56\x52\x5a\x68\x7e\xfe\x0f\x64\xdd\xfc\x17\xd8\xf9\x97\x30\xef\x91\xf1\xcb\xe6\x9d\xac\xf3\xf3\xd9\x71\xf2\x66\x7c\x0e\x6b\x87\x0b\xd2\x1f\x32\xc7\x51\x7f\x3e\x7d\xcd\x65\xf1\x9a\xfa\x9e\xc7\x64\x5c\xf5\xa6\x64\xdd\x4e\xec\x55\x6b\x4a\x6c\xec\x47\xe2\xef\xff\xf5\x92\xd8\x71\xe2\xcd\xc3\xff\x3f\xc3\xfc\xf4\x0a\x7e\x3e\x78\xfb\x17\x99\x63\xfe\x7a\x3d\xed\x7d\xfc\x78\xfa\xb2\xbf\xff\xf9\x97\x27\x64\x5e\x5f\x75\xc6\xb3\xc6\xfe\xa8\xd5\x79\x4e\xfd\xc4\xde\x6a\x67\xdc\xec\x1c\x8c\x5a\x4f\x7e\x4c\x9b\x4f\x7e\x21\xab\x8f\xfd\xf1\xf1\xab\x9f\xc6\xbd\x7a\x63\x3c\x9b\xee\x8f\x4e\xc7\x4f\x47\x47\xe9\xf3\x41\xc6\xe6\x10\x62\x27\x9e\x9c\xfd\x72\xf1\x6e\xd4\x6b\x3f\x3d\xcb\xde\xbd\x3b\x6d\x91\x39\xaf\xd9\x78\x4f\xfc\xc5\xed\xb3\xd6\x87\x37\x54\x3e\xc7\x74\xee\x65\xf2\x21\xfa\x0b\xe3\x92\xca\xe8\xb8\xff\x4e\xfa\x8a\xe7\x67\x09\x19\x1b\xef\x89\x9f\xf7\x96\xe9\x03\xf0\x66\x9f\x8c\x8d\xe1\x2b\x32\x36\xde\xd3\x75\x2c\x9d\x8f\x89\xbc\xce\x89\x75\x38\xff\x08\xb6\xf9\x25\x95\x59\x0f\xf6\xb1\x8e\x09\xec\xea\xd5\x8f\x27\xcf\x9b\x2f\x61\x7f\x04\x64\xd0\x7a\xf2\x8e\xf0\xfa\x2d\x95\x37\x6d\x1f\xe8\x20\x6b\x06\x26\x6f\xea\x5b\x31\x5d\x02\x3b\xdf\x7f\xc3\x68\x21\x36\x8c\xb4\xdb\x7d\xba\x9c\x29\x3a\xfa\x9e\xeb\x00\xe0\x22\xe3\xf7\xaf\xc3\xac\xfd\xee\xd3\xe7\x97\xc9\x21\xf1\xb5\x7e\x3b\xfb\x44\x7c\xf6\xac\xd3\x3f\x9b\xa7\x6f\xa6\x60\xf9\x89\x5e\xce\x7b\xeb\xe4\xb4\x3d\xdc\x99\xcc\x3a\xef\x93\x6c\x52\x27\xf6\xfd\x57\x62\xd7\xf7\xcf\x5a\xc4\x87\xe9\x25\xfb\xc4\x47\x3c\x24\xbc\xdb\x49\x5b\x1f\x89\xfc\xd2\x83\x49\x76\xf0\x9e\xc8\xa2\x4b\x7c\x74\xc2\xd3\x9f\xf7\x0f\x7a\x07\xfb\xa3\xec\xd3\x36\xe9\x2b\xf9\xfb\x91\xd0\x76\xf1\x92\xcc\xbd\x64\x4d\x77\x01\x73\x10\xfc\x0e\x7b\x50\xb0\x96\x06\x3d\x79\x0b\x7c\x21\x73\xc6\x9b\x31\x5c\x27\x81\xb5\x75\xc6\x75\x85\xf0\x39\xcd\x08\x6f\x32\x3e\xce\x33\xe0\x19\xf8\x9c\x30\x8e\xc0\xef\x4c\xc9\xfa\x9f\xea\xd0\xf3\x34\x7b\xf5\x9a\xcb\x8b\xf9\x3d\xad\xf4\xd7\xf4\x25\xd8\xf3\xbf\xc8\xba\x8b\xf0\x65\xfe\xf3\x2b\xe2\x5f\xfc\x06\xff\xa7\xbe\x39\xec\x0b\x1d\xa7\xef\x99\xce\x7e\xfc\x70\xfa\xe9\xd3\x93\x59\xef\xd5\xd1\xe9\x27\xe2\x93\x64\x3f\x93\x79\xf9\xe7\x5f\xe4\xfe\xe2\x39\x59\x5b\x66\x44\xce\xad\x6d\xba\xcf\xfa\xe2\x90\xfc\x3d\x86\x5b\x4c\xfb\xec\x24\xf0\x74\xff\xc7\xcf\xf4\xb1\xd9\xbe\x7c\xf1\xf6\xeb\xf9\x8b\x37\xfb\x1f\xe1\xb4\xe8\x79\x1d\x4a\xc7\xe8\xb9\xd3\x4f\xf8\xa9\x14\x1c\xc2\x1e\xbe\x98\xec\x27\xcf\x9f\xd2\x93\xe2\x44\xdc\xe5\x32\x5e\x8e\xc9\x33\xd2\x1e\xa3\x63\x9f\x12\x21\x5e\x98\xfd\x0e\x67\x0d\x9f\x39\x5c\x4f\x54\x7e\xbf\x7f\x4a\x16\x5d\x90\xbd\xff\xed\xf6\xc1\xe1\xf9\xeb\x2f\x3f\xae\xb7\x7f\x79\x7e\x9e\x7e\x39\x38\xda\x7e\xf9\xf7\xd7\xde\xd3\x17\x93\xa7\x4f\x9b\xf0\xe2\x8c\x61\x7e\x77\xbc\xbf\xbd\xff\xdb\xf9\xf3\x43\xf5\xa5\xdc\x28\x7f\x29\x77\xc8\x5f\xca\x8d\x9e\x9e\xfd\x7c\xfa\xfe\xfd\x8f\xe3\xfd\x1f\x9f\x3f\x39\x3f\x6c\x9d\x3e\x39\x7b\xde\xe9\x1d\x9e\xed\x3f\xd9\x7f\xde\x3c\x7f\xb7\x73\xda\x69\xd0\xf3\x25\xef\x39\x1c\xc2\x08\xfa\xb2\x6e\x5b\x39\x81\x5f\xfc\x31\x79\xfd\xf2\xe1\x04\x9e\x6a\x9b\x38\x66\x7d\x38\x11\xff\x3e\x4f\xc4\xe1\xac\xfb\xdf\x5b\xe1\xd7\xd5\xd6\xf3\x6f\x11\x06\x41\x46\xbb\xf8\x7f\xa3\x5a\xad\xf3\x6f\xd7\xab\x7d\x0e\x6e\x87\x71\x88\x81\x71\xb6\xd7\xfe\xb7\x1d\x36\x82\x87\x69\x08\x12\xe9\xac\x84\x36\xe1\x0c\xc9\xa0\x12\x6d\xc7\x44\x40\x09\x68\x71\x02\x68\xbe\x63\x3b\x04\x85\x52\x48\x63\xa7\x4d\xe7\xab\xcb\x3c\x5b\xf7\x7a\x05\xaf\xea\xc9\x4f\x32\x32\xdc\x7c\x4e\x60\xfb\x33\x1a\x8d\x74\x96\xe4\xb1\x31\xfb\xf3\xca\x98\x08\x74\x02\x42\xad\x38\x82\x89\xd6\x90\x58\xa2\xf6\xcb\x7a\x53\x3b\xcc\x0c\x43\x32\x48\x7e\x87\xe5\xbc\x2e\xd9\x39\xcd\xf0\x58\x82\xfe\xc8\xfd\x8e\x64\x4c\x6a\x8e\x59\xfa\x47\xc9\x00\x5b\x4a\x67\xcb\x64\x85\xc5\x07\xb5\x63\xbd\xf2\x50\x83\x65\xe3\xd7\xbc\x01\xf5\x1b\x0d\x34\xa6\x43\xee\xdd\x2a\x76\x45\x0b\x4a\x42\x0b\xf4\x78\x67\xed\x5a\x4d\x06\x70\xd0\xe0\xfe\x2b\x52\x69\x23\xc1\x64\x34\xe5\x5a\x24\xcb\xf5\x64\xb5\x8c\x49\xd0\x45\xa3\x91\x89\x18\x68\x86\x2c\xd5\x78\xad\x10\xd8\x84\x47\x39\xe9\x20\xe9\x12\xda\x66\xde\x2c\x50\x80\x26\xcf\x89\x62\xe4\x16\xcc\x13\x1a\x6e\x63\x54\x97\xf8\x0f\x66\xb4\x1c\x3d\x18\x8f\x19\x03\x4f\xd7\x4a\xa9\xb8\x22\x0b\x22\xaa\x72\xba\xba\x37\x9b\xa2\x57\x22\x16\x9c\x47\x87\x7d\x84\x23\x09\xd5\x38\xc6\x3c\x3b\x07\x5e\xb3\xc4\xf3\x6a\x93\x8e\xf5\x57\x2c\x81\xbe\x1d\xec\x4f\x0f\x44\xc8\x13\xa3\xe4\x81\x83\x9a\xb8\x74\x22\x9a\x2d\xa5\xd3\x53\x34\x1d\x36\x8d\x45\x24\xf8\x24\xa2\xe2\xf9\x71\xe5\xa9\xc7\x64\xfe\x8b\x8e\x12\xfb\xcf\x59\x99\x25\xc8\xbb\x7e\xe2\x34\x25\x0c\xb1\xae\x19\xee\x20\x33\x4e\x9a\xd4\x6c\xe1\xca\x90\xa8\xed\x19\xd1\xb9\x50\xec\xad\x00\xf2\xf9\x22\x1d\xe8\x02\xb7\x43\xf1\x19\x95\x9f\x55\xa7\xc9\x72\x09\x7a\x22\x33\x89\xe3\xf2\x95\x80\x25\x2d\xb3\xec\x8d\x64\xa4\x6b\x35\xb6\x91\x68\xd4\xce\x88\x3b\x6e\xca\x1c\xdc\x65\xd9\x96\xc3\xc2\x73\xa0\x67\x69\xc8\x0d\x6d\xe6\xc3\x02\xd0\x9b\xe9\x61\x44\x72\xc8\x38\xc3\xe1\x09\xc2\xad\x46\xa8\xe1\x59\x98\x84\x11\x4f\x67\xf3\x35\xa4\xaf\x57\xdc\x07\x6f\xd6\x3d\x2d\x3b\x55\x9e\x49\x6c\xb7\x52\xed\xb4\xa8\xba\xb1\x34\xb3\xe2\x37\x19\x45\x8c\x67\xb4\xc9\xe7\x71\x2c\xc3\x0d\x9b\x64\xc4\x74\x0d\xe1\xb8\x55\x5b\x27\x13\x1d\x06\x3b\xc2\xa2\xd9\x7e\xcb\x7e\xd8\x91\x73\x59\x0e\xfc\xca\x72\x9e\xce\x4a\xd5\xce\xb2\x04\x76\xbd\xbf\xd8\x0b\x02\x58\x98\x2a\x29\xe9\x0c\xfb\x69\x40\xd4\x62\xb5\x6b\x07\x36\x76\x83\x78\xf8\x2b\x82\x06\xf6\xfb\x7d\xcd\xa9\xb1\xf3\xef\x73\xff\x8c\x8a\x42\x7c\xe2\xd9\x17\x1b\xe6\x14\x4b\x53\x0a\x91\x39\xca\x4c\x94\x3f\xe8\xaf\x92\xd3\x6c\x71\x61\x1b\x1d\x51\x22\x67\x2a\x9a\xfe\xb5\xec\x9b\xcb\xec\x7c\xb2\x4a\x94\x5f\xa1\x10\x6c\xb4\x21\xb0\x49\x0d\xfe\xe0\x16\x50\x92\xc9\xa3\x75\xd9\xa3\x31\xaa\xde\xb3\xea\xac\x3f\xf5\xc4\xfa\x8a\xe7\x06\x47\xe8\x63\x87\xa0\xd5\x15\xfe\x97\xa6\xbc\xe3\xd2\xd6\x84\x6b\x5b\x1a\x45\x94\x4d\x1a\xa6\xad\x99\xe7\x61\x8e\x76\x35\x38\x3d\x9a\x15\x8d\xa0\xdf\x9d\x88\x56\x4c\x86\x06\xd7\x4a\xd2\xa5\xe4\xa1\xca\xb7\xf9\x8c\x13\xe6\x2e\x22\x57\x3b\x4f\x57\xb4\xdf\xe5\x5f\x01\x6c\xe4\xd8\xc7\xf8\xeb\xe1\x6e\x46\x38\x7d\xf1\x9a\x78\xe9\xf0\xc4\x59\xb2\xc7\x1a\xcd\x8d\x9b\xeb\x9b\x9f\x61\xdf\x01\x6f\x0b\x38\xd6\x61\x64\xdc\x5e\xc8\x18\xcf\x5a\x9e\x61\xa9\xa1\x37\xe5\x28\x81\x0b\x43\x7d\xbb\xfc\x27\x10\x59\xee\x67\xb4\x90\x14\xc6\xb8\x27\xc5\x3c\x49\x99\x27\x11\xd0\x94\xa8\xcf\x91\x0c\xff\xf5\xa7\xb5\xf4\xb3\xf2\x77\x68\x95\x69\x69\xb0\x76\x2d\x4f\x60\x42\x99\xcb\x92\x2e\xe2\x16\xc1\x58\x17\x5c\x6a\x3c\x50\x02\xf6\xd9\xc5\x55\xe9\xbd\x8e\xfb\x73\xcc\xb4\xa2\x71\x5e\x85\xae\xce\x93\xc5\x72\x9e\x50\xab\xb6\xdb\xa8\x51\x71\xda\x9f\x72\xf4\xa5\xea\x32\x25\xb6\xf2\xd2\x4a\x54\xcc\x27\xde\x39\xe9\x55\xb2\xf8\x92\x54\x9a\xc3\x3d\x4f\x99\x89\x30\x8f\xe1\x88\x65\xe5\x57\xe2\x79\x5e\x2f\x56\xa2\x95\x53\x53\x21\xe1\xd9\xff\x5d\xfa\x90\xf3\x0c\x9e\x0a\x29\x51\x50\x6c\x50\xad\x4f\x12\xad\xb7\x79\xce\x8a\xba\xb2\xf2\xa4\x3f\x0b\xc5\xd6\x73\x00\xe5\x79\xfc\xe0\x4f\xd4\x06\x50\xc3\xd8\x38\x68\x6e\xa1\xb4\x3c\x93\x0b\x4d\x85\xf1\xca\x5a\x55\xf2\x6c\x05\x11\x3f\x3d\x29\x67\xd6\x4b\xf0\xbe\x68\x4c\xce\x5d\x80\xda\xab\x4c\xb3\xbf\xb1\xaf\x4b\xfb\xa3\xf9\xc1\x4f\xe9\xb3\x61\xfa\xe5\x52\x23\xab\x32\x48\x26\x13\x3c\x74\xb1\x62\x4c\x44\x7e\x10\x68\x81\x21\xce\x73\xb5\x0a\xbd\x96\xa3\x67\xb9\x22\xdf\x07\x06\x3c\x17\x9f\x9d\xe8\x08\x85\x23\x1a\xa5\x43\xca\xfd\x62\xb9\x20\xd0\x47\xac\xb6\xb1\x54\xd9\x21\xff\x90\xd1\xc8\x72\xeb\xb2\x5f\x54\x9d\xcd\xd3\xcc\x52\x9a\x02\x39\x4c\x64\xf4\x5e\x11\x50\x98\x21\x61\xe3\x42\x1f\x82\xd5\x56\x0e\x91\xb7\x72\x89\x4c\x6e\xfd\xc9\x84\x2e\x07\x60\x2a\x22\xf8\x2b\xd9\x7a\xb5\xe7\x2f\xc6\x30\x5b\xac\x97\x3d\xb8\xe5\x26\xb1\x2e\x71\x26\xf8\xda\x70\x80\x68\xb2\x61\xdb\xe0\xb4\x11\x3b\xd9\x2f\x7c\xd6\x72\xd9\x8c\xd2\xaf\xc9\x50\x97\xd7\xf5\xec\x1c\xd2\x31\xea\x27\x9a\xbf\x9f\xa7\x93\x09\xf1\x07\x20\xb2\xfd\xae\xb4\xd6\x48\x12\x7a\xfa\x13\x99\x4d\x92\xe6\x90\x99\x13\x35\xdb\x3c\x52\xe8\xa6\x48\xec\xc6\x55\x88\xbb\x9d\x4d\x26\x60\xe9\x56\xd9\x7a\x30\x56\x4d\x8e\x6a\x63\xf5\x44\x16\x4a\x09\x32\x37\x48\xdc\x17\x74\xca\x55\x4a\x72\xed\x6f\xa8\x12\x08\x98\xfc\x82\x7c\x56\x52\xef\x7f\x7a\x5c\xb3\xf3\xf1\xc3\x47\x36\xfa\x21\x97\xb7\x50\x02\x3b\x4f\x98\x9f\xfd\x15\xe0\x90\x4f\x04\x39\x00\x3b\x72\xa2\xc9\xbb\xf5\xd6\x54\xa6\x49\x0f\x05\x99\x64\xf1\x06\x42\x04\xe8\xed\xf3\x54\x1e\x9c\x00\xba\xb6\x82\x7c\x25\x82\xa0\x7c\xd2\x51\xda\x57\x42\xb8\xe3\xe2\xc5\xa7\x59\x15\x2f\x1d\x4c\x9a\x22\xc9\x7c\x21\xd1\x1d\x85\x00\xe1\xb4\x2f\x6e\x6d\x17\x00\x48\x57\x65\x8e\x7b\x9b\x0a\xcc\xa1\x71\xb5\x10\xa2\x40\x12\x30\x5f\x13\xe3\x43\x98\x72\xa9\x4e\xde\x92\x67\x5f\x85\xca\xca\x90\xf8\x0a\xf3\x4e\xb2\xe1\x45\x5e\x5f\xf5\xe6\x9b\x7a\x7c\x72\x01\x43\xd3\xb0\x43\xad\x2d\xdb\x11\x2c\x6a\x2c\x30\xac\xcf\xaa\xd4\x24\x96\xd1\x22\xf8\x96\x2c\xd8\xc6\x19\x0e\x81\xd9\x58\x31\xa9\xe4\xcd\xf1\x46\x4c\x33\x7c\xe3\x96\xd7\xe2\x50\xa9\x5d\xab\x4d\xed\x55\x1f\x5a\x8e\x5b\xe8\xdc\x9e\xd5\x75\xe1\x09\xee\xe8\x0b\xe0\x2e\xfc\xb9\xb2\x81\xec\xa5\xc2\xf5\x3a\x6f\x1e\xb5\x80\x9b\xab\x6a\xe3\x4d\x33\x47\xb0\xa1\xa1\xae\x40\xd3\x19\xe9\x5a\x0a\x07\x9e\xf4\xff\x4f\x8d\xdf\xcd\xff\xdb\x6c\x31\xb7\x64\xd5\xd9\x59\xac\xeb\x94\xdd\x59\xcb\x49\xd7\xd7\x9c\x32\xbd\xa7\xc8\x6a\x61\x71\x29\x4f\x9f\x16\xcf\x9f\xb2\x70\x42\xe8\x6f\x1e\x46\x19\x80\xaa\x3a\xf1\x12\xd5\x35\xac\xa9\xb3\x63\x75\x9a\xcc\xd6\xa5\x2a\x71\x60\xa7\x66\x42\x29\xcc\x26\x08\xf6\x55\x87\xe9\x74\x9a\x0c\x39\x17\x7d\xf6\xdd\xf8\x2a\x97\x80\x86\x59\xd7\x1d\x5d\x18\xd4\xf6\x82\x8b\x02\xf2\x9f\x3d\x60\xd7\x77\x6d\x54\x43\x6f\xb4\x57\x96\x73\x3b\x56\xc0\xe6\x61\xac\x04\xa6\x2d\x93\x74\x73\x2d\x57\x13\x8b\x39\x7b\x67\x53\x54\x55\xbd\x8a\xff\x0a\xfb\xe9\x2c\xe7\x16\xc0\xcf\x8f\x46\x87\xb4\xeb\xe3\x49\x0e\xa0\x91\xa2\xf9\x1c\x18\x2d\x06\x40\x14\x31\x95\x20\x35\x15\x07\x39\x8a\x5f\x80\x11\xa3\x15\x47\x91\x52\x2b\x37\x3b\xd0\x90\x5b\x55\x78\xb9\x46\x86\xee\x1e\x60\x94\x98\x10\x91\xc4\x54\x42\xd4\x54\x30\x72\x74\x7d\x28\x22\xbd\xd8\x9a\x8c\x7c\x9f\xe0\x0b\xa8\x6f\x6c\xcd\x48\x9e\x85\x07\xfa\x78\x35\x9d\x54\xd3\x6c\x79\x69\xfb\x50\xa1\xc5\x8c\xb6\x55\x48\x60\x2e\x4a\xab\x71\x3a\xfb\xd7\x9f\x1a\xa9\x65\x17\x90\xee\xb1\x33\x03\xda\x11\x9b\x70\x00\x63\xa1\x61\x5f\xb1\x7a\xf5\xb6\xa8\x68\xd5\xc1\xc0\x1b\xb2\x1d\xf2\x7b\x62\xd7\xa1\x5f\xb1\x8a\x4d\xd1\x8e\xde\x23\x80\x0f\x76\x9b\x03\x61\x68\x5b\xdd\x36\xa7\x87\x0b\x3b\xc8\x55\x44\x75\x22\xea\x44\x29\x4d\xc8\xfc\x38\x8c\x8f\x29\x30\xd4\x04\xd9\x40\x51\x24\x51\xf1\x7a\xd7\x62\x6d\x94\x28\x4b\xba\x18\x51\x08\x50\x14\x51\xcd\x10\x51\x4d\x94\xa8\xa0\xe6\x04\x45\x8b\xd6\x89\x22\x99\xea\x99\x8f\xe4\x1c\x20\xa8\x8d\x21\xf3\x19\x53\x29\x6e\x42\x0c\xce\x87\x1e\x8d\x0c\x1a\x79\x0c\x2a\x8e\xac\xa0\x52\x56\x7c\x5a\x19\x24\x0c\x83\x8a\x23\x2c\xa8\x98\x95\x02\x9a\x59\x4c\xcc\x78\xa5\x38\xb2\x83\xca\x59\x31\xb4\x13\xa6\xa5\x49\xff\x42\xda\x52\x73\xf7\x8b\x0e\x10\x13\xe8\x36\x76\x9d\x8a\xb5\x51\x6c\x5f\x09\xbc\xb6\x62\xf8\x37\xdc\xce\x29\xda\x48\xf4\x86\x4d\xbe\xae\xb1\x65\xa6\x69\xbc\x97\x82\xeb\x2f\xa3\x31\x27\xd5\x47\x0e\xa6\x3e\x88\xab\xe6\x83\xd8\x44\x78\x71\x4b\x33\x07\xcf\x30\x43\x62\x81\x38\x87\xa3\x91\x59\x1c\x8e\xb0\x9c\x85\xae\x02\x96\x34\x94\xb4\x70\x5b\x62\xb4\x36\xb9\xa9\x9c\xdc\x2d\xde\xd0\x18\x2f\xd0\x40\xf1\x01\x5e\x00\xf9\x86\xa3\xbb\x50\x0b\xd1\x43\x5b\xd1\xb2\x42\x0d\xc4\xe9\xf8\x7a\x36\x00\xdd\xbd\x39\xac\x46\x6e\x4f\x41\xfa\xcd\xb7\x73\x1b\x96\x6b\x39\x01\x87\xa0\x3f\xc9\x94\x0d\x22\xbd\x3f\xcc\x21\x44\xc0\x02\xe3\xa1\x1d\x18\x0e\x6d\xe4\x9c\xa5\x70\x2b\x81\x46\xda\xe6\x90\x28\xde\x02\x51\xfc\x76\x60\x60\xb4\xed\x43\x8c\x0d\x9a\x09\xb4\xa2\x34\xa2\x6c\xe9\x85\xda\xb9\xe1\xf9\x6d\x93\x7e\xc5\x8d\x4a\x86\x39\x5b\xaf\xc2\x5a\xa8\x02\xdd\x9c\x76\xa8\x1a\x18\xdf\x42\x31\x2d\xcf\x35\x30\xbe\x85\x22\x8a\xa1\x69\x5f\x91\x26\x8a\xa8\xb8\xa9\x7d\xce\x76\x6e\x45\xf7\x8a\xf4\x2a\x52\xf3\x06\x7d\x82\x7d\x98\x9d\xcf\xbe\xad\x6f\x11\x6a\xf7\xa6\xce\xae\x8b\x36\x53\xdc\xcf\x28\xdc\xc4\xa6\x47\xc3\xc5\xdb\x29\xe2\x73\x28\xe8\xe3\x36\x41\x2a\x19\x61\x71\x3a\xdb\xed\xb6\x1f\x95\xe0\x61\x81\xe6\xd9\x9a\x85\xae\x02\xb3\xe9\xc8\x45\xae\xc0\xd2\xf0\xb5\xdd\x70\xb5\xdd\xc0\xdb\x8e\xda\xcb\x17\x38\x48\xfd\x12\xe9\x03\xde\xb2\x28\x74\x15\x98\x2d\xc7\xee\xdd\xab\x68\x1a\xbe\xc6\x1b\xae\xc6\x1b\xbc\x71\xc5\x8c\x49\x32\x9e\xe5\xce\x5b\x7a\xab\x36\x0d\x6b\xdc\xbb\xf3\xef\x06\xd3\x6f\x48\x29\x4b\x29\xc7\x85\x44\xe3\xfc\xf4\xca\xdf\xca\x0d\xaf\x2b\x3d\xdd\xb0\x1b\xa2\xc0\x8f\xab\x5d\xb8\x1a\xae\xad\x19\x95\x02\xec\x23\x7f\x86\x9d\x0e\x3e\x5f\x98\x17\x12\x31\x17\x9a\xf2\x29\xbf\x29\xce\x78\x95\xff\x4e\xc6\x84\x7a\x8d\x1c\xd4\x14\xbd\x75\x7e\x1d\x34\x62\x7e\xd8\x16\x47\xc8\x94\x78\x32\x28\xd6\xb3\x21\x72\xb1\x4f\x5e\x3a\xda\xcb\xaf\x3f\xa9\xf5\xd0\x8b\x19\xa1\x4a\xb4\x31\xb0\x00\x65\x13\x13\x7c\x64\x37\x82\xd4\x7b\x40\x76\x5d\x56\x68\x57\x67\xdf\xe5\x85\x1e\x79\x8d\x87\x62\x98\xf5\xd9\x5d\x3f\x43\x5c\x42\x4e\xec\x7b\xfe\x78\x98\xde\x8a\xb5\x3f\x2e\xed\x6f\x99\xf5\x89\xfd\xce\x66\xad\xfe\xc9\xa5\x75\x9b\x99\x7c\x54\xdf\xe0\xc0\xaf\xd9\x3c\x99\x21\x57\x10\xa1\x88\x5f\x42\x45\x6e\x81\x98\x37\x14\xf4\x57\x80\xca\xad\x8e\x86\x3c\x5e\x52\x10\x96\xfe\xcf\x46\x69\x5e\x38\x83\xc9\x11\x2e\x96\x9b\x37\xb8\x72\x2c\xd5\x65\x72\x3a\x85\x2b\x16\x4a\x18\x01\xa5\x38\xfa\x01\x20\x7b\xa1\x60\x3d\x9d\xab\xd3\x47\xbd\xec\xe1\x1c\xfb\x99\x9b\x9b\x46\x55\xb9\x91\xcd\x7e\xd9\xfc\xe1\x1f\xd6\x1f\x7e\x6f\xc9\xe8\x4e\xe4\x33\xc0\x1b\xe8\xcd\xc3\xf3\xbf\xc0\xf3\x3f\x7a\xa3\x5c\xbd\x0d\x8f\x3f\x26\x82\x77\x19\xa5\x9a\x1d\xaf\xe1\x87\x61\x0d\xfe\xb8\xde\x68\xe5\x6f\xca\x17\xae\xd7\xb1\x79\xa7\x27\xfd\xf9\x92\xf4\x26\x21\xd4\xf5\x73\x16\xc1\x75\x72\x7a\x85\x2f\x27\x97\x98\xc8\x85\x7c\xda\xa3\xbe\xb1\x56\x40\x94\xc7\x3f\x1c\x42\xb3\x63\x14\xa8\xb4\x1a\x96\x95\x5f\xc6\x98\xef\x10\xfd\x3a\xa9\x7c\x03\x2f\x9c\xca\xc8\x83\x27\x41\x5c\xd2\x1f\x5e\x1a\x5c\x36\xcb\xa1\x0b\x3c\x0c\x02\xb3\xdc\xf6\x4b\x25\xe5\x45\x03\x7d\x59\x84\x8a\x44\x3e\x37\xea\x12\xa1\x57\xe1\xe5\xb6\xef\xb1\x01\x0f\x11\x22\x42\x86\x98\x0f\x9d\xf3\x29\xdf\xfb\x78\xef\x87\x61\x8b\xfc\x69\x6b\x2f\xd5\xf0\x3e\x2e\x9e\x11\x55\x55\x35\x20\xa2\x8a\x0a\xef\xa8\xae\xa9\xaa\x0c\x3d\xe0\x47\x63\xbf\x30\x13\x77\xc6\x4a\x85\xf0\x64\xb3\xc9\x85\x8f\x1a\x1c\xd9\x28\xcb\x56\x3e\x95\x80\x72\x4b\x25\xf2\x47\xed\x08\xef\x8d\xa1\x7f\x7b\xca\x82\xc6\x93\x41\xd4\xc5\xee\x4e\x21\xe9\xf3\x2a\xf1\xd2\x67\x76\x92\xb1\x3b\x02\x91\x47\xfe\x05\xb0\x38\xa5\x9f\x63\x41\x90\x2d\x88\xf5\xba\xf4\x89\x53\x03\x56\xdb\x34\x2a\x9a\x4c\x1b\x5e\xda\x22\x35\x35\x01\x15\x71\x8e\x84\xbd\xf6\xbf\x34\xa0\x20\x7b\x12\x4c\xa6\x26\x9c\xca\x00\xf1\xd0\x21\x87\x11\xae\x84\xa4\x0a\x29\xe3\x0e\x05\xe6\x22\xe6\x40\x10\xea\x69\xf0\x59\xde\xd5\xd4\xdd\xc4\xff\x4c\x93\x61\xda\x2f\x01\x25\xa5\xe5\x60\x91\x24\xb3\x52\x9f\x98\xeb\xc7\xd3\xfe\x57\x3e\xa5\x76\x3b\xdd\xf9\xd7\xad\xcb\x7c\x86\x81\x2b\xd8\xd5\xf5\x8c\x62\x85\x0f\x5b\xea\x2c\x8a\x10\x6b\x57\x28\xad\xe0\x3a\x73\xd9\x0b\xb1\x08\x14\x3f\x53\xe7\x30\x07\xc4\xf8\x32\x8f\xcc\xa2\xf8\xa6\x8e\x95\xa8\x9f\x62\xd0\x61\x7f\x83\x74\xa6\x42\x9d\xf0\x6b\x75\xc1\x88\x64\xc3\x3d\x11\xe3\x3c\x52\x6a\x2e\xf5\x10\xc9\xea\x52\x77\x83\x90\x43\x4a\x67\xa3\x43\x75\xc8\x04\x7a\xac\x59\x14\x73\x16\xe4\x34\xb1\x41\xaa\x8e\x61\xbc\xd5\xdc\xa6\x84\x1a\xd5\xac\x8f\xe2\xea\x55\xea\x34\x36\x40\xcd\xf0\xd1\x69\x4c\x2c\x9b\x57\x72\x2a\x0e\x91\x06\x72\x32\x16\x5c\x1e\xc0\x64\xb1\xc8\x22\x74\xb7\x3a\x4b\x4e\xfb\x91\x28\xd9\x7a\x21\x0a\xf4\xbc\xbf\x98\xc1\x6a\xcf\xba\xae\xae\xb8\xbf\x86\x22\x0c\x13\xea\x9a\x13\x7f\xcd\xaf\xda\xa6\xb8\xfd\xea\x15\x83\x75\x61\x28\xdb\xa5\x43\x32\xd1\xb8\x66\xab\x31\xc3\xf4\x78\xf6\xa4\xb1\x75\x69\x2a\xa0\x66\xec\x79\x04\xa6\x32\xf2\x0d\x22\x3c\x69\xfe\x31\x02\x3b\x56\xa3\x41\xe5\xc6\x32\x7f\x72\xbc\x5a\xac\x07\xab\xf5\x02\xb6\x25\xd8\x7b\x1b\xc3\xdd\x17\x3f\xa0\xd0\xb9\x5b\x6b\xce\xf2\x72\x81\x41\x87\x19\xd6\xdc\x12\xa4\x40\xaf\x5f\xb8\x31\x61\xeb\x18\x05\xad\x55\x6c\xb6\x41\x66\xb4\x74\x90\x2f\x1f\x8a\x13\x09\x2f\x79\xf3\xce\x2e\xc4\x82\xc4\x07\xe1\xee\x81\xe6\x40\xdb\x3d\xc8\x9d\x02\x53\x91\x18\x73\x98\x3a\x8d\xd6\x93\x09\x13\xa2\x65\xd8\x78\x68\xb5\x4a\xf2\x85\x8c\x9e\xa5\x15\x14\x09\xac\xb2\xe9\xd2\xa1\x6f\x44\x94\x11\x43\x4d\x15\xb7\x57\xf0\x5f\x70\x3b\x1d\x24\xc2\xc4\x73\xd3\x24\x1a\x84\x31\x6a\xb9\x77\xaa\x50\x59\xe7\x91\xe9\x0c\x1a\xb9\x68\x36\xe4\x26\x66\xb2\xe3\xd0\x47\x71\xc2\x0a\xaf\x17\x64\xb0\x65\x86\x14\xc6\xa9\x8c\xaa\x35\xed\x90\x56\xce\x78\x3a\x76\x33\xaa\x79\x6a\x6c\x95\x0b\x0a\x3b\xa2\xae\x93\xfb\x6a\x5d\xbf\x19\xd0\x2c\x24\x32\xef\x10\x66\xc9\xaf\xe6\xeb\x95\x5a\xe9\x87\x93\xee\xa0\xdf\xef\xb2\x20\x94\x45\x50\x51\xc7\x5c\x8d\x87\x94\x8c\x46\x49\x57\x99\xb2\xf9\xce\x50\x73\xd0\xed\x34\x87\x66\xd8\x05\xdd\x50\x48\xa4\x2c\xce\x92\xb0\x2c\x06\x94\x2c\x54\xba\xa3\x12\xd0\x1c\x8d\x86\xdb\x08\x01\xdd\xce\xa0\xb9\x8d\x79\x52\x25\x74\x4a\x07\x7a\xc4\x57\x84\x5f\xc3\x93\x93\xfa\x49\x1d\xe3\x97\x1f\x95\xc9\x2f\xa2\xdb\xb5\x51\xcd\x26\x77\x30\x6c\xec\x34\x76\x02\xfc\x12\x48\x23\xf9\x95\x77\x47\x23\x20\xa9\x27\x75\x84\x80\x5a\xa3\xd3\xe8\xb8\xf8\x65\xb8\x4a\x40\x0c\xfd\x54\x88\x53\x2e\x24\x37\xca\x23\x8a\x31\x92\x41\xbc\x0b\xd7\xe6\x0e\x77\xe5\xf4\xae\x49\xff\xce\xe6\xd0\x0e\x19\x7b\x27\x18\x87\x7c\x88\x10\x2e\x9d\x24\x1d\x9b\xd4\xee\xb0\x33\xa8\xd5\x02\x5c\xe2\x38\x23\xf9\x64\xbb\xaa\xb4\xf9\x9d\x21\x32\xf0\x3b\x49\x7b\x64\x35\x2f\x3b\x68\xfa\xe6\x40\x8b\x88\x96\x66\xf2\x89\x9a\xea\x36\xdc\x46\x81\x7f\xab\x3b\x5b\x39\xc3\xcc\xee\x30\x14\x91\xbd\xb1\x69\xf0\xd1\x65\x19\x3c\x1a\x00\xce\xea\xb7\x45\x2c\xce\x01\x4a\x00\x59\x78\xc2\x6f\x43\xbd\x39\xf1\xd5\xd8\xf1\xcd\x0b\xf4\xee\xd9\xfd\x12\x70\xa8\x87\xa1\x50\xd9\xaa\x95\xd9\xbf\x10\x81\x26\xbc\xa9\xb0\xb3\x53\xe7\x9b\x0a\xf2\x06\x3d\x6d\x7b\x55\x92\x4e\xfd\xbf\xfe\x64\xe4\x94\x63\x80\xf2\x1d\x85\x08\xd0\x45\x2c\x1c\x5f\xa0\xc7\x81\x8e\xf1\x57\xb0\x9e\xcd\x86\x20\x5e\x7d\xeb\x27\x82\x0c\xb1\x49\x11\x01\x8a\xef\x56\xdc\x02\x57\x6e\x67\xff\x22\xa2\x75\x6b\x23\x23\x86\x2b\x45\x77\x34\xa2\xe8\xd0\xb7\x36\xa2\xc8\xb8\x95\x3d\x8e\x48\xe9\x2a\x86\x2b\xb6\x86\x9c\x85\x63\x2b\xa8\x0e\x4e\x6c\x1d\xd5\x89\x8c\xad\x73\xad\x0d\x91\xc8\x61\xb4\xe9\xce\x48\x4c\x1f\x0a\x6f\x91\xc4\x22\x8d\xdf\x2b\x71\xc4\xd2\xcb\x27\x0c\x07\xc0\xa5\xb1\x79\x8e\xa1\x64\xd1\xc5\xbc\x48\x4d\x90\x4b\x3c\x8c\xb0\x81\xd8\x08\xdd\x87\xe0\x35\x20\x54\xb4\xb4\x48\xf7\x31\xf8\x76\x8d\xe1\x47\x8d\x95\xef\xc2\xfc\xcf\xbf\xee\x39\x22\x87\xf5\x57\x44\x16\x63\xb9\x23\xc4\xe0\xc5\xd1\xeb\xa0\x3f\x19\xd0\x3b\x8b\xa5\x27\x10\xd4\x4d\x44\x94\xb0\x3e\xcb\x40\xe1\x60\x09\xcc\xc8\x49\xa6\xcd\xd4\x07\x7d\x36\x2f\x09\x12\xe4\x0c\xa3\x9c\x22\xab\x27\xdd\x11\xe7\x70\x0e\xbc\x11\x67\xd4\xb2\x26\xbf\x5f\x94\x57\xd6\x03\x87\xeb\xe7\xd7\x18\x79\x9e\x83\x22\x77\x23\xa1\x23\xf2\xe5\x6a\x91\xce\x73\x27\x0f\x1c\x0b\x70\x89\x94\x55\xf4\x6c\xab\x6c\x01\x3e\x33\x41\x6c\x93\x23\x4d\x76\x9b\xed\x26\xd0\xd6\xd2\x19\x9c\x16\xc1\xbe\x5d\x6c\xb3\x78\x8d\xd8\xf6\xd5\xf4\x17\xd5\x5a\x87\x5f\x5c\x9d\x10\x58\x7d\xa3\x92\x45\x17\x97\xd7\x5e\x7e\x20\xcb\xaf\x41\x7d\xc8\xa1\xd7\x89\x1f\xb8\x79\xb2\xdd\x1c\x30\x6e\x9e\x82\xfb\xe7\x87\x56\x62\xb8\x67\x0b\x08\x5a\xe2\x07\x4f\x6a\xdd\x93\x76\x93\x82\xcf\xd3\x59\x80\xec\xe1\x4e\x6b\x67\x87\x85\x61\x9e\xaf\x17\xf3\x49\x00\x77\xbb\xd3\x1a\x6d\x33\x70\x6b\xeb\xd6\x46\xdd\x1e\xb4\x45\xec\xc0\xfe\xc4\x0f\x5c\xab\x9d\xb4\xfb\x8c\x7d\x17\x64\x0d\x91\x9d\xfb\xc1\x47\x8d\x41\xa7\x3e\xd2\x15\x44\x11\x92\xae\x07\x1c\x93\x15\x46\x92\x89\xcc\x5e\x4d\x91\x55\x96\x31\x27\x29\x6d\xe4\xa2\xb5\xf0\x31\xa9\x16\xc2\xa7\x49\xdf\x42\xc8\x04\x5f\x08\xa1\xae\x20\x76\xe4\x4c\xaa\x1b\x85\x30\xaa\x3a\x64\xe1\x63\xea\x53\x0c\x9f\xa6\x66\x76\x9f\xa9\x86\x15\xc2\xb8\xf0\xc8\x98\x29\x61\x21\x74\xaa\xb2\x5a\xf8\x98\x9e\x16\xc2\xa7\xeb\xb3\x85\x91\xa9\x72\x0c\x46\x32\x61\xc1\x7c\xba\x9e\xe6\x7b\xa6\x66\xd8\xdc\xd5\x79\xe6\x00\x11\xd7\xc4\x57\x63\xa2\x72\x0e\x98\x66\xb3\xda\xe4\xff\x30\xe0\x51\xb6\x5e\x38\x60\xc5\xfd\xeb\x11\x5c\xfb\x74\x80\x88\x9b\xe9\xe9\x57\x17\xdd\x9d\x6a\x87\xfd\xd3\x15\x61\x7f\xc9\xf2\xd9\x05\xdc\xa2\xb1\xfb\xeb\xad\xc6\x0e\x03\xa6\x0b\x0f\x17\x70\xa3\xca\x09\x24\xee\xad\x93\x6d\xf5\x6a\x9d\xff\xc3\x99\xe3\x6e\x9c\xf7\x25\x99\x78\x28\xdc\xa9\xd6\x76\xd8\x1f\x21\x0d\x88\xeb\xec\x00\xde\x36\x78\xbd\x1a\xa7\x44\x5d\x9c\xb8\xbb\xd5\xce\x4e\xa3\x59\xeb\x76\x76\x72\xd1\x78\xc1\x21\xb7\x06\x70\x4b\x88\x69\xe4\x81\xb6\xc4\x90\x7e\xc5\xa0\xf5\xed\x1b\x50\x47\x78\xd1\xaf\x3b\x7c\xe2\xab\xc4\x2c\x14\x45\xd6\x03\x1d\xb5\xeb\x89\xaf\x96\xfc\xf2\x7a\x54\x73\x91\x9a\xf2\xbb\xa8\xbb\x5d\xed\x9a\x95\xa9\x26\xdb\x75\xe5\x67\x43\xab\xf3\x7a\xa0\xde\x48\x3d\xf1\x59\x8c\x9c\xba\xdd\x4f\x50\x7b\xbb\xa6\xf8\x2a\x2a\x76\xad\x7e\xb2\x31\x80\xd4\x94\xdf\x45\x5c\x98\xa6\xdd\x4f\x36\x26\xec\xca\xf9\x77\xd3\x1e\x88\x9a\x74\x9c\xd8\x15\xe5\x67\x51\x0f\x93\x28\x4a\xef\x4a\xa7\xb6\x63\x4b\x94\x0f\x26\x84\xda\x89\xd9\xd7\x0e\x22\x53\x3e\xbc\x30\x5d\x92\x05\x62\x38\xd8\xca\xc4\x47\x1b\xa6\x4f\x4a\x91\x18\xac\x88\x7c\xe5\x08\xc4\xd5\xca\x42\x61\x4b\x5a\x0c\x4a\x4c\xbf\x46\x66\xfd\x1d\x44\xda\x62\x9c\xa2\x6a\x66\x22\xc8\x63\xab\x3b\x4e\xc0\x8d\x4c\x59\xf6\x2a\xcd\x91\x2e\x40\x9c\x91\xbb\xf3\xea\xe0\x0d\x86\xaf\xeb\x39\x2a\xd2\xef\x7c\x2b\xd7\x0f\xc2\x93\x89\x60\xd1\xb9\x59\x36\x3c\x33\x3a\x37\xff\xba\xb4\x3f\x9a\x1f\xbc\x3d\xd3\xaf\x92\x69\x21\xe7\x95\xbb\xec\x5c\x2e\x4a\xec\x73\xf2\xa3\x0c\x40\xbd\x9d\xaf\x65\xe9\x3a\xae\x2d\xe2\xfb\xf3\x84\x02\x3d\x82\x69\x19\x7b\x7d\x72\x98\x0c\x32\x76\xe3\x7c\x57\x86\x7c\xf4\x70\xaf\xbf\x1c\x24\x33\xe5\x4a\xbe\x9a\xa0\x70\xd8\xfd\xb7\xb7\x2e\x24\x11\x71\x57\xde\x76\x54\x36\x76\xdc\xb5\xcb\xa9\xae\x7d\xf4\x1b\x54\x11\x1f\xa0\x9d\x91\x46\x3b\xf6\x76\xa4\x22\x34\x56\xaf\x5e\x1a\x54\xdc\x42\x57\xd9\xf3\x82\xca\x29\x2c\xe5\x09\xf7\x1e\x2b\x1b\x72\x65\xa3\xfd\x2d\x64\xe5\xda\xdd\x52\x2f\x38\x5c\x1f\x59\xee\x95\x46\x75\xcc\xe6\xd9\x0d\xf5\xab\x7d\x93\xfd\x6a\x17\xee\xd7\x65\x20\x43\x8f\x72\xc9\xc6\x2e\xbe\xf2\x2e\x4b\x69\x9c\x61\x85\x1e\xf5\x28\x00\xa9\x59\xd2\xce\x0e\x90\xa8\xab\x4a\xda\x16\xbb\xb0\xb1\x85\x9f\xa6\x69\xfc\xd9\xd9\x42\xdb\x55\x6f\x18\xfb\x31\x3b\xab\xeb\xc7\x71\x16\x84\x75\x2e\xe7\x86\xd0\x0f\xe8\x2c\xb8\xe2\x27\x75\x8d\x06\xe9\x3d\xff\x5b\x35\x37\xa1\x36\xbb\x74\x53\x0e\xe0\x88\xbb\x17\xa4\x9f\x03\x87\xe8\x0a\xde\xda\xd1\x47\x42\xc3\x1a\x09\xf9\xce\xad\xb6\x1f\x2b\xdf\x0c\x2a\x77\xdc\x1c\x67\x58\xc1\xd7\x40\x26\x1e\xe5\x16\xb1\x7e\x83\xce\xf5\xc6\xc5\xbc\x67\x87\x91\x61\xb8\x14\x5a\x15\xbe\x89\x78\xe9\xcd\x6e\xa4\x3f\x66\xd3\xea\x0f\x8d\x26\x15\x88\x98\xed\x4a\xff\xf8\x25\xd6\xc9\x71\xa6\x47\x83\xa9\xd1\x66\xe4\x3e\xb5\x61\x2b\x3c\xa0\x4c\xd1\x84\x79\xdb\xe2\xbf\x32\x6a\xb7\x4a\xc6\xd9\x65\xe1\xea\x63\xfb\x91\xc0\x35\xe9\x71\x9e\x52\x16\xa7\x0d\x3d\x29\x42\xf2\x1a\x6d\x40\xa4\xe3\x08\x73\x03\x1a\x95\xdd\x77\x41\x22\x8f\xb7\x7d\x3d\x1a\x91\x27\x46\x8a\xb8\x94\x33\x08\xc7\xdd\xd3\xa2\x17\x4e\x1d\xb8\x2c\xbb\x68\xe3\x0d\xaf\x0b\x80\x68\x75\x1e\xd4\x64\xa9\x64\xee\x15\xb7\x5d\xf9\xc1\x87\x5e\x8d\x35\xef\x40\x65\x1d\x09\x53\x7e\x33\x60\xe5\x74\xd3\x68\xb9\xda\xb6\xdb\xae\xb6\x63\x30\xe5\x8f\x6b\x64\x05\x62\x81\xa7\x64\x2d\xb0\x72\x34\x06\xe3\xcb\x68\x0b\x3e\x61\x35\x95\x97\x3b\xec\xfa\x00\x46\x11\xaf\xe3\xec\x5c\xb5\x63\xb7\xd7\x89\x42\xa4\x34\x0f\x79\xca\x44\xad\xea\x92\xac\x56\xc4\x4e\xab\x9a\x04\x57\x3d\xa6\x72\x66\x00\xb3\x4a\x59\x02\xb0\xfc\x75\xe5\x65\xf8\x61\x6e\xdd\xf3\x22\xb7\x8e\x3c\xec\x1d\xae\xf9\x12\xaa\x49\xc3\xc8\x3b\x0b\xec\x9a\xab\x74\x0a\x6c\x1b\xad\x67\x2c\xc7\x25\x7d\x09\x1a\x28\xb6\xb1\x8c\x20\x6e\xfd\x34\x1b\x26\xbb\x64\xa6\x1a\xef\xb9\x0a\xd4\xa0\x8a\x08\x3f\x6e\x2a\xc9\x8b\x8c\x11\x61\xe4\x79\xd1\xbf\xfb\xd3\x82\x89\x67\xe1\x0a\x99\x9e\x3c\x50\x7a\x22\x28\x9a\x09\x8a\xa7\x6e\x52\xea\x6b\xd9\xca\xad\x7e\x5c\xe5\xd1\x17\xed\x2a\x66\xe8\x0d\x6f\xe2\xb3\x3b\x61\xe7\x95\x74\x63\xfd\x9a\x0e\xdd\xa9\x40\xac\x8c\x64\x77\xde\x5f\x2f\x93\xe1\x9e\xa7\x0c\xc4\x90\xcd\x1d\xda\x72\x23\xcf\xda\xd5\x71\x59\x3d\x59\x64\xe7\xcb\x04\x69\x40\x8e\xa2\xb6\x6b\x78\xd1\x02\x04\x19\x71\x84\x11\x7c\x90\xa1\x71\x97\x01\xf4\x66\x7b\x8e\xef\x18\x36\x16\xdb\x73\x4d\x3c\x51\xbb\x8c\x7c\xf6\x37\xf5\x6e\xbd\x7a\x0d\x4f\x21\x7d\x85\x58\xa3\x3c\x5e\x68\x04\xfa\x5f\x69\x82\x6f\x6f\xe9\xd5\x7f\x04\x92\xcf\xc9\xc5\x68\x41\x00\x96\x25\xd1\xe3\xcb\xda\x23\x77\x94\x96\xed\x2d\x97\x1e\x3a\x00\x44\xcc\x93\x4a\xfd\xaa\x7e\x4b\x88\xf3\x2d\xb1\xee\xd5\xb6\xa7\x8d\x3a\xb8\xcc\xfe\x56\x10\x90\x3c\xe7\xa2\x68\x91\x98\x96\x2b\xd8\x2c\x75\x37\x14\x6a\xc5\xd1\x15\x40\x7c\xf5\x9f\x07\x89\xdc\x37\x89\xb8\xc6\x0a\x1f\xad\x20\x1e\xa5\x82\xcf\x76\x1f\x11\xe4\x2c\xcf\xd9\xb1\xfc\xe9\xc8\x61\xcf\x5d\xb0\x57\x6d\xa5\xbd\x4a\xdd\xdf\x5c\xa5\x5e\x6b\x3f\x92\x68\x9a\xed\x61\x72\x2a\x51\xd5\x6b\xf0\x9b\xd2\x71\x02\x0c\x57\xa4\x6e\x0a\x11\x15\xbd\x14\x16\x13\x50\x2c\xdd\x78\xd7\x23\x69\x8d\xad\x2c\x73\x0a\x21\xa3\xee\x41\xb6\xdf\x8f\x6c\x3d\xe3\x97\xce\x86\x77\x29\xe4\x00\xaf\x6e\x4a\xc4\x37\x2b\xe1\xfb\x26\xe0\x07\xc1\x7e\x9f\x82\xad\x0e\x17\xd9\x1c\x5b\x75\xc8\x06\x44\xc8\x47\xb8\x44\x2b\x52\x2d\x63\xb1\x22\x95\x72\x6f\xdd\x4d\x17\x1d\x11\x6b\xfa\xc1\xfa\x24\x1d\x54\x4e\x92\xbf\xd3\x64\xf1\xb8\xda\x6c\x95\xeb\xd5\x4e\xbd\x5c\xed\x96\xeb\x5b\x9e\xa5\xbe\xa7\x96\xc5\x1e\xcf\x32\x07\x20\xed\x45\x0e\xfb\x6a\xe3\xf1\xac\x32\x00\x94\x0c\x2f\x0c\x13\xf9\x8c\xd9\x5a\xd6\xc8\xa5\xa2\x74\x58\xf6\x56\xe6\x87\x21\xae\x19\x19\x56\x54\x45\x73\xaf\xcf\xed\xe4\x21\x7e\x9d\x66\x1d\xee\x9c\x14\x9c\x3b\x84\x71\x97\xd7\x40\xab\xd1\x54\xb4\x43\x26\x7b\xee\x94\x16\x55\x07\x47\xfd\xa1\x6f\xdd\x0e\xc5\xb6\x42\xb3\xaf\x2a\x1e\xb9\xf7\x08\x45\xa5\xf5\xfc\x5f\x7f\x06\x91\xfe\x3e\xc7\xd1\xfe\x3e\x77\x23\x86\x58\xa7\x11\xa8\x9f\x13\x30\x1c\x39\x94\xb8\xd1\xc3\x8e\x43\x04\x7a\x6c\x63\x21\x2f\x71\xa3\xa7\x7b\x0b\x11\xf8\xd1\x9d\x05\xa5\xc8\x16\xa0\xc7\x92\x40\x39\x62\x49\xf8\xe7\x80\x0c\xc3\x78\x71\x29\xd2\x82\xa0\x18\xc3\xd8\x5d\x82\xe4\x45\x41\x49\x86\x5b\x70\xc9\x12\xd9\x22\xc2\x85\x19\x6e\xc2\x29\x4e\xdf\x36\x11\x13\xb7\x66\x43\x0d\xab\xa8\xd9\x94\x28\x70\x57\x2b\xbf\xcf\x43\xb6\x5a\xba\x0f\xc7\xc4\xdd\x79\x84\x7a\x1e\xac\x24\x6c\xb9\x95\x0a\xb8\xdb\x77\x6c\xda\xcb\x7b\x4c\xa4\x8b\xa3\xa0\x9c\x05\xc8\xad\xb8\xe9\xad\xdc\x2e\x57\xef\x2d\xa1\x2e\xce\x8a\xdd\x82\x28\x82\x8f\x9c\x8a\x70\x54\x54\x11\x7c\x8b\x14\x84\xaf\xf7\x94\x4c\x17\x57\xe5\x32\x2e\x92\x5e\xa7\x1e\x1c\x15\xd6\x83\x82\x8c\xbd\xbf\x94\xe2\xbc\x35\x1d\x3d\xc3\x75\xb3\x7a\x18\x86\x77\xb6\xa3\x5b\xc8\xcd\x07\x5f\xd0\xb9\x8c\x37\xb4\x48\xef\xee\x25\x95\x4e\x9e\x9a\xf6\xf1\xdb\xd0\x1b\x34\xb3\x08\x5f\xef\x2d\xa5\x4e\xde\x9a\x36\x72\xf3\xc1\x17\x4f\x71\xd0\xd4\x22\x9c\xbd\xa7\x74\x3a\xf9\x6a\x99\xc8\x6f\x43\x70\xd0\xd2\x22\xac\xbd\xb7\xa4\x56\x47\x93\xd4\xd8\xf3\x29\x5b\xdf\x70\xd7\x5f\xee\x58\x75\x5c\x5b\x59\x1d\x6d\x2b\x6b\x9e\x2c\x96\xf3\x84\x45\xf1\x69\xd0\x44\x04\x7b\xf6\xa7\xab\xea\x38\x5b\xa4\x7f\x67\xb3\x55\x7f\x82\xd0\xe6\x5a\x81\xe4\x95\x5e\x90\x3a\xf6\x42\xde\x2c\xf7\x36\xe3\x59\xe9\xe8\x78\x90\xe5\xa6\x05\x70\x55\x15\xe1\x87\x0b\x74\x47\x54\xc1\x3b\xa3\x97\x7a\x1a\xf0\x74\x44\xc5\x81\x74\xc3\x28\xc6\x06\xa1\xc9\x52\xfc\x54\x59\x91\xf0\x63\x26\x61\xb9\x6d\x5b\xd9\xa1\x1b\xca\x7b\x85\x80\x8d\x55\x5f\xa1\x06\x6b\x91\x6d\xa9\x67\xc2\xda\x60\xfe\xc7\x74\xd9\x96\xb6\xae\x73\x05\x3b\x7e\x54\xa4\xe3\x47\x37\xd0\xf1\xa3\xc8\x8e\x1f\xb9\x65\xfd\x0f\xe9\x70\x68\x5c\x73\x37\xfd\xf6\x95\xae\xb8\x6e\x17\x19\x4b\x16\x83\xdd\xc3\xfa\xfb\xed\xb1\x7f\x54\x17\xef\xf7\x86\x4a\x57\x5c\xb7\xaf\x39\x98\x5c\xc3\xfa\x3b\xee\x31\x4f\x99\x16\xe5\x6c\x50\x50\xdb\xcb\xe0\x9f\x11\x54\x1e\xb7\x82\xc2\x22\xfe\x84\xf8\x8e\x29\x21\x6f\x28\xee\x18\xad\xda\xc5\xb2\xb7\xdd\xe0\x99\xde\x7d\xa0\xc6\xc1\xa3\x6f\x73\x96\xe6\xea\x93\xc5\xa4\x3b\x26\x47\x3b\x1b\x9a\x5c\xf8\x16\x28\xd5\x0e\xba\x3c\x81\xcf\x5a\xb3\x69\xc4\x91\x79\xa3\xde\x2e\xd3\x23\xf3\x66\xbb\x5d\x16\x3d\xdb\xa0\xa2\x49\xbf\xef\xb0\x6c\x72\x81\x1c\x4d\xc2\x47\xfc\xd4\x66\x72\x11\x3c\x98\x84\xca\xc8\x89\x16\xfb\xec\xc4\x1a\x3e\x95\x04\x04\xe8\x59\x96\x28\x70\xe2\x0e\x1f\x49\x02\x0a\xf4\x14\x4b\x14\x38\x71\x47\x9c\x47\x02\x0e\xfc\xfc\x4a\x96\x58\x12\xf3\x9d\x88\x4d\x2e\xb0\xb3\x48\xfa\xd5\x2f\xb4\x20\x52\x54\x6c\x9e\x73\xc8\x5c\x6e\x41\xd4\x0e\xc9\x79\x0f\x21\x73\xd1\x05\xd1\x3b\x84\xe7\x3d\x81\x54\xa4\x17\xc4\xef\x92\x9f\xf7\xf8\x11\xc4\x1b\x65\xec\x9b\xc3\xc7\xd5\x66\x99\xfe\x6b\x59\x24\xb5\xec\xaa\xe1\xbe\x38\x0c\x79\x90\xab\xf5\x32\xff\x8b\xa1\x51\x8b\xaf\x5a\x5e\x4c\xd5\x9d\x32\xfd\x17\xa5\x46\x94\x5d\x75\x62\x4c\x34\x6d\xb8\xd6\x2c\xcb\xff\xe0\xa4\x69\x10\xbe\x9b\xd8\x94\x82\x6e\x99\xff\xc5\x09\xcc\x8b\x23\xa7\x4b\x20\xa1\x5c\x2f\xe3\x6c\xa3\x05\xfa\xce\xdb\x83\x64\xbf\x2b\xc9\x3a\xc6\x6e\x81\xe3\x72\x96\xba\xbb\x0d\xbe\xb3\x37\xb9\xb7\x80\x08\x72\x58\xaf\x57\x69\x04\x10\x0b\x80\xab\x6e\x1b\xe3\xaf\x41\x45\x88\x4a\x8e\x6b\x07\x95\x95\xd1\x70\x3b\x40\x18\x2b\x77\xad\x53\x74\xe0\x70\xea\x66\x6b\x14\x3e\xc8\xe8\x1e\xca\xc8\x31\x9e\x0a\x5d\x94\xe0\x39\xf7\x83\xe2\xaa\x6c\x2a\xaf\x46\x80\x2b\xbc\x3c\x4a\x5a\x95\x90\xb8\x2a\x45\xe4\x15\x20\xcc\x2f\x2d\xfa\x58\x54\xff\xd5\x1e\x35\x0f\x92\xb8\x33\x49\x38\xc6\x46\xa1\xcb\x2e\x30\x77\x71\x5e\xbb\xc9\x53\x20\x0a\xc9\xa3\xc2\xd8\xed\x46\x9c\x03\x44\x48\xa4\x1e\xa2\x52\xd2\x18\x96\x47\x25\x44\x98\xa4\xeb\x3a\x63\xe3\x41\x12\x77\x26\x09\xc7\xd8\x28\x76\x5f\x09\x9a\x0f\xcb\xa4\xb2\xa9\x50\x42\x32\x29\x22\x92\x4a\x48\x26\x95\x22\x42\x09\x10\x76\x23\x83\xe3\x41\x14\x77\x27\x0a\x74\x74\xc0\x4e\xa9\x7f\xed\x18\xb7\xe2\x6b\xd7\x1e\x95\xdb\xed\xd8\x55\x5f\xfc\x6a\x34\x6e\x2b\x36\x7a\x99\x6c\x28\xe4\x3f\xae\xf7\x2e\x1d\x20\xcb\x20\x9c\x0f\xba\xc3\x12\xbb\xaa\x68\x11\x7e\xb4\x02\xfc\x30\xdc\xaa\xe8\xd5\x4f\xfc\x25\x23\xe6\xfc\xd5\x42\x7e\xa7\x84\x40\xb4\xe3\x81\x2f\x9e\x15\x99\xb8\xf1\x18\xc3\xa1\x78\xbf\xba\x38\x8f\x42\x2c\xda\x90\x43\x95\x30\x8b\x2a\x3e\xdd\x79\xe0\x4d\x58\x7f\x98\x3f\xd0\x28\x32\x69\x07\xe6\x59\x59\x5e\xac\x4b\x92\x5a\x9f\xb7\x9c\x83\x20\xe2\xfe\x1f\xee\x8a\x4b\x3a\x74\x29\x53\xa4\x47\x95\x50\x97\x2a\x1b\xf6\x29\xdc\x25\xbf\x70\xfe\x67\x7b\xa2\x1e\xec\x2d\x27\x29\x7d\x28\x5a\xc6\x8e\xa3\x68\x61\xf8\x18\x94\x82\xf5\x66\xc7\xd6\x2d\x08\xf1\xdd\xa2\xfe\x66\xdf\x9d\xa3\x47\x69\x8c\xf6\xc0\xc1\xf0\xe6\x94\xf3\xbc\x4e\x3e\xe2\x75\x10\x7f\xb1\xa7\x0b\xc1\x93\x62\x4e\xec\x91\xa3\x13\x47\xee\x4e\xf0\xe4\x66\xf4\xc4\x11\xef\x83\x06\xe1\x2d\xf5\xf4\x20\x7c\x1e\x7d\xed\x2e\x00\x93\xbc\x3d\xa0\x00\xbe\x42\x64\x54\x18\x31\xca\xf0\x61\xe1\xbb\x1d\x04\x70\xc4\x50\xe0\xea\x45\x0b\xee\x78\x64\xdc\x12\xf1\xdf\x7c\x70\x44\xf4\x03\xd7\x2d\x5a\x70\x5f\xc6\xc7\xed\xf6\xe2\x06\x86\x08\x76\x53\x8b\x5b\xca\xa8\x93\xe7\x63\x24\x72\x81\xfd\x34\xc9\xb9\xd0\x3d\x46\xae\x56\x1d\x5b\x17\xda\xee\x07\x41\x4e\x4e\x1d\x45\x11\x76\x84\x10\x66\x3f\x87\x71\x12\x76\x84\x10\x76\xe4\xe0\xd4\x5d\x13\xe4\xe0\x14\x58\x98\xa8\xfb\x76\x4e\x21\xc4\x6d\x74\x38\x55\xc0\x62\xd5\x3d\xa0\xc8\xcd\xab\xa3\x28\xca\x9c\x62\x88\xa3\xcc\xa9\x04\x18\xaf\xee\x98\x22\x6d\x3a\x3f\x87\x0c\xa9\xb6\x69\x95\x57\x23\xb7\x5d\x4f\xba\xb6\xcd\x90\xa8\xb9\xe9\x06\x9c\x11\xbe\x31\x80\x61\x9e\x8d\xf8\x7e\x27\x1e\x00\xa5\x3d\xe4\x1b\x6f\x4c\xf9\x37\x99\xfe\x69\x17\xc2\xbe\x31\x23\xd6\x76\x62\xc4\xf7\x3b\x9c\xfb\x69\x0f\x22\x7c\xe3\xeb\x76\xe1\xa6\x7d\x63\x68\xd7\xed\x1b\xab\xc3\xc2\xe7\xd0\x00\x1c\xea\xd0\xc8\x82\x3b\x1e\x19\xb7\x44\xfc\x37\x1f\x1c\x11\xfd\xc0\x75\xcb\xef\xe3\x7f\xe3\xf1\x71\xbb\xbd\xb8\x25\xdf\x98\x5b\xca\xf0\xab\x9b\xba\xfe\xc2\xc5\xfb\x1a\x06\x87\xcd\x1f\xc3\xe0\x77\x2d\x3d\x18\x2a\xcd\x02\xcd\x09\xe0\xfc\xb5\x4f\xa7\x68\x7b\xf5\x76\x7c\x73\x0c\xd6\x71\x43\xd3\x47\x66\xb7\x5a\xa0\x15\x01\x1d\xf3\x72\xa9\x1e\xf9\x40\xca\x82\xd3\x9d\xa4\x07\xd5\x78\x50\x0d\x55\x35\x9c\xd6\xe3\xb8\xa0\x8a\x84\x5e\x5d\x3b\x80\x37\x56\x92\xe3\xc7\xf1\x3a\x22\x61\x37\x56\x11\x08\x3f\x52\x40\x7e\x0a\x78\x51\x45\x39\x7e\x5c\xa8\x9d\x4d\xd5\xc4\xf3\x98\xd6\x82\xc3\x2c\xc8\x83\x7a\x3c\xa8\x47\xdf\x13\x5d\x4d\x7a\xa4\x85\x67\x9a\x02\xe6\xab\xf8\xbc\xb2\x99\x0d\x2e\x3e\x9f\x14\x6a\x67\x53\x5d\xb8\xf6\x3c\x59\x7c\x6e\xb9\x96\x1b\x60\x99\x91\x07\xfd\x78\xd0\x8f\x40\xe8\x04\xb9\x96\x2a\x3c\xdf\x14\x30\x60\x85\xe7\x96\x8d\x6c\xf0\x06\x73\x4a\x91\x19\x93\x01\x17\x9f\x4f\xae\x35\x4f\x16\x9f\x57\xae\xe9\x06\x60\x36\xe4\x41\x37\x1e\x74\x83\x85\xe3\x18\x4d\xfa\xcb\xb1\x3f\xdf\x99\xdc\x62\xef\xb6\x1d\x7b\xef\xac\xc0\xb1\xe9\x43\x5b\xb0\x1f\x3f\x93\x8f\x57\xd5\xe5\xb8\xff\x39\xb9\xd5\xd6\x69\x0b\xd6\x76\x13\x7c\xbc\xaa\x9e\x64\xeb\xd9\xe0\x76\x9b\x67\x4d\x58\x39\xca\xe8\xd7\xab\xea\xaa\x3f\xec\xdf\x6a\xf3\xd0\x80\xd9\x38\x7c\xbb\xaa\xce\xd7\x93\x65\x6c\xd7\x0b\x67\x84\xa0\xed\xd0\x16\xcc\xc6\xe9\xc7\xab\xea\x59\x7a\x7a\x3a\xb9\x5d\xce\xb3\x26\xcc\xf6\xd9\x57\xfc\xce\x1b\xd1\x48\x62\x16\xcb\x30\x08\xcb\x6d\xf5\x44\xec\xaa\xd1\x7e\x54\xee\xb6\x9d\x41\x63\x0b\xd6\x44\xa6\x6c\xd0\x47\x81\xc1\x77\x61\x34\x10\x7f\xf1\x51\xb9\xc9\x28\x28\x77\xc9\xdf\xc0\x43\x83\xa3\x50\xaa\x24\x48\xa1\xd2\x80\x2b\xa7\xe4\x2f\xb1\xb6\x65\xdc\x16\x2a\x75\xbc\xd9\x5b\x00\x9b\x36\x15\xfd\x63\xfa\x6c\xcb\x9b\x8d\x7f\xa9\x32\x0d\xde\x81\x40\x63\xde\x90\xb1\xf8\xa4\xab\xc0\x10\x5f\xd5\x41\xa9\x28\x73\x4c\xa9\x2a\x5c\xbd\xed\xc6\x41\xcb\xf4\x1c\x45\xdf\x73\x37\x6d\xa9\x82\x61\xf5\x65\x30\x74\x45\x1b\xa2\x9c\x71\xd6\xaa\xee\xf0\xf9\x9b\x90\x6f\x4c\xf5\x38\xc0\x55\x78\x3c\x88\x8c\x83\x75\x51\x13\xc7\x6c\x02\x5c\xf9\x47\x85\x55\xc9\x41\xb0\x05\x11\x4a\x69\xc8\x81\xd1\x74\x86\xb2\x4c\xd3\xbc\x07\x51\xdc\xb1\x28\xec\xd1\x41\x67\x7e\x8f\xbd\xf7\x08\x46\xf1\x90\xdb\x7e\xf1\x60\x12\x91\xb5\xab\x5d\x4d\x47\xee\x09\x41\x36\xa7\x98\x8f\x12\xa2\x2c\x22\x34\x49\xd3\x5f\xbb\xda\x68\x97\xab\xdd\xb6\x03\x45\x5e\x1a\x8a\x09\x03\x40\x00\x8d\xe2\x51\x4a\x7d\xbc\x62\x4f\xdf\x48\x8b\xdb\x4e\x7a\x64\xe9\x55\x07\x7d\x8f\x99\xbf\xcb\x83\x16\x6b\x2e\x7a\xf2\x52\xc7\xbb\x4e\x25\xf6\x0c\x69\x71\xc7\x49\x8f\x2c\xd5\xb4\xea\x41\x78\xff\x6b\xc2\x83\x54\xfa\x5f\xd2\x61\x92\x5d\x42\x9a\xf2\xd3\x05\x71\x5a\x86\x95\x41\x36\xc9\x16\xbb\x3f\x0c\x87\xc3\x3d\x99\x87\x7d\x91\x10\x17\x80\x2c\xab\xf7\xa6\xfd\xaf\x95\xf3\x74\xb8\x1a\xef\x82\x8c\xf7\x78\x52\xff\x0a\xbb\xed\xb1\xdb\xee\x10\x8e\x3d\xda\x1b\x27\x70\x1f\x62\xb7\xb6\x97\x7d\x49\x16\xa3\x49\x76\x2e\x13\xaf\x8b\xf6\x4a\xd5\xf9\xa4\x3f\x48\xc6\xd9\x64\x98\x2c\x90\xc6\x9b\xcd\xa6\x01\x7c\x71\x39\x58\x2f\x96\xa4\x6c\x9e\xa5\xf4\xc6\x09\x9e\x23\xbe\xc6\x92\xc3\xd7\x64\x76\xdf\x7a\x6d\x4f\xa1\x97\x53\x46\x7f\x96\xa6\x68\x5b\xbf\x79\xc1\xb0\xf2\xd2\x52\xb5\xb9\xdc\xc3\x3f\x9b\x04\x56\xd3\x01\x01\x38\x49\x08\xbb\x13\x47\x06\x7b\xa2\x48\x8c\x3e\xf8\x41\x52\x58\xdf\xcb\x19\xb0\xbb\x38\x3d\xe9\xb3\x78\x30\xf4\x51\x2b\xa3\x7d\x7b\x91\x4c\x05\xed\xf4\xe7\x49\x3a\x4b\x2a\xea\x87\x93\x6c\x41\x38\x59\x59\xf4\x87\xe9\x7a\x09\x8b\x53\xf8\xc8\x99\x39\x1a\x8d\xf6\x46\xd9\x6c\x55\x59\xa6\x7f\x27\x0c\x7c\x95\x7c\x25\xbf\x8e\xfb\x43\x22\x1b\xfa\x66\xda\xbf\x70\x20\xe4\x6e\xa9\x8e\x20\xfc\xae\xdf\x44\x09\x83\xc7\x83\xba\xd4\x24\x20\x71\x2d\x83\xbf\x43\xe8\x2a\xea\x64\x7a\x92\x0c\x4b\xf4\xbf\x65\xeb\x73\x4a\x6d\x9a\xfd\x3d\x3b\x39\x4b\x06\x2b\x84\x14\x26\x00\xc6\x4c\x87\xc2\x69\xd4\x4e\xfb\x0b\xb8\x9c\x53\x13\x43\x88\x2c\x8f\x0d\x7d\xda\x1d\xc3\xf0\x51\x16\xd4\xb2\xbc\xda\xa7\x7b\x5c\x1a\x77\xca\x68\xe9\xc5\xa5\xe0\x0a\x7d\x0a\x6f\xc3\xd0\x5e\x49\xa0\x74\x06\x8a\x75\xf5\xff\x03\x00\x00\xff\xff\xce\x25\x03\x81\x68\xd4\x06\x00") +var _filesCssSemanticMinCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\xbd\x69\x97\xeb\x36\xae\x28\xfa\xfd\xfe\x0a\xbf\xf4\xea\x95\x54\x77\xd9\x91\x64\xcb\x43\xd5\x3a\x79\x27\xf3\x70\x33\x9c\xcc\x43\xdf\x7c\xd0\x40\xdb\xda\x25\x5b\x8e\x86\xaa\xed\xda\x6b\xdf\xdf\xfe\x38\x68\x00\x49\x90\xa2\xab\x76\xe7\xe4\xad\x75\xee\xbe\x7d\x52\x26\x21\x10\x04\x01\x10\x00\x21\x6a\xf2\xee\x3f\xfe\xd7\xe4\x1f\x93\xbf\x4d\xbe\x27\x87\xe8\x58\x67\xc9\xe4\xc7\xcf\x27\xd3\x49\x30\xf3\x66\x73\xd6\xb1\xaf\xeb\x53\x75\xf3\xee\xbb\xbb\xac\xde\x37\xf1\x2c\x29\x0e\xef\x76\x90\xd3\x6f\xca\xdd\xf0\xe3\xc7\xcf\x3b\x70\x0a\xfd\xf0\xf0\x30\xab\xba\x9e\x26\xe3\x8f\xd1\x6e\x06\xf1\x61\x71\x3a\x97\xd9\x6e\x5f\x4f\x02\xcf\x5f\xd0\x9f\xc7\xba\xcc\xe2\xa6\x2e\xca\x8a\x75\x7f\x47\x72\x12\x55\x24\x9d\x34\xc7\x94\x94\x93\x7a\x4f\x26\x5f\x7d\xfe\xc3\x24\xcf\x12\x72\xac\x08\x18\xa2\x38\xd1\x86\xa2\x29\x13\x32\x2b\x28\x1d\x2d\x40\xf5\x2e\x85\x16\x23\xbd\xfb\xbf\xfe\x71\x7d\x13\x6d\x6b\x52\x5e\xdf\xc4\x64\x5b\x94\xe4\x55\x5c\xbc\x9c\x56\xd9\x63\x76\xdc\xdd\x64\xc7\x3d\x29\xb3\xfa\xf5\xbe\x3e\xe4\xb0\x3d\x2e\x4a\x3a\xee\x94\xb6\xdc\x6e\x29\x69\xd3\x6d\x74\xc8\xf2\xf3\x4d\x15\x1d\xab\x69\x45\x9f\xd8\xde\x4e\x0f\xd5\xb4\x26\x2f\x6b\xf6\x04\x99\x46\xe9\x8b\xa6\xaa\x6f\x7c\xcf\xfb\xfb\xed\xf4\x81\xc4\x77\x59\x6d\xe8\xe5\xe8\x58\xeb\x8d\xbf\x38\xbd\x7c\x9d\x1d\x4f\x4d\xfd\xaf\xfa\x7c\x22\xff\xc1\xe0\x7f\xbf\x06\x0d\x94\x73\x59\x2e\xb5\x54\x24\x2a\x93\xbd\xd4\x74\x8a\xaa\xea\x81\x52\xfb\xfb\xab\x6e\xdc\xe8\x74\xa2\x60\xd1\x31\x21\x37\xc7\xe2\x48\x28\xa5\xc5\xa3\xda\xf8\x3a\x2a\xe9\x9a\xe4\xe4\x3a\xaa\xb2\x94\x5c\xa7\xa4\xa6\x43\x55\xd7\xdb\x6c\x97\x44\xa7\x3a\x2b\x8e\xec\xcf\xa6\x24\xd7\xdb\xa2\x60\xac\xdb\x93\x28\x65\xff\xd9\x95\x45\x73\xba\xa6\x74\x1d\xaf\x8f\xd1\xfd\x75\x45\x12\x0e\x5c\x35\x87\x43\x54\x9e\x5f\xa5\x59\x75\xca\xa3\xf3\x4d\x9c\x17\xc9\xdd\xeb\xa8\x49\xb3\xe2\x3a\x89\x8e\xf7\x51\x75\x7d\x2a\x8b\x5d\x49\xaa\xea\xfa\x9e\x0e\x58\xf4\x90\xd9\x31\xcf\x8e\x64\xca\x1f\xb8\xbd\x27\x8c\xaa\x28\x9f\x46\x79\xb6\x3b\xde\xc4\x54\x02\x58\xaf\x40\x44\xe9\xae\xdf\xf9\x57\xc2\x04\xa5\xc8\xab\xdf\xaf\x7a\x14\x7c\x92\x7b\xc2\x84\xe9\xc6\x7b\xfd\xaf\x7d\x96\xa6\xe4\xf8\xfb\x75\x4d\x0e\xb4\xbb\x26\x12\xdc\xeb\xe8\x55\x1c\x25\x77\x6c\x1a\xc7\xf4\xc6\x9b\x78\xb7\x49\x91\x17\xe5\xcd\xdf\x16\xfe\x7a\x9e\x2c\x6e\xf9\x9a\xa5\x24\x29\xca\x88\x4d\xac\x7d\xe6\x26\xa2\xd3\xbc\xa7\xcc\xba\xd9\x17\x94\xc6\x57\x45\x53\x33\xba\xe8\x68\x51\x1c\x97\xff\xaa\xb3\x3a\x27\xbf\xbf\xea\x65\xa6\xae\x8b\xc3\x8d\x7f\x7a\x39\x49\xe9\x9f\x24\x7d\x1d\x5f\x17\xa7\x5a\x70\xae\xa2\xc4\x1f\x77\xaf\xb8\x10\x3c\x08\x92\x57\x9e\xf7\x3a\xdd\x1e\x45\x5b\x55\x9f\x73\x72\x93\xd5\x94\x01\xc9\x6b\xca\xd2\x3b\x48\xee\xdf\xb6\xdb\x9e\x5e\x8f\x3e\x55\x1d\xa2\x3c\x7f\x35\x08\xd4\xda\xfb\xfb\xeb\xaa\x89\xe9\x6a\x9c\x40\xeb\x2a\xfc\xfb\x2d\xe7\x71\xc7\xa2\xdb\x53\x51\x65\x7c\x76\x25\xa1\x0c\xa2\x13\x33\x32\x9e\x61\xaa\x8b\xd3\xcd\x74\x16\x92\x03\xc3\xfd\xaa\x9d\xdd\x74\x16\xb0\x96\xec\xb0\x6b\xa7\x4d\x79\x51\xdd\xef\xf8\x1a\xdd\x94\x54\x66\xae\x5e\x31\x4e\x6d\xf3\xe2\xe1\x46\x2c\xc8\x6b\x21\x50\xaf\xe8\xa4\x76\xd9\xf1\xc6\x27\x87\xc9\xc2\xa3\x0a\xb0\x2f\xa1\xde\xb1\xe5\x25\x94\x72\xa6\x78\xfd\x92\x9e\xa8\x1c\xb2\x85\x89\x4a\x12\x0d\x68\x23\x6a\x2c\x5e\x27\x05\x95\xde\xbb\x38\xbd\x66\x30\x55\x74\x68\x27\xde\xaa\xeb\xa1\x38\x16\xd5\x29\x4a\xc8\x75\xff\x17\xd4\x3f\x3a\x01\x6a\x71\x6a\x2a\xbf\x5c\x9f\xc0\x2a\x51\xeb\x93\xd4\xc3\x98\x82\xe7\xad\xad\xe0\x18\xfa\x1f\xed\x74\xbc\x16\xd3\x40\xde\x7d\x56\x65\x71\x4e\xba\x11\x04\xca\x57\x5c\xbe\x6a\xaa\x87\x15\xb5\x44\x07\x21\x5e\x2d\x04\x33\x41\x13\xa0\xd8\xa2\x59\xd2\x75\xaa\x3f\x44\x36\x11\x74\x49\x0e\x59\x8d\xea\xbe\x78\xfe\x36\x69\xca\x8a\x12\x7f\x2a\x32\xca\xd9\xb2\x1d\xec\x5f\x54\x27\x22\x4a\x5d\xfa\x3b\x1c\xb6\x6f\x7c\xd5\x3e\x94\x92\x6d\xd4\xe4\x75\xfb\xd0\xcd\x0d\xb7\x24\xdb\x22\x69\xaa\x69\x76\x3c\x52\x7b\xc0\x9f\xd3\xdb\x7b\x99\xb8\x3d\x45\x69\xca\xd6\xd5\x13\x86\xee\x15\x14\xc4\x23\xe5\x40\x94\x43\x0b\x98\xec\x49\x72\x47\x97\x5e\x9e\x74\x44\x95\xff\x77\x83\x71\x56\xf0\x8b\x27\x8e\xcd\x21\x26\xe5\xef\x94\xae\x96\x2b\x9c\xa8\x69\x75\xca\x8e\x53\xb8\xe0\x06\x68\xaa\xdd\x32\xf4\xab\x96\x60\x2e\x71\xba\x35\xc6\x98\xcf\xd6\x79\x9b\x91\x3c\xbd\xc5\x85\x1b\x41\x33\x10\x20\x1a\xa6\x09\xc3\x94\x23\x14\x9b\x1e\x18\xec\x96\x69\x2f\x78\xcd\x69\xa2\x42\xd4\xad\x10\xb3\x52\x55\x91\x67\xe9\xa4\xca\x72\x2a\xba\xbd\x3c\x4f\x82\xd3\xc0\xdd\xd9\x9c\x2a\xfb\x64\xb6\x0c\xf8\x7f\x56\x4c\xf3\x73\xb2\x23\xc7\x14\x5b\xe8\x9a\xc9\x50\x67\x0c\xa9\xe6\xe4\xd1\xa9\x22\x37\xdd\x1f\xb7\x6d\x07\x53\xc6\x16\x3e\xbd\xae\xf7\xaf\x86\xe7\xe3\x22\x3d\x73\xa9\xec\xd8\xce\xb6\x4d\xde\xda\xd9\x0e\x30\xda\x6d\xa7\x6f\xd3\x97\xad\x9d\xb9\x3d\xd0\x75\x7b\xc8\xd2\x7a\x7f\x33\x0f\xa8\x81\xb9\x95\x0d\xe8\x56\xda\xcf\xbf\x8c\xea\xe2\xfa\xed\xcf\x08\x9d\x3a\xb3\x7f\x93\xaf\x49\x43\xde\xbe\x7e\xbf\xcc\xa2\xfc\xba\x6f\xbd\x06\xbb\xbe\xbc\x7b\x4b\x76\xd5\x9f\x2d\x82\x35\x65\x4d\x6b\xa1\xcb\x5d\x1c\xbd\xe3\x5d\xb3\x7f\xb3\xf5\xea\xaa\x7d\xf2\x40\x4d\xe3\x9e\x51\xce\x7c\x22\x6a\x6c\x99\x8f\xf3\x7a\xef\x5f\xef\x83\xeb\xfd\xfc\x7a\xbf\xb8\xde\x87\xaf\x9e\x45\xa0\x4c\x11\x25\x68\x45\x29\x6a\xf9\x46\x0d\x7c\xf2\x4e\x50\xd2\x35\x9c\x4e\x66\xbe\xa0\xf6\x6a\xe2\x4d\x7c\xda\x74\xab\x6c\x49\x60\x41\xf7\xfe\x2b\xc6\xd3\x0e\x69\x0f\xcc\xd9\xc0\xd0\xbd\xde\x07\x60\xbf\xf1\x67\x2b\x7f\xc1\x5b\xe7\x52\x6b\xb0\xe6\x8d\x0b\xa9\xd1\x5b\xf9\xbc\x35\x84\xad\xbc\xc5\xbf\xd9\x66\x65\x55\x4f\x93\x7d\x96\xa7\x94\x3f\xf2\xcf\xb9\xfc\x73\x21\xff\x0c\xa5\x9f\x27\xf8\xab\x95\xa1\x29\xdb\xd5\xd8\xd4\x6e\xf2\x08\x0e\x02\x7f\xcd\xa5\x5f\x0b\xe9\x57\x08\x7f\x9d\xc0\x8f\x0e\x7f\xbb\x4f\xd2\xcd\xab\x97\x5a\xc6\x69\xca\x3b\x4c\x66\x5e\x77\x9e\x45\xbb\xbb\xfb\x64\xe5\xc5\x5b\xdc\x1b\x81\x6a\x9f\x0b\xff\x0b\x38\x09\xd3\x16\x43\x92\x90\x80\x0a\x3b\x2a\x8b\xaf\x5b\x8b\xfd\x8c\xe7\x9f\xfc\x68\xb7\x63\xa8\x53\xe8\x37\x5b\xa7\xe9\x71\xac\xd4\x2e\x5c\x77\xff\x9b\x2d\xae\x46\x06\x94\x26\x0c\x47\x1b\xe1\xc4\xe5\x43\x61\xa3\xbc\x99\x01\x66\x34\x86\x6a\xb7\x24\x79\x5b\xbf\x45\xdd\x69\xa8\xb5\x54\xf0\x7a\xaf\xb5\xb5\xc1\xc2\x71\x36\xb8\x7e\x92\xd9\x24\x1e\xf1\x49\x80\x10\xb5\xbc\x7a\x9e\x39\xed\x55\x83\xbb\x93\x13\xe6\x8f\xf7\x7b\xce\x8a\xda\x2e\x6a\xa4\x36\xb4\xdd\x67\xee\xe7\x2d\xe2\x3b\x89\xb6\x6a\x1f\xa5\xd4\xe3\xe2\x0d\xaa\x19\x93\xb4\xad\xb7\x5c\xdc\xcb\x16\xfe\x87\x40\x21\x26\x4f\x63\x47\xc6\x4c\x4c\xed\xba\x7d\x8b\x79\x23\x4d\x75\xc3\x2d\x2b\xa3\x8e\x59\x43\xbe\xc5\x0b\x1a\x98\x92\x53\x35\xa7\xbb\x2a\x27\xf4\x44\x57\xff\x58\x53\xf7\x8a\x6e\xb9\xd7\xa2\xcf\x9b\x70\x06\xce\x17\xd7\xf3\xe5\xf5\x7c\x7d\x3d\xf3\xc3\x2b\x01\xd0\x07\x8e\x4d\xc5\x36\x48\x2e\x31\x20\x82\x43\x5a\x2b\xbd\x51\x87\xea\xa2\x51\x46\x8f\x70\xfb\x0b\xb6\xf7\xd6\x67\xba\x07\x54\x13\x16\x65\x5f\xab\x32\x39\xf4\x28\x3f\x87\x99\x62\x0f\xf7\x6d\xb7\x7f\xea\x60\x0f\x59\x9e\x53\xe3\x1b\x1d\x77\xe4\xe6\xed\xb7\x87\x09\x47\xa7\xe9\x9e\xae\x7b\xce\xd6\xbe\xd5\x35\xb0\x28\x40\x99\x5a\xdb\x8b\x58\xb2\x28\x89\x93\x14\xa8\xc2\x34\x3b\x44\x3b\xd2\x09\xc4\x9b\x59\x75\x44\xd5\xaf\x34\xe2\x26\xb3\x2c\x61\xd1\x85\x60\xe6\xcd\x6c\x1d\x42\x10\xee\x7a\x9b\xe9\xc7\x46\xd0\x27\xf5\xf6\xdb\xff\x4f\x76\x38\x15\x65\x4d\x5d\x13\x38\x39\xd8\xae\x0d\x6a\xa0\x4b\xc4\xcb\x1d\x64\x1b\x3d\x83\x67\x45\x0b\x42\x71\x4c\x03\xea\x38\xc1\x88\x43\x66\xb1\xb9\x72\x5d\x04\xbe\x71\x6a\x84\x61\x1c\xf3\x12\x3f\x09\x9e\xb5\xe2\x18\xa1\xe1\x15\xc2\x16\xa3\xd4\xd9\x68\x70\x45\x6e\xe4\xb0\x0d\x3b\xc7\x93\x17\x11\x33\xc0\xce\xff\x6d\x79\xa9\x27\x15\xe4\x20\x52\x33\xd5\x40\xda\x34\xe5\x04\x7d\x9d\x68\xf9\xb7\xed\x5e\x37\x25\xf7\x14\xa2\xe2\xd1\x18\x66\xdd\xa2\x3c\x9f\x78\xd5\x84\x19\xfe\xa8\xbc\x56\xcd\xcf\xad\x33\xa4\xc4\x8c\x96\xab\x6d\x02\xb1\x9f\x6b\x14\xd3\xe0\x89\x86\x8b\xb7\x6d\x68\xc7\xe4\x94\x79\x96\xa1\xf7\xf7\xdb\x9c\x6c\x6b\xfe\x47\xbb\xc9\x4d\x67\xcb\x85\xd8\x35\xc4\x4e\x37\x81\x0d\xb7\x22\x62\xf1\xfb\x7d\x85\x36\x49\x5e\x7c\xdb\x26\xef\x42\xa1\xe7\x95\x7d\x23\xdd\x93\x28\x62\x11\xcc\x41\xf9\xf0\x5b\xf9\x50\xa6\xc2\x53\xa2\xff\x8d\x33\xe9\x23\xd4\x23\x95\x3f\x4e\x82\x20\x8c\x07\xde\x34\xd6\xec\xd6\xe5\x76\x14\x40\xc3\x34\xcd\xe8\xd4\xc4\x5f\x09\x95\x70\x96\xac\xd9\x66\x47\xda\x78\xeb\x00\x62\xe1\x70\xa7\x42\x34\x8a\x94\xd4\x1e\xfc\xdd\x87\xb7\xdc\xc3\xe0\x8b\xd1\x35\x09\xbe\xb0\x45\x1a\x35\x24\x62\xbd\xa2\x98\x6e\xe3\x29\x37\xb0\xca\xe2\xb5\x56\x57\x53\x6e\x99\x90\x97\x50\xdb\x5e\xff\x67\xc7\xa6\x3b\x72\xde\x96\xd1\x81\x54\x13\xc0\xcf\x57\xdb\xb2\x38\xbc\x92\xb4\x89\x3b\x59\x65\x51\x47\x35\x79\xc7\xbb\xba\x45\xda\x5e\xd7\x85\xf9\x91\xf9\xd2\x4b\xc9\x0e\x79\xae\xed\x78\xfd\xfa\x3f\xff\x32\x94\xf0\x9d\x29\xaa\xb2\x44\x55\x12\x96\xce\x9c\x65\x47\xe6\x23\x93\xf4\x6a\x38\x3f\x00\xd2\x20\xa9\xda\x95\x33\x2a\xa1\x7e\x2d\x26\xaa\x68\x9d\x6c\xad\x96\xec\x1f\xdc\x67\xbb\xac\x1c\xd8\x3f\xe9\xb6\xdb\xb5\xb6\x2d\xbc\xb3\x6f\x93\xb6\x02\xb9\xcb\xdc\xd6\x45\xa0\xb2\xd5\xee\x77\xf6\x45\x08\xdd\x03\x6c\xf7\xc0\xdd\x07\xa5\x47\x31\xe2\xfd\xae\x23\x78\xd6\x4f\x4f\x27\x0f\xe1\xfa\xe0\x4d\x75\x5b\x20\x57\xef\xe1\x11\x7d\x4f\x52\x92\xd2\x5d\xb4\x31\x2d\x45\xaa\x19\x10\xaa\xc4\x45\x07\x0a\x9f\x93\xdb\xc7\x69\x76\x4c\xc9\xcb\x1b\x1f\x1b\x6f\x32\x6b\x8d\xe7\x2b\xe8\x92\xf6\x62\xd7\xed\x30\xf8\xa3\x6d\xbe\xb8\x47\xa1\xd3\xde\x66\x16\xca\xd6\x96\xb2\x90\x88\x5b\x66\xbe\x11\xb6\x13\xc0\x71\x8b\xc9\xea\xa8\x7b\xa3\xdf\xda\x6c\x76\x3e\x25\x19\x7d\x80\x7a\xca\x7b\x41\xf6\x44\x9c\x09\x38\x8c\x77\xed\x34\x5f\x64\x27\x17\xe7\x83\xb3\xb9\xd8\x8f\xe9\x56\x7d\x6b\xeb\xc4\x48\xe9\x9c\x54\x65\x30\x8c\xa2\xce\xcf\x56\xe9\x52\xf9\x10\xb0\x6c\xa4\x65\xa8\xf1\xb9\x77\x23\x29\xab\x82\xaf\x65\x27\x86\x4e\x4c\x36\x03\x3b\x70\x9b\xae\x69\xcf\xce\x6b\xcd\x98\xf6\x5d\xb7\xa6\x47\x74\xd0\x91\x09\x58\x69\xe2\x76\x9a\xff\xc5\xce\xf0\x7e\x65\x76\x9f\x9f\xb8\x1a\xfa\x4c\xed\xe5\x90\xb8\xbf\x84\x9b\xe2\xd0\xab\x57\x03\xcf\x15\x8f\x4d\xde\x8c\xcf\x18\x04\xcf\xca\x0e\x26\x85\x16\x8e\x88\x6e\x4b\xd7\x85\xf3\xb9\x40\xd6\x0c\xd2\xdd\x99\x15\x65\xe0\x6d\x94\x12\x27\xd1\xc6\x01\x1d\xc4\xba\x77\xeb\x2f\x13\x6d\xed\x31\x83\x78\xbb\xd1\xa5\xea\x36\xff\x73\x88\x6c\xf4\xa5\xae\x28\x67\xc9\x3b\xbe\xba\xc4\x7d\xb3\xde\xe4\xcc\xce\x3e\x58\xf7\x74\xe1\x36\x53\x42\xb7\x58\x9c\x16\xd6\x81\x35\x1a\xe9\xb1\xe9\x08\x0a\xef\x68\x98\x25\x9e\x7a\xc6\x99\xcc\x56\x86\x99\xf0\x0e\xac\x71\x74\x26\x8e\xe2\x6a\xb3\xfb\xde\xbf\x59\x30\x3a\xc7\x73\x70\xa6\x94\x08\x24\xa0\x11\x08\x0f\x6c\x78\x0e\x03\x75\xf5\x60\xb9\x04\x3b\x48\x33\x07\xf4\xd8\x90\x94\x4f\xed\xd8\xe0\x3c\x84\x86\x8e\x74\x60\x2b\x38\x76\x78\x23\x58\x26\x3f\xd6\xdb\x23\xcb\x70\xfa\x60\xa6\xa7\xcc\x47\x46\x08\xad\x42\x0e\xae\xb1\x1e\x35\xc7\x23\x38\xe7\xce\x7d\x63\x72\x70\x1b\x25\x24\x2e\x8a\x3b\x73\x2a\x6b\x1e\x87\x9b\xcd\xda\xb6\x60\xae\x69\x2e\x73\xf2\x12\x23\xc5\x98\xd7\x9a\x7b\x8b\x74\x1d\xd9\x08\x42\xd1\x19\x33\x59\x41\xba\x98\xaf\xe6\xa3\xf8\xea\x87\xac\xa6\x11\x87\x99\x51\x9e\xb7\x5e\xc4\x8b\x3f\x81\x51\x32\x25\x46\x3e\x79\xde\xca\xdf\xc4\x17\xce\xcb\xcc\x26\xcf\x0b\xb7\x6b\x7f\x14\xdd\xae\x28\x76\xd4\xba\x9e\xf2\xa6\x32\xb3\x2a\x4d\x16\xd1\xfc\xcf\x90\x29\x9d\x1a\x23\xbb\x52\x32\x0f\xfc\xf4\x09\xf3\xb3\x64\xa1\xb7\xf3\x79\x10\x8c\xa2\xcc\xb3\xe3\x1d\xa1\xe1\xa3\x99\x5f\xfe\x76\xbd\x8e\xc9\xa5\x88\x8c\x53\xf5\x17\xab\x38\xda\x5e\x8c\xce\x38\x4f\x7f\xbd\xdc\x6c\xc6\xe7\x79\x2e\x9a\xba\x89\x6d\x59\xf3\xc4\x5f\xfb\xd6\x69\xbe\x21\xb1\x90\x29\x31\xf2\x29\x4e\xbd\xd4\x1f\xb7\x0c\x0a\x36\x23\x9b\x36\xc4\x9f\xfb\xab\x51\x74\x94\xcc\x3a\xda\x95\xd1\xc1\xcc\xa8\xc5\x66\xb5\xdc\x24\x7f\x02\xa3\x54\x5a\xcc\x46\x39\x5d\x6e\xd6\xe3\x12\xaa\xe1\x33\x32\x6b\xbe\x09\x93\xd5\x66\x14\xe1\x89\xa7\x81\x48\x55\xdb\xec\x32\xdd\x09\xac\x8a\xfd\x86\x98\xa5\xd2\x62\xb1\xcc\x9b\x4d\x6a\xdd\x29\x70\x7c\x16\xdb\xbc\xa6\x1a\x3d\x8a\xf0\xde\xb2\xcd\x2f\x3e\xa2\xbb\x85\x64\x92\xdf\x0c\x53\xee\x47\xf7\xf3\x85\xbf\x5c\x48\xfb\xb9\xf2\x9c\x59\x44\x92\x70\xbd\x5a\xaa\x0f\x8a\xa7\xde\x13\xa9\xed\xf6\xc4\x60\xb6\x11\x27\x06\x73\x56\xbe\xd0\x9f\x31\x82\xb2\x81\x45\xdf\xcf\x8f\x21\x02\x5f\x34\x80\xf3\x05\xcb\x51\xb4\xed\x98\x5a\xcd\xff\xf5\x07\x90\x6f\xbf\x2d\x51\xcb\xdd\x76\x41\x73\x4f\x15\xa4\x63\x22\x11\xc9\x1e\xfd\x57\x92\x47\x55\xf5\x8f\xff\x78\x8b\x79\xb1\x93\x6d\x5e\xb0\x10\xe1\xad\xdf\x41\x66\xd6\x0e\x51\xbd\xe2\x2d\x37\xac\xf3\x56\x72\x88\xe5\x0c\xa1\xa8\xd0\x85\xe8\x44\xca\xcc\x3a\x22\x0e\xd2\x0d\xc9\x7b\xe5\x51\x3c\x89\x84\x7e\x4c\x56\xea\x4f\x39\x5a\xc3\x7c\xb3\xdc\x34\x38\xe8\x7d\xc5\x47\xb8\xde\x74\x5c\xf3\x67\xbe\x86\x8a\x1f\x84\x20\xf8\x40\xbb\x15\xa9\x84\x4c\x3a\x5d\x41\x90\x22\xfd\x76\x8a\xe7\xb3\xe5\x46\x9c\x82\xb5\x23\x1d\xb2\x63\x06\x31\x83\xdf\x3d\x26\xa4\xa3\x28\x41\x29\x1c\x2b\xa5\xe3\x03\x94\x2d\xd2\x3a\x3b\x9e\xe1\xb3\xe0\xb7\x8c\x54\xee\x90\x91\x8a\x43\xb8\xf5\xb2\x43\xca\xeb\xc8\xe1\xc3\xb0\x41\x46\xab\xf4\xc8\x78\x3b\x65\xed\xf0\x82\xe7\x30\x5c\x38\x96\x7e\xaa\x39\x95\x2b\xe9\x0c\x03\x36\xc8\x98\x94\x1e\x19\xdf\xac\x65\xe1\xa2\x27\x2b\xdb\x49\x64\xf4\x3f\x15\xf2\x60\xbb\x82\x12\x54\xff\x70\x94\xfb\x46\x26\x15\xfc\x96\x91\xca\x1d\x0a\xd6\x85\xc2\xbf\x03\xd5\x49\xe5\x1c\x47\x6e\x52\xe4\x48\xed\x53\xd0\xab\xb2\xa4\x8a\xbe\x5d\xd4\x87\x72\x2c\xf5\x61\x61\xb2\x8d\x28\xde\x53\x4a\x44\x36\xbd\xf9\x56\x6d\x2c\x0d\xb0\xb5\xb3\xa0\x6b\xe4\x70\x48\xdb\x0b\xd9\x8e\x66\x0d\x9a\x97\x57\xa0\x1b\x96\x88\x2d\x3c\xcf\x56\xd9\xe5\x52\x72\x86\x1f\x7b\x0d\xe7\xba\xd6\x5d\x56\x9a\xd9\x2b\xe5\xd8\xec\x56\x2b\xd2\xd6\x71\x59\xa8\xd7\x06\x00\x79\x0a\xa9\x99\x6f\xf0\x66\x46\x1b\x1e\x1b\xfa\xd1\x24\xc7\x48\x12\xe3\x42\xae\xcd\x3b\xae\x8d\xd6\x53\xe9\xb3\x86\xe5\x47\x28\xfd\x9a\xa3\x42\x27\xb0\x66\xff\xac\x73\xd8\xb8\xcd\x61\xa8\xc2\xe8\x27\xc0\xfa\x16\xf4\x7f\x4e\x93\xd0\xcf\x72\x95\x49\x98\x4a\x9a\x24\x62\xbd\xd0\x40\xad\x54\xf5\x65\x2e\x2e\x42\x68\x31\x8b\x8d\x53\x99\x93\x42\x1d\x76\x08\x2c\x23\x78\xa3\x52\x62\x52\x41\x4d\x26\xde\xec\xba\x9a\x87\x55\x56\x71\x18\xd6\x34\x45\x80\x44\x49\x3a\x5e\x1b\x7b\x30\xdb\xa9\x97\x8e\x68\x02\xf1\xb7\xed\x66\x1b\x6d\x63\x9b\xb8\x07\x1d\x5b\x82\x30\xbc\xee\xfe\x37\xeb\x68\x55\x0b\x08\x31\xda\x34\x2b\x83\xa6\x52\x1d\xe6\x36\x86\x48\x15\xac\x21\x0c\x19\x9b\x20\x96\xa1\xb5\x4c\x48\xb3\x3b\x46\x42\x4c\x91\x92\xce\x51\x4f\xb2\x9c\xee\xa4\xeb\x98\x36\x4e\x6b\x63\xb2\x3e\xfa\x54\x46\x2a\x2b\xd1\xa9\xd8\x63\x7b\xb7\x79\xac\x2c\xfa\x60\xb7\x57\x23\x73\xb0\x1a\x2e\x89\x04\xb1\x0d\x5f\x2e\x30\x9a\x52\x4a\x5b\x79\xef\x98\xf0\xc8\x6a\xc4\x07\x78\xa9\xe5\x0c\xc4\x10\xc6\x53\x11\x88\x1b\xd6\xb7\xb3\x86\xb6\x54\xad\x27\x80\x1d\x7c\xd8\xc6\x77\x18\x4f\x3a\x4f\x01\x55\x4f\xed\x48\x7a\xc1\x9b\xe4\xdd\xdb\x42\x31\xad\x4c\xa6\x2b\xe9\xe1\x53\x5b\xb0\x37\x8c\xda\xa8\x0c\x56\x21\x49\x65\x3f\xbc\x96\x46\x59\x21\x64\x50\xe0\xe7\x62\x24\xbd\x27\xfb\xbb\x7a\x91\x0d\x78\x9d\x4d\x7e\x2d\xa1\x2d\xbf\x09\x66\x61\x4f\xeb\xed\xd8\x7e\x89\xbc\xb6\xd0\xe5\x27\x2c\x2e\x21\x97\x4c\xd3\xbb\x0b\x53\x9f\xef\x5d\xec\x9f\x5e\xd4\xcc\x0f\xbf\x6e\x87\x83\x37\x25\x63\xd0\x32\xe4\xad\xdf\x21\x4b\x5e\xc9\x6c\x1e\x59\x0b\x21\xe6\xfa\x52\xb8\x8c\xd4\xf2\x5c\x2b\xa1\x51\x58\x21\xcf\x5d\xfe\xe1\x41\x56\x58\x38\x61\x97\x8e\xf6\xa6\x01\x3b\x8c\x28\x23\x74\x14\x24\x3b\x46\x15\xb8\xad\x50\x94\xde\xc3\xbf\x75\xaa\xf7\xd2\xe5\x09\xad\xf5\xb2\x29\x63\xbb\x0a\x0a\xcf\x47\x1f\x83\xb6\x41\x46\xc1\x2c\x04\x37\x48\xf8\x5b\x37\xe0\x75\x7b\x23\xd8\xf8\xe8\xc3\xbb\x7b\xfa\xe0\x5c\x8c\x1c\x46\x37\xc2\xc9\xd5\x35\x4f\xe3\x82\x41\x8f\x2f\x40\x6d\x9a\x62\xaf\x16\xaa\x59\x10\x07\xb1\x79\x93\xa5\x2e\xda\x77\xad\x43\xf3\xcc\xa5\xdd\x28\x60\xfa\xee\x60\x98\x05\x96\x59\x5d\xec\xd8\x71\x9e\xf6\x6a\x49\x3f\x69\x04\xa2\x6d\x71\x75\x59\xfe\x16\xf8\x71\x24\x97\xbd\x1a\xcb\x5a\x35\xef\x05\x73\xcd\x8c\xf4\x9b\x0f\xfc\x96\x51\x3c\xdf\x3c\x69\x9c\x24\x2b\x93\x26\x8f\x4a\xdc\xb9\xf0\xbd\x2e\x1f\x2a\x83\xb5\xf2\xd1\xda\x07\x2a\xe7\xa6\x9b\x21\xd4\x04\x9e\xbe\x0f\xb7\xf5\xee\xf3\xa1\xfe\x5f\xda\xe0\xba\x4a\xda\xb9\x8a\xca\xfc\x92\x85\x6e\xa2\xd0\x62\xfd\xfe\x0d\x86\xa2\x44\xde\x61\xd0\x99\x8c\x7a\x9f\x92\xf1\x6b\xb3\xbc\x8b\xfe\x55\x6a\x21\xbc\x52\x47\xf7\xda\xc3\x0a\x79\xed\x01\xb4\xc9\x6f\xff\x82\x0e\x7d\x97\x5f\x5c\x21\x6f\x2b\xaa\xef\x37\xba\xbd\x93\xa4\xf2\xf8\x5f\x69\x54\x47\xfc\x82\x9a\xdf\x3b\x76\x77\x5c\x8b\xea\xba\x7c\xa7\xef\xbe\x1a\x2c\x81\xb4\xdc\xad\xdf\xa6\xc8\x9c\x06\xd7\x96\xb9\x4b\x37\xb0\x30\x40\x3a\x48\x94\xec\x6d\x85\xda\xf2\x0e\xd6\x67\x0c\x75\x17\xd9\x29\xe3\xa6\xd0\xd9\x0f\x4f\x97\x17\xd7\x0f\x8b\x9f\xd0\x5a\xde\x61\x0a\x7c\x0b\x30\xf8\xf0\x13\x8b\xcb\x21\xb6\x26\x2a\x48\x1a\x3b\xd0\xb7\x79\x35\x8f\x1d\xa8\x83\x38\x98\x91\x8d\x27\xbf\xa7\xe1\x12\x5f\x90\xd3\x23\xce\xb3\x9c\x08\x02\xe3\xf3\xb3\x28\xc9\xb0\x63\xa3\x5b\xdd\x2f\x4c\x2e\x2a\x8b\x60\x74\xe7\x7b\xec\x16\x10\xb5\x6d\x9b\x13\xd0\x78\xa8\x78\x03\x04\xe4\x00\xaa\x2c\x09\x99\x66\xee\x23\x30\xb8\x9d\x99\x0a\x64\xcd\xa7\x62\x26\x9f\x83\xb1\x16\x74\x0a\x5a\x1d\x9a\x15\x4a\xba\xb8\xc0\x0a\x08\xae\x1c\x40\x1c\xae\x7e\x23\x66\x25\xda\x1d\x0e\x70\x9e\x27\xdf\x52\xc0\xa7\x73\xa1\x02\x8c\x8c\x60\x0b\xfc\x2c\x0e\x8d\x2b\x56\xf3\xec\xed\xc4\x8a\x09\x5b\x38\xc2\x0d\xbe\xce\x8e\x51\x45\x1e\x1f\xc1\x81\x23\xb8\x23\x76\x01\x6a\x0b\x5b\x2c\x78\xb9\xb3\x86\xb0\x44\x55\xab\x4e\xfb\x11\x8d\x6b\xbb\x34\xc5\x03\xed\xf0\x31\x08\x6e\x39\x4e\x46\x17\x62\xc4\x86\x8c\xcd\x6a\xb4\xae\x74\x7c\x50\x55\xa8\xc6\x46\xd2\x6f\x07\x31\x0f\x64\x59\x26\xe1\x81\xff\x77\xaf\x13\x56\x6a\x30\x66\x3f\x9e\x34\xad\xa7\x2c\x94\x75\x99\x46\x07\xba\x6c\x9d\x90\xcd\xb3\xf5\xed\xb9\x1b\x74\xad\x39\x44\xda\x3a\x3d\x7d\xeb\x02\x18\xa6\x27\xea\xd0\x76\xfe\x70\xd7\xce\xae\x1b\xcc\xb6\xe7\x69\xe7\xd4\x75\xdd\x2d\x3e\xe9\x19\x13\x2c\x18\xa2\x28\x33\xd6\xb3\xa7\xff\x7d\xa4\x50\xd4\x0d\x85\xbd\x69\x56\x8a\xbb\x4d\x3a\x1f\x15\xce\x05\xf4\x96\xc5\xc3\x40\x81\xdc\x8c\x34\x0d\x29\x8a\xb6\xda\xb5\xe8\xf9\x68\xee\xea\xb2\x21\x2d\x48\xd8\x41\xec\x4b\x42\x8c\x8f\xc3\x4e\x05\xc1\x7c\x3e\x9b\xcf\xe7\x02\x6e\x5b\x34\xa5\x09\x07\xec\x53\x50\x04\x61\x0b\x02\x8e\xe6\xb5\xc7\x41\x9f\xfa\x78\x0b\x52\x65\x2f\x4d\x4f\x83\x2e\xe5\x61\x7f\x39\x5b\x2e\x97\x2d\x14\x7b\xe3\xd2\x88\x02\x76\xaa\x48\x16\x4c\xce\x05\x1c\x8f\x3b\x4c\x48\xa4\x4e\x15\x09\x8d\xfd\x04\xd4\x91\x1a\x14\x13\x06\xd8\xa7\x22\xf0\x67\xbe\xdf\x2e\x98\x79\x1e\xb5\x79\x16\x1d\x91\xb9\x8d\x0f\x72\xaf\x82\x62\x33\xf3\x36\x9d\xc4\xb1\xcb\x6c\xcc\xf2\x08\x7b\x15\x24\x6b\x26\x50\x9d\x44\x71\xeb\xa0\xa6\xcc\xaf\xcd\x5d\xef\xa9\xfe\xf8\xf3\x2d\xc9\xe0\xf4\xf6\xba\x64\x1c\xb5\x0d\x5b\x65\xad\x1a\x83\xd6\x54\x68\xec\x01\x49\x61\x46\x81\x81\x0e\x8c\xc1\xea\xda\x30\xfa\x84\x26\xfa\xa3\x4f\xc8\x72\x3e\x0a\x2e\x4b\xf5\x28\xb8\x2c\xa6\x63\xe0\x9a\xc0\x8e\x3d\x00\x85\x33\xce\xe9\x1e\x01\x13\x7c\xb0\xc1\x72\x90\xfc\x37\x3f\xf6\x13\x7b\x3d\xbe\xe5\xf2\x11\x38\x88\x7e\xf8\x3e\x56\x30\x01\x1e\x86\xa7\x7d\x18\xe1\xc6\x94\x5b\xb0\x0a\x36\xc1\x78\x49\xae\x34\x16\x38\x71\x46\xc7\x32\xdd\xcf\x13\x6c\xe7\xde\x7c\xbc\xfe\x5e\x1a\x0b\x66\x3c\xd1\xc1\xcc\x65\xb7\x8b\xf9\x72\x3e\x5e\xc6\x2e\xb0\x22\x07\xbf\x60\x34\xf5\xa8\xd4\x4c\x94\x1d\x8f\x76\xe6\x6a\xae\x94\xde\x7a\x5b\xdf\xfa\xfa\x19\x3c\x58\xd5\x64\x57\x6b\x86\x27\xa1\x17\x14\x6d\x39\x57\x99\x19\xa8\xd1\x8b\x66\x9c\x84\x53\x29\x70\xc3\x0f\x9b\x85\xe4\x1a\xe8\x6c\x7b\xc7\x09\xd4\x8a\xbd\x9c\x24\xda\x8d\x40\x2e\xee\xb6\x03\x71\x93\xe8\x61\x94\x18\xeb\x9e\x5c\x48\x11\xe2\x64\xe2\x95\xd0\x94\x71\x5e\xe9\x95\x65\x56\x8d\x44\x29\x11\x63\x5d\x46\x49\x6f\xbd\x75\x92\xf8\x05\xcc\x20\x62\xba\x92\x43\x19\xfd\x6d\x4b\x55\x55\xd0\x1e\xb7\xc2\x21\x03\xaf\xd3\x05\xfd\x17\x9a\x66\xd8\x95\xff\xa3\xe3\xc2\xd3\x1b\x14\xe0\x66\x14\x00\x7b\x37\x13\x57\x48\xfb\xcc\x47\x49\x51\xd7\xdb\x05\x72\x84\x38\x4b\x0d\x1c\x7a\x83\x96\x89\x99\xba\x46\xfd\xb7\x31\xd3\x91\x94\x3f\x83\x99\xc8\xdb\x38\xea\xeb\xbd\xe2\x71\xb5\x1c\xd9\xd2\x2f\x57\x64\x1b\xe9\x00\x4f\x3c\x41\xa3\x5c\x0a\xed\xcc\x07\x83\x16\xea\x2d\xeb\x67\xae\xcc\x74\x9e\xa9\xa9\x90\x53\x18\x64\xcf\x68\x8d\x2f\x9b\x82\x59\x0a\xcc\xb5\xcd\x97\xd3\x14\x2e\xd8\x3f\x17\xb2\xc6\x05\xde\x50\xab\x6c\x27\xff\x22\xb4\x97\x69\x93\x23\xd9\xe8\x12\x5b\xb7\xba\x8b\xd6\x78\x57\x12\xe9\x4d\x17\xf0\xdb\x16\x7d\x88\xfb\xb3\x9e\x18\x7d\x80\x31\x2e\x0e\x3e\xc0\xb3\x40\x2f\x30\xaa\x8d\xf6\x67\x3d\x67\xff\xc6\xdf\x64\x06\x23\x0d\xd2\x8e\x8e\x64\x0a\x3c\xd6\x11\xfb\x77\xd1\x48\x40\x72\xd0\xa1\xcc\x6f\xcf\x7a\xec\x9f\xdb\x58\xba\xd4\x81\xb1\x2c\x41\x87\x4c\x91\x15\x8b\x7b\xc8\xb1\xdc\xb0\x7f\x8e\x21\x87\x2a\xae\x5a\xeb\x9f\x18\x70\xe0\xa2\x68\xa6\xe8\x69\xe1\x86\x90\x56\x93\x42\x8b\xde\x51\xf2\xd4\x68\xc3\x49\x8a\xdd\xc8\xe3\x22\x6e\x09\x36\x0c\x02\x87\xd1\xf1\xac\x50\x43\x88\x91\x89\x4f\x42\x3b\x46\xf9\xa4\x45\x1a\x56\x1d\x44\xe9\x10\x23\x5d\x46\x87\x1c\x68\x40\x82\x2e\x8d\x33\x54\xfd\xc0\x3a\xfe\xcc\x28\x03\x0c\x8b\x7a\xf6\x06\xe6\xa3\xfd\x88\xcb\x81\xab\xa0\x75\xd2\x63\x64\xd8\x37\x71\xb3\xe2\x38\xc0\xb9\x45\x17\xb2\xe5\x31\xb2\xd3\x75\xbe\xe6\xfb\x8f\xb7\xa9\x97\x06\x66\xfc\xae\xb3\x32\xde\x8a\xbd\x4a\x36\x49\x8c\xe0\xb7\xf8\x3c\x6e\xf6\xc0\x75\x06\x17\xae\x34\x36\x42\x90\x2c\x92\x10\x1b\xc1\x18\xac\x68\xdd\x86\x58\x45\x21\xe4\x2f\x11\xaa\x68\xb4\x9b\x85\xcc\x35\x50\x31\x4f\xd3\x1a\xa7\x88\xa5\x7d\x23\x53\x30\xca\xf1\xc5\x81\x8a\x90\x68\x13\x51\x69\x92\xa6\xa9\xf1\x76\x2e\x30\xe4\xa8\xfc\x3b\x87\x20\x18\x73\x8d\x6f\xb8\xfd\x7b\xb8\x6b\xd6\x31\xe7\xc0\xc8\x22\x22\xd6\x9d\x56\x28\xa7\xfb\x2c\xe2\xb2\x78\x90\x6a\xa9\x61\x83\x2d\xd8\x89\xc2\xe5\x6a\x6e\xbd\x0f\xc8\x76\xd4\x02\x06\xb9\xfc\xa8\x05\x3c\x0c\x7d\x4c\x8c\x70\xa3\xa1\xdf\xac\xc2\x78\x3e\x1e\xef\x48\x63\x01\x87\x11\x1d\xcb\x64\xf4\x37\x5e\x38\x0f\xc6\x2f\xd5\x92\xc6\x82\x4e\x17\x3a\x98\xd1\x3c\xaf\xbd\xd0\x9b\x8f\xdf\xb9\x25\xb0\x22\x3e\x28\x18\xcd\x76\xd4\x22\x13\x65\xc7\xe3\x1e\xf7\x6c\x36\x61\xe4\x42\xbc\xd0\x07\x4d\x76\xb5\xe6\x3f\xf3\xa8\xc5\x20\x96\x66\x9a\x9e\x16\xfb\x08\xc9\x35\xfa\xd2\xbc\x77\x9c\x40\xed\xa8\xc5\x49\xa2\xdd\x08\xe4\xe2\x6e\x3b\x6a\x31\x89\x1e\x46\xc9\xb3\xe2\x1f\x21\x4e\xc6\x38\x91\x6b\xca\x38\xaf\xf4\xa3\x16\xab\x46\xe2\x21\x21\x1f\xeb\x32\x4a\xe4\x08\x48\x22\xe9\xe2\xa3\x16\x55\x55\xd0\x9e\xe7\x05\x41\xcb\x55\xe2\x27\x46\x47\x80\xf7\x9a\x89\xc2\x8f\x38\x0c\xab\x80\x03\x60\xd9\x57\x5c\x27\xed\x93\x1f\x25\x65\x24\xa5\x69\xd6\x24\x17\xc0\x27\x9f\xb6\x3c\x65\xaa\xe6\x38\x68\xbd\xdc\xfa\xbe\x65\x04\xe7\xf9\x18\x23\x21\x7f\xb9\xf6\xd6\xd8\x08\xb6\xf4\xaf\x9b\x6d\x18\xee\x06\x5c\x6e\xbd\xd4\x32\x8b\x4b\x57\x1a\xf3\x83\x36\xcb\xc0\x5f\xa2\x63\x98\xcf\x6e\xb4\x7e\xd3\xd9\x8d\x42\xcb\x5f\x22\x20\xd2\xa9\xb7\xc8\x9b\xf3\xd9\x8d\x79\xa6\xf6\x98\x88\x0b\xaa\xdd\xea\x5c\x30\x11\xb3\x58\x5f\x1e\x18\x71\x01\x7f\x3e\x65\xe3\xea\xe0\x7e\x3a\x83\x31\xd9\x29\x36\xe2\x8a\xf4\xc6\xb8\x6c\x51\x3b\xf7\x93\x23\x8b\xc0\x58\x77\x62\xa1\xb0\x17\xcd\x25\xce\x1b\xa5\x8c\xa8\xd1\xae\xc1\x42\xdf\xe1\x5c\x87\xa9\xf5\xf4\xc1\x5a\x8d\xd6\x98\x17\x65\xb4\x18\xad\xc1\x6e\x9e\x40\xa8\xb6\xbc\xfd\xb9\x5a\x27\x2e\xe5\x61\xc3\x48\xb0\x12\x0d\x19\xc9\xb4\x11\x78\xe9\xca\x8f\x1d\xa2\x23\x30\x92\x54\xf2\x85\x0c\x65\xbe\x74\x36\x5a\x6e\xa2\xf1\x4b\x34\x39\x52\xac\x7a\xac\x1f\xcb\x5a\x84\xd6\x98\xde\xf3\x1d\xeb\xb7\x10\x1e\xac\x36\x89\xf5\x68\x51\xaa\x13\x6a\xd0\x12\x26\x4c\x68\xff\xfd\x05\x68\xa8\x28\x1a\x29\x7a\x5a\x4c\x24\xa4\xd5\xa4\xd3\xa2\x77\x94\x3c\xbd\xfa\xcc\x41\x8a\xdd\x2a\xbe\xb8\x88\x5b\x8b\xcf\x70\x81\x43\xe8\x78\x56\x3c\x24\xc4\xc8\xc8\x27\xae\x1d\xa3\x7c\x42\x2a\xcf\x2c\x3a\x88\xd3\xc1\x47\xba\x8c\x0e\x25\x1a\x02\x04\x5d\x5e\x77\xd6\x98\xaa\x0b\x5c\xec\xfa\x78\x28\x14\x2e\x92\xb5\xf1\x42\xfd\xb6\xd7\x48\x92\xa1\xd8\x0b\xe5\x3f\xda\x8f\x56\xa1\x60\x5a\x68\x9d\xf7\x18\x19\x63\x75\x1d\x26\xdd\x71\x80\x7b\x7a\xc1\xd9\xc5\xb3\x34\xdf\x4d\x1d\x25\x9e\x0d\xbf\xeb\x5c\x8c\xe5\xd7\x71\x1c\xa3\xf8\xad\xc5\x2f\x2e\x86\xc0\x75\x06\x17\xae\x2f\x7e\x47\x85\x41\x90\x2d\x55\x6b\x4a\xb7\xb1\x68\x4d\x22\xe4\xaf\x11\xf7\xa8\xb4\x9b\x85\xcc\xbd\x62\xcd\x34\x4d\x6b\xd0\x23\x96\xd6\x6e\x5f\xdc\x67\x61\x14\xe5\x8b\x43\x1e\x21\xd4\xcf\xa6\x6b\x54\x05\x2e\x28\x47\xd3\xf9\xeb\x12\xef\xbc\x59\x06\x9b\x35\xed\x82\x3a\x39\xa3\xa0\x58\x37\x5a\xa1\xa2\x17\x4d\x64\x57\x12\x22\xa5\x0a\x61\x83\x3d\xdc\x61\x57\xd6\x3c\xbd\xfc\x8d\x3c\xf9\x44\x08\x3e\x2c\x17\xc0\xe9\x84\x8f\xdc\x77\xe3\x52\x2b\x46\x90\x2c\x18\x3e\x96\x31\xe6\x21\xd1\xc2\xe1\xe5\x1b\x69\x2c\xb9\xe4\x0c\x19\xcc\x1c\x3c\x6c\xd6\xdb\xb9\x75\x61\xc0\x68\x68\x01\x1b\x71\x38\x11\x52\x88\xb2\xe3\xb9\x20\xf2\x99\x47\xc4\xfe\xd9\x17\xb9\x6c\x89\x20\x27\x42\x06\x09\xfe\x13\x6a\xe1\x30\xb1\xb4\xd0\xf4\xd4\xe8\x87\x49\xae\x39\xfa\x91\xef\x71\x32\x11\x88\x94\xc3\x39\x48\xb4\x5b\xfc\xc3\xc5\xdd\x5e\x0f\x87\x8a\x1e\x4a\xc9\xf3\x22\x20\x2e\x4e\x46\x5e\x71\x4d\x19\xe7\x15\x56\x12\x67\xd1\x48\x9c\x12\x3e\xd6\x65\x94\xc8\x31\x90\x44\xd2\x13\x8a\xe2\x08\x7e\x22\xe4\x68\xef\xc7\xc3\xa0\x80\x24\xc9\xc2\x58\xf5\x27\x7a\xcd\x44\x99\x6a\xd2\xd0\x55\xc0\x01\xf0\x2a\x17\x4c\x27\xed\x93\x1f\x25\x65\xb4\x96\xc3\xa4\x49\x2e\x80\xb2\x27\x98\xb3\xb7\x65\xbf\x71\x8e\x89\x9e\x34\x5f\xf3\x0b\xaa\x41\x4c\xe6\x0b\xcb\x08\xce\x93\x32\xed\x8c\xfe\x26\x5e\x07\x7a\x81\x1c\x6a\x1d\x4c\x43\x8c\x45\x46\xfe\x36\x09\xe6\xbe\x65\x16\x97\x2e\x37\xc6\xa9\x30\x0a\xe6\x73\x74\x0c\x5b\x95\x1c\x71\x3a\x16\x52\x69\xf9\x4b\x84\x47\x3a\xf5\x16\x79\xbb\xa0\x52\xce\x34\x53\x6b\x84\x24\x04\xd5\x6e\x7a\x2e\x98\x88\x59\xac\x2f\x8e\x91\x84\x80\x3f\x9f\xb2\x71\x75\xb8\xa4\x62\x4e\x67\xb2\x4b\x98\x24\x14\xe9\x8d\x71\xd9\xa2\x76\x97\xd4\xcd\x19\x05\xc6\x1e\x29\x71\x85\xbd\x68\x2e\x45\xc9\x3e\xb2\x0e\x59\x2a\xb5\xd8\x62\xa5\x6d\xb0\xf2\xfd\x27\x7c\x8c\x4d\x1f\xf7\xe2\x60\x49\x7a\x1a\xe8\x1c\x4e\xbb\x71\x2b\xd8\x06\xcb\xc0\x1b\x0f\x61\xe4\xd1\x06\x3d\x32\x8c\x66\xda\x16\x48\x18\xc6\xde\xf8\x8b\x3c\xf2\x68\x40\x3e\x0c\xc3\x99\x6b\x9c\xb7\xe1\xc6\xb3\xae\x0f\x1c\x4f\xd7\x2d\x69\x3c\x4b\xd0\xa4\xd2\x35\x82\xc9\x3d\x6c\xda\x86\x4b\xdf\x81\x61\x42\x3f\x74\x41\x46\xda\xff\xc4\xc0\xc9\x24\xa2\x36\xaa\x9e\x16\x3a\x09\x29\x36\xee\x76\xbc\xd7\x81\x44\x35\x76\x72\x94\x6e\x27\x12\x85\xe8\x5b\x82\x27\xa3\x10\xe2\xb4\x3c\x2b\x7c\x12\x62\x65\xe2\x97\xd0\x1a\x07\x7e\x69\xf1\xd3\x88\x7e\x1a\x0a\xb6\xd9\x68\x97\xd1\x22\x07\x50\x32\x51\x97\x46\x50\xba\xd6\xe0\x5d\xcf\x8a\xa1\xb6\xdb\x75\xe8\x1b\xdd\x05\xd1\x6b\x21\x0b\x8d\x5c\x8c\x6b\x61\x80\x40\xbc\x1f\x93\x86\x8e\x70\x60\x9c\x1c\xfb\xee\x6e\xd3\x2b\x27\xc8\xa7\x1e\x2d\x3d\x71\xbe\xe6\xdd\x73\xbb\x5a\x79\xbe\x6d\x0c\xf7\x39\x99\xf6\xcc\xad\xbf\xd2\x6e\x15\x30\xda\x0a\xe3\x20\x63\xc1\xd4\xf8\x4c\x2e\x5e\x73\x6c\xff\x5f\x2d\x63\xc3\x5c\xcc\xf1\x14\x02\x60\x08\xa8\x34\x72\xfe\x12\x11\x15\x42\xbf\x4d\xf4\x5c\x63\x2a\xdb\x64\xad\x41\x95\x58\x6a\xbb\x2d\xba\x64\x2e\x16\x11\xbf\x38\xac\x12\xc2\xfe\x06\x68\x73\x50\x0d\xe7\xc0\x0a\xe7\xb4\x4b\x64\xf5\xa6\x59\x6d\xd3\x41\xe7\xd8\xca\x2a\x38\xd6\xad\x5a\xa8\xef\x45\xd3\x39\x65\x47\xe9\x6e\x20\xf0\xdb\x16\x58\x11\x6f\xbe\xd9\x58\x2f\x1a\xb3\x04\x56\x60\x8c\x8b\xc3\x2a\xf0\x2c\x50\x3a\x8c\x6a\xe3\xa6\x40\x96\x7e\xb4\x1e\xff\x9a\x3c\x1c\x69\x50\x21\x74\x24\x63\x38\xe5\x7b\x94\xe7\x17\x8d\x04\x04\x02\x1d\xca\x1c\x4a\xad\xfc\xed\x6a\xfc\x2b\xdf\x1c\xa9\xae\x4b\x60\x2c\x4b\x18\x25\x53\x64\xc5\xe2\x1e\x42\x91\xc8\x0f\x1d\x96\x43\x68\x81\x2a\xae\x5a\xeb\x9f\x18\x3e\xe1\xa2\x68\xa6\xe8\x69\xa1\x93\x90\x56\x93\x4e\x8b\xde\x51\xf2\xd4\xc0\xc9\x49\x8a\xdd\xc8\xe3\x22\x6e\x09\x9b\x0c\x02\x87\xd1\xf1\xac\x90\x49\x88\x91\x31\x4c\xe1\xda\x31\xca\x27\x2d\x60\xb2\xea\xa0\xe1\x45\x5d\x36\xd2\x65\x74\xc8\xe1\x12\x24\xe8\xd2\x60\x49\xd5\x0f\xac\xe3\xb9\x81\x12\x49\x8d\x95\x0e\xa2\xd7\x48\x12\x1a\x97\x18\xf8\x8f\xf6\x23\xae\x0c\xae\x85\xd6\x79\x8f\x91\x61\xdf\x9e\xcd\xba\xe3\x00\xf7\xd4\xc0\xe8\x09\xb3\xb4\x05\x45\x8b\x74\x6d\xc6\xef\x3a\x17\x63\x40\xb4\x5d\x86\xe9\x1c\xc1\x6f\x71\xe1\xdc\x0c\x81\xeb\x0c\x2e\x5c\x5f\x74\x84\x30\x4e\x7d\x6c\x04\x63\x18\xa4\x75\x1b\x82\x20\x85\x90\xbf\x44\x08\xa4\xd1\x6e\x16\x32\xd7\xf0\xc7\x3c\xcd\xb1\xe0\x87\x2e\xad\xdd\xbe\xb8\xcf\xc2\x28\xca\x97\x07\x3e\x5c\xa8\x9f\x4d\xd7\xa8\x0a\x38\x07\x3d\x18\x7f\x1d\x43\x9e\x37\xc8\x60\xb3\xa6\x39\x87\x3b\x16\x41\xb1\x6e\xb4\x42\x45\x2f\x9a\xc8\x7d\x56\xe4\xa4\x86\xec\x94\x5a\x6c\x01\xcf\x72\x31\x0f\x13\x6b\xd9\x9a\x25\xe0\x91\x46\xb9\x38\xe4\x91\x9e\x06\xaa\x86\xd3\x6e\x34\xfb\xe1\x3a\xd8\x38\xbc\x00\x24\x8f\x36\x28\x90\x61\x34\xd3\x26\xb0\xd8\x06\x5e\x3c\x1e\xfa\xc8\xa3\x01\xf1\x30\x0c\x67\x34\xd8\xa1\x17\x44\xd1\xf8\x8d\x06\x2d\x5a\x5d\xaf\xa4\xf1\x2c\x21\x90\x4a\xd7\x08\x26\xf7\x30\x28\x5c\x06\xcb\xd8\x7a\xd1\x07\xf0\x59\x75\x41\x46\xda\xff\xc4\x50\xc8\x24\xa2\x36\xaa\x9e\x16\x0e\x09\x29\x36\x56\xda\xf2\x5e\x07\x12\xd5\x80\xc8\x51\xba\x9d\x48\x14\xa2\x6f\x09\x89\x8c\x42\x88\xd3\xf2\xac\xb0\x48\x88\x95\x91\x5f\x5c\x6b\x1c\xf8\xa5\x05\x46\x23\xfa\x89\xd3\xc2\x47\xbb\x8c\x16\x39\x34\x92\x89\xba\x34\x38\xd2\xb5\x06\xef\x7a\x56\x80\x14\x05\x1b\x7f\x6b\x14\x50\xd1\x6b\x21\x0b\x8d\x4d\x8c\x6b\x61\x80\x40\xdc\x1e\x93\x86\x8e\x70\x60\x9c\x1c\xfb\xe6\x6e\xd3\x2b\x27\xc8\xa7\x06\x4c\x4f\x9c\xaf\xf9\xe2\xd6\x68\x35\xb7\x8f\xe1\x3e\x27\xd3\x9e\xb9\x4a\x97\x0b\xc3\x18\x16\x47\xd0\xd5\x5c\xb8\xcf\xe4\xe2\x35\xc7\xe6\xb2\x5e\x7a\xdb\x0d\x3e\x8a\x31\x84\x42\x00\x0c\x41\x94\x46\xce\x5f\x22\x8c\x42\xe8\xb7\x89\x9e\x6b\x28\x65\x9b\xac\x35\x98\x12\x4b\x6d\xb7\x45\x97\xcc\xc5\x22\xe2\x17\x07\x54\x42\xd8\xdf\x00\x6d\x0e\xaa\xe1\x1c\x54\xe1\x9c\x76\x09\xab\xde\x34\xab\x6d\x3a\xe8\x1c\x5a\x59\x05\xc7\xba\x55\x0b\xf5\xbd\x68\x3a\xa7\xa6\x3c\xe5\xf2\x71\x00\x6c\xb1\x05\x57\xd1\x7c\x3e\x4f\xac\x2f\x9f\xd8\x4e\x93\xe0\x28\x97\x9f\x27\xc1\xa7\xe1\x89\x12\x4a\xbb\xf9\x9e\xbb\x65\xb0\x8a\xc7\x6f\xdb\x96\x47\x03\xa7\x4a\xf8\x68\xc6\xbb\xbd\xb7\x3e\x89\xc7\xef\x57\x90\x47\x83\xe7\x38\xf8\x70\x46\x63\xbe\x0e\x82\xcd\x66\x3c\x36\x69\xd1\x22\xe7\x42\x70\x3c\xdb\xf9\x92\x42\xd7\x08\x26\xf7\xe0\x6a\xb3\x0a\x16\xf1\xf8\xe1\x58\x9b\x7f\xd7\x04\x19\x69\xff\x33\xcf\x99\x0c\x22\x6a\xa3\xea\x89\x77\xde\x71\x29\x36\xde\x79\xc7\x7b\x1d\x48\xd4\x4e\x9b\xdc\xa4\xdb\xed\xce\x6f\x2e\xfa\xb6\xf3\x26\x93\x10\xe2\xb4\x3c\x2b\xb8\x12\x62\x65\xbc\x6d\x8e\x6b\x8d\x03\xbf\xf4\x53\x27\xbb\x7e\xe2\x8c\xe1\xa3\x5d\x46\x8b\x1c\x5c\xc9\x44\x5d\x7c\xf2\xa4\x69\x0d\xde\xf5\xac\xe0\x2a\x4d\x6c\xbb\xac\xe8\xb5\x90\x85\x1f\xfc\x98\xd6\xc2\x00\x81\xe5\x94\x0d\x1a\x3a\xc2\x81\x71\x72\x46\x32\xa7\x16\xbd\x72\x82\x7c\xf2\x69\xd4\xd3\xe6\x6b\xdc\x3d\xd3\x65\x18\xd9\xc7\x70\x9f\x93\x69\xcf\x4c\x83\x85\x69\x0c\x5b\x96\xdd\xd1\x5c\xb8\xcf\xe4\xe2\x35\x47\xcb\xe6\x17\xda\x9d\x13\x1d\x0e\xf3\xf9\x94\x0e\x60\x3a\xa1\x52\xc9\xf9\x4b\x04\x57\x08\xfd\x36\xd1\x73\x3e\xa7\xb2\x4c\xd6\x1a\x5c\x89\xa5\xb6\xdb\xa2\x4b\xe6\x62\x11\xf1\x8b\x83\x2b\x21\xec\x6f\x80\x36\x07\xd5\x70\x3f\xb1\x42\x39\xed\x12\x5c\xbd\x69\x56\xdb\x74\xd0\xfd\xdc\xca\x26\x38\x23\x15\xf5\x0b\xcb\xb5\x17\xe8\x74\x4a\x92\x42\x9e\x0e\x3f\x6d\x61\x55\x1a\x07\xeb\xe0\xa9\x61\xd5\x30\xc4\xc5\x31\xd5\xf0\x28\x50\x38\x84\x64\xf3\x7e\xe0\xf9\x1b\x7f\xfc\x8e\x08\x30\xce\xa0\x3c\xd8\x38\xc6\xcb\x51\x23\xdf\x73\xf8\xe2\x28\x18\x07\x08\x02\x36\x90\xd1\x62\xc7\x81\x4f\xfc\xf1\x00\x84\xe1\xd4\x35\x68\x18\xc9\x12\x3b\x49\xe4\xd8\x70\xb8\x47\x4d\xe9\xc2\x0f\xfd\xf1\x33\x3c\x21\xf8\x8a\x84\xaa\x8d\x7f\x62\xbc\x84\x8a\x9f\x91\x9e\xa7\x45\x4a\x42\x42\x8d\x2a\xcc\x7b\xc7\x88\x53\xc3\x24\x17\xc9\x75\x22\x4e\x88\xb5\x25\x46\xc2\xc5\x0c\xa1\xe2\x59\xd1\x91\x10\x1f\x13\x8f\x84\x46\x8c\xf1\x48\x0b\x8d\x6c\x5a\x87\x52\x21\xc6\xb9\x8c\x0a\x39\x2e\x02\xe4\x5c\x1a\x14\x29\x4a\x81\xb4\x3f\xb3\x18\x6f\xb9\x09\x8d\x73\x13\xbd\x26\x82\xd0\xe0\x03\xe7\x3c\xd6\x8d\x78\x2b\xa8\xde\xd9\xa6\x3c\x42\x82\x7d\xfb\x35\x6a\xcb\x38\xd8\x53\xc3\x9e\x8b\x27\x68\x29\xc1\x0b\xfd\xc5\xc2\x88\xdd\x71\x1e\xe6\x02\xbc\xc5\x7c\x1e\xea\xd8\x2d\xbe\x99\x93\xd6\x3b\x52\x7f\xd9\xaa\xa2\xf8\xe7\x1b\xf5\x72\x0a\x8e\xc0\x18\xdb\xa8\xbd\x86\xc0\x46\xa6\xe2\x2f\x11\xd5\xa8\x94\x1b\x25\xcb\x35\x9e\x31\xce\x71\xa4\xec\x8e\x2d\xa9\xdd\x92\x38\x4f\xc1\x24\xbe\x4f\x28\xba\x63\x82\xfc\x5c\xaa\xc6\xc4\xde\x39\x80\x41\x58\xeb\x56\x71\xf7\x06\x79\x6b\x54\x2e\xe7\xb8\xc5\x2c\x20\x23\xe5\x76\x4c\x29\x2f\x9a\x45\x4d\xa2\x1c\x32\x12\xfc\xb6\x85\x2d\x9e\x17\x87\x91\xf5\x85\x10\x4b\xd8\x02\xc6\xb8\x38\x6e\x01\xcf\x02\xcd\xc2\xa8\xb6\x7c\x5f\x7a\x93\x6c\xc6\x5d\x66\x38\xd2\xa0\x2d\xe8\x48\xc6\xbb\xed\xbc\x75\xb2\x1e\xbf\xaa\x1a\x8e\x04\xa4\x01\x1d\xca\x68\x90\xe9\x58\xc1\x6a\xfc\x9a\x06\x8e\x54\xd7\x1f\x30\x96\x25\x7e\x91\x29\xb2\x62\x71\x8f\x60\x1c\x97\x43\x68\x81\x2a\xae\x5a\xeb\x9f\x18\xc3\xe0\xa2\x68\xa6\xe8\x69\x51\x8c\x60\x8f\x49\xa7\x45\xef\x28\x79\x6a\x18\xe3\x24\xc5\x8e\xe4\x31\x11\xb7\xc4\x31\x06\x81\xc3\xe8\x78\x56\x24\x33\xc6\x27\xa6\x1d\xa3\x7c\xd2\x42\x19\xab\x0e\x9a\x18\x42\x47\xba\x8c\x0e\x39\x96\x81\x04\x5d\x1a\xcc\xa8\xfa\x81\x75\x3c\x2b\x9c\x59\xa6\x54\x43\x8d\x79\x31\xd1\x6b\x24\x09\x0d\x26\x0c\xfc\x47\xfb\x11\xaf\x05\xd7\x42\xeb\xbc\xc7\xc8\xb0\xef\xcd\x66\xdd\x71\x80\x7b\xfe\x27\x5e\x9f\x30\x5f\x73\xb9\xf9\xc2\xba\x5c\xce\xb3\x32\x17\x98\x63\xc8\x2d\xde\x9b\x9b\x3d\x70\x25\xff\xc2\x65\x46\x2f\x0e\x37\x8d\x60\x0c\x73\xb4\x6e\x43\x9c\xa3\x10\xf2\x97\x08\x74\x34\xda\xcd\x12\xe6\x1a\xea\x98\xa7\x69\x8d\x75\xc4\xd2\xda\xcd\x8c\xfb\x2c\x8c\x72\x7c\x71\xb4\x63\x29\x87\x73\x26\x6a\x54\xfe\x9d\x83\x1d\x8c\xb9\x2e\xd1\xce\x9b\xe5\xae\x59\xcd\x9c\xe3\x1d\x8b\x94\x58\x37\x5b\xa1\x9f\x17\x4d\xa4\xc8\x15\x6e\xc2\x06\x5b\xc8\x13\x87\x49\xe2\x3f\xf5\xa4\x06\x0e\x72\xf9\x35\x75\xe0\x61\x78\x4b\x1d\x46\xb8\xd1\xd6\x47\xab\x38\xf5\xc6\x5f\xe1\x97\xc6\x02\x77\xd4\xa1\x63\x99\xec\x7e\xe4\xc5\x4b\x6f\xdc\xa5\x97\xc6\x02\x62\x81\x0f\x66\xae\x7c\x4b\x37\xc4\x1f\xff\x7e\xad\xc0\xaa\x6b\x13\x1c\xcd\x76\x3d\x9d\x4c\x94\x1d\x8f\x7b\xf4\x13\x45\x89\xef\x8d\x1f\xa3\x09\x95\xd0\x64\x57\x6f\xfe\x13\xe3\x1f\x83\x58\x5a\x68\x7a\x5a\x04\x24\x24\xd7\x58\xe7\xca\x7b\xc7\x09\xd4\xee\xa5\x73\x92\x68\x37\x02\xb9\xb8\xdb\xae\xa5\x33\x88\x1e\x4a\xc9\xb3\xa2\x20\x21\x4e\xc6\x0a\x33\xae\x29\xe3\xbc\xd2\xc2\x20\xbb\x46\xe2\xb5\x6e\x7c\xac\xcb\x28\x91\xe3\x20\x89\xa4\x8b\x6f\xa4\x53\x55\x05\xed\x79\x5e\xa1\xdb\x86\xac\x56\xe6\xaf\x1a\xf2\x5e\x33\x51\xf8\xfd\x6f\x86\x55\xc0\x01\xb0\x4b\xa3\x70\x9d\xb4\x4f\x7e\x94\x14\xfb\xe6\x6d\xd1\x24\x17\xc0\xe7\x87\x44\x4f\x9a\xb4\xb9\xb0\x61\x4d\xa2\x30\xb1\x8c\xe0\x3c\x33\x63\x99\x5b\x44\xb6\x8b\x15\x36\x82\xc5\xd7\x73\xb4\x12\x60\x8c\x34\xdc\x58\x66\x71\xe9\x9a\x63\xa5\x19\x69\xba\x5d\xa4\xe8\x18\xc6\xf0\x48\xef\x37\xc4\x47\x2a\x2d\x7f\x89\x00\x49\xa7\xde\x22\x6f\xae\x21\x92\x65\xa6\xf6\xe2\x36\x2e\xa8\x76\xfb\x73\xc1\x44\xcc\x62\x7d\x79\x69\x1b\x17\xf0\xe7\x53\x36\xae\x0e\xce\xa1\x12\xca\x64\xa7\xba\x36\xae\x48\x6f\x8c\xcb\x16\xb5\x73\x8e\x96\x6c\x02\x63\x2f\x6a\xe3\x0a\x7b\xd1\x5c\xce\x24\xcf\x8b\x07\xc8\x52\xa9\xc5\x16\x30\x6d\x63\xea\x99\x3d\x35\x60\x92\x46\xb9\x38\x62\x92\x9e\x06\x3a\x87\xd3\x6e\xbe\x85\x2e\x8a\x88\xc3\xcd\xd1\xf2\x68\x83\x1e\x19\x46\x33\x6f\x0b\xd1\xfc\xe2\xd1\x80\x7c\x18\x86\xb3\x98\xef\xcd\xc6\x1b\x8f\x9b\x5a\xb4\xba\x6e\x49\xe3\x59\x22\x27\x95\xae\x11\x4c\xee\xb1\x93\xe3\xf2\x08\xfd\xd0\x05\x19\x69\xff\x13\xa3\x27\x93\x88\xda\xa8\x7a\xe2\xed\x74\x9c\x4d\xc6\xdb\xe9\x78\xaf\x03\x89\x6a\x00\xe5\x28\xdd\x6e\x65\x68\x5c\xf4\x2d\x11\x94\x51\x08\x71\x5a\x9e\x15\x43\xd9\xf9\x25\xb4\xc6\x81\x5f\x5a\x10\x35\xa2\x9f\x06\x8b\xcd\x46\xbb\x8c\x16\x39\x8a\x92\x89\xba\x34\x8c\xd2\xb5\x06\xef\x7a\x66\x89\x1c\x09\x7c\xcb\x7d\x75\xac\xd7\x42\x16\x1a\xbe\x18\xd7\xc2\x00\x81\x78\x3f\x26\x0d\x1d\xe1\xc0\x38\x39\xf6\xdd\xdd\xa6\x57\x4e\x90\xcf\x0f\xa8\x9e\x38\x73\x4b\x29\x5d\xba\xf5\x42\xdb\x18\xee\xb3\x33\x16\xd4\x85\x69\xa8\x5e\x8b\x6d\xb4\x1a\xc6\x41\xc6\xcb\xea\xc6\x66\x72\xf1\xea\x63\x1b\x5b\x9c\xa4\x86\xb9\x98\x23\x2b\x04\xc0\x10\x5a\x69\xe4\xfc\x25\x62\x2b\x84\x7e\x9b\xe8\xb9\x46\x57\xb6\xc9\x8e\x94\xdb\xb1\xa5\xb6\x5b\xa5\x4b\xe6\x62\x11\xf1\xcb\x8b\xee\xb8\xb0\xbf\x01\xda\x1c\x54\xc3\x39\xc4\xc2\x39\xed\x56\x7d\xf7\x66\x59\x6d\xd3\x41\xe7\x28\xcb\x2a\x38\xd6\x4d\x5b\xa8\xef\x45\xd3\x39\x95\x34\xfe\x29\xcf\x90\xaf\x72\x93\x2d\xd0\x0a\xfc\x75\x98\x5a\xfd\x60\xdb\xd5\x0c\xd2\x30\x97\xdf\xcd\x20\x3d\x0e\x2f\x67\xc0\xc9\xb7\x7c\x73\x76\xb5\x4e\xc6\x3f\xa2\xa4\x8c\x07\xae\x67\x30\x8c\x67\xac\xcd\x4b\x57\xbe\xc3\x55\x7b\xca\x78\xf0\x22\x04\xc3\x80\x46\xab\x2e\xbe\xe5\xef\x3c\x22\x72\xb1\x82\x3a\xe2\xd8\x6e\xe5\x07\xab\x4d\x32\x5e\x7f\x58\x91\xa4\x38\xa6\x8a\xf8\xa9\x8d\x36\x01\xf4\x63\x3f\xf1\x9f\x5a\x0d\xaa\x0e\x74\xb1\x08\xaa\x08\x80\x10\x1a\x27\x61\xfe\xac\xe3\x2a\xd8\x04\xe3\x97\x84\x68\x63\x0e\x82\x68\x1e\xd3\xf8\x01\x7c\x32\xf7\x1c\x3e\x81\xac\x8d\x09\x84\xd1\x3c\xa8\xb9\xb6\x65\x31\x5f\xce\xad\x9f\x07\x50\x46\xd5\x05\x12\x19\x75\x4c\x24\x1d\xf9\x7b\x2a\xaa\x4c\x13\x7f\xb9\xcd\x6e\x11\xd9\xf7\xb7\x51\xf7\xe3\x22\xdb\x28\x8f\x78\xb9\x71\x94\x9f\x87\xd6\xd1\x30\x97\x91\x4f\x72\xbb\xcd\x08\x1d\x1b\x58\x4a\xd3\xd8\xf6\x4f\x74\x3f\x63\x6c\x68\x35\x4d\x83\x9b\xcd\xa6\xf2\xf9\x5f\xf7\xd1\x11\x0b\xaa\x8d\x7e\x31\xcc\xb3\x3f\xcf\x7d\x24\xbb\x48\x1d\x53\x69\xb3\x89\xb6\x78\x61\xf8\xd9\xa2\xad\x8c\x78\xb1\x68\x2b\xcf\x03\xd1\x36\xcd\x65\xe4\x4d\xe2\x0b\x16\x58\x1d\x7b\x10\x6d\xe3\xd8\xf6\xb7\x8b\x9f\x31\x36\x10\x6d\xe3\xe0\x23\x6f\x1c\x3f\x65\x74\x5d\x6c\xf5\xd1\x2f\x86\x79\xfe\x5b\xc6\x02\xed\xab\x34\xab\x4e\x79\x74\xbe\x99\x3e\x90\xf8\x2e\xab\xa7\xd9\x31\xcf\x8e\x64\x4a\x65\xec\xd6\xd0\xb5\xcd\x09\xe8\x3b\x54\xb0\x1d\x3e\x06\xc1\x3b\x14\x4c\x74\x8b\x32\xa3\xf1\x29\x15\xb1\x32\x7b\x2c\x8e\x75\x94\x4b\xbd\x69\x56\x12\x3a\x35\x9e\xff\x2a\x0f\xa0\x93\xe1\x01\xbd\x65\xf1\x70\xcb\x06\x47\x9a\xb1\x26\x3a\xd0\xb4\xca\x1e\xc9\x8d\x77\xcb\x62\x86\x2c\x89\xf2\x69\x94\x67\xbb\xe3\x0d\x8d\x15\x08\x23\xf4\x56\x64\xd7\xa8\x4a\xcd\x82\x90\x1c\x98\x5a\x41\x46\xf1\x74\x9c\x08\x2c\xae\xc4\xdf\x5d\xf4\x71\xa5\xe6\x6f\xa4\xc7\xa2\x6d\x4d\x35\x89\xee\xbd\x35\x9b\xf4\x5b\xb3\xb7\x7a\xfe\xc4\x79\x91\xdc\xdd\xee\x09\xfb\x32\x36\x25\x2b\xc9\x49\x54\xde\xc4\x45\xbd\xbf\xbd\xcf\xaa\x2c\xce\xf2\xac\x3e\xdf\xec\xb3\x34\x25\x47\x88\xb1\xb7\x37\x90\x6b\x6c\xca\x37\xbe\xc4\xab\x1b\x9f\x4e\x21\x6a\xea\xa2\x67\xd3\xd0\x22\xff\x8a\x8b\x32\x25\xe5\xb4\x8c\xd2\xac\xa9\x28\x25\x1d\x23\x1c\xa7\xff\x1e\x14\xdb\x3e\xa3\xd9\xff\xed\xc8\xb8\x21\x73\x0f\x92\x18\xc2\x88\x5d\x3b\x59\x39\xcd\x8c\x0c\x99\xd3\x57\xed\x0c\x79\xe2\x94\x1b\x5b\x98\x49\xf5\x3a\x06\xd4\xc5\x89\xb7\x74\x9c\x98\x05\xeb\x70\xe5\x2f\x82\x4d\x49\x0e\x1d\x0c\x5d\x9f\xba\x38\x18\xc1\x50\x4a\xf2\x48\x25\x84\x8d\x54\xb2\x75\x77\x18\xca\x08\xc7\xc7\xea\x84\xf9\xbf\x5f\x9f\x3b\x4a\x9e\xa4\xcd\xd4\x5a\x35\x87\x23\xa6\xd0\x6d\x0f\xda\x8a\x72\xa0\xd7\x0f\x59\xcf\xb6\x79\x11\xb5\x8b\xff\x90\xa5\xf5\xfe\xc6\xf7\xbc\xbf\xf7\xa2\x7e\x8b\xa9\xb0\x09\x33\x14\xad\x6b\x1c\x70\xdf\x80\x4f\x22\x8e\x42\x1f\xa2\xaa\x82\x7b\xe4\xf8\x03\xd9\x31\x73\x87\xae\x28\xe3\x73\x77\xf0\x3a\x3b\x9e\x2d\x4a\x84\x48\xe2\x44\xfa\xd1\x19\x4e\x23\xfb\x06\x7d\x30\x50\xb0\xcb\x76\x74\x87\x1d\x32\x38\xa3\x0f\x40\x76\x8f\x02\x2b\xdc\x1e\x87\x07\xcc\x1e\x05\x96\x78\x3d\x0a\x0d\x59\x0d\xac\x44\x6b\x9d\x84\x01\x18\xec\x53\x67\xa0\x27\xde\xc4\xc8\x7d\xce\x79\xb6\xdb\x44\x54\x57\x4b\x45\x07\x0e\xd1\xcb\xe9\x20\xfc\x20\xad\xf5\x9f\x07\x92\x66\xd1\xa4\x38\xe6\xe7\x49\x95\xb0\x6f\x91\x4f\xa2\x63\x3a\x79\x67\x78\x60\xb5\x5c\x9d\x5e\x5e\xbd\x92\xb1\x8b\x2e\xbe\x87\x40\x83\xea\x93\x03\xf0\x93\xda\x1e\x6e\xc6\xe4\x2e\x4e\xeb\xae\xcc\x52\x14\x25\x80\x33\xd3\x47\x11\x77\xf4\xad\x29\x7d\x2a\xd5\x9b\x8d\x6f\xa2\x7a\x15\xcc\x4f\x2f\x25\xb2\xe5\x41\x65\xba\x15\x82\x8c\x84\xd3\xd5\x4d\xde\xe1\xa8\x27\xff\x9c\x04\xe4\x70\x75\xd9\x2c\x36\x9b\x00\x99\x85\xef\x6f\x36\xa6\x69\x6c\xe6\xff\xb6\x69\x70\xd4\x4f\x9a\x86\x1f\x78\x9e\x89\x60\xdf\x0f\x56\xff\x2e\x8a\x05\x6e\x84\x64\xf6\x18\xf3\x82\xc1\x63\xdc\x23\xdc\x46\x87\x2c\x3f\xdf\x7c\x19\xd5\xc5\xf5\xdb\x9f\x91\xfc\x9e\x30\x05\x9d\x7c\x4d\x1a\xf2\xf6\xf5\xfb\x65\x16\xe5\xd7\x7d\xeb\x75\x45\xdd\x92\x69\x45\xca\x6c\x0b\x14\x69\xc5\x66\x0a\x88\xe7\x5b\x64\xeb\xd3\xf9\xb3\x10\x38\x9e\xfe\x8c\xaa\x28\x57\xd4\x4e\x4d\xb7\x79\x83\xcc\x84\xa9\x26\xeb\xfe\x57\x42\x2d\x42\xf5\x8f\xff\x78\x8b\xf1\x68\xc2\x7d\x55\x92\xbe\xf5\x3b\x80\xe7\x7e\xbd\x70\x62\x19\x8c\xf4\x50\x42\xb7\x64\x52\x8e\x3d\x26\xa0\xa4\x07\x39\xdb\xc7\x9e\xe3\x40\x7c\x0e\x2f\x9a\xaa\xce\xb6\x19\x49\x71\x40\xd1\x7d\xee\xb7\xfd\xfd\xf9\xb4\x27\xcc\x2b\x16\x7e\x69\xf1\xa8\xb6\x54\x72\x03\xfc\xc1\xc7\x4b\xb3\xfb\x8c\xda\xc2\xd6\x44\xde\xf8\x7c\xc3\x91\xb9\x3e\xb8\xd4\x9c\xf9\x0f\xe2\x17\x5d\x28\x11\x08\x71\xf7\x72\x4b\xbd\x91\x9b\xe6\x74\x22\x65\x42\xdd\xff\xdb\x9c\xd4\x94\x0f\x53\xea\x75\x26\xd9\x71\x77\x33\xf3\x68\x00\x80\x9c\xbd\xae\xc3\xab\x7e\x26\x4d\xc5\x1e\x20\x39\x75\x48\x84\x57\xc1\x67\x83\xb4\x56\x7a\xa3\x0e\xd5\x22\xad\xa3\xd3\x74\x4f\xc9\xcd\xb9\xcf\xa7\x9f\xe9\x01\x69\xea\x84\xa8\x65\x88\xf0\xac\xbb\x1d\xa6\x75\xb4\x87\x10\xeb\x0a\x78\x9e\x37\xcc\xc9\xae\x8a\x3c\x4b\x11\x87\x5a\x76\x3e\x55\x50\xe9\xe4\xd0\xbf\xea\xd5\xf1\x3d\xb8\x34\x08\x91\x03\x21\x3d\x54\xb7\x33\xd5\x51\x9c\x53\x97\x6c\x9f\xd5\x84\xf3\x9f\xe5\x3d\x1e\xca\xe8\xd4\xad\x22\xd8\x5d\x6e\xde\x7e\xfb\x96\xe5\x25\xa8\x2b\xf7\xd0\x06\x46\xca\xca\xa3\xa2\x8d\x8c\x2e\xa2\xb2\x6b\x43\x67\x4c\xa8\x78\x90\x3e\x66\xa3\xa3\x4a\xc4\x4e\x13\x92\xe7\xb7\x22\xf5\xc4\xc2\x4b\x92\xf3\x40\xfd\x96\xb1\x36\xa4\x3e\xa5\x50\x63\xf6\x17\x08\xce\x4b\x72\x22\xdc\xff\x6c\xff\xd2\xd3\x3d\x4d\x99\xbf\x93\x46\x75\x74\xc3\x7f\xbe\x7b\x3a\xee\x6e\x59\x68\xba\x5c\x5c\x67\x3f\x7d\xf0\xcd\x77\x0f\xde\xff\xfe\x74\x57\xbc\x4f\xff\xdf\xd7\xdf\xff\xb8\xff\xf8\xc7\xdd\xfb\xef\x7f\x10\xb1\x9f\xef\x7f\xf8\xe1\xfb\xbf\xb2\xff\x34\x3f\x7c\xd6\xfc\x6f\xd6\xf0\xe9\x2f\xdf\x7d\xf2\xf3\x67\xdf\xfd\x10\x07\xbf\x79\x69\xf0\xc9\xf9\xb7\x6f\x3f\xf8\xe0\xb7\x4f\x37\xd9\x6f\xdf\x7f\xf0\x45\xfc\xf3\x27\xc7\xdf\x7e\xfa\x22\xff\xf5\xe7\xef\xc2\x24\xc9\xf3\xff\x62\x0f\x9c\x3f\x39\xfd\xf4\xc9\xde\xfb\xf9\x63\xff\xab\x6f\x0e\x5f\xdf\xc7\xdf\x87\x7b\x01\x1f\x2e\xe2\x5f\xde\x17\xff\xef\xa3\x87\x77\xc9\x67\x1f\xec\x7f\x0d\xea\x3c\xfd\xf0\x83\xec\xb7\x9f\xd3\x53\xfc\xc2\xcb\x56\xab\xe6\xdd\xcf\xb3\x0f\x4e\xbf\x7d\xe4\x65\x3f\x3d\xfe\xf4\xf5\x57\x1f\xfb\x0f\xdf\x06\x3f\x15\xd1\x8f\xfb\x65\x72\xf8\xe9\x07\x72\x17\xfe\xf8\xeb\xfc\x54\xfe\xfa\x98\xdf\x7d\xfe\x62\xfd\xcf\xcf\x3f\x7a\xb9\xf8\xe6\xb8\xaf\x93\x4f\xfd\x3c\xfd\xf4\xe3\x1d\xf9\xd4\xaf\xe2\xe3\x57\x4b\x42\x9f\xa7\x34\xdd\xff\x7a\xf8\x71\xc9\x7e\xc7\x3f\xff\xe4\xfd\xfa\xfd\x3a\xfb\xfc\xb3\xdd\x92\xc2\x3c\xa4\x9f\x56\x9b\xcf\xef\x3e\xb9\x8b\x83\x2f\xf2\xcf\x3f\xd9\x7f\xfd\xe3\x87\x1f\x7c\x14\xcf\xe9\xdf\x1f\xfd\xd8\x7c\xfd\xbd\xff\xe2\xab\x8f\x3e\xf6\x3e\xff\x28\x09\xbf\x7c\x41\x27\xf1\xc3\xb7\x8b\xaf\xbe\x7f\xd8\x7d\xf5\xe2\xfd\x97\x5f\x9d\xd7\x0f\xf4\x7f\xf4\xbf\xde\xcb\xaf\x5e\x14\x0f\xdf\xfc\x50\xbc\xfc\xfa\xfb\xf7\x77\x9f\x7f\xd8\xfe\xef\xc5\x62\xf7\x5f\x9f\x7d\x71\xf7\xdb\x8b\xd3\xf7\xdf\x7d\xfc\x6b\x4f\x4f\x72\xf8\xee\xf0\x5f\xdf\x7f\x51\xa4\x9f\x7d\xf7\xf0\x4d\xb6\xbe\x4f\xe7\xe9\xfc\xcb\x63\xf2\xf8\xe5\x61\x73\xfe\x8d\xe2\xfb\xe6\x87\xbb\xf0\xcb\xc7\xf7\xcf\x5f\x3e\x7e\x7e\xfe\xf2\x17\xfa\x7c\xe6\x3f\x92\x9f\x43\xef\xd7\x5f\x76\x35\x7d\xfe\x05\xc0\xfb\xf1\x6f\xbf\x7c\xfd\x22\x39\xe4\x74\x0e\xf9\x7d\x9c\x7d\x70\xfe\xed\xd3\x5f\x97\xbf\xfe\xfc\xc5\x7d\xfa\xcb\xb7\x9b\xcf\xb3\xcf\x07\x1e\xd0\x79\xc2\x31\x69\x5b\xd3\xf2\xa4\xf9\x35\xd8\xd4\x5f\xce\xf7\xfb\xe4\xc3\xf5\xcb\x2f\x5f\xbc\x7f\x4f\x79\xbe\x88\x7f\x7e\xd9\x24\x8f\x27\xba\x46\x1f\x7c\xfd\xc3\x0f\x5e\x16\x7d\xf6\x9d\x97\x7c\x54\xdc\x7f\x19\x84\x94\x4e\xc1\xab\x2f\xf9\x7a\x6e\x16\xbf\xfe\xf2\xfe\xfd\x57\xdf\x2f\x1e\xbe\x0c\xfc\xfa\xcb\xf3\x30\x66\x32\xff\xee\xfb\xdf\x7e\xfe\x75\xf3\xf9\x61\xef\xa5\x9f\xbd\xbf\xfc\xf2\xbc\x69\x92\x73\xbf\xfe\x2f\xe2\xc0\xbb\x27\x9f\x7e\xf2\xf0\xe5\xe3\xc7\xcd\x57\x1f\x6e\x1e\x7f\xfa\x2c\x7f\xf8\xed\xfb\xcd\xf7\x74\x4e\x94\xfe\x2f\x5e\x30\x59\xfa\x2d\xfb\x8a\xae\x13\x5d\xd3\x8f\x4e\x1f\xd1\x35\xdf\xa7\x9f\x6e\xce\x3f\x7d\xba\xb9\x8f\xe9\x9a\x7e\x2b\xe8\xdf\xfd\xf8\xe9\xfe\x9e\xb6\x3f\x46\x9f\x6e\x1e\x3e\xff\xf8\xeb\x8f\x3e\xff\x70\xff\x4b\xf4\x73\x78\x17\xcf\xd3\xc7\xff\xfd\x3d\xa7\xe7\xe1\x87\x1f\xbd\xe5\xf7\x3f\x87\x8f\xe9\xa7\x9f\xd0\xf9\xfe\xf4\xc5\x77\xf4\x79\xd6\xfe\xe5\x21\xa7\xf2\x55\xf8\xdf\xfc\xb0\xff\xe0\xbb\x8f\x7e\x5d\x7c\xf3\xe3\xd7\x1f\x7d\xf5\xc3\xaf\x2f\xbf\xfa\xf1\x47\xef\x9b\x1f\x3f\x9e\x7f\xfd\xe3\x4f\x9f\x7e\xf3\xf1\x17\x1f\x7d\xf5\x48\xff\xbd\xf8\x38\xf8\xfa\x3c\xe0\xfb\xee\xd3\xcd\x8b\xf4\x67\x3f\x8f\x8f\xdf\x01\x7c\xdf\x49\xf8\xbe\x1d\xc7\xc7\xe5\x56\xf0\x99\xad\xe7\x17\xa7\xf4\xf0\xd3\xdd\x77\xc7\x2f\x28\x6f\x3f\x78\x4c\x3f\xa1\x3c\x78\x71\x3a\xc5\xc7\xaf\xbd\x5f\x7f\x0e\x5f\xfc\xf6\x63\xfe\x31\x5d\x47\xa6\x3b\x4d\xf4\x73\x7e\xf7\xcd\x8b\x1f\xc3\x6f\x3e\xfe\xe4\xe3\xaf\x5f\xec\xe6\xdf\x7a\x5f\xbd\xfc\xfa\xc5\xc7\x2f\xbf\xfb\xe1\xdb\xf0\xdb\x1f\x12\xff\xbb\x1f\xe9\xf8\x77\x7c\xa4\x33\xa5\x61\x4e\xd7\xb5\xc3\x47\xd7\xef\x6b\x9f\xea\x41\x93\x7e\x3c\xe0\xfb\xed\x53\x09\xdf\x62\x1c\x1f\xd3\xb9\x87\x7b\x26\xcf\xdf\xdc\x7d\x97\x27\x74\x36\xd1\x2f\x1f\x78\xd1\xcf\x9b\xe6\xbf\xb2\xf7\xd7\x5f\xce\x7b\xd9\xe7\x70\xe4\x23\x2e\x4f\xf5\x6f\xbf\x7c\xb7\x67\xfd\xff\x35\xdf\x3f\xfc\xfa\xf3\xd7\xe5\x6f\xbf\x7c\xbb\xfb\x8d\xae\x17\xa5\xe3\xcc\xf4\xf8\xa7\x1f\x43\x7f\xbe\x63\x76\x81\xae\xd3\xc7\x9f\xfc\x48\xbe\x2e\x2b\xef\xa3\x8f\xbf\x7e\xff\xc3\xf7\xbf\xfd\xe0\xa3\x0f\x3e\xff\xf9\xcb\x4f\x3f\xf8\xe2\xdb\xf8\xfc\xee\xe1\xc7\xe4\x8b\x63\x58\x7d\xf1\xcb\xb7\x87\x6f\xbe\xfd\x4a\xd8\x92\x2f\xfe\xa8\xff\x19\x9c\x4a\xf1\xe3\xc3\x5d\xf0\x32\xdd\xbd\xff\xf5\xdd\xf2\x83\x8f\x7f\x6a\xbe\xd8\x9d\x05\xd0\xc7\xf9\x27\x3f\xdc\x7d\xdf\x7c\x7b\xf8\xf0\xc3\x2b\x93\x15\x6f\x0d\x35\x30\xa5\x83\x55\xe6\x6e\x0c\x0d\x37\x26\xd4\x2c\x4f\x42\xe1\x52\x19\x77\x02\x14\x05\xf7\xbb\x54\x0c\x7d\x0c\xd7\xed\x63\x3d\x78\x14\xd3\x8d\xb2\xa9\xc9\xed\xe3\x34\x3b\xa6\xe4\xe5\x4d\xd0\xef\x08\xdc\xcb\x0d\x61\xba\xe1\x14\xa5\x29\xf3\x34\xbc\x5b\x10\x43\xb5\xdb\x18\x7f\x02\x6c\x6b\x9e\xbe\xad\x0d\x0e\x43\xef\xcc\xf0\xbf\xe8\x4e\x44\x7e\x79\x67\x4a\x31\x5c\x71\xcf\xc3\xd2\x6d\xee\x42\xe7\x09\x76\x4c\xad\xab\x5d\x06\x9d\x13\xfd\xbc\xc1\x56\xda\x71\x67\x7e\x0b\x93\x72\x2e\x2e\x49\x1b\x41\x5a\x3d\x92\x96\x9d\x5e\xc7\x4b\x11\x16\x50\x8f\x7a\x32\x9d\x30\x6f\xc4\x30\xb9\x76\x06\x6c\xbd\xa6\x9d\xff\x6d\x60\x01\x07\x6a\xd3\xa6\x22\x3c\xbf\x2c\x7a\x66\xee\xd2\x64\x56\xd5\x54\xe0\x98\x33\x31\x2b\x8b\x87\x09\x36\x9a\x38\xb4\xed\xc1\xc4\x63\x98\x00\xfe\x39\x8e\xd4\xe0\xef\x50\x9a\x28\x01\x5c\xb6\xbd\xdb\x36\x81\xaa\x8b\x63\xef\xfc\x2a\x4d\xf2\xcf\xd7\x97\x70\x04\x88\xa0\xf3\x23\x62\x61\x5d\x79\x09\x46\x70\x81\x6e\xa5\x46\x4e\x22\x0f\x39\x66\x49\x6c\x79\xcb\xbf\xd5\xa3\xbc\x8c\x97\x17\x32\xe6\x62\x4b\xfb\x84\x45\x75\x5e\x20\x37\x6b\x0d\xa3\xa3\xf7\x66\x19\xe5\xfd\xab\xde\xfc\xca\x21\x4a\xa7\x21\xf4\x69\xf5\x70\xe8\x40\x95\x23\x17\x62\x2a\xf4\xa4\x57\xbb\x76\x75\xb5\x18\x4d\x49\x56\xc8\x4f\xc1\xb8\x43\xee\x68\x19\xdc\x89\x45\xaf\x1c\x6d\x7f\x7f\x66\xa2\xc6\x2c\x7d\x09\x1c\x34\x1b\x3d\xdb\xd4\xde\x57\xc3\xa9\xa0\x19\xbb\xda\x08\x88\xd6\xba\x3a\xb9\x18\x8e\x35\x40\xd4\x2c\x59\x71\xa9\x94\xbf\xd7\x94\x0b\xc0\xdb\xe3\x10\xf0\x80\x6c\xfb\xb1\x67\x4a\x10\x47\x8f\x3c\x22\x32\x32\x59\x0d\xb9\x25\x1d\x84\xf1\xf3\x39\xba\x67\x0f\xbc\xec\x0f\xec\xba\xe2\x1b\x26\x88\xca\xc3\x3c\xe0\x0e\x98\x90\xc9\x49\x5d\xd6\xf4\xef\xd9\x38\xfe\xaa\x66\xf2\x7f\x02\xde\xff\x09\x78\xff\x27\xe0\xfd\x9f\x80\xf7\x7f\x02\x5e\x87\x80\xf7\x35\x3b\x1d\x88\x76\x6d\xbd\x04\xf5\x5d\xae\x5e\x29\xc7\xf0\xe2\x44\xaf\x3d\x32\x58\x9e\x5e\xf6\x4e\x0c\x0d\x90\x64\x67\x9e\x35\x8c\xd7\xbc\xb4\x25\x2f\xc2\xf3\x4f\x49\x52\x94\x11\xf7\xab\xb2\xe3\x9e\x94\x59\x7d\x5b\x51\x1f\xf3\x4e\xb8\xb1\xc2\x7b\x3a\x14\x74\xe7\x63\x31\x2c\x3b\xaa\xa5\x68\x29\xca\x74\x38\xfb\xa7\xc6\x7e\x4b\x63\x90\xa9\x56\xca\x72\x6b\xee\xd2\x27\xad\xba\x45\xd2\xdc\x81\x37\x0d\xde\x1a\x64\xbb\x4a\xbd\x27\x07\x52\xbd\x9b\x92\x6d\xd4\xe4\xf5\xbb\x51\x55\x91\xba\x7a\x97\x6f\x33\xd5\xbb\x6c\x88\x6a\x46\x77\x9b\xab\xc9\x90\x8d\xc5\xf9\xd8\x12\x34\x8b\x3a\x47\xe7\xba\x6b\x38\xa6\x45\x59\x46\x36\xb7\x98\x9d\x82\x77\xd0\x44\x79\xbc\xd1\x5b\x8e\x19\x73\x3c\xa2\x32\x8a\x67\xe4\x90\x51\xde\x93\xca\x8e\x7d\x1a\x2c\x01\x81\x5b\x95\xc0\xed\x6e\x1f\x1d\x33\xba\x3d\x1f\x47\xd0\x84\x01\x40\xb3\xd3\xe6\x59\x67\xbb\x66\x64\x9e\xd3\xd5\x1a\xa0\xc8\x34\x14\xbb\x26\xcb\xf3\x31\x1c\xbe\xb7\x00\x48\x72\x15\x49\x1e\xd3\xd9\x8c\xe2\x98\x7b\x00\xc7\x41\xc5\x51\x1e\x88\x03\x8e\x10\xb2\xf5\xa8\xe0\x38\x12\x2a\x5a\x65\x4e\x97\xbf\xe2\xbc\xc9\xf3\xd1\x65\xf2\xd7\x90\xc1\xc7\x5d\xd1\xb3\xa2\x27\xac\x18\x5b\x69\x0f\x32\xb8\xd4\xe6\xb5\xa3\x5a\x90\x1d\xc7\x66\x16\xcc\x21\x87\x0f\x54\xa9\x93\xe8\x38\xab\xa2\x43\xa1\x11\x34\x2e\x7a\x90\xd1\xb5\xfa\x78\x53\xd5\xe5\x28\xa3\x83\x35\x64\x74\x83\xe1\x60\x46\x65\x04\xcb\xdc\x87\xdc\x2d\x9b\x58\x9b\xcb\xc3\x18\x86\x39\x64\x2e\x5b\xda\x59\x56\xf1\x15\x56\x31\xbd\x1c\xc3\xb4\x84\x0c\x7e\x54\x1f\x7f\x24\x65\x1c\x65\x2f\x46\x15\x72\xbe\x01\xcc\xd5\xe6\x13\x17\xd5\xb8\x10\x2f\xfc\x25\x44\x41\xc7\x4d\x0b\x75\x3a\x71\x3c\x86\x64\x11\x40\x24\xc7\x5d\x1e\xa5\xa4\xda\xab\x68\xd2\x31\x34\x4b\xc0\xdf\x58\xb5\x7b\x31\xc9\x77\x59\x73\x18\xc3\xb1\x01\x9c\x8d\x55\x5b\x17\x37\xe5\x1d\x15\xff\xd9\x36\xaa\xc6\x34\x29\x0c\x20\x6f\x55\x6b\x17\x37\xf9\x2e\x1a\x97\xdc\x70\x21\x71\x77\x5f\x46\x99\x6a\x27\xe2\xfd\x18\x8e\x15\x64\xae\x6a\x33\xe9\x8c\xe8\x03\xd9\x18\x8e\x8d\xc4\xd9\xa3\x4e\xc5\x8b\x11\x0c\xcb\x00\xf2\x95\x94\x87\x26\xd5\xe4\x6d\x6c\x6d\x96\x21\x64\xa9\x46\x02\x9d\x08\x19\x9b\xc8\x72\x05\x19\x5a\x68\x12\x9f\xd3\x40\x72\x74\x0f\xf2\x20\x43\x55\x1b\x19\x97\xd1\x63\x96\x8f\xa1\x08\xd6\xd2\xba\x46\x87\x48\x53\x9a\x31\xcb\xb8\x0a\x21\x47\xf7\x4d\xad\x6d\x21\x71\x3d\xba\x9b\x42\x86\x16\xcd\x3d\xa9\x5b\x8b\xa4\x62\xba\x1f\xc1\xb4\xf6\x24\xbe\xd6\xd5\x43\x74\xd4\xd6\x77\xcc\x3e\xae\xe7\x90\xb1\x24\xa7\x46\x56\xe3\xca\x79\x0c\x47\x28\x49\x6a\xce\x12\x6f\x0a\x8a\xc7\x31\x14\x6b\xc0\xd8\x44\x9d\x05\xdd\xc9\xa2\x74\x4c\x44\x36\x3e\x60\x6c\x92\xa8\x28\x8a\xa4\xa8\x14\xd3\x6f\xc4\xb4\x04\x3c\x49\xd4\x75\xa1\x7e\xe9\x6e\xcc\x10\x6d\xd6\x80\x23\x2c\xc3\x5e\xb2\xcb\x96\xb7\x62\x4f\xa6\x3e\x69\x13\xe7\x99\x46\xe1\x76\xd4\x87\xf2\x21\x93\x54\xf3\xc6\xe9\xe2\xaa\xf0\x18\xdd\x33\xd7\x65\xdc\x25\x83\x0c\x53\x2d\x7f\xf5\x90\xd5\x8f\xc2\x19\x1a\x45\xb4\x04\x82\x98\xa8\xd6\x2e\x29\x6a\xc2\x92\x45\x45\x56\x8e\x93\xb4\x81\x9c\xbf\xd3\x30\x15\x77\x8e\x4b\xe8\xfb\x3e\x5c\x81\x7d\x96\xab\x22\x99\x8c\xd9\x0b\xdf\x5f\x48\x32\x49\x5d\xaa\xa2\x50\xd5\x3d\x19\xb3\x9f\xbe\xbf\x92\xb8\x9c\x69\x2a\x9a\x8c\x79\x0c\xbe\xbf\x81\xfc\x55\x0d\x28\x4b\x7f\x1e\xe2\x71\xcf\x37\x08\x20\x6f\x0b\x1a\x3b\xcc\x98\x3c\xaa\xd8\xac\x87\x01\x1c\xcf\x02\x72\x56\x35\x16\x15\x75\x83\x1c\x68\x59\x41\xd6\xaa\xde\x61\x32\xf8\x79\x96\x58\x00\xb2\x35\x3a\x11\x96\x98\x4c\xb5\x45\x1e\xb3\xa1\xfe\x1c\xc6\x59\xc9\xbe\xa4\x31\x15\xdd\x17\x70\x8b\x9c\x8c\xb9\x88\xfe\x1c\x86\x5b\xc9\x59\x7d\xfe\x7c\x1a\xac\xab\x19\x07\x8c\xb7\x12\xd5\xcf\x4c\x1e\x49\xb2\x57\x4d\x88\x11\xd7\x02\x86\x5d\x1a\x77\x76\xd4\x25\x88\x8e\x63\xd6\xdd\x5f\xc0\xb8\x2b\x7d\xa1\x20\x49\x5f\x64\x74\x17\xab\xc7\x9c\x00\x7f\x01\x23\xaf\x94\x1c\x0f\x51\xa9\xea\x77\x7a\x37\x8a\x04\x46\x5b\xa9\x1a\x02\xa6\x05\xab\xe5\x4e\xc6\x63\x40\x18\x70\xa5\xaa\x3e\x75\x58\x34\x43\x6d\xc6\x27\x85\x5e\x39\x65\x6b\xa6\xaa\x55\x3a\xb6\x01\xd2\xc0\x14\x70\x99\xa8\x9b\x03\x49\x1a\xea\xe4\x8f\xea\x66\x08\xa3\x2e\xa2\xae\x37\xa9\xea\xc2\x21\x44\x5e\xc2\xa0\x8b\xa8\xdb\x0c\xd9\x9d\x4f\x63\x3e\x8e\xbf\x84\x51\x17\x51\xb7\x96\x07\x4a\x08\x29\x59\x70\xba\x8f\xc6\xb2\x2c\x14\x17\x8c\xbb\x88\xea\xfa\xb1\xe4\x55\x49\x46\x91\xac\x60\xc8\x44\x34\xa3\x75\x1a\x7c\x7c\x33\x0a\x18\x30\x11\x35\x2a\x26\xf5\x3e\x2b\x4e\xe3\xcc\x5d\xc1\x78\x89\xa8\x96\x8f\x34\x65\x71\x22\x54\xf4\x9a\x63\x56\x8c\x53\x04\xe3\xa6\xad\xba\xef\x6e\xb3\xa3\xcb\xe6\xbd\x86\xe1\xce\x36\x7b\xa1\xa1\x19\x8b\x32\xfc\x35\x0c\x76\xb6\x51\x7e\x67\x89\xb2\xb7\xa3\x2a\xbe\x86\x61\xcf\x56\x55\xf1\x43\x96\x94\xc5\x91\x54\xe3\x8c\xde\xc0\xe0\x67\x1b\x95\x05\x31\x91\x34\xe6\xcc\xf9\x1b\x18\x03\x6d\x55\x09\xdc\x96\xd1\x31\x19\xf5\x6c\x36\x30\x08\xda\xa9\xe6\x61\x17\xc5\xf6\xe5\x9e\xce\xe9\xe3\x43\xca\x71\x17\x2b\x08\xda\x04\x23\x0d\x94\x77\xd4\x7e\x8d\x63\x92\xd2\x8b\x3b\x75\xa3\xdb\x95\x64\xcc\xe1\x6e\xd1\xc0\xfd\x6e\xa7\xef\x2f\x45\xb9\xb3\xaf\x54\x8b\x06\x6e\x79\x5b\x3a\x38\xdd\xe2\x76\x4d\xa6\x87\x33\x3b\xab\x8f\xdc\x22\x93\x72\x8d\x3b\xd5\xf8\xb0\xc4\xa9\x0b\x49\x52\xb6\x71\xa7\x6a\xc5\x2e\xa3\x8e\x76\x5e\x47\x56\x8b\xdc\x61\x82\x3b\xdf\x4e\xcd\x7d\xee\xd8\xb9\xf0\x98\xa2\x76\x98\xe0\xf6\xb7\x8b\x80\xd7\xd7\x63\x73\x5a\x7b\xb8\xff\xed\x54\x97\x96\x32\xfe\x68\x37\xa8\x1d\x1a\xb8\xed\xed\x4e\x1a\x9a\x28\x25\x79\xd1\x9c\xac\xaa\xd1\x4b\x23\xdc\xfc\xfe\x68\xa2\xba\x60\x6f\x67\xc8\xb4\xf4\x98\xff\x70\xc1\x08\x77\xc2\x9d\xaa\xb3\x8c\xe9\x76\x9d\x6d\xd1\x48\x09\xc8\x9d\xb6\x6f\xd0\x65\x7b\xc8\xa8\xb0\x3a\x04\x25\x1d\x42\xb8\x33\xee\xd4\x5d\x84\x32\xad\x26\x87\xc8\x9e\x4e\xef\x30\xc1\x7d\x71\xa7\xee\x24\x14\x93\x8b\x28\x48\xd9\x48\xc1\xed\x69\x9c\x55\x95\x96\xb1\xdd\x59\x13\x09\x2d\x36\x29\x31\xb9\x6b\xce\x88\x02\x5b\xbd\xcd\x0e\x0d\xdc\x69\xf7\xaa\x97\xb8\xa7\x71\xee\xec\x8e\xfe\x1f\x17\x4c\x70\xb7\xdd\x93\xa8\x4c\x71\xcf\x7e\xef\xc2\x2b\x29\x4d\xb9\x57\xd5\x86\x92\x95\x36\xa5\x3d\xb7\xde\x1b\x4d\x18\xbb\x94\x45\x54\x6b\x7a\xbc\x77\x31\x2c\x52\xa6\x72\x1f\x65\xb5\x6a\xa5\xf6\x56\x47\xad\xc3\x02\xb7\xef\xbd\xba\xee\xfb\xe6\xb8\x8b\x4a\x97\x55\x93\xf2\x95\x99\xca\xe1\xec\x98\x8e\xef\xdb\x2d\x26\x29\x6f\x99\xa9\xbb\x4a\xc6\xea\xe7\x9c\xcc\xa5\x94\xbb\xcc\x54\xc3\x9b\x55\x65\x44\xac\x49\x80\x0e\x0d\xdc\xba\xb5\x2c\x2c\x9d\x98\xdb\x16\x07\x33\x98\xfc\xa1\xe3\xac\x48\x98\xaf\x47\x7d\x61\xea\xc4\x16\xa5\x1a\x2e\x66\x56\xc7\xa4\x43\x0b\xb3\x9a\xd9\x1f\x1a\xaf\x22\x17\x63\x29\xa5\x35\x33\xd5\x58\x52\x24\x0e\xbe\x89\x9c\xd8\xcc\x12\x82\xa8\x59\xe6\xa2\x1d\x52\x5a\x33\x53\x2d\x64\x56\x47\xb9\x8b\x34\x4a\x79\xcd\x17\xd1\x21\xd2\x53\x1d\x2f\x5c\x94\x5e\xca\x6d\xbe\x50\x63\xc5\x17\x45\x99\x3a\x31\x47\xca\x6f\xbe\x88\x4e\x5a\xde\xf8\xc5\xc9\x01\x8b\x94\xe2\xbc\x53\x15\xe3\x8e\x1c\xcf\x2e\x92\xb8\x99\x03\x06\xdf\xa9\xf1\xdd\xdd\xb9\xdc\x9d\x1f\xc7\x4e\x96\x3b\x54\x52\xa6\x94\x3a\x24\x45\xaa\x99\xb2\x3b\xeb\x61\x49\x87\x08\x26\x4c\xef\x54\x3b\x76\x97\x95\x59\x1c\xd9\x73\x0c\xbd\xf3\x27\x25\x49\x8b\x43\x51\x6a\x67\x63\x77\x2e\x0b\x2f\xa7\x47\xef\xd4\xf5\xaa\x68\xc4\x58\x53\xc2\xea\x9a\x1d\x15\xa7\xb3\x23\xb9\x77\x92\x6e\x39\x59\x7a\xa7\x7a\x4d\xc7\xa2\xac\xf7\x74\x77\x1b\x09\x69\x7b\x64\x30\x5f\x7a\xa7\x2a\x6e\x55\x34\x97\x20\x93\x52\xa6\x77\xcd\x43\xa4\x29\xdf\x9d\x8b\x13\xa0\xe6\x4d\xcf\x07\x6a\xe3\xf0\xd0\xeb\xce\x45\x93\xe5\x0c\xea\x5d\xf4\x18\xdd\xed\x2b\xfd\xe0\xe5\xce\x9a\x61\xe9\x71\xc1\x54\xaa\x76\x54\x9f\x47\x85\xd3\x1a\x4a\xa9\xd4\x5c\x8d\xc5\x72\x12\x47\x47\x97\x70\x4e\xc9\xa5\xe6\x6a\xd2\x47\xc8\x58\xde\x24\x4e\x1b\x8c\x9c\x54\xcd\x55\x1d\xca\x33\x92\xec\x6b\x72\xac\x6a\x62\xcf\x75\x0c\xf1\x0f\x60\x7b\xae\x7a\x61\x55\x99\x51\x76\x1d\xef\xdc\x42\x29\x18\x6d\xe6\x59\x8c\x24\xc8\x72\xa7\x48\x4a\xca\xaf\xe6\xa4\x2a\xea\xbd\x6a\x92\x73\xa7\x15\x94\x92\xac\x79\x56\xef\x1b\x50\x80\xd2\xa3\x72\x71\x9f\xe4\x1c\x6b\xae\xfa\x4f\x79\xf3\x92\x50\xb3\xd8\x94\x2e\xee\xaa\x9c\x6a\xcd\xa3\xfa\x5e\xa7\xc9\x9a\xd1\xee\xf1\x84\x32\xc3\xcf\x1a\x1a\x27\xcd\x93\xd2\xad\x07\x15\x07\x33\xad\x49\xe2\xe2\xa4\xc8\x19\xd7\x83\x2a\xe7\x87\xe2\x18\x39\xe2\x81\x21\xe7\x41\x75\x2f\x0e\x45\x9e\x16\xf7\x4e\x12\x29\x65\x5b\x0f\xea\x4e\x7a\xe0\xa5\x67\x84\x3e\xec\x84\x0b\x86\x9a\x87\x28\x8d\x76\x51\x95\x68\x75\x3c\x07\x27\x01\x58\xfa\x73\x88\xab\xac\xf6\xec\xbe\x11\xdc\x7a\x1e\x5c\x36\x56\x7f\x39\xdf\x40\x8c\x09\x49\x0b\x5d\xd2\x0f\xd6\xb4\x5c\x8f\x6a\x19\x42\x54\x9a\x89\x39\xb8\x78\xd3\xfe\x72\x03\x4a\xef\xe2\xa6\xd4\xe5\x4a\x4b\xfa\xd1\x40\xf2\xe0\x96\x6a\x59\xf9\x2b\x40\xa2\xba\x47\x1c\xd8\x11\xe9\x48\xd5\x51\x8f\x69\x21\xad\x44\xa2\x45\xc4\x07\x27\xe1\x58\x2d\x21\xfb\xd1\xed\x9e\xa5\xc2\x0f\xac\x30\xe5\x18\x5d\x90\x48\xf0\x57\x1b\x69\x35\xca\x3a\x3b\x66\x7f\x34\x9a\x28\xbb\xf8\xff\xfe\x3a\xf0\x21\xae\x86\xc6\x23\x88\x3d\x3c\x38\x2d\xc1\x7a\x01\x97\x80\x6a\x52\x45\xe3\x1b\xad\x8a\xec\xe0\x34\xc7\xf5\x4a\x5a\x84\xbc\xd6\x48\x72\x32\xd1\xeb\xcd\x46\x9d\x5e\xa6\x95\x39\x1c\x1a\x17\x54\x9b\x40\xd6\x81\x34\xbb\xd7\x8e\x13\x0e\x4e\x36\x7a\x13\x4a\x3c\xcf\xa3\x07\x4d\x9f\x9c\xdc\xad\xcd\x0a\xf2\x9b\xbc\xcc\xb4\x13\xe2\x83\xf5\xdc\x72\xca\xe2\xff\x21\xb5\xcc\x28\x39\x57\xfa\xda\xdb\x37\x0c\x8e\x43\x4a\x2a\x1f\x8a\x47\x96\xa0\x44\x24\xd2\xee\xa8\x09\x4c\x70\x9f\xd7\x92\x48\xc7\xe8\x90\x8d\x1c\x32\xb7\x68\xe0\x2e\x7f\x54\xb7\x9d\x23\x79\xa0\xee\x69\x2e\x19\x44\x1b\x32\x29\xaf\x7c\x54\xa7\x75\xcc\x76\xf6\x17\xe9\x3a\x2c\x70\x8b\x3f\xaa\xc5\x6e\xd4\x20\x6c\x8b\xfc\x4e\xce\x52\x59\xd1\xc1\x9d\xfe\xa8\x06\x73\x9c\x28\xb7\xc9\xc1\xad\xfe\xa8\x4a\x22\x3b\x0f\x2d\xa3\x91\x52\xe1\x4e\x08\xe0\x5e\x0f\x2a\x6a\x55\x94\xf6\xcd\xa2\xc5\x05\xf7\xfb\xa3\x2a\xd7\x94\x59\x0f\x91\x9b\x5c\x42\x9e\x93\x93\x56\x80\x7c\xb4\x47\xdf\x2d\x16\xb8\xcf\x1f\xa9\x15\x51\x77\x84\xa3\xcb\xfa\x4b\x19\xe5\x63\xa6\xa9\xc7\xd1\x6e\x86\x5a\x24\x73\x89\xc7\x0f\xb3\x47\x12\x21\xf9\x96\xa3\x8b\xaa\x49\x79\xe4\x42\xdd\x7b\x8b\xc3\x48\x22\xa0\x45\x02\xf3\xc8\x27\x55\x61\x4f\x74\x6b\x3b\xb8\xc8\x8e\x94\x40\x3e\xa9\xac\x39\x91\xd2\x85\x39\x52\xfa\xb8\x3d\x4d\x3a\x15\xf9\x19\xa6\x1f\x7b\x94\xf6\x03\xa5\x16\xe1\x52\xe1\x36\x7a\x2c\x71\xb2\x3b\x78\x2d\x2a\x98\x43\x3e\xa9\x67\x53\xa7\x7d\x96\x67\xa7\x13\x45\x6e\xdf\x1d\x3b\x1b\x29\xf1\xfc\x2e\x43\xa2\xe2\x93\xdd\xb1\x6b\x11\xc1\x3c\xf2\x49\xd5\x0d\xca\x3a\x37\x53\x24\x25\x92\x4f\xaa\x20\x89\x60\xf6\x94\x51\x67\xc0\x7e\xf0\xd2\x22\x83\xd9\xe4\x53\x56\x27\x51\x56\x9a\xd2\x08\x27\x17\x09\x95\x92\xca\x27\xd5\x3b\x3f\x35\xa4\xac\x0b\x56\x10\x65\xf7\xea\x5a\x5c\xa1\xc4\x79\x1a\x88\x52\xe7\x4b\x93\x56\x97\x35\x94\x72\xcb\xec\x55\xd5\x66\xa7\x19\x27\x7b\xb9\x45\xb7\xd3\xc1\xf4\x32\x25\x49\x73\x57\x4f\x76\x67\xa2\xc5\x02\xb3\xc9\x27\x61\xf2\xd5\xb4\xf4\xc9\xc5\xe2\x4a\x19\xe5\x3f\x54\x55\xf9\x23\x1a\x3b\x39\xed\xb6\x6f\xc0\xe7\x52\x65\x70\x49\x46\xab\x24\x5a\x3c\x52\x4a\xb9\x54\xb7\x91\x92\xd9\x38\xa7\x4d\x52\x4a\x2a\x97\x97\x97\xbe\x75\x68\x60\x4e\x59\xdb\x45\xca\xa6\x1a\x3b\x26\x69\xd1\xc0\x9c\x72\xf9\xa0\xa2\x79\xa0\x9a\xe2\x82\x46\x4a\x2a\x57\xea\x52\x55\x51\x93\x66\xfc\xc5\x25\x27\x9a\xa4\xdc\x72\xa5\x66\xc6\x2a\x56\xaa\x58\xa8\x6a\x6c\xc5\x07\x13\xcc\x95\x96\x20\x23\xe7\x64\x4f\xc6\xde\xd2\xe9\x50\xc1\x14\x73\xa5\x6e\x95\x55\x33\x96\xc8\xef\x9d\x40\xc8\x2e\x55\x26\xab\x07\x92\x12\x37\x3c\x30\x0f\x5c\xa9\x8e\x5b\x95\x1d\x77\x11\xb5\x07\x2e\xa6\x52\xce\x02\x0b\x3b\x4b\xb9\x42\x34\xbf\xb9\xb2\x27\x0c\x5a\x6c\x52\x1a\xb8\x52\x3d\xc1\x2a\x2f\xee\xc7\xde\xb3\xea\x31\x2d\xa4\x43\x0f\x16\xe5\x9e\x89\x96\x48\x57\x0b\x0a\xab\x7b\xf6\x3a\x58\xe9\xe4\xfc\x4a\xa9\xe1\x4a\xcb\x51\x52\x5a\xe9\xb6\xe8\x46\x2b\x4c\x0c\x57\x6c\x97\x8a\x66\x39\x29\x34\xab\x5e\xb9\xb8\xad\x72\x82\xb8\x8a\x44\x7c\xaf\xf9\xaf\x95\xfd\x1c\xa2\xc3\x05\x73\xc4\x15\x4b\x4b\x69\x3b\x44\xe5\x24\x71\x52\x7e\xb8\xd2\x88\x29\x0e\x63\x2f\x64\x0d\x11\x0c\xe4\xba\x76\xea\x40\xc3\x6b\xea\xee\x39\x49\xae\x94\x18\xae\xa2\x62\x56\x17\x5a\x32\xae\x72\xd9\xfe\xe4\xcc\x30\xc9\x29\xb2\xfc\x1e\x54\x4c\x0e\xc2\xe5\x84\x0c\xc6\x8d\x95\xba\x01\x56\x67\xc7\x90\x4a\xca\x0c\x57\x0f\xec\x1d\x15\xdd\x47\xaf\x5c\x7c\x74\x39\x31\x4c\x7d\x21\xfd\x65\x86\x0e\x5f\x6d\x2d\x57\xed\xf1\x85\x52\xd9\xb3\xf6\x06\x6c\xed\xa4\x7e\x52\x7e\xb8\xf5\xb4\xbb\xd3\xec\x4c\x4b\x8b\xd4\x2e\xbe\xb6\x9c\x2a\xae\x55\xbb\x58\x17\xf6\x77\x2f\x7a\x2c\x30\x70\xac\x55\x3f\xbb\xde\x47\x99\x7b\x7c\x0d\x38\x5f\x47\x2f\x32\xd4\xcf\xae\xad\x55\x92\x3d\x2e\x18\x41\xd6\xaa\xb9\xaa\x8b\x3b\x32\xf8\x6d\x56\x44\x52\x89\x6e\x9d\x1d\x8a\x92\xf9\xa0\xaa\xe6\xd4\x4e\xb6\x4a\xaa\xd5\xad\x55\xb7\xbd\x6e\xca\x3b\xf6\x62\xed\xe8\x81\x70\x87\x0d\x46\x93\xb5\xc6\x26\xea\xb1\xb9\x39\x37\xfe\x12\x46\x94\xb5\x6a\xad\xea\xe2\xb8\x73\x42\x23\x15\xfe\xd6\xaa\x39\x60\xb3\x23\x2e\xfe\xac\x5c\xfd\x5b\x53\x0b\x97\xa5\xba\xd2\x38\x59\x2a\xa9\x02\xb8\x6e\xe8\x6e\xa7\x7a\x80\xb5\x93\x91\x92\xaa\x7f\xeb\x28\x7b\xd0\x85\xd2\xc5\xe5\xf7\xd7\x81\x24\xe0\xc7\x47\x24\xf3\x5b\x3b\x19\x29\xa9\x94\xb8\x51\x71\x34\x77\xec\x4d\x4a\xa7\x6d\x41\xaa\x28\x6e\x54\x1b\x40\x43\x24\x37\xcf\x56\xae\x25\x6e\x54\xd1\x6e\x2a\x76\xf7\x7b\x51\x5e\xe0\x8e\xca\x55\xc5\xed\x5b\xd6\x2a\x5a\x51\x8a\xcb\xee\x51\xd3\x4c\xa0\xfd\xed\x8f\x7e\x10\x18\x5e\x36\x65\x83\x04\x61\x8d\x93\xd0\x4a\x45\xc7\x8d\xfa\x2a\x49\xf3\x18\x93\xbb\x71\xc5\xf6\x99\x41\x1e\xf2\xc3\xf7\xea\x7c\xef\xd9\x7d\x71\xd4\xc5\x49\xd8\x4d\x0f\xe3\x88\xa6\xf2\x96\xcf\x9c\xd5\xfb\xec\xc8\xde\x91\x53\xf1\xda\x37\xb2\x16\x1b\xdc\xf6\xef\x55\x03\x48\x3d\x55\xf2\xd8\x90\x91\x72\xca\x16\x13\xdc\xf3\x63\x76\x42\x50\xed\x29\x65\xec\xfe\x0c\xc3\x4e\x7b\x6f\x4f\xf8\xb4\x68\xa5\xac\x31\x15\x39\x3b\x4a\x7b\x89\x4b\x87\x12\x3a\x03\xf7\x19\xa9\x8f\xda\x6d\x08\xf7\x2e\x6b\x2a\x27\x8f\xef\xa3\x63\x13\xd5\xaa\x2d\xba\xb7\xef\x47\x1d\x22\xe8\x08\x3c\x44\x79\x9e\x89\xaa\x98\x6d\x43\x2d\xbe\x2a\x30\x0f\x76\x3f\xa0\x13\x13\xb8\x83\x63\xd7\x18\x3c\xd8\x75\xa9\x97\x36\xc0\xab\xb3\x2a\x20\x67\x72\x18\x89\xd6\x3a\x34\xf2\x19\xef\xb9\xa8\xb5\xdd\xf6\x6c\xb7\xfe\x2d\x22\x29\xfd\x2b\x0a\x74\xc4\x7b\xa1\x0a\xb6\x47\x27\x99\x95\xf2\xc0\x8f\x58\x41\xf8\xa3\x3d\xc6\xe8\xf0\xc0\x5d\xfb\x31\x3b\xc4\x51\xfc\xa0\xce\xef\xd1\xbe\x9b\x74\x98\xf8\xb6\xcd\x6f\xb1\x23\xd1\x70\x91\x1e\xfc\x2c\x8f\xb8\xb5\x93\xdd\x90\x36\x99\x4e\xc4\xad\xf9\xe4\x70\xc5\xbe\x0e\xc4\xee\x51\x1b\xae\x4e\x7d\xd6\x15\xfe\xea\xdd\xf0\xf2\xc5\xfd\xec\xa2\x7e\x3a\x96\x72\x61\x7c\x7b\x89\xa3\x76\x2d\xfc\xea\x0a\x4c\x48\xfa\x66\x0a\xb8\x04\x6e\xda\xcd\x04\xc2\x9a\x3f\xfa\x01\xa0\x26\x34\x64\x8a\x3b\x76\x41\xba\x17\x1e\xbc\x49\xb6\xbf\xdd\x50\x99\x0a\x7a\x95\xfd\x12\x92\xdc\x5e\x8f\x88\xdc\x49\x59\xb0\x1b\xf1\xa9\xd9\xf6\xa5\x0f\x19\x84\xc3\x32\xf0\xa9\x75\x33\xb3\xdd\x9e\xd8\xce\x84\x0d\x74\xc3\x2e\xbc\x6b\x67\x8d\xde\xec\xa3\xce\xa9\xbd\x43\x73\xb6\x0a\x4b\x89\x7d\x94\x6e\x76\xa7\xcf\x35\x68\xc9\x0e\x3b\x1c\x27\x58\x89\x9e\x5c\x71\xeb\x4f\xc0\xe7\x03\x6f\x49\x1d\x9b\x46\x3b\x2e\x98\x87\x42\x02\x9c\xa1\x7d\x0a\x93\x59\x7b\x8d\x11\x4e\xb5\x42\x09\xa5\x5e\x27\xe3\x9f\x1d\x0a\x85\x88\xbe\xfd\x55\xb7\x56\xfc\x6e\x52\x41\x82\xcb\x1c\xe9\xe3\x76\x1c\x88\xc0\x8c\x4b\x40\xc3\xea\xc2\x62\x92\x83\xef\x04\xbc\xfd\xb6\xf4\x3d\x90\x99\x13\x81\xff\x3c\x41\xed\xf2\x5e\xef\x7d\x60\x54\x06\xdc\xfc\xa2\xc5\x7d\x80\xf6\xf9\xb3\xf6\x6b\x1c\xfb\xb9\xa1\x3f\x58\xf3\xee\x85\xa1\xdb\x5b\xf1\x4f\x1c\xec\x43\xbc\x9f\xf7\xf9\xb8\x22\x5f\x43\x9a\x74\x0d\x47\x3e\x19\x02\x89\x94\x31\x2d\xc6\x31\xa9\x64\x1a\xe0\x66\x1b\x31\xde\xbc\x97\x52\xf6\x65\xa5\x16\x8c\x7d\xe0\x05\x5c\x95\x0a\x78\xdc\x02\xe7\xec\x2e\x22\x03\x9b\x5b\x10\x76\xe3\x65\x73\xc0\x59\xdd\x82\x88\x4f\x28\xe1\xdc\x6e\x41\xf8\x77\x93\x74\x08\x9d\x66\x89\x4f\x2a\x89\x4e\x5c\x37\xf0\x5c\x25\xd4\xc6\x77\x85\x62\x57\xd6\x0b\xf4\x38\xec\xaa\x25\xb1\x03\x1d\x80\x34\xdb\xd9\x6e\x28\x70\x52\xee\x1f\x46\x11\x1b\x07\xd5\x4f\x30\xb6\xf8\xd8\xd4\x7a\x29\x2d\xba\x7d\x4a\x70\x61\x70\x3e\xb5\x10\xcc\xe6\x74\xbd\xa8\x41\xd4\x2f\xa6\x6e\xb7\xbd\x40\x7c\x7a\xac\x67\x38\xc0\xa4\x7c\x83\x11\xdc\xbe\x7c\xe9\x27\x18\x21\x52\xc3\x36\xef\xa9\x80\x62\xcf\x7b\x05\xbe\x3f\x27\x8f\xae\x5f\x00\xcf\xff\x96\xef\xe3\x56\x9c\x1e\xce\xb3\x79\x7f\xa9\xec\x8d\xf8\x90\xe3\x44\x18\xce\x7e\xcf\xd6\x29\x51\xf7\x1a\x4e\x01\x02\x96\x95\x49\x43\xd7\x95\xb7\x5e\x6b\xdd\xd5\x1f\x4d\x54\x92\x76\x5a\x9a\x11\xe0\x38\x11\x06\x60\xfe\x0d\x80\x9a\xb5\x9f\x1c\x7a\xa5\x7e\x19\x4a\xff\x1e\xd4\xad\x4e\x3e\x6d\x61\x7b\x50\xda\xc9\x4e\xc7\x83\xd9\x22\x14\x03\x75\x17\x21\xb7\xfd\xca\x3d\xc8\x4a\xb7\xa4\xa1\xa6\xdb\x83\xd7\x57\xf2\xa3\x51\x5d\x47\xc9\x7e\x18\x62\x70\x82\xfb\x0f\x2e\xb2\x35\x8d\xca\xe9\x8e\x7d\xc8\x8d\x2e\xc3\x3b\xe0\xda\xe8\x6b\xe8\x9c\x79\xe1\xd5\xd5\xe4\x6f\xe1\x82\xfd\xbb\x05\x78\x9e\xf6\xbc\xfc\x65\xc3\x5b\xd3\xc5\xd5\xf2\x6c\xc4\x2a\xfe\xff\x63\x2a\xad\x48\xf5\x77\x66\x97\xda\x3a\xab\x1f\x62\x7e\x1d\xc9\x70\xed\xf7\x8e\x0d\x1f\x39\xee\x91\xf2\x1b\x8d\xd9\x15\xd0\x52\xe8\xd2\x5f\xe9\x7c\xea\xbe\x4c\xd0\x8e\x27\x73\x54\xa7\x6a\xbb\x5d\x6e\x42\xa2\x52\x85\x3c\x20\x93\xb7\xdd\x86\xfe\x62\xa1\x90\x57\x50\xfe\x0d\x7b\x6f\x07\x19\xac\x7c\x3f\x51\x07\x90\x40\x15\xd4\xc1\x32\xf0\x02\x1c\xb5\xf3\xe4\xc5\xa8\xf2\xe4\x71\xf2\xb6\xeb\xd0\x8f\x8d\xf3\xb7\xd1\xb9\x5d\xad\x3c\x5f\xa5\x33\x67\x5f\x75\x94\x87\x88\xc3\x24\xf1\xb5\x85\x87\x90\x32\xe2\x68\x15\xa7\x5e\x8a\x22\x76\x9e\xbf\x18\x53\x99\x3f\x42\x5b\xba\x21\xab\x95\x46\x1b\xfa\x88\x22\x9f\x6b\x12\x85\x89\x42\xe4\x99\x7a\xdf\xc5\x83\xca\xe1\x98\x4e\x47\x1b\x42\x02\x95\x51\x93\x28\x22\x9e\x87\xa3\x76\x17\x00\x3e\xaa\xcc\x00\x9c\xbc\x2d\x09\xfc\xad\x91\x03\x16\x3a\xb7\xdb\x74\xeb\x85\xda\x87\x01\x09\x39\x2a\x43\x04\x7e\x1c\x2d\x42\x75\x08\x08\x29\x23\x56\xbf\xdd\x0f\x10\x3b\xcf\x5f\x8c\x29\xcf\x1f\xa5\x8d\x24\xc9\xc2\x33\x4e\xdf\x4c\x64\x10\xc4\x64\xae\x5a\x80\x9a\x44\xb9\x32\x80\xe7\xc5\x61\x94\xaa\x03\x00\x40\x19\xad\xe7\x6d\x92\x8d\xca\x54\x0e\xed\x3c\x75\x31\xa2\x3c\x75\x84\xb0\x65\x4a\x77\x5e\xf3\xc2\x1b\x29\x0c\x17\xca\x73\xc2\xe1\x68\x54\xd5\x0a\xfc\x75\x98\x6a\x9c\x05\x80\xea\xa2\xaf\xd6\x89\x6a\xf6\x38\xf4\x05\x6b\xce\x46\x54\xf7\x50\x8d\xb0\x70\x91\xac\x2d\x13\x37\x52\x38\x8f\x12\x4f\x9b\xf8\x7d\x56\xe4\xa4\x56\x59\xbb\x98\x87\xc9\x46\x1d\x41\x02\x55\x78\xba\x0e\x36\x71\x8c\xa3\x76\x9e\xbe\x18\x55\x9e\x3e\x4a\x5e\x14\x6c\xfc\xad\xd9\xe6\x5b\xe8\x5c\x47\xab\xb9\xc6\x82\x53\x53\x9e\x72\x95\xc9\xd1\x7c\x3e\x4f\x34\xab\x27\x81\xca\xa8\x37\xcb\x60\x15\x47\x38\x6a\x67\x16\x88\x51\x65\x16\xa0\xe4\xa5\x89\x32\x91\xc8\xfc\x8c\x62\xf8\x97\x61\xa4\xb3\x20\x3b\xde\x29\x23\x10\x6f\xbe\xd9\xac\x34\x06\x0c\x80\x8a\xd1\x5f\xfa\xd1\x5a\xdd\xf4\x38\xb4\xf3\xe4\xc5\x88\xca\xe4\x75\xc2\xe8\x8e\x4f\x52\xcb\xd4\x4d\x14\xd2\xfd\x7e\x91\xae\x55\x05\x2d\x8b\x07\xd5\xa4\x46\xe1\x92\x32\x57\x53\x7c\x00\xa9\xac\xfc\x2a\x8c\xe7\x73\x14\xb1\xfb\xc2\xf3\x31\x15\xd5\x47\x68\x4b\x97\xab\x44\xf7\xc6\xd0\x47\x64\x22\x93\xf5\x72\xeb\xab\xde\x0e\xdd\x1d\xce\xca\x00\xab\x25\xfb\x87\xec\x75\x67\x5c\xa1\xe6\xec\x1f\x86\xd6\x79\xea\x62\x44\x6d\xa7\x53\x09\x4b\x93\x94\x86\xd0\xb6\x8d\x0e\xa7\x30\xd9\x52\x67\x4c\xb5\xcb\x2c\x30\xec\x82\xc5\x6e\x1c\xe4\x4b\xb8\x33\x1e\x2f\x5a\x00\x87\x6f\xd8\x8a\x44\x82\x02\x7a\x3d\xf4\xa0\x8f\x83\xef\x8b\x0e\xdf\xc0\xd5\xc1\xda\x0f\xe0\xa2\x70\x6d\x5e\x62\xec\x72\x7b\xf9\xb3\xc0\x33\x9e\x48\x90\xc8\x94\xbf\x14\xdc\xf6\xbf\xf5\x7b\x9f\x65\xe1\x99\x07\xd6\x07\x93\xe0\x6a\x6e\xbd\x3d\x98\x50\xbe\x03\x6c\x40\xc6\x3b\x51\x6c\x6d\x02\xb7\xfb\xc2\xb1\xf8\x9e\x8e\x9a\x9a\x1a\xbe\x3d\x04\x84\xac\x4b\x30\x77\xf9\xaa\xa0\x4d\x58\xb1\x94\x86\xf5\xa3\xb4\xd2\x77\x83\x30\xd4\x13\x24\x3f\x86\x0d\x83\x3f\x6b\x4e\x5e\x48\x1f\x57\x32\xa9\x8b\xf9\xeb\x43\x57\x20\x5d\xa2\x07\xda\x7f\xdb\xce\xb7\x8b\x6d\xd8\x67\x7e\xfa\x94\x1f\xcb\x73\xb5\x4c\xc1\xa2\x61\xc0\x9d\xbf\xa5\x0b\xfa\x2f\xbc\x35\x7f\xb8\x7f\x48\x4d\x4a\x64\x20\xc9\x3e\x39\x29\x69\x82\x56\x53\x98\x10\x8e\x7f\xd6\x61\xef\x8b\x4f\x13\xef\x83\xf6\xbf\xf3\xf6\xbf\x8b\xf6\xbf\x61\xfb\xdf\xe5\x15\x96\x45\x15\xb9\x46\xc3\xe8\x48\xde\xb6\xb1\x41\x2f\x14\x62\x2d\x09\x1c\x96\x28\xb2\xac\x04\x94\xfd\xa9\x3f\x7c\xdd\x5c\xa8\x16\x6f\x71\x5d\x2c\x99\x92\x11\xe1\x90\x80\xc5\x67\x33\xa8\x32\xb6\x1f\x7f\x16\xe2\x77\xd5\x27\xef\x11\x65\xed\xc4\xf9\x16\x7c\x1c\xda\x90\x58\x51\x84\x48\x68\x00\x85\xd7\xb8\x66\x40\x6d\x46\x05\xe5\x71\x22\xfd\x60\x9f\xd0\xe0\x52\xc4\x9f\x35\x8d\x24\x66\x64\x98\x41\x47\x2e\xc5\x65\x1c\x67\x50\x02\x75\x04\x73\xd2\x5b\xa8\x81\x05\x5e\xc9\x7c\x2b\x90\xcf\xd1\x05\x49\x15\xcc\x14\x0c\xda\x00\x95\xc1\x06\xbf\x50\x92\xf5\xcf\xa6\x54\x1c\xe9\xfc\x67\x7b\x4c\x9f\x10\xe9\x9b\xfb\x9f\x53\xb3\x5a\xdd\x56\x65\x62\xf9\x62\x0b\x83\xaf\xde\x65\x06\xb8\x9a\x91\xa2\xbe\xba\x0c\xfc\xff\xfd\x5b\x46\xb6\xd9\xcb\xab\x09\x3b\xd3\x88\xea\x77\xde\x26\x87\x98\x50\x3f\x24\x9d\x16\x27\xba\xb5\x9e\x4f\xe4\xed\xab\x6b\x37\x6c\x0f\xc5\x76\x1b\x0c\x88\xf8\xcf\x8b\x1e\x96\x9f\x75\x7e\xb4\xae\xc1\x93\x75\xd9\x90\x8b\xa8\xae\xee\x77\x7f\xe3\x7f\x0d\x38\x68\xd3\xdb\x57\xed\x19\x42\x7d\xce\xd9\x37\x42\x69\x47\x7e\xab\x56\x15\xf0\xdf\xf7\xfc\x9d\xf3\xba\x83\x31\x7d\x19\x08\x29\x92\x78\x9d\xc9\x15\x05\x92\x6b\x33\xd4\x14\x0c\x5f\x1f\x0a\xc2\x56\xe1\x3b\x6f\x67\xe6\xaf\xe5\x0f\x33\xea\xb2\x33\x3e\x0b\x2b\xc5\xd2\x21\x92\xe3\xd7\x8d\xd8\x27\xfe\x8b\xea\xe5\x54\x81\xd9\x95\xd1\xb9\x62\x6f\x0a\xf7\xdf\x3f\xfa\x37\x7e\x22\x89\x57\x50\x68\x85\x36\xcc\xc4\x01\x47\xb9\x3d\x5a\xa1\xce\x1a\xdb\xb2\x5e\x01\x3e\xca\xe7\x4a\x1d\x31\xd1\x31\x3b\xb4\x3c\xa2\xcf\x4d\xdb\xe7\x26\x41\x35\x11\x89\xfa\x49\x76\xdc\x66\xac\x6e\xf1\xd6\x19\xf2\xf5\x7f\x76\xc8\xef\xc8\x79\x5b\x46\x54\x58\x27\xf0\x91\x57\xdb\xb2\x38\xbc\xd2\xbf\x1c\x5b\x16\xac\x30\xf2\x1d\x0f\x7e\xa2\xb8\x6f\x7b\x5d\x17\xe6\x47\xe6\x4b\x2f\x25\x3b\xe4\xb9\xb6\xe3\xf5\xeb\xff\xfc\xeb\x90\x92\xcd\xc8\xe1\xb4\x8f\x98\xa5\x4c\xc5\x39\x5b\xbb\x66\x51\xc2\xbe\xfd\xda\xfd\x12\xf1\xd0\x70\xa4\x07\x8e\xba\xb8\x86\x81\x83\x2e\x69\xf9\x73\x16\x4a\x73\x88\xa4\x29\x2b\xea\x80\x9e\x8a\x8c\x4b\x7a\xff\xc0\x5a\xfe\x6a\xaf\xa8\xd2\x6a\x7b\x27\x33\xbf\x9a\x10\x76\x00\x6c\xe9\x83\xa3\xdc\x28\x74\x4a\xb4\x48\xc7\x89\xaf\xe4\x9d\x39\xf4\x3c\x72\x00\x1f\xee\x94\xc4\x13\xb4\xf7\xce\x57\x28\x81\x03\xb7\x8a\xed\xf1\xd4\x92\xb0\x4f\xc0\xc2\x03\x24\xff\x8a\x4a\x24\x35\x8d\x5d\xb1\x8f\xf4\x78\x3b\x90\xd4\x28\x11\xdc\xb9\xf8\x80\xf2\xce\xbf\x90\xfc\x39\x5e\x1a\x97\x9d\x4e\xc3\x5a\x0e\xdf\x68\xcd\xcf\x52\x1f\x22\x34\xdc\x76\xbc\x33\xf5\xaf\x7d\xf5\xb3\xdd\xb0\x07\x6d\x7d\x3d\x7c\x70\xd3\x75\x1c\xff\x7a\x6a\x18\x47\xf4\xa0\xad\x8c\x2b\xcc\x7a\x3f\x64\x15\xfb\x8e\x68\x1d\xd5\xc3\x54\x45\xa4\xad\x36\x82\x9f\x66\x3d\xd9\x08\x35\x91\x89\x91\xfb\x0c\xed\x8c\x20\x6a\xf8\xa8\x48\x1b\xe9\xe2\x99\x02\x37\x3a\xa6\x36\x42\xa6\x26\x4a\xa6\x3d\x29\x42\x34\xba\x61\x64\x1b\x6b\xfa\xf6\x5e\x2f\x90\x40\x0c\x25\x39\x9f\xcc\x16\xfe\x13\xa5\x5d\x22\xe9\x02\x21\x1e\xb2\x51\x70\x42\xd7\xa0\x43\x51\xe6\xa1\xd2\xb3\xcb\xa5\xc7\x7e\xe2\x83\x64\xe2\xed\x70\xd4\x2e\xef\x4f\x12\x55\xe0\x3c\x5e\x1c\xb5\xc2\x56\xed\xf4\x56\x39\x24\x95\x31\x28\x67\xaa\xd8\x9c\xac\xf3\xea\x31\xea\x73\x53\x09\x31\xcd\xad\x3d\xb9\x94\xe8\x52\x8f\x62\xf5\x83\x4e\x79\x1a\xca\xd1\x28\x36\x0d\xf0\x1c\x3a\x13\x88\x57\x9f\x8c\x4a\x91\x69\x32\xed\x29\x9c\x44\x9d\x7a\xac\xa8\x1f\xda\xc9\x93\x51\x8e\xf9\xb0\xc9\x80\xe7\xd0\xc9\x40\xbc\xc8\x64\x14\x8a\x8c\x2b\xc3\x0f\x55\x21\x71\xda\x09\xb1\x76\x04\x2b\x89\xa2\x7a\x66\x8b\xae\x4b\xff\x18\xbe\x2c\x03\x56\x7d\x22\x2a\x39\xa6\x89\x88\xc3\x41\x48\x9a\x76\xd2\xa9\x1d\x25\x4a\xd0\xea\xd9\x23\x36\x91\xe1\x31\x74\x22\x00\xab\x3e\x11\x95\x1c\xd3\x44\xf8\x59\x1f\xa4\x4c\x3b\xb4\x54\x0f\x06\x21\xb0\x76\x90\x88\x4d\xa3\x7f\x0a\x9d\xc5\x80\x53\x9f\x84\x4a\x8b\x69\x12\xfc\xdc\x4e\x5e\x0c\xe5\x00\x52\x3d\xe4\x83\xc0\xda\xa1\x20\x36\x89\xfe\x29\x74\x12\x03\x4e\x6c\x25\x64\x5a\x4c\x93\x68\xcf\xde\x24\xf6\xaa\x87\x89\xfa\x51\x1d\x04\xd7\x0e\xf7\xb0\x89\x80\xe7\xd0\xa9\x40\xbc\xfa\x64\x54\x8a\x4c\x93\x69\x4f\xd1\x24\xea\xd4\x63\x41\xfd\xd0\x4d\x52\x75\xf5\x98\x0e\x9b\x0c\x78\x0e\x9d\x0c\xc4\xab\x4f\x46\xa5\xc8\x38\x99\xc1\x99\x37\x1c\xf0\xa9\x87\x68\xca\x5e\x22\x1f\xba\xa1\x13\xe9\x9e\xc2\xa7\xd1\xe3\xd4\x27\xa1\xd2\x62\xd4\x11\x7e\xbe\x25\x2d\x88\x7a\x58\xa7\x9d\x86\x49\xeb\xa1\x1e\x9f\xa1\x5a\xd2\x3f\x86\xab\xc9\x80\x15\x59\x0d\x85\x1c\x8b\xe9\x3d\x4b\x94\x69\xe7\x6e\xea\xd9\x96\x2c\x56\xca\x59\x98\xc1\xf0\x9e\xad\x76\xf7\x6c\x9a\x84\x4a\x8b\xd9\x62\x45\x89\x2c\x26\xaa\xe3\x26\x9b\x2c\x15\x5a\x54\xe4\x59\xa6\x21\x1e\x19\x1e\x34\x98\xad\x1e\xef\xd3\x3d\x49\x91\x8b\x6d\xc7\x18\x7e\x54\x8a\x1b\x8e\x27\x67\x33\x18\x7b\x57\x4a\x9e\xb5\xcb\xb2\x76\xf1\x44\xff\x43\xc5\x8d\xbe\xab\xa0\xbe\x32\xc3\xb8\x9e\xed\x3a\x64\xdd\x9f\x97\xa2\x0a\x38\x22\x9e\xcc\xed\x22\xcd\xe6\x89\x54\x2d\x38\xaa\x43\x54\x55\xc0\x5f\x81\x3f\x2f\x45\xb8\xee\x19\x5a\x19\x5e\xec\xe9\xde\x06\x63\x57\xf4\xb3\x34\x87\x1c\xef\x77\x0f\xb7\x87\x6e\x3d\x74\x14\x57\x45\xde\xd4\xe4\x96\xa5\xf7\x43\xef\xef\xb7\xfc\xa4\x85\xfd\xa1\x07\x74\xfc\x2f\x8a\x9c\xfc\xf2\xce\x94\x42\x5c\x4d\xfa\x86\x5f\x45\x83\x12\xe3\x8d\xc3\x5f\x02\xdb\x65\x34\xe5\x99\x48\xb5\xe2\xfd\xac\xd8\x0b\xc0\x59\x62\xaa\xff\xd6\xdf\xfc\x41\x26\xcb\xa3\x38\x79\x3e\xbc\x49\xf9\x29\x9f\xf4\xf2\x5c\xeb\x40\x60\x52\x94\x47\xd2\x86\x73\x8c\xbf\xa2\xfa\xbc\xaf\xbe\x2e\xdb\xda\xf8\xfe\x40\xe7\xc9\x54\x00\x05\x5c\x84\xdd\xcb\x75\x6d\xf8\xc9\xce\xc8\x26\xfc\xff\x78\x13\xa6\xe0\xd7\xea\x6f\xfe\xb7\xd2\x3f\xfc\x04\xec\xee\x6d\x0c\x9c\x96\x69\x24\x61\x62\xae\x91\x26\x38\x1e\x80\x92\x5a\xba\x2c\x6b\x45\xa2\xb2\xff\x3c\x66\xff\x9a\xc1\x5b\xff\x67\xeb\x79\xc1\x5b\x1d\xd0\x21\xca\xf2\x59\xd1\xd4\x39\x78\xc5\x5d\x02\x9d\xf7\xa0\x94\x5a\x52\x1e\xfb\x4b\x5c\x24\xb0\x35\xe9\xc1\x2a\x2a\x17\x38\x90\x3f\x0c\x5b\x91\xba\xce\x86\x4f\xa1\x48\x50\xc3\x88\xfb\xe1\x56\x15\x19\x24\xec\x41\xb2\x63\x5c\xbc\x44\x61\x92\x1e\x86\x6d\xaf\xd5\x70\xc9\x25\x84\x0a\x06\x92\xea\x08\x25\x27\x88\x21\x44\x85\x82\x0c\x43\xb1\xcc\xd4\x31\x8d\xd0\xb1\x56\xc3\xc4\x92\xe2\x70\x18\xde\x1c\x97\xa1\x42\x15\x0a\x1d\x73\xbd\x1c\x78\xb9\x2f\x4e\x28\xa6\x48\x65\x37\x8e\x69\x18\xb0\x2e\x8b\xd3\xfe\x8c\x01\x6d\xfc\x1e\xe8\x14\x9d\x4d\xb4\x6f\xd2\x1e\x6a\x4b\x48\x8a\x82\x0c\x82\x12\xd1\x8d\xeb\x60\x93\xbd\x08\x2e\x4e\x75\x87\x52\x1f\x0d\xf8\x92\xbc\x68\xd0\x31\x93\x01\x4f\x1e\xc5\x28\xc4\x5c\x52\x08\x0c\x84\x78\x83\xcc\xa5\xc3\x87\x09\x24\x90\x41\x54\xd2\xa8\xda\xc7\x05\xb8\x0d\x4a\x82\x5b\x00\x65\x61\xdf\x4d\x42\x97\x8f\xac\x65\x4e\x61\x30\xdb\x81\x6e\xaa\x9b\x87\x0c\x57\x3c\x3f\xf0\x80\x4c\xa5\x18\xaf\xfd\x00\x2c\x70\x59\xd4\x24\xc1\x16\xd8\x9f\x07\x9a\xa4\x5b\x16\xd0\x9f\x03\xf2\xb2\xe4\x8e\xa0\x38\x17\xa1\x66\x61\xda\x57\x79\x50\xe8\x04\xac\x14\xc6\x37\x7f\x31\x48\x44\xdc\x60\x2a\xed\xaf\xd7\xb2\xf9\x33\x8f\xb6\xd9\x0c\xb6\x28\xab\xc0\xb7\x6e\x24\xa8\x74\x50\xb4\xe2\xc4\xf6\x50\x4c\x52\xfd\x94\xa8\x8a\x6d\x93\x7d\xa2\x9b\x01\x2b\xf8\x12\x08\xc2\xcb\x9a\xfe\x9f\x9c\x9c\xf6\x05\xbe\x2c\x40\xfe\xb6\xd9\x11\x13\x51\x1f\x0c\xff\x90\xf5\x9f\x68\x94\x41\x62\x45\x93\xa9\xc7\x51\x61\xdb\x8d\xbf\x5d\x62\x90\x36\xc1\xd9\xae\xc0\xec\x4f\x67\xb1\xd9\x63\x70\xc3\xfa\x44\x38\xc0\xb0\x34\xe4\x4c\x52\x6a\xdf\x4e\xe8\x46\xe0\x6f\x63\x60\xe0\xd8\xe5\x1e\x71\xd9\x18\x66\x33\x48\xe0\x9e\xee\xb0\x75\x4c\xd0\xa1\x03\x7f\x58\x6f\xba\xc1\x1f\xd9\x99\x1e\xba\x4f\x0d\x53\x28\xc9\x09\xc7\xe5\x01\x5c\x25\xd9\x96\x04\xa5\xcc\x03\x3a\xcc\xdc\x5a\x14\x64\xd0\xc8\xb8\x28\xee\xc0\xc7\x6c\x65\x30\x02\xac\x41\x86\x1b\xfb\x60\x3b\x88\x48\x99\xd5\xa8\x58\x2e\x06\xc3\xc3\xeb\x02\x50\x98\x81\xa4\x28\x65\xb5\x88\x28\xd0\x60\x78\x48\x9a\xe1\x20\x0b\xc4\x8e\xec\x71\xc5\xf6\x80\xd1\x89\x87\x7b\x64\x20\x44\x48\x64\x23\xb1\x65\x97\x36\x97\xe0\xea\xa4\x76\xef\x35\x0c\xb0\x84\xd4\x9c\x22\x54\xcb\xbc\xa5\xa4\xe4\x27\xba\xae\xe8\x1e\xb7\x1c\xf4\xa7\x39\xee\x33\xd4\x80\x7b\x4b\x02\x4c\x15\x0e\xb2\x1a\x56\x83\xba\xc0\xe0\x7b\x9b\x12\xd0\x02\x88\x5a\xfd\x40\x50\xa3\xed\xad\x36\x92\xbf\xc7\x74\x19\xf5\x2d\x80\x56\x65\x28\x9b\xd7\xa9\x8c\x08\x87\xda\x0c\x94\x37\x27\x93\x26\x6d\xe6\x70\x73\x42\x37\xf1\x4d\x28\x81\x98\x2d\xbf\xb7\x59\x03\x36\x1c\x0a\x1a\x79\xda\xf4\x65\xb3\x02\x2b\x64\xd2\xbd\x0d\x70\x13\x8b\xe3\x36\xdb\x35\xf8\xd0\x11\xf0\xa2\xb2\xbc\xc6\x1d\xd7\xd8\x03\x06\xfa\xd1\xe0\x68\xa4\x80\x6d\xc7\xfe\x83\xd1\xf2\xc6\x01\x14\xeb\x65\xb2\x67\x27\x33\x28\x58\x22\xbb\x59\x56\x93\x46\x52\x05\xd8\xbc\x66\x04\x1a\xb6\x53\x8e\x6e\xaf\x20\x6c\xe0\x30\x33\x7c\x71\x7d\xe0\xcb\x93\x32\xaa\x70\x37\x27\x55\x16\x8a\x22\xe3\xb6\x02\xb5\x5f\xfe\x1c\x78\xab\x34\x96\xca\xee\x51\xa8\xf5\x0a\x78\xd0\x6d\xe4\x8d\xc1\x45\x31\x98\x48\x72\x4e\x72\x14\x2a\x5e\x03\xb7\x1d\xdf\x9d\x53\x19\xc4\xb6\x93\xa6\x40\x51\x99\xad\xb2\xcf\x17\x38\xb9\x0a\xb4\xc5\x49\x22\xc3\xb6\x03\xbe\xbd\x25\xef\x5f\x2b\x79\xaf\xb0\x39\x78\xb1\x42\x82\x05\x34\x05\x3b\x47\x3a\xab\x0b\xaa\xd4\x25\xbe\x17\xaf\x40\xc0\x68\x86\x5a\x4b\xf8\x1a\x3c\x66\x0c\xe6\x0b\xd5\x34\x18\x21\x43\xe0\x2a\xe4\x27\x9e\x60\x44\x17\xdd\x0b\x37\x80\xc0\x6d\x61\x83\x8c\x00\xb7\xcb\x23\x1e\x44\xfb\x81\x06\x65\x41\xb9\xd4\x81\xab\x6c\x87\x1a\xe2\x95\x2f\xcd\x08\x1d\x7a\x2d\x4d\x05\x05\x01\x6e\xdb\xf1\x58\x34\xc7\x84\x98\x42\xca\x68\x18\x30\xce\xca\x7a\x9f\x46\xa8\x8d\xd8\x02\xbd\xa6\x8b\x81\x6e\xa3\x89\x07\x1c\xb2\xa4\x2e\x50\xbb\xba\x05\xa1\x12\xcb\x8b\xa1\x7a\x4c\xa4\xc1\xd0\xb4\xc9\x20\x70\xd4\xa6\xa6\x59\x82\xc7\x2a\x60\xcb\xaa\xea\x26\xc5\x79\xe0\x83\xb0\xba\x3a\x61\xd3\x0f\xfc\x18\x04\xde\x87\x08\x37\x2c\x6b\x98\xf5\x31\x80\x0c\xf4\x3c\xc0\x2f\x28\xc0\xb1\x80\x97\x69\x82\x18\x06\x3a\xf2\x75\x3b\x46\xe5\x59\x98\xc6\x1d\x35\x57\xb8\xae\x00\xcf\x94\x57\x84\x59\x20\x17\xb2\xb9\xb5\x40\x0e\xfa\x97\x93\x2a\xce\x0c\xe4\x0e\xee\xd5\x0e\x95\xae\x20\x00\xab\x49\x28\x6d\x45\x45\x5e\x36\x68\xa8\x1d\x00\xe9\x2f\xd8\x27\x44\x66\x16\xea\x36\x28\x68\x5f\x38\x85\x3e\x13\xe1\xcf\x0c\x65\x5d\xe8\x53\x83\x78\xec\xca\x2c\x9d\xe5\xd1\xd9\xe0\xb0\x79\x03\xfe\x9c\x06\xbc\x36\xc8\x01\xa7\x78\x1d\xc0\x02\x3a\x4c\xf4\xb1\xc0\xbd\x4e\x8f\x48\x20\x26\x7f\xd2\x07\x1e\x2c\x61\x39\x5b\x1b\xb3\xbc\x55\xaa\x42\x5b\xd9\xe4\xad\xa0\xcb\xff\x32\x3b\xb0\x9c\x30\xe6\x7a\x81\x24\x48\x89\xa6\xde\xfc\x00\x3a\xf6\xc9\x5d\x6d\xc8\x29\x79\x60\x3a\xa6\xf0\x70\x90\x27\x76\x9b\x1d\x1a\x88\x2d\xa4\x98\x0e\x05\x19\x38\xb1\xcb\xb6\x28\x6b\x97\x31\xd0\x95\x68\x8b\x82\x24\xc0\x31\x35\x84\x3d\xc3\x40\xa7\x3c\xc2\x73\x15\x2b\x68\x87\x76\x47\x43\x80\xb1\x04\xe4\xec\xf0\xf5\x22\x73\x00\x73\x28\xf0\xc8\x61\x01\x2c\x5a\x89\xda\x73\x2f\x4a\xa0\x41\xb9\x27\xe8\x60\xb1\x0f\xfc\x12\xfe\xb1\x13\x74\x31\x52\x60\x1d\x8b\x23\x41\x93\xa9\xe9\x12\xc4\x61\x78\xc0\x43\x36\x80\x24\x12\xd5\xa6\xed\x71\x0b\xb6\x47\x3c\xeb\x0c\xd2\x15\xfc\x3a\x44\x8b\xaf\xe8\xa7\x32\x68\xb2\x27\xc9\x1d\x3b\xf8\x45\x81\x41\x8a\xa0\x79\x7c\xc4\xf7\x13\x90\x47\x60\x12\xc3\x02\x73\xca\xb7\x26\xab\xf6\x78\x16\x06\xba\x56\x85\x29\x61\x08\xbc\xaa\xe8\x98\xec\xd1\x7d\xdc\x9f\x0f\x73\x89\x9b\x3c\xaf\xc8\x19\x77\x21\x81\xc3\xdb\x60\x2b\xe1\x83\xf4\xf8\xa1\x40\x65\xcc\x07\xb9\xf8\x6d\x84\x1d\x46\xf8\x40\xc2\xf2\x6c\x4b\x66\xa5\xc1\x6d\x4b\x00\xd5\xc5\x01\x4b\x55\xfb\x20\x60\xab\x8a\x24\xc1\xf9\x48\xa4\x50\x98\x1d\x6a\xe3\xee\x8e\x0f\xe2\xba\x34\x8b\xa8\xc4\x62\x6b\x1d\x80\x1c\x15\xb5\x78\x15\xf5\xcb\x33\xdc\xc5\x0a\x41\x4e\xb0\xa2\x1b\x65\x56\xa1\xe6\x68\x09\xf0\x31\xfb\xbd\xa5\x16\x1c\x4f\x20\x45\x60\x22\x26\xff\xd5\xf7\x07\x25\xf8\xa3\x29\x68\x74\xc1\x8f\x09\x11\x40\x2f\x55\x00\x8d\x89\x45\xb0\x1f\x91\x3c\xcf\x4e\x55\x56\xd9\x37\x0f\x7f\xe1\xeb\x4f\x58\x36\x27\x1f\x64\xb4\x92\x26\xc6\x23\x41\x19\x04\xcd\x2a\xc7\x2a\x83\xa8\xcb\x55\xf3\xf7\xee\x30\xf1\x22\x2a\x30\x7b\x0f\x04\x0d\x1b\x41\x14\x26\xae\xd5\xb2\x24\x9f\x37\x4b\x05\x18\xf5\xbe\xd7\xc0\xb1\xa6\x76\xc5\x94\x4a\xf1\x12\x1d\x6e\x66\x38\xe3\x5b\x2c\x81\x6e\xa2\xb1\xb9\xb7\x58\x49\x31\x9d\x25\xae\x0a\xd5\xa8\xce\x02\xbb\x92\x69\xb4\x81\x6a\x79\xa4\x96\xf3\x16\x7e\x86\x09\x8a\xde\xfa\x08\xdc\x77\x1b\x3c\x8b\x38\x10\x7d\xc8\x8e\x06\x18\x39\x02\x36\xaf\xe6\x16\xe4\x6d\xa2\x34\x43\xa3\x3c\xb0\x92\x15\xc9\x49\xc2\xeb\xa2\x4d\xc0\x9b\x40\xa6\xce\x16\xf6\x2f\x51\x50\xdb\xce\xb6\x50\x17\xcc\x82\x3d\x92\x38\xe9\x80\x1c\x88\x7f\x5d\xec\x76\x6c\xa1\xb6\x98\xff\x14\x78\x0b\x0d\x10\x0d\x48\xbc\x10\x26\x00\x71\x7f\x19\x64\x80\xf8\x7b\x56\x98\xd3\x37\xa0\x39\xed\x8b\x1a\x4d\xff\xcd\x3d\xe8\x3f\xb0\x2f\x6a\xa0\xa9\x11\x6f\x0d\xc2\x62\x76\x7d\x7c\xc4\x92\xc3\x25\x8a\x12\xc4\x90\x47\xf2\x50\x9d\x22\xc3\x89\x0b\x89\x40\x6e\x8d\x44\xc6\xb1\x7d\x20\x6b\xa7\x8c\x18\xe1\x02\xe0\x4d\xb3\xa5\xb2\x00\xfa\x60\xe4\xb2\x78\x50\xf4\x8b\xe7\x36\x51\x5f\x3c\xb2\x3f\xd7\xa0\xe7\xb8\x20\x36\xa7\xb2\x77\x5f\x72\x6f\x15\xf7\xc1\xc3\xb9\x06\x6a\xda\xa1\xbc\x70\xa1\x10\x63\x42\xba\xf4\x14\x40\x23\xca\xa5\xca\x17\x7c\x42\xcb\x40\x01\x33\xf1\x6b\xa9\x4f\x07\xc7\xb8\x5a\x69\x80\x26\x9c\xab\x41\xf0\xf9\xab\x63\x2c\x59\x65\x9c\x50\xb4\xd0\x81\x4d\x6c\x8a\x42\x1d\x16\xa7\x36\x5a\xea\x90\x26\x72\xa3\x15\x2e\x32\x46\x2a\xd6\x38\xbc\x79\x8a\x1b\xfc\x01\x03\xe9\x06\x09\x36\x92\x0f\x64\x97\x2a\x69\x6d\x04\x4c\x57\x0a\x20\x3e\x3e\x48\x5c\x0b\x30\x13\x1f\x40\xda\x5a\x00\x1a\x19\x00\x0e\xdf\xa3\xe3\x8e\xcf\xa5\x89\xcd\x1c\xf6\x81\x95\x90\xe0\xcd\xae\xa0\x8f\x3f\x80\xce\xd0\x07\xa5\x55\x12\xb4\x81\x71\x3e\xa8\xaf\x12\xf0\x46\xba\x17\x0a\xa0\x99\xe0\x50\x81\x34\x50\xba\xd4\x28\x35\x90\xa8\x6b\xa7\x5d\x8a\xfd\xb9\xf1\x09\x23\xd1\xf3\xb5\xe9\x11\x9c\xfa\xf9\xc6\x04\x6f\x9a\xc6\x3c\x52\x77\x5f\x13\x64\xe8\xa9\x90\x38\x0d\xa1\xaf\xc2\x19\xa7\x17\x82\x12\xa4\x82\xda\x0b\xab\xe1\xf4\x41\x0d\x18\x80\xc6\x89\x80\x89\x92\x01\xd6\xb4\x32\xc0\xd2\x02\x68\x23\xd9\x2b\x83\x39\xea\x76\x3c\xe3\x83\x6b\x62\x7f\xd0\x44\xdf\x46\x63\xbd\x11\x12\x14\x2c\x15\x0f\x78\x16\x1e\x04\x86\x75\x69\x2a\x4e\x59\xcb\x30\x36\x2f\xdb\x5f\x80\x68\xb9\xba\xb3\xd6\xae\x81\xc3\x06\x52\xdd\xd5\x78\x9e\x10\xb8\x71\x79\x74\x32\x01\x81\x5c\x10\x7b\xc5\x1a\x57\xfa\x08\x84\x42\x71\x86\x07\xca\x20\x67\xbb\x8b\xd0\x6a\x0c\x1f\x78\x2b\x77\xe4\x6c\x2a\x61\xf3\x41\x75\x25\xf5\x92\xd1\x5c\x06\x28\x49\xda\x16\x39\x9e\x03\xf7\x56\xb1\x02\x34\x63\x97\x60\xa0\x90\x20\x85\x42\xee\x49\x6e\x50\x87\xc5\x5a\x01\x33\xe9\xd8\x62\x03\x9d\x6c\x94\x17\x20\x9b\xc1\x40\xac\x92\xb1\x94\x41\x59\x11\x16\x8a\x32\xd1\xe1\x6c\x78\xb7\x2a\x13\xad\xf9\xbb\x05\xc6\x4c\xeb\x13\xa1\x4c\xce\x29\xdd\xda\xc0\x13\x5f\x06\x7f\x28\x4a\xeb\xe1\x33\x28\xbc\xe4\xf0\xe4\x65\x42\x6c\xd5\xc6\x3e\xa8\xc3\x14\xf4\x30\xcd\xe6\x4e\x96\xf5\xa9\x85\xfc\x14\xff\xfc\x84\xf5\x01\x65\xda\xed\xd9\xbe\xf5\x11\x65\x81\xd9\xe7\x65\x0b\xeb\x03\x2b\xf9\x81\xfb\x2c\x25\xf6\x07\xd6\xf2\x03\xac\x52\xd3\x0a\xbf\x81\xa1\x9b\xa1\xae\xd3\x03\x07\x46\x7f\x98\x81\x80\x2e\x14\x68\x5a\xc6\x07\x87\x64\xfb\xfa\x90\x87\xe8\x0e\x0b\xbc\xc5\xaa\x9a\xa3\x20\x83\xfc\x97\x78\xb1\x13\x28\x10\xa6\x10\xb6\x40\x7d\x90\x15\x26\xe6\x19\x6a\xa7\x36\xb0\x24\x97\x5a\x4f\x43\x59\x08\x38\x1a\xae\x48\x79\x6f\x38\xcd\x07\x85\xe9\xc4\x10\x27\x03\x2f\xad\xaa\xf1\x84\x3c\x70\xcf\xc8\xe1\x54\x9f\xcd\x80\x20\xaf\xb0\x6f\x0e\x71\x35\x12\x68\xc2\x32\x14\x19\xde\xe4\xb5\x83\x42\x58\x46\xc4\x6c\x1f\xe5\xe8\xc1\xcf\x7a\xa3\x90\x6c\x9c\xff\x1a\xd4\x9c\x1f\x0c\x66\x15\x1e\x69\x95\x06\xeb\x0c\x32\xce\x07\x82\xee\xdb\x20\x18\xef\x69\x17\xd4\xa1\xe2\x3b\x57\x79\x83\x6f\x1f\xa0\x6c\xaf\x85\x33\xed\x1f\xa0\x76\xef\xd0\x54\x59\x82\xae\xe0\x60\x2f\x85\xfa\xb3\x57\x8f\xac\xdb\xc8\x90\xc6\xbb\x2f\xf2\xe6\x60\x5e\x3a\x70\x24\xdd\x42\xe2\x42\x11\xc0\xfc\x63\x52\xe0\x75\x62\xe0\xb0\xa4\xaa\xc9\x69\xc6\x5e\x7a\x7b\x30\xd4\x94\x81\x0d\x76\x1b\x55\xb5\x1d\x16\x9a\x28\x0b\x18\x4c\xb9\xa1\x27\xf0\xde\x02\x96\xe7\x36\xa8\x12\x7b\xa0\x34\xbc\xc2\x5d\x29\x0f\x54\x0c\x6d\xa5\x7a\x4e\x19\x8a\xc8\x53\xb4\x80\x82\x50\x81\x73\xce\x06\x0a\x0e\x08\x5e\xe0\xf5\xf5\x1e\x08\x13\x9a\xe3\xa1\x31\x14\xa5\x79\x40\xf2\x0c\x20\x98\xe0\xa1\x46\x74\x90\xf7\x24\x2f\x2a\xf6\x82\x52\xc4\x4b\xd8\xf1\x03\xaa\x00\xba\x99\x51\x79\x87\x3b\x75\xe0\x28\x24\x29\xb6\x5b\x82\x7b\x36\xd0\x59\x29\x50\x8e\x6d\x41\x91\x6e\x93\xe5\xfc\x2e\x4b\x9b\xaf\x04\xaa\x34\x8a\xea\x94\x19\x4e\xf9\x81\xc3\x4f\x0e\xbc\xce\x24\x41\x45\x6e\x0b\x1d\xc4\x92\x8a\x41\x84\x6e\x31\x1e\x28\x31\x3f\xb0\x3b\xb1\x22\xf4\x25\x01\x0f\x14\x98\xa3\xc5\xdb\xa0\x82\x29\x2f\x12\x7e\x95\x95\x08\x9d\x50\x73\x06\xb6\x99\x53\x94\x90\x59\xb5\x6f\xea\x1a\x37\xb7\x52\x6d\x2a\xf5\x72\xca\x2a\xc3\x6d\x24\xa8\x4f\xed\xd8\x8d\x81\x81\xf2\xd4\x53\x84\x52\x07\x6a\x53\xab\x93\xe1\xcc\x14\x1c\xa7\x27\xe8\xf6\xe7\xc7\x30\xec\x79\x89\xbe\x82\x10\x83\x90\xbe\x44\xc5\xcc\x8f\x41\x99\x4a\x66\xaa\xb9\x0c\xc0\x56\x1b\xa3\x27\x23\x01\x48\x82\xb0\xe3\x7f\x0c\xc4\x87\x21\x58\x5d\x94\xc6\xd1\x7c\x68\xa8\x28\xdd\xec\x4b\xa2\x04\xe3\x64\x00\xf6\x83\x7d\x51\xa3\x85\x09\xc1\x7c\x09\x03\x58\xf4\x38\x2f\x00\xd9\x95\xaa\x89\x1f\xf0\x2a\xa7\xb9\x12\x67\x62\x52\x0a\x4f\x10\xd9\xb6\x83\xbe\xea\xe2\xc1\xd3\xc3\x02\x77\x14\xd2\x44\x02\x99\x45\x55\x42\x8e\x06\x91\xf3\xc0\xab\x33\x1c\x98\x46\xd4\x36\xe8\x54\x41\x9d\x9f\xf6\x51\x4c\xec\x63\xf8\xa1\xe9\x29\xeb\x60\x7e\xa8\x90\xd6\xf6\xd9\xc7\x02\x29\x79\xe9\x21\xfb\x50\x20\x3d\xcf\x9f\x3a\x36\xfc\x3b\xbe\x23\x43\x05\xf8\x43\x23\x43\x81\x38\x8c\x36\xa3\x3e\x03\xa8\x3c\x29\xf0\xba\x1a\xf0\xb6\x18\x33\xc6\xb8\x8f\x04\xdf\x11\x63\xc1\x70\xfb\xb2\x31\x06\xb9\x90\x21\xc5\x1b\xca\x18\x20\x48\x80\xb2\xb7\x94\x8d\x59\xe6\xf9\x52\x01\x14\xd7\x2e\xa2\xa0\x2b\x05\xd4\x98\x90\x9e\xaf\x15\xc8\xf6\xae\x6d\x14\x76\x50\x39\x56\x6e\x87\x82\x80\x8a\xbf\xa6\x36\x94\x88\x7a\x20\xf4\xca\x8e\x46\x20\x58\x85\x72\xbc\x33\xd0\x04\x82\xfc\x04\xaf\xc2\x03\xf1\x36\x7b\x3b\x0b\x05\x01\x4b\xc0\xef\x76\x45\x81\x40\xdd\x40\x84\x1f\xdf\x27\xf0\x45\x30\xd1\x8c\x41\x6d\xc0\x16\xd7\x5d\x56\x61\x62\x68\x02\x18\x3a\x06\x1a\x43\x43\x9d\xdd\x91\x7a\x5f\x16\xcd\x0e\x9f\x4c\x02\x68\xa0\x68\x4d\x5e\x4a\x02\xb7\xcf\x0a\xaf\x7a\x01\x47\xa3\x0d\xbb\xa7\x00\x8f\xc8\xc1\x8e\xd4\x9c\xe8\xb6\x9e\x94\xd9\x09\x4d\x3a\x81\xf2\x4f\x6a\xfd\x2d\x70\xd2\x9b\x6d\x78\xc6\xce\x07\x86\xfb\x14\x95\xd1\xae\x8c\x4e\x68\x7c\x06\xac\x30\x69\xd0\x93\x62\x1f\x1c\x77\x9e\x0c\x87\xd8\x3e\x38\xe6\x4c\x8b\x3c\xc7\x5d\x05\x58\xbb\x41\x59\x81\x27\xf3\x06\x61\x3b\xa3\x19\x46\x1f\x54\x75\x94\x0d\xbe\xff\xf9\xa0\x9c\xe3\x01\x77\x6c\x42\xa8\xd2\x25\xf6\x9e\xb0\x0f\xde\x42\xaa\xf6\xe4\x0e\xdf\xd6\x3d\x18\xf1\x9c\x4f\x78\x11\x11\x49\x15\x20\xe6\x4c\xa1\x7c\x04\xee\xf6\xae\x28\x58\x62\x9d\x7d\xee\x1a\xcf\x25\x83\x97\x72\xee\xb3\x0a\x9d\x02\x28\x93\x3f\xf0\x4a\x2f\xe3\xb8\x83\x35\x49\xb3\x2a\x29\xf0\xdc\x8a\xbf\x05\xc7\x66\xe2\xeb\xf4\xfc\xbd\x39\xc3\x1b\x71\xfe\x76\x2e\x29\xe6\x09\x7f\x89\x14\xbc\xd8\xfe\xc0\x6e\xfc\x2f\x2d\x05\x2d\x6b\x90\xda\xa4\x0e\x35\x2b\xa4\xb5\x41\x07\x92\x25\x25\x74\x1f\xb5\x41\x0f\x2a\xb3\xcb\xea\x7d\x13\xdb\xde\x3b\x0b\x54\xa2\x51\xa8\x8d\x46\x2d\x0a\x16\x29\x03\xa3\x40\xd2\x3b\x7a\xec\xbb\x12\xb8\x31\x4c\x03\x1d\xce\x32\x91\x74\xae\x0a\x1c\x28\xa7\x41\x1f\xd0\x24\xd4\x54\xc9\x94\x86\x1a\xf7\x51\x2b\xea\xab\x6c\xb7\xbe\xfb\xe4\xc3\x3b\x00\x5e\x26\x29\x7e\x88\x08\x02\x85\xac\x4e\x0a\xbc\x7a\x0e\xbc\xa3\xc3\x6a\xe2\x9b\xd8\xf6\x16\x13\x78\xbb\xb3\x05\x46\xa1\x06\xe3\xf4\xd2\xe4\xb4\xad\x25\x10\xdb\x90\x1b\x8d\x3e\x53\x82\x00\xbc\x1b\xc4\xde\x9e\xc6\x0b\xf1\xfc\x25\xdc\x28\xd9\xdd\x49\x4c\xcf\xb7\x39\x1e\xbc\x82\x32\xf2\xec\x48\xc1\xe9\x16\x82\xd5\x38\xf9\x4b\x58\x8e\x9c\x25\x77\xa8\xe1\x00\xaf\xbd\x46\xf8\x92\x81\xb7\x5e\xe9\x92\xc5\x8d\xa9\xac\x78\xe5\xeb\x70\x16\x1e\x82\x2a\xf6\xba\x39\xc4\x39\x4a\x1d\xb8\xf2\x43\x00\xd9\x10\x82\x03\xfe\xd3\x09\xdf\x7e\xc0\x6b\xb7\x0f\xd4\xcf\x2b\x1e\x50\xeb\xb8\x82\x25\x11\x74\xd5\xf0\xd4\x38\x38\x7a\xa3\x5a\xd4\xa0\xeb\x0a\x0e\xdd\xd2\x32\x8b\x63\xc3\xae\x08\x5e\xb4\xa8\xee\xce\xb8\x35\x06\x2f\x57\x6c\x8b\xa6\x34\xf3\x01\x94\x9a\xd1\xe0\x38\xcf\x51\xd7\x61\x2d\xe9\x76\x8d\x06\xe4\xfe\x7a\xe0\xe8\x3d\xea\x42\x81\xbc\xf6\x03\xc9\x62\x7c\xa4\x81\x99\x25\x39\x96\xb8\xeb\x00\xdf\x73\x8e\x76\xfc\x1e\x5d\x74\x65\xd6\x89\xa2\x27\x96\x77\x6e\x7d\xf0\x6a\xf4\x7d\x76\x20\x78\xd9\x24\x48\x04\xb1\x4b\xcb\x50\x18\xe8\xb3\x94\xa9\x71\x53\x05\xbb\xc5\x39\xda\x17\xf8\x78\x44\x31\xd2\x68\x86\x08\xbe\xa5\x93\xe2\xaf\xeb\xfb\xe0\xc5\x3e\x01\x64\x51\x0d\x70\x11\x4c\xc5\xf5\x88\x34\xa7\xc2\x56\x11\x1e\xcd\xb1\x07\x50\x48\xe0\x5f\xd2\x75\x4b\xb2\x02\xdd\x73\x7c\x50\x1e\x96\x66\x3b\x3c\x31\x06\xea\xc2\x32\x7e\x77\xa1\xa1\xf2\x11\x14\x85\x0d\x80\xf6\xcd\x09\xd4\x85\xa5\xd4\xc5\xc5\xbd\x41\x50\x0b\xf6\xa2\x28\x0e\x39\xea\xb9\x81\x12\xb0\x98\x50\xd9\x4b\xf0\xb4\xd9\x42\x85\xb2\x2c\x4f\x0c\xfc\xd9\x9a\xe0\xc6\x3c\x5e\xca\x30\x36\x74\x20\xb0\x39\x15\x86\xd0\xd9\x8f\x81\x69\x22\xf7\xec\x83\x10\x86\xf2\xd1\x18\x26\x76\x68\x94\x61\xba\x26\xc8\x8f\xa1\xdb\x6b\x38\x73\x8d\x40\x38\x9a\x12\xbc\x54\xc1\x07\x61\xe3\x8b\x6a\xcb\x6f\xa3\x43\xc1\xc0\x59\x28\x89\xd1\x28\xc0\x07\x6f\xf0\x93\xc3\x09\x7f\xe9\xca\x4f\x25\x63\x68\xe1\x2c\x70\xe1\x76\xb8\x56\x02\xaf\x6d\x1f\xb1\x97\x7f\x78\x0d\x2f\x0a\x09\xb3\x31\x47\x96\x38\x31\xdb\x50\xe0\xb0\xfd\xf1\x07\x0a\xb0\x04\x86\x98\x5a\x44\x9c\x36\x20\x17\x79\x96\x12\xd3\xdd\x1b\x3e\x59\x49\x3e\x34\x9a\x7c\xf0\xc1\xf5\x4a\x67\xc3\x9b\xcc\xe0\x25\xac\x9c\x06\x39\x5b\x4c\xb0\x03\x2f\x50\x80\xcc\xfc\x0f\x40\xb1\x5f\x56\xbc\xdc\x17\xa8\xa3\x1d\x80\xa2\x20\xb6\x35\xe4\x86\xec\x44\xe0\xc1\x33\xd2\xe8\x78\x8a\xd0\x6c\x58\xe0\xc1\xb4\xfe\xb9\xa2\xf8\xa2\x14\x4f\x71\xa7\x30\xd7\x72\x24\x49\x9d\xb2\x0a\x1a\xf4\x24\x2d\x00\x2f\xc8\xb0\xbb\xae\x0c\xaf\xb0\x04\xe0\x85\x4d\xda\x47\x2d\x31\x1a\x9c\x07\xa0\x50\x2b\x67\x53\x41\x23\x95\x40\xba\x3f\x2e\xcf\x2b\xfc\x55\x68\x60\xfa\xf7\x59\x59\x57\xd9\x31\x6e\x72\x6c\x63\x0c\x7c\x78\x0f\xd7\xe1\x94\x9f\xd9\xb1\x07\x7e\x33\x40\x08\x1d\x9c\xa8\xa6\x2b\x8d\x82\x01\x31\xa6\x42\x5c\x51\x3f\x0e\x03\x03\x79\x51\x6a\xb8\x0c\x41\x44\x00\x32\x8e\x07\x1a\xe2\x34\xa8\xf4\xcd\xe1\xfb\xba\x77\x68\x5c\x05\x4a\x12\xb6\xd1\x7d\x61\xba\xaa\x07\x94\x25\xf0\x23\x43\x14\x46\x79\x87\x07\x85\x81\x97\xe1\x51\xbb\xd0\x99\xb5\xee\xc6\x1c\x7e\xcc\xa8\xb4\xd1\x9d\x97\xd4\x6a\xa3\x78\x5d\x46\x69\x44\x5f\x03\xf2\xe4\x97\xff\xf1\x71\x45\x0f\x32\x38\xef\x40\x29\xe0\x3d\x35\x75\xbd\x2a\xac\x03\x23\x05\xde\xf8\xc0\xde\x6d\x1d\xf6\xae\xee\x51\xfe\x76\x33\x1e\xaf\x02\x95\x62\xc7\x79\xc6\xb7\x10\x40\x7e\x16\x5c\x35\xd3\x0d\xc0\xe8\x45\x1f\x03\x4e\x07\xab\x42\x18\x7f\xa7\x08\x1e\x3e\x91\x28\x35\x5d\x27\x06\xdf\x33\x69\x4b\x11\xf0\xf7\x5f\x3c\x50\x43\x24\x5e\x22\xc1\x80\xc0\xe9\xb6\x38\xba\xb6\x80\x82\xec\x57\x96\xd4\x86\xeb\x74\xe6\xd2\xbd\x6b\x27\x5d\x00\xe8\x2e\x9e\xe0\xef\x67\x83\xb7\x43\x79\x11\x1a\x0a\x03\x6a\x4c\x4d\x20\xc0\x24\x65\xbb\x23\x5e\xa8\x01\x4e\xe2\x79\xa2\xc4\xe9\x4d\x35\xf1\xfe\x93\x05\x74\xe0\x78\x5a\xe0\xc4\xc1\x7b\xae\xb2\xa3\xf1\xa5\x77\x90\xa5\x88\x52\xfc\x32\xab\x41\xc0\xf0\x97\x6d\xe1\x15\x55\x86\x2b\x58\xa4\x3b\x2b\xf7\xcd\x76\x8b\x4f\x0b\x84\xca\xc0\x59\xe8\x35\x20\x42\xcd\x3d\xbc\x59\x93\x5d\x99\x79\xe2\x97\xa2\x8c\xd3\x11\xf3\xab\xad\xf1\x2c\x37\x7c\x2f\x8a\xbf\xc4\x64\x4c\x87\x2b\x2f\x31\x99\xe0\xb4\x97\x98\xcc\x80\x83\xdc\xdd\x11\xd5\xca\x9c\xca\xec\x3e\xc2\xcb\x1a\xd6\xf0\xf0\x66\xf4\x46\x50\x96\xb3\x6d\xaa\xca\x70\xa7\x21\xbc\x85\x94\x6d\x3f\x36\x6b\x02\xaa\xd3\x28\xd2\x51\xe8\x35\xb4\x3d\xa5\xb5\x46\x16\x44\xe8\x79\xb1\x73\xb8\x8a\x8c\x57\x76\xcd\x6a\x3c\x5c\x86\x37\x92\x3d\x64\xd4\x0d\xc2\x13\xb0\xf0\xf4\x53\xdc\x0b\x66\x7d\x43\x16\x18\x5f\x93\x19\xdd\x84\x32\x8c\xdb\xe5\x64\x49\xc9\xee\xc3\x33\xa5\xfd\xe1\x8d\xac\xfb\xd4\x56\xab\x0b\x0b\xd6\xd9\x0b\xf3\xfb\xa2\xc4\xdf\x08\x02\x13\x27\xf8\x25\x6b\x20\x39\xcf\x40\x9c\xee\x85\x1c\x00\x1d\xaf\x85\x64\xb7\xea\x8c\xbe\x86\x00\x5f\x00\x93\x1e\x70\x78\x09\x4c\x82\x1f\x7d\x11\x4c\x82\x76\x78\x19\x6c\x97\x17\xa8\xc3\x0c\xef\xa2\x78\x28\xe9\xc6\x84\x5a\x1d\x50\x82\x13\x97\x19\xd9\x26\x78\x59\x2b\xbc\xb3\x82\xdd\x61\x8f\x4e\x02\x94\xbe\x6e\x29\xff\x51\x95\x00\x65\xd9\xd4\x1a\xaa\xde\x50\x45\xb7\x69\xc3\xe5\x13\x89\x7c\xbe\x3d\x6b\x50\x81\x49\x94\x4b\x67\x0a\xd5\x77\x3b\xb2\xc0\xc1\xf1\xa0\x96\xba\x5d\x78\xa1\x41\x0a\xf3\x8a\x0d\xae\xfb\x29\x3c\xfb\x2e\x4b\x53\x69\x18\x08\x57\x59\x52\x1c\xac\x77\xbf\x07\xb1\x4f\x54\x5a\xde\x31\x82\x2f\xcc\xf5\xb0\xa3\xef\xcc\xf5\x90\x0e\xaf\xcd\xf5\xb0\x2e\x6f\xce\x91\x23\x0f\xf4\xf0\xc3\x68\x78\x79\x30\xbb\xc6\xbc\x12\xdf\x59\xc4\x40\xe1\x76\x40\x47\x35\x54\x11\x7a\x20\x40\xa7\x2b\xcb\x92\xbc\xf8\x7d\xca\x1b\x19\x1d\xb5\x4b\xe8\x09\x16\x81\xe7\xdb\x34\xde\x37\x68\x03\x38\x63\xe4\xe6\xc6\xed\xe6\xe9\xe8\x40\x87\x35\xa4\xc9\x60\x8d\x20\x8d\xd1\xee\xf0\xcb\xef\x40\x81\xe0\x96\x4d\x83\xc6\x0e\x2f\xf0\x4b\x6f\x40\x8d\x20\x0d\x94\xc7\xae\x73\x19\x39\x4f\xdb\xca\x7e\x6f\x83\x1f\x25\xc2\x57\x90\x22\xe9\x5a\xab\x3e\x60\xc3\x02\x85\xae\x93\x1f\x04\xd2\xc7\x50\xcc\x20\xd9\x7d\x32\xed\xa4\x3e\xc8\x10\xb0\x77\x92\x4e\xe8\x35\x48\xf0\xb5\xa4\xa1\xda\x7b\xdb\x18\x2e\x82\x1c\xcc\xd5\x1f\x0d\xa9\x0c\xd2\x0a\x2f\xaa\x8b\x6a\xd6\x6a\x82\x03\x7a\xc2\xee\x95\x44\xa7\x01\x6e\x58\x3a\x64\xec\x5a\x28\xd3\xe5\xcb\xb0\x7a\xb7\x07\x34\xef\x91\x73\xe9\xda\x21\x82\x5f\x48\x37\x87\x17\xa5\x97\x3b\xc3\x3d\xdb\x1e\x16\x00\xa2\x90\x20\x14\xe1\xb1\x91\xdb\x75\x8d\x4c\xca\x22\xfc\x68\x01\x54\x54\xd3\x35\x46\xa5\x05\x78\x0d\xa4\xc1\xab\x3c\xc0\x89\x72\x8c\xbf\x90\xb9\x00\x89\x00\xbc\x9c\x04\x7e\x39\x00\x1f\x05\x04\xa9\x47\xd5\xaf\x7e\x71\x52\x5b\x4a\xfc\x96\x1e\x58\x4b\x52\x80\x62\x92\xfe\x31\x34\xc3\x05\xcb\x4b\xee\xca\x07\xe5\x99\xf1\x82\x93\xb8\xc6\x76\x3e\x78\x1c\x9d\xe5\xda\xee\xbd\x27\x7f\x8c\x56\xa0\xd4\xf8\xc5\xe7\xc0\x65\x7d\x34\x1c\xc1\x01\xaf\xbf\xa8\xc7\x93\x0e\xf0\x1e\x10\x9e\xe4\x45\xef\x19\x82\x77\xa9\x3f\x64\xd3\xd1\xfb\xc9\x69\x10\x95\x36\xa6\x5d\x0b\x5e\xaf\xf8\x7f\xe6\x73\xfc\x68\x60\xa0\xea\x81\x64\x2f\x0d\x77\xe6\x0c\x73\x8d\xb3\x63\xc1\x3f\x25\x84\x52\x0f\x2e\x57\xdf\xb1\x4f\x40\x9f\xf0\xa3\x77\x10\xa9\x89\x5b\xfe\x72\xc3\xc1\x1d\x28\xb7\x65\xf7\xbe\xd7\x86\x13\x58\x02\x6f\x43\x78\x60\xd9\x30\xfc\x75\x10\xf8\xe6\x66\x8d\x97\x8a\x03\x54\x09\x26\x72\xf0\x3d\x81\x41\xe4\x4c\xd2\x25\xf2\x1d\xe3\x57\xb7\x0e\x2f\x4d\xbb\x5c\xe1\x9a\x12\xf6\x15\x03\xfc\xca\x5e\x78\x61\xe6\x3d\xc1\x2f\xc3\x91\x2f\xba\x44\x57\x12\xde\x74\x79\x20\x25\x75\x19\xf1\xeb\x23\x41\x35\x2d\xbf\x9d\x93\x7d\xd8\xa4\x40\x37\x5b\x4e\x4c\x7b\x67\x00\x8a\x0a\xdc\x7d\x63\x45\xc4\x28\xb6\xe1\x59\xc9\xf3\x37\xcf\x70\x2d\x31\x41\x3b\xa5\x94\xc6\xab\xea\xb2\x40\x93\xd0\xf0\xae\x4b\x0e\xe9\x78\xc7\x25\x87\x75\xbe\xdb\x12\xd0\x70\xd1\x00\xed\x23\xce\xe3\x1c\x89\xc1\x99\x0a\x40\x05\x65\x5f\x45\x56\x6c\xb7\x59\x92\x45\xb9\x04\x08\xbc\x80\xa1\x98\x0a\x87\x84\x01\x37\x7a\x3b\x1b\xab\x49\x9a\x35\x99\x78\xed\xf5\x95\xfe\x2d\x2b\xf4\x93\x57\xf8\x37\xb3\x0e\xd1\xcb\x69\xfb\xa5\x7b\xcf\xfb\xfb\xad\xf6\xf1\x33\x7e\xdf\xea\x89\xba\x02\xec\x0b\x67\x87\xdd\x30\x6a\x37\x06\x47\x3e\x50\x33\xa1\x40\xd7\xc3\xaf\xea\x7e\x27\x43\xaa\x03\x82\x2f\x4d\x71\x24\xe2\xeb\xf2\xe2\xe9\x6b\xb5\x61\xf8\x98\x17\xff\x4a\x30\xeb\x1e\x3e\x42\xde\x3f\x21\x37\x55\xdd\x77\xc7\x53\xb2\x8d\x9a\xbc\xbe\x05\x1f\x2a\x17\x64\x73\x26\x81\xe7\x61\xc3\x30\x1d\xd8\x08\x67\x05\x79\xcc\xf1\xd5\xc5\x49\x94\x81\x4b\x44\x69\xad\x3d\x66\xbd\x87\xa2\xc7\x7b\xd8\x67\xa5\x24\xe6\xdb\x16\x98\x3e\xcd\xe9\x11\x0b\x8d\x90\x84\x75\xf4\x54\xa1\x9d\x1d\x61\x58\xe7\x45\xb4\x09\x04\x9c\x3c\xf1\x39\x2f\x84\x3c\xac\xa3\x27\x0f\xed\xec\xc8\xc3\x3a\x2f\x22\x4f\x20\xe0\xe4\x71\x5d\x90\xe8\x92\x5a\xde\xfb\x87\xde\xd6\x0d\x65\xee\x79\xef\x1f\xca\xc7\xe7\x67\x73\x3f\x60\x1f\xe6\x13\xd4\x77\x1f\xbc\x56\x66\x2c\x35\x0f\x73\x85\xcd\xd2\xd0\x6a\x17\x8e\xa9\xe2\xa8\x5a\xd5\x96\xbb\xba\x4f\x74\xb3\x6f\x8d\x55\x05\xf5\xcd\x94\x2f\x7c\x73\x72\x87\xcf\x70\xf7\x03\xcb\x4d\xd5\xab\xbe\x34\x50\xe8\xb2\xdb\x63\x2d\x67\x15\x5c\x13\xf3\x30\x26\xde\x86\x9e\x57\xb6\xac\xdd\xe6\x4d\x06\x97\x12\xfc\xee\xb9\x03\xdb\x3a\x26\x83\xb6\x4a\x6b\xc0\x9e\xac\x10\xc3\x67\x31\x7a\xd1\x7d\x54\x4b\xac\x80\x0d\x3d\x7e\xa9\xb1\x23\x0d\x36\x4a\xdc\x91\x3b\x30\x1c\x82\x48\xf5\x93\x7c\xe4\x80\x6f\x1f\xe8\x47\xe2\x8d\x9c\xe6\xef\x28\xa6\x16\x95\x03\x5f\xd3\x6c\x29\xe0\x19\x2e\xf6\x79\x4a\xe5\x2b\x81\xad\x5e\xfc\x2b\xa1\x01\x73\xf5\x8f\xff\x78\x8b\xc1\x4d\x04\xfe\xb7\x7e\x6f\x47\xb0\xa3\xf0\xa4\xe7\x79\x9b\x0d\x81\x87\x13\x40\xd7\xb7\x10\x1f\xf0\x07\xf2\x03\x5a\xaa\x57\xfc\xe7\x0d\xc3\x21\x63\xf0\x07\x82\xda\x8f\x17\xfa\x2d\x4a\xde\x8f\x20\x46\xda\x3b\xf4\xbc\x4b\x99\x9f\x8e\x5d\x62\xaa\x8f\x4d\xe0\x86\xd5\xae\x88\x2f\x41\x22\x73\x01\xbd\xaf\x64\xe4\x9e\x50\x5f\xc2\x5d\x18\x48\xb3\xdc\x54\x49\x2c\xe5\x1f\x70\x94\x68\xee\x65\x9f\x1d\x41\x4a\x9b\x52\xf7\x53\x92\x66\xd8\x3c\x6c\x51\x43\x1b\x93\x64\x21\xa1\xf3\xf0\xf4\x52\xfa\x7e\x25\xf8\xda\xe3\xca\x5f\xf0\x0f\xae\x76\x52\x5a\x67\xc7\x33\xdc\xa3\xfb\x9f\xd2\xd8\xb0\xb9\xdf\xb4\x41\xdb\x30\xf6\xda\x33\x8f\xcd\x3f\xf4\x1a\xac\x97\xbd\x86\x88\xef\xc3\xf6\xa3\x80\xdf\xd2\xe8\x52\x7b\x37\xbc\xd4\x38\x8c\xef\x87\x16\x02\xba\x6f\xcd\x76\x04\x88\x12\x13\xc8\x63\xd0\x20\x33\x5f\xea\xe8\xd9\x2f\xb5\x82\x05\xf0\xcc\x44\xf4\x9c\x6f\xbf\x60\xdb\x0f\x01\x7e\x4b\x43\x4b\xed\xdd\xc8\x52\xe3\x30\xf0\xc2\x32\x7b\x7f\xd6\x2e\xfd\xa2\xa3\x80\x7f\xf6\x76\xd8\x2b\xbb\x5f\xf2\x0e\x3a\xb4\xf6\x9b\xe7\xd0\x34\x8c\xbc\xb4\x4d\x79\x26\xc6\x0d\x36\xdd\xc8\xe2\x33\xb9\x83\x83\xdb\xa0\x33\x87\xcd\xdd\xe0\xb0\x0d\x4a\x9d\x6d\xf4\x85\xba\xec\xdd\x67\x75\x87\xe5\x85\x2d\xf2\xc2\xcb\x3d\xfd\xca\xcb\xcd\x03\x25\x9b\xa5\x8d\x12\x55\xfb\x3a\xb3\xd6\x83\x78\xfd\x57\x6b\x27\xd3\xf6\xe3\xb0\x03\x1c\xa4\x4b\xa1\x07\xd9\x72\xa5\xad\xab\xc7\x2a\x90\x4e\x66\x03\xea\xe3\xa9\xa9\x2d\x01\x54\xf7\x89\xd9\x0e\x5d\xf1\xd2\xd4\xb5\xcd\x09\xe8\x3b\x54\xb0\x1d\x3e\x06\xc1\x45\x84\x05\x7d\xaa\xf5\xea\x6a\xa0\x6b\x22\xa8\xeb\xa8\x57\x23\xa7\x8e\x00\x8a\x9d\xa3\xbb\xf1\xfb\x26\xf1\x73\xe2\x4d\xf8\x1a\x30\x6a\xe4\x16\xf9\x57\x97\x9b\x03\x5f\xd4\x8d\x4e\xd3\x3d\x5d\x44\x7e\x06\x33\x05\x64\x06\x61\x78\xdd\xfd\xcf\xbb\x12\x1f\xce\x15\x2e\x33\xdf\xf5\xa4\x6f\x28\xcf\x02\xba\xde\x74\x27\xe2\xeb\xbb\x8d\x0e\x59\x7e\xbe\xf9\x32\xaa\x8b\xeb\xb7\x3f\x23\xf9\x3d\x61\xfe\xf6\xe4\x6b\xd2\x90\xb7\xaf\xdf\x2f\x69\x08\x7c\xdd\xb7\x5e\x57\x34\xe4\x9c\x56\xa4\xcc\xb6\xb7\xa7\x28\xe5\x6f\x2c\xcf\x96\xab\xf5\x92\x29\x11\x5d\x3e\xb6\xbd\x0d\x71\x2a\xff\x0c\xf7\x2d\xee\xa9\xce\x17\xd7\xf3\xe5\xf5\x7c\x4d\x9d\xd5\xf0\x0a\x67\xb7\xe2\xc2\x40\x65\x95\x3f\x30\x2c\x24\x44\x8d\x8f\x27\x33\xbf\x9a\x90\xa8\x22\xd7\x6c\x19\xc4\x97\x7d\x61\x1b\xc7\x2d\x43\xde\xbe\x61\x74\x03\xe4\x10\x15\x03\xf9\xb9\x01\x92\x4a\x7f\x4e\xa9\x14\x26\x64\xcf\x2f\x0b\x7b\xa5\x73\x64\xa1\xc9\x1f\x7d\xfe\x50\x3c\x3e\xe9\xb1\xea\xa9\x43\x46\x3c\x8b\x77\xdd\x37\xf3\x0c\x60\xab\x0e\x90\x09\x12\x9e\xf9\x95\x2c\x15\x11\xfb\x67\x5c\x74\x9d\x67\xec\x83\x65\xfc\xba\xd8\xf6\xbf\x7c\xb8\xf7\x44\x22\xa6\x4b\xc2\xe8\x1f\x02\xef\xd2\x32\x6f\xbf\xad\x7f\x13\xbc\xd5\xdc\xe9\x6c\xd9\x1a\x61\x2a\xbc\xde\x84\x19\xb7\xa1\xa1\x0b\x0b\x7a\xc1\x1b\x1c\x6c\xa9\x0d\xf3\xb4\x3b\xa9\x9f\x51\x35\x33\x07\x68\xd6\x79\x45\x5b\xea\xb3\xfd\x37\x4e\xab\x93\xcd\xe8\x48\x8d\xb8\x50\x89\x86\xba\x99\xc7\x29\x3b\x3f\x9c\xcc\x96\xd5\x84\xd9\x94\xa8\xbc\x1d\x05\xd0\x30\x4d\x33\x3a\x35\xf1\x57\x42\x45\xa2\xa6\xa6\x77\x4b\x3d\x46\x3a\x39\x07\x10\x0b\xbb\x5b\xd1\xfb\xdb\x6a\xc9\xfe\x4d\x40\x82\x0c\xfe\xdd\x01\x57\xf5\x39\x27\x37\x7c\x71\xba\x26\xc1\x9a\x99\x88\x9f\x7a\x39\xf4\x38\x0f\x99\x01\x83\x29\x37\x55\x33\xb6\x45\xd2\x54\x40\x31\xf8\x6f\xa3\x66\x0c\xf6\x6f\x1e\x5e\x69\x36\x13\x51\x0d\x5c\x33\x34\x02\x46\x2d\x0b\x4e\xe1\x65\xa6\x08\xd9\x0b\x95\xd1\x15\xbb\x64\x1c\x74\xdc\x7e\x39\x8c\x85\x18\x33\xf3\x80\x6e\x96\x4f\x1a\x75\x46\xca\x92\x9a\xf5\x76\x29\xd5\x34\x2c\x5b\xb0\xe5\x76\xa9\x88\x20\xf1\xe2\x45\xbc\x68\x17\xf2\x6f\x69\x1c\xac\x83\xb5\x79\x05\xe1\x08\x13\xc7\xb5\x60\x1b\xfd\xda\x63\xff\x5f\xb2\xd3\x2a\x2a\x0b\x87\x5d\x31\x8c\xb0\xcc\x09\x0d\x5f\x85\xcb\x67\x66\x5a\x86\x01\xa1\xdb\xfc\x1c\xf0\xb8\xcf\xb2\x45\x06\x8c\x81\xe4\x15\x4a\x82\x00\x80\x40\x5e\xc5\x96\xcb\x07\x60\x9d\x8b\xe5\xc1\x47\x65\x19\x1a\x7a\x74\x9a\xc4\xc1\xfa\xb0\xa5\x74\xa1\xe8\xac\xcb\x3a\x98\xa0\x85\xeb\x2d\x06\x6f\x13\x2f\x3a\x55\x6d\xb6\x80\xda\x4a\x33\x0d\x72\x66\x88\x0d\xc1\xd2\x3a\xa6\x41\x24\x54\xca\x30\x9e\x6d\xa2\xac\x10\x8a\x27\x48\x38\xce\x41\x2d\x47\x20\x27\x10\x3e\x3b\xee\xa9\x5b\x3b\x86\xfc\x22\x6b\x09\x5d\xf2\x59\x88\x09\x0d\x8a\x7a\x44\xa2\x9f\x82\xd1\x41\xb6\x55\xb4\xba\xf4\x28\x87\x35\xba\x67\x22\xc5\x18\x30\x02\x11\xf9\x27\xee\xae\x78\xb7\x72\x62\x8c\xfe\xd1\x3d\xc1\x22\xa7\x36\x95\x49\x63\x0a\x11\x91\xd2\x8d\xb8\x3f\x14\x0a\x95\xad\x9f\x05\x8d\x43\x48\x20\xff\xf0\xb0\x08\xa1\xc5\x34\x99\xcd\x75\x77\x5f\xed\xc3\x79\x40\x55\xae\x7e\x87\xdf\x73\x70\xf5\x8a\xbf\x84\x40\xa9\x21\xf7\x74\x76\x15\x30\xe8\xfd\x43\x13\x59\xc6\x5b\x7d\x01\x73\x53\x64\x5a\x1f\x8e\xfb\x80\xd7\x78\x5f\xeb\xf7\xb6\x79\x51\x7d\x35\x70\xfe\x87\x3d\x93\x39\xbf\xdb\xc4\x1f\xeb\x99\xf6\xd9\x54\x69\x2c\x36\x59\x69\xfd\xdb\x79\xeb\x90\x43\xd2\x9f\x41\x33\x94\xd4\xb7\xa1\x0b\x68\x4b\x16\xcb\x26\x41\x3c\x39\x64\x21\x85\x63\x4b\x1d\x2f\x4b\x28\xc8\x7d\x33\x35\x91\x63\x1d\x44\xa6\x53\x1d\xcd\x85\x4e\xc4\x74\xa1\xab\xaa\xd8\x30\xdf\xba\xe2\x83\x67\xf3\x7f\x5b\x46\x74\x92\xef\xb7\x79\xb9\x98\xe4\x9d\x6a\xbf\x27\x7e\xbe\xd2\x32\x0d\x9e\x9c\x69\xf0\xb4\x4c\x83\x27\x65\x1a\xfa\x5f\xbd\x36\x82\xb4\x50\x9f\x10\xd4\x07\x16\x8a\x90\x14\xe5\x91\x94\x57\x3d\x2b\xf8\x9a\xaf\x86\x10\xa2\x6b\x6f\xf3\xd3\xa0\x4b\x47\xcc\x31\xf6\x4c\x17\x98\x27\x2d\xc4\x5b\xbf\x5f\xc9\xdd\xe2\xa0\x60\xe8\x7d\x4f\xda\x79\xf9\x8a\x30\x7d\xec\xc4\x86\xd2\xc5\x1b\x7b\xcb\xd1\x75\x08\xc2\xe4\xbe\x37\x4d\x5a\xbb\x52\x80\x14\x0e\x62\xa2\x45\xee\x44\x8e\x47\x7a\xd4\x92\x34\x76\x0a\xc2\x05\x4d\x9d\xbb\x8c\x53\x72\x26\xcc\x43\xcb\xa2\x3a\x42\x84\x3e\xc9\x67\xf0\x7b\xd2\x0a\x56\x8b\x94\x49\x15\xb3\x01\xad\x12\xd1\xbf\x40\xea\x1c\xc4\xb5\xd6\xdd\x81\x0a\xba\x34\x0d\x75\x15\x5b\xcb\x4e\x09\xbb\x52\x88\xc1\x8d\x78\xa8\xea\xb2\x11\x33\x50\x72\x30\xc8\x7b\x18\xda\x39\x3f\xe4\x7b\x1e\x5e\x61\x3a\xe4\x43\xae\x59\xa0\x1a\x35\x0d\x19\x7b\xd8\x3a\xf1\xd6\xcc\x3d\x89\x3e\x8e\x1d\x33\x9b\x4f\x9d\xb0\x40\x28\x4d\x55\x6c\x15\xfd\x4c\x3b\xb9\x64\xa7\x5f\x56\x61\x52\x80\x39\x1f\xa4\x27\x90\xed\x48\x9c\x0c\x27\xfc\x5a\xd8\xf6\x51\x91\xfa\xb8\x36\x75\x0c\xe5\x31\xc0\x62\x6b\x09\x6b\x2d\x53\xad\xa6\xa8\x39\x00\xb4\xf9\xd2\xfe\xde\xe7\x59\x58\x23\x4b\xa0\x1c\xaa\xbe\xab\x45\x26\x3f\x80\x01\xbe\xa1\x0d\xe5\x09\x2c\xea\xfe\x78\xc2\x76\xd2\x6f\x5f\xda\xb0\xb2\x71\xe6\x7b\xb9\xe8\xd6\x76\x8d\x7f\x9b\xe9\x74\xa7\xc7\xc4\x22\x97\x87\xaa\x27\x3e\xdd\xbd\x33\xa3\x94\x66\x5c\xc8\xc9\x76\x6c\xf5\xe4\xfa\xe2\x49\x00\x04\xcf\x9c\x0f\x3c\x26\xbf\x20\x6e\xd0\x5d\xbf\x0e\xb7\x2e\xc6\x2e\x70\x95\xfb\x03\xb6\x95\x70\x19\xea\x86\xdf\x8c\x3d\x70\xdf\x89\x3c\xf8\xd0\xe5\xa4\xc2\xa7\xd5\xba\xa9\xcb\x7c\x74\x65\x84\x37\xed\xcf\xa1\x81\x7f\x9b\xa3\xef\x23\xb7\xb6\x4a\x88\xf7\xbd\x31\x73\xad\x62\x6e\xa7\x26\x62\x30\xd5\x52\x88\xba\x09\x0e\x80\xd4\x46\xc8\xe5\x09\x2a\x54\x57\x44\x20\x9d\x9f\x62\xde\x3c\x3f\xa1\x57\x7b\xfb\x43\x78\x78\x06\xaf\x01\x05\xb2\x03\x2f\x0e\xbd\x35\xa8\x85\x4c\x49\x7f\x26\xad\x01\x2a\x13\x13\xfb\x2d\x5e\xe2\xb4\xa7\xbb\xd4\x94\x57\x06\xd1\xf5\x7a\x28\xa3\x93\x92\x6d\x50\xcb\x04\x69\x08\xcf\x00\xc0\x01\xb3\x0f\x3c\x45\x2d\x87\x4b\xd6\xec\x9f\x9a\xc3\x6d\x1b\x07\x68\x51\x9e\xc3\x45\xb1\x3f\xfe\x0c\xd7\xf3\x39\x33\x23\xfc\x3f\x48\xe6\x7e\xd9\x1e\xc6\xf2\x64\x03\x0d\xd9\x0f\xe2\x79\xce\x87\x07\x41\xfe\xca\xf3\x9e\x7c\xd8\x39\x72\x78\xd9\x77\x0f\x1c\x96\x94\x56\xaa\xae\x02\x30\x7a\x91\x51\x57\xb0\x15\x0d\x4b\x85\x64\x04\x78\xc7\x7b\x91\xd2\x75\x2b\xe5\xd8\x60\x4a\x07\x99\x1b\xa3\xb8\x4b\xc7\xa8\x13\x53\xfb\xe0\x98\x37\x7b\x56\xcd\x88\x45\xcd\xef\x65\x87\xae\x0e\x82\xf9\x26\x60\x17\xc7\x2b\xaf\xbb\x32\xba\x99\xbf\x5c\x2e\xb5\xa0\x5d\xa0\x84\x19\x55\x29\x82\x9e\xcc\x56\xe1\x10\x70\x74\xd0\x29\xa9\xa3\xcc\x20\xdc\x7a\x75\xb0\x26\x1d\x4a\xcd\xd8\xc0\xc1\xb5\x3e\xc8\x04\xfa\xc5\xa2\xb4\x42\xa7\x87\x5f\xbe\xc2\x01\xaf\x25\x04\xec\xe6\x15\x2c\xdd\x63\x28\x6b\x1b\xca\xfa\x50\x4b\x34\xb2\xd2\xcf\x91\x62\x89\x58\xf3\xd2\x57\x5d\x68\x3a\xb0\x23\xe4\x75\x26\xdd\x66\xdf\xde\xae\xfc\xde\x20\xd5\x52\x4e\x2c\xd8\xf8\xcb\x2e\xa4\x10\x97\x67\xd3\x4d\xa4\x22\xbb\x03\x75\x97\xf9\x33\xac\x12\x9c\x07\x0d\x7d\x2f\xc7\x22\x55\x3b\x5f\xf0\x9c\x31\x84\xb6\x53\x20\xaa\x12\x9f\x40\x02\xf6\xa0\x39\x57\x31\x54\xd1\x63\xf8\xda\xb1\x2c\xb3\x32\xee\xcf\x63\x38\x6d\x64\x1a\x13\x27\x32\x56\xcd\xf6\xfd\x53\x84\xcd\x1d\xc0\x15\x5c\xf8\xa0\xd4\xd4\x5e\xe5\xa4\x86\xef\xff\x02\xa3\x69\x41\xad\x96\x84\x22\x43\x89\x6f\xa6\x89\x49\xa2\x66\xcb\x82\x0e\x16\x23\x6d\xe8\xff\xa3\xb1\xae\x69\x6f\xc4\xb6\x25\x78\x12\xdd\xee\x7f\xf8\x4e\x37\xe9\x7f\x86\x5a\xee\x45\xda\xbd\xd0\x43\xcf\x61\x82\xac\x54\xcc\xd9\x2c\x2a\x86\x79\xa8\x77\x00\xb4\x4c\xfa\x5f\xd3\x11\xd2\x50\xb7\x54\xa2\xad\x33\xdb\x80\x2b\x72\x19\x87\x46\xc1\x74\xd6\x8f\x0d\xd8\x63\x70\x16\x2e\x8c\x4b\x66\x75\xb4\x03\xaa\xdd\xff\xaa\x26\xb2\xe5\xea\x77\x09\xbd\x7a\x4e\xca\xbe\xf8\x90\xb6\x3e\x57\xa4\xf3\xec\x02\xc2\xba\x17\xd1\x50\xfa\xcc\xa5\x3a\xd2\xde\xc0\x85\x91\xff\x45\x89\x26\xbf\xbe\x33\x0d\xbd\xbf\x5f\x4d\xfa\x86\x5f\xde\xe1\xbf\xcb\xa2\xa6\x3f\xde\x99\x2e\xc2\x94\xec\xae\x78\x3a\xe2\xe9\x4f\x3f\xe3\xc9\xf6\x4c\xa5\x1c\xce\xb0\x40\x81\x8e\xd9\xd1\x44\x7d\xca\xee\x7c\x36\x5c\xc2\x9a\x1c\xfe\xeb\xcd\xed\x9e\xc3\x5a\x0d\xa7\x4b\xfa\x52\x5d\x5a\x7d\x34\x15\xef\x27\xc8\x7b\x67\x88\xfa\xda\xdb\xed\x16\x98\xb2\xb6\xe4\x26\x1c\x66\xdc\x4a\x20\x28\xbf\x99\xb2\xda\x1b\xf6\x3f\x6f\xa2\x96\x95\x99\xde\x72\x90\x52\x78\xc8\xe1\x18\x7e\x14\xd9\x1f\xb8\x23\xa7\x67\x6d\x25\xf3\x40\x27\xfb\xf3\x71\xca\xbe\xf0\x01\x0b\x3c\xe1\x0a\x8c\xd6\x18\xe2\x55\x83\x4e\xc5\x01\xda\x2c\x47\x97\xec\xad\xb7\xfa\x09\x8b\xe9\x77\xc4\x4f\xfd\x76\x72\xfd\x59\xac\xe7\x5a\xa1\x30\x78\x0a\x74\x99\x44\x9d\x1b\x52\x69\x55\x76\xfc\x32\x83\xb4\xbb\x97\x15\x46\x04\x29\x23\xc3\x4c\xe5\x50\xe3\x8d\x2d\x8b\xc6\xef\x89\xfd\x54\xbc\x37\xb9\x3c\x8b\x09\x8e\x29\x84\xcb\x0c\x72\x97\x78\x14\x2e\xa7\x34\xb5\xb4\xf4\x35\xda\xda\xca\x80\x9a\xb2\x36\xe0\x68\xa1\xc1\x1a\x5a\xd9\xef\xbe\x8a\x96\x35\x1a\x5b\x43\xe6\x73\xea\x05\x19\x1a\xe9\x2d\xf3\x5b\xd3\xa3\x9c\x2b\x42\xff\x51\x4b\xfe\x4f\x87\xec\xff\xb4\x4b\xe5\xc3\x07\xc6\x0f\x00\xfa\xc7\xd8\x25\xec\xec\x3a\x1c\xd9\xc6\xf4\x0b\x3f\x54\x87\x53\x8b\x28\x14\xac\x93\x46\xe6\xa2\xb5\x6a\x09\x7b\x59\xe5\x07\xde\x05\x5b\x2f\xa9\x82\x30\x96\xe4\xfa\x6d\x99\x07\x9c\x83\xab\xd1\xe7\xbb\x5c\x5b\x77\x70\x99\x9d\x30\x96\x5c\x7a\x13\x9f\x97\xca\x8a\xff\xab\xd0\xed\xa8\xea\xaa\x0d\xd3\xd7\x88\xd3\x4c\x3d\xca\xe4\x9d\x29\x7b\xd5\x61\x32\x15\xe3\x5d\xc9\xc1\xed\x94\x37\xca\xae\x12\x7f\x88\x3f\xf3\xcf\xee\x19\xd5\x6f\x0a\x94\xb4\xa6\x38\x28\x15\xe3\xb3\x03\x36\x85\x02\xc6\x44\x86\x0c\xc5\xd9\x1d\x66\x69\xee\x19\x42\x87\x5a\xe9\x6f\xf1\xa5\x7e\xa1\xf3\xa6\xc3\x1a\xbd\xa5\xbe\xdf\xd6\xf7\xd4\x34\x2f\xc6\x8f\x56\xe2\x86\x17\xd1\xba\x0d\x6a\x4c\x5e\x24\x69\x71\x90\x17\xdc\xac\xb0\x8b\xfa\xba\x77\x53\x25\x49\x19\xde\x5d\x79\xcf\xa0\xe5\x92\x27\xd1\xbf\x37\x23\x21\x54\xa4\x0f\xe2\x34\x0b\xe6\xcc\x0b\xa1\x64\x62\x58\xad\x1c\x95\x47\xb9\x50\x18\xa7\xed\xe8\xb8\x3c\x8a\xa0\x45\xce\x43\x80\x68\x44\x8b\xb5\x5f\x81\x3a\x23\x9d\x6f\xbd\x75\x14\xbe\x48\x57\xc6\xd4\x05\x4a\x3c\x87\xe6\x23\xe1\xdb\xf0\xa6\xd2\x44\xfa\xd1\xe5\xb7\xd0\x30\x9d\x5b\x7e\x2e\x60\x7d\x94\xac\x5a\x51\x6f\x62\xc4\xfd\xda\x96\xaf\xd1\x32\x80\xc2\x19\xd2\x6d\x1f\x36\x03\x24\xfc\x34\x26\x65\xc0\x40\x46\x7d\x01\x7b\x82\x7d\x14\x4b\xaa\x06\x8c\x33\xce\x35\x45\xfd\x35\xae\xd9\xd2\x37\x3a\x76\x7d\x5e\x80\x18\xab\xdd\xd1\x06\xe6\x43\xf4\xf7\x4d\xbc\x1a\xf2\x90\x20\x7f\x2d\xb2\x86\xd7\x43\x43\x1f\xfd\x88\x74\x22\x12\xbd\x79\xec\x9f\x56\xea\x2d\x1a\xd1\x90\x0e\xab\xe4\x07\xd9\xc9\x49\x04\x47\xec\xa2\x67\x95\xc4\x2e\x70\x36\x13\x74\xd9\xd8\xe2\x25\x9e\x2e\x8b\xa6\x21\x4d\x3d\xf6\x4f\x99\x65\xd7\xe8\x38\xd2\x26\xd4\x87\x32\x4f\xe3\x09\xc8\x23\x0d\x3b\xb2\x9a\x7a\x3f\x32\x78\xb2\x66\xff\x94\xe9\x76\x8d\x17\x4e\xb7\x5f\x55\x69\xe4\xf7\xf9\x8f\xcf\xb4\x25\x1e\x01\xb2\xd0\xfa\x14\xb2\xd8\xf7\xe3\x32\xaa\x0d\x43\xc2\xbf\xea\x9a\x26\x96\xb3\x37\xec\xf4\xa3\xbd\xfa\x05\x62\x12\x2d\x2a\x22\xa4\x44\xbd\x94\xb6\x8d\xfe\x57\x9f\xc4\x42\xa4\x83\xbf\x3d\xa1\x5b\x54\x53\x37\x96\x67\x80\xab\x33\x0c\x0a\xd3\x55\xf6\x46\x35\x87\x35\x4e\x65\x3f\x59\x2d\x6c\x53\x1b\x4d\x92\x89\xc7\xfd\x91\x4c\x2c\x90\x7a\x9d\x58\x93\xc8\xa7\x9e\xbf\xf1\x37\x66\x8e\xaa\xdd\x63\x1c\x8d\x54\x82\x0c\x3c\x34\x5b\x3b\xfc\x79\x07\xd2\x7b\x36\x4b\x0e\x95\x3c\x9f\x38\xf0\x89\xaf\xca\x61\x51\xb2\x0f\x7a\x80\x65\x81\x0d\x16\x69\xdc\x06\x2b\xdf\x4f\x8c\xbc\xd3\xba\x47\xa5\x11\x8e\x0b\xf9\xe6\xd2\x3e\x2e\x96\x2a\x3d\x70\xee\x9a\x64\x22\xed\x4f\x10\x4e\x89\x70\x20\x9f\x28\xe1\x26\x11\xdd\x06\xcb\xc0\x0b\x2c\x6c\x56\xba\xc7\x45\x54\x27\xcb\xcc\x55\xb3\xa0\x1a\xb1\x38\xcc\x01\xf2\xde\x22\xae\xc9\x36\xdc\x78\xea\x92\x9d\xd9\xd7\xd7\x1e\xc0\x5a\xc1\x06\x9b\xb8\xc6\x71\xea\x99\x8d\xa7\xd6\x3d\x2a\xae\x70\x5c\xc8\x40\x97\x76\x07\x71\x55\xe8\x81\x73\xd7\xc4\x15\x69\x7f\x82\xb8\x4a\x84\x03\x71\x45\x09\x37\x7a\x86\x51\x44\x3c\xc4\xeb\x37\x75\x8f\x8b\xab\x4e\x96\x99\xab\x66\x71\x35\x62\x71\x98\x03\xe4\xbd\x4d\x5c\xd3\xcd\xc6\x9b\xab\x52\x9e\xf7\x9e\xcd\xb5\xf2\xdb\x22\xac\x71\x98\x24\xbe\x59\x58\xb5\xee\x71\xdb\x9a\xab\xde\xa7\x4a\x8d\xa1\x79\x5c\x52\x55\x62\xc0\xb4\x75\xbb\xaa\x35\x3f\xc5\xac\xe6\xa8\xaf\x8b\x11\x6d\x92\xd2\x68\x45\xb5\x2b\x35\xf2\x57\xeb\x76\x30\xaa\x2a\x51\x46\x7e\x5a\x4c\xaa\x01\x87\xc3\x04\x00\xd3\x2d\x12\xea\x6f\xd6\xdb\x79\xa8\x3c\xb5\x2b\x09\x81\xa9\x19\xf0\xdb\x22\xa1\x81\x1f\x47\x8b\xd0\xc8\x41\xad\xdb\xc8\x41\x30\x1c\x64\x19\x42\x05\xec\xee\x3a\xf4\xa7\x1d\x68\x05\xe3\x6a\x12\xaa\x37\x3f\x41\x42\x21\x55\x40\x42\xb1\x39\x99\x24\xd4\x5f\x46\xf1\xdc\xec\x99\x6a\xdd\x2e\xfc\x35\xc8\x9e\x24\xc7\x1a\xe9\x92\x84\x9a\x7a\x1d\x26\x00\x88\xb9\x54\x42\x6b\x12\xe5\x30\xc3\xd6\xff\xb4\xc8\xa7\xe7\xc5\x61\x64\xd6\x70\xad\x7b\xd4\x82\x0e\xa3\x4a\x67\xfb\x23\xad\xe3\xe6\x53\xa5\x64\x98\xb1\x26\x9b\x5a\xeb\x13\x44\x13\x10\x0c\x24\x13\x21\xd8\x24\x98\x9e\xb7\x49\x36\x66\xc5\xd7\xba\xc7\x4d\xa7\x4a\x92\x89\x93\x66\xc3\x69\xc0\xe0\x40\xfd\xc0\x6d\x8b\x50\x7a\xde\x3a\x58\xa9\x7e\x68\x9c\x37\x70\x5f\x1f\x7e\x5a\x8d\xe6\x3a\x4c\xcd\xce\x91\xd6\x6d\xe4\xdd\x30\x1a\x64\x96\x4e\x03\x66\x32\xb5\x67\x1d\x08\x1d\x06\xd5\x84\x52\x6b\x7d\x82\x50\x02\x92\x80\x50\x22\xd3\x31\x5b\xcb\xd5\x3a\x31\x07\x49\x5a\xb7\x03\x63\x5d\x8c\xa5\x4a\xb7\x24\x94\x86\x4e\x07\xea\x07\x4a\x6c\x96\x32\x5a\x6e\xa2\x85\xf2\xd0\x7d\x56\xe4\xa4\x06\xab\x03\x1b\x2c\x82\xb9\x5c\xcc\xc3\xc4\xbc\xdb\x68\xdd\xa3\xd6\x12\x8e\x0b\x59\xe7\xd2\x3e\x6e\x33\x55\x7a\xe0\xdc\x35\x01\x45\xda\x9f\x20\xa2\x12\xe1\x40\x48\x51\xc2\x4d\x62\x1a\xae\x83\x4d\x1c\x1b\xd9\xac\x75\x8f\xdb\x4e\x9d\x2c\x33\x57\xcd\xf6\xd3\x88\xc5\x61\x0e\x90\xf7\x16\x71\x0d\xbd\x20\x8a\x7c\xe5\xb1\x53\x53\x9e\x72\x68\x45\x61\x83\x45\x5c\xa3\xf9\x7c\x9e\x98\xc3\x23\xad\x7b\x54\x5c\xe1\xb8\x90\x81\x2e\xed\xe3\xe2\xaa\xd2\x03\xe7\xae\x89\x2b\xd2\xfe\x04\x71\x95\x08\x07\xe2\x8a\x12\x6e\x12\xd7\xcd\x32\x58\xc5\x91\x91\xcd\x5a\xf7\xb8\xb8\xea\x64\x99\xb9\x6a\x16\x57\x23\x16\x87\x39\x40\xde\x5b\xc4\x75\x1d\x04\x9b\x8d\x3a\x8d\x13\xbb\x02\x02\xac\x54\xff\xd3\x22\xaa\xc4\x9b\x6f\x36\x2b\x73\x3e\x44\xed\x1e\x17\xd5\x7e\x54\x89\x75\x23\xad\xe3\x42\xaa\x52\x32\xcc\x58\x17\x51\xb5\xf5\x29\x02\x3a\x10\x0c\xc5\x53\x27\xd8\x98\x68\x5a\xfa\xd1\xda\xec\xe0\x6b\xdd\x0e\xc2\xa9\x90\x64\xe2\xa4\x45\x30\x71\x0c\x0e\xd4\x0f\xdc\xb6\x25\x98\x56\xfe\x76\xa5\xa6\xef\xe3\x92\x7d\x7a\x04\xf8\x63\xc3\x6f\x9b\x05\x0d\x97\xab\xf9\xd6\x6c\x41\xd5\x6e\xb3\xc3\x34\x0c\x27\xb9\xa2\x3a\x15\xa8\x2f\xaa\x3d\xed\x40\x2b\x18\x57\xf7\x46\xb5\xe6\xa7\xb8\xa3\x80\x2a\xe8\x8f\x22\x73\x32\x9a\xce\x55\x18\xcf\xe7\x66\xd3\xa9\x76\xbb\xf0\xd7\xc9\x23\x55\x49\x97\x5d\x52\x43\xaf\xc3\x04\x00\x31\x36\xb3\xe9\x85\xde\x5c\xdd\xe5\x69\xd0\x7f\x96\x33\x2c\xe7\x51\xf9\x14\x37\x17\x1a\xf9\xa7\x75\xdb\xd2\x1f\x67\x5d\xfe\x74\x1a\x0c\xc9\xa5\xf3\x98\x70\xaa\x94\x0c\x83\x62\xa9\xa5\xf3\x1b\xc8\x2c\x9d\x75\xc9\x44\xa6\x63\x12\xcc\xf5\x9c\xfd\x33\x32\x56\xeb\x76\x60\xac\x63\x5a\xe9\x6c\x14\x4b\x43\xa7\x03\xf5\xff\x1f\x7b\xef\xbd\xa4\xc8\xce\x24\x8a\xbf\x0a\x71\xbe\xd8\x98\xaf\xb7\x1d\xde\x4c\xc7\x4e\x6c\x61\x9a\xa6\x3d\xb4\x1b\xb8\xf7\xfb\xa3\x80\x02\xaa\x1b\x37\x14\x34\x4d\x4f\x9c\x8d\xfb\x2c\xf7\xd1\xee\x93\xfc\x64\xca\xc8\xa4\xaa\x54\xc5\x1c\xb3\xf1\xdb\x39\x66\x28\x29\x33\x95\x92\x52\xa9\x94\xcb\x0c\x38\x09\x33\x3d\x87\xf8\x1f\x69\x79\x85\x88\x73\xcb\x58\xff\x3b\x44\x2c\x33\xfd\xcc\x20\xa3\x9e\x74\xa4\xec\x90\x75\xa6\x5f\x1c\xbf\x82\x97\xb8\x80\x97\xf0\x22\xb6\x06\xaf\x4c\xb9\xc0\x22\x5e\x4c\x4e\xb4\x8a\x0f\xb8\xe2\x96\xf1\x72\x9d\x54\xd2\x99\x2d\x65\x2b\x59\xb5\xc5\x29\x65\xeb\xb4\xaf\xde\x42\x5e\x60\x5d\x58\xc9\xc3\xb9\x1a\x15\x60\x98\x89\x2b\xa1\xf4\xad\x3c\x65\xf1\x1b\xd3\x57\xe4\x17\xcd\x65\x6f\x16\x92\x87\x22\xf6\x27\x09\x6e\xea\x5d\x42\xf7\x9c\xba\xb8\x6f\xfe\x03\x1a\x7c\x92\x2f\xf0\x94\x1d\xd9\x15\x5e\xe5\x40\xe0\x2d\x88\x4a\xc5\x10\x15\x13\x85\xe7\x58\xde\x93\x53\x7c\x4d\xd5\xbf\xde\x98\x0f\x1e\x81\x05\x97\xbc\xf1\x97\xf4\xee\x84\xde\x00\xf5\x5c\x96\x05\xa5\xf2\x49\x41\x99\x3e\xb5\xac\x4b\x9b\x89\x09\x12\x3c\x43\xe3\xbc\x94\x71\x2f\xe9\x21\x1e\xd4\xcf\x6c\xac\xd9\x72\xbd\x83\xd8\x83\x32\x00\x26\xd3\x2c\x8b\xe9\x33\x21\x1c\x8d\xea\x71\x90\xe2\x41\x23\x35\x26\xf1\x7b\x65\xe2\x54\x99\x14\x25\x5d\xcb\xe7\xef\xaf\xaa\xa0\xbd\x6b\xaa\x00\x49\x2d\x87\xd3\xf2\x25\x6c\xf7\xdd\x18\xf8\x5c\x8d\xcf\x53\xa5\x7b\xcf\x75\xb2\x5e\xb3\x30\xaf\xc4\x4e\x7e\xd9\x1b\xb1\x98\x6f\xd6\xf8\x06\x32\xfb\x0b\xee\xd4\x57\x68\x5e\xe6\x82\xac\xe7\xf3\x01\x42\xe5\x16\x20\x60\xdb\xb3\x0f\x1d\x8f\x4f\xc8\xb8\x21\x2f\xce\x72\xde\xfb\x9a\x42\xfa\xdf\x78\xf2\x08\x99\xbb\x3d\x11\x64\xb8\x37\x61\x45\x06\x81\xc8\x2d\x4a\x8a\x20\xc3\x2c\xe1\x70\xbe\x99\x1b\xaf\xec\x7d\xd8\xb0\xea\x04\xee\xba\x40\x9e\xe9\x7d\xed\xa2\xc8\x72\x80\x25\x30\x14\xb4\x9e\x5b\xb6\xc8\x12\xf7\xd6\x2f\xcd\x53\xa5\x97\x7b\xd5\xcc\xac\x7c\x09\x55\xe2\x29\xd9\x71\x5f\x64\xf8\x4d\x55\x20\x1a\x3f\x60\xd1\xbf\x31\xec\x4e\x1d\x0b\x33\x6c\x34\x07\xcf\xf5\xd2\xf4\xde\xf9\x71\xc6\x6b\x61\xc6\x1b\xa6\xeb\xef\xfb\x38\x23\x3b\x3b\xa3\x0e\x5a\x02\x29\x0a\x3e\x7d\xdd\x06\xf8\xa6\xe3\x62\xda\x04\xc8\xc1\x27\x84\x2c\x86\xe4\xa0\x5e\x5f\x02\x6c\xe6\x1b\x44\x17\x2e\x7c\x0b\xf3\x28\x84\x22\x86\xc1\xa1\x9e\x62\x58\xc4\x95\x74\x3d\x0e\x88\x1f\x83\x3d\xc7\x30\x16\x96\x2d\x3e\x52\x8e\x8c\xbf\xc2\xcc\xac\x9b\xb0\x02\x95\xf1\x53\x98\xfe\x61\x53\x40\x1a\x62\x33\xe3\xa0\xf6\x47\x8b\xa9\xff\x73\xe3\xff\xfc\x89\xff\x47\x5f\xa4\x1c\x93\xa8\xae\xe4\xce\xad\x2b\x32\x19\xf2\x6a\xc9\x7f\x3e\xea\x93\xe2\x7c\x32\x05\x64\xb9\xe4\x0d\x98\xcc\x0f\x25\xd6\x25\x1a\x43\x9d\x71\xb7\xc5\x10\x67\x52\x37\x50\xaa\x18\x36\x4a\x74\xac\x16\x14\x90\x22\xff\xff\x76\x82\x5d\xc4\x1d\x79\x89\xee\x67\x50\x60\x6a\x6a\x33\x05\xa1\x2f\xff\xfa\x2f\x69\x32\x0c\x7d\xb6\xc6\xf7\xf0\x8f\x51\xda\x02\x7b\x39\xb5\x3f\xac\xe1\x19\xd8\x9e\x4c\xa2\x3f\x7c\x11\x8a\x63\x0f\x19\x97\x3b\x59\xdf\x6f\x10\x6a\x74\x3e\xb2\x89\xe0\xc6\x28\xe0\x97\x79\xed\x4c\x13\xc1\xaa\x7c\x9b\xda\x6c\x27\xb8\x48\x9b\xf0\xfc\x9f\xcc\xc4\xcf\x07\x96\xf3\x0d\x9b\xc1\xd4\x32\x57\x38\x78\xe1\xe4\x8c\x5c\xb9\xb6\xa7\xf8\x35\x02\x13\x74\x4f\x6c\x6d\xd1\x99\x97\x2a\x8b\xeb\x05\x85\x58\x09\x39\x3f\x61\x61\xe2\x4a\x17\xfc\xb8\xc1\x39\x7c\xd9\xa0\xd4\xf1\x19\x3f\x23\x04\x8d\xa5\xb8\x98\xb2\x64\x36\xc8\x48\x0f\x9a\x50\x7a\xaf\xed\xb9\xdc\xa1\xae\x6e\x7c\x47\xc6\x92\x08\x73\xf4\x05\xb1\xdd\xe0\x84\x9f\x3e\xc5\x0c\x13\x41\x83\x93\x31\xee\x5d\xaa\x50\x80\xeb\xc2\x58\x68\x33\xcf\xb1\xb1\x27\x1b\x74\x2c\x0c\xac\xe9\x54\xaa\x09\xf5\x79\x98\x0e\xbc\x5f\xf3\xcf\xff\xd8\xf8\x1c\x80\x7b\x0c\xc0\x00\x24\x26\x1c\x68\xfb\xf1\x39\x61\xd5\xf9\xba\x98\x4f\x77\xa0\x34\xc8\x00\xb1\xe2\x9f\x4a\xe5\xb1\xe1\xc5\xc4\x54\xa8\xf9\xc2\x96\xe9\x72\xdb\xae\x94\x2b\x88\x08\x86\x82\xf0\x66\x50\xce\xcf\x78\xc4\xa0\xd6\xe4\x1b\x7d\x36\x0e\x6b\x87\xb0\xde\xf0\x30\xe1\x5e\x10\x3c\xea\x2b\x98\x74\x95\x99\x54\xb8\x9b\xfe\x33\x52\xdf\x0a\x75\x46\x78\x87\x12\x51\xa0\x5d\x64\xa0\x70\x12\x30\x32\x24\x25\xfe\xb4\x4c\x1f\xa8\xc6\xe9\x7f\xbf\x45\x95\xe5\xcb\x10\xea\xf8\xc3\xca\xc6\xa6\xb3\x91\xaa\xc9\x69\xae\x10\x08\x93\x0f\xcf\x00\x92\x4f\xb9\xbe\xad\x04\xba\x5e\xb2\x14\xfd\x99\xf5\x00\x9e\x34\x2a\x98\xe8\xb8\x8c\xd9\x5a\x11\x42\xab\xc8\xdc\x0e\x2d\x67\xb0\xb2\x97\x58\x3b\x49\x2c\x33\x79\x02\xdf\x72\x09\xaa\x02\x4c\x91\xaa\xe8\xa6\x4e\x44\x33\x05\xc3\x87\x7e\xc3\xbe\xed\xfe\x91\xcf\x94\x73\x83\x3c\x4c\xc2\xdd\x17\x14\x08\xb9\xdb\x81\xde\xbe\xa5\x55\x4a\xf7\x47\x30\x7e\x4a\x9c\x57\xb8\x64\x75\xe4\x2e\xb9\x09\x14\x22\xe1\xa5\x87\xd6\x4d\x3c\x40\x54\x11\x17\x6b\x0b\xe5\xf2\xb5\x8e\xa2\xcc\xfb\x0a\x75\xe3\xa1\xfe\xf6\x2f\xb1\x08\x05\x98\x1c\xfd\x15\xfb\x1b\x60\x7d\xe2\x29\xcb\xa3\xef\xa6\xa3\x0b\x14\xe0\x80\x80\xb0\x5e\x14\x29\x3f\xc4\xe7\x7c\x93\x52\x9a\xd9\x5c\x2e\x4d\xd7\xb3\xa9\x43\x27\xc4\x3f\xc3\xe0\x56\xd6\x8b\xdd\x23\x01\xaa\xe7\x6f\x2d\x07\x3e\x59\x59\x5f\x64\x5e\x4f\xa9\xc9\x8b\xf6\x32\x54\x46\xb8\x11\xac\xa6\x2d\x58\xc3\x10\xe9\x28\x23\x97\xdd\x24\xc6\xca\x1c\x9c\xa0\x99\x78\x9b\x10\x92\x20\x08\x40\x20\xcd\xc0\xf5\x17\xb0\x30\x17\xa8\xb9\x21\x1c\xd0\x04\x69\x0d\x0f\x80\x06\xe2\xa6\x1b\x66\xb7\x58\x15\x17\x08\x2a\x83\xb6\xa2\x10\x4a\x08\x5e\x6e\x82\x98\x90\x4d\x12\x0a\xe8\x6b\xc9\x70\xa8\x20\x94\x2b\xd4\xc2\xa1\xe5\x45\x95\xc4\xdb\xac\xea\xe0\xfa\x20\x9a\x24\xc5\x30\x14\x20\x6c\x64\xdd\x10\x0c\x53\xc9\x57\x7a\x96\x77\xb5\x0b\x33\x6d\xf3\x9e\x43\x19\xc3\x89\xf7\x21\x9a\xb4\x49\x58\x3b\xce\x55\x91\x64\xa0\x6b\x19\x4c\xde\x5b\x7e\x71\x33\x82\x4b\x87\xa2\xf2\xb0\x16\x42\x3e\x7d\x44\xff\x3d\xc9\x89\x67\x3b\xc1\xd9\x50\x68\xa1\x1c\x98\x58\x3a\x7b\x90\x94\x2d\x1c\x79\xff\xc9\x85\x29\x2c\x84\x14\x38\xcd\xb3\x79\xa1\xb1\xea\xe4\x0a\x98\x62\xd7\xf0\xec\xb3\xd9\xca\x53\xb0\x10\xf2\xb2\x99\x29\x34\x0f\x67\x6f\xaa\x8f\xd9\xa2\x0a\x10\x2d\x43\xb0\x14\xd6\x44\x4c\x50\x17\x53\xd5\xc7\x61\x56\x5f\xac\xca\x48\xb6\x20\x54\x8e\xd2\x28\x14\x28\x52\x9b\x8a\x2a\xf1\x8d\x7d\xa0\x7f\x86\x19\x4e\x47\xd7\x3a\xf3\x2d\x1f\xa4\x78\x52\x44\xb9\x71\xf6\x11\x9c\x9d\x92\x16\x51\x2a\x38\x50\x7b\x22\x98\x50\x56\xa8\x76\x0d\xe3\x46\x84\x08\x61\x48\x06\x0d\xd1\xe8\xa1\x6c\x51\x15\x1c\xc6\x96\x08\x11\xc2\x96\x0c\x0a\xb2\x45\xc1\x24\xb6\xf0\x35\x3d\xbf\xd7\x8f\x80\x34\x46\x12\x84\x6c\x53\xd2\x70\xfe\x52\x43\xe5\xc4\x9b\xee\x30\x41\x2e\xbc\x83\x1c\x88\x31\x49\x1c\x41\x56\x38\x49\x85\x1c\xac\xa8\x89\x32\x41\x8c\x25\xaa\x34\x0f\x20\x5b\x91\xc8\xba\xee\x3b\xa0\xb6\x64\xb2\x14\x83\x54\xf0\xd0\xc1\x8c\x4a\xb9\x93\x54\x99\x62\x6f\x01\x70\x72\xb7\x81\xc1\xfe\x80\x02\xe0\x2a\xe8\xf2\xc3\x07\x8a\x8e\x06\x07\x95\x62\x50\x09\xb1\xa9\x95\x35\x8d\x28\x17\xd2\xb1\x5e\xa0\x48\xc7\x9a\x5a\x34\xcc\x08\xb8\x26\xe3\xb3\xbf\x81\x93\x02\xbf\x62\xe1\xee\x5b\x04\xfb\x2b\xe0\x10\x12\xbc\x1b\x15\xe0\xe3\x7c\x7e\xec\x1c\xe1\x4f\xd6\xb6\x0e\x52\xa5\xe8\xe5\xe1\xa3\x30\x2e\xa5\x88\xf6\x12\x17\x4c\x50\xd3\x85\x9c\x47\x01\xd4\x59\xc4\x40\x54\x40\xba\xe2\x1d\x2b\xae\xa5\xd3\x39\x30\xd8\xfc\x41\x54\x85\x18\xa9\x02\x0b\x75\xb5\x86\xaa\x54\x30\xc4\x7d\x25\xaa\xd4\x93\x88\x52\x4f\x12\x95\x2a\x0e\x79\x50\xae\x05\x41\xd6\x55\x1f\x31\x3a\x84\xa3\x93\xce\x1e\x9c\x09\xa3\x31\x94\xe6\x09\x34\xca\xe3\x74\x0c\x5f\x7a\x59\x2a\x9d\x2e\x8b\xa3\x54\x02\x08\xc5\xe4\x0f\xed\x77\x7b\x18\x4d\x06\x06\xf3\x7a\x02\x0a\xcb\x44\xa2\xa4\x73\xe6\xef\x4f\x48\x5b\x64\x0b\xec\x20\xc7\x67\x3d\x47\x24\x4d\x1a\xe9\x41\x16\x38\xdc\x71\xf6\xd9\x1f\x45\x58\xae\x11\x9d\x15\x82\x45\xe4\x01\x27\x48\xbc\x8f\x4c\x77\x3d\x3b\xb2\xd7\x3c\xb6\xdf\x96\x07\x52\x73\x87\xc0\xba\x6d\xa9\xd8\xaf\x60\xcf\x4d\x5c\x22\x11\x3d\x0b\x42\xb9\x85\xf0\x77\x81\x18\xe7\xd9\xde\x9d\x17\xef\x14\xb3\xbf\x99\xe2\x40\x17\x94\x63\xf6\x42\x82\x18\xf9\x6e\x05\x21\x48\x3c\x71\xb9\x6e\x3a\x7f\x7a\x0f\xdf\x99\x53\x52\xe5\x2e\xf2\xca\xc4\xbd\x6c\xfe\x50\xd8\xdd\xee\xf3\xa4\x76\xe3\x60\x6f\x9f\xa4\x99\xe8\x9a\x9d\xf8\xc2\x05\x52\x1d\x39\x51\x4a\x80\xf6\x00\x60\xc7\x9d\x82\x37\x45\xae\x4b\xdc\x16\x0d\x6e\xf5\xfd\xbf\xff\xf3\x7f\xbf\xf8\x01\x4d\x32\x42\x48\x1b\xc5\x81\x12\xd0\x68\xc2\xb1\xb6\xe8\xf2\xb5\x00\x6c\xd7\x41\x12\xa0\xca\x06\x22\xfa\xa8\x40\xb9\xce\x57\x01\x61\x81\xe0\x05\xad\x14\xc9\x22\xb0\x99\x15\x59\x48\x44\x54\xa2\x88\xa2\x78\x21\x0b\x2b\xc6\x93\x3c\xf5\x3e\x8a\x7e\xad\x62\x14\x0b\x60\x71\x4e\xf2\x48\xc9\x44\xd5\x7b\xdd\x2c\x26\x48\x57\x24\xf8\xdb\x0c\xa8\x42\x1b\x22\xf5\x2b\xcb\xb1\xd6\x5f\x5d\xcc\x33\x40\x47\x80\xe7\x00\x52\xf9\x92\xde\x60\x33\xa1\x2b\x40\xf0\xfd\x28\x58\x97\xa8\x0a\xe2\x1d\x72\x89\xe5\x79\xb9\x0b\x48\x93\x68\x0d\xf0\x3f\x4d\xdd\x28\x34\x09\xed\x21\x7b\x3e\x40\x9f\x58\xa7\x78\xbd\xe4\xe9\x18\x17\xc2\xf9\xa7\x9b\x71\xf4\xdb\xc9\x6f\x07\xa9\xdf\x52\xbf\xb1\x77\xb2\xe9\xa9\x12\x28\xbf\x8a\x78\x56\x42\xb4\x28\xaf\x65\x95\x1b\x6e\x50\x37\x00\x5b\x6e\x7c\x7f\xf0\xd4\x82\x8e\x89\xd8\x8a\x0b\x15\x71\x2c\xd7\xc2\xc9\x86\x96\xfc\x88\xf7\x7c\xc0\xfb\xb7\x59\x81\x98\xb0\x6b\xed\x12\x11\x0f\x6e\x64\xd5\xa4\xc0\x8f\x6a\x50\x78\x6b\x9f\xab\x80\x48\x11\x90\x76\x67\x8d\x46\xd5\xe0\x4c\x7a\x6a\xf0\x3b\x6b\x58\xca\xe6\xa4\x1b\x06\xd7\xf5\xc3\x4f\x3a\x27\x97\x3f\xca\x15\x8f\x72\xe5\xc0\x37\x3c\x8b\xee\xae\xd8\x55\xa6\x6b\xa8\x5d\x2b\xb5\x86\x78\xca\x21\xf3\x09\x05\x96\xc4\x3c\xfb\xaa\x8a\x45\x91\xec\x45\x55\x61\x6c\x60\x2b\xf7\x09\x89\xeb\xca\xdf\x23\x07\xcd\xd7\xca\x7c\xa9\xdc\xe8\x2b\x1a\x20\x1d\x97\x51\x89\x9a\xd2\x34\xf0\xa8\xb0\xc3\x00\x10\x4c\x08\x4c\xd9\x49\xb2\xba\x8d\x57\x3e\x2b\x20\x42\x3b\x08\xa1\xe3\x22\x8e\xa6\xa2\x88\x83\xcc\x09\xb8\xfb\x2c\xb8\xfc\x7d\x1a\x68\xe5\xe5\x61\x46\x6b\x05\x05\xa4\x3c\x0c\xd9\xc0\xa6\x5e\x80\x69\xe5\xb8\x94\x2f\xb5\x05\x11\xf8\x80\x6b\x6e\xec\x51\xfd\x49\x51\xb4\x6e\xf4\x86\x9d\x1f\x7d\x95\xab\x96\xaf\xed\xc1\xfa\x1d\x81\xa0\x7a\xf9\xa4\x3d\xe5\xb8\x15\xdc\xdc\x91\x39\x60\x57\xe9\xf0\xaa\x5c\xa6\x16\xa5\xf4\xb4\xda\x14\x2e\x18\x88\x36\xec\xbd\x1b\x89\xd2\xb2\x32\x2d\x51\x3d\x86\x96\x96\xf0\x00\x98\xa1\x09\x0c\x2e\x3e\x36\x87\x8c\xa0\xab\x5e\x39\xd4\xa8\x65\x0a\x04\xa6\xda\x72\x01\xf4\xa7\x5a\x5d\xc1\x84\x15\xea\xca\xb7\xd6\xa4\x98\x20\x24\x55\xaf\x59\x23\x14\x33\x00\xa5\xaa\x68\x1c\xb5\x0c\x92\xfd\x45\x5a\x39\x82\x65\x58\x1d\x33\xba\x81\x11\x9f\xf0\xd5\x9d\x42\xce\xc4\x7b\x05\xd2\x98\xf8\x7b\xa8\x54\xd5\x28\x11\x36\xc4\xc3\x2a\xa2\x56\x25\x6c\xb5\xdc\xa8\x33\x9a\xca\x45\xa5\xad\x55\x52\xa7\xa1\xdd\x45\x48\xad\x6c\x59\xb7\x0b\x35\x80\xb4\x3c\x5e\x39\x7e\x84\x6f\x0d\xf2\x5a\x30\x88\x3f\x2d\x49\xb5\x10\x9a\x3a\x94\x34\x28\xdf\xc9\xef\xd9\xb0\x65\x81\x83\x66\x25\x07\x63\x14\x63\xe8\xa0\xc6\xdc\xa5\x5c\x42\x38\x8c\x8b\x6e\x8b\x78\x4f\xbb\x00\x86\x83\xac\xd8\x25\x85\x34\x50\xf0\x4c\x41\x6a\x20\x21\x84\xb8\x4f\x2e\xac\xe8\x10\x4d\x10\x86\x06\x2b\xcc\x02\xd0\xd0\x27\xbe\x12\xa5\x4f\xfa\xb0\x9c\xaa\x23\xb0\xd3\x97\x7b\x02\x0c\xdf\x90\xde\xfb\x3c\x01\x48\x08\xd2\x2e\x64\xf3\x31\xda\xc5\x4c\x28\x44\xbb\x04\x03\x45\x68\x97\x80\x14\x01\xda\x25\x38\xa1\xda\xa4\x69\xa2\x34\x08\x04\xe4\xf6\x43\xc8\xeb\x46\xd2\xa2\x51\xa4\x21\x20\x99\xb4\xf8\x8c\x91\x76\x44\x14\x6d\x10\x4a\x26\x5e\x11\x9e\x1c\x46\x91\x8d\x22\x98\xe1\x1f\x5b\x46\x91\x03\xa1\x64\xa2\xbe\xa4\xb0\x6f\x32\xa3\x68\x03\x30\x00\x65\xf0\xc5\x66\x64\x2b\x00\x40\x00\x6d\xd5\x7b\xce\x48\x91\x83\xe1\x80\x12\xa4\xd7\x9e\x0b\xee\x21\x44\xc8\x49\x81\xff\xf8\xb9\xc0\xbc\x13\x06\x3c\x25\x30\x2f\x8c\xd3\x11\xa1\xd8\xf8\xf0\xb2\x6e\xbc\xd9\x90\xd0\x6c\x30\x7c\x0c\x58\xa6\xca\x5a\x4e\x0c\x98\xc8\x5c\xf4\xdd\xb5\xec\x04\xc2\x4d\xfc\x4a\x02\xb1\x31\xf3\xb8\x1f\x20\x99\x2d\x53\x33\xbc\x20\x53\xa4\xd7\x80\xf4\x78\x10\x23\x51\x52\xa9\x93\xa2\x93\xc2\x96\x98\xb9\x3a\x0b\xcb\x93\xf0\xf1\xc5\xf9\x15\xfd\x45\xf6\x5a\xbf\xda\xf3\x11\x52\x58\x88\x09\x0d\x90\x90\x06\xe0\xdd\x22\xb1\x81\x2d\xa1\x20\x97\xca\xb0\x76\x24\xe2\x1f\x17\xfa\x96\xbc\x19\x40\x36\x12\x43\xe5\xf7\xff\xf4\xaa\xf5\x66\xed\x46\x2b\x73\x66\xa1\xfa\x52\x41\x1e\xad\x16\xc2\x49\x30\xeb\x47\x22\x0d\xf8\x96\x48\x1f\xfc\xbe\x5e\xa8\x51\x72\xc5\x34\xec\x93\xc2\xcd\xf8\xfd\xf7\xff\xfc\x3b\x30\x21\x0a\xd9\x91\x2c\xe9\xae\x53\x14\xb4\x5c\x2a\x33\xee\x44\xfc\x6f\xf1\xe9\x7f\x26\x5b\xc9\x16\x38\x93\x40\x24\xcf\xa6\x72\x65\x50\x25\xc9\x46\x70\x76\xbf\xf9\x32\xa8\x7b\x00\xde\x5a\x10\xcb\xe0\x92\x85\x42\xb0\x2e\x63\x0b\x71\xbf\x85\x42\x98\xe9\xdb\xb5\x2a\xa4\x66\x62\x93\xb9\x32\xf2\x27\x6e\x28\x5a\x2f\xe0\xf1\x89\x10\x9a\x96\x96\x91\x75\xeb\xe7\xee\x0f\xcd\x66\x78\x0c\x0a\x9a\x35\xb8\xd2\xed\x01\x04\xda\x37\xe2\x26\xad\x84\xc0\x3f\x15\x51\xef\x11\x15\x54\xf8\x5c\xd8\xdb\xe0\xe2\x87\x6a\xd4\xf2\xd7\x51\x42\xf9\x57\xdd\xc8\x8e\x51\x07\x5e\x73\x86\x50\x80\x6a\x11\xae\x7e\xa8\xa5\x85\xa6\x2c\x8f\xf3\x20\xba\x1e\xf3\xbe\xc3\xed\x6c\x21\x55\x9e\xe9\xe8\xbc\x4a\x34\xd9\x1c\x8d\x49\x73\xea\x32\x3c\xb4\x50\x2e\x1a\x1c\x68\x80\xf2\xac\xca\xca\x78\x68\xaf\xe8\xfe\xeb\xd7\x95\x85\xea\xe9\xb0\x5a\x58\xce\x03\xf0\x37\x54\x51\xe3\x21\xe6\x9c\x29\xd2\x19\xe5\xc0\x5e\x1b\x72\x53\xdc\x00\x68\x80\xa0\xba\x00\xde\x05\x7f\x16\x89\xbe\xdb\x97\xcf\x6f\xa1\xde\x62\xd4\x84\xa8\x36\xa2\xf4\x85\x7a\x01\x02\x15\xc4\xea\x0a\x49\x79\x44\x69\x0d\xf5\x12\x45\x2d\x81\x4c\x8b\x44\x69\x57\x79\x89\xa3\x26\x4b\x15\xd2\x91\x98\x10\xa5\x93\x42\x16\x4a\xa4\xc9\x59\xb9\x0f\xfc\x4f\xf9\x6d\xcd\x2e\x5f\x33\x27\x15\xf4\x87\x69\x6e\xda\x92\x2a\x0a\x6e\x13\xb2\x14\xb2\xd8\x96\xcd\xb3\x2b\x46\x10\xd7\x6f\x1f\x1e\xb7\x52\xca\x96\x24\xbd\x0d\x53\xf0\xab\xcf\x52\x28\xe0\x4a\x15\x21\x71\xd1\xd3\xb8\x02\x78\x4c\x7d\x2b\x62\x8b\x41\xc6\x8f\xa5\x8b\x7e\xd8\x58\xf3\x58\x93\xc3\x68\xc3\x47\xda\xbe\x09\xee\xee\x66\x52\xc3\x51\x36\x21\xfc\x73\x7c\x21\x89\xff\x94\x19\xe1\x6f\x18\xb2\x19\xa2\xc6\x90\x1e\x2d\x51\xfd\x48\x36\xbf\x14\x04\x15\x10\xa0\x2e\xe2\xae\x12\xb0\xb7\x94\x02\xef\x4c\x74\x2b\xcb\xb4\x55\xe1\x89\xbd\x30\xaa\xb9\x74\x7a\xf9\xe1\x0f\x7d\xec\xf0\x08\x5a\x88\x62\x1f\x51\x84\x98\x18\x8d\x95\x06\xf2\xf5\x9f\x84\x65\xdd\xa8\xbb\x81\x35\x90\x65\xe3\xf0\x52\xef\x4e\x01\x21\x82\xcd\x78\x94\xe2\x1f\xe5\x67\x57\xa2\x59\x91\xe5\x18\x22\x37\x2c\xe6\x78\x17\xcd\x27\x98\x4e\x44\x8d\xb2\x05\x90\xe3\xc2\xce\x6a\xd7\x92\x9c\x61\x11\x67\x56\x98\x90\xd7\xcc\xd9\x93\x82\x7b\xae\x4c\x98\xe7\x81\x18\xda\x64\xd7\x49\xa0\x1e\xa4\xc5\xdb\xe9\xa5\x15\xe3\x8b\xd2\xde\x02\x17\x9a\xef\xa4\x20\x37\x60\xb0\x43\x36\x98\x2e\x1c\x8b\xaf\xb0\x77\x8c\x4e\xb3\x02\x11\x0a\xe8\x66\xc4\x8a\xb2\xef\xaf\x5d\x8a\x81\xc4\xf0\xfc\x64\x44\x66\x3c\xbd\x86\xb7\xfc\x20\x76\xd2\x7e\xfb\x33\x10\x10\x57\xbe\x63\x46\xf8\xfe\x04\x4b\x5f\xc5\xdc\x89\xb4\x7a\xf0\x4f\x09\x83\x78\xc7\x5e\xd1\x47\x5c\x32\x44\xd3\x27\xe5\xee\x4f\xbf\x5b\x26\x1c\x96\x55\xbe\x59\xc5\x58\x6b\xcc\x43\x62\xe1\x0d\x10\xa5\xf8\xcd\xd3\x35\xfe\x6b\x4c\x49\x73\xb0\xb6\x9f\x10\xd0\x5a\x7a\x12\xec\x6d\x7a\xb0\x0e\x74\x81\xfb\xc8\x68\x12\x45\x8d\xe3\x80\x57\x8a\xc5\x3c\x8e\x59\x6a\x6f\xc9\xbc\x02\x35\xf7\x9d\x24\x0a\xf5\x76\x1f\x90\x50\x8a\x29\xb1\xfa\x47\x41\x69\xde\x63\x4b\xb1\x81\x3c\xc2\xa2\x17\x04\x07\x0d\x29\x8f\x6e\x28\x67\x82\x6f\x4b\x26\x67\x3b\xb1\xd7\xd6\x31\x32\xd2\x07\xd8\x94\xde\xae\xcc\xa5\x44\xf9\x9b\xe4\x5c\xc4\x7d\x31\x2e\x7b\x36\x80\x5a\x5e\x9a\x17\x95\xfd\x00\x43\x00\xfc\x28\x05\x48\xae\x3a\x80\xad\xea\x51\x40\xfa\x24\x69\x0b\x9c\xbf\xaa\xc4\x4d\xdc\x0e\xc3\xb0\x07\x2c\xb0\x6a\x8f\x4d\x04\xd4\x01\x62\x6a\xc7\x09\x99\xd4\x44\x47\x62\x33\x50\x51\x93\x9b\x32\x7c\xdb\x50\xbb\x32\x12\xa4\x16\x94\xba\x3a\x7c\x9f\x29\x6b\xa3\x06\xa3\xea\x4e\x21\x3f\xa1\x95\x4e\x6b\x55\x38\x1d\x59\xd9\x34\x5c\x51\x9e\x33\x41\x36\xff\x2e\xbd\xe1\xc6\xd0\xd7\x16\x31\xa6\x4e\x89\x04\xed\xcf\x1a\x34\x60\xbd\xb4\x84\x08\x96\xb8\xbf\x54\x92\x36\xcb\x04\x62\xd4\xd5\x6d\x6b\x19\x50\x07\x88\x67\x4f\x5b\x80\xfc\xaa\x24\x90\x9e\xae\xf6\xc0\x00\x20\xb5\xa0\x42\x2b\xa5\x94\x1e\xa9\x4e\x71\x3a\x49\x47\x74\xba\x91\xa2\xd3\x55\x89\xce\x90\xc4\x98\x48\x20\x3c\x7f\x62\x53\x13\x1e\xb5\x25\x88\xa9\x51\x22\x19\xfa\xb3\x46\x05\x54\x2b\xa5\x08\x01\x95\xfa\x5b\x08\xd1\xc8\x0c\x31\xce\xfc\x57\x4b\x01\xa8\x46\x2f\x32\x24\x55\xfd\xe7\x11\x76\x3d\x28\x2d\xde\xff\x18\x53\x98\x21\xfc\x87\x58\xc2\x83\x4d\xdf\x1e\x1c\xf7\xad\x4f\xdb\x5a\xfd\xf3\x24\x53\x2a\x1c\x9d\x94\xcb\xd8\x6f\x4b\xf6\x28\x73\x10\x6e\x22\x47\xa2\xca\x15\x88\x6b\x3a\x73\xc8\xbf\xda\x72\x0e\x4a\xd0\x90\x08\x86\x93\xbf\xaf\xf1\x4a\x99\xd4\xb5\x96\x18\xe8\xbf\xb5\xb1\x44\xf8\xd4\x9b\xbf\x3d\xd0\xbf\xfb\xf4\x4d\xf8\xd4\x9d\x52\x02\xe0\xbf\xf5\x8c\x42\x4f\xa6\xf5\x56\x39\x36\x7f\x58\x85\xb4\xc9\x99\x2a\x3d\xec\x38\x1d\x8c\x25\xa1\x38\x66\x8f\x66\xf1\x88\x05\x89\xb7\x62\x3b\x5e\x20\x04\xdb\x73\x3e\x93\xa2\xef\xd4\x38\xee\x40\x88\xd0\x5c\x96\xe3\x50\x29\x39\x92\xaa\xa6\x90\x10\xb9\x82\x1a\xd2\x07\x34\x88\xbe\x00\xba\xcd\x9f\xc9\xa4\xd5\xb1\x3f\xbc\x4c\x55\x06\xdb\x0e\x74\x3b\x31\x61\xaf\x90\x19\x32\xac\x53\x08\x40\x58\xa6\xc4\x8a\x7e\xfb\x31\x9c\xc7\x6e\xbe\xe3\xd0\xf6\x3b\x56\x36\xe0\x31\xdb\x82\xbe\xbb\x36\xd7\x4a\xf1\x0d\x23\x61\x18\x0b\x70\xdf\x42\x06\x30\x39\x40\x12\x55\x05\x94\xc3\x13\xd6\x68\x34\x81\x09\x55\x8b\x09\x6f\x01\x19\x56\x38\x0b\x89\xb5\xbf\xe4\x5a\x47\x6f\xf2\xae\xa0\x6b\x01\x4c\x2c\x8e\xd0\xcd\x38\xa1\x8d\xe4\x03\x39\x50\xd7\xc6\x68\x3f\xc0\x5e\x57\x34\x9f\x60\x40\xb1\x87\xf8\x42\x59\x5e\x43\x7b\xb2\xe2\x59\xad\x6e\xba\x7b\x68\xe8\x60\x78\x0d\x39\x39\x1e\x5a\xb8\x9c\xb4\x03\xca\x0a\x90\xcb\x6d\x81\xfb\x5e\x13\xb9\x13\x3b\x71\x39\x63\x8d\x67\xa0\x41\x09\x04\xf5\x19\x8d\x46\xfc\x4d\x33\x7c\x40\x94\x45\xff\xa5\x43\xde\x48\x64\x56\x5c\x9c\x8b\x4c\x70\xff\xcd\x73\x5c\xc4\xdc\x0f\xf5\xee\x06\x46\x1e\x5d\xb9\x6c\x2b\xa3\x5f\x70\x40\x11\x6e\x83\xbc\xd3\x62\xbf\x2d\xe0\xd7\x1d\x92\x53\x8f\x70\xcf\xb9\xc2\x53\x40\xb6\xe1\x98\x47\x19\xdc\x03\x0d\xdd\xe7\x5f\x22\xc3\xe1\xcf\x3f\xf8\x13\x76\x17\xe5\x1b\x4e\xe4\x7c\x2c\x7a\x87\xeb\x92\xdb\x38\xf7\xe8\xe9\xb7\x7f\xf9\xb8\xbc\x07\xbe\x20\x9f\x8b\xd7\x86\x8f\xed\x71\xbb\xb1\x2d\xe0\x67\x90\x16\xe4\x9e\x49\xaa\x68\x4a\x65\xca\x6c\x71\xc5\xd2\x6c\xb8\x64\x37\x4f\x2e\x3c\x38\x5f\xf3\x5a\x94\xbc\x5b\x40\xac\x1c\xd0\x5f\x14\xf3\xe0\x0f\xa9\x79\xfc\xc2\xff\x90\x26\x18\xaf\x90\xc0\x31\xa3\x06\xa9\x8f\xe9\x66\x46\x6d\xa4\xa5\x39\xb6\x08\x40\xa0\x2e\xd8\xdb\x27\xf2\x93\x0d\xef\x9d\x3c\x87\xc3\x2b\x04\xb5\x12\xa0\xd7\xcf\x4d\xc7\x1e\x9c\x10\x77\xd5\x3e\x01\xc6\x23\x93\xab\x8b\x22\x95\x85\xbe\xbe\x92\x9f\xb2\x10\x16\x50\xe3\xf2\x4c\x30\x8a\x8c\x30\xba\xb4\xa7\x41\xd7\x1d\x49\x29\x8e\x57\xed\x9c\x5b\x6b\x9f\x9d\x2f\x5f\xfc\x93\x47\xff\x46\x06\x87\x1a\xae\xdc\x78\xd0\x08\x15\xc7\x03\x07\x17\x39\xf9\x74\x2e\x88\x33\x5b\x07\x15\x86\xa3\x8e\xee\x88\xfb\x87\x09\x5b\xe3\xce\x7f\x67\x51\x61\x6f\xc8\x95\x0f\x4f\xdd\x4a\x37\x53\xb8\x18\x8e\xb1\xfa\xfe\xcb\x17\xa0\x1d\xd4\xf5\x15\x5c\x0d\x01\x06\xe2\x49\x36\xcc\xb0\x74\x73\x43\x72\xc8\x1d\x1b\xaf\xff\x8f\xb3\xfa\xbd\xe4\x08\x57\x23\x65\xeb\x3f\x8c\x35\x25\x67\x0a\xc6\x32\x61\xba\x99\xe3\x8b\x95\xd0\x5c\xf0\x16\x56\x2d\x86\x0a\xaa\x31\xa4\x5e\xad\x10\xc3\xa2\xf2\xe5\xa0\x81\xab\x26\x15\xe9\x74\x10\x01\xbe\x59\xb2\x66\xf4\x26\xf3\x13\xef\x4a\xa1\x00\xc8\x5e\xd9\x16\x72\x18\xb9\x14\xb2\x1c\x35\x96\x13\x38\x4f\xf1\x87\x98\x3c\x82\xbc\x38\x81\xb9\xe5\x87\x37\xcc\x74\x5f\xba\x4b\x63\x5c\x74\x92\xc8\x8c\x4e\x77\x34\x17\x51\x29\xb2\x12\x00\x5b\x23\xac\xce\x2a\xdf\x47\x6b\x7c\xc5\x32\x84\x10\x94\x2f\x51\xa3\xea\x07\xec\x52\xd1\x68\x02\x1a\x5f\x02\x01\xea\x21\xc2\x40\x9d\x28\xc3\xa8\x34\xab\xd8\xea\x3a\xdd\x97\x73\x0d\x47\x2c\x9b\xb2\xa8\x7e\xcd\x78\xd7\x8f\xf8\xf9\x8f\x42\x07\x36\x98\x0f\xef\x8d\xa0\xc1\x62\x86\x56\x85\x6b\x3f\x9f\x8b\xa3\x03\x41\x38\x3e\x88\xa7\xbd\xbc\xeb\x49\x8b\x8f\x33\x45\xd6\x68\x6a\x31\x79\x48\xa7\x31\xe9\x2c\x1a\x93\x0c\x16\x9d\xe2\xe6\xe8\x20\x55\x55\x09\x2a\x17\x1e\x33\x78\x2a\xc1\xa4\x99\x13\x02\xfa\x99\xca\xa4\xa8\x9b\x28\xc4\x19\x9f\xc2\x7d\x51\x96\xbc\xd0\xb6\x60\x83\xf1\x81\x87\xb2\x60\x50\x5d\xf8\x62\xab\xf4\xc8\xc8\xbb\xb8\x68\xda\x8e\x60\x9b\xf0\x49\xce\x4f\xce\x3c\xc2\xa6\x51\x1e\x34\x8f\xb2\x07\x47\x34\x3b\x93\x86\xf2\xd3\x65\x6e\x55\xe6\xfc\x64\x9b\x6d\xb1\xb2\xf1\xc0\xf0\x58\xe7\x9a\x34\xb8\xb1\x4f\xdf\x03\x70\x8d\xcb\xe4\x52\x5b\xd4\x6f\x64\x39\x07\x4e\x95\x17\xb5\x90\x0d\xfa\x8b\x0c\xc8\x28\x8b\xd6\x1f\xd9\x3a\x6b\x56\x27\xda\xd7\x2d\x85\xfb\xe6\x0b\x13\x9d\xeb\xfc\x00\x8d\xe2\xfa\xd3\x5f\xd4\x06\x2f\x38\x74\xd6\xa4\x5a\x5e\x9f\x7c\xa6\xe5\x87\xe5\x90\x2d\x2b\xba\x5d\xe0\x26\x6b\xbf\x02\x62\xc4\x49\x2f\x5b\xd5\xc8\x29\xee\xc3\xbb\x8f\xa9\xc1\x1a\xd3\xd2\x30\x0b\x90\x15\x21\x2d\xe8\x8f\x62\x49\x07\xb9\xf4\xa9\x62\x5e\xe8\x60\x76\x60\xe9\x4e\xd6\x8c\x9c\xc3\xe2\xe2\x44\xba\xcb\x92\x50\x0e\xd5\x8d\x29\xcb\x31\xf3\xb0\x56\xa9\xfc\x21\xad\x2f\xa9\x7b\x51\xcf\x13\x00\x40\xbf\x04\x05\x26\xd2\x30\xab\xc5\x16\x52\x2f\x38\x19\x48\x0a\xee\xde\xfe\xda\x5d\xb2\x5f\xb7\x33\x86\xba\x0d\xea\x82\xc0\x53\x55\xbc\xbd\x2b\x56\x2f\x40\x3a\x43\x4f\x4f\x00\x1c\x05\xfa\x4b\x9a\x6a\x33\xfc\x54\x9b\x91\xa6\xda\x0c\x37\xd5\xfa\x5f\x7e\x1d\xd9\x98\xf1\xbf\xba\xbe\x91\x17\xe4\x23\x2b\xac\xe3\x38\xcb\xdd\x8d\xf6\x9a\xc8\x77\xca\x98\x2f\xa8\x22\xd4\xf8\xef\xd0\xf0\x8d\x7e\xf5\xe6\xae\xeb\x84\x7e\x68\x8d\xcc\xcd\x74\x4d\xfd\x51\x72\xde\x28\x89\xed\xc1\xd4\x9b\xd9\x81\x96\xda\x2f\xfa\x0a\x77\xda\x7f\x5e\xad\xca\x80\xf8\x8e\xfb\xe2\x9c\xed\x65\xe0\xb5\x51\x19\x5a\xa2\x30\x9b\x09\xe0\xb0\x63\x1e\xe7\x83\x2c\x6a\x3e\x50\x87\x7c\x01\xd0\x68\xe1\x4c\xe0\x70\xef\xcd\x4d\xf0\x54\x2d\xc7\xf8\xf4\x0f\x1e\xad\xbb\x65\x1f\x3b\x4b\x7b\x0e\x3f\x6b\x57\x41\xfc\x55\x8f\xdb\xf9\x67\xaa\xc2\xe7\xaf\x79\xe2\x0e\xed\x36\x05\x9d\x97\x81\x5e\xc0\xb3\xad\xf4\x17\xbf\x83\xff\xab\x59\x09\xb6\x5c\x81\xcd\xd6\x10\x3d\xc8\x3b\x98\x62\xf7\x93\x49\xec\x65\x79\xa4\x78\xe3\xe2\xb7\x93\xdf\x12\x07\xbe\x5e\x89\x7b\xe5\xde\xea\xf9\x80\x35\x64\xb2\xbe\x72\xfe\xc7\xb0\x9f\x2d\x67\xcb\xfc\x41\x08\x43\x04\xd8\xbe\xa4\x18\x92\xd2\xc3\x93\xbb\x70\x80\xb6\x40\x6d\x3a\xb6\xe2\xf1\x33\xca\x96\x32\x99\x01\xcf\x0f\x4f\x07\xda\x51\x25\x48\x3a\x2c\xed\xd0\x42\x72\xb1\x8d\xc9\x52\xbf\x3f\x4c\x0b\x4d\xc4\xd3\x81\x58\x22\x48\x5a\xad\x34\xc5\x27\xaf\xb1\x38\xea\x17\x06\x83\x8c\xc0\x11\x47\x06\x60\x88\xe2\xe8\x30\x34\x5e\x59\xd6\x3c\x1e\x43\xd9\x4c\xdf\xcc\x17\x78\x86\x38\x32\x00\x43\x14\x47\x87\xa1\xb5\xc5\x1c\xe8\x69\xf1\x93\x4e\xf7\x0b\xe6\x90\xe7\x87\xa5\x02\xb0\x43\x51\x74\xd8\xe9\x4f\x37\x31\xfb\x2b\x9b\x29\x17\x86\x69\x9e\x1d\x96\x0a\xd8\x3a\x18\x45\x87\x9d\x77\x7b\x31\xb5\xd6\xf1\x18\x2a\xe6\x73\x85\x41\x85\x67\x88\xa7\x03\xb0\x44\x91\x74\x58\x5a\x6e\x56\xcb\x69\xcc\x36\x32\x73\xb9\xdc\x40\x90\x69\x9e\x0e\xc0\x12\x45\xd2\x62\x09\x07\x2d\x8a\xc5\x90\x95\xce\x55\x2a\x25\x81\x21\x86\x0a\xc0\x0e\x45\xd1\x92\xa1\x15\xbe\x7b\x17\xaf\x81\x0a\xc5\x52\x4e\x88\xe6\xc2\x91\x81\xda\x87\xe0\x68\x0e\xfa\x5d\x3c\x7e\xa8\xfd\x22\x8d\xf9\x5d\x08\x3b\x14\x45\x6f\x8c\x21\xe4\x78\xfc\x64\xfa\x99\x41\x66\x28\x0e\x32\x86\x0c\xc0\x10\xc5\xd1\x60\x88\x8f\x85\xec\xc7\x8b\x0b\x76\x98\x82\xfd\x48\xef\x52\x97\x10\xcd\x38\x14\xc7\xbf\x9c\xe7\x23\xd1\x5d\xcd\x70\x2c\x0a\x43\x2f\xa1\xd3\x58\xc9\xec\x86\xa6\x22\x7c\xb3\x4f\x48\xba\xe2\xed\xbd\x8d\x16\x36\xbc\x85\x60\xcc\x02\x3e\x1b\x94\x99\x77\x57\x2a\xee\xdb\xff\x0c\x59\x3a\x82\x08\xfe\xb6\xb4\x8e\x4f\x18\x1f\x47\x2a\x56\x1d\x09\x89\x39\x97\x5e\x21\x8b\x7e\xb5\x03\x78\x56\x88\x8c\x32\xbe\x92\x78\x63\xe1\x48\x90\xc7\x05\x2b\x8f\xdc\x7a\xa0\x50\x28\xb8\xbb\x14\xc8\x10\x1c\x62\x6e\xc0\xc3\xfd\xdc\x28\x3f\x2a\x00\xf1\x0a\x8a\x07\x02\x76\x48\x5d\xfc\x2d\x25\xba\xf6\x39\x1e\x63\xf3\x14\x81\xfc\x53\x5e\x19\x66\x0f\x52\xe9\x23\x30\x99\xdc\xd7\x4d\xfd\x23\x3f\x40\xfc\x64\xd9\xe5\xe5\xaf\x23\xaa\x72\x8e\xe1\xee\xa9\xaf\xf1\xbe\xb9\xaa\xa1\x86\x83\x21\xb2\x8a\xd5\x0d\xe5\x23\xff\x9a\x76\xca\x15\xe0\x3a\xe1\x74\xb7\x52\xa5\x4c\xa9\x50\xaa\xc4\x6b\x29\x7d\xb2\x11\x6d\xe5\x5d\x5d\xf1\xe4\x13\xde\xcf\xfd\x8a\xd7\xdb\xcb\x0f\x77\xb5\x3d\x30\xa7\x03\x72\x2d\x3b\x75\x88\x77\xe9\xf0\x8e\xdc\xc7\xb1\x22\x4b\xf3\x4e\x57\x86\x59\x79\xe4\xd1\x3f\x05\x90\xb9\x43\x28\x31\xb8\xfb\x03\xed\xc9\x46\x5c\x92\x0a\xd9\xbe\xce\xac\xe4\x23\xf9\xa4\x7b\xe9\x89\x0e\xee\xa3\x8f\xec\xf5\xf7\xde\x33\x2b\x7e\x3f\xe0\x0f\xdc\x7e\xdf\xe7\x5e\x80\xb5\xfc\x93\xce\x3b\xff\xf2\xed\x70\xb6\x04\x3a\x6b\x3b\xeb\x95\xb5\x1e\x4c\x82\x0d\x27\x9c\x8a\x77\x92\x66\x4e\x90\xe7\xd1\xe7\x51\x20\x50\x6f\x97\x9c\x6e\x92\xf3\x81\x06\xc5\x41\xc8\x7a\xdb\x66\xfd\x3a\xfd\x92\xcd\x75\xdc\xa9\x11\x82\x4e\x40\x74\x84\x23\x45\xfe\x02\x36\x67\xff\x98\x73\x12\x78\x4f\x3d\x2d\xed\xa9\xa7\xb9\x3d\x75\x2f\x9f\x15\x13\xfc\xc6\xee\x2b\xfe\x5f\xd0\x85\x41\x92\x08\xf1\x17\x8b\x26\x7c\x62\x2e\x0b\xac\x7b\xc0\x0e\xc9\xab\x97\xc5\x8b\xab\x9b\x0a\x01\x32\xc4\x97\x48\x56\xc5\xf4\xd7\x8d\xb3\xb6\x47\xbb\x63\x3f\x82\x93\x40\x9f\xc5\x51\xc0\x4a\xe1\xf6\x59\x41\x4f\x91\xed\x52\xe1\xae\x24\x1c\xfb\x49\x71\xb8\xa1\x38\x08\xd1\xf4\x2d\x04\x1d\x02\x48\xa1\x1c\x71\x9c\x58\x12\x30\xd6\x3d\xd3\x08\x12\x84\xfc\x80\x45\x3f\xed\xec\x8f\x22\x2c\x8e\x4d\xe5\xee\xbe\xef\x32\x06\xda\xe7\xf7\xaf\x87\xd3\xc6\x73\x37\xb4\xc1\x73\x42\xcf\x1f\x1c\xa3\xa5\x42\x34\x17\xd3\x87\xe0\xe4\xe6\x9e\x75\x91\x89\x10\xff\x07\xbe\x66\xfd\xef\xd1\x13\x61\xce\x59\xba\xa2\xaf\xe2\xef\xff\x24\xdf\xde\x1d\xcb\x7c\x01\xb8\xff\x18\x17\x3b\x31\xa6\x24\x43\xec\x6c\xc1\x3d\x28\xc8\x86\xce\x49\x29\xd1\x46\x91\x08\x2f\xe6\xd3\x1d\x7f\x7c\xa8\xbc\x7a\xc2\x60\xc9\x6f\x05\x7c\x9b\x28\xc4\x02\xe4\x47\x3f\x7b\x6b\x83\x8d\x70\xca\x94\x93\x3a\x59\xdb\xeb\xa9\x45\x1f\x9f\x8c\xcc\x99\x3d\xdd\x7d\xbd\x36\xd7\x8b\xa3\x2f\x17\xd6\xf4\xdd\xc2\x3a\x39\x75\x6b\x6d\xac\x2f\x47\xc6\xca\x36\xa7\x47\x7e\xea\x91\x83\x5a\xf7\xd8\xb1\x56\xf6\x48\xe1\xa0\x91\x26\x6f\xe9\x38\x29\xa5\xa5\xa2\xbf\xb9\x45\x07\x87\x7d\x32\x73\x43\xcb\x19\xac\xec\x25\x16\xdc\x9f\x2c\xb9\x7c\x3a\x0d\x3b\xb6\x84\x15\xa8\x5c\x34\x4b\x38\x8c\x01\xc2\xe2\x7f\x71\xe0\x8c\x29\x71\xe2\x3b\x12\xe6\x88\xdb\x48\xdb\xfc\xe4\xec\x1b\x86\xd9\x2c\xef\x56\x2c\xc3\x59\xee\x22\x95\x23\x30\xf5\xbf\x14\x0f\xe5\x7f\xd5\x2d\x38\x61\x7a\x75\xac\xe9\xc8\x9f\x91\xbd\xd9\x0f\x4f\xa5\xfc\x64\x2d\x01\xc3\x55\xfa\x2f\xe9\x21\x55\x60\xf5\x80\x66\x0c\x52\x56\x5b\xd9\x02\x3a\xa6\xda\xfe\xdd\xe2\x4d\x21\x1e\x9a\xb1\xf4\xc8\x82\xcd\xb3\x32\x0e\xb8\x9e\x0a\x6e\x5a\xb1\x1c\x93\xc8\xf2\xf8\x37\xd3\x07\x26\x35\x05\xf9\xd0\xf0\xee\xf1\xd2\x90\xb8\x7d\xa4\xcb\x09\x30\x60\xa7\x0c\xe7\x0e\x75\xf0\xa6\xab\x18\x06\x50\xbe\x64\x18\x1a\x59\xf2\x17\x75\xa1\xb0\x1b\xb7\xe2\xbc\xb1\x52\x49\x56\x87\xbe\x64\x75\x8a\x17\x4c\x17\xd2\x09\x40\x9b\x7c\xfb\x77\x85\x68\xff\x02\x89\x0c\x9e\x65\xfd\xb5\x4b\xbf\xbf\xe2\xa6\x25\xf8\xd0\x91\x6f\x10\x77\xb9\x23\x59\xc7\x48\x0e\x57\x6b\xa5\x71\x4c\x8a\x73\x41\x38\x03\x99\xa6\x85\x80\x8b\xb6\xac\xda\x54\x96\xa6\xb6\xc4\xef\xf1\xc2\xa7\x7d\x75\xd1\xba\x3b\x30\x60\x49\x7a\xc1\x9f\x74\x37\x3e\xc0\x22\xa8\x1d\x0c\x1b\xb8\x80\xd9\x29\xdd\xd4\x17\x89\xba\x2f\x71\x19\xda\xb2\x33\xed\x88\xba\x0a\x78\x5a\x45\x29\xb1\x69\xa9\xff\x39\xb3\x86\xb6\x99\xc2\x76\x55\x0a\x4d\xcb\x96\x35\x4f\x99\xf3\x61\xea\x9f\xc1\x8e\x60\xa9\x58\x5a\x7e\x1c\xfc\xfc\xb3\xf7\x77\xc4\xd1\xf5\x37\x19\xf5\xd2\x56\x46\xa8\x9b\xc5\xbf\x58\x43\xe9\xaa\x03\x1d\xfb\x7d\xff\x81\xac\x69\x91\x47\xee\x52\x4a\x63\x34\xe4\x6d\x3a\x67\x7f\x7a\xb6\x12\x7c\xd2\xa6\xb6\x26\x60\xc3\xf1\x27\xe3\xcd\x96\xdc\x39\x06\x0d\x1e\xfa\x9c\xfe\x48\x9d\xf5\x95\x7b\x19\x13\x18\x46\x12\xa2\x29\x23\xf1\x07\x48\x95\x91\x39\xea\x43\x36\xfb\x01\xcc\x19\xe3\x69\x5b\x91\xa7\xe4\x4d\x42\x35\x01\x34\xbd\xe3\xad\x8a\xb4\xa0\x70\xd5\x97\x67\x19\xd2\x5b\xfb\x12\x29\x05\x96\xb2\x68\x05\xbc\xb7\x66\x73\x37\x28\xf2\x99\x72\x6e\x90\x57\xc9\x83\x57\x86\x2c\x16\x8c\xc6\x4d\x51\xe9\x00\xfa\xa1\xc0\x55\x55\x9a\x0f\x44\x31\x53\xce\x12\x1a\x5a\x5e\xa2\x15\x3d\x89\xb0\x32\xc0\x92\x86\x05\x58\x82\x80\x64\x25\x8c\x0c\x90\xeb\xc9\x0d\xbf\x24\x38\xd3\x3a\xfc\x2b\x0b\x71\xd2\xd9\x5e\xc3\xcf\x9d\x48\x48\x53\xc5\x78\x0e\x00\xe8\xc8\xe6\x43\xb2\xbb\xf7\x99\x38\x0b\xfc\x01\x61\x05\xdb\x60\xff\xdb\x2a\xa7\xd3\x5f\xd8\x46\x0c\x6e\x31\x33\x4b\x1c\x59\x90\x47\x23\x28\x2a\xbe\x92\xd0\x91\x2a\x83\x5b\xdb\x87\x40\xb1\xa2\x0e\xdf\xa2\x86\xf0\xa0\x21\x35\x1a\x69\x58\x0e\x95\x4a\xd6\xb5\x1c\x82\xe3\x33\x4c\x76\x9d\x22\x4f\x00\xf1\x4f\x7c\x90\xf7\x3f\x46\xc5\xef\x3a\x4d\x04\xac\x25\xfe\x9b\x98\x16\x9a\x55\xfb\x43\xac\x0e\xdd\xb2\x93\x1b\x24\xba\x25\x44\xd9\x2a\x9a\x74\x22\xcc\x98\x30\x2a\xe1\x16\x8e\x66\xf9\x61\xc6\xcf\x68\xba\xb1\x87\x8a\x01\x9d\xfc\x40\x4f\xd8\x52\x0c\x2e\xe2\x90\x72\xe0\x6b\x0b\x8c\x2d\xce\x5d\x80\xa0\xb7\x20\xb4\xaf\x3b\x44\x1b\xb5\x3c\x37\x80\x20\x87\xef\x76\xab\x69\xe8\xee\x59\x7b\x44\xe8\xfa\x57\x6c\x1d\xff\xd9\x85\x5b\x75\xe9\xbd\x55\xb4\xbd\x0d\x12\x8e\xac\x68\x1a\xde\xcb\x0f\x23\xa6\x3d\x04\x09\x25\xb2\xed\x45\xf1\xa9\x17\x56\xcf\x96\x70\x3f\x17\x9b\x15\xf3\x89\x46\x1b\xf3\xe5\xe0\xd9\x96\xfd\xb6\x3f\x98\xaf\xf5\x04\x4d\x66\xec\xf7\x76\xc1\xc9\x9a\x2f\x89\x0c\x0b\xdf\x82\x09\x3a\x60\x84\x4d\xf4\xd9\x61\x12\x7d\xa6\x98\x34\x86\x35\x36\xd5\x63\x90\x49\x63\xd8\x64\x53\x3d\x66\xbf\xf1\xd3\x45\x70\x44\x4d\xfd\xc5\x0a\xc7\xd8\x6e\xa2\x98\xf0\x3b\xc0\xa6\xd8\x0a\x62\x89\x34\xbb\xe0\xe5\x8a\x5c\x7a\xd1\x47\x72\x27\xb9\x5c\x8e\xc2\x88\x8d\xe3\x85\xc9\x2a\xb8\xd9\x42\x83\x7a\xd9\xde\x11\x03\xdf\x36\x1e\x7b\xc5\x93\x62\xb1\xe8\x42\x88\x6d\xea\xc1\xe4\xb1\x54\x29\xfa\xd2\x83\xc9\x9e\xb8\x10\x34\xba\x55\xd0\x25\xfe\xa7\x37\x33\x87\xc4\xbf\x15\xad\x37\x01\x5e\x08\x6f\xeb\x43\x07\x9f\x00\x0e\x17\xbd\xf6\x3f\x5d\xeb\x74\xc0\x9f\x3e\x11\x3b\xd5\x59\x0d\xbe\x6e\x56\xd3\x7f\x0e\xcd\xb5\xf9\xd5\x5c\x2e\xa7\xc8\x56\xc0\x53\xf9\xe9\xc7\x31\x81\x5d\xaf\x47\x67\x83\x89\xb9\x72\xac\xf5\x7f\x6c\xd6\xa3\xe3\xf2\x19\xb2\x52\x1d\xab\x98\x3f\x32\x8c\x86\x81\xfe\xdc\x19\x2d\xf4\xff\x6d\x75\xfc\x98\xb9\x79\xbf\x79\xcd\x4d\x1e\xda\x38\xbd\xee\xe0\xcc\xe7\xd9\xed\xba\xfb\xbd\xde\x6e\x4c\x66\x39\xf4\x59\xed\xe0\xc4\xa7\xe5\xeb\x70\xde\x1e\x57\xdf\xe6\xa7\x53\x9c\xb8\xd9\xe2\xd4\x41\x6f\x5e\x9d\xf7\xbb\x8b\x2b\x8b\xa0\x0e\x30\xd5\xcb\xb7\x97\xe1\x64\x80\x31\x0d\xa3\x8d\xfe\x6b\x16\xc8\xcf\xc9\xbc\x7f\x31\x9d\xe5\xb2\x83\xc6\x70\x8c\x3e\x97\x38\xad\x96\x35\x9b\xcf\x93\x9e\xd1\x58\xdd\x5f\x60\xfc\x5b\x8c\x6f\xdc\xce\x26\x8b\xde\x4b\xe3\xe2\x69\x7b\x7b\x8b\x99\x1a\x13\xd0\xce\xa2\xff\xbd\x93\xaf\xed\xde\x08\x35\xa3\x88\x49\x1b\x37\xfd\x66\xe5\xb5\xdb\x36\xf2\xc6\x39\xc6\xbf\x23\x4c\xd5\x9a\x99\x89\x75\x81\x8a\x18\xcf\xca\x18\x7f\x43\x12\xab\x9b\xee\x4b\x66\xfa\x79\x99\x36\x2f\xf0\x77\x05\x53\xbd\xbe\x1d\x34\x2b\x9f\xc3\xab\x62\xa5\x7d\x89\xbf\xcd\x05\x69\x9c\x5c\x75\xd7\xfb\x5e\x7b\x58\xf4\x56\xa7\xb8\x0e\x73\x9c\x78\xde\x45\xbf\xee\xf2\x46\x0f\xd5\xbd\x8d\x5a\x6f\xbe\xa8\xbd\xe3\xf4\xd6\xb6\x66\x8d\xaf\x70\x39\xd5\xbc\x61\x7c\x18\x6d\x5c\x85\x16\x82\xb9\x31\xc2\xfe\x3c\x35\x7b\xe7\x3d\xa3\x6a\x14\x8d\xfa\xc2\x68\xdf\x3e\x9c\x66\x17\xc6\xcb\xf8\xe6\xda\x68\x60\x52\x28\x83\xfd\x43\x6a\x45\xe8\x0d\xdc\xfe\x43\x7f\xb5\x71\x3a\x81\xbb\xc0\x89\x35\xd2\x4a\x4d\xd2\xe4\x6d\xa3\x66\x60\xba\xa3\xd3\x53\x02\x7b\x37\x36\x4e\x4f\x11\xdd\xea\xb8\xea\xe3\x53\x22\xcd\x50\x26\xff\xe7\xcf\x7e\x7f\x88\x88\x1a\xf5\xa5\x71\xd5\x35\xaa\x4f\xc6\x45\xc3\xe8\xd5\xb7\xa8\xfd\xdb\xe7\xa8\x7f\x5a\x55\x63\xb6\xc0\x30\x55\x13\x77\x5d\xb3\xf1\x74\xfe\xd1\xae\x37\x6c\xa7\x7a\x6e\x0c\xaa\x55\xbb\x35\x37\x1e\xba\xe9\xfb\x6d\x23\x7b\x33\x29\x57\x8d\xc7\xee\xee\x62\xdb\x78\x41\x72\x7f\x7f\x6a\x1b\xed\xeb\x6a\xfd\xb0\x38\x2e\xdf\x3f\x56\x0d\xa7\x71\xd5\xae\xf6\x27\xe8\xef\xc6\xf6\xde\x98\x74\x5f\x1a\xf7\xf9\x71\x7d\x5b\xae\x9e\xd3\xb4\x76\xe3\xea\xa9\xda\x47\x92\xf9\x48\xa5\xe5\xf4\x74\x74\xf8\x61\x64\xca\xf5\xda\x16\x09\x55\xf5\xd2\xa8\x63\x39\x6a\x2f\xeb\x38\xb7\xb6\xad\x36\xce\x3b\x37\xb5\xc6\x03\xe6\x23\x5f\x6d\xd9\xf9\xda\xfd\xb8\xb1\xbb\x18\x37\xea\x2f\xdf\xaf\x9b\xc5\x9b\xc9\xa6\x3a\xff\x51\xae\x5c\x2f\x0f\x8d\xe7\x42\xe6\xe3\xa2\x93\xfe\xb8\x5b\x35\x86\x17\x8f\x9e\x60\xe2\xff\xa1\x92\xea\x75\xab\xb3\x1c\x7e\xdf\x96\xcb\x95\xb6\x71\x6d\x1c\x12\xf9\x34\x3e\x3f\x5f\xba\xaf\xa4\x5d\xea\xf7\xb7\x2f\xd5\xdb\xd3\xd3\xdc\xa9\xd3\xbe\x7b\x33\xb6\x44\xf5\xb4\xc8\xbf\x6c\xfb\x65\xae\x4f\xcd\x71\xd5\x24\xf8\xf7\xa7\x39\x32\xee\xdb\x50\x63\xdf\xd4\x8b\xf8\x2f\x52\xce\x6d\xcf\x4f\x46\xda\xe3\xc5\x1d\x27\x68\xbc\xbc\x04\xf2\x8f\xc6\xe8\xd8\x78\x34\x9a\x79\xfc\xb1\xae\xf5\x82\x71\xd1\x18\xd7\x2d\x76\x9c\xdc\xb6\xfd\x7a\x91\xbf\x51\xe7\x65\x38\x3a\x5b\xa3\x12\x7c\xdf\xa0\xfc\x6a\x23\xf8\xc6\x83\xb1\x7a\x13\x7c\x3f\xe1\x36\x7e\x0a\xbe\xbb\x38\x7f\x14\x7c\x2f\x8c\xab\x6d\x75\x1e\x7c\x3b\x46\x63\x5b\x7b\x20\xe3\xbf\xdd\xbe\xc4\x29\xe6\xb8\x36\x0d\xbe\x1b\xf8\x9f\xfb\xe0\xbb\x85\xaa\xdc\x18\x05\xdf\x37\x38\x7f\x1d\x7c\xb7\xf1\x77\x25\xf8\x7e\x32\xce\xc7\xe7\xb7\xc1\x77\x17\xe5\x9f\xbf\x06\xdf\x0b\xe3\x79\x7c\xfe\x19\x7c\x3b\xc6\xe5\xf8\xe2\xb2\x9d\xad\x6c\xad\xef\x97\xcb\x5e\x76\x92\x6e\xd5\x26\xf5\xab\x07\x63\x77\x53\x6f\xa4\x5b\xcd\xcb\x42\xab\x59\xd9\x99\x2f\xc3\x65\x7f\x76\xee\xb4\x9a\xe7\x99\x61\x73\xf2\x3e\x98\xdf\x8c\xdb\xb5\xea\xac\x9f\x2d\xa4\x7b\x2f\x1f\x4e\x7f\x57\x78\xed\x67\x33\xc1\x77\xe6\x72\xda\xcb\x3d\x3b\xdd\xef\x97\x41\x5a\xb6\xf7\xde\x9f\x77\xa6\xfd\xe6\xc7\xfb\xf3\xec\x79\x37\xc8\x4e\xdf\xfb\xb6\xf1\x71\xfd\xca\xd0\x49\x0f\xa7\x7d\x94\xd7\xfd\xde\x99\xf6\x6a\x55\xdb\x7a\xa8\x7e\x0e\x67\x83\xdd\xf0\xa2\x33\x6b\x35\x7b\xbb\x7e\x36\x3d\xee\xcc\x2a\x9b\x61\xf3\xd9\xe9\x37\xcb\xe3\xc1\xc5\xe5\xbb\x39\x7b\x7e\x1d\xd6\x0a\x0b\x04\xb3\xbd\xb3\xcb\xef\xbd\x20\x7f\xd3\xcd\x56\xd6\x46\xe3\xc6\xe8\x6f\x51\xaf\x5e\xbc\x19\x83\x71\x75\x69\x34\x07\x86\x69\x54\xd3\xb8\xe3\xaf\x8c\x6a\xdd\xa8\xbd\x61\x29\xdd\x19\x68\xc4\xdc\xb4\x0d\x92\xde\x1d\x57\x0b\xf8\x6f\x84\xb7\x33\x9a\x6f\x46\x6f\x8b\xf1\xf2\x46\xb7\x5d\x75\x48\x7e\xbb\x9a\x31\x2e\xda\x98\xce\xbb\x71\xd1\x32\x06\x5b\x63\x8c\xbb\x18\x49\xcf\xcc\x68\x96\x8d\xfe\x18\xd1\x6f\x3e\x19\x7d\x03\xc1\xa3\xef\xeb\x71\xf5\x95\xa4\xb7\xe1\xfc\xa7\x71\x75\x8a\xf9\x1a\x62\xfa\xcd\x06\xe6\x13\x84\xeb\x8d\x51\x79\x88\x8f\xa1\x81\xe1\xb7\x38\xfd\x1d\xcf\x65\xbd\x36\xe2\xf3\xe2\xc6\x30\xdb\x34\xbf\x85\xe7\xae\x5a\x1e\x2b\x04\x90\x4e\x67\x8b\xf1\xf3\x14\x0f\x95\x47\xe9\xe1\x89\xb0\x6a\xe3\x76\x42\x7f\x7f\x1a\x17\x88\xee\x16\xb5\x0b\xaa\xe7\x10\xd3\x41\xf5\x46\xe5\xef\x68\x3d\x70\x7d\xbb\xb8\x7d\x36\x38\xbf\x47\xf8\x46\xfc\xe0\x76\x40\x13\xd8\x80\xf0\xb9\xc0\xe9\xaf\x38\x1f\xd5\x7f\xe1\xd2\xd9\xe2\xa9\xec\x7a\x6b\xa0\x7c\x10\x7f\x63\x34\x49\x7f\xad\xbd\xf1\xe8\xfd\xa1\x53\x62\xc8\x1f\x3c\xaf\xb6\x91\x1e\xde\x4e\x5f\x91\x1d\xf2\x6a\x66\x33\x93\xc1\xcc\x69\x76\xb3\xd3\x5d\x37\xfb\x31\xf5\xc6\x3b\x9d\x47\xcb\x30\x8d\x7a\xcb\xb8\x41\xf3\xf6\x69\xa9\x51\xaf\x9d\x1e\x7e\x20\x2d\xe6\x38\xb5\xea\xb8\x67\x67\xb7\xc6\xc3\x76\xdc\xab\xd5\xb6\xdb\x73\x34\xe2\x6b\x3d\xd3\x31\x3a\xe7\x2f\x99\xf1\xa4\xb5\x6b\xf4\xed\xe9\x78\xec\x9c\x57\xdb\x2f\xb5\xe6\xb6\x7d\xfe\xd6\x6f\x5d\x1b\xf9\xa7\xf3\xf1\xc4\xa9\x4f\x7a\x2f\x0f\xb5\x6d\xed\x0d\xd9\x45\xd7\xc6\x82\xa4\x19\xcb\x73\x94\xbf\xa5\xf9\xd5\x5e\x73\x87\x69\x56\xbb\xad\x66\x77\x6c\x2f\x96\x13\x94\x77\xf5\x74\x3e\x19\xe3\xf4\x16\x4e\xef\xa3\x09\xa7\xea\x8c\x9d\x7a\x8f\xd0\xbf\x9d\x19\xfd\xee\xf9\xb4\xf7\xd2\x41\x46\x5b\x6d\x8d\xe8\x23\x3b\x09\xc1\xf5\x9e\xa7\xbd\xeb\xbe\x51\xbb\xae\x55\x31\xfd\xc6\xe5\xcb\xf9\x1b\xfa\xfb\xbc\x9d\xa9\x76\x1d\xe3\xe9\xb5\xbd\x32\x9a\xad\x74\xab\xdf\x7a\x38\xef\x39\x48\x4b\x20\xd8\xfa\x75\xed\x06\xf3\x3f\xee\x5d\x37\xce\xbb\x6f\xad\xb1\x63\x20\x75\xbe\x6a\x5d\xa1\x76\xff\xd1\x42\x7c\x57\xdf\x6e\xc6\xb6\x5d\xbb\x42\xed\xb0\x72\x1e\x8d\xf3\xcb\xee\xb2\xf3\xd2\xac\xb6\x9b\xd9\xf3\x87\x97\xe7\xf1\xeb\xcb\x43\x63\xec\x34\xaa\x8f\x2f\xd7\x68\x2c\x7d\x38\x13\xf4\xbb\xd7\x2a\x21\x2d\x74\x3e\x99\xbe\x3c\x64\x51\x3b\xed\xb6\xd5\xf4\xcd\xca\x19\x23\xe9\x69\xdc\x8e\xdb\xa8\x1d\xab\x0f\x28\x6d\x77\x5b\x6b\xa1\xfa\x19\xb5\xdb\x5a\xb7\x5f\x33\xba\x2b\xa3\xda\x45\x3c\x5f\xe1\x7c\x7b\x3b\x6e\x35\x9e\x10\x2f\x97\xe7\xdd\x12\xb2\x57\x5f\x2e\xc7\x9d\x6b\x94\x5f\x43\x79\x3b\x2f\xcf\x58\xb5\x4a\x8d\x5a\xb5\xf6\x8c\xbe\x5f\xae\x5a\xd9\x06\xe9\x1b\xb7\xbd\x8c\x66\x09\xb7\xaf\xbd\x6d\x21\xc3\xb6\x8d\xda\xca\xe7\x09\xd5\xf9\xf2\xe1\x76\xd2\x69\x3c\xe0\xd9\x63\xed\x18\x63\xc7\x69\x3f\x9d\x77\xd0\xc0\xe8\x3e\xb5\xd1\xf7\x9b\x83\xdb\xa6\x85\x68\xd5\x9e\x6e\x51\xbd\x71\x9f\xa2\xdf\x0f\xb7\x35\x84\x7b\xd5\x4e\xff\xd8\xe2\x56\xc0\x7d\xd4\x4a\x5f\xe2\xf6\xbe\xba\xae\xd5\xf2\x55\x34\x6e\x5a\xd7\xe3\x86\xd1\xbc\x43\xbc\x34\xb7\xb5\xf4\xed\xb8\xd5\x5a\x8e\x11\xdc\x35\x6a\xf3\x57\x04\x77\x7d\xdd\x58\x3f\xbd\x5c\x37\x2e\x8c\xa7\x4e\xef\xf2\x1a\x4d\x6a\x0f\xb7\x79\x94\x7e\x83\xd2\x3b\x2f\x8d\xf5\xa3\x97\xd7\xdc\x9d\xe3\xfc\x47\x37\xff\x16\x21\x1a\xf5\xc6\xed\x33\xca\x47\x2a\x19\xf5\xf5\xcb\x79\xcd\x31\x16\x2b\xc4\x8f\xd1\x2e\x19\xb5\xcb\xa7\xab\x8f\x5a\xbb\x35\x6d\xaf\x1a\x57\x86\xfd\x8c\xf2\x1a\x2f\xa4\x6d\x77\xcf\x6d\x84\x53\xc5\xed\xee\x18\xed\x69\x7b\xf1\xe3\xaa\xd5\x5a\xbc\x76\xfb\xc6\xe5\x95\xdd\x78\x45\xf5\x9c\x30\xdf\x7d\x07\xad\x19\xda\x59\x84\x47\x68\xb4\xa6\x34\x1d\xcb\xca\xb4\xde\x29\xe1\xba\x0f\xc7\x4e\x0b\xd7\x13\x59\xef\x2f\x88\x8f\xa7\x67\xbb\x8b\x78\x43\xd3\xe1\x2b\xee\x1f\xc4\x8b\x71\xbf\x42\xe3\xaf\x7d\x5e\xef\x36\x5a\xa8\x2d\xf3\xa8\x6d\x8d\xf3\xce\x73\xa7\x8b\x2c\x86\x1b\xd4\x0e\xe3\x2e\xee\xc7\xfe\xd3\x2d\x5a\x8d\xe0\x79\xb3\xd6\x5e\x2c\xc7\x4e\x3b\x7d\x7e\x55\xaa\xae\x91\xfc\xd8\x58\x66\xea\xbb\xdd\x87\x61\xe4\x57\xa8\xee\x6d\x54\xf7\x6a\xdd\x76\xd6\x4e\xb5\x81\x68\xb5\xee\xae\x76\xd9\x6d\xc3\x46\xf9\x5b\x92\xff\x88\xf2\x1b\x34\xbf\x8d\xfb\x91\xe4\x9f\x3f\xec\x3e\xaa\x63\x92\xff\x82\xf2\x2f\x68\xfe\x00\xe5\x8f\x49\x7e\xb3\xb6\x43\xed\x45\xf2\x7b\xd7\xd7\x46\xeb\xaa\xd4\x40\xe6\xdc\xf3\xd3\x0b\xe2\xa8\x8e\xe4\xb1\xd5\x44\x6d\xf0\xd2\xcc\xd4\xdb\xe9\x2a\x9e\x1f\xdb\x6f\x57\x57\xa8\x9e\xb7\xd5\x87\xcd\xb6\xff\xe0\xf4\x5b\xd3\x37\x44\x6f\x81\xeb\xd6\x23\xf4\x30\xbf\x9d\x37\x4c\x6f\x80\xca\xab\x35\x1f\x70\x79\x69\x94\x7f\x43\xf2\x2f\x10\xbf\xd5\x2a\xc9\x1f\xa1\xfc\x73\x92\x5f\x43\x7a\xa5\xdd\x25\xf9\x2d\xcc\xef\x07\xc9\xb7\x51\x7e\x8b\xe6\xdf\xa0\xfc\x37\x92\x7f\x59\xdb\x8e\xef\x5d\xf9\xbf\x44\x3a\x08\xb5\xe1\x6d\xb7\x56\xad\x23\x99\xae\x76\xb1\x3c\xd8\xcf\x13\x2c\xb3\x4e\xad\x8d\xc6\x2c\x82\xb1\x77\x08\x6e\x83\xfe\x5b\x20\x3a\x03\xa7\x55\xab\x5e\x60\x79\x36\xde\x9e\x71\x9f\x9f\x77\x67\xc6\x6b\xf7\x71\xfc\x8a\xe4\xf3\xf9\x05\xce\xeb\xb7\x9e\x51\x1d\x6b\x63\xb6\xff\xaa\xe7\x2b\x63\x7e\x85\xc6\xe9\xf9\xa3\x41\xdb\xa0\x86\xc7\xca\x78\x15\x0e\xb3\x70\x5a\xf5\x17\x3a\xd6\x6a\x08\xfc\xda\xa8\x7b\xb2\x43\x74\x8a\x3f\xc6\xaf\x90\x2e\x40\xfa\xac\x6a\xa6\xa9\x22\xae\x36\xee\xed\x9b\xbc\xf3\xb0\xa8\x9e\x93\x7a\x6c\x11\x9d\xed\xb8\xb3\x63\x79\x45\xbf\x1b\xb7\x93\x3b\xd4\x2e\xd7\x0f\xdb\xcd\xf9\xe7\x16\xc1\xe5\x95\x70\xe8\x77\xbd\xfb\x39\x46\x30\x65\x2c\x4b\xc6\xb9\xfd\x34\xbe\xb6\xab\x78\xa5\x8a\x75\x23\x1a\x47\xb3\x2b\xfb\x6d\xf0\xda\xd9\xdd\x4e\x5a\xe7\x13\x1b\x8f\x43\x34\x96\xb0\x3e\xdc\x18\xed\xc6\xf3\x79\x0d\xf1\x51\x47\xfd\x66\x18\x2f\x78\x3c\xe1\xff\x10\xec\x05\x1e\xef\xd5\xb7\xa7\x55\xaf\xbb\xd8\xb4\x76\xc6\xf8\xbe\xb5\xc0\xe3\xf6\x03\xc9\x96\x81\xda\xa3\x71\xd9\x47\xff\x3d\x18\x1b\x0a\xdb\xc0\x63\x91\xe8\xe2\xce\x03\xd2\xe9\x4d\xaa\x5f\xda\x88\x4d\x67\xdb\x1a\xa3\xd9\xb6\x8f\xfe\x9e\x19\x1f\xcb\x5e\xfb\xad\xf5\x8a\xc6\x5a\xab\xbd\xab\x21\x5d\xe3\xf2\x95\xee\x21\xfc\x4e\x1d\x8f\xc3\x2e\xee\xb7\x9a\xe3\xcd\x19\xb5\x76\xb6\xfa\x86\x64\xa2\xde\xce\x9e\xbf\x61\xdd\x67\xbc\xdd\x4e\x9a\xe4\xbb\x8a\xea\x71\x33\x25\x38\x0f\x37\x63\x32\x37\xd8\xb7\x4d\xd2\xcf\x25\x44\x3f\x6d\x22\x19\x7a\xd9\xd6\x1a\x88\x3f\x54\x4e\xf7\xc5\x60\xca\xb8\x71\x75\x2d\x5a\xa1\x62\xdd\x80\xfa\xa8\xfa\x80\xe5\xed\x89\xd0\x43\x75\x99\x75\xf1\x3c\x81\xf4\x70\xaf\x76\x87\x75\xce\xb8\x87\x75\x70\xc7\x79\x45\x32\xf4\x8a\x65\xab\x5a\xeb\xbe\x76\x66\x8d\x3c\x1e\xdb\x37\x48\x36\x91\xd4\x12\xfd\x5a\x7d\xe8\x8e\xaf\xbd\xf6\xfe\xdc\xe2\x36\xfb\x24\x6d\x66\x23\x7d\x8b\xc7\x61\xcd\x18\x77\xec\xdb\x0b\x52\x7e\xb6\x81\xf3\xd3\x6e\x9b\xd6\x51\x9b\xa2\xfe\xa2\xb8\x48\x47\x3f\xbd\xd4\xf2\xe3\x7b\x34\x97\x35\xb1\x3e\x64\xf2\xf0\xfc\x47\xda\xdf\x87\xed\x4e\x31\xef\x0f\x18\xe6\xa5\x89\xe5\xf0\xb5\xb5\xab\x76\xbb\x13\x67\xf2\xe2\xe9\xb4\xda\x8d\xdf\x8f\x2d\x24\x03\xa8\xdc\x8c\xcf\x57\xe3\x26\xe0\x19\xe9\x89\x56\xb3\x3a\x23\x3a\x31\xe8\xf7\x2c\x9a\x53\x11\x0c\x6e\xd3\xe7\xe6\x13\xb2\x0b\xee\xcf\xdf\x36\xce\x43\xb7\x8a\xb4\x36\x92\x1f\x34\x1e\x77\x48\x16\x88\xbc\xe1\xf9\xdc\x28\xbf\x3c\x14\x3f\x2e\xc7\x8d\x27\x3c\xd6\xef\x6a\x5b\xd4\x66\x85\x26\xd6\xbf\x9d\x29\x9a\x67\xea\x1f\xbd\x50\x78\x34\x97\xde\xd4\x1c\x09\xe7\x7a\xd5\x98\x19\x9d\x36\xd6\x29\x45\xc4\xfb\xc7\x55\x7e\x31\x6e\xd5\xd1\xbc\x8b\xda\xd5\x7e\x1d\x2b\xe1\x71\xbf\x5f\xaf\x8c\x19\xa1\xbd\xc3\x7d\x65\x22\x9c\x17\xdc\x87\x7e\xbd\x1d\xa3\x77\x7e\xb5\xbb\x41\xed\x6d\x6c\x5a\x9f\xb6\xcf\xcb\x3d\xd6\xab\x78\x9e\x59\xfd\x02\xb9\x6f\x58\x68\xe5\x7a\xb7\x1d\x37\x2f\xb1\xbc\x1a\x57\x68\x0c\xd8\x33\x4c\xe3\xb2\xde\x6d\xb6\xd1\xb8\xbe\xad\x77\x5f\x3a\x68\x7e\xc3\x72\x8f\xe6\x2e\xfc\x7d\x3e\x43\xf2\xf7\x82\x71\x26\xa4\x6e\x48\xe6\x50\xdb\x95\x5b\x9f\x48\xce\x1f\x78\x59\x6a\x3d\xcf\x02\xbe\x69\x1b\x32\x7d\x84\xe6\xad\x7a\x63\xd5\xc2\x63\xc5\x6d\x33\xbf\x9e\x78\x1c\xec\x8a\x48\xc7\x62\xb8\x32\xd6\x05\xcf\x98\x57\x6c\xc7\x20\x1b\xa7\x6a\x74\x9e\x9e\x1a\x28\xff\x1a\xeb\x8a\x86\x11\x91\x8f\xe7\x34\xa4\x2b\xab\x77\x48\x7f\xe1\xef\x16\xb2\x35\xcb\x3f\xae\xfb\xd5\x3a\x91\xb7\xb7\x27\xd4\x4f\xf9\x71\x67\x81\xe6\xe8\xc7\xa0\x9d\x3b\xc8\xa6\xc2\xe3\xc3\x69\xdc\xa0\xfe\xad\x9e\x5f\x5f\x23\x1b\xb9\xbe\xc5\xbf\x9b\xe4\xf7\x23\xf9\x7d\x81\x7e\x57\xdd\xf4\x16\xf9\x4d\xd3\x2f\x29\x7c\x1a\xff\xbe\xa2\xf0\xe4\xf7\x35\x85\x27\xbf\x6f\x28\x3c\xf9\x7d\x4b\xe1\xf1\xfc\x54\xbd\xa3\xf0\xe4\xf7\x3d\x85\x27\xbf\xdb\x14\x9e\xfc\xee\x50\x78\x07\xff\x7e\xa0\xf0\xe4\xf7\x23\x85\x27\xbf\x9f\x28\x3c\xf9\xfd\x4c\xe1\xf1\x7c\x5c\x7d\xa1\xf0\xe4\xf7\x77\x0a\x4f\x7e\x77\x29\x3c\xf9\xdd\xa3\xf0\x0b\xfc\xdb\xa4\xf0\xe4\x77\x9f\xc2\x93\xdf\x03\x0a\x4f\x7e\x0f\x51\x5b\xee\xae\x76\xc1\x98\xf9\x8e\x74\xd0\x8d\xbd\xd9\xde\xe2\x3e\x3c\x47\x7d\x58\x6f\xad\xd0\xb8\xc4\xb0\x63\x57\xbf\xec\x50\x3f\xe7\x31\x6c\x17\xcb\xc6\x8e\x91\x8d\x26\xea\xa3\x3a\xb2\x67\xeb\x5d\x0c\xff\x8a\xe0\x3f\x11\x6c\x0e\xc3\xf6\x6a\x18\x76\x83\xc6\x30\x86\x7b\x42\x70\x68\xfc\xf9\xe3\xb0\x3a\x43\xb0\x69\x04\x9b\x25\xb0\x68\x6c\xdd\x22\x5d\x7a\xbb\xc3\xb0\x63\x02\xeb\xd4\xc7\x18\x6e\x89\xe0\x32\x2c\xbf\x26\xe2\xf7\xf6\xc1\xe5\xb7\xe9\x20\xd8\x27\x8f\x5f\x87\xc0\xba\xbc\xf6\x1f\xb6\x68\xfc\x4e\x90\x7e\xbb\x79\x7b\xba\x40\xfa\xbf\xf3\xb4\xbd\xc6\x7b\x1d\x8d\x0d\x5a\x08\x4e\x1e\x88\x2d\xd8\x2d\xf4\x36\x6d\x6c\x8c\x57\xf1\xdc\x52\x6d\xa5\x91\x1d\xbc\xbb\xdd\x3a\xe3\xf6\xa2\xf6\xf4\xfc\xd0\xb9\x46\xb6\xff\x78\xf0\x03\xd9\x26\xa8\x23\x1b\x6f\x46\x77\xd2\x79\xb9\xae\x1a\xf6\xb9\x8d\x6c\xaa\xdb\x06\x6e\x07\x1b\x8d\x59\x34\x21\xba\x69\xe7\x8d\x17\xb4\xee\x78\x41\x0b\xcc\xd3\x3c\xd2\x13\xad\xec\x47\xb5\x8d\xf7\x4b\x8c\xff\x38\x48\xe1\x97\x2a\xe6\xfa\x9f\x5f\xd6\xab\x8d\xb5\xde\x2d\xad\x2f\x07\x47\xe0\x36\x37\xbd\x26\xbd\x18\x89\xbb\xdc\xee\x26\xf7\x30\x5d\x69\x76\xc6\xde\x26\xea\xe2\x09\x19\x87\x74\x29\x77\xaf\xda\x3c\xf2\xfe\x54\xef\x9f\x76\xe5\x9d\xe1\x6d\x7a\xe3\x4d\x56\xa3\xfa\x72\x6f\x9d\x5f\x1a\x2f\x78\x53\x1c\x27\x36\xc9\x0a\xf3\x0e\x2f\x2e\x9f\x56\x64\x93\xbc\x9b\xeb\xa5\x49\xe2\x80\x10\x7f\xc2\xff\xbb\x30\x7a\x97\xa7\x85\xce\x6c\xd0\x1c\xe2\x85\x69\x35\x4b\xa8\xe3\xcd\xeb\x59\xc7\x1e\x2f\xf3\x77\x59\x6f\x93\xbc\x4f\xe0\x6b\xa4\x7c\xb2\x62\x6d\xf7\xb2\x1f\x85\x1e\xfa\x59\x5d\xe3\x15\x6a\x8d\xec\x5f\xaf\xd7\x95\x79\xf5\xa2\xb7\xe8\xa1\x45\x1a\x26\xff\x4a\x16\x9f\x04\x35\x6b\x3c\x38\x65\x2b\x4b\x36\xcd\xd1\xe7\x88\xec\x1c\x11\x7e\x6a\x6d\xb2\x89\x6e\x36\x33\x69\x0b\x97\x7f\x48\x37\xcd\x09\xaa\xe1\x2c\x51\x8a\xd3\xcf\xde\x4e\x30\xbd\x72\x50\x7e\x8b\x6c\x9a\x65\xe9\x26\x3a\xa2\x97\x0f\xe8\xd1\x4d\xf5\xfe\xec\x7c\xdd\x6b\xe3\x3d\x75\x0c\x7f\x8e\x6b\x51\xfb\x1c\xec\x86\xcd\xc9\xc7\xb6\x9f\xbb\xc5\x06\xd9\x25\xd9\xa6\xaf\x91\xfd\xf4\xd2\x6a\x95\x31\x66\x17\x78\x53\x1d\x7f\x92\x4d\x79\xe3\x99\xa0\x9a\x64\x93\xdd\xba\xfc\x78\xed\x36\x1f\xad\xed\xa3\x8d\x56\xce\x2f\xd5\x71\x71\x76\x65\xb6\xcb\x75\x23\x7d\x73\x3f\x69\xf6\xca\xdb\x66\xbd\xb5\xbb\x79\x34\xb6\xe8\xbf\x9d\xb3\x43\x2b\xd4\x87\xb7\x8d\xd9\xdd\xde\x5d\x7f\x8c\xad\x9b\x8b\xd6\xc5\x7d\xfb\xd4\xde\x35\xaf\x66\xbd\xf7\xea\xc5\xee\xf5\xa6\x76\xd9\xaa\x1b\xf7\x56\xa5\x96\xad\xe6\xe7\xcd\xdb\x71\x17\x4d\xba\xe3\xa6\xd1\xab\xbe\x75\x9b\x68\xc9\x54\x2d\x4f\x5e\xab\xa3\x6a\xb7\x59\x7f\xa8\xdf\x56\x7f\xb4\x7b\xcd\x1e\x02\x39\xcf\x6f\x4f\xdf\xcb\xf7\x4f\xef\xb5\x1a\x5a\x54\x5d\xdf\x34\xae\x9f\x8d\x6d\xe3\xb5\x59\xbe\x6b\x55\x91\xb9\x56\x30\xcc\x77\xbc\xc7\x8f\xe9\xb5\x8d\xdb\x66\xbd\xd1\xbf\xc9\xdd\x97\x73\x63\xd4\x11\x8d\xeb\x76\x3d\xff\xdd\x1e\xcc\x9f\xbf\xf7\x86\xeb\xdb\x97\xf3\xcb\xa7\x72\xef\xc2\x78\xb8\x9b\x3d\x8c\x17\x46\xe9\x7b\xae\x3e\x69\x17\xcb\x3f\x1a\x57\x9d\xf1\xd6\x7c\x58\x9d\x0f\xed\xc6\xf0\xc2\xb0\xd7\xd5\x6a\xf6\xad\x7e\xf1\xf8\x36\x1f\x0c\x0e\x8b\xd9\xcd\x5d\x7b\xb5\x7e\xb9\x38\x9d\xa5\x4b\xf3\x74\xe5\xf2\xba\x93\x5e\xf5\xbb\xce\xd4\x39\x3c\xec\x64\xd6\xf3\x6c\x7d\x35\xef\x4c\xb6\xaf\x57\xf3\xb4\x69\x37\xdf\x9f\x16\xbd\xab\xef\x46\x71\xe6\xdc\xf7\x7a\x57\x95\xf4\x74\x90\xc9\x3d\xbd\xbf\x16\x9e\x6e\xaa\xf3\xf3\xe1\x7a\x72\x79\xff\xd0\xdb\x2c\xe6\x0f\x9d\x2b\x73\x9d\x73\x9e\x6a\xa5\x8f\x97\x3b\xe7\xc7\xcb\xc3\xb0\x7b\x79\x78\x3f\x6d\x9d\xf7\xee\x9f\x7b\x85\xf9\xc2\xf8\xb4\xcf\xab\x85\xe9\xc3\x53\xbb\xdf\xa9\x6e\x96\xd3\x5d\xef\x32\xbf\x98\xbf\x5e\xe6\xdf\x5e\x7a\x1f\xc6\xe8\xf2\xe9\x6d\x7c\x69\xde\xb4\x97\x95\xeb\xd6\x53\xa3\x95\x69\x3a\x9d\x87\x8c\x79\x7e\x53\x1c\xd6\x56\x99\x8f\xdb\x8f\x74\xba\x7e\xd5\xf9\x71\x63\x0d\x9f\x27\x4f\x95\xf4\xfd\xf9\x65\x79\x90\x59\x56\x1e\x1c\x23\xdd\xfd\xf1\xfc\x39\xaf\x9d\x5b\xef\xcf\x9d\x55\xbe\xbf\xdc\xde\xbc\x5b\x05\xb4\x14\x75\x9a\x9f\xab\xee\xe0\xe3\x62\x6e\x3b\xa3\x65\xfb\xc7\x5b\xeb\x47\xa7\x38\x18\x9f\x0e\xdf\x96\x77\xd3\x96\x59\x7d\xbe\xb8\x78\x5a\x3c\xf7\xed\x62\xbd\xf6\xf8\xfd\xd4\xea\x3c\xd6\x56\xb7\xed\x2b\xf3\xa6\xfb\xf6\x32\x2d\x2d\x9a\xf9\xdc\x28\x93\xce\x7e\x74\x3f\xee\xbf\xb7\x8b\xef\x76\xe1\x6a\xfa\x64\xfe\xd8\xac\xe6\x77\x57\x97\xab\x75\x7a\xd4\x5c\x8c\x77\xe3\xfb\xec\xa0\xbf\x5c\xde\x7e\xb6\xb3\xa3\xfe\xb6\xd0\x99\x3e\x3e\x5f\xad\x87\x83\xfe\xfd\xba\xdd\xec\xde\x7e\x6f\xac\x2e\xfb\x17\x0f\x23\x34\xb6\x87\x97\xd3\xeb\xd7\x62\xfb\xfc\xee\xb6\xb7\xad\xfd\xe8\xcc\x33\x9d\xf2\xf7\x5e\xa1\x5c\x46\xcb\xc6\xe9\x60\x7a\xb5\x28\x3f\x3f\x5e\x5d\x58\xe3\xbb\xde\xcd\xe7\xba\x34\x78\xbc\x58\xf7\x6d\x6b\xe5\xcc\x6b\x6f\xf3\xed\x60\xd7\xcf\xf5\xb2\xf9\x42\xf6\xa2\x5d\x1c\x7e\x9f\xe4\x4e\x3b\x87\x93\xe1\x4d\x1e\x55\xeb\xf5\xf0\xd2\x1e\xbd\x16\x6a\x87\xd3\xea\x8f\x91\x7d\x79\x77\x79\xf5\xdc\x7c\xb9\xf9\xdc\x2d\xf3\xdd\xd1\xe0\x79\x30\x6e\xaf\xde\x3e\x6c\xc3\xf9\xbe\xdb\x54\x1f\x27\xf5\x69\xba\x33\x5c\xf5\x7a\xd3\xdc\xeb\xfa\xf1\x22\x3b\x71\x4e\x0b\x0f\x3f\xa6\x93\xfb\xf6\xdc\x2c\x5e\xdd\xe7\x47\xe3\x55\xe5\xd1\x6e\xaf\x2e\x9a\xc3\xce\xe2\xf4\xb9\x35\xbf\xc9\xbc\x66\x72\x2f\xeb\x5c\x73\xd8\x7e\x28\xbd\x94\xce\x3f\x9d\xdd\x2a\x7d\xf7\xdc\xda\x94\xde\x6b\xdb\xcd\xe6\xe6\xd0\x6a\x74\x7b\xf9\x97\x5a\xe6\x79\x34\x7f\x9f\x5b\xd5\xc7\xc7\xd3\xea\x62\x32\x3f\x6d\xd4\xad\xdb\xd6\xf3\xf5\x61\xa1\xbb\x7c\x58\x75\xde\x67\xc5\xcb\x9b\x4d\xd6\xbe\xaa\x6d\xd2\x0f\xcf\x57\xcf\xc3\x5b\xe7\xe9\xa9\xd4\x5d\x2c\x97\xb3\xf9\xfd\x6c\x76\xd5\xac\x4c\x32\x8f\x9f\xb7\x57\xd6\xcd\xe7\xf5\xeb\x69\xf9\x7d\x50\x28\x5c\x94\x2e\x6e\x4b\x1f\x6f\x97\xef\xd9\xef\xd6\xc3\x6c\xd4\x3e\x2c\x98\xc3\xca\x45\x7f\xbd\xb8\x7f\xbb\x5c\xbf\xb4\x1e\x87\xeb\x8b\xfe\x74\x79\xbd\x33\x72\xab\xa7\xde\x26\x3b\x7d\x79\xbd\x9b\x77\x1b\xcd\x71\x6f\x79\x9e\x69\x3d\xb7\x87\x46\xda\x79\x5f\x4e\x72\xe7\x66\xbf\xf2\x54\x7f\x79\xad\x77\xca\xe6\x4b\x7d\x77\x3d\xbb\x6e\x1d\x6e\x96\x8d\x4e\x21\x9b\x59\x0f\x16\xa3\x8f\xef\x95\x4c\x7e\xec\x5c\x0c\x66\x33\x7b\x59\x72\xec\xf3\xc2\xbb\x7d\xfd\xe3\xb4\x7f\xfe\x9a\x2f\xe7\xac\xe2\xea\xb5\xb0\x6c\xe6\xfa\xf5\xe7\xc3\x1b\xb3\x53\x7e\x35\xac\xce\x7c\x31\x98\xad\xab\xbd\xc3\x41\x6e\xf2\x7e\x98\xb9\xcd\x3d\x14\xcd\xd2\xeb\xd5\x8f\x9b\xcd\xb8\x7a\xfe\xb4\x45\xab\xc3\xea\xb4\xf4\x64\xd4\xd2\x9f\xab\x7e\xcd\x7c\xcc\xcc\x7e\x8c\xf2\xe5\xf1\x70\xfc\xbd\xd5\xcb\x7f\xbe\x2d\xeb\xeb\xe7\x87\xd1\x5d\xde\x9c\x95\x0e\x9f\x0b\x48\xd6\x3e\xee\x46\xcd\xc3\x8f\xc3\x5c\xf3\x7a\x35\x1c\x0c\x73\x6f\x97\x2f\xc3\xee\xed\x60\x76\x9f\x2d\xdf\x56\x1e\x7a\x57\xab\xd5\xc5\xe1\xd3\x7a\xf5\xdc\x9e\x77\x8a\xdb\xd5\x65\xbe\xf2\x6c\x7e\x4c\xea\x57\xab\xed\x62\xb3\x2a\x3e\x4c\x2f\x36\xe9\x75\x67\x73\x7a\x75\x35\xdb\x95\xa7\xc5\xa7\x8c\xb3\x9a\xbf\x15\x6a\xfd\xfb\xee\x4d\xbf\x3d\xdd\x64\x4b\xb3\xe6\xb6\x95\xfe\x58\xee\xec\x27\xeb\xfb\xf4\x6e\x7a\x55\xcf\x3d\x3d\x2d\x8a\xbb\xf6\xee\xe3\xfd\x6a\xb0\x28\xe7\x2f\x1f\xae\x6b\x99\x1f\xcd\x8f\xeb\xf1\xdd\xb0\x5d\xf9\x61\x96\x1f\x97\x8b\xef\x8b\x6e\x73\xeb\x4c\x26\x3f\x9a\xe9\xf7\x4e\x75\xfb\x50\x9b\x0e\xcf\x87\x87\xe9\xdd\x7c\xf4\x71\xf1\x63\xbd\xca\xde\xbd\xe6\x3f\x3a\xdf\x27\xc5\xef\xcb\x5d\x63\xd2\x1c\xe5\xed\x55\xe9\x69\x54\x7d\xca\xa4\xfb\x95\xa2\x51\x32\xdf\x9b\xfd\xe1\xcd\xe2\x66\xf9\x6c\xfe\x98\x1f\xe6\x3f\xee\x1d\xf3\xb4\x5f\x99\x9e\xf7\x4c\xf3\xe1\xce\xf9\xb0\x72\xcf\xc6\xe8\xfb\xed\x9d\x63\xde\x75\xbe\x3f\x3e\x1e\xa2\x51\x7a\xd1\x79\xbf\x6b\xbe\x0e\x8d\xcf\xcc\xd3\xa8\xde\xa9\xb6\x32\x4f\x99\x8f\xc3\xd7\xe6\x55\xf3\x26\x3d\x7d\xfd\x3e\xcd\x6d\x3b\xe9\x9b\xe7\xde\xe1\x36\xfb\xfa\xdc\x7d\x77\x2a\xb9\xc6\xe1\x70\x79\xfe\xe2\x6c\x9e\x36\xdd\xd2\xa5\xf3\x58\x39\xac\xa5\x37\xa7\xe9\x1f\x87\xa5\x97\xc1\x4b\xba\xff\x72\x3a\x1c\x34\xdf\x5f\x72\x6f\xf6\xb2\xfc\x7a\xd3\x2f\xaf\x6b\xef\xdb\x52\x35\x7b\x95\xeb\x19\xb9\xa7\xbb\xc2\x5d\xb5\x69\xbc\xb7\x5e\x86\x46\xf7\x63\xd2\x9d\x0d\x3f\xec\xcd\x38\x9b\x6b\xf4\x47\xdd\xd3\xcb\x1f\xa3\xd3\x5c\xde\x3c\xef\x7c\xbf\xfc\x7e\xf7\xf1\xa3\x64\x59\xab\x7a\xa6\x77\xdb\xb9\xfc\x3e\xea\x95\x57\xaf\xd7\x8f\xdf\x7b\xbd\x4c\xf1\x26\xdb\xa9\x3c\xdf\x35\xdf\x9d\xd6\xeb\x43\xfa\xfe\xf6\xb0\xdf\xcd\x7f\x6f\x21\x6b\xa7\x33\x6e\xf7\xfb\x87\xdb\x51\xf9\xa3\x34\x3e\xcf\x99\xcf\x8d\x5a\xfe\xb6\xde\xea\xf5\xec\x56\x76\xfe\x30\x99\x6f\x56\x93\xe2\xa4\xb8\x72\x5e\xd2\xf9\xe7\x8f\x56\x75\xe8\x64\x3f\xf2\xb9\xb6\x61\x8d\x8d\x4d\x7b\x58\x1e\x6c\x2a\xfd\xcf\x5a\xb7\x9e\xc9\xd5\xee\xe7\xd7\x4e\xb5\x32\x18\x4f\xb2\xbb\xda\x45\x7e\x5a\xdd\xd5\x3e\xcb\x76\xa1\x3a\x32\x0a\x77\xed\xce\xe8\xad\x71\xb3\x6d\xb5\x86\xe3\x69\x61\x5b\x32\x8c\xd3\x56\xeb\xfb\xa4\x55\x77\x1a\xd6\x5d\xfb\xe1\x7e\x77\xfb\xd6\x38\xbc\x6c\x0d\xc6\x3f\x50\x7a\xf7\xf5\xb2\x85\x6c\xf2\x4d\x3b\xb7\x9d\x21\x1a\x97\x87\xed\xf6\xa8\x91\xbe\xdb\x3e\x0e\x9b\xab\xb7\xc2\xdb\xe9\xb2\x7b\x91\x6d\xd7\x8b\x9f\x3f\xae\xfa\xed\xab\x19\x9a\x3f\x3f\xcd\xbb\x66\x07\xe5\xe5\xba\x87\x9f\x1f\xdd\xca\xe2\xfc\xbc\x57\xad\x98\x9d\xbb\x1f\x9d\x37\xcb\x79\x2c\x4e\x6f\xac\xeb\xfb\xe7\x92\x9d\x7e\xad\x6c\x1f\x2e\x1f\x46\x9f\x9d\x5d\x37\x7d\x5d\xb1\xdb\xc3\x6b\xa4\x44\xed\xa7\xf9\xe1\x87\x7d\xdb\x99\x7f\x2c\x2d\xb4\x08\x9c\xbd\xd7\x97\xa5\xcf\xd7\x71\xe9\xb0\x7a\x39\xfa\xb1\x7a\xa6\x36\x10\x3e\x70\xc4\x87\xc1\xf5\x9c\x3d\xe8\x66\xab\x68\x9a\xbe\x9e\x5d\x3e\x6d\x3f\x9b\x8d\x76\xaf\x57\xdd\xbe\x1d\x76\xde\x7a\x68\xba\x1c\xa2\x75\x54\x77\xd6\x6f\x75\xc7\x37\x5b\x67\xd1\x7c\xb0\xed\xeb\x71\xcb\x29\x18\xd9\xc5\x76\x5c\x6a\x15\x36\x0f\x77\x3f\xee\x4c\xfb\x31\xfb\x3a\xeb\x35\xca\xad\xc2\xb8\xdd\xcd\x94\x6a\xa7\xe9\x4a\xb5\xdd\x18\x8d\x73\xbb\xf5\xe1\x68\x52\x1e\xbf\x77\xdb\x1f\xf5\xf4\x6b\xb1\x5c\xbf\xbb\xb4\xdb\xf3\xf2\xd3\x61\x7d\xde\xfb\x68\xd7\x07\xed\xa7\xc6\xf4\xf5\x7a\x86\x96\xf4\xcb\xea\xb8\xdf\x3c\xcd\x9d\x9e\xf6\xb3\x0f\x77\xbd\xc3\xde\x2c\x8f\x18\x19\x6c\x8c\x8b\xac\xd3\x9f\xd6\xaf\x1f\x1a\xb3\xf2\xf9\xf9\xf3\xe5\xe4\x12\x29\x94\xeb\x8b\xe2\xdd\xc3\xc5\xf2\x66\xb8\x28\x34\x06\xad\xdc\xed\x5b\xba\xdf\xf8\x7e\x79\x7a\xdd\xfd\xf1\xde\x2b\x67\x9f\xbf\x5f\x34\xcf\x87\xc5\xe5\xd5\xe3\xdb\xae\xe6\xb4\xb7\xc8\x3e\xf9\x71\xd8\x7e\xfb\x81\xaa\x4c\xed\x8b\xce\xb8\x6b\xd4\xed\x6d\xe1\xf9\xc1\x19\x5d\x94\x6f\xa7\xe5\xde\xe6\x72\x3a\x32\x1a\x4f\xdd\xcf\xe5\xfb\x5d\xb1\xf5\xbd\x5d\xeb\x97\x4e\x4f\x4f\x4b\xa3\xdd\xf5\xae\x31\xeb\xbc\xb7\x0a\xc8\x14\x31\x16\x6f\x35\xe3\xbc\x7f\x5a\x27\x47\x6f\x74\xfe\x47\x0d\x34\xae\xbf\xff\x18\x7d\x74\xea\xe7\xa7\xad\xab\x6a\x7e\x54\xc9\x15\xec\xa7\x1b\x64\xc7\x3e\x6d\x0d\xb4\x8e\x2f\x74\xcf\x97\xe3\x7b\x6c\xfc\xd0\x43\xc9\xcc\x9b\x6f\x61\xde\x19\xd5\xbe\x7b\xb8\x57\x37\xaa\xdd\xc0\x1e\x1d\x1b\x4d\x7c\x4e\xd8\xc7\x76\x51\x2d\x7d\xf9\xd6\x76\xcb\xbb\x78\x69\xef\xb2\xab\x5a\xbb\xfa\xd0\x3c\x3d\xbd\x78\xb0\xd3\x97\xfd\x97\x8d\x9d\x75\x76\xcb\x2b\xb3\xff\x31\xbe\xcd\xb7\xc6\x2f\x17\x8f\x8f\xfd\x1f\x0f\xf9\xeb\xc7\x8b\xe6\x65\xb5\xf5\x79\x33\x79\x3b\xff\x5e\xbc\x7f\x4f\xb7\x46\xcb\x87\xd3\x4e\xef\x70\xb9\xb9\x59\x3e\x4c\x6e\x67\x37\x1f\xb9\xf7\xd7\xe9\x67\x61\xd6\x36\xbe\xdf\xdd\xf4\x8d\xf7\xf9\xe7\xc7\x65\xf3\x73\x5b\x9d\xbd\xce\x0d\x27\xdf\x19\x54\x76\x6f\xa3\x52\x6f\xb0\x98\x97\xbb\xab\xd9\xcd\xd5\x3a\xef\xcc\x2b\xb5\xd3\x97\x62\x69\x6c\x74\x2f\xa6\x57\xb3\xd2\x76\xdb\xfe\x61\x0f\x6f\x0a\x8b\xf1\xd3\xe9\xb5\x31\x1d\xd9\xe9\x79\xab\x7a\x7e\x78\x7d\x37\x58\x5e\x1c\xa6\xbf\x5f\x5d\xe6\xae\x6f\x07\x1f\x3f\x32\xf9\xf5\xf7\x8f\x5a\x29\x33\xdb\x74\x6b\x97\x0f\xbb\xcc\xf7\x81\x5d\x3c\xac\xbe\xcc\x32\x99\xf3\x56\xa7\x99\x19\xf7\x32\xd9\x97\x62\xf6\x6e\x7e\x55\x9c\x76\x17\x3f\x1e\xd6\x1f\xdd\xcd\xcc\x79\xbc\x5a\xe6\xae\xde\x97\xbb\xd5\xc7\xfd\xe4\x63\x55\xfd\xb8\xbf\x1e\x0d\xca\x95\xc5\x6d\xa6\x74\xb7\xac\x6c\x2e\xcb\xf3\xf7\xb7\xfc\xeb\x74\x60\xbf\xa4\x2b\xbb\xd5\x5b\xef\x34\x9f\x7d\xfd\x7e\xd8\x3f\x1f\x54\x72\xed\xce\xba\x7b\xd8\xdb\xad\x90\x52\xaf\xcf\xb2\xcd\xef\xcd\x59\xa6\x5c\xcf\xbd\x4e\x6e\x4c\x67\xb3\xc8\x35\x73\xa7\x37\xdb\xf1\x4d\xeb\xea\x25\x3b\x69\xbc\x5f\x2d\xda\xd5\x49\x2b\x93\x7d\x5d\xcd\x6f\x97\xcb\xc5\xe2\xe9\xce\xbc\x79\xbb\xd9\xdd\x94\x0f\xaf\xde\x6e\xaa\xe7\x8f\x77\xb7\xf6\x67\x27\x33\x59\x2f\x5b\xbb\xd2\xfc\xfe\xa6\xf9\xf0\x92\xbe\x7f\x45\x4b\xa9\xf1\xdd\x7d\xee\xf0\xa5\x73\x51\xb8\xa9\x95\x16\x95\x5e\xa7\x73\xb8\xbe\x70\xba\x8f\xe9\x4d\xf1\xe6\xea\xfe\xee\x61\xf4\x38\x77\x4a\xaf\xd5\x55\xa7\xf1\x63\xf7\x58\xb7\x3e\x9d\xca\xa9\xf5\x84\xd4\xcb\xcb\xf2\xfd\x65\x70\x6b\x6d\x1e\x0a\x99\xcc\xe5\x63\xa3\xfc\xa3\x76\x8e\x66\xd4\x4d\xa6\xda\xcd\x5c\x94\xb2\x0f\xb9\xee\xcc\x2e\x99\xf7\xf5\x4a\xe1\xb4\x72\x68\xdc\x66\x46\x93\x86\xe3\xca\xeb\x15\x92\x83\x7c\xb3\xd4\xaa\x61\xeb\xb4\x63\x23\x2b\xf5\xe6\xf3\xed\xf5\xf6\xf1\xad\x74\x5b\x6a\x2c\x66\xbb\x74\xc1\xd9\x8d\x0b\x97\x48\x48\x0d\x24\x78\x99\x76\x0f\xad\x77\xaa\xd7\x1b\xa3\xde\x7a\x9a\xda\x1f\x46\xbb\x79\xf7\xd2\x7f\x6b\x61\xc1\xea\xe2\xcd\xcd\x07\xb4\x18\x33\x6e\x5e\x07\xd7\xad\xc6\x95\x31\x3d\x7f\x7a\x7b\xd8\xd5\xc6\xad\x8b\xab\x55\xa3\x69\x3c\x3d\x7c\x5c\xa2\x75\xcd\xd3\xb3\xbd\x6d\xb7\x26\x5d\xb4\x98\xab\xa3\xc5\xdc\x8c\x2e\xe6\xc6\x0d\x83\xa6\x55\x3b\xf8\x10\xe9\x79\x96\x37\x46\x87\xe7\x0e\x22\xe8\xb4\x9f\x0c\xbc\x4e\x0a\x16\x6e\x78\x4d\xf6\xe5\xc0\x75\x9b\x68\x99\xc3\xc1\x6a\x33\xeb\x0b\x6f\xbd\x39\x2f\x38\xc2\x95\x6e\xfa\x9a\x15\xf4\x76\x22\x10\x0d\x77\x5f\xc3\xc0\x45\xf8\xb0\x09\x20\xf1\x1d\xf9\x77\x7b\xc8\xdc\xe8\xe5\x98\xf2\xbd\x96\x97\x82\xfb\xa7\x27\x59\xf7\xc6\x16\xff\xf2\x37\xfc\xc1\x7d\xfe\x40\xac\x20\x5e\xb6\xe2\x92\x44\x86\x4c\xe0\x0d\x0b\x9b\x4d\xdf\x58\x78\x40\x19\xab\x94\xee\x8f\xa4\x4a\xe1\xbb\xbd\x7e\xcd\x18\x1e\xe9\xe5\xcb\x72\x11\xf1\xa8\xcb\x0e\xf6\x58\x47\xde\xf8\x03\x2f\xbc\xd9\x22\x3d\x30\xb0\x1d\x25\xa7\x2f\x62\x3f\x48\x71\x65\x38\x74\x0f\xeb\xa4\xe4\x36\x3d\x12\x23\xcf\x8d\x21\xcb\x83\xf7\x14\xc5\x65\x05\x7a\x58\x3d\xb3\xe7\x9c\x98\x32\x8d\x53\x0a\xfa\x95\xde\x79\xb4\xe7\x3b\x05\xa8\xd7\x8e\xfe\xc5\x40\x72\x8b\x10\x86\x15\x2f\x11\x82\x50\xc2\xd5\x41\x18\x86\xbb\x2a\x48\x48\xd9\x63\x15\xa8\x78\xcf\x76\xb2\x51\x93\xcd\x0b\x1c\xce\x4c\xc7\xc1\xed\xa8\x00\x17\xdb\x09\xeb\x01\xc0\x15\x54\x70\x3b\xdb\xbf\x63\x8a\x21\xbf\x2d\x7f\xb2\xca\xc0\x4f\x4f\x9d\x8c\x6c\x6b\x3a\x3c\x12\xbe\x1d\xf7\xef\x9f\x8c\x6b\x6d\xf6\xd2\x3a\xc3\x83\x0b\xc9\x0c\x7e\x89\x18\x93\xe7\xd1\x85\xf4\x03\x83\xf2\x8d\xc6\xa7\xe4\x5f\xde\x33\x0c\x70\xbe\xb8\x60\x4f\x45\xb0\x8e\x10\x84\x93\x3a\x33\xe0\x83\x01\x33\xbc\x6c\xb0\x93\xca\xe5\x66\x1d\xd4\x88\x7c\x12\x17\x0e\xff\x0b\xef\x9a\xfd\xeb\x40\xc8\x22\xa9\xff\x81\xa9\xfe\x0b\xcc\xb1\x66\xa6\x3d\x85\xb3\x1c\xd4\xd2\x83\x09\x9c\xb7\x44\xb2\xb1\x5d\xac\x86\x70\xee\xd0\x5c\x5b\xea\x9c\xb5\x3d\xb3\x8e\x51\x03\x9a\x8a\x72\xd7\x96\x2a\x03\x21\xc2\x39\x9b\x95\x02\x65\x8e\xa4\xd6\x5a\x31\x79\xb8\x25\x4c\x24\xd0\xcc\xbd\x67\x51\x07\xa2\xa9\xe4\xf7\xff\x69\xdf\x58\xed\xbb\x9f\x93\x1c\x7f\x5a\x58\x6c\xd6\x58\xdd\x33\xce\x59\xcc\xe5\x12\xb5\x92\x39\x1f\x58\x6e\x50\x0f\x73\x79\x3c\x41\x83\x65\x4a\xc2\xbf\x2a\x9c\x69\xa6\x0f\x04\x17\x7a\x78\xaa\x0e\x42\xbc\x7e\x3d\x29\x96\xca\x45\x3c\x58\xe9\xfc\xc1\x3a\xe9\x01\xfc\x8e\xe9\x84\xd8\x52\xf9\x26\x0b\x71\xd7\x27\xc4\x82\x48\xb3\x91\x20\x50\x0b\x3b\x16\x18\x8a\x44\xf2\x3b\x15\xb8\xd5\x02\x5d\x5a\xe9\xc0\x03\xfa\xe5\x1b\xf9\xbf\x3b\x46\xd2\xc2\x2b\x6c\x7e\x1c\xf9\x9d\xb7\x6f\x97\x05\xb3\xbb\xdb\x4e\x6e\xef\x24\xe9\x8f\x40\x90\xfe\x5b\xf7\x8c\x20\x99\x82\x50\x23\xa6\xcf\x56\x16\xc9\xf5\x34\x98\xdc\x3f\x54\x75\xad\x16\x5b\xe7\x5f\x07\x3f\x3d\x5c\x3c\x18\x70\x68\x21\xf7\xbb\x4c\xbc\x2e\x7d\x78\x9f\xd9\x3c\x3b\x9b\x32\x83\x7d\x30\xb1\x06\x6f\xa8\x7d\x20\x75\x1a\xa9\x43\x03\x97\xb6\x82\x53\x21\x02\x82\xac\x4e\x64\xad\xfd\x04\xe3\x69\x90\x97\xb6\x6c\xe0\xdc\x44\x41\x94\xf7\xeb\xf0\x40\x75\x64\x5d\xb1\x84\x05\xeb\xcf\x1f\xb2\xd4\x3c\x39\xa1\x0d\x68\x63\x7b\x7f\xb5\x58\xa2\xca\x48\xce\xbb\x22\xc0\xbf\xf9\xbf\xe8\x93\x40\xc6\x6f\x38\x83\x4e\xed\xf1\xc8\x42\xf9\xce\x8d\xc4\x82\xcb\x16\x6c\x1f\x6f\x1d\x23\x5b\x80\xa2\x05\x69\xad\x56\x8b\xd5\xc9\xcc\x72\x1c\x73\x6c\x31\xc6\x9f\xb3\x19\x0c\x50\x22\x90\xb3\x35\x57\x73\x1c\xe9\xc5\xcd\x91\x9f\xd3\x53\x30\x37\x3b\x7c\xfd\xc9\xb4\x73\xea\x64\xb9\x5a\xcc\x96\x6b\x37\xba\xf9\x76\x62\xaf\xad\x63\x24\x58\x44\x35\xfa\x2f\xb2\xe4\x36\xf2\xf0\xfc\x07\x7f\x6e\x98\x25\xfa\x37\x6f\xec\x42\x78\xde\x93\x77\x86\xb7\xe3\x93\x1c\x91\x75\x62\xde\x92\x11\xb5\x0a\x06\x17\x17\xdf\x49\xaa\x85\x4b\x9b\x5a\x42\xbe\x96\x47\x78\x23\x7b\x3a\xfd\x29\x47\x35\x4a\xe3\x08\x9b\xf6\xfb\x62\xb5\xa3\x83\x87\x79\xbd\xc9\xbb\x52\xb7\x0a\xc3\x91\x99\x81\x66\x17\x8d\x82\xbf\x8e\x16\x83\x8d\xb3\x4f\xf1\xc3\xc2\x20\x97\x29\x80\xc5\x53\x09\x22\xff\x8f\x59\x6f\xac\x91\xcc\x51\x3a\xaa\xe6\xe9\x7e\xbe\x9f\x87\x8a\xfe\xca\x3c\x8c\x47\xe5\x1e\x23\x31\x1c\x58\x93\xc5\x74\xe8\x2f\xf6\x89\xca\xc9\xe4\xd3\x47\xde\x7f\xbe\xb7\x04\x8f\x00\x79\x3d\x9f\x18\x79\xf1\x99\x00\x8f\x74\x86\x26\xef\xe5\xca\x11\xfd\x57\x41\x23\x8a\xfd\x48\x7c\x75\x0d\x14\xa8\x6e\x4f\x47\xf3\xff\x8f\xfe\x28\x3f\xcc\xf7\x21\xcc\x10\xae\xc3\xb0\x40\x5e\x95\x08\x9a\xcd\xfc\x8f\x7e\x36\x9f\x71\x83\x90\x80\xf8\xa1\xcc\x46\xe1\x2a\x58\x16\xd0\xa4\x85\x13\x25\xa0\x5e\x3e\x85\xe4\xd3\x45\x54\x08\x80\xbb\x94\x0a\x81\xf0\x17\x54\x21\x30\x64\x59\x15\x91\xcf\x2c\xae\x42\x2b\x14\x9e\x8d\x17\x5a\x21\xf9\x78\xb9\x15\x92\xed\x2e\xba\x5c\x0d\x08\x38\xe1\x09\x0c\x1e\xd0\xe1\x6e\x2e\xc2\x20\x92\xec\x2b\xc9\x40\x92\x09\x52\x85\x07\xd8\x9f\x7f\x3f\x26\x55\x2b\x15\x9f\x79\xcf\x50\x90\x2c\x06\xc0\x7b\x0f\x0f\x4f\x36\x5c\x55\x48\x7b\xfb\x4e\x08\x0a\x74\xed\x15\xb5\xe1\x22\x30\xe8\xc3\x13\x06\x55\x48\xbf\x90\x41\xaa\x33\x78\x4b\x4c\xc5\x9c\x0b\x4b\x58\x83\x11\x7e\x1d\x63\x9e\x65\xe1\x95\xc9\x6f\xa6\x71\x99\xc4\x66\x93\xb6\x0e\x3d\x4c\xd7\xde\x02\x09\x08\x40\xd4\xf8\x73\xd5\x64\x65\x94\x33\x73\x65\x15\x3f\x83\xc5\x6a\x6e\xad\x4e\xb4\x8a\x66\x61\x85\x18\x35\xb4\x10\x31\xf8\x8d\x5c\x5e\xc8\xe6\x96\x0c\x07\xee\x74\xa9\xc0\xc4\x6d\x2f\x15\x9c\xb4\x07\xa6\x02\x04\x36\xc4\x54\xa0\xc2\xee\x58\x18\x18\xb8\x55\xa6\xae\xba\x16\x14\xbf\x89\xa6\x02\xe3\x77\xd4\x54\x50\xd2\xf6\x25\x07\x48\x17\x52\x8a\x4c\x4f\x01\x47\x88\x51\xa4\x08\x40\xf0\x21\xa2\xa0\x06\x87\x45\x42\x0d\xaf\x10\x0d\x35\x82\x52\x44\xd4\x28\xa0\xa8\x84\x83\x87\x88\x4c\x58\x53\xc5\x82\x86\x44\x48\x0d\x0e\x89\x92\x1a\x5a\x21\x52\x02\x02\x2c\x5a\x02\x90\xbf\xf9\x23\x4c\xc6\xc5\x51\x11\x5c\xef\x9c\xf1\xea\x89\x9f\xdd\xbf\x7c\x01\xa3\x8d\x69\x28\x2d\xd1\x52\x0a\x55\x5d\xba\xc0\xb0\xc9\x19\xa1\xc6\x74\xc1\x95\xc6\x68\xa8\x4a\x8b\x03\x1c\x62\xa6\x86\xa9\x37\x6d\x58\xc8\x80\x0d\x53\x75\xba\xb0\x9c\x69\x1b\xaa\xf6\x42\x41\x04\xeb\x33\x99\x7c\xaa\x36\xb4\xf5\xc4\xd4\xdd\xd1\x04\x88\xcc\xac\xf9\x66\x6a\x3b\xc8\x9c\xd9\xac\xd7\x8b\xb9\xca\x16\x40\xa9\xde\xae\x98\xa2\x96\x2c\x08\x32\x45\xd6\xd6\x4c\x0b\x10\x37\x4e\x94\x71\x11\x52\x78\x08\x28\x65\x02\x6a\x6e\x2d\xeb\x27\x5e\x8d\x19\x1f\x94\xbf\xbc\x22\xee\xed\x0a\xdd\x4d\x9b\x08\x1e\xf1\xc6\xe1\x7c\x13\xbb\x78\x8a\x06\x32\x11\x52\xf4\x6c\x33\x5d\xdb\x34\x1c\xab\xbc\xcd\xaa\x65\x58\x6a\x11\x81\xc2\xaa\x9a\x83\xfe\xa0\x1f\xbb\xab\x69\x35\xa9\xe8\xc0\x7d\x1a\x82\x44\xf9\xb3\x86\xa0\xf4\x87\x4a\x6a\x54\xa1\x1a\xc8\x5c\xe1\x60\x70\x69\xab\x64\x95\x62\x34\x81\x7b\x71\x25\x61\x5d\x18\x6c\x88\x99\xe1\x60\x34\x10\xe3\xb7\x42\x4b\x10\xf7\x90\xc7\x8b\xe3\x37\x1e\x4f\xad\x03\xfa\xe1\x4c\xf1\x06\xfc\x41\xea\x04\x65\xab\xfa\x48\x03\x5d\x6f\x75\x93\x8c\x8d\x04\x64\xe2\x2c\xcf\xf4\x98\x62\x1d\xd3\xee\xd1\x44\x0a\x32\x09\x5b\xea\xd7\x51\x63\x99\xd3\x9d\x5a\xa3\x5a\x94\xb2\x18\xf8\x1c\x0e\x03\xa5\xe5\x83\xb0\xaa\xda\x84\x90\x57\xa2\x30\xc5\x28\xa5\xc3\xf7\xac\x2b\x5e\x5a\xe2\x33\x1c\xc5\xad\xa6\xd4\x57\x0f\x4e\xaa\xb4\x97\xe1\x8a\xa7\x7f\x03\xd1\x0d\xdf\x0e\x82\xfa\xd4\x7c\xf0\x0c\xbd\x4c\xb6\x30\xf1\xe1\x25\x41\x02\x6e\x68\xb9\x37\xfa\x86\xd6\xc8\x44\x6a\x9f\xfa\x30\x66\x3d\x18\xd3\x3b\x49\x8c\xc5\x23\x05\x62\x66\xce\x4b\x01\xb7\xf9\xcc\xd9\xa6\x39\x9d\xa6\xd2\x4e\x8a\x06\x54\x3d\x53\x66\x78\xc1\xc9\x32\xee\x6d\x3d\xb6\x02\x9e\xe0\xc9\x21\xcd\x84\x40\x66\x69\xf7\x38\x8b\xdd\x2a\x84\xe2\xae\xb2\x47\xcb\xde\x01\x39\xfe\x1d\xca\x84\x2a\xac\x1a\x10\x4c\x8d\x70\x81\x7f\xf8\xde\x3b\xdd\xd3\x3c\xec\xc3\x94\xc4\x89\x71\x7d\x28\x06\xa1\xd3\xf0\x4f\xdf\x70\x9c\xdb\x33\xf2\xf2\xf1\x2b\x2e\xf8\xd8\x59\xda\x48\xe1\x17\xfd\xa6\x8a\xc8\x96\xa8\xe0\x58\x30\x2b\xfa\x8b\x84\xa7\xf9\x6a\xcf\x47\xf6\x1c\x25\x9e\x69\x80\xf0\x2b\xb6\x42\x3a\xbd\x12\x43\xbb\xb9\xb1\xc3\x53\xec\x4e\x6f\xe6\x40\xf8\xf4\x50\x9c\xf5\x6e\x6a\x79\xd1\xe5\xd8\x48\x1c\x27\x59\xe8\x5c\x1e\x1f\xf0\x33\x92\x76\x46\xbc\x3e\xdb\x53\x2c\xe7\x9e\x03\xe8\xa0\xcf\x32\xbf\xff\xa7\x57\xf7\x37\x6b\x37\x5a\x99\x33\xcb\x49\xf9\x4d\xf4\x73\xb4\x5a\xcc\x7e\xca\x11\xda\xdc\x40\x68\x69\x36\x7a\x9a\x9f\xf6\xfb\x7a\xa1\x46\xc9\x15\xd3\x42\xd4\x35\x3e\xe3\xf7\xdf\xff\xf3\x6f\xc2\x47\xa0\x3e\x56\xd6\x8f\x8d\xbd\xf2\x94\xd4\xb7\x40\xf7\x8b\x8a\x52\x00\x84\x15\x30\x0f\xe4\x9c\xe0\x21\xb7\xb4\x34\xa1\xe9\x0c\xe3\xa2\x1c\x7c\x8b\xc9\x91\x02\x9d\xd5\xe0\xfe\x49\x7a\xd6\x0f\x4c\x47\x2e\x71\xb8\xc3\xf5\xdf\xbf\x78\x76\xeb\xb0\x9f\x2d\x67\xcb\xea\x56\xfa\xd3\x2a\xcf\x72\xaf\x73\x55\x9e\xbb\x72\x93\xb4\x6f\xf5\x3a\x02\x50\x7c\x8c\xc6\x15\x6e\x9c\xc8\xb1\xdf\x51\x16\x37\x31\x1f\xe9\x02\x8b\x96\xa3\x04\x1d\x00\xf8\x59\x14\x12\x2c\x32\x04\x46\x45\x88\x35\x16\xe5\xc9\xa4\xc2\x9e\x29\xbb\x6d\xe8\xb6\xab\xfa\xea\x30\x7f\x9d\x83\xc7\x8a\x7a\xc1\x00\xe1\xb8\x57\x95\xff\xfc\xcb\xc9\x3c\x1b\xb2\xc9\xe3\xe5\xb3\x37\x56\xfc\x7b\xdd\x60\xf3\xd0\x89\x52\x78\x2d\xc0\xda\x6e\xbf\xd0\x2f\xf9\x5f\x1c\xe6\x57\xaa\x9a\x3b\xf4\xe4\x50\x80\x49\x23\x17\x72\x91\x3b\x89\xdd\xe1\xa5\xd0\x9b\x40\x27\x05\xf9\x12\xbd\xc7\x05\xe4\x1a\x9c\xd0\x89\xd8\x10\xc3\xde\xa4\x39\x42\x47\x21\x79\x8e\xe0\x6c\xda\x05\x23\x2e\xa7\x95\x44\xe4\x5c\x87\xf3\x49\x4d\xfe\x70\x17\xe0\xb0\x7b\x6a\x15\x39\x39\xd3\x11\xdd\x57\xbb\x8d\xf3\xae\xe6\x49\xce\x74\x04\x27\xd7\x14\x0e\xbb\xba\x56\xd1\x90\xf2\x1c\xce\x13\x36\xfe\x53\xe2\x68\x11\xa7\xd8\x4a\x6a\x72\xae\xc3\x79\xcd\x26\xda\x81\xa5\x47\x1d\x68\xab\xe8\x01\xb9\x8e\xe4\x61\x9b\x82\xce\x83\xa1\x2e\xd3\x91\x33\x7d\x32\x99\x93\x8c\xfb\x87\x13\x86\x90\x4a\x4a\x79\x81\x87\xf7\x7f\x8b\x17\x18\x8d\xd3\x30\x49\xe3\x86\xef\xd5\x98\xa1\xd2\x14\x2e\x6a\xa1\xd2\x1c\x2e\xea\xa1\x3d\x13\xde\x6d\xe1\xc2\x16\x21\x8a\x61\x72\x1f\x3a\x26\xc2\x7a\x3f\x54\x32\xc2\x35\x48\x84\x7e\x09\xd3\x61\x3a\xfa\x4d\x88\x2e\xc7\x9b\x02\xbc\x9a\x4e\x0b\x3a\x3a\xfd\xbb\xa4\xa1\x53\x80\x86\xe6\x69\x28\x51\x18\xe3\x42\x2c\x46\x46\x41\xbc\xbb\x0d\xe1\x56\xa3\x78\x82\x74\x62\xb2\x59\x85\xa5\x16\x8f\x71\x06\x4f\x8b\x7b\x1c\xed\x00\xe6\x1c\xdc\x09\xc5\x7d\x26\x81\x13\x95\x06\x83\x13\xe9\x90\x11\xca\x27\x25\x05\x06\x19\x75\x12\x82\x8a\x1d\x32\xbc\x25\xe8\x5c\x46\xc9\x3f\x1e\x22\x32\x7c\x49\xc5\x3f\x1d\x8c\x12\x42\x3e\xa7\xe4\x9f\x2a\x2b\x09\xa3\x90\x86\xc1\x89\xa6\x90\xa1\x43\x3a\x00\xe2\xa7\xa8\xec\x00\x6b\x0a\xd7\xa0\xa8\xee\x81\xf5\x16\x3f\x41\x92\x51\x94\xf0\x13\x1b\x99\xff\x50\x21\x65\x75\x3f\xe0\x6e\x56\x20\x29\x3b\x63\x64\x8f\x60\x94\x8a\xba\x3b\x50\x7f\xc3\x38\xbc\x8e\x49\x3e\xfd\x7d\x93\x7a\x5c\xda\x3f\xfd\x26\xf7\x02\x00\x23\xd7\x0e\x04\xe2\x7a\x06\x82\xe0\xc7\x8f\x02\x22\xba\x24\x41\x30\x01\x08\x71\x6c\x40\x20\xdc\x68\x83\x01\xa2\x59\x59\x47\x02\xc8\x12\x08\x42\xf1\xba\x08\x02\x11\x45\x1f\x84\x59\xa8\x00\xfe\x0a\x3b\xe4\xbf\xef\xec\xcc\xad\x72\x7f\x0a\x64\xd8\x45\x1d\x17\xb9\x9c\x0f\xe6\x8d\x8f\xf2\x1c\x3f\xcb\xb3\x38\x39\x04\x19\x50\xc5\x83\xb7\xd2\x96\x1f\xe1\xa7\x32\x4c\xe4\x29\x19\xf3\x9b\xbc\xed\xc2\x64\x2e\x15\x19\x5e\x79\xa1\xd8\x3e\x90\x92\x8a\xf0\xf0\x9a\xdb\x00\x0b\xde\x1a\x9d\xb1\xaf\x70\xce\x84\x9d\x12\x95\x8f\x03\xcd\x4d\x0f\x78\xc3\x24\x7c\x2b\x04\xaa\x82\xb7\xa7\x91\xce\xb9\xf1\xef\x22\x5a\x9d\x6e\x3e\xf1\xd7\x4b\x39\x80\xd0\x4c\xe9\x02\x17\xd8\xec\x51\x65\xf8\x80\x5a\x40\xc2\x23\xbe\x5f\xd1\x57\x6e\xb8\x7a\xee\x1d\xa4\xaa\xc1\x58\x4b\x32\x8a\x55\xe0\x09\x17\xf6\xe9\x11\x38\xc6\x08\xeb\x99\xaf\x78\x1e\xd5\x2c\x27\x00\xf5\x8b\x51\x0f\x50\x66\x1a\xff\x63\x36\xb6\xfe\x3c\x5d\x13\x54\x45\x47\xc8\x18\x68\x7d\x48\x57\xdc\x84\x67\x8e\xd4\x07\x07\xc6\x0d\xf3\xbe\x21\xe4\x0b\x7e\x37\xc4\x5c\xc9\xe3\x06\x71\xa3\x21\x41\x89\x0e\x34\xc6\x2b\xfb\x8f\xea\xc8\xbf\x60\x87\xf2\x2c\xe9\x4e\x08\x20\x81\xce\x7a\x65\xad\x07\x13\x50\x04\xfd\x3c\x5e\x06\xbd\x64\x08\xd4\x9f\xc9\x82\x33\x56\xaf\x0f\xf0\x29\xf7\x87\x35\xa4\x7d\xe1\x2a\x1b\x32\x79\xe3\xb3\xd7\x15\x79\xf8\x4c\xd2\xe8\x0c\xee\x26\x62\x4c\x3f\x80\x26\xd2\x48\xbb\x94\x4b\xe6\xb7\x7f\x01\x84\xb2\x10\xa1\xac\x4f\x88\x60\x1c\x72\x78\x58\xf5\x65\xd8\xec\x6f\x27\x34\x10\x2b\x3d\x7d\x41\x8d\x4d\xaf\x61\xd3\x2c\xf4\xe9\xe5\x03\xa7\xf7\x21\xda\x16\x58\xa1\x13\x6f\x45\xbc\xd5\x42\x92\x14\x67\x49\x84\x81\x7f\xff\xa9\x43\xe2\x77\x8e\xe1\x10\x46\xff\x67\x20\x10\xd6\x96\xe6\xe0\x0d\x75\xda\xc4\x5a\xd9\xc1\x55\x89\xd7\x8d\xb3\xb6\x47\x68\xc2\x70\xcf\x25\xfd\x7c\x8f\x34\x87\xa5\x84\xfe\xa3\xc7\x1b\x68\x29\xfb\x31\x7e\x57\xfe\x73\x6c\x58\xb4\x7d\x71\xf2\x86\x81\x2f\x4d\xae\x15\x20\x8b\x93\x2f\xff\x61\xb6\x03\x8c\xf2\xcd\x9e\x8d\x85\xc1\x84\x52\x7e\x02\x6e\x89\x28\x80\xfb\x23\xfc\x8d\x37\x0f\x1a\x71\x48\x47\x5a\xd0\x55\x41\x29\x8f\x2b\xef\xc8\x92\x36\x0b\x0e\x59\x6e\x0e\xd6\xc1\xa8\x4f\xf9\x58\x6c\x55\x60\x24\x71\x06\xa4\xf8\x08\xef\x10\x7f\x79\xcf\xe6\xa5\x73\xa4\x0c\x2f\xc7\x63\x84\x80\xd3\x7c\x49\x23\x03\xf8\x1d\xcd\x6b\x67\x6c\xbe\xf7\xe4\x9e\xed\x22\xaf\x52\xa4\x3c\x4f\x93\xf8\x05\xbb\x77\x5a\x48\x6c\xde\x42\xfa\xdf\x52\xc7\x24\xc4\xf0\x81\x2c\x20\x41\x33\x7e\x3b\x09\xc6\xb3\x57\x67\x58\x21\x46\x20\xfd\x14\x8f\xa6\x62\x6d\x84\x2c\x4d\x34\xcb\x13\xbd\xcd\x58\xaf\xe1\x2b\xc0\x33\x76\x66\x48\xf3\x73\x02\x5a\x1e\x2a\x8b\x47\x40\x5e\xf1\x65\x54\xbc\x1c\x7b\x3d\x13\xca\x54\x58\xa9\x3c\xc7\x59\x49\x79\xe3\xb0\xde\x1a\x8c\xd1\xf0\xef\x22\x63\x99\x4c\xa5\xf2\x8b\x38\xcb\xfd\x9b\xc0\x58\xee\xdf\x74\xf8\xca\x64\xf1\xbb\x7b\x99\xb1\x4a\xe6\x57\x31\x96\x29\x88\x9c\xa1\x14\x2d\xd6\x2a\xd9\xf4\xaf\xea\x36\xa9\x75\xb2\xb8\x79\xa4\x31\x24\xac\x4c\xe4\xf1\xc2\x03\xf8\x46\x0e\x1a\x1b\x29\x0a\xe1\x9a\x38\xb0\x45\x12\x06\xcf\xaa\x69\x5e\x23\x05\xb1\xc8\xb7\x8b\x58\xa5\x00\xf0\x72\x29\x05\xb1\x10\xbc\x29\x14\xaf\x18\x08\x43\x2e\x48\x3c\x50\xf6\xf1\xf1\x16\x56\xac\x02\x21\x04\xb9\x3c\xf7\xc8\x39\xc0\x42\xda\x38\x5e\x31\x00\x02\x50\x8c\xd0\x7e\x8e\xfd\x11\xab\x14\x00\x1e\x10\x05\xe1\xd8\x3a\xc0\xc6\xdb\xac\xf1\xca\x83\x30\x80\x12\x85\x83\x6d\x1f\x9f\x4c\x47\xb1\x4a\x04\x31\x80\x12\xbd\xa3\x6f\x1f\x11\xef\x32\xc7\x2a\x09\x42\x00\x0a\x12\x0e\xc7\x03\x41\x8e\xd9\x94\x00\x3c\x34\x8a\x85\xf6\x9b\xc6\xee\x32\x18\x45\x2e\xaa\x72\x92\xae\xd0\x7f\x44\xbd\x81\x37\xae\x63\xaa\x0e\x08\x45\x2e\xb2\xac\x18\xd3\xde\xa6\x7b\x4c\x45\x02\x23\xc9\xc5\x96\x4e\x8a\x95\x6c\x2e\x5d\x2a\x56\x64\x55\x12\xbb\x58\x15\x12\x54\xac\xb7\x93\x21\xaa\x96\x51\xfc\x52\x61\x1c\xb9\x50\xe5\xd0\xa7\xa7\x23\x71\x95\x8d\x6e\xa1\xde\x8d\x1d\x02\x01\x4f\x5c\xf0\x94\x25\x9c\xb4\xf1\xf8\xdc\x94\x04\x4e\x46\xe1\xe8\xfc\x54\x13\x3e\xc9\x84\x52\xe2\xe7\x10\x70\xf6\x08\xc7\xe7\x26\x07\x70\x5a\x08\xc5\xe7\xd4\x7e\xb8\xc2\x0f\xa7\xc3\xab\x86\x70\x45\x1e\x4a\x49\x50\xd3\x0a\x05\x1d\x4a\x82\xd7\xbf\xe1\x9a\x37\xbc\x9f\x23\xea\x14\xd1\xb8\xa2\xc2\x0c\x55\x95\x11\xf2\xca\xeb\xc1\x50\x0d\x18\x21\xba\xa2\x72\x0b\x55\x6b\x91\xc2\x1b\x4d\xcb\xd7\x55\x11\x82\x3c\x8a\x22\xa5\x96\x45\x0a\x06\xe8\x08\xbc\xcf\x8c\x68\xd1\xfc\x23\xd1\xce\x26\x65\x68\xc1\xeb\x02\xaa\x35\x1c\x53\x1d\x00\x5c\x22\x19\x72\xc7\x05\xac\x2c\x56\x68\x71\x2a\x1b\x06\xaf\x0b\xa8\x86\x09\x19\xa9\x30\xf7\x44\x9f\xc6\xe2\x3f\x14\x43\x1f\x34\x0c\x2a\xec\x1e\x10\x58\x0d\xa2\xcc\xe3\xd4\x22\x14\x41\x1b\x32\x04\x48\x39\x8b\xc0\xfc\xe3\xc9\x24\x16\xff\x61\x08\xda\x90\x21\x40\x61\x77\xa5\xc0\x2a\xe0\xf9\x2c\x4e\x0d\xc2\xe0\x75\x01\xd5\x30\x21\x57\xb7\x60\xee\xc9\x7c\x11\x8b\xff\x50\x0c\x7d\xd0\x30\xa8\xb0\xfb\x64\x60\x35\xe8\x14\x1e\xa7\x1a\xe1\x18\xfa\xa0\x61\x50\x4a\xdb\x0e\xac\x03\xb1\x21\xe2\x54\x21\x14\x41\x1b\x32\x04\x28\xec\xda\x1d\xac\x55\x63\xca\x52\x18\xbc\x2e\xa0\x1a\x26\xe4\x16\x20\x2c\x44\xd3\xd8\x83\x21\x02\x25\x06\x6c\x28\x58\xd8\xed\x44\xc5\xe4\x4c\xac\xb7\x78\xf3\x73\x28\x4a\x0c\xd8\x50\x30\xe5\xad\x49\xc5\x34\xed\xda\x8e\xf1\x66\xea\x08\xa4\x58\xd0\x11\x80\x61\x77\x3a\x95\x53\x76\xec\x2a\x45\x22\xc5\x82\x8e\x00\x0c\xb9\x71\xaa\x98\xc4\x47\xf1\x2b\x14\x81\x13\x07\x38\x1c\x2e\xec\x32\xac\x6a\x42\x8f\x5d\x9d\x28\x9c\x38\xc0\xe1\x70\x31\xef\xe9\xfa\x67\x0a\xb9\x2c\x74\xda\xc1\x1c\x5a\x85\xae\x68\x52\xb3\x45\xdf\x9e\xc6\x5e\xd8\x84\xa0\xc5\x84\x8f\x04\x4d\xba\x7c\x89\x59\x33\x0d\xb4\x98\xf0\x91\xa0\xc9\x97\x36\x71\xeb\xa6\x83\x18\x1b\x43\x03\x38\xf9\xb2\x27\x66\x0d\x75\xf0\xe2\x22\x44\xc3\x26\x5c\x12\xc5\xad\x9b\x06\x5e\x5c\x84\x68\xd8\xc4\xcb\xa5\x98\xb5\xd3\x40\x8b\x09\x1f\x09\x9a\x7c\x29\x15\xb7\x6e\x3a\x88\xb1\x31\x34\x80\xf7\x58\x66\xc5\xac\xa2\x16\x62\x6c\x0c\x0d\xe0\x84\x4b\xb0\x98\xd5\xd3\xc1\x8b\x8b\x10\x0d\x9b\x78\x79\x16\x77\x5e\x88\x29\x9d\xd1\xf0\x91\xa0\x7b\x2c\xdd\xe2\x4a\xa6\x16\x66\x7c\x14\x1d\xe8\x7d\x96\x75\xb1\xed\x16\x1d\xcc\xf8\x28\x3a\xd0\x7b\x2c\xf9\x62\x5b\x30\x7a\xb8\x49\x90\xf4\xe0\xf7\x5b\x0e\x26\x30\x67\x62\x57\x57\x13\x49\x0f\x7e\x9f\xa5\x62\x6c\xfb\x46\x0b\x35\x01\x8e\x16\xf8\x5e\xcb\xc8\xf8\xc6\x4e\xec\xaa\xea\xe1\x68\x81\xc3\x4b\xcc\x5f\x71\x07\x31\x7c\x8d\xb9\xc6\x3e\xe8\xd6\xb1\xd7\x98\x6a\xb4\x98\xf0\x91\xa0\x89\xd7\x98\xf1\x6a\xa6\x81\x16\x13\x3e\x12\x74\x8f\x35\x66\xcc\xba\xe9\x20\xc6\xc6\xd0\x00\xde\x63\x8d\x19\xaf\x86\x3a\x78\x71\x11\xa2\x61\x93\xae\x31\x63\xd6\x4d\x03\x2f\x2e\x42\x34\x6c\xf2\x35\x66\xbc\xda\x69\xa0\xc5\x84\x8f\x04\xdd\x63\x8d\x19\xb3\x6e\x3a\x88\xb1\x31\x34\x80\xf7\x59\x63\xc6\xab\xa2\x16\x62\x6c\x0c\x0d\xe0\xa4\x6b\xcc\x78\xd5\xd3\xc1\x8b\x8b\x10\x0d\x9b\x7c\x8d\x19\x73\x5e\x88\x29\x9d\xd1\xf0\x91\xa0\xfb\xac\x31\x63\x4a\xa6\x16\x66\x7c\x14\x1d\xe8\xbd\xd6\x98\x71\xed\x16\x1d\xcc\xf8\x28\x3a\xd0\xfb\xac\x31\xe3\x5a\x30\x7a\xb8\x49\x90\xf4\xe0\xf7\x5c\x63\xc6\x37\x67\x62\x57\x57\x13\x49\x0f\x7e\xaf\x35\x66\x5c\xfb\x46\x0b\x35\x01\x8e\x16\xf8\x7e\x6b\xcc\xd8\xc6\x4e\xec\xaa\xea\xe1\x68\x81\x27\x5e\x63\xd2\xe7\x64\x1a\xab\x49\xfc\xca\x71\xb3\xb6\x56\xb1\xd7\x93\x61\x88\xb1\x31\x34\x80\x13\xaf\x2a\xe3\xd6\x50\x0b\x31\x36\x86\x06\xf0\x1e\xab\xcb\xd8\x75\xd4\x43\x4d\x80\xa3\x05\xbe\xc7\x2a\x33\x6e\x4d\xf5\x30\xe3\xa3\xe8\x40\x27\x5d\x6d\xc6\xae\xa3\x16\x66\x7c\x14\x1d\xe8\xe4\xab\xce\xb8\xb5\xd4\x42\x8c\x8d\xa1\x01\xbc\xc7\xea\x33\x76\x1d\xf5\x50\x13\xe0\x68\x81\xef\xb3\x0a\x8d\x5b\x55\x4d\xd4\x04\x38\x5a\xe0\x49\x57\xa3\x71\xab\xa9\x87\x19\x1f\x45\x07\x3a\xf9\xaa\x34\xf6\x7c\x12\x5b\x6a\x75\x30\x34\x80\xf7\x59\x9d\xc6\x96\x58\x4d\xdc\x24\x48\x7a\xf0\x7b\xad\x52\xe3\xdb\x41\x7a\xb8\x49\x90\xf4\xe0\xf7\x59\xad\xc6\xb7\x88\x74\xb1\x93\xa1\xe9\x62\xec\xb9\x6a\x4d\x62\x1e\x25\xa8\xb6\x36\x9a\x2e\xc6\x5e\xab\xd7\xf8\xf6\x92\x26\x72\x22\x2c\x4d\x84\xfd\x56\xb1\x09\x8c\xa7\x04\x55\xd6\xc5\xd2\x44\x48\xbc\x9a\xd5\x70\x42\x12\xbe\xca\x25\x7e\xe7\x5c\xe2\xb1\x57\xba\x51\xc8\x89\xb0\x34\x11\x12\xaf\x7a\x93\xd4\x58\x1b\x39\x11\x96\x26\xc2\x1e\xab\xe0\x44\x75\xd6\x47\x4f\x88\xa7\x8d\xb2\xc7\xaa\x38\x49\xcd\xf5\xb1\x93\xa1\xe9\x62\x24\x5d\x25\x27\xaa\xb3\x36\x76\x32\x34\x5d\x8c\xe4\xab\xe6\x24\xb5\xd6\x46\x4e\x84\xa5\x89\xb0\xc7\x2a\x3a\x51\x9d\xf5\xd1\x13\xe2\x69\xa3\xec\xb3\xaa\x4e\x52\xf5\x18\xe8\x09\xf1\xb4\x51\x92\xae\xb2\x93\x54\x5b\x1f\x3b\x19\x9a\x2e\x46\xf2\x55\x77\xa2\xf9\x2b\x91\x94\xeb\x62\x69\x22\xec\xb3\x0a\x4f\x24\xe1\x31\xf0\x93\x22\xea\xe3\xec\xb5\x2a\x4f\x66\xa7\xe9\xe3\x27\x45\xd4\xc7\xd9\x67\x95\x9e\xcc\x62\x8b\x43\x21\x39\x6a\x1c\xac\x3d\x57\xed\x49\xcd\xb7\x84\xcd\x10\x0b\x35\x0e\xd6\x5e\xab\xf8\x64\xf6\x5c\x0c\x02\x89\x31\x63\x20\xed\xb7\xaa\x4f\x68\xdc\x25\x6c\x82\x38\x98\x31\x90\x92\xaf\xf2\x19\x7f\x9e\xe1\xcb\x79\xfc\xbf\x84\x8b\xf9\x70\xd4\x04\x38\x5a\xe0\x89\x97\xf1\xf1\x6b\xaa\x89\x9a\x00\x47\x0b\x7c\x8f\xe5\x7b\x82\xba\xea\x22\x27\xc2\xd2\x44\xd8\x63\xd9\x1e\xbf\xc6\xba\xb8\x49\x90\xf4\xe0\x93\x2e\xd7\x13\xd4\x55\x13\x37\x09\x92\x1e\x7c\xf2\x65\x7a\xfc\xda\x6a\xa2\x26\xc0\xd1\x02\xdf\x63\x79\x9e\xa0\xae\xba\xc8\x89\xb0\x34\x11\xf6\x59\x96\xc7\xaf\xb2\x36\x72\x22\x2c\x4d\x84\xa4\xcb\xf1\xf8\xd5\xd5\xc5\x4d\x82\xa4\x07\x9f\x7c\x19\x9e\x60\x1e\x4a\x20\xcd\x7a\x38\x5a\xe0\xfb\x2c\xbf\x13\x48\xb2\x36\x76\x32\x34\x5d\x8c\xbd\x96\xdd\x49\xec\x2a\x5d\xec\x64\x68\xba\x18\xfb\x2c\xb7\x93\x58\x58\xfa\xf8\x49\x11\xf5\x71\xf6\x5c\x66\x27\x33\xb7\x12\x55\x3f\x06\xa2\x3e\xce\x5e\xcb\xeb\x24\xf6\x97\x36\x7a\x42\x3c\x6d\x94\xfd\x96\xd5\x89\x8c\xb1\x44\x55\xd7\xc7\xd3\x46\x51\x2c\xa7\x49\xcd\x49\x90\x38\x37\xf4\xcd\x91\x94\x42\x78\x63\x2b\xea\x65\xa2\xe4\x9f\x24\xc0\x22\x18\xaf\xce\x8f\x9e\x24\xa4\x8b\xe1\x90\xc4\x58\x76\x2c\x0e\x0c\x2b\x33\xcd\xbb\x23\x77\x63\xf2\x1c\x08\x61\xba\xe4\x4a\xc1\x68\x7e\x55\x53\x5c\x55\x61\x60\xb6\x01\x70\x08\x90\xdf\x81\x76\x02\xfb\x5a\xcc\xf6\x23\xd0\xd1\xd0\x60\x6c\xcc\x11\x36\x08\x09\x8d\x2a\x82\x53\x98\x92\xbc\xe8\x69\x0c\x97\xa4\x34\x36\xaa\x1a\xec\xb1\x5d\x00\x61\x08\x08\xd1\xc4\x68\xf0\x34\x21\xbe\x0a\x1f\x3c\x2d\x90\x45\x21\x16\x9b\xc0\x96\x0a\x4c\xcd\x65\x38\x86\x92\xe9\x2c\xc4\xb4\x10\xf1\x2d\xc5\x36\x1e\x1b\x89\x49\x6a\x1d\x39\x56\x13\xdb\x47\x50\x98\x3a\xa1\x7d\x52\x21\xed\x23\x96\x1c\x56\xe3\x70\x46\xa0\x30\x77\x4c\x9d\x71\x63\xb8\x15\xa2\x6d\xec\x05\x82\x9a\xee\xdc\xf1\x12\x84\x67\x42\x49\x7e\x34\x4c\x46\x67\xf8\xbc\xb1\x90\x29\x4a\x18\xb1\xe8\xd6\x96\x63\x2a\x2d\x85\xea\xf5\xe2\xe7\x40\x74\x03\x96\x94\x54\x49\x8c\x2f\x99\xa8\x17\xd0\x0b\xf0\x44\x1e\xb4\x3e\xe6\x28\x35\x9a\x2e\xcc\x35\xa1\xec\x4a\x8e\x7a\x7c\x05\x98\x24\x53\x89\xea\x8f\xd5\xdf\x83\xbe\x61\x5a\x1a\xaa\x9e\x0b\xf4\xdb\xbf\x0e\x14\xc3\x33\x36\x15\x76\x30\x30\x51\xb5\x8e\x33\xcb\x0f\x1c\x2b\x15\xfd\x43\x42\xe4\xe6\xf2\x47\xb9\xe2\x51\xae\x7c\x74\x92\x29\x1c\xfc\x2e\x08\x9c\x44\x57\x73\x68\xaa\xf0\x58\x9e\x84\xd0\x8a\x42\xc7\x71\x61\xe6\x68\xf4\x38\x21\xe8\x5c\x5a\x97\x59\x3c\x39\x85\x86\xb0\x95\x42\x1f\xee\xd5\x6d\x62\x50\xdb\x7d\x3a\x8e\x0b\x6a\x27\x86\x46\x0b\xb4\xbe\x57\x44\xd2\x2e\x57\x93\x89\x62\x40\xb3\xfd\xbf\xf6\xad\xd1\x62\x65\x05\x41\x26\xcd\xbe\x83\xe8\xaf\xad\x33\x6f\x3e\xff\xed\xb7\x33\xda\x39\x6e\x6c\x2d\x6a\xa3\x90\x18\x74\xd8\x50\x49\x1d\xa7\xb2\x38\x08\xdd\x99\x1b\x9c\x0e\xd5\x28\x88\xf4\x4d\x64\x85\x61\x2e\x9d\xf2\x6b\xac\xa8\xaf\xab\xfb\xa4\xae\x89\xd0\x81\x47\xd1\x0a\x8f\x25\xa9\x8a\xaa\x15\xd1\x56\x4c\x93\x7b\xed\x06\x75\xbd\x3d\xc7\x74\xa0\x5a\x24\xd2\x2f\xc9\xc9\x69\x4a\x5d\xb6\x50\x38\xf2\xfe\x3b\xc9\x1c\xfc\xe2\x3a\x48\xc3\xee\x97\xd4\x27\x72\xfc\x79\xa5\xc4\x1c\x07\x21\xc2\x0a\x35\x93\x3b\xeb\xc7\x2c\x44\xcf\x28\x01\x46\x5a\xce\x0b\xf7\xa8\xb0\x3d\xf6\xe0\x43\xe6\x42\xc1\x43\xc1\x0f\x39\x39\xb0\xa6\x53\x79\x40\xf9\x71\x2d\x71\xec\x52\x7e\xf0\x93\x98\xfd\xa8\x49\xff\x31\xcc\xa3\x7f\x0a\x22\x11\x76\x7d\x76\x14\x92\x27\x49\x14\x07\x87\x27\x15\x68\x1d\x75\x26\x47\xeb\x57\xa8\xa6\x08\xf6\xa4\x25\x0b\x5f\x78\xc4\x88\x73\x89\x07\x31\x5e\x5d\xa3\x0f\x2a\x28\xaa\x9e\x51\x80\x41\xa4\x44\x68\x84\x78\x86\x73\x74\x15\x41\x48\xc0\xa4\xc7\x82\x1b\x1e\xf2\x39\xb2\x2c\x2d\x44\xa8\xe8\xac\x50\xb0\x8d\x57\x6e\x73\x32\x02\x28\xae\x3b\x00\xc4\xa6\x38\x63\x63\xc9\x47\x62\x4b\xf3\xc0\x91\x36\x56\x4c\xcb\x81\xdf\x61\x5b\x2c\x53\xee\x6a\x36\x74\x53\x0d\x00\x83\xe2\x60\x2b\x10\x54\x6b\x40\x1e\xca\x5d\x75\x0b\xc4\x7f\x02\x91\xa4\x3d\x25\x94\x28\x8e\x34\x2d\x00\x0a\x25\xed\xe6\xc0\xa9\x72\xf4\x6d\x21\x52\xb3\x63\x4d\x47\x24\xf6\xf5\xb1\xb3\x36\x57\x6b\x46\x3f\xf8\x45\xe1\x08\xcd\x7e\xe8\x66\x1e\x26\x82\x86\xaa\xff\x66\xf6\x70\x38\xb5\x74\xba\x50\x01\x19\xda\x8b\x12\x8e\xaa\x23\x25\xc0\xff\x56\x7d\x49\xb9\x87\xba\x93\x6e\xd3\x44\x74\xa5\x04\x14\x42\x40\xd5\x8f\x74\x61\xa2\xd3\x8f\x0a\xc8\xd0\x7e\x94\x70\x54\xfd\x28\x01\xfe\xb7\xea\x47\xca\xbd\x72\x58\x5a\xf3\x61\x44\x4f\xf2\x10\xa1\xf8\x42\x47\x9e\xb8\x61\xd7\xa1\x0d\x3f\x31\x0b\xea\x2a\x06\x48\xdc\xc7\x0b\x72\xd8\xc9\x0d\xcc\x62\xa7\x2f\x31\x6c\xbf\x3d\x9f\xda\x73\x0b\xf7\x0a\x53\x45\x05\x10\xae\x2e\x04\x85\x9a\x8c\x81\x80\x49\xc1\x24\x80\x3e\x91\x62\xda\x73\xda\x91\x0d\x6c\xcf\x83\xff\x2d\x44\x2f\xaa\xfb\xbf\xfd\xbb\x96\x00\x28\xc0\x98\x7e\x74\x21\x60\x21\x50\x64\x72\xe8\xbf\x28\xa8\xbc\x4a\x71\x91\xfd\x34\x0d\xb5\x05\xc2\x69\x83\xab\xf4\x95\x00\xc6\x6a\x2b\x71\x6f\x1e\x12\x41\x7b\x3e\xb1\x56\x36\xac\x0b\xbc\x3c\x19\x5c\xd5\x14\x54\xd7\xeb\x34\x86\x02\x32\x06\x82\xaa\x41\x24\x40\x55\x93\x08\xe7\x32\xbf\xa4\x51\xc2\xb9\xf8\xf9\x27\x9d\x0d\x01\x3d\x43\xb7\x6e\x35\x3a\x06\x06\xd4\x87\x57\x75\x8b\x08\xa7\xea\x15\x02\xf7\x07\x48\x6a\xea\x84\x36\x98\x0d\xcd\x4f\x41\x96\x38\xf5\x04\x39\xfe\xe1\x20\x9f\x14\x02\xcd\xcf\x46\x4c\x1d\xdd\xae\xf3\x6b\x39\xd9\x2d\x27\xd6\xdc\xa1\x07\x5d\xc7\xb3\xc5\xa7\x98\xe2\xf0\x09\xec\x47\x48\x05\x81\x22\x81\xf9\x88\x25\xc6\x19\x07\x02\x1b\x82\xe1\xa0\xc8\x82\x93\xc5\xb9\xa2\x3f\x45\x82\xac\x38\x17\xec\x4f\x37\x96\x2a\x0b\xfd\x5f\x16\x45\x9a\x37\xc6\xa7\xbd\xea\xbc\x9d\x22\x6b\x31\x45\x7a\x5e\x95\xb7\x32\xe7\x63\x55\xe6\xd2\x9e\xab\x6a\xb0\xdc\xac\x96\x53\x15\x9e\xfa\x40\x74\x6d\x99\x53\x45\xd6\xbb\xbd\x98\x5a\x6b\x45\xe6\x0e\x2d\x87\x17\x5b\xe0\x80\xe1\x18\x38\x61\x38\x96\x8e\x18\xb8\x04\xe6\x1c\x82\x3b\x5f\x85\x78\xa6\xa3\x45\x5d\xbf\x9f\x7d\xd4\xc9\x68\xea\xdc\xcc\x87\x48\x49\x4d\x17\xab\xaf\xff\x18\xf6\xb3\xe5\x6c\x99\x11\x17\x37\x7d\x34\x1a\x31\xc5\xa9\xda\xdd\x4d\x07\x0a\xe5\x30\x80\x72\x47\xd9\x52\x26\x33\x88\x2a\x57\x6e\x4d\xa6\x9c\x88\x74\xbc\x33\x06\x94\xdb\xef\x0f\xd3\xd1\xf5\x85\x65\x90\x26\x43\xb5\x65\xe0\x81\x42\xfb\x85\xc1\x20\x13\x59\xa8\x62\xbc\xd0\x64\xa0\x50\x16\x1e\x28\x34\x9b\xe9\x9b\xf9\x82\x56\x0b\xc3\x72\x1e\x92\x0a\xb7\x6d\x3a\xdd\x2f\x98\xc3\xa8\x12\x61\x6d\x42\x52\x81\x4a\x32\xd0\x60\x1d\xcb\x85\x61\x5a\xab\x8e\xaa\x01\x1b\x91\x0e\xd7\xb4\x98\xcf\x15\x06\x95\xa8\x72\x55\x5a\xc7\x4d\x07\x6a\xcb\x61\x00\xe5\x9a\xb9\x5c\x6e\x10\x29\x48\xb0\x22\x24\xa9\x50\x99\x01\x34\x50\xa2\x95\xce\x55\x2a\xa5\xc8\x3e\x85\xa7\x01\x9a\x0c\xf5\x2a\x03\x0f\x55\xb3\x50\x2c\xe5\x46\x1a\xe3\x05\x98\x43\x48\x2a\x3c\x5a\x76\xea\x12\x4b\x45\xfc\x4f\xb4\xe8\x82\x93\x24\x4d\x06\x85\x37\x80\x07\x0a\xcd\xf4\x33\x83\x4c\xd4\x78\x09\x2e\x8d\xfe\xd8\x98\xd3\x14\xd9\xeb\x0f\x31\xea\x78\x28\x8d\x9d\x67\x08\x01\x5a\xb2\x7b\x4b\x75\x72\x17\xe8\x57\x2f\xdf\xc2\x2a\x89\x6f\x8e\xe9\xd6\x34\x36\x02\x03\x2b\xaf\x49\xd3\x40\xa5\xd2\x40\xa5\xd2\x4c\xa5\xd2\xbf\x22\x4c\xc6\x70\xb1\xe9\xa3\xd6\x1e\xb3\x87\x4d\xc1\x35\x0e\x36\x53\xbc\x09\xe7\x67\x06\x97\x0d\xb8\x5b\x29\xfe\x61\x90\x60\x09\xca\x44\xbf\xc9\x72\xce\x12\x0f\x95\x0f\xb9\x40\xdf\xae\x01\xb2\x18\x0b\x87\xc9\x15\xce\x0a\x80\x93\x2d\x40\x7c\xf0\xfb\x2d\xca\x17\xea\x61\x96\x5d\xf5\x6e\x3f\x88\xa1\x31\x6e\xc2\x10\xd9\xf6\x01\x2f\x39\x02\x9c\x93\x97\x58\x5a\xbc\x0b\x98\xe4\x4d\x53\xcc\x4a\x2b\x0a\xd3\xa9\x76\x28\xaa\xaa\x40\x05\x8f\x1a\xe5\x85\x62\xca\xed\x2c\x3f\x00\x11\x1a\x0b\x3f\x8a\x4a\xd2\xca\xf8\x85\x51\x22\x3c\x72\xd3\x3f\x5e\xf7\x28\x98\xd4\x69\xad\x30\x4c\x55\x71\x70\xd5\x34\x4a\x0b\x43\x54\x16\xa6\x68\x0f\x9d\xe2\x42\x51\x65\x59\xc8\xe5\x4e\x72\xee\x9f\x70\xa1\xa0\x4f\x8b\x92\xf4\x2e\x79\xa7\x13\xaf\x73\x55\x85\xe9\x4c\xd5\xa1\xa8\xaa\x02\x15\x3c\x6a\x94\x17\x8a\x29\xb7\xb7\xfc\x72\x41\x50\x71\xba\x03\x41\xec\x9e\x69\x82\x31\x04\x17\xa6\xa3\xe0\xf4\x64\x8c\xef\x18\x15\x87\x3a\x9d\x1a\x8e\x0b\x34\x73\xd4\x4c\x42\x5f\xd9\x24\x69\x69\xff\x99\x4a\xdc\x39\x54\x51\xa2\xd6\x34\x1a\x8a\xab\x9e\xc1\x94\x9c\x6a\x4d\x62\x11\xd8\xc0\x04\x5e\x3c\x29\xd2\x3f\xa5\x88\x19\xc6\x7b\xeb\x92\x68\x2e\x77\x5f\x8b\xc4\x9c\x2f\xd4\x45\x6a\xce\xb0\xba\x8d\x21\x4c\x36\x2a\x66\xb5\x66\xaa\x70\x64\xa0\x07\xf2\x27\xd9\x72\xa1\x94\xc9\x67\x2b\xe1\x3d\xe0\xbd\x3b\x89\xd7\x88\x6a\x2c\xbd\x99\x30\x6e\x6d\x84\x27\x8d\xea\x65\x03\x14\xab\xfd\x6f\xb6\x06\x48\x6c\xe4\x03\xdc\x29\xed\x7e\x5d\x73\x9f\x76\x91\xb3\x46\xcb\x6d\x1c\x72\xe2\x20\xbe\xf9\x2f\x51\x48\xba\x1c\x50\x10\xfa\x75\xcb\x03\x9d\xba\x6a\x2d\x17\x92\x10\x02\x6d\xcd\x04\x84\x40\x33\x32\x09\x1d\x78\x22\x4d\x40\x49\x61\x68\xc5\x93\x2c\xcd\x1e\x4b\xbe\xe6\x8a\x96\x2e\x8d\x95\x54\x12\x7e\x62\x51\x8a\xb7\xc8\x49\xc4\x4e\x1c\x4a\xb1\x16\x41\x49\xb8\x89\x43\x28\xe6\x22\x29\x11\x3b\xb1\x48\xc5\x5c\xb4\x24\x61\x28\x1e\xa9\xf8\x2b\x7c\x78\xd1\x92\x40\x09\x80\x0b\x81\x24\xca\x44\x61\xe0\x27\x61\x49\x61\x2c\x27\x21\xa5\x34\x81\x63\x69\x39\xcd\xd6\x4e\xbc\xd8\x8c\x29\xa7\x7a\x7d\x96\x74\x15\x18\x77\xd0\xe8\x76\xfc\x1e\xab\xc4\xb8\xed\xa3\x2b\x40\x7b\xac\xdc\xe2\xb2\xa4\x2f\x88\x7b\xad\xec\xb4\x15\x8c\xf6\xb6\x91\x7a\xe1\x94\xc8\x9a\x52\xac\x87\x92\x19\x54\xbf\x60\x68\xc7\xa8\xde\x5e\xab\xcc\xd8\x76\x83\x6e\x43\xed\xb3\x0a\x8d\x6f\x3d\xfc\x3a\xa6\xe2\x12\xd3\xd9\x89\xf3\x91\xc0\x23\x25\x4a\x27\x80\x09\x7e\x89\x82\xc6\xd3\xf1\x9f\x29\xb1\x1f\x61\x70\x7a\xe4\x84\xbb\xc8\x22\x50\x14\x91\x15\x70\x08\x28\x01\xb1\x07\x7f\xa1\xef\xa7\xb4\x8e\xa4\xfc\x17\x41\xdc\xf2\x16\x68\x79\xe9\x75\xe7\x37\x6e\x95\x1e\xac\xcd\x5d\x07\x20\xf3\xb5\x89\xe6\xc5\xd5\x37\x75\x63\x1d\x45\x03\x42\x4b\x75\xe9\x11\x3c\xef\x93\x00\x7c\xaf\x2e\xd3\xa6\x4d\x6b\x8d\x67\xf8\xba\x23\x57\xb5\x03\x01\x3a\x78\x9c\xc5\x3e\xc3\x3b\x06\xf7\x03\x5c\x1e\x8e\x43\x5b\x33\xf4\x6d\x95\xf4\x44\x4c\x81\xb7\xe2\x9f\x37\x29\x5f\x98\x05\xe8\xec\x2b\xce\x58\xe5\xf2\x88\x1a\x05\xff\xec\x2f\x56\x43\x6b\x45\x36\x55\x80\x9d\x10\xff\x5d\xa9\x66\x93\x1c\xe9\x20\x89\x43\x0b\x80\x0f\x6f\x00\x3d\xac\x15\xf7\x6e\xd0\xaf\x25\x7e\x36\xe8\x2c\xa6\x48\xd2\x94\x2f\x50\xe3\x54\x56\xb3\x8e\x12\x93\xd2\x18\xd5\x2b\x24\x02\x5b\xaf\xce\xdc\x13\xf1\x68\x85\x43\x48\x64\x43\x77\xdc\xb2\x61\x83\xe8\x4f\xab\xf1\x1e\x6a\x27\xf8\x9f\xf8\x4c\x90\x44\x94\x25\x3b\xa6\xc2\x8b\xa3\xd9\xa2\x6f\xa3\xf9\xf1\x28\x92\x84\x17\xc8\x67\x2f\x22\xac\xaf\xe0\x98\x84\xf6\xab\x8b\x02\x7b\x45\xc4\x45\x13\x35\x61\x0b\x28\xf1\x63\x15\xfe\x2b\x5a\x0e\xa2\x01\x32\x41\x1b\x89\x4b\x3f\xc1\xf0\x02\x65\xce\x14\x13\x6b\xc7\x83\x4a\x65\x84\x32\xa5\x89\x1b\x38\xca\x0a\x45\xf1\xef\xdd\x08\x53\xc3\xaf\xb8\x7e\x94\x78\xc8\xd0\x26\xfe\x63\x87\x0c\x4f\x88\x02\xee\xc5\x4b\xd0\xe0\xbf\x6a\x0c\x68\xb2\x11\x3d\x86\x74\x90\xff\xd4\x31\xa4\x22\x90\xa8\x1b\x14\xd8\xb1\x6a\xbf\x7f\xe7\xc9\x14\xa0\x9a\xc7\xd2\x08\x0c\xe3\x7f\xa2\x46\xe0\x8a\xe3\x9b\x34\x84\xc9\x3d\xf4\x08\x8d\xc4\x2e\x85\xae\xcb\x54\x2a\x5a\x8a\x44\x3d\xe5\x79\x6d\xfc\xf7\x50\x24\x31\xb8\xd9\x5f\x1a\x13\x36\x4a\x94\x25\xa0\x87\xfc\x37\x57\x25\x7a\x95\x50\x28\x13\x3d\xe4\x3f\x5d\x9d\xf0\xfd\x05\x8d\x53\x8e\xf1\xbf\xaf\x3a\xf1\xd9\xdc\x43\xa1\x68\x04\xc3\xfc\xe3\x35\xca\xff\x28\x82\xff\x19\x83\x5a\x63\xf0\x6f\x3c\x8e\x98\x70\x33\x7f\xdb\x01\xf3\xff\x1f\x49\xdf\x5b\xd9\xff\x0a\xa9\xc1\x95\x98\x59\xf3\x8d\xe4\x82\xa3\xbf\xf8\x90\x3c\x6e\xe0\xe7\x2c\x9c\x83\x0d\xd7\xb3\x86\x9f\x46\x00\x38\xcf\x67\xa3\xc5\x1c\xe1\x99\x33\x7b\xba\xfb\x7a\x6d\xae\x17\x47\x5f\x2e\xf0\xf1\x20\xde\x12\x4a\xdd\x5a\x1b\xeb\xcb\x91\xb1\xb2\xcd\xe9\x91\x9f\x7a\xe4\x98\x73\xe7\xd8\xb1\x56\xf6\xe8\x2c\x78\x1a\x45\x1e\x3f\x51\x62\x5b\xea\x61\x31\x9f\xc6\x8e\xcb\xf0\x7e\x99\xf6\x5e\x19\x75\xbb\x96\x25\x4e\xc8\x40\x48\xb2\xfb\xb6\x32\x87\xf6\xc6\xf9\xea\x5f\x2a\x24\x2f\x73\xd1\x18\x72\x3d\x3b\x66\x4f\x68\x7a\xb9\xe8\x3e\xbc\xc5\xad\xf7\xd5\x1c\xa1\x56\xfe\xe9\x3d\xf0\xff\xf2\xe5\x8c\xf7\x91\xec\xe2\xa6\xcf\x06\x53\xcb\x5c\x61\xdf\x2f\x93\xb3\x77\xdb\xb1\x51\xff\xd9\xeb\xdd\xd7\x89\x3d\x1c\x5a\xf3\x80\x1a\xbb\xdb\xcb\x7a\x06\x0d\x20\x90\x04\x08\x00\xac\xd7\x51\x02\x93\xa2\xfd\xca\xbd\x8a\x21\xb8\xfc\x7e\xfc\xb7\x5f\xdc\xfd\xaa\x72\x52\x27\xd8\x0b\xc0\x2f\x14\x33\xf6\x59\x56\x88\x9b\x08\x5c\xaa\x23\xb9\x67\xe0\x10\x64\x40\xa6\x11\x09\xd7\x92\x07\x56\x85\x57\x26\xf2\xd4\xc9\x73\x01\x7a\x46\x1e\xf5\x0f\xad\xc1\x62\x65\xba\xbe\x5d\xe6\x81\xe3\xa6\xb5\xb9\x3c\x9e\x20\xc0\x29\x06\x76\x5f\xfe\xad\x57\x48\xf6\x97\xe6\xca\x62\x1e\xfd\x6f\xd0\x50\xc0\x7e\x12\xac\xc1\xda\x25\x80\x9f\xfb\x03\xa9\x8e\x9c\x28\x25\x30\x03\x2a\x9d\x0a\x4e\x95\x4e\x2a\x54\xd8\x73\x68\xc8\x66\x4e\xb0\x70\xe3\x2f\x24\xf7\xa4\x06\x84\xab\xd1\x62\x35\xa3\x34\x28\xab\x64\xfc\xa4\x8f\xf0\x3f\x27\xe5\xd2\x81\x34\x34\xfd\x6a\x62\x64\xda\x76\x41\xe1\xa9\x93\x8c\x93\xb2\x4c\xc7\x3a\x0a\x46\x67\x90\x46\x0a\xf0\x3f\xcf\xf6\xa6\xe0\x77\xe6\x37\xd2\x99\xd0\x59\x0a\x30\xe6\x89\x9b\x42\x36\x41\x90\x89\x68\x97\xb1\x48\x0b\x50\x97\xb1\xee\x1e\xb6\xef\x1b\x16\xbb\x87\x74\x67\xe4\xe5\x07\xdb\x27\xa2\x52\x3a\x10\xca\xfc\x66\xd2\x41\xb5\xb1\xe9\xec\xc3\xe4\x2c\xbf\xe2\x69\x80\x39\x61\xa2\x79\xb8\x03\x29\x40\xe0\x5b\x87\x95\x0a\x9c\x2f\x4b\x94\x9b\xea\xc8\x89\x52\x02\x27\xf1\x27\x39\x91\xe1\x65\xb4\x2e\xf3\x21\xb5\x74\x1a\x81\xb5\x4f\x6c\xd4\xc8\x3f\x17\x4b\x73\x80\xd5\xe7\x49\xe5\x8c\x78\xba\xfe\xca\x79\x32\x4c\x9d\xe4\x7c\x45\x8d\x3b\x33\x5c\x31\x7d\x3b\xe9\x6f\x50\x61\x73\x60\xa8\xb3\x4e\x99\xbf\x1e\x63\xdf\x8e\x29\xc9\xd9\xf3\x49\xc9\x1d\x35\x82\xcb\x06\x36\x9d\x0c\x11\xc7\xfe\xb4\x7c\x6f\x97\x54\x28\xfd\x43\xda\xa3\x20\x0d\x4f\xe1\x7f\xa8\xae\xf4\x7d\xb4\x00\xca\x52\xf2\xdf\x02\xb9\x6e\x11\x40\x7f\xb1\xa3\x2b\x89\x05\x39\x0b\x4e\x16\x45\xe5\xc4\x9e\x23\x0b\x48\xf0\x74\x1c\x26\x06\x14\x5e\x4f\x0a\xe0\xc2\x52\x94\x04\xd7\xdd\xbc\x50\x14\x5c\xa9\x90\xdd\x79\x30\x59\x0a\xe2\xae\x9c\x8a\xe3\xdf\xcb\x9d\x9a\x7d\x6b\xfa\x73\xaf\xd2\x26\x96\x89\x74\x22\x21\x4b\x4a\xf1\x9a\x48\xce\x0e\xee\x27\x08\x13\x8b\x34\x6f\x90\xbe\x66\xe7\x88\x52\x9a\xb6\x9e\x40\x9c\xd6\x85\x16\xe1\xeb\x3a\xbf\x18\xac\x91\x0b\xe2\x48\x02\xc9\x52\x6a\xe8\xc7\x72\xb1\xdc\x2c\x39\xeb\x97\xcf\x27\x56\x18\xbe\x87\xc0\xc1\x11\xab\x4d\xd6\x3a\xc3\xd5\x62\x39\xc4\x1e\x0a\x88\xfa\x09\x1c\xe8\x52\xed\x43\xfd\x21\x31\xbc\x22\x7b\x93\x6b\xd8\x00\x1d\x91\x73\xcd\x33\xd7\x9d\x78\xb0\x48\x63\x9d\x0c\xe3\x93\x17\xc1\x2c\x15\x67\x25\xee\x43\x32\x98\x83\xfe\x11\xad\xe0\x5c\x60\x05\xbb\xb3\x78\xba\x7c\xc0\x37\x8d\xc7\x6e\x8a\x99\x3c\x83\x1e\xe7\xfa\x00\xb8\xf2\xc2\x68\x3e\xce\xa6\x60\xef\xcd\x70\x42\x23\xf9\x3b\x10\x4c\x0c\x26\x1f\x30\x4b\x98\x5c\xc1\x14\xd1\xba\xa8\x03\x98\x2b\x02\x84\x32\x27\xba\xd1\xbe\x4e\x16\xef\x8c\x76\x07\xe1\xe8\x9c\x6a\x0d\x69\x2b\x8b\x36\x81\xd7\x45\x85\x83\xd0\x56\xaa\xb0\xf9\xe1\x7c\x99\x03\xac\xd5\xc2\x4b\xcb\x1d\x28\x5a\xb5\x94\x0e\xef\x2d\x0d\x3e\x98\x31\xe0\xda\x53\x64\xb4\x8f\xec\x29\x09\x35\x73\xa0\x1c\x8a\x8a\x36\x4e\x91\x31\x49\x89\x78\xf9\x07\xb0\x93\x0a\x95\xe4\x82\x36\x44\xa9\xc0\x58\x0f\x0e\xb2\xe5\xe7\x43\x73\xb5\x83\x06\x34\x5d\x48\xd1\x23\x65\x6c\x75\x29\x41\x42\x8c\xce\x33\xc6\x42\x62\xcc\x17\xa6\xfa\xcb\x85\x3d\x5f\xe3\x77\x56\x90\x32\x61\xb1\x4b\xae\x0f\xea\xe0\xd6\x0d\x25\xe0\xa0\x05\xe8\x60\x22\xf2\x45\x53\x8f\xb4\xe1\x71\x0d\x7f\x32\x1d\xcf\xdd\xc9\xa9\x1c\x40\xaa\x5d\xa0\x40\x54\x28\xab\x38\xfd\x48\x0b\xff\x7b\x94\x1e\x9a\xbf\x71\x71\x85\x3c\x3d\x1a\x46\xd2\x6d\x03\x31\xde\x0a\xc5\x27\x1e\xd9\x7d\x1d\x9b\x8e\xab\x18\x25\x25\xac\x54\xc1\x10\x9b\xee\x58\xe3\xb8\x65\xee\xfa\xd0\x3b\x2e\x3e\x6d\xaf\x2c\x3a\x47\x0b\x99\xa1\xad\xc0\x8d\x69\x28\x18\x00\xca\x10\x70\xd8\x11\x08\x19\x49\xde\x8c\x4c\xcd\x0a\x76\x7a\xa9\x54\x2a\x8c\x5f\x1a\xb1\xb7\x82\x69\x00\xaf\x29\x99\xb9\x40\x3d\xe9\xeb\x16\x41\xfc\xa5\x9d\x64\x0a\xb2\xc3\x34\x9a\xa8\x2a\x99\x9b\xa5\x25\xe7\x92\x70\x8d\xfd\x78\x08\x92\x8f\x1e\xc4\x9b\x84\x42\x0a\xc0\x63\x93\x33\xc2\xe0\x26\x60\xed\x8a\xd9\x38\x30\x75\x40\x8d\x05\x6f\x36\xf8\xb6\x68\x8e\xac\x48\xdc\x2b\xbe\x9e\xef\x79\xb0\x91\xd9\xa2\x98\x05\xa3\x14\xd1\xcb\x3f\x62\x09\x96\xaa\xfe\xa5\x60\x9f\xae\x63\x0f\xad\xbe\xb9\x52\x2c\xad\xbd\xa6\xe3\x48\x0b\xb3\x42\x18\x29\x0f\x1f\x77\x37\x71\xa5\xe8\x2f\x06\x63\xbd\x88\xa5\x14\x37\xcc\x55\x58\x39\x48\x43\x8c\xc8\x4f\xda\xd7\x68\x7e\xf2\xcb\x0c\x7f\xe6\x70\xc3\xb6\x60\xf9\x3b\xf0\x0f\xdc\x37\x53\x73\xe5\x7e\xd1\xc1\x3f\xb5\x1c\xe7\xe0\x1b\x7b\x7d\x37\x98\x22\x09\x53\x32\x34\xb4\xad\x41\x47\xa3\x72\x77\xf4\x80\x6e\xff\x4e\xb1\xa3\x2f\x66\x22\x16\xad\x15\x4e\x6f\x49\xb9\x04\x1b\xca\x31\x99\xd4\x9f\x83\xcd\xca\x41\xc3\x86\xcc\x5e\xd6\x4a\xda\xf3\x08\x2c\x0e\xd8\x9a\x00\xf9\xa4\xea\x0e\x64\x45\xcc\x32\xd9\xe4\x10\x7b\x07\x2a\x9d\xb5\x8a\x75\xac\xa6\x82\xa2\x0e\xc0\xee\xb5\xac\xa2\xa5\x62\xc4\xbd\x8e\x0c\x0c\xc6\x34\x3e\x3c\xf9\x30\x7d\x21\x29\x33\x2d\xf6\x05\xad\x75\x82\xc6\x35\x3e\xb6\x18\x1e\x29\xd2\xf9\x8e\x1f\x5a\x23\x73\x33\x65\x4d\x7e\x79\xcb\x13\x36\x29\xf3\xe9\x23\xfa\xef\x49\xee\x40\xbd\x76\xc7\x92\x1e\xac\x58\xd5\x20\x7f\xc8\x51\x07\x13\x8a\x0d\x30\x7b\x25\x46\x08\x74\x04\xb3\x14\xe6\x8f\xe1\xd6\x8f\xfe\x06\xda\xe8\x01\x77\x9e\x0a\x3e\x12\x33\x01\x2d\x1d\xb4\x80\x1b\x20\x4b\x9e\x82\x84\x49\xe6\xef\xe1\x1a\x5d\x5a\x31\x6b\x1f\x17\xa9\xe6\x58\xa1\x9a\xc2\xc6\x88\x70\x77\xdf\xb7\x2b\x49\xf3\xf9\x5a\x80\x23\x1b\x6f\xd7\x5a\xdc\xc2\x56\xd2\x63\x76\x5b\x63\xec\x30\xa8\x2d\x0b\xaa\xa6\xdc\xb9\xf5\x24\x53\x16\x0c\x2e\x6e\x5b\x24\xd4\x46\xa1\xd6\xd3\xa1\xcd\xae\x10\x84\x45\x59\x41\x55\xb7\xd8\x5b\xf3\x5c\x34\x37\x62\x12\x84\x6d\xc7\x33\xd1\xdd\x94\x65\x87\x98\x40\xc0\xbe\x01\xd8\x00\xec\xb9\x1d\xa9\xeb\x31\xbb\x81\x02\xd7\x9b\x11\x40\xd5\x21\x4f\x81\xec\xc4\x78\x6f\x18\xb9\x6d\x34\xe6\x4c\x13\xd0\xfe\x6a\x61\x4f\x85\x18\x01\x6a\x70\xde\x32\x90\xf7\x7a\xe0\xf2\xe4\xfe\x95\x76\xf5\xd4\x53\x5f\xd8\x6c\x2d\x88\x3f\x38\x2f\x0b\x23\x88\x9d\x54\xd5\x03\x33\xad\x35\x1a\x59\x5a\xda\x83\x32\x8a\x10\x63\xdb\x6b\x2f\x5d\x61\xc1\x62\xa8\xa6\xa0\x76\x65\x2c\x4d\x55\x3f\x28\x71\x43\x8c\x01\x71\xbf\x29\xc4\x28\x71\x0d\x68\x77\x6f\x25\x8c\x66\x44\x4f\x73\x3b\x85\x2b\xba\x03\x1d\xe8\x68\xcf\x53\x8d\x6f\x4e\xb3\x01\xd2\x3c\x1e\x46\xd3\x8d\x4d\x77\x4e\x7e\x8a\xdb\xb9\x87\x78\x2a\x11\xf7\xc5\x58\xde\xa5\xe1\xab\xae\x81\x60\xd8\x43\x75\xf4\x14\x95\x1a\x84\xbc\x11\x0a\x03\x70\x6b\x4c\x1a\x41\x88\xb1\x9c\xf7\x0f\x8c\xa5\x48\xcb\x4c\x16\xb8\x8f\xab\xa8\xb7\x72\x50\x03\xa0\x0a\x3b\x96\xad\x02\x50\x34\x54\x72\xa8\x38\x12\x83\x00\xb6\xe5\x99\xdd\x1b\xe6\x24\x97\x26\xba\xc8\x6e\x84\x3b\x51\x8e\x45\x27\xef\x04\x8f\x8f\xc5\x16\x63\x7a\x0f\x11\xa7\xc3\x13\x5a\xc6\x89\xb9\x5e\x9b\x24\xe0\x8a\xfb\x20\xf3\x48\x84\xfc\x2f\x15\xa4\x92\x84\xf8\x06\x31\xd8\x4f\x13\xf6\x90\x7c\x4d\xf0\xc7\x0d\x52\x4e\x4c\x15\xd2\xcf\x0e\x55\x90\x25\x78\xea\xd4\x1e\x6d\x92\x6e\x50\x0c\x37\x8d\x21\x2b\x2b\xd1\x5f\x2a\xb1\xbc\x70\xfa\x26\x95\x17\x9a\x31\x4c\xf6\xc4\x39\x28\x54\x95\x81\x7b\x9e\x62\x60\xe3\xbf\x4a\x9b\x11\x7e\x97\x26\xe2\x85\x5c\xcc\xe1\x2f\x4a\xa9\xe2\x4c\x41\xeb\x2e\x26\x7e\x54\x48\xe0\x29\x28\xdc\x14\xbc\xa7\x07\x31\x96\x8a\x34\x0d\xa2\x66\xf4\x28\x82\x4a\xd5\x0b\x22\xfe\x0c\xb6\xba\x72\xde\x15\x21\x69\x27\x55\xc6\x44\xa6\x37\x35\x04\x5c\xc3\x5e\x0e\x51\x08\x23\x02\xc6\x86\xaf\x75\xb8\x63\xee\xe0\x0e\x93\xbc\xcb\xa0\xb7\x41\x03\x19\x7e\xfc\x91\x8f\xa8\x20\xb8\x37\xeb\xcc\x81\x8d\xf0\x60\x9d\xcd\x91\xd5\x1b\x6b\x69\x44\x31\xe0\x76\x81\x32\xfa\x5f\x48\xcc\x3f\x39\xd2\x9f\x62\xe2\xe1\xda\x96\x3b\xc7\x65\xdb\x18\xba\x66\x23\xae\x76\x81\x53\x55\xf5\xe5\x2e\x21\x47\xad\x88\x94\xcd\xa2\xb1\xde\x12\xd1\xd8\xcb\x0c\x70\xcf\x48\xba\x07\xba\x39\x1a\x54\x3b\xb4\xdf\xf8\xad\x7e\xee\x66\x66\xe8\xd1\x22\xb3\xaa\x12\xe1\xa0\x95\x97\x00\x63\xc2\x46\x53\x8c\x6d\x3f\xb1\xd0\x90\x83\x26\xe5\xd6\x6e\xc8\xa8\x8b\xd5\xd1\xc0\x7e\xe6\x9e\x1c\x08\xc5\x08\xe7\x9f\x7e\x03\x1f\x85\x81\xd1\x36\x56\x9e\x88\x96\x44\xbb\x5f\x59\x5c\x74\xbf\xab\xf8\xd3\x00\x0e\x95\x04\x8e\x61\x7c\xe6\x19\x98\x14\xba\xcc\x87\x2d\xb8\x79\xaf\x0d\x05\x3d\xf2\xde\x81\x25\xe7\x1c\x24\x2d\x1c\xcf\xa8\x90\xe4\x89\x33\x14\xcf\xb7\x71\xdd\x33\xfa\x30\x55\x0c\x6c\xa8\xfd\x64\x95\x27\x7b\x61\x49\xa9\xfb\x43\x6c\x29\x65\x49\x21\xfa\x2a\xac\x6b\xf8\x0d\x19\x50\x35\xe9\x2e\x41\x85\x62\xfc\xfb\x08\x91\xdd\x24\xd8\x61\xd9\x10\x85\x1a\x56\x46\x8a\xab\xbc\x7b\x48\xae\x5c\x45\xb8\xf9\xce\x7a\x37\xb5\xbe\x92\xe2\xa4\x09\x38\x24\x02\xab\x2a\xee\x2a\x14\x6d\x95\xed\xf3\x63\x54\xb9\x60\x02\x0d\xf6\xd6\xf8\xcb\xd5\x3c\x8b\xee\xf1\xed\xf2\x63\x9f\x59\x33\xbc\xe1\x58\xe1\x01\xb7\xdd\x94\x52\x28\x10\xf2\x6f\x15\x8b\xc3\x44\x97\x00\x3d\x8d\x23\x6f\x26\x24\xa3\x53\x89\x14\xad\x1a\x05\x84\x70\xd5\xc8\x03\x2b\x54\xa3\xde\xce\x42\x29\x42\x62\x79\xce\x99\xc3\x49\x0d\xd6\x35\xa0\x55\xa7\x9b\xea\x61\xc1\xd4\x21\xc6\xc0\xd3\xde\xbb\x53\x6c\x68\x0c\xd8\xf0\x46\x31\x36\xf8\x74\x18\xf2\x6d\x01\xa0\xa4\xe4\x94\xc1\x2b\x3b\x51\x2a\xd1\xd7\xb3\xbc\x6e\x84\x86\x3b\x6f\x64\x32\x3a\x80\x4b\x86\xb4\x17\xf3\x6a\x24\xb2\x1b\x61\x86\x20\x45\x2a\x6f\xa2\x44\x15\x1e\xb2\x73\x03\x38\x4d\x23\x9a\x91\xdb\x67\xe0\xeb\xad\xc9\x38\xb0\x26\xe4\x7a\x5c\x35\x15\x82\x1d\x22\x35\xba\x66\xab\xc2\x54\x53\xe1\x86\x60\x45\x97\x8a\xac\xab\xf5\x0c\x31\x48\xd1\xaa\x0e\x5a\x42\x6c\x5f\xed\x06\x0f\x36\x9c\xfc\xf0\x64\xfe\xed\xc7\x9f\xc2\xba\x28\x6a\x6b\xef\x0c\x30\xa1\xb8\x93\xaf\x63\xff\xe0\x90\xb9\x61\x49\x98\x0a\xee\x62\x47\x95\xf1\x8b\x96\xce\xdc\x61\xa4\x74\xb5\x43\x6e\xeb\xe2\x01\x34\xaf\xbb\xb7\x3a\xc0\x99\x5d\xcc\x13\x36\x05\xbd\x06\xe0\x8f\x0b\xd3\x50\xeb\xb0\xe7\xf8\x4c\x56\xac\x85\x33\x83\xc7\xd9\xa0\x61\xd3\x40\xd0\x29\xfe\xed\x15\x68\xf6\xf4\xae\xc6\xd0\x93\x48\x66\x8b\x41\xb8\xe6\xbd\x59\x2e\xad\xd5\x00\xb7\x12\x74\xe3\xdf\xb7\x49\x98\x7a\x89\x35\x8e\x58\x83\xcb\x8d\xfb\x93\x7d\xcb\xaa\x80\x09\x7f\xe1\x04\xc0\x47\xbc\x73\x92\x31\x52\xdc\xd5\x7b\xe6\xd1\x86\x92\x27\xfe\x50\x5e\xf7\x71\x14\x44\x07\x78\xed\xc1\x31\x20\x5d\x6c\x14\x65\x8f\x2a\x9f\x40\x00\x22\xd7\x16\x0c\x01\x6d\x83\x43\x1c\xfe\xe0\x76\x9a\xc6\x28\xf5\x8f\x14\x41\x1e\x34\xac\xc3\x00\x9b\x5b\x4e\x06\x82\x18\x62\xc1\x50\x7b\x18\xbc\xb8\xeb\xa9\x65\x9f\xaf\x23\x38\x99\x23\xa8\x84\x89\xcc\xd4\xa8\xa8\xa0\x1e\xe8\xb9\xa7\x38\x6e\x42\xd6\xeb\x64\x3f\x98\x11\x6e\xf7\x66\x05\xb9\x41\x24\x47\x7e\x97\x67\x77\x01\xdf\xbd\x4f\xee\xef\xe1\xf3\xd7\xe5\x7c\xc1\x06\xb1\x54\x8f\x06\xbc\xcb\xb0\xee\x88\x21\xac\x05\x43\x49\xe2\x02\x53\x72\xf5\x28\x74\x59\xcf\xdf\x00\xff\xc6\xde\x94\x21\x44\xb9\x22\x14\x0c\x8b\xae\x79\xfd\xae\x13\x1b\x52\x98\x8c\xc9\x65\x1a\x16\x4c\x8e\xab\xcf\x74\xa0\x04\x2d\x6d\xf9\xa7\x61\xaa\x12\x9c\xf7\x6a\x41\x82\x84\x9f\x85\x0b\xc7\xcb\xc0\x6b\x4a\xef\x78\x59\x50\x37\x0a\x4e\xe0\x9e\xf5\xae\xef\x20\xb2\x7c\x27\x33\x4f\x42\x98\xf3\x6b\xc8\x80\x3d\x29\xc0\x27\xaf\x7e\x8f\xc5\x62\x88\xeb\x79\x4a\x9b\xa1\x1b\xeb\xa2\x73\xe0\x7e\x93\xf4\xf2\xdf\xe3\x7a\xdd\xef\x32\x67\xd2\x5b\x03\xa5\x13\x52\xd9\x3e\x89\xbc\xd0\xc5\x5d\x14\xdf\xe3\x72\x17\x7b\x1f\x12\xf5\xa5\xa8\x54\x57\xf0\x8e\x27\x7f\xc2\xaa\x08\xa0\x2e\xa6\x33\x45\xb9\xb1\xd1\xc5\xd2\xdc\xe4\x48\x4b\x5c\x15\x39\x5d\x48\x67\x0a\x74\x23\xa2\x8b\x05\xba\xc9\x91\x05\xaa\x42\xa6\x0b\xe9\x6c\x0d\x49\x3c\x74\xa9\x82\x24\x35\xaa\x38\x55\xb0\x74\x31\x9d\x14\x47\x63\xa0\xc3\x53\x22\x4d\xa5\x10\xea\xe2\x54\x61\xd2\xc5\x74\xa6\x76\x24\x04\xba\x58\x1a\x49\x8c\xaa\x9b\x2a\x42\xba\x98\x4e\x0a\x23\xa1\xcf\xc3\xaa\x46\x00\xc2\x6a\x06\x07\x47\x17\xd3\x99\x9a\xb9\x41\xcf\xc5\xe2\xdc\xe4\xa8\xda\xa9\xa2\xa2\x8b\xe9\x4c\x81\x6e\xc0\x73\xb1\x40\x37\x39\xaa\x40\x55\x38\x74\x31\x9d\x2d\x10\x6f\xb8\x49\xc5\x05\x2f\x0e\xd4\x85\xa9\x22\xa1\x8b\xe9\xb4\xef\x56\x78\x37\x29\xb4\xf3\x56\xf2\x53\x2e\xae\x6e\x8a\x18\xe8\x62\xba\x37\x0c\x80\x73\x33\x7e\x14\xec\x42\x0a\x53\x85\x3f\x17\xd3\x79\x93\x84\xd9\x5d\x41\x53\x1b\x70\x21\x83\xb9\x73\xed\x6e\xd1\x85\x5a\xbd\x2a\xab\x95\x99\x5d\x03\xc7\x18\xe2\x11\x7d\xc4\x4e\x0c\x40\x0c\x3a\xe9\x57\xc1\xb2\x4b\xeb\xc0\x68\x53\xc2\x45\x1e\xba\xfd\x1e\x46\x48\x68\x87\x68\xb0\x14\xd3\x2c\xaa\x76\x28\x80\xed\xa0\xf3\xc8\x5f\xb3\xcf\xf8\x97\x22\x61\x00\xf2\x46\x55\x36\x8b\xb8\x74\xff\xf3\xde\x7f\x68\x1e\x98\x6a\x1c\x93\xaa\x0f\x47\x49\x36\x45\x01\xfa\x32\xf6\xf9\x69\x68\xaf\xb2\xb7\x63\x43\xef\x51\xab\xf1\x54\xe7\xba\x81\xfc\xfb\x5c\x28\x9b\x85\x39\x67\x00\xdb\x45\xf1\x76\x2a\xaa\xd6\x7f\xc8\x09\xb1\x4f\x34\xf6\x45\xe3\xd0\x26\x89\x5e\x9b\x33\x8a\x2b\x37\xcc\x59\x9c\x1e\x8e\x15\x18\x84\xd9\xa6\x08\xd3\xa2\xe1\xdb\x0f\x89\x9b\x2d\xea\x18\x45\xa3\xba\xee\xa2\x11\xad\x86\x3d\x85\x4f\x97\xc6\xd8\xe6\x06\x56\x4b\x12\xb8\xfe\x25\x34\xfa\xe6\x08\x28\x0a\x7c\x58\xb2\x12\x5f\xbd\xaf\xfc\x09\x49\xba\x2c\x49\x4d\x71\x18\x5c\xa5\xb6\x15\xa7\x03\x07\x2a\x2a\xa1\x5b\x58\xec\xd6\x53\x46\x3c\x7d\xf5\x89\x31\xf6\x3f\x74\xe3\x93\x98\xf7\x4a\x8c\xfd\xea\xa1\x5e\x7a\x24\xab\x0a\xb3\xb2\x80\xaa\x42\x16\x0e\x4a\x8c\xfd\xaa\xa2\x5e\xd4\x24\xec\x15\x7f\xd1\x02\xd4\x84\xae\x49\x54\x08\x7b\xf6\x89\x6a\xb5\x94\xac\x1e\xc1\x4a\x09\xa8\x07\x5d\xec\xa8\x10\xf6\xab\x87\x62\x89\x96\xb4\x1e\xfe\x3a\x0b\xa8\x06\x5d\x46\x29\xe0\xf7\xab\x85\x6a\x79\x97\xac\x12\xfe\xd2\x0e\xec\x0b\xbc\x3c\x53\xc0\xef\x57\x09\x78\x45\x99\xb4\x12\xcc\xaa\x10\xa8\x06\x5d\xf4\x29\x31\xf6\xab\x88\x7a\x41\x9a\xac\x2a\xcc\x7a\x13\xa8\x0a\x5d\x4e\x2a\x31\xf6\xab\x8a\x7a\xa9\x9b\xb0\x2a\xde\x5a\x16\xa8\x08\x5d\xaa\x2a\xe0\xf7\xac\x86\x62\x09\x9d\x70\x7c\xf8\xcb\x67\xa8\x3b\xc8\x0a\x58\x85\xb0\xe7\x08\x81\xd7\xed\x7b\x28\x5d\xe9\x42\x39\xbf\xe6\x56\xc0\xef\xad\x72\xc1\x2b\xbc\xb1\x2a\x31\xb2\xd7\xc0\xa2\x5c\x4a\x95\x96\xab\xf4\xd3\x85\xe3\x0f\xed\x09\xdd\xc9\x62\x65\x7f\x62\x87\x17\xd3\xe9\x4e\x51\x48\x38\x88\xa2\x44\x08\x89\x3b\x73\x10\x5f\x0f\x88\x4e\xf2\x82\x2c\x76\x47\xcc\xf2\xc2\x5a\xb1\x34\xb9\x05\x9b\xb2\x1a\x61\x00\xdc\x4b\x5e\xe1\x54\x84\xb9\x3b\x28\x9e\x8a\x04\x59\x74\x9b\xc9\xf7\x0b\xa2\x20\xcd\xee\x5b\x80\xc0\xf2\xdb\x7f\x06\x4c\xb1\xa3\x21\x9f\x8a\x60\xff\xd3\x48\xd2\xa8\xa8\xff\x39\xef\x6a\xfc\xdd\x8a\x77\xe5\x03\x1b\x8f\x2b\x6e\xf5\x08\x7b\xde\x09\x4e\xdd\x42\x6a\xb6\xff\x0b\x9d\x50\x6a\xca\x95\x11\x58\x0f\x19\x1d\xf4\xc4\xe3\x8b\x32\x3d\xf9\x93\x5f\x6c\xd3\x74\xf5\x39\x8d\xbf\x53\x76\xc4\x7d\x49\xc7\x3b\x67\xf1\x43\xbc\x01\x07\xc0\xec\x91\x15\xaa\xf3\x9b\x98\xfe\xba\x71\xd6\xf6\x68\x77\xec\x9d\x07\x89\x57\x7a\x58\x1c\x18\xf6\x77\xa0\x1a\x3a\x9d\x40\xda\x6a\xbd\x5d\xb8\x43\x8c\xa9\x7d\x81\xf1\xa3\x75\x42\x62\xf5\xcb\x30\x34\xa8\x30\x03\x87\xe3\xe1\xca\x60\xd9\x02\x0b\x12\xbc\xc7\x66\x41\xd8\xd2\x1c\xfb\x43\x86\xc8\x14\x4f\x8a\xc5\x22\x0b\x85\x63\x47\x03\x70\x79\x2c\xa1\x0c\x9c\xe5\xbb\x04\xe1\xe1\xb2\x27\x2c\x14\x0e\xd4\x0d\x00\x21\xdd\x94\x61\xdb\x01\x2c\x91\xe5\x9d\x86\xb4\x96\x81\x2a\x27\xe9\x0a\x4b\x88\x84\x99\x96\xc1\xca\x62\x83\xda\x1f\xd6\x30\x38\x39\x24\x9f\x67\x9f\x48\x93\x0c\xad\x0f\x54\x70\x46\xf9\x74\x35\xc0\x3e\xe2\x3f\x65\x47\x0f\x30\x80\x5a\x1f\x48\x33\xea\x07\x73\x4f\x24\x08\x0b\xb0\x58\xa6\x48\xd6\x6f\xff\xa2\x1a\x8a\x73\x59\xc1\x78\x5c\x71\x27\x2a\xef\x6e\x80\x9a\x80\xc2\xfb\x88\xff\x78\x1f\x7e\x89\xea\xd3\x23\xc9\x5a\x14\x95\x4f\x72\x49\x0a\xef\x15\xdb\x77\x47\xc3\xd6\x83\x51\xbc\xac\xdb\x6c\x8e\x1d\x0a\x0e\xf2\x03\x94\x1f\x52\x49\xe9\xc4\xd8\x3f\x4a\x0e\x1a\x99\x2b\x19\x83\x25\x6d\x87\x80\x0f\x8d\xee\x0c\x69\x06\x46\x6a\x0e\xe9\x51\x0f\xd2\xd6\x5c\xf8\xcf\x93\x92\xbf\x1b\xa6\xbe\x7e\x2f\x45\x21\x38\x8b\x3c\x64\x27\x5a\x9d\xb0\x8d\x34\x1c\x7f\xab\x91\xdc\xd3\x23\xbf\xa6\xe6\xda\xfa\xfe\xcf\x63\x04\x71\x90\xf2\x13\xba\x6e\xc2\x6a\xb1\x46\x5f\xff\xcc\x17\x86\xd6\xf8\x80\x28\xe9\xe4\xd8\xc9\x31\xc1\xb7\x9c\x5f\x4f\x0a\xee\x0d\x65\xda\xf4\xac\xf7\x64\xb7\x07\xd8\xa4\x18\x7e\x22\x22\xde\xa6\xfb\x3a\x29\xab\xe9\x3b\x3f\xc2\x31\x3e\x7f\xe6\xa0\x16\x00\xb9\xbb\x71\x1f\xe3\x9e\x0d\xde\xed\x04\xf2\x18\x0c\xd6\xd0\x7e\xdf\xab\xdb\x13\xf7\xba\x0e\x62\x70\x13\xdd\xef\x68\xa0\x0f\xf9\xb7\xfa\x7a\x1d\x08\x0d\x34\xf9\x08\x81\x19\x6f\xae\xeb\xe9\x10\x3c\xe1\xdd\x08\x3c\x60\x23\xca\x05\xce\x43\x28\xa5\x23\x00\x0f\x72\x25\xaa\x7a\xa7\x13\x55\x55\x88\xbe\xe2\xa4\xe1\x28\x4c\x56\x61\xc2\x3a\xd0\xf0\x59\x46\xb0\x71\x8e\xff\x09\x1d\x26\xd1\xe7\x40\xc7\xc2\x59\x92\xf8\x88\x90\xbf\x8b\xce\x87\x38\x5f\x7e\x88\x71\xcd\x51\x0a\xec\x35\x06\x3c\x6b\xe5\xca\x72\x7d\x49\x2e\x96\xbe\x67\x48\x3c\x68\x0f\xb8\x0b\xc9\x67\xd0\x75\x63\x94\x23\x70\xad\xf0\xd2\xa0\xed\x6d\x4c\xa2\x18\x3b\xee\x86\xbb\x86\xe5\x5d\x8f\xb0\xbc\xd1\xea\xa8\x9c\xa9\xe9\xfa\x31\x83\x4a\x88\xe4\x35\x0d\x07\x06\x91\x2a\xed\xf9\xb3\x46\x93\xb4\xe0\xe8\x13\x30\x52\xf8\xfe\xe4\x7c\xa5\x84\x3e\xa9\x14\x4c\x56\x67\x66\x4e\xdd\xd5\x2c\x70\xa3\xde\x7f\x51\x4d\xa0\xf8\xc5\xaf\x4b\x28\xc7\xc6\x39\x61\x23\x18\x80\x2e\xa7\x3c\x2c\xdf\xcc\x20\xd1\x07\x25\x5c\x7f\x73\x82\x07\x03\x49\x95\x3d\x98\xc9\x06\xa2\x94\x17\xaa\x42\xa0\x20\x42\xd9\x74\x50\x13\xc7\x31\xc7\x16\x10\xd1\x81\x09\xea\x94\x09\x1c\x1a\xd0\xb0\x55\x9c\x5b\xc0\x32\xfa\xa7\xe2\xdf\x31\xa7\x0e\xed\xf1\xab\x0f\x3e\xf6\x09\xe6\x4d\xe5\xf3\x48\xe7\xed\x87\x10\xb5\xe6\x48\x33\xd8\x4d\xd8\x93\x91\xa4\x24\x43\x1c\x94\x73\xfe\x11\x49\x88\x03\x34\x0f\x0a\xdb\x8e\xd9\xec\x41\xca\x9e\x3b\xd6\xfa\x88\x82\xa4\x53\xe2\x0d\x79\xb7\x53\xa2\x82\xc3\x50\xa0\xc8\xb8\x30\x04\xcc\xbb\xb3\xf2\x13\xb8\xd9\x9b\x34\xfe\x18\xec\xbb\x09\x3b\x9a\xa6\x9d\xcd\x84\x95\xe1\x78\x08\x6e\xdd\x40\xc3\x80\x17\xcc\xd4\x32\x88\x63\x53\xf6\x3d\xf2\xb8\x7e\xe7\x79\x40\xad\xe6\x4a\x69\x04\xd2\xe1\x98\x3d\x5c\x72\x7e\xe3\xb3\x05\x81\xbf\xcd\xf4\x64\x6a\x3b\x6b\xf6\xde\x38\x39\xe4\x97\x5f\xf7\x60\xfe\x31\x28\x7d\x33\x78\xec\x8f\x38\x24\x0b\xf6\xd0\x3a\x63\x3d\x1a\x8a\x0d\xe7\x16\xa2\x57\x43\x0f\x58\xb3\x9e\x2e\x78\x6a\x6a\x03\x4a\x80\xe1\x77\xbd\x5b\x5a\xc0\xf3\x7d\x3c\xdc\x19\xb7\xe2\x2a\xda\x1a\x77\x94\xff\xdf\xff\xf9\xbf\x5f\xce\xdc\xc9\x3f\x58\x4e\x90\xe5\x94\xb0\x59\xd9\x47\xa3\x10\x6b\x17\x55\x59\x7a\x35\xe7\x1e\x45\xb8\x73\xc6\x49\x91\xef\xde\x6f\x27\x83\xe9\xc2\xb1\x28\xa4\xe0\xa5\x59\xae\x8a\xbf\x57\x42\x43\x0c\x20\x71\xc6\x2a\xcf\xa5\x8c\x7f\xfa\xa2\x50\xfa\x25\xcf\xdd\x00\x26\xc5\x07\x45\x1c\x9c\x96\xfc\x7c\x8b\x6a\x3e\x31\xbe\x84\x37\x85\x70\xde\xb2\xe8\x74\xe8\x46\x8f\x51\xfd\xed\x61\xca\x5b\xaf\xe4\x79\x40\x5c\xf4\x5f\x13\x9c\x8f\x2e\x1b\xe0\xbf\xc4\x12\xa5\xbd\x66\x11\x80\xdd\x2d\x17\xad\x52\xb6\xd5\x04\x87\x77\xda\x16\xa5\xd6\x84\x93\x29\xb8\x13\x8e\x86\x85\xcd\x31\x79\x08\x71\xac\x61\x4a\x03\xb5\x50\x19\xad\x5c\x23\xa8\x70\xc3\x83\xfa\xc4\x69\x81\x23\x0d\xaf\xc5\x0a\x26\x49\x6d\x99\xb1\x71\x20\x74\x9d\xf7\xe4\xc6\xc7\x73\x9f\xb8\x00\x22\x2e\xc6\x0c\x00\x21\xf7\x77\x68\xcd\x9c\x32\xfc\xe1\xd1\x20\xd9\x2a\xb0\x8f\x79\x88\x66\x12\x1f\x8d\xb1\xdc\xe0\x12\x18\x37\x23\xf4\x33\x95\xa1\xef\xc9\x3c\x16\x82\x14\xfe\x8b\xd9\xff\xe3\x63\x4b\x82\xa7\x5b\xcc\x3b\xa6\x1c\xab\x8c\xcb\x40\x0d\xdc\x59\x29\x8a\xf1\x0c\xcf\x78\x46\x62\x3c\xc3\x31\xee\x7f\xa9\x4f\xdf\x58\x36\x52\x52\x43\x1e\xfa\x8c\xf1\xe7\x46\x00\xea\xc0\x5e\x0d\xc8\x3a\x89\xf5\x3c\xed\xca\xa8\x1f\x8a\xc3\x13\xba\xb8\x76\x2b\x1e\x40\x79\x70\x10\x65\x0f\xdc\xec\x4c\x1a\xca\xf7\x2e\x71\xd3\xc9\xf3\x3d\x50\xe2\xc0\xa6\xc1\x60\x34\x1a\x15\xfc\xe7\x17\x83\x62\x31\x3b\xe4\x47\x98\x48\xe4\x08\xa6\x0c\xd5\xed\x1f\x66\x6e\x90\xad\xe4\x22\x0c\x71\x91\x96\x6f\x45\x7b\x2f\x2e\xcd\x42\x2e\xd3\x27\xa0\x73\x6b\x6c\x46\x55\x68\x34\x2a\x8e\x8a\x5e\x85\x2a\xa3\x9c\x99\x2b\xf3\x15\x12\x89\x1c\xc1\x94\xc1\x0a\x59\xe9\x7e\xbe\x9f\x8f\xa8\x90\x48\x4b\xac\x50\x25\x93\x1d\x66\xfb\xee\xb5\x88\xd1\x22\xac\x32\xe5\x11\xe3\xdc\x20\x5b\x2a\x8e\xca\x45\x41\xff\x31\x04\x8e\x64\x8a\x70\xaf\x54\x86\x85\xa1\x15\x51\x09\x96\x8e\x58\x81\xb4\x55\x28\x16\xe9\x7d\xcf\xad\xb9\x9a\x73\x32\x0e\x75\x88\x39\xca\x79\x75\x28\x94\x72\x66\x5a\xe8\x10\x81\xc6\x11\x48\x17\xac\xc9\xa0\xd2\x37\x2b\xfd\x88\x9a\x08\xa4\xc4\xca\x94\x2a\xf9\x7e\x9a\xee\xc1\x59\xab\xd5\x62\xb5\x97\x6c\x71\x14\x8e\x00\x9a\xc9\xa5\x8a\x23\x14\x22\x52\xce\x66\x30\xa0\xf7\x28\x92\x8f\x79\x81\xc6\x11\x48\x37\xf9\x88\x17\x48\x85\x0c\xf8\xfe\x14\x71\x2f\xc8\xb7\x7f\x37\x5d\x55\x3f\xd9\xe5\x0e\xf4\xea\x66\x15\x4a\x63\x34\xb2\xca\x56\xf1\x4c\xbe\xa5\xcd\xa0\x89\x7c\x0f\xca\xd9\x4c\x96\x2e\x06\xfc\x4b\xcb\x21\xf4\x91\xb1\x7b\x26\x5f\xa0\xe6\x31\xc5\x22\xac\x52\x31\x9f\xa6\x9d\xe5\x5f\x26\x0e\x91\xd6\xf2\xb0\x1f\x3c\x51\x2c\x67\xd2\x05\x00\x53\x12\xa5\x41\x71\x94\xce\x53\x5e\xa6\x11\xba\xb6\x3f\x1a\x5a\xbe\x7a\x2a\x9b\xfd\x41\xc6\x92\x11\xa5\x01\x67\x9a\xc5\x8c\xf9\x3b\x3d\x30\xb4\x18\x83\x1f\xb8\x14\x58\x18\x55\xac\x92\xff\xf4\xde\xea\x0f\x72\x69\x19\x51\x96\x1f\xb3\x98\xa5\x05\xb8\x57\x63\x95\xf4\x33\xa3\xd2\x28\xa0\x9f\x36\xd1\x88\x96\xf0\x64\xed\x57\x1e\x94\x07\xae\x78\x6e\xc2\xda\x67\x38\x1a\xa5\x19\xf5\x1d\x5c\x9e\x65\xf1\x24\xee\xad\x52\xa9\x6f\xba\x4b\x3b\xf7\x2a\xa9\x92\x7f\xd3\x2a\x05\x05\x30\xd7\x5a\x79\x4c\xb1\x88\x82\x99\x4b\xf7\xdd\xc3\x22\xef\x8a\xa7\xb2\x8f\x8b\x6c\x11\xcc\x75\x53\x1e\x53\x92\xa2\x6c\xd6\xea\x53\x29\x72\xaf\x5f\x86\x8c\x84\xdc\xa8\x7f\x26\x5f\x03\x65\xf1\x44\xf2\xc3\x61\x36\x57\x76\x55\x84\x7b\x2d\x52\x49\x3f\x63\x65\x87\xb9\x33\xf9\x82\x26\x87\x28\xf1\x9f\x2b\xf4\x5d\xe5\xee\xed\x68\xd3\x02\x40\x37\x31\xdc\x2e\xaf\x1c\x63\xd9\xdb\x93\x96\xf2\xc5\xfd\x38\x77\xc7\x59\x86\xcb\x0b\x45\x99\x8e\xc3\x0e\x4d\x16\x54\x70\x4e\x60\x8a\x91\xd5\xf0\xd6\x05\x32\x4d\xb7\xde\x59\xbb\xe4\x5e\xc6\x1c\x4a\xf7\x4a\x50\x92\xb4\x5f\xf1\xd5\x83\x4e\xd9\xa3\x95\x39\x0b\xb6\x26\x14\x9e\x50\x84\x72\x69\xc3\x90\x36\xef\x2f\xcc\xd5\x10\x33\xea\x3a\x14\xc8\x96\xd1\xea\xd4\x5d\x65\x54\xd2\x74\xb9\xec\xdf\x7b\xc0\xfe\x08\x36\xb3\x14\x7e\xe3\x8f\x14\xe5\xd4\xfa\xed\x5f\x01\x66\x2e\x9d\x0e\x30\xb3\x05\x11\x95\x74\x83\x02\x33\x57\x64\x30\xcb\x22\xe6\xc4\x9c\x8e\x52\x4b\xd4\xd2\xca\xd2\x8a\xe9\xb4\xe7\x3a\xec\xc7\x06\xcd\x74\x01\x18\xe1\x43\xcd\x14\x91\xae\x14\x45\x62\xa9\x67\xb9\xba\xa4\x61\x34\xb0\x2e\x99\x32\x83\x99\x91\x0a\xf4\x56\x45\x30\x72\x36\xcf\x20\xe7\xfd\x4a\xd1\x80\xcf\x4c\x19\xd9\x74\x48\x1f\xd1\xda\xa4\x28\x12\xc7\x5a\xb6\xc0\xb0\x86\x3f\x80\x4a\x41\x68\x5c\x4b\x7b\x0d\xfd\xb6\x73\x06\x2b\x73\x69\xad\x94\x90\x22\x63\x08\xc8\x4a\x05\x78\x5c\x19\x3e\xdd\xbe\x39\x9f\xb3\x34\xf3\xc5\xb2\x5c\xba\xdc\x9c\x14\x4d\xc9\x36\x69\x58\xe9\x6a\x94\x8c\x54\xc9\xb1\xbd\x07\x4b\xa2\x8c\x95\xcd\xe5\x43\x78\xa4\x82\xcf\x0c\x36\xae\xc0\x12\xd0\x95\x27\x7d\x7b\x3a\x15\xc6\x25\x07\xe8\x0b\xf2\xc9\xd2\x9c\x23\x9b\x65\x66\x32\x80\x9c\x00\x66\x3d\xc0\xb9\xb5\x16\x28\x16\xca\x90\xb0\x09\x6c\xcf\x16\x88\x17\x0b\xa8\x73\x8e\x6d\xde\x8c\x84\xed\xe2\x29\x6a\xcd\x21\xfb\x75\xa1\x38\xac\xce\x24\x9b\x8f\xf1\xa2\x3d\x4a\x34\xe8\xc6\x24\xdd\xc2\x24\x9b\x39\x16\x69\x03\x31\x14\x9a\x1c\xc9\xcd\x35\x45\x9c\x35\x06\x97\xcf\x0d\xd8\x03\xc2\x42\x1e\xff\xc3\x22\x44\xde\xad\xf1\xaf\x4f\x31\x5b\x58\xea\x5b\xaf\x31\xee\x38\xc5\xbd\x4d\x15\xe7\xfe\x54\x70\x92\x61\x0c\xbf\xb0\x91\x59\x35\xe2\xb1\xd3\x8e\xe1\x9b\x07\x8c\x3f\xc5\x36\xe3\xff\x1a\x9a\x6b\xf3\x18\xb7\xcb\xbf\x5c\x14\x8f\x03\xb4\x5a\x5a\xfd\xd3\xcf\xa5\x8b\x8a\x01\x12\xb3\x23\xef\x87\xf3\x8d\xfc\xf5\x53\x88\x65\x2a\x77\xe4\xaf\xdb\x8d\xfc\x7b\xb8\xdc\xf1\xe2\xc0\x62\x6d\xc2\x1e\x71\xa7\xa5\x50\x77\x2a\xa7\x69\x7a\x67\xbf\x41\xac\x64\xf7\xfe\xd3\x11\xb3\x12\x75\x2f\x4c\x41\x17\xd9\xe4\xe3\xe6\x23\x49\xcc\xe1\x3b\x6e\x00\x26\x80\xe1\x5d\xa3\xfb\xf2\xc5\x17\x0a\xd9\x8b\x1f\x4e\x4d\x99\xa2\xb0\xa4\x4c\xe1\x04\xcc\x87\x0d\x3f\x57\x22\x10\x11\x67\x4a\xa4\x98\x5f\x1e\xcb\xf1\xeb\xf1\x49\x99\x9c\x14\x13\xcf\x98\xbc\x20\x6d\xd1\x34\xfb\x15\xff\x2f\x90\xa0\x20\x89\xff\xfc\x5d\x1c\x35\xbf\x9c\x4f\x97\x4d\xea\x2c\x93\xf7\xa1\x46\x5a\x2f\xb8\xd8\x45\xd8\x10\xee\x9c\x51\xe3\xd9\xd7\x3e\xa9\x2f\x67\xbe\x50\x0f\xd0\x1c\xb3\x42\xb2\xb1\x9e\x48\xc6\x35\x7c\x53\x8e\xd0\xff\xaf\xa0\x4b\xd8\xb3\xef\xb2\x1f\x34\x1d\xe7\x7d\x93\x4c\x71\xa6\x89\xbe\x25\x0d\xc8\x28\xc7\x2f\xf2\xee\x2f\x89\x2f\x4c\x48\x29\x81\x58\xc9\x1c\x24\x0b\xe1\x08\x16\x13\xc4\x8b\x93\x8b\x51\xc6\x92\x8b\xa2\x7a\x62\xcf\xbc\x9d\x23\x96\x20\x4d\x06\xe6\xd4\xb8\x67\x28\x69\xe9\x0c\x25\xcd\x9d\xa1\xb8\x5f\x8c\x9e\x53\x46\x86\x10\x99\xc6\x5e\x42\x15\x8c\xe3\x2c\xf0\xb4\x8b\x4c\x30\xac\x1f\x43\xbe\xb5\xec\xf9\xc4\x5a\xd9\x52\xf3\xf8\x77\x45\x42\x8a\xe4\x60\xd8\x40\x03\x0c\x31\x77\x74\xc8\x14\xbc\xf3\x94\x88\xa3\x9d\x63\xd4\x30\x5b\x9c\xe6\x3f\x99\x71\x8f\x06\x50\x1a\x9b\x1f\x79\x5b\x56\x76\xac\x06\x5f\xb4\x4e\xb3\x37\xaa\x60\x5f\x9d\xbe\x49\x01\x1d\xb5\x72\xb5\x13\x15\xc8\x37\x28\xfb\x0f\xd3\x27\x7e\x39\x5e\x80\x06\x25\x23\xdf\xe0\x5b\x4a\x6e\x93\x7c\xf9\xb2\xdf\x7d\x25\xe0\xee\x19\x27\xda\x02\x13\xbe\x58\x45\xb2\x2b\x5c\x68\x62\xae\x44\xb1\xbb\x1f\x9e\x3a\x08\xe2\x1f\xd1\x58\xfd\x59\x94\x28\xdf\x97\xa3\x37\xe8\xd5\xdc\x1d\x9e\x0c\x2d\x64\xf0\xdb\x4b\xac\x24\x8e\x00\xb0\x99\xb5\x36\x61\x20\x55\x35\x74\xa1\x25\xca\xdc\x2c\xc1\xce\x11\x29\xe1\x4d\x08\xf5\x52\xf2\xdb\xbf\x24\xd3\x42\x01\xc7\x78\x4d\x01\x68\xba\x0f\x6e\xa2\x89\x0a\x80\xac\x83\x14\x15\xab\x64\xa1\xa1\xc1\xaa\x0f\x27\x5e\x00\x03\x08\xd3\x65\x8b\x0e\x69\x11\x52\xe1\x95\x14\xaa\xa5\x06\x75\x01\x90\x25\x2e\xb4\x89\xd7\xe7\x29\x40\xf9\x72\x99\xf0\xf3\x50\xf8\x14\x9e\x4e\x07\x8c\x01\x9a\x3a\x31\xdf\xd1\x5a\x65\xc5\x95\x82\x3f\xdc\x74\xb9\x64\x00\xde\xcb\x0b\xd0\xbc\xfd\x87\xe0\x2e\x59\x56\xd2\x95\x85\xb4\x7f\x13\x56\x10\x72\xbd\xa1\xc0\x0e\x02\x46\x37\xca\x9a\xa6\x58\x06\x34\x4d\x6a\xa9\x24\x9d\x5a\xfe\x64\xaf\xd9\x15\x20\x26\xb9\xbb\x8c\x21\x94\x74\x8c\xef\x14\x19\xd5\x72\x4b\xe3\x54\x7e\xdb\x18\xa8\x5c\xfe\x40\xa0\x93\xfa\x77\x98\x52\xea\xdf\x85\xeb\x76\x39\x56\x59\x50\x90\x90\x3a\xc9\x10\x50\xcc\x22\x06\x52\x5b\x55\x84\x83\x0b\xa5\x70\xd7\xa8\xb8\x2a\x04\x8d\x6e\x46\xcf\x1e\xb2\xfb\x39\x34\xc1\xed\x1b\xdd\x46\x55\x02\xe3\x31\x2d\x82\x17\xce\xcd\x1c\x33\x4a\x03\xa9\x37\x23\xa7\x71\x93\x3f\xb2\x88\x9e\x72\x3d\x84\x08\x36\x05\x38\xe6\x5c\x2a\xdd\x1f\x09\x9d\xff\x4d\xdd\x05\x12\x00\xc0\xa7\x24\xd3\xdf\xa2\x1a\x53\x01\x06\xb5\x41\xe9\xff\x63\xef\x5d\x98\x53\xd7\x91\x85\xd1\xbf\x92\x9a\xa9\x53\x7b\xd6\x21\x0f\x1e\xe6\xb5\x57\xcd\xaa\x63\x1b\x03\x26\xbc\x0c\x21\xc4\x7c\xdf\xdc\x2a\x30\xc6\x98\x47\x4c\x02\xc4\x24\xab\xf6\xfc\xf6\xdb\x92\xfc\x90\x6d\xd9\x86\xac\xec\x39\x73\xef\x39\x99\xd9\x2b\xb1\x9e\xad\x56\xab\xbb\x25\xb5\xba\x69\x1c\x90\x43\xe5\xeb\x70\xc2\x3e\x8a\x85\x50\xc9\x50\xfa\x3e\x68\x81\x19\xf3\x56\x86\x1a\xd5\xdc\xdc\x6e\x59\xc3\x20\xe9\xd1\xfb\x2a\x20\x4f\xff\x65\x30\x83\xda\x90\x73\x62\x62\x6e\x14\x4f\x67\x7e\x99\xb0\x39\xad\x6f\x1b\xcb\x3c\x19\xf9\x85\x55\xe0\xf7\x99\xb6\x0a\xc2\x25\x7f\x86\x23\x33\xfc\x75\xb1\x98\x95\xb3\x53\x56\x27\xce\x3b\xa8\x73\x70\x10\x2e\xea\x7b\x25\xd7\x4b\xf9\x02\xab\xf1\x8d\xb9\xd6\xd3\x5a\xf5\xca\xfc\x0b\x31\xeb\xf5\x99\x8a\xd9\x50\x49\x16\x66\xf3\xe5\x02\x73\xf0\x0e\xba\xce\xc1\x41\xb8\xe8\xcf\xb8\xc6\x41\xe5\x79\x8d\x88\x3b\x27\x39\x7c\x2a\x4a\x1f\x13\x52\xe7\x13\x29\x3b\x70\xb2\x23\xcc\x32\x76\x8c\xd9\xef\x74\x7e\xfc\x2e\xd1\xdf\x7f\xd3\x6e\x21\xdc\x73\x01\xa0\x1e\x50\xae\xc2\xbb\x47\x86\xdf\x7c\x2a\x56\x69\xd1\xb1\xd6\x0f\xbc\xad\x66\xf1\xbe\xd8\xb8\x30\xbf\x46\x37\x18\xbd\x89\xb2\x31\x5c\x22\x99\x33\x47\xcb\xc7\xd1\x21\xbb\x1c\x4b\x80\xb8\xd7\x20\xb8\xfa\xcf\x7f\x91\x67\x8d\x40\xaf\xe7\x5e\xbf\x90\xa0\x04\xb8\x06\x4d\xad\x1e\xf1\x56\xe1\xc7\xb9\x3d\xc2\x83\xb9\x9a\xe2\xdf\xbe\xf7\xd6\xe8\xd7\xfe\x8a\x24\x4e\xbd\xc3\xe1\xe8\x25\x0b\xa1\x87\xc0\x3d\x0a\x79\xb0\x1f\xf8\x8c\x74\x1b\x76\x1d\x1b\x97\xe6\x80\xe0\x64\x79\x80\xb8\x13\x16\x64\x6d\xae\x3c\x2a\x46\x8e\xef\x63\x22\x9d\x04\x4e\xe6\x67\xda\x6c\x3e\x9b\xa7\x9d\xcc\x07\x6f\x7f\xd4\xbf\xdd\x14\xd0\x93\xd3\x98\x8b\x24\x37\x3b\x3e\x8b\x3e\x4d\x76\x67\xdc\x73\x9b\x1f\xf9\x70\x8f\x9c\xd9\x26\x6d\xde\xd5\x82\x13\x37\xec\xca\x31\x07\xbb\x66\x5c\x40\xb0\xfa\xa5\xf0\x9f\x90\xe4\xc0\x10\x8d\x27\x9b\x0c\x49\x36\x57\xcd\x55\xaf\x19\x08\xa7\x21\x71\x6c\xca\xbc\x71\x27\x7c\x5f\x8a\x0a\x62\xb9\x96\x86\x0a\xaa\x03\x6a\xe8\xa9\xa9\x9f\xc3\xc9\x22\x5f\xca\x67\xf3\x69\x38\x71\x8c\xe0\x3c\x1c\x24\x7c\x5f\x8c\x13\xec\x43\x34\x0d\x27\x54\x07\xd4\xe8\x53\x53\x3f\x87\x13\x7d\x3a\xd5\xb3\xd9\x54\x3a\xc1\x66\x7b\x3e\x59\xc4\x7d\x5e\x8a\x10\xe2\x8a\x34\x95\x48\xbc\xf6\x69\x6a\x48\x4e\xfc\x1c\x36\xa6\x65\x98\xa0\x79\x1a\x36\x88\x8d\xa1\x37\xfc\xd8\xcf\x4b\xb1\x41\x1c\x9a\xa6\x61\xc3\x6f\x9f\x1a\x78\x4a\xe2\xe7\xb0\x91\x2b\x4d\x67\x85\x54\x1e\x82\x2d\x22\xbd\xd1\xc7\x7c\x5d\x8a\x0a\xe2\x14\x35\x0d\x15\x5e\xf3\xd4\xa0\x13\xd3\x3e\x87\x87\x6c\xb6\xaa\x55\x8b\xb1\x78\xc0\x36\x9b\xde\x90\xbd\x2f\xa7\x2f\x5a\x19\xf2\xf2\x2e\x20\x09\x64\x1a\x1a\x8b\x07\xaf\x41\x6a\xb0\x61\x00\xa2\x3a\x59\xa8\xd6\x05\xf4\x50\xae\x68\xa9\xfc\xd3\xb1\x30\xf5\xc6\x9e\xf0\x7d\x29\x55\x10\x3b\xd6\x34\xaa\xa0\x3a\xa0\x3d\xd5\xa7\xa5\x7e\x8e\x36\x8a\x95\x7c\x75\x36\x4b\xc3\x89\x63\x12\xeb\xe1\x20\xe1\xfb\x52\x9c\x10\xc3\xdb\x34\x9c\x50\x1d\x50\xa3\x4f\x4d\xfd\x1c\x4e\xaa\xa5\x7c\x79\x36\x4d\xc5\x49\x40\x07\x8e\xf9\xba\x14\x1b\xc4\x4a\x38\x15\x1b\x0c\x0d\x38\x31\xed\x93\xb2\xb5\x94\x9b\x56\xe2\xa5\x09\x31\x33\xf6\x19\x87\xf7\xc9\xe2\x1c\x5e\xe6\xf9\x84\x81\x0d\x9a\xe3\x59\x87\xd7\x22\xcd\x3b\xc2\x30\x30\x98\x47\xa8\xde\xf9\x54\x51\x2e\xce\x0a\x85\x33\x64\xeb\x7b\x40\x96\xb2\xbe\x2e\xa5\x0a\xe2\xb5\xf6\x0c\xc1\xfa\xce\x10\xa1\xf1\x69\x9f\xa3\x8a\x4a\x01\xfd\x2f\x41\x9a\xa0\x87\x2d\x94\x38\x71\x3f\x99\xf2\xc4\xcd\x3c\x9f\x87\xe3\x27\x30\x09\x02\xc5\x6d\x31\x20\x51\x42\x30\xb0\x44\x4a\xb0\xde\xf9\x02\xae\x9c\xaf\xe6\xe3\x79\x05\xec\x1f\x49\x17\xe9\x41\x1b\xbd\xa2\x0e\x71\x84\xdc\xcf\x20\x2f\x98\xd1\x96\x6e\x7c\xe7\x2a\xde\x33\x6c\xd7\xcc\xcf\xad\x10\x68\x0f\x1f\xe8\x16\xb3\xff\x71\x75\x73\x95\xd7\xb7\xdf\x02\x97\x11\x91\xb6\xbc\xa6\xb0\x7f\xcd\xcb\x7a\xf7\xab\x44\xfb\x27\x8e\x39\xf1\xcf\x65\x80\x60\x07\x9e\x0c\x38\xf0\xd9\x54\x08\x92\x5b\xcf\xde\xc8\xaf\x15\x05\x25\x5f\x44\x10\x60\x97\x33\x41\x18\x18\x4d\x52\x2d\x7a\x6a\xfa\x45\x70\x84\xb7\x19\x34\x1c\xd9\xcf\xc0\x81\x5c\x91\x5e\x0c\x86\x57\x29\x0a\x05\xf1\x62\x8a\x7e\xca\x9f\x02\x07\x3b\x17\x65\x01\xc4\x80\x87\x51\x89\x01\x10\xe7\x19\x3e\x60\x80\x22\xe0\x44\xa1\x71\xdb\x25\x8e\x55\x2f\x04\x86\xaa\xc4\x00\x06\xf9\x64\x3d\x1f\x0a\xda\x7c\xc3\xf5\x8d\x80\xfd\xb8\x5e\x08\x93\x5f\x87\x01\x12\xf2\x00\x4b\x7e\x3e\x09\x99\x6b\x21\x7e\xb8\x7c\xe6\x0e\x09\xf3\x96\xbd\x64\xba\x2e\x32\x43\x47\x7c\x6d\x6e\x1d\x67\x1b\xf4\xf4\xf5\x4c\xde\x1a\xad\x73\x15\x66\xb2\xdf\xd3\x1b\xc1\x2c\x2d\xa1\xeb\x54\x76\x98\x00\xc2\xa7\xf8\x32\x66\x6c\x9f\x03\x88\x51\xf5\x0b\xe0\xc1\x7e\x15\x3f\x07\x4f\xb4\xea\xaf\xc3\x83\x38\xdd\xe7\xc0\x89\xd6\xfc\x02\x68\x30\xa3\xfb\x24\x3c\x8c\xba\x51\x88\x3e\x2d\x57\x09\xdb\xfb\x1c\x68\xac\xba\x5f\x08\x1a\xe6\x7e\x9f\x83\x8c\x51\xf5\x0b\x01\x3b\x7c\x7a\x32\xa3\x35\xbf\x08\xac\x78\x46\xea\x85\x8e\x2e\xa3\x37\x5f\xdf\xc2\xec\xb5\x5a\xcd\xfd\x2f\x7b\xfd\x1f\xcf\x5e\x3f\xbd\x14\xfe\x5c\x3e\xfb\x27\x72\xb5\x64\x45\xf9\x3c\xce\xf6\xb9\x1d\x44\x2a\x5b\x4b\x06\xed\x2c\xd6\xf6\x39\xc8\xd2\xf8\x5a\x32\x60\xe7\xf0\xb6\xcb\xf7\x3a\x9f\x8d\xd6\x4e\xc0\x0f\x98\x83\xc7\x46\x44\xa7\x80\x8d\x7d\x91\x94\x5c\x39\xf4\xbe\x27\xd4\x1d\xfd\x7a\x21\x1a\xd9\x32\xe0\x05\x91\xca\x0e\x9b\x61\x11\xfa\xa7\xe0\xa0\x4f\x80\x70\xf7\xd1\x57\xfa\x9a\xb5\xdd\xea\xcf\x07\xcf\xc2\x2b\x47\xbc\x44\x52\x77\xfd\x25\xef\xa1\xa8\x5b\x36\xe5\x51\x96\x5b\x2a\xcd\x36\xd4\x29\x77\xe5\xfe\x95\xfc\xd8\x33\x4b\x7b\x8a\x77\x5c\xd4\x79\xe6\x27\x45\xcf\x67\x1d\xf3\x8d\x04\xfe\x0e\x19\xc1\xb3\x61\x88\x1d\xda\x77\xda\xc3\x7f\xcc\x00\xae\x22\xd8\x74\x2d\x6c\xc9\xfb\x2b\xda\x91\x6d\xf6\x2a\x47\x2c\x66\xd2\x9a\x8a\x77\x6f\x49\x9b\xda\xa4\xb5\xe2\x23\x39\x09\x45\x8c\xd0\xcb\x8c\x36\x1d\x1b\x68\xd6\x4b\x9c\x3c\x1e\x27\xfd\x14\x27\x1a\x9c\xf4\x36\x4f\xb9\x21\x8d\x6d\xde\xb7\xc0\x8e\x94\xa0\xec\xb0\x99\x8f\x39\xb2\xb4\x07\x37\xfa\x6d\x10\xfe\x3b\xfc\x92\xca\xf3\xa1\x1c\xe9\x28\xc6\x55\x5b\x5c\x61\x02\xd2\x3f\xbd\x4a\x34\xf3\x2a\xf8\x66\xd6\x8c\x01\x1f\x0f\x4b\xeb\x35\xd5\x14\x1a\x79\x33\x66\xbd\xf0\x8d\xb6\x38\x75\x9b\x64\x3d\xaa\x8c\x2d\x1d\x6f\xb7\x14\x05\x19\x99\xa3\xa2\x47\xc0\x6c\xe3\xfc\xc8\xae\x9e\x69\x07\x46\x3f\x42\x2e\x27\xa0\xc7\xed\xeb\xc7\x7f\x26\xf5\xf6\xbb\xb3\xd0\x12\x08\xcb\x6b\x28\xcd\xca\x3b\x5a\x15\xbd\x63\xf8\xe9\xd1\x2f\xe9\x27\x7c\x58\x02\x5f\x36\xd0\x16\x79\xdc\x39\x7b\xd5\xa7\xeb\x1b\xf4\x1d\x33\x93\x41\x6e\x54\x88\xa5\x0d\xfc\xc2\x78\xff\xf3\x5c\x64\x39\xe5\x23\x0f\x6a\xc3\x11\xbb\xc2\xa8\x2b\xbb\x1c\x34\xde\x28\x2e\xa1\xb3\xcb\x11\xea\x55\xbd\xa5\xc2\x5f\x27\x76\x11\x6b\xf1\x1c\x04\x0f\x59\x20\xed\x50\x7c\x37\xeb\x75\x4b\x33\xf0\x04\x4e\x4b\x55\x88\xee\x49\xd8\x75\xfd\x2a\x57\x88\x34\xa6\x30\xdb\xa1\xf5\xeb\x39\x82\xf0\xea\x6e\x36\xd3\xdd\x1e\xd9\x3d\x39\xad\x44\x86\x1c\x2a\x90\x96\xbf\x8f\xfa\x8a\x45\x5b\x9d\xe9\x9c\x2a\x92\x20\x9a\x6e\x1c\x49\x7f\x75\x43\xfc\xaa\xe7\x69\x09\x55\xc0\x39\x88\x51\xe7\x49\x06\x75\xe5\x81\x2c\xc0\xf1\xfd\x46\x8c\x93\x53\xd8\x4f\x9a\x5b\x64\x93\x10\x4f\xcd\xae\x85\x6e\x96\xe1\xe9\x38\x2e\x46\x51\x92\x57\xe3\x7c\x82\x57\x63\x37\x2f\x5a\xff\x66\xae\x23\xec\xdd\xe6\xf6\xdf\x59\x89\xc9\x83\xf1\x5f\x38\x62\xc2\xfc\x11\x19\x1b\x71\x89\x46\xdc\x28\x79\xb8\xa7\xfd\x28\x85\x15\xb0\x38\x0f\x4a\xac\x02\xb7\x39\xda\x77\x12\xb3\x84\x4b\x78\x0b\x5d\x67\xbc\xc3\x47\xa9\xc9\x6a\x1c\x2e\x91\xa2\xc2\xa1\x32\x3f\x6e\xd1\xf1\xd3\xe1\x0b\x5f\xae\x33\xdc\x39\xf8\xa1\x24\x3f\xe5\xd0\xe1\xd5\xb2\x59\xde\x1c\x50\x32\x23\x29\x1a\x42\xef\x77\xfc\x92\x12\xdd\x35\xbc\x3a\xca\x31\xe1\x9b\x61\xfd\x34\xa4\x4f\x85\x71\xc4\x7a\xb9\x1e\xa7\x5c\xd2\xd5\xa8\x59\x08\x85\xc8\x8c\x94\xfd\x01\x44\x33\xd3\x37\x17\x7b\xc5\x3d\xf3\x45\x77\x9c\x96\x17\xf4\xf5\xbb\xd7\x37\x8b\xdf\xf7\x87\x57\xfd\xa0\x2d\x7d\xbc\x23\xc7\xbe\xce\x73\x3d\x37\x8f\x51\x9c\xf5\xd6\x31\x3a\x3e\xe2\xbe\x96\xb2\xf4\xa7\x29\x1f\x01\xc7\x9c\x43\xcc\xc8\x58\x33\xc6\x72\xc0\x81\x93\x18\xaf\xed\xbe\xc5\x81\x84\xde\x2a\x9e\xf5\x1e\x9d\x7a\x19\x18\x6d\x26\x13\xd2\x1f\xdd\xbd\xcd\x6d\xc1\x73\xd4\x72\x15\xf1\xa0\x16\x68\xe6\x4f\xf6\x2f\xfc\xa7\x4d\x35\x53\x7b\x4a\x58\x0b\x3f\x22\x0e\x8b\xe3\x17\x85\xf7\x16\x8d\xa5\x12\x33\x4b\xde\x82\xa6\xe8\x79\x77\xbb\xb9\x2d\xbe\x86\xb6\x9c\xd9\x80\x2e\xce\x05\x1f\x64\x7b\x8a\x21\x0a\x6f\xe0\xf2\xa6\x58\xcd\x8a\xdd\xff\xfe\xb8\x85\xde\xdf\xbd\x9d\x64\xb2\xaf\x1f\xb6\x96\x99\xde\x7c\xfc\x0b\x5b\x56\x00\x3c\x3f\x58\xcb\x0d\xd1\x82\x5d\x5d\x38\x1a\xab\x08\xad\xb5\x78\x57\xd4\x6c\x98\x8e\x7b\xea\x7d\x7e\x00\x18\x76\x3c\x10\xef\xd5\x64\x52\x10\x87\xf8\xae\xf0\xd8\xe3\xc6\x13\x33\xfc\x4b\x87\xe4\xa0\xf9\x07\x21\x27\xf6\xd8\x3c\xaf\x2c\x09\x24\x45\xf9\x69\x62\x90\x16\x75\xda\x90\x0d\x1e\x35\x24\x28\xf4\x6c\x80\xdd\x67\x4a\xc1\x83\x96\x10\xd7\x4c\x6a\x3d\x99\xec\x70\xf3\xc4\xb7\xc6\x3e\x9e\xf6\xfc\x7d\x49\x68\x3e\x4a\x09\x0c\xcf\x6d\x1c\xef\xd5\xc2\x2e\x96\xa8\xe8\x8f\xc1\x75\xe4\x9f\x73\x15\xb1\xef\x41\x56\x68\xa1\x84\x2e\xf1\x23\xe6\x78\x92\x8d\xcc\x5d\x0a\x62\xe3\xc5\x51\x36\xf2\x6e\x2a\x69\x12\x58\x52\x2a\x00\x33\x6c\xa6\x19\x71\x99\xc2\xc7\xad\x69\x8d\x84\x7c\x83\xfd\xf6\x1b\x03\x94\xfc\x37\xfa\xa0\x0a\x1f\xf7\xfb\x62\x3b\xaa\xfe\x87\x16\x18\x54\x4d\x01\x82\xbc\xff\x4b\x7c\xe6\x8c\xf6\x00\xe4\xe1\x58\x78\x97\x10\xcc\x39\xab\x27\xa2\xef\x5f\xc5\xbd\x01\x4c\xaa\x4e\x3d\x21\x0c\xd6\xd7\x17\x5c\x96\x9b\xa6\x62\x9b\xa1\xaf\x53\xa7\x7f\x67\xd6\xfc\x3d\x2e\xac\x60\x02\xe4\xe4\x39\x63\x42\x07\x89\x8f\x43\x73\x0c\xaa\x28\x32\x23\x73\x5d\xf4\xee\x2f\x09\x5e\xca\x88\x2f\xbd\xd8\x95\xff\xf4\x33\x6d\x88\xb1\xa7\x10\x55\x67\xf3\x4b\xf6\x7b\x78\xcf\x95\x10\x08\x2e\x94\x9f\x0b\xc6\x67\x0b\xe7\x46\xc2\xb8\xe1\x10\x19\x24\x5e\xde\xd7\x3b\x0c\x23\x61\xd8\x62\xde\xa8\xc6\x0b\x82\x4b\x38\xd7\x79\xde\xe9\x52\x5c\xd0\x85\xfd\xcd\x51\x48\x61\xab\x79\xb8\x40\xe8\x9a\xc3\xcf\x38\xf7\x5a\x87\x14\x8e\xdf\x17\xb3\x8a\xff\x60\x85\xf3\xfc\x4a\x57\x48\x74\x2f\x89\x9b\x7a\xba\x60\xca\xde\x9e\x2a\x1a\xef\x38\xec\xcb\x36\x96\xa1\xd8\x71\xbe\x4a\xe4\xa9\xbf\x3e\xa9\x21\x91\xed\xe0\x8a\xe2\xf7\xd4\x06\x03\xc6\xcb\xdc\x8b\xa0\xf4\x60\xb1\x98\x91\x7e\xd6\xd3\xd8\x6d\x0e\x5f\x27\x7c\x0f\x3b\x0a\x8b\xf6\x40\xf9\x76\xa3\x5c\x8b\x05\xfd\x6c\x05\x6a\xfd\xc9\xbb\xba\x34\x4f\x61\xd1\x45\xcc\xf2\x13\xc6\x5c\xfe\xb1\x63\xf9\xd7\x2c\x08\x07\xe1\xd4\xbe\xda\xb3\x77\x09\x68\xf9\xac\xab\x24\xd7\x22\xe5\x97\x68\xec\x7b\x20\x9e\x4e\xce\xbb\x09\x62\xa1\x24\xe2\xa5\x8c\xa5\x16\x7b\x7e\xbd\xb0\x06\xf9\xa5\x71\x16\xe3\x9d\xaa\x24\x41\xcb\x8e\xba\xe8\x3b\x25\x8b\xf0\xe7\x33\x7d\x72\x31\xab\xa4\x79\xdc\xa2\x2b\xdd\xd2\x7e\xa4\x18\x93\xe8\xb8\x8d\x62\xcd\xa3\x93\x15\x2d\x1c\xf0\x31\x15\xe8\x2c\x74\x71\x49\xe7\x45\x5c\x47\xfd\xe6\x51\x37\xfc\x15\x7b\x3c\xc4\x46\x7a\x9c\x7b\xb4\x52\x60\x3b\x43\x16\x79\x60\x91\x9e\x1f\x36\x35\xb6\xf7\x18\xe7\x51\xec\xa2\x17\x88\x18\x67\x27\x15\xd8\x1e\x25\x41\xcf\x04\xbc\x14\x81\x3b\xc5\x37\x54\xb4\x64\xca\x4d\x56\xb4\xc2\x2f\x39\x76\x62\xa2\xed\xcf\xf0\xdd\x94\xd2\x11\xcb\x31\x13\x93\xf6\xce\xf0\xbe\x94\x58\x2f\xf6\x8e\x39\x82\xd8\xb3\x5c\x28\x25\xd5\x4a\x75\x91\xc4\xc4\xc9\xed\x62\xfa\x66\xbd\x42\xda\x9f\xee\xee\xe6\x8c\xee\xcf\xf0\x14\xc4\x6e\xc5\xd9\x68\x86\xc6\x12\xf1\x04\xc4\xae\xfc\x2f\x71\xf6\x93\xd2\xf5\x19\x9e\x7c\x12\x47\x9e\xe4\xa5\x27\x40\x34\xe4\xb8\x2b\x28\xfb\xcf\x37\x43\x7a\x0d\x1c\x4e\x05\x6e\x1b\xb2\xff\x5a\x4f\x38\xcc\xab\xa7\xe8\x48\x7f\xfc\x27\x65\xc5\x80\xfd\x13\x93\x7f\xc9\x07\x83\xc7\x91\x5a\x29\x4c\xce\x6d\x2c\x7b\x45\xb7\x1a\xd3\xd8\xbf\x54\xeb\xf3\x79\x88\x33\x45\x65\x14\x7d\xe3\x0b\x2c\xa1\xe9\x2d\x78\xe4\x72\xf5\x0c\x38\x3c\x9b\xba\x24\x4d\x35\x44\x96\x2e\x65\x91\x27\x87\x17\x5b\x3e\xd2\x20\xff\x9b\x78\xcc\x77\x30\x97\x4f\xc0\x1c\xd3\xc4\x2b\xd5\x7f\x51\xb4\x9d\xb0\x4a\x46\xef\xf4\x82\x4e\xb9\x22\x06\x96\x11\xa3\x4c\x6f\xfb\x89\xe3\x81\xc4\xef\xf8\xcf\x9c\xd0\x9c\x67\xb8\x14\xd7\x40\x20\x7a\x8a\xe7\x5d\xf5\x36\xec\x60\xfa\x2b\xb7\xc0\x7e\x9f\x44\xef\x3d\xaf\xdb\xb0\x8f\x2a\xaa\xe7\x40\x90\x57\xaa\x70\x6a\xff\x44\x65\x3c\xaf\x7f\x52\x96\xd9\xbf\x93\x15\x29\x8c\xfb\x47\x9c\xfe\x84\x02\x4b\x32\x96\xb5\x7f\x52\x44\x87\xbf\x79\xbf\x72\xea\x00\x40\x8c\x5a\x3e\x49\xcf\xcd\x37\x73\x1e\x6a\xfa\x2c\xf7\xdd\xc5\x6f\xd1\x6d\x78\x2e\xa9\xd9\x38\xf3\x02\xea\x1c\x25\x7c\xa4\x15\x34\x3c\x08\x51\x32\xab\x8b\x73\x0e\xbe\xbe\x87\xef\x63\x43\xed\xba\xc8\x66\x61\x26\x3a\xe2\x74\xf4\x9f\xd5\x4e\x88\xc7\x5c\x4d\xc9\x78\x42\x5e\xc2\xe8\xa1\xb2\xbc\x82\xc5\x34\xe0\x6f\x34\x69\xff\xa5\xec\x16\x23\x65\x93\xb5\x61\x86\x59\x10\x76\xcf\xb7\x07\x66\x1d\x39\xfc\x75\x4f\x0b\x18\x67\xc0\x4e\x56\xe4\x28\x98\x4a\xa7\xab\xd1\xc5\xff\xbd\x84\x45\x2e\x64\x9e\xee\xf1\x7c\x0f\x2d\x99\x20\x92\x02\x97\xa3\xfe\xf1\x8b\x57\x20\xf9\xc4\xd4\x2f\x96\xb2\x99\xf5\x0a\x06\x3d\xfb\xb9\x56\x10\xd3\xd7\x03\x33\x22\x36\x1e\xab\x93\x1d\x8c\x8a\x4d\x12\xe3\xca\xfe\x4a\xc0\x11\x1f\xd4\x1f\xff\xad\xc4\xf4\x4b\x01\xba\xff\xbd\xa8\xd2\xa1\x2c\x64\x32\x99\x48\x9b\x7f\x42\x24\x1a\xb4\x20\x1c\x63\xce\x9b\x7c\x98\xb8\xff\xcc\x80\x2e\x54\x27\xe7\x2d\xa1\xd4\x27\x21\x5e\xc9\x1f\xb7\x6f\xd3\xcd\xd1\x09\xc1\xeb\x55\xbf\x8a\x14\xf8\xf9\x65\xa7\x9f\xc8\xdc\x82\x7d\xc2\xe4\x46\xd6\xc5\xe6\x4a\xbe\xf3\xc5\xe3\x6e\xa7\xbf\x6a\x78\x53\xc6\xf4\xa0\x4f\x81\x8a\x0d\xbb\x92\xc6\x42\x6c\xf6\x7e\x7d\x2c\x97\x59\x07\xfd\xea\x88\xfe\xc9\x9a\x24\x67\x62\xfe\x79\xe6\xa0\x99\x6d\x30\x26\xda\x69\x2f\x81\xb8\x9c\x82\xd4\x65\x6e\x52\x7b\x11\x03\x42\x86\x77\xdb\x70\xfb\x08\x2b\xe9\xe0\xfa\xa5\x7e\x86\xe9\x89\xba\x49\xcd\x33\x26\x29\x15\xeb\x7e\xd3\x99\x74\xf4\x46\x0a\xc7\x44\x7a\x88\x60\xc6\x3d\xbf\x4e\x44\x9f\xbb\x6d\x72\x86\x83\x6e\xb6\x13\xad\xb0\xd0\xd3\x3f\x8a\x09\x52\x32\xd9\xe3\x59\xc1\x22\x57\xb4\x04\xf7\xf6\xe5\x39\xcf\x30\x1f\xd7\xcd\xd3\x2f\x1e\x53\x9a\x0f\x95\x89\x69\x9f\x72\x99\xc1\xea\x88\xbc\xfa\x4c\xe9\x29\x5c\x28\xa6\x2b\xe4\x30\x84\xd5\x07\x79\xce\x9f\xd2\x47\xb8\x50\x4c\x1f\x94\x87\x14\x66\x57\xe6\x29\xb5\xa3\x40\x91\x98\x6e\x28\xcf\x30\xac\x6e\x16\x8e\x4b\xf2\xa4\x7e\x42\x65\xd8\x1d\xe5\xd9\xd3\x8f\x1f\x54\xa7\xb5\x1f\x2c\x13\xd3\x3e\x7b\x46\xc8\x0b\xf2\x34\xf2\x0d\x15\x62\xf7\x40\xbf\x57\x66\x76\x65\x5b\xa9\x1d\x05\x8a\xb0\xbb\x29\xb2\x11\x65\xa5\x2f\x13\xeb\x9c\x55\x92\x65\x37\xef\x5b\xe9\x53\xd5\xfe\xbb\xad\xf9\xa3\xca\x78\xc8\xcf\x36\xad\x61\x87\xcf\x2f\x18\x47\x17\x74\xc1\xd8\x51\xef\xff\xcd\x4e\xd8\xe8\x0d\x93\x77\x3c\xcc\x04\xfc\xea\x7f\xc8\xd4\x85\x10\xf2\x3d\x72\x88\xcb\xc2\x4e\x44\x07\x60\xa2\xf0\x47\x8c\x3a\xc0\x76\xf6\x9f\xd0\x59\x58\xa1\x49\x9b\xb0\xa0\x6e\xe3\xac\xd5\xdb\x5c\x25\x61\x79\xd2\xca\x69\x7a\xf3\xc1\xb7\x25\x67\x04\x64\x0a\x1a\x26\x7b\x26\xa5\xc8\xfd\x37\x53\xd7\x0f\x64\x30\x86\x16\x51\x4c\x58\x2d\x79\xe1\xf2\xb1\xc3\x72\xc2\xd5\x88\x7b\x6d\x66\x73\xe1\xbc\x73\xba\x8d\x69\xcf\xbb\x6d\xc2\xfe\xc1\xff\x08\xd7\x72\x1c\x5a\x33\x5b\xbf\x24\x8f\xb5\x11\x72\x7b\xc6\x5e\xb8\xc9\x98\x37\x01\x91\x1a\x18\xf2\x26\x56\xda\xc6\x8e\x98\xd9\x9a\xdb\x2d\xf1\x75\x8d\xbb\x25\x8e\x99\x99\xed\x85\xb2\xce\xe9\x96\xdd\x9a\xdb\x2d\x71\x2a\x1d\xc1\x33\x76\x89\xcc\x6c\xfa\xdc\x9c\x04\x0c\x13\xef\xcd\xb8\x4f\xec\x6b\x98\xd9\x5a\x30\xe7\x9c\x81\x32\xdb\xf2\xc7\x89\x3c\x25\x47\xc6\xe9\x38\xf8\x65\xb6\x7d\x49\x5e\xc2\x68\x89\x57\x62\xdc\xb3\xe3\x3a\x97\xd9\x62\x38\xef\x9c\x11\xc7\xb4\xe7\xf6\x4c\x7c\xff\x92\x9e\xd1\x41\x2a\xbb\xdf\x40\xce\x59\xbd\xb2\xda\xf2\xec\xb0\xb1\x87\x5d\x32\xb7\xd8\x15\x2c\x7b\x72\x83\x59\x67\xcd\x2e\xb3\x35\x6f\xa8\xd8\x9b\xad\xbb\x7a\xde\x63\x17\xcf\xfb\xc5\x6b\x27\xda\x96\xdb\x27\x71\x1b\x4b\x4e\x9b\x9f\x11\xf3\xa6\x19\xe9\x15\xd5\x62\x34\x37\x89\xfd\x2c\x16\xb1\x4d\xfa\x82\x26\xad\x49\x22\x66\xa8\x33\x8b\x7c\xb1\x78\xed\xfe\x77\x5b\xfd\x16\xec\x22\x56\x98\xb0\x4b\x9c\x83\xb9\xc4\xb6\xfd\xb1\x96\xaa\x45\x3d\x08\x4b\x92\x9c\x89\x2d\x74\x11\x44\x69\x92\x67\x51\x29\xe6\x66\x41\xa0\x92\x44\x4b\x6c\xa1\x8b\x80\x8a\xe9\x81\x32\x39\xc9\xe7\x42\x84\x91\x20\x9d\xe2\xca\x5c\x86\xa7\x44\x79\x35\xaf\xea\xe5\x72\x25\x08\x51\x82\xe0\x8a\x2b\x73\x11\x44\x29\xa2\x4c\xd7\x34\x2e\x1b\x84\x28\x5e\x5a\xc5\x14\xb9\x08\x1e\x66\xeb\x1e\xdf\x9f\x2f\x22\x6b\x39\x5e\xdc\xc5\x14\xb9\x08\x9c\x44\x01\x58\xe4\xb4\x4a\x18\x9c\x24\x09\x17\x5b\xe8\x22\x90\x62\x7a\xf0\xd8\x76\xbe\x9a\x5b\x84\xd6\x5a\x92\x90\x8c\x2d\x74\x11\x50\x29\x62\x73\xae\x81\x28\x09\x61\x2a\x5e\x7e\xc6\x14\xb9\x0c\xa0\x24\x89\x0a\xfc\x48\x9f\x87\xe9\x28\x5e\xb4\xc6\x95\xb9\x8c\x92\x12\x85\xed\xbc\x54\xd6\x1c\xdd\x9c\x5e\x9a\x31\x52\x37\xa6\xc8\xa5\x0b\x3f\x5e\x0e\xcf\xb5\xf9\x7c\xae\x07\xae\xb7\x83\x46\xd1\x7e\xcd\x9f\x51\x5f\x4a\xc4\x47\x47\x2e\x72\x43\x1e\xb2\xd3\x8a\xb4\x81\xf3\xe9\xdd\x59\x8e\xdc\x5d\x91\xa3\x32\x52\xcd\xaf\x94\x76\x6d\x83\x9c\x64\x24\x6d\x61\xaf\x13\x0b\xc5\xe1\x12\x57\x38\x23\x27\xf6\x5a\xc8\x75\x07\xe0\xda\xa2\x85\x1b\x0c\xed\xe5\x93\x5a\xa5\x76\xf1\x8c\x67\x5b\x07\xf3\xf9\x3d\x75\xfc\xb1\x85\xe2\xc6\x8f\x2b\x9c\x91\x93\x3c\xfe\x7c\x00\xc8\xf8\xd1\x27\xb5\x99\x3c\x7a\xf2\xe4\x8d\xbd\x1c\x82\x59\xc9\x90\x16\x82\x0d\xa6\xe1\x33\xbe\xd4\x99\x08\x89\xc0\x1d\xbe\xdf\x49\x02\x3e\x05\x25\x69\xbc\x21\x01\x3e\xef\x95\x5f\x1a\x02\xce\x1d\xfa\x05\xc7\x35\xac\xc9\x88\xc7\xcf\x05\x98\xc9\x07\x5f\x38\x32\xc7\x13\xca\x4a\xc6\x52\x31\xd8\x60\x1a\xae\xe2\x4b\x9d\x39\x19\x11\xb8\x43\xc8\x48\x04\x9e\x8d\x12\x9f\x31\x61\x27\x3e\xec\x39\x3e\x9e\x8f\x92\x52\xa0\xb9\x54\xea\x89\x2b\x74\x26\xde\xc3\x30\x87\x0f\x46\x13\x00\x4f\x43\xc7\x54\xd3\xac\xd7\xb9\x1b\x1d\xdd\xfb\xba\xf2\xff\x0c\x59\x6c\xfe\x91\x50\xce\x3f\xd5\xa5\x9f\xab\xc6\xd6\xb8\x02\x46\x78\xd8\xe8\xe1\x9e\x71\x22\xcb\x16\x2c\x5c\xc6\x37\xf4\x0d\xfa\xa6\xfc\x82\x67\x5a\xc9\xae\x01\xd3\x46\xe4\xf9\x25\x64\x0e\xed\x9f\x11\x13\x55\xef\x96\xc0\x2b\x4a\x86\x86\xfd\x4e\xcc\xbf\x25\x74\x10\x0c\xc1\x1a\x57\x3d\xa6\x8e\x3b\x63\xbf\xfd\x16\x76\xee\x99\x0b\x53\xc7\x79\x0d\xa6\x3a\x4f\x4a\xc0\xd9\xd5\xed\xfc\xd5\xda\xcd\x91\x36\xe9\x9d\xc1\xa7\x94\x49\x75\xf1\x11\xb6\x38\x70\x1c\xaf\xd1\x56\x02\x94\xf3\x8b\x18\xaf\x33\x1e\x29\x30\x5e\x0c\x44\x02\x8c\x7a\x6f\x04\xae\x3d\x9f\x68\x8c\xe7\x04\xe7\x14\x8f\xb9\xe0\x67\xc4\x34\xbd\x20\x90\xab\x87\xd0\xdb\xad\xfe\x7c\xbc\x72\x9e\x0a\x90\x05\x17\x63\x00\x9f\x56\xef\x47\x68\x4e\x18\x3a\x2f\xfd\x84\xf2\x2a\x82\x49\x0c\xe1\xab\x05\x2c\x4b\xff\x5b\xae\x92\x9d\xeb\x46\x38\x2a\x6b\x28\x33\x2e\x23\x4c\x61\x88\x33\x62\xa3\xcf\x30\xd9\x84\x9d\x92\x44\x48\x20\x81\x56\x9d\x37\x2f\xe7\x90\xec\xd9\x45\x03\x48\xa5\x6b\x85\x71\x1b\x8b\xb7\x6a\x02\xda\xaa\x31\x58\xab\xfa\x48\x23\xeb\x9a\x62\xe5\x8e\x03\x98\xac\xfb\x70\x22\x5c\xe0\x9a\x95\x48\xcb\x82\xb0\x87\x22\xc7\x30\xe2\x35\xe8\x14\xcc\x89\xf0\x1b\x8a\xea\x4b\x42\x3a\x45\x2d\xb4\xa9\x00\xbf\x31\xde\x10\x13\x20\xa2\x65\x4d\xb4\x18\x59\x01\x11\x3b\x66\x3f\xd2\x76\xbc\x53\x55\xca\xa6\xe8\x5c\x4b\x73\x96\x4b\x06\x0f\x29\x3e\x4b\x88\x7f\x8e\x94\x5e\xfa\x4c\x74\xd0\xb6\x84\x4c\xd4\xfc\x88\x96\x0b\x5b\xbb\xa7\x77\x45\x0b\xc3\x68\xc1\x90\x0b\xb6\x90\xa3\x69\xe2\x2f\xd3\xb7\x23\x4e\xef\xe6\xe7\x67\xeb\xd3\x2b\x2f\x8d\xc0\x5d\xfc\xf9\x26\xed\xac\xc2\xa9\xed\x51\x8d\xfc\x0c\xbd\x7b\x8b\x57\x3c\x7e\x7d\x10\x7e\x91\xf4\x5e\x5d\x67\x2b\x89\xdd\xc5\xa8\x3b\xc1\x5c\x86\x67\x67\x12\xfa\x3c\xc8\x56\x42\x69\x57\x11\xb6\xe4\x69\xa1\xde\xa1\x4f\xbc\x62\x98\x70\xaf\xf1\x5f\x8e\x96\xa8\x05\x0d\x5b\x79\xb7\xad\xef\xfb\x57\xed\xf7\xe3\xeb\xe6\x6f\xc8\x8d\xf1\xef\xd3\xdd\x6e\x03\xe2\x18\x2d\xbf\xbb\xd3\x0d\xae\x70\x38\x2c\xbe\x6b\xcb\xe9\xeb\x5e\x3f\xfc\xfd\x78\x58\xdc\x54\xbe\x23\x21\x5d\xe2\xae\x79\x5e\xe2\xe1\xa7\xcd\xcb\xf0\xaf\xcd\xdb\x0f\xb9\xce\x5b\xc7\x30\x56\x42\x11\x25\x8b\x15\xf4\xaf\xda\xe8\x1e\xd4\x27\xbe\xbf\xe8\xc9\xf7\xf0\x29\x34\x51\xa2\x74\x7a\x56\x9f\xba\x36\xfe\x13\xfd\x33\x36\xd0\xbf\xf2\x24\x7f\x2a\x4e\x5e\xdf\x57\xa5\x26\xfa\xae\xe3\xfc\xf7\xc6\x72\xa3\x8e\x1f\xee\xb2\xf2\x12\x55\x15\x7b\x28\xb1\x36\xb1\xa6\x8d\xc7\x25\xbf\x5b\x0b\x45\x54\xea\x19\x25\xf2\xeb\x69\x23\x97\xd5\xf9\xd6\x91\x17\x10\x40\xf7\x23\x94\xd8\x68\x9c\xde\xd4\xbc\xc4\xaf\x78\x61\x8c\xea\xbf\xe2\xa2\x45\x80\x69\x09\x35\x0d\xbe\x8e\xba\x7a\xc5\x5d\x19\xb3\x6d\xfd\x30\x59\x88\xb9\xe7\x2c\x87\x86\xa5\x21\x78\xfb\x4d\xe1\x4d\x2b\x28\x68\x7c\x18\xdc\x06\x1e\x1a\x1a\x2f\xf4\x31\x81\x02\x90\xc5\x8f\x6c\x61\x82\xda\x91\x34\xe1\x81\xaf\x6f\x51\x91\xaa\x02\xb9\xb2\xc2\x33\x7e\x04\x89\x95\xca\x0b\x68\x60\x76\xde\x68\x1a\x77\x99\xda\x1d\xc7\x03\x12\x44\x2f\x83\xfe\x31\x9c\xdf\x24\x17\xc1\x25\x60\xf8\x70\xb9\x3a\x42\x69\x0d\x17\xb9\xc7\x45\x71\x2b\x12\x2f\xf7\x6b\xd3\xbb\xbb\xc2\xdd\x1d\x19\x07\xfa\x9e\x38\xdf\xc2\x5d\xa6\xd3\xbf\xb7\xf9\x9a\x33\x1b\xd4\x0f\x7c\x2f\xee\xee\x78\x1e\xa6\x32\x30\x14\x18\x7b\x4d\x2b\x3a\x69\x42\x18\xba\xee\xc7\x5a\xf0\xea\xfb\x3f\x08\xde\x42\x4f\x71\xd2\x14\x7e\xc8\x4b\x6b\xfe\x60\xd7\x61\xbe\x3a\xa8\xbd\x6c\xdf\x96\xf2\xf5\x0f\xf5\xa9\xbe\xcc\x0a\x75\x5e\x6b\xb4\x6c\xf5\x8d\x1f\xaa\x39\xc9\x98\xc2\x10\x8d\xa6\xa0\xa8\x0d\x41\xd1\x64\x41\xe5\x1b\x79\x5b\x6b\x2c\x6c\x4d\xe0\x15\x4d\x12\x17\x15\x59\xe0\xd1\xdf\xf3\x3b\xc1\x50\xdd\xf6\x79\xd4\xfe\x4e\xf1\xda\x1f\x74\x6b\x5a\xbe\xf3\x21\x2f\xf8\x81\xfa\x58\xe7\x2b\x82\x60\x76\xcc\xd6\xbb\x9a\x83\x09\x6c\x08\xb6\x01\xa4\xa0\x36\x0c\x7e\x24\x0b\xb6\x5a\x1f\xdb\x12\x00\x0c\xe9\x16\x5f\x17\x79\x0d\xe7\x41\xdf\xfe\x78\xa1\xfd\x97\xb1\xba\xd9\xe7\x2a\xfd\x7e\x7f\xc4\x8b\x88\x1e\xd0\x4f\xe7\xae\x6a\x65\x38\xfc\xe7\xc7\x5d\x7e\x55\x76\x66\x0b\x8f\x93\x20\x41\x0c\xe0\x97\x47\xf3\xed\xe0\x94\xa0\xa9\x10\x9d\x07\xfc\xd3\x88\xa4\x28\x4e\x79\xa0\xf7\x83\xed\xa5\xde\x23\x7a\x68\x1a\x82\xc8\x37\x14\x0f\x5e\x01\x06\xe6\xb7\x2b\xb3\xda\xc7\x3f\x35\x43\x3c\xfa\xe5\x24\x44\x14\x3c\x5d\xaf\x66\x08\xd4\x77\x07\xe5\x9b\xfe\xb7\x02\xdf\x42\xcf\xff\x1e\xa1\xf5\xd5\xf1\xbf\x55\x04\x07\xd5\xbe\xc5\x77\x79\x61\x8a\xda\xe1\x15\xa5\xe5\xf7\xe7\x7e\xbb\xfd\xb9\xdf\x6e\x7f\xee\xb7\xdb\x9f\xfb\xed\xf6\xe7\x7e\xab\xa8\x7c\xd6\xff\x76\xfa\x6b\xca\xbc\xaa\x08\x59\xbe\xb1\xe6\x67\x86\xf0\xcc\xd7\x55\x7e\xa2\x08\xef\x7c\xb3\xc3\x4f\x15\xe1\x8d\x6f\x70\x08\x43\x27\x5e\xe4\xa0\x26\xa4\x37\x24\x7e\xce\x0b\x3b\x94\x3e\x29\xb4\x96\xf3\xc6\xe6\x38\xb1\x43\xe9\xb6\x30\xe4\x1b\x23\xf4\x3b\xc7\x37\x6c\xd4\xfe\x7b\xa4\x1f\x49\xe5\x67\xb6\x70\xe4\x9b\x0a\xb4\x0f\xdf\x50\x1e\xd2\x37\x7e\xb9\x11\x62\x29\x06\xdf\x90\x79\x5d\x81\xdf\x40\xbf\xaa\x0d\xf0\x48\x59\x54\x0f\xc3\xd5\x36\x1c\x14\x9d\xf1\xf3\xed\x0a\xe9\xc1\xd3\xc3\xdf\x7e\x3b\xbc\x1e\xf5\xc3\xfb\x4e\xff\xed\xdb\x35\x93\xd3\x13\x0d\xcf\x5a\xc4\x30\xfa\x79\xb6\xda\x18\xac\xab\xa3\x47\x09\xf1\xf4\xa1\x8d\x10\x89\x89\x0a\x96\x0b\xcf\xe4\x71\xee\x8f\x50\x1b\xac\x55\xbc\x04\xaa\xe8\x9f\x61\x16\x11\xcf\xa1\xbe\xb3\xde\x8e\x52\xf5\xa1\xfd\x81\x08\x51\x5e\x13\xd2\xe0\x11\x89\xcb\xb2\xad\x2b\x6a\x3e\xb7\xc4\x4b\xcd\x42\x8d\xa3\xd5\xcb\xf3\x0f\x7c\xb5\xc2\x19\x3b\x57\x70\x88\x59\xdc\x3e\x11\x1c\x98\x44\xb1\xa0\x40\xe5\xdb\xb8\xa9\x2e\xca\xaa\xcd\xb0\xe0\x98\xa2\x3c\x94\x75\xc2\x95\x70\x7f\x2d\xfe\x7e\xc2\xeb\x73\x6b\xf6\x34\x40\xab\xb5\xd6\xc5\xe0\x1a\x04\x94\x2d\xc7\x4b\xdb\xdc\x52\xc7\xd2\xaa\xdb\xa1\xb3\x60\xba\x78\x2c\x28\x50\x7b\x39\xcc\x65\x10\x52\x84\x7e\x1f\x09\x8e\xa2\x3d\x2b\x74\xf1\x20\x71\x27\xa2\x0b\x24\x6a\x42\x82\x95\x08\xe5\x15\x49\x10\x3c\x22\x82\x24\x03\xfe\xab\xbd\x72\x4d\xbe\xcd\x35\xec\x3e\xd7\xe0\x15\x5d\x34\xf8\xc9\xe8\x2e\xd3\x36\x4f\x1c\x2c\xe6\xcd\xc3\x1d\x77\x6c\xd7\x78\xbd\x3d\xbd\x33\x47\x99\xa6\x52\x6f\xa2\x6e\x9b\xeb\x3e\xf9\xcd\x0d\xf0\x6f\x7e\x3d\x47\x70\xb4\x80\x19\x08\x36\xf4\x61\x67\xfb\xd2\x40\x99\x34\x9f\x9d\xbe\xdc\x3e\x0b\x23\x7b\xfe\x50\xcf\x75\x56\x42\x6e\xb0\x12\xa4\xde\xd3\x63\xa3\x23\x0d\x04\x0c\xad\xba\x46\xdc\x02\x40\x90\x24\xc1\xb6\xba\x8f\xbb\x42\x65\xc3\x97\xdd\xff\xca\xe8\xbf\xc2\xa4\x50\x98\x9d\xc6\xed\xb5\x9c\x57\x56\x1c\x27\x57\x4f\x0f\x85\x3a\x3f\xee\xad\x8a\x62\x77\x2d\x1f\x15\x93\xcb\xb4\x56\x96\xde\x37\xe5\x7c\xc3\xe4\x54\xd9\xbc\x3b\x8e\x04\xf5\xd8\x30\x55\xbd\x69\xca\x66\x73\xc9\x6d\x21\x7d\xda\x5e\x5a\x79\x79\x65\xaf\xca\xf5\xbe\x06\xf9\x7a\xcf\x54\x33\xed\x35\x6f\xf4\x32\xd5\x7c\xbb\xb8\x1c\xb7\xab\x45\xa5\x6e\xe2\x36\x4b\xbd\x15\x97\xe9\xaf\x26\x62\x1b\xb7\xaf\x96\x9a\x22\xd4\xc9\x9c\x94\xfa\x8a\x33\xbb\x4b\xeb\x88\xda\x6b\x2d\x39\x5d\x16\xfb\x7b\x9c\x6e\xca\x3a\xf4\x87\xfa\x38\x36\x57\x2a\x82\xa5\xd4\x5a\x71\x47\x45\xe4\xcb\xdc\x46\x78\x80\xff\xc6\x80\x4f\x42\xc3\xff\x33\x05\x39\x7c\xd7\x16\x6a\xaf\x35\x59\xd4\x3e\x3e\x40\x00\xee\x1d\xa1\x54\xeb\xdf\x4d\xfb\x58\x50\xd1\x82\x0c\x74\x21\x61\x66\x38\x20\x1b\x81\x81\x0a\x5c\xff\xce\xe0\x29\xa1\x76\xb0\x23\xe3\x24\x85\x8d\x70\x8a\xe4\x96\x1f\x12\x5d\x0b\xb1\x6f\xbf\xdc\xff\x0a\xa2\xff\x3f\x0a\x22\x24\x63\x7e\xfb\x16\xe3\x93\x98\xf2\x3e\xfc\x67\x9c\xa2\xb2\x77\x3f\x81\xf7\x54\xbe\x75\x38\x6c\x17\xd1\x96\xe9\x26\xf2\x4a\xf1\x7b\x42\x56\xea\xb0\x62\x9e\x63\x9d\x3f\x50\x27\x70\xd3\x39\xe3\x75\x63\x3c\x79\xef\x32\xff\xef\x22\x3b\x9f\x12\x3f\x4c\xda\x52\xd7\xd6\x33\xeb\xc4\xf0\xbe\xc8\x3c\x6b\xfe\x35\xb4\x58\xc7\x03\x6a\x2b\xde\xa7\x36\xfd\x88\x2d\x57\xde\x9d\xbe\x07\xaf\x3f\x83\x73\x84\xf2\xa9\x67\x23\x65\x37\x8e\x98\x33\xa4\x2b\xf3\x79\x77\x3c\xfc\x1f\xa4\xed\xfc\xdd\x4d\xfb\xc7\x75\x5c\x09\x74\x70\x67\xfd\x23\xec\x94\x28\x39\x2c\x96\x77\xdc\x4e\xbb\x27\xf0\xc7\xe8\xba\x10\x2d\x7c\xf7\x21\xfc\x4e\x01\x1f\x84\xf6\x16\xfe\x09\x42\xe7\x18\x2a\x12\x88\xf0\xdb\xc1\xf8\x49\x0a\x9c\x61\xbb\xbe\x00\x1d\x27\xfe\x14\x48\x8c\x08\x6d\x74\xff\x34\x51\x05\xc1\x38\x2f\x4e\x58\xcc\x40\xbf\x53\x2e\x9c\xa3\x87\xa1\xc1\x73\x53\x3f\x12\x06\xdb\x91\xeb\x2b\x3e\xde\x8e\xbb\x44\xb8\x4e\xb8\x9f\x48\x75\x02\x9b\xd2\xf4\x99\x4d\x3a\xbe\x2a\xfd\xf3\x50\x27\x74\x3f\x03\xdb\xf8\xf1\x34\x0b\xd9\xe4\x55\x75\x14\xd7\xd4\xf4\x71\x80\xd6\x73\x50\x1f\xe1\x33\x3e\xd1\xc6\xbc\xdb\xfd\xff\x26\xda\x69\x9e\x2e\x3a\xd8\xfc\x23\x8a\xda\x00\xb6\x33\x11\x53\xe0\x64\x34\x5c\xe4\x83\x2c\xd4\x49\xbc\x6b\xff\x20\x4d\xe0\xa3\xd1\xdf\x13\x16\x62\xa0\xc0\xcf\x98\xe5\x44\x0d\xc9\x3f\x89\x2f\x38\x07\x9b\xac\x06\x19\x78\x49\x8d\x89\x15\xa4\x65\x7c\xf2\x99\x04\x78\xb0\x44\x10\xf2\xea\x62\xba\x98\x5d\x06\x7c\xa0\x57\xc6\x4a\x62\x71\x7f\xa7\xfc\x3f\xa3\xa4\x10\x15\x05\x09\x65\x83\xe3\x71\xbd\xd4\xc7\x9d\x23\x27\x43\xb4\xb0\xb4\xe3\xfe\x9f\xb1\xcc\x37\xa1\x0e\xcd\x97\xd3\xc6\x72\x7e\x2f\x81\x0a\x01\xd6\xff\xab\x13\x96\x36\xfc\x73\xe7\x90\x02\xed\x42\x5c\x25\xf7\x10\x45\xd5\x05\xe5\xcf\xa2\xa8\x08\x2c\x67\x53\xcd\xef\xf8\x53\x9f\xa7\x4c\xa1\x57\x2c\x7e\xe2\x2e\xe5\x11\x8c\xee\xe3\xd0\x12\xea\x9d\x8c\x30\xc9\x4d\xff\x79\x2b\x04\x29\x51\xd0\x12\x68\x7a\xd3\x83\x7e\xe1\x4a\x09\xd6\xfd\x62\xac\x9c\x01\xe8\xb9\x34\xcd\x82\xf3\xab\xf0\xe7\xcc\xca\xa7\x38\x4d\xb0\xee\x59\x1c\x27\x66\x50\x9f\xea\x9e\xd5\xc2\x57\xf0\x24\x14\xc7\xf0\x06\xf9\x35\xf4\xfa\xbf\x66\x27\x07\x75\xf0\xb9\xbe\x98\x1e\x37\x07\x16\xce\x41\x0f\x47\xd1\x98\xe7\xff\x48\x99\x77\xbf\x9c\xcf\x31\xdc\xb4\x58\xed\x30\x5a\x80\x05\x96\xef\x41\xb5\xf8\xdd\x7b\x4d\x98\x4d\x27\x90\x5b\xb2\x39\x4b\x61\x5e\x4e\xa9\x9f\xee\xa6\xe6\x26\x77\x76\xcb\x99\x73\x98\x63\xa0\x6c\x78\x1b\xe6\xea\x62\x28\xae\x12\xf2\xae\xa7\x6b\x07\xd7\x08\xc8\xfa\x60\xa5\xee\xa3\x89\xe1\x04\x42\x08\xa8\x6f\x7f\x13\x4c\xef\x3e\x8b\xce\x06\x2d\x58\xc4\xdf\xa6\x85\xd2\x09\xdc\xec\x0d\x58\x5c\x3b\xf4\x42\x60\x35\x17\xd9\xb8\xff\xf6\x69\x63\x28\x77\x7b\x50\xa4\xb6\x07\xe8\x6f\x96\x73\xf0\xef\x8e\x3d\x07\x1d\xfc\x99\x05\xbd\x4f\xa0\x4c\xe0\x09\xff\xa2\x5d\xf7\xfb\xe3\xa0\xf6\xcb\x81\x2d\x7d\xd1\xd9\xd5\xf8\xbd\x5f\x04\x78\x14\x3b\x7b\x50\xb9\xf5\xbf\xdd\x72\x8e\x03\x91\xb0\xc5\x50\x24\x3b\x21\xcb\xe7\x35\x37\xf1\xa6\x0a\x21\x4c\x44\x75\x80\x38\x41\x7e\x76\xc5\x18\xfe\x77\x13\x7a\x23\x79\x19\x20\xb1\x53\x99\x06\x87\x33\xc9\x49\xa8\xf1\x82\xd7\xc0\x66\x58\x7f\x65\x2f\x36\x2a\x50\x76\xa8\x58\xfc\x29\x4e\x42\x41\xe7\x30\xc7\x71\x8a\x82\x6d\x7f\xbf\x9f\xd1\x95\xb7\xb6\xc3\x19\x8c\xc5\xcd\x91\x56\x03\xd4\xfb\x1a\x63\x37\x15\xdb\x19\x4d\x00\xcc\x3e\xdd\x79\x8e\x71\x21\xed\x1d\x0c\xd0\x07\x2c\xfe\x82\xa3\x57\x19\x59\x4c\x2e\xf7\xce\xe1\x55\x76\xcb\x05\xcd\xd3\x18\x93\x97\x2d\x7e\xfb\xce\x42\x63\xfc\x41\xcd\x25\x4c\x29\x7d\x11\x47\xcd\xbf\x0a\xc9\xd6\x61\x05\xda\x1c\x8c\x85\x72\x9f\xd4\xd9\x18\x0f\x53\xb4\x67\xf2\x8a\xa6\x7a\xfa\x7a\x63\x20\x68\x01\xd7\x7f\xc3\x00\xec\xa6\xaf\xc8\x0c\x28\x84\xb2\x6f\x57\x44\xa5\xf4\x1b\xb9\xbc\x72\xd2\x24\xd3\xc7\x8d\x9e\x7e\xe8\xce\x6d\x3e\x14\x2e\xe5\x2b\x8c\x0d\x61\x71\xed\xf5\x83\x67\x54\x1c\x5c\x50\x45\x57\x66\xdc\x90\xb5\xf5\x3d\x14\xd7\xe4\x4f\x23\x0b\xfc\x94\x8d\x45\x10\x81\x8c\xb3\xb9\x4a\x8c\x8a\x7a\x41\xd5\x88\x82\x9c\xca\xa3\x2e\xef\xf3\x9c\x0d\x3a\x63\x21\x23\x33\xcc\x70\xe0\x20\xe6\xfa\xa0\x0c\xfc\x98\xeb\x23\xe5\x54\x28\xbe\xcd\xdf\xd3\xb9\x5d\xec\xd9\x56\x68\x24\xcc\x9e\x02\x12\x8d\xd9\x49\x50\x76\x25\xc5\x59\x4b\x6a\x3a\x69\x18\xe7\x4a\xe9\x22\x87\xfe\x77\x46\x5f\xf1\xdc\x8a\x29\x88\xf1\xca\xf3\x1f\xe5\x59\x86\xb1\xd1\x63\x24\x6e\x31\xa6\x54\xbc\xc0\x4d\x28\x98\x28\x70\x63\x7b\xf2\x26\x2a\x9c\xe1\x78\x63\x0c\x83\xfb\x9d\x25\x81\xe3\x75\x31\x76\xab\xb4\x4f\x6a\xa0\xa5\x04\xd0\xe8\x89\x66\xb6\xf5\x09\xe9\xec\x0b\xe0\x5f\xe4\x8e\x4e\x16\xbe\x01\x88\x59\x28\x71\xb2\xdb\x41\x66\x6c\x5c\x20\x26\x2e\x7c\x42\x64\xa3\xe2\x7f\xc5\xe6\xa7\xc5\xa6\x77\x85\xf3\x0b\xea\xd0\x75\xac\x2c\x4c\x2d\x7c\x36\x13\x08\x73\xa4\xb3\xea\x84\x4f\x5e\x53\x99\xc8\x05\xbd\x38\x15\x22\x0c\xf0\x06\xe8\x21\x91\x98\xa3\xf2\xe8\x9c\xb1\xc4\xc8\xea\x0b\xaa\x46\xf4\x83\xd4\xc1\x5d\xde\x67\xac\x7e\x90\xb0\x78\xe3\xe4\xee\x99\x7a\x04\x13\x9a\xa8\x38\x4e\x2e\x96\x26\x93\xd3\x3b\x49\x45\xd0\xb9\xd2\x99\x72\x88\x75\x46\xaf\x29\xa4\x9a\x20\xa7\x01\x99\x5e\xcc\x56\xf3\x70\x08\x9f\x00\x5e\xb3\x32\x18\x5b\xd1\xb0\xbb\x3f\xa7\x4a\x48\x61\xa0\x5b\x0b\x2b\x06\xb4\x94\x88\x7b\x26\x20\x3a\x85\xbf\xfa\x95\x40\x65\x28\xd4\x90\xdd\x64\xe0\x95\x80\xfa\x78\x10\x5b\xbc\xfb\x4a\xa0\x3e\x08\xbe\x12\x78\x22\x96\x5f\xf8\x95\xc0\x33\xb7\x3c\xda\xc8\x5c\xac\x8e\x2c\xd4\x04\x95\x18\x7f\x36\xfa\x7a\x6e\x82\x1a\xcd\x63\x0b\x32\xf2\x4a\x40\x28\x64\x6b\xef\xe8\xdb\x31\xfe\xc4\xaf\x04\x04\xe1\x9e\x97\x50\xfd\x0e\xb6\x23\x6d\x3a\xaf\x04\xb6\x86\x34\x44\x35\xf1\xd3\x01\x41\x70\x5e\x09\xac\xf9\x36\x82\x02\x37\xea\xbc\x12\x18\x8a\x15\xf9\x88\x2c\xd5\xf0\x7b\x04\x61\xfd\x1c\x78\x25\x50\xaf\xa3\x7f\xf1\x2b\x81\xce\x83\x67\x5c\xb8\x5b\x8b\x1f\x78\x04\x15\x71\xab\xb4\x91\x45\xa8\x50\xb2\xf9\x0f\x5e\x59\xb3\x6c\xa6\x92\x8c\x0b\x2d\xde\xe8\xf3\x77\xd8\x96\xaf\xef\xda\xb0\xc5\x19\x17\x12\x23\x2d\x6c\x5c\x68\x13\x3b\x35\x34\x5e\xde\x33\x12\xd4\x50\x22\x1e\x05\x6f\x39\xd6\xe9\x32\x4a\x32\x4a\x7c\xfb\xee\x0e\x1b\x0d\x92\xf6\x4a\x7c\xcd\xf9\x6e\xde\x71\x27\x43\x22\xc6\x6c\xa1\x5e\x15\x5e\xb8\x03\xc0\x6a\x61\x23\xc0\xf3\x5f\x05\x50\x3f\xa1\x57\x06\x30\x5f\x23\xa5\x57\xe6\xdf\x0c\x1e\xd9\x1d\xf3\x03\xa5\xc9\x2b\xea\x4a\x36\x35\xa1\xb5\x1a\xe1\xd7\x03\xd8\xba\x5f\x91\x3c\x2b\x7f\xbe\xbc\x57\xee\x96\x8a\x52\x5f\x6a\xca\xdd\xb1\xa3\x48\x12\xa7\xd4\x4f\x9a\xf2\xc2\xd7\xf3\x92\xa0\x3d\xa1\x6f\xfe\xb9\x33\x96\xfa\xdc\x48\x12\x80\xee\x06\xfc\x53\x7d\x29\xf4\x24\x41\xb4\xf8\x27\x8d\x94\xb7\x3d\xfc\x0a\x33\xa3\xb3\xe1\xd7\x6b\x1e\xcf\xef\x60\x34\x12\x6c\xe8\x7f\x28\x3f\xb7\x56\x59\x01\xbf\x2e\x78\x97\xde\xeb\x27\xe8\xf7\x7d\xa4\x48\xc2\xa2\x3a\x1c\x40\x1b\x02\x0f\x6d\xdc\x17\xea\x27\x18\xc9\xb2\x75\x40\xbf\x21\xed\x69\xe6\xe5\xf9\xf3\x37\x54\xa0\xfd\x3c\x07\x8b\xc5\x6b\xff\xd5\xfb\xed\xf4\x23\xbf\xfb\xfd\xf5\x6c\x29\xe7\xfc\x46\xfd\xce\xf9\x87\x0e\xdd\xff\x11\xf7\xb3\x54\x15\xa9\xc7\x3d\xa1\xbe\x9c\xb4\xf1\x0c\xf0\xe1\xa4\x89\xd2\x36\x0b\xbf\x6b\x47\x17\xae\xf2\x12\x60\xca\x33\xd2\x6c\x77\x7e\x60\x5e\x9a\x83\xe1\xc7\x43\xd5\x35\x1e\x75\x26\xaf\x36\xd8\xcf\x07\x05\xfc\x67\xb7\x71\xca\x35\x89\x51\x27\xcc\x41\x2d\xc6\x78\xb4\x66\xf7\xef\x68\x82\xa8\x1d\xe3\x8c\x47\xed\x30\xa1\xc9\x4e\x3d\xa1\x0e\x63\x85\x3f\x01\x6f\xde\x8f\x85\xe6\x47\xe7\x25\x8e\xd7\x0c\xd1\x76\x9a\x6f\x62\x93\x71\xc5\xa7\xc7\x98\x9f\x1e\x7f\xcf\xf9\xe5\x14\xe7\xa9\x84\x5f\xaf\x89\x8c\x28\xbd\x6f\x1b\x59\x86\xfa\xdf\x02\x02\xac\xe9\xd7\x87\x75\xdf\xc6\x16\xad\xee\xb7\x01\xf9\x75\xc9\xfb\x16\x0d\x7e\xca\xb7\x54\x6c\xf4\x2b\xf0\xb8\x1d\x05\x03\xe7\x7e\x1b\x00\x4f\x93\xf7\xbf\x6d\xc8\x97\x24\xef\x5b\xc0\x10\xfa\xf5\xa1\xbf\x31\x2f\x76\xfc\x6f\x03\xf2\xeb\x6b\xef\x1b\xfa\xcb\xf2\x6d\xa1\x06\x7c\x71\x35\xcd\xb7\xde\x74\x5e\xa8\xa1\xc5\x34\x51\x84\x15\xdf\xd8\xf3\xaa\x21\xbc\xf1\xcd\xe5\x78\xf2\xd4\xfa\x98\x8e\xab\x47\xb9\x26\x1f\x3b\xe8\xe5\x54\x63\x04\xb8\x14\x3e\xb0\x01\x29\x32\x1c\x85\x55\xdb\x41\x06\xb4\xb5\xd4\xb6\xd2\xf2\x87\x93\xf1\x3c\x37\x6b\xd4\xdf\xf9\xba\x8c\xf2\x9e\xf9\xe6\x88\x9f\xf1\xc2\x92\x6f\xb6\xd2\xea\x36\x66\xf9\x62\x56\x6e\xcc\x37\xb3\xed\xe3\xbb\xfa\x34\xd8\x4c\x44\xc1\xd4\x87\x42\x4b\xcd\x57\xbb\xb3\x7c\xf5\xd8\x36\x84\x06\xdf\xa8\x20\xe3\xd6\x2c\x82\x79\x62\x0b\x1b\x6c\x24\xab\x78\x46\xb3\x1b\xf4\x4a\x46\xe6\x05\x93\x6f\xae\xd1\xef\x16\xdf\xe8\xa0\x31\x76\x71\x3d\x3c\x56\x6c\x04\xfd\x4b\xaf\x2e\xbe\xf6\x72\xdd\xb7\xe8\xd4\x2b\xd9\xec\x6f\xac\xc6\x2f\xb8\x94\x4e\xb8\x85\xa6\x0c\xcf\xf2\xb4\x3d\x1f\xea\x37\x07\xfd\xce\xcd\xed\x16\x5d\x51\x46\xcd\x48\xff\x20\x17\x98\xdb\x2d\x15\x26\x04\xef\xb0\x62\x2c\x09\x23\x67\xd6\x91\x80\x69\x74\x94\x6c\xfc\x77\xd4\xc4\x8d\xed\x7f\x26\xf9\x02\x07\xf4\x5a\xdf\x32\x8e\x6d\x0b\x3c\x7d\x36\xb7\x58\xd5\xb9\x59\x98\x9b\xcd\xcd\xd6\x9a\xeb\x24\xa2\x49\x6c\x46\xb4\xe6\xfc\xf8\x8a\xff\xf8\xfd\xb6\xb8\xff\x1e\x93\x9c\xb8\xe5\xbb\x71\x6c\xcd\x8a\xfb\x2b\xb2\x3b\x66\x6f\xf6\xa2\xc5\xfe\x8c\x4b\x54\x98\x12\x18\x2f\x68\x7b\xcf\x28\xe8\x38\x41\x9f\x7f\xc6\xe1\x5e\x3f\x93\xe9\xf7\xa3\x8c\xc7\xcc\xa3\x4b\x1e\x07\x44\x49\x4c\x70\xd1\x4c\x47\xc1\x75\x52\xf7\xd1\xc4\x70\x02\x0b\x9a\x1f\xff\xf9\x33\xd0\xf1\x8d\xa6\x6f\x36\x31\x14\x14\xba\x63\xdb\xeb\xc6\x16\xc7\x4c\xf6\x49\x3c\xb8\x85\x37\x9f\x97\xfa\xab\x79\xa0\xf5\x73\x67\xca\x9f\x0d\x6f\xcd\xe0\xb7\xbb\x33\x6b\xfe\xfe\xed\x9a\xb4\x32\x67\x64\xfd\x0c\x05\xcd\xf9\x23\x5c\x14\x03\x11\x6c\x1c\x2d\x72\x56\x29\x6c\x97\x0d\xea\xbf\x5b\x06\x55\x24\xef\x96\x43\xeb\x94\x9c\x67\x79\x47\x25\x7f\x04\x6c\x11\x9c\xb2\x4e\xac\x73\x6a\x95\xc6\x38\x21\xdf\x4d\x0d\xaf\x03\x6f\xed\x2f\xcc\x93\x3e\x8f\x1e\x85\x39\xa6\xf2\xbf\xfd\xf6\x9d\x91\xe4\x96\xde\xe9\xaf\xfb\x9d\x4e\x8c\xf0\xf2\x59\xe4\xb9\xe1\x3b\x23\x29\xda\xb6\xf5\x6a\xa2\x67\xf7\x84\x55\x5c\x51\x8e\xdd\x53\x8a\x24\x67\xff\x81\xa6\x89\x9a\x00\xf3\xd9\x43\xfa\x35\xce\x0a\xcd\x44\x64\x42\xbd\x42\x64\x9e\x98\x98\xfa\x03\xf9\xb1\x7c\x7d\xa5\xa9\xe7\x07\x79\xfa\x4d\x8a\x7f\xf3\x1c\x66\x00\x1f\x02\xa0\x7e\x47\xc5\xff\x96\xfd\x76\x65\xbc\x4e\xdf\xc9\x85\x76\xf6\xdb\xf7\xa4\x3c\x06\xeb\x01\xc9\xb2\xdd\x5f\x05\x1b\x26\xc7\x48\x24\x87\x4a\xf9\x1e\xa9\x46\x65\x86\x80\xa7\xa9\x32\x7d\x0c\x45\x14\x30\xd5\x87\xf4\xb6\x1c\x1c\x46\x34\x9b\x85\x2a\x6f\x91\x26\x09\x82\x12\xbb\xaa\xf7\xf4\x3e\xb1\x8d\xc0\x93\x7b\x27\x60\xb8\xcb\x6f\x40\xbc\xdd\x3a\x61\x26\x29\xde\x13\x62\x34\x6e\xc8\x4c\xb7\x12\x71\x26\x94\x5e\x8f\x8a\x36\xf9\x09\x48\xbd\xe8\xda\xc1\xaa\x34\x8f\x0c\xb3\x3e\x58\xdc\x9b\x38\x86\x11\x8a\xef\x15\x76\x4a\x94\xf5\xa3\x82\xf9\xd6\x44\xd9\x6c\x54\x3e\x53\xa7\xbd\x6c\x7e\x17\x84\xc2\xeb\xd7\x61\x70\x51\x6f\x48\x61\x89\x93\xaa\x11\x78\xa2\x8c\x1e\xf4\xe5\x08\xce\x7e\x4b\x84\xff\x17\x66\xcc\x7d\xe8\x13\xfb\x70\x25\xf9\x39\x8f\xff\x32\x84\x52\xa2\xb0\x0b\x50\xe6\x2b\x80\x88\xd9\xfd\x35\x46\x6c\x8c\x61\x7f\x6a\x69\xaf\x8f\xe9\xee\x66\x09\xb3\xb2\x41\x33\xc3\x9a\x7b\x6a\xa0\x57\xd8\x77\x10\xfb\x55\x8c\xa7\x49\x06\x14\x4d\x6a\x8c\xc8\xb2\x08\x47\x97\xf1\x5e\x0d\xb9\x20\x20\x97\x6f\x0e\xb1\xd3\xb9\x48\xd5\x60\x67\x05\x52\xc3\x8e\x5c\xb2\x91\x67\x2e\x41\x0f\x4c\x18\xd9\x74\x6c\xee\x30\xf6\x03\xd7\x0f\xe8\xea\xa1\x10\x73\xfd\x10\x7d\x6e\x12\x5b\x86\xe9\x9b\x88\x31\xcd\x49\x7e\xbc\x22\x79\xde\x02\xc9\x05\x54\x41\x4f\x56\xba\xef\x39\x18\x73\x08\x4c\xc5\x5e\x9a\x07\xfd\x06\xa6\x59\x43\xaa\x8e\x17\x41\xd2\x2d\xf7\x83\x6c\x4b\x88\x27\x36\x50\x61\xb5\xe5\xb7\x88\xff\x1e\xaf\x2c\x51\xf3\x02\x7b\x8c\x70\xc4\x59\xb7\x68\xe8\x39\x60\x74\xad\x04\x83\x7a\x3a\x47\xb4\x21\xe8\x1d\xef\x55\xc1\xa6\xa8\x38\x6f\x31\xae\x70\x2f\x6a\x2f\x83\xbd\x19\xfe\x0c\x44\xa1\x0e\x57\x27\x1e\x0f\xd9\x9e\xe1\x18\xb3\xeb\xdf\x28\xfa\xdf\xb1\xe0\x30\x50\x13\xe2\x33\x41\xce\x4f\xdf\xa0\x39\x7c\x16\xe3\x22\x4a\xde\xc1\xf0\xc1\xec\xd0\x88\xe1\x17\x39\xbe\x93\x2a\xdf\xf6\xe8\x2a\x77\xeb\x7c\x20\x5b\x26\x4a\x0b\x0d\x3d\x1c\x0c\x05\x23\xc4\xbd\x86\x1f\x69\xce\xe2\x02\xe6\x5b\x47\x6d\x79\x03\xb2\x76\x63\x1d\x0f\xc9\x08\x8b\x71\x1b\xe5\xf0\x8c\x2c\xa3\x1e\xf1\x82\x16\x1b\x03\xff\x3a\x3a\xd5\xf1\xf1\xf2\x29\x92\x0b\x44\x14\xa7\xa8\x27\x1b\xcd\x20\xb6\xaa\x34\xf2\xce\x00\x33\xe8\x45\x3a\x11\xca\x60\x51\xca\xcd\x74\x0c\x28\x0c\x10\x3d\xca\x3f\x07\xc6\xdb\xc5\x66\x6a\xb8\x6e\xa6\xaf\xe3\x8b\xa1\x05\x76\x4e\x31\x14\x2f\x3c\xbd\x9c\xb9\xf5\xfa\x8c\x86\x91\x0c\x93\x8a\x13\x9a\xd9\xf5\x1f\x4a\x9c\xf0\xdd\x96\x69\x1b\x07\x1c\xf3\x95\x22\x6d\xd6\x9a\x28\x7e\xa3\xc8\xfc\xb6\xec\xb0\xf5\xb8\xd8\x8f\x8c\x50\x9c\x4c\xe0\x48\xc0\xeb\xd7\xf3\xc2\x88\x7f\xf3\x75\x39\xd7\xf7\x61\xd1\x8f\x22\x1e\x5e\x21\x88\x9d\xd3\x3c\xf2\xeb\xa3\xd5\xd2\x28\xbb\xa2\x19\x05\xfd\x52\xd8\xb3\x74\x60\xcf\x4b\xc6\x01\x34\x75\x1a\x29\xf1\x44\xa9\x2b\xdf\xc8\x69\x5a\xc4\x2b\xdb\x45\x4d\xdc\xce\x8e\xa0\xd0\x3f\x33\xe8\x2d\xa1\x8e\xf7\x00\xfe\xec\x1a\x0c\x93\x98\x22\x65\x67\xe3\xb8\x32\xf5\xbc\xc9\xb1\x58\x1e\x10\x8c\xbe\xd7\x5e\xcd\xdd\xc1\x0c\xf5\xee\x30\x02\x3a\x3f\xce\x41\x7c\x36\xd6\xe7\x20\xb3\xdf\xad\xbe\xdf\xc3\xaa\xfc\x99\x2e\x11\xc2\x4c\x3e\xa9\x39\xa6\x13\xb5\x24\x40\x1c\x5d\x94\x79\x6e\x89\xf4\x4c\x2a\xed\xd5\x13\x86\x11\xee\xe6\x20\xe0\x06\x61\x99\xca\x8c\x57\xda\xa8\x42\x9e\xf1\x4a\x2e\x85\x33\xa2\x7f\x43\xc1\x9a\x13\x05\x19\xe1\xa2\x6c\x62\xf2\xb8\x67\x52\x36\xe2\x9a\x09\xf9\xd4\xeb\x17\x56\xbe\x1b\x25\x36\x4c\x4a\x11\xa0\xdc\x8c\x08\x38\x5e\x46\x04\x10\x37\x27\x0a\x82\x93\x43\xa2\xcf\xfa\x6b\x3f\x28\x9d\x68\x77\xbb\x01\xf1\x44\x13\x61\x02\x5e\x53\x30\x13\x37\xf2\xd8\x71\x20\x68\x2f\x70\xc2\x1e\x88\x44\x7c\xa2\x02\x06\x87\x40\x86\x0f\x4a\xad\xa1\x2c\x2b\x08\x3d\xc5\xe9\x3f\x21\x8b\x38\x8f\xc6\x62\x6a\x79\x1e\x13\xb1\xb6\xe9\x90\x3c\xc6\xb3\x57\x93\x30\xc2\xfd\x0f\xba\x32\xe5\x76\x99\xb4\x43\x41\x86\x27\x83\x52\xa3\xb1\x56\xcd\x2c\x43\xfe\x8e\x6d\x93\x18\x69\x60\x4c\x39\xba\x93\xe3\xab\x1d\xc8\x26\xbc\x1d\x0d\x46\x2f\x0d\xa0\x92\xe8\x19\x64\x14\xe1\x9d\x47\x20\x16\x34\x29\x72\x46\xcb\x64\xa7\x63\x52\x65\xc3\xbb\x7f\x1b\x10\x49\xa2\xf2\xcf\x5e\xf5\xe9\xfa\x06\x7d\x47\x94\xec\xe0\xe6\x0b\x3b\x25\xf1\xb7\xca\x71\x8e\x77\x27\xe8\x90\x90\x99\x48\xc7\x05\x0e\x45\xa3\xc6\x2b\x83\xe1\x08\x97\x49\xb6\x3e\x4f\xf7\xf4\x99\xab\xfc\x6d\x09\x8b\x73\x3f\x25\x7e\x97\x10\xd6\xe2\xbf\x7e\x83\xfc\xd5\xe7\x20\x31\x93\xea\x2c\x8d\xeb\x98\x5c\xe7\x90\xeb\xa7\x7f\xdb\xf2\x07\x29\x15\x38\x16\x72\x23\x68\x57\xd0\xe9\x38\xa5\x90\x9c\x85\x16\xca\x81\x8b\xd3\x5b\x0c\xa8\x48\xc6\x6f\xf4\x83\x4e\x45\x47\x67\x95\x89\x38\xea\x61\x95\x22\x1b\x7d\xb2\x3e\xce\xf2\xc6\x82\x57\x28\xc5\xd6\x7c\xb7\x2b\xce\xf2\xba\xa1\x55\x63\x06\x79\x7d\xf7\xb6\x17\xfe\x13\xca\xca\xaf\x9e\x8c\x90\xbb\x58\x6b\x0b\xc9\x07\xd6\x8a\xf5\x97\x4b\x36\x06\xa9\x0e\x03\x70\x4f\x35\x6f\x4e\xde\x79\xaa\x9b\xf2\x4e\x06\xfc\x6b\x3e\x79\xdc\xda\x5e\xab\xa0\xac\x59\x9b\x0d\xc2\x11\xde\xf8\x7e\x8f\x6e\x63\x99\xde\x6e\x3c\x65\xe6\x26\x17\xf0\xcb\x03\x12\x48\xfb\x1b\xe2\x5d\x57\x19\x74\x92\xe5\x9a\x24\x47\x92\x83\x6b\x10\x47\x74\xa5\xd6\xe1\x55\xd0\xa3\xf6\xd9\xc7\x63\x5f\x31\x8b\x71\x53\x43\x1b\xe7\xc7\x15\x89\x93\x87\x71\x15\x2e\xd1\x6d\xff\xf8\xaf\xad\x3e\x37\xa7\x57\xe8\xc5\xf2\x15\xcc\x9a\xae\x3f\x5f\x4d\x9f\xe7\x57\x7f\xf3\xe3\x57\x94\x4b\x65\xc0\xed\xcf\x44\x02\xa3\xd4\x80\xf2\x6d\xd1\xc7\xf2\x1f\xf1\xed\x7b\x93\x5b\x2e\x55\x2e\x69\x3f\x97\xbd\xcd\x51\x4a\xd2\x19\x1d\x54\xab\xf9\x8b\x3a\x28\xde\xe6\x1c\x7c\x9d\xd9\x41\xae\x9a\xcf\x5e\xd2\x43\x3e\x7b\x9b\x27\x33\x80\x83\xd8\xa4\x4c\x26\xad\xd6\x04\x37\xd2\x7f\x5d\x4c\xd1\xff\x2e\x3b\xd4\x62\x88\x6c\x5f\xd4\x53\xfe\xd2\xa2\x00\xb9\x2e\xb7\x93\x1f\xc7\x87\x85\x67\xa8\x31\xf7\x96\xd8\x69\xf3\x3a\x31\xd7\x41\xdd\x05\x3d\x26\x2f\xe5\xb8\x81\x61\x43\xe7\x5f\x1c\x58\xb0\xb1\x3f\x19\x72\xef\xfa\x3d\xa0\xc7\x3b\x57\xa0\xe4\x29\xff\xb7\x9f\xe1\xb3\xc9\xf8\xf7\x56\x71\xf8\xa7\x1f\x72\x25\x97\xf9\x53\xc6\xeb\xf4\x74\x9e\x1e\xe0\xa2\x24\xb5\xf4\xcf\xe8\xbb\x8d\x42\x72\x77\xee\xb0\xc8\x51\x06\xde\x5b\x78\x32\x26\xba\xdb\x76\x4a\x61\x85\x80\x51\xcc\xc1\x38\x56\x50\x18\x92\xfc\xb7\xdf\x58\x05\xc8\x2d\x86\x93\x4a\xbf\x90\x09\x3d\xd1\x65\x3f\xdc\x0d\x11\x2e\x95\x13\x52\x8e\x58\xce\xc0\xd0\x5d\x17\x43\xa7\x67\x5c\xb7\x31\xae\x2c\x3d\xd6\xe4\x58\xb1\x30\xd4\x2f\xef\xf8\x81\x39\x6e\x72\x31\xe1\x80\x89\xed\x71\xa2\xd7\x09\xc1\x59\x74\x5a\x60\x90\x41\x00\x87\x81\x9d\x0c\x7e\x89\x4c\x2b\x76\xa5\x72\xa5\x14\xdc\x37\x50\x29\xee\x39\x5c\x08\x56\x87\x7e\x02\xdd\x5c\xb3\xca\x39\x94\x1a\x84\x87\xba\x8c\x4c\x6a\x1c\xe3\x23\xb1\x55\x82\x31\x67\x46\x6f\xf4\x37\xfd\xf9\xb0\xa7\x63\xd9\x38\x34\x1e\xa8\x7c\x45\x83\x42\x18\x18\xb9\x36\xba\xf2\x4f\x4b\x2e\xae\x19\x58\x6b\xb7\x4e\x10\xf4\x0b\x5b\x61\x9e\xa2\x25\xaf\xa5\x7f\x13\x95\xf7\x52\xc5\x8a\x35\x86\x2f\xd3\xaa\x52\x1a\xff\x45\x95\x2a\xad\xf5\x5f\xd4\xa7\x52\x9a\x67\x29\x53\x5b\x90\x7f\xe6\x8e\x92\x8f\xbe\x26\x9c\xcf\x97\xf2\x59\xae\x5c\xf2\x57\x36\x95\xe2\x6d\x10\xdc\x78\x9c\xe1\x76\xa2\x96\x03\xc1\x72\x21\x68\xaf\x93\x32\x99\xeb\xdf\xb3\x30\x8c\x74\xed\x06\x1d\xff\x53\x4c\x30\xcf\x39\xfc\xf3\xfc\xab\x32\x34\xc8\xa0\x69\x82\x87\xec\x02\xc6\x66\xa5\x44\xdf\xa3\xf8\xc1\xa3\x3c\xff\x0f\xa1\xad\xd9\x15\x9d\x91\x0d\xea\x0c\x69\xef\x24\xe3\xa6\x8d\x7d\x66\x76\x75\x43\x81\x15\x08\x63\xe6\x5d\x57\x30\xe6\xc1\x61\xb0\x8e\x18\xc2\x61\x03\x35\xca\x6c\x23\x18\xf9\xcf\x1b\x2c\x57\xcc\x73\xd9\x6a\x31\x4f\xee\xe9\xa8\x2f\x1a\x33\x2c\xa9\x94\x48\x0e\xff\x0c\xde\xdc\xfb\x67\xa5\x71\x44\x97\x70\xd3\x9f\xe2\x97\x35\x2c\xca\xbf\x78\x60\x11\x40\x3f\x37\xbe\xc0\xa2\xfa\x73\x26\x89\xd4\xcb\xdf\xe6\x93\xc6\x45\x30\x1b\x7b\xba\xca\x9c\x00\x22\xec\x1c\xfc\xb2\x5a\x89\xa5\x63\x27\x02\x21\x89\xd4\x17\xb3\x6e\x59\x0d\x3a\xe4\x10\xba\xeb\x65\x77\x1d\xb1\x99\xa2\xee\x37\x48\xc7\xf1\x47\xa0\xcc\xfb\xa4\xc0\xb1\x7d\x30\xa2\x52\xf8\xf2\x99\xf9\xa4\x33\x72\x4c\xeb\x1d\x63\xe6\xe3\x8d\x2b\x22\x61\xa3\xc2\xaf\xdd\xd9\x5d\x79\x4d\x13\x25\x73\x63\x4d\xe7\xd8\xb6\xd3\x23\x3b\xe2\x25\xdb\x3f\xcd\x89\x2b\xe1\x1c\xe6\xe0\x35\x55\xa0\xaf\xf7\x92\xda\xc5\xd7\x83\xc5\x48\x69\x6f\x11\xa4\x83\x93\x5a\xd4\x81\x2b\xed\xfd\x44\xe2\xe8\x63\xfd\x3b\x53\xce\x0b\x9c\x91\x90\x86\x8b\xfe\xd2\xbb\xb9\x2d\x39\xc7\x15\x4e\xc8\x43\x3a\xc1\x8f\x44\xe9\x1f\xb8\xfa\x8b\xce\x4f\x63\x3e\x7e\x77\xf6\x44\x68\xb9\xd2\xc7\xd4\xee\x5b\xe4\x6f\xe9\x13\x7a\xe1\x88\x98\x02\x8b\xba\x33\xff\xd2\x21\x47\x5e\x87\xfc\xee\x0e\x01\x24\xb4\x09\xb4\x5f\xf2\x1e\x6f\x9c\x51\x24\xfa\xd6\x04\x16\x0d\x79\x55\x02\x9b\xbc\xe3\x33\x7a\xdf\xb3\x30\x9f\x21\xf1\xfb\x19\x45\x12\xa6\xc3\x7d\x26\x0d\x3a\x30\xfc\x8f\xc6\x4e\x00\x53\x4e\x61\x62\xb7\x8f\x27\xcf\x4d\x22\xe8\xb9\x75\xd9\x6d\x78\xfe\xdc\xcb\xb2\xd4\x75\x19\x2a\xc8\x3a\x6b\xfd\x2f\x17\x2b\x6b\xfd\x7d\xf1\x3a\xdd\xea\xfb\xab\x00\x02\x7f\x2e\x5e\xad\x6d\x7c\x98\x49\xc6\x65\x17\xa4\xfd\x71\xb0\xe2\xab\x14\x4a\x31\xe1\x27\x9d\x0c\x50\xa2\xff\x8d\x60\xc1\xbc\x96\x1c\x3a\x85\x4e\x85\xa8\xed\x6a\xb8\x00\x9d\x15\xaa\xe3\x16\x8d\x14\x08\x66\xd1\x7b\xc3\x5c\xb9\x7a\xed\xfe\x77\x5b\x8e\x59\xd2\xa4\xd6\xe7\xec\x19\xdd\xc6\xb0\x10\x0c\x1a\x2c\x46\xf7\x86\x21\xff\x96\x61\xb9\x47\x14\x6f\x7d\x8e\x05\x52\x60\x80\x5e\x56\xac\x80\x2a\xc4\x08\xa8\x90\x39\x27\x79\xd7\x80\x5e\xe9\xa3\x21\x47\x20\x0c\x81\xe5\x95\xc6\xa2\xf8\x0c\xeb\xd7\x5b\xfd\xf5\xd5\x7a\xbd\x8e\x26\x25\x4c\x9e\x5b\x80\x9a\xba\xbf\x56\x17\x85\x69\xa1\x12\x77\x77\x89\x2b\x84\x7d\xec\x96\x16\xa5\x10\x0b\xd1\xb3\x33\x6e\xc6\x31\xe0\xfb\xe1\x5f\xd9\xb3\x32\xa8\x1b\xfd\xb8\xce\x59\x27\xde\x69\xfd\x39\x07\xf6\xd1\x11\x52\x2a\xab\xdb\x1b\xae\x16\xd9\xe1\x7d\xa2\xbb\x88\x5a\x43\xb9\x72\xcc\x2f\xf2\xb1\xb5\xe3\x94\x30\xaf\xfa\x5c\x5b\x68\x8b\xd0\xa3\x2d\x7a\x73\x1b\xd6\xb1\xbc\x52\x04\x09\x41\xe7\xb2\x8c\x43\xa9\xef\xe1\x03\xa2\x90\xbe\x49\xb9\x0f\x0d\x2f\x23\xdf\x00\x23\x04\x89\x9f\xf1\x83\x6a\xe4\x1c\x63\xaa\x73\xec\xa5\x98\xb0\xa0\x1e\xa2\xa0\xfc\xf0\xd3\xc3\xe6\x20\x11\x48\x42\xe0\x7d\x02\x12\x62\xa5\x82\x7b\x8c\x9e\x8e\x53\x9c\xcc\x07\xe9\x2c\xeb\x73\x6c\x6c\xed\x6f\x34\xe8\x2b\xa6\x6c\xc4\x46\x33\x0e\x86\x4c\x94\x1f\xa4\x41\x12\xb4\x5b\x77\x0d\x8c\x71\x7f\xc7\x9d\x3d\x7d\x9d\x53\x68\xf6\x4c\xe8\x30\xdc\x8e\xc5\x21\x79\x9d\x13\xd4\xc5\xa8\xeb\x06\x97\xa3\x56\x92\x4c\x37\x82\xe7\x12\xd1\xf1\x3a\x90\x04\xfa\x0f\xcc\x22\x09\xe3\x1e\x3e\xb1\x24\x4f\x76\x9c\xca\xcc\x1b\xb1\x40\x09\xf6\x05\xdc\x39\xe0\x86\x3a\x0e\xb5\xe7\xe8\x3e\xe4\xda\x08\x2f\x4e\x10\x71\xdf\xc8\x27\x9e\x7c\xf4\xe9\xc0\x77\x49\xaf\x74\x5f\xb1\xf7\xa1\x11\x93\x00\xd0\x92\x63\x2f\x53\xa2\x46\x03\x81\x89\xbd\x09\x5d\x25\xf9\x73\x9b\x0c\x8a\x87\xd0\x00\x91\xe4\xa3\x0d\x05\x2f\xa4\x62\xdb\xfb\x79\x81\x01\x02\x7b\x6a\x12\x8c\x74\x3e\x41\xca\x9f\x00\x20\xf6\x12\x8c\x8d\x2b\x06\x14\xc5\x6f\x17\xb4\xe7\x11\xc3\xf9\xb3\xe9\xd3\x91\x77\xe4\x4e\x49\x72\x2f\xe9\xd2\xfb\x80\x3f\x7e\xad\xfa\x9f\x6d\x41\x13\xb4\xe1\x8b\x38\x34\x08\x32\x9e\x44\x3c\x45\x4e\xc5\xc2\x23\x89\xf1\x61\xc7\xbc\x6a\x64\xdd\x83\xba\xc2\x82\x4e\xba\x04\xfa\x73\x43\xc2\x27\x8e\x92\xe8\x45\xfe\x3f\x89\xd4\x71\x15\x2a\x1c\x8e\xd6\xee\x19\xb3\x13\x59\x4d\xec\x8e\x02\xcf\x04\x32\x57\x28\x52\x52\xf8\x6a\x2a\x0e\xb8\xab\xc8\x43\x9f\x33\xc0\x4b\x0d\x27\xef\xcb\x43\xff\x09\xb9\xb3\xe3\x88\x2e\x14\xbf\xb0\x7b\x71\xce\x2a\x1a\x8a\x3e\xee\x5c\xdd\x4c\x37\x1b\x72\x65\x83\x2e\x17\xd0\x2d\x30\x7e\xc5\xf8\x3a\xdd\x93\xdb\x04\x72\x71\xf3\xb9\x65\xca\xb2\xf9\xba\x21\xb8\x4d\xb8\x39\x62\x5d\xa9\x7d\xb2\x7f\xff\x62\xa9\x1a\x30\xc6\x0e\xbc\x58\x0e\xd4\xa1\x4d\xb8\x98\xf9\xb1\xf6\x5b\xac\xd2\x8c\xb3\xa6\xe4\x97\xd1\xd8\x69\x72\x15\x7e\x02\xe2\xd3\x77\x43\x12\x79\x2f\xfd\x25\xe6\x6c\x04\xf4\x04\xd5\x85\xad\xb3\x7c\xa1\x05\x05\x13\x02\x6a\xcb\xc7\x84\xe3\x47\x90\x9b\x7b\xaf\xbc\x29\xad\x37\xf0\xe6\xd0\x79\xec\xcb\x72\xfa\xc9\x9a\x42\xba\x13\x7a\x63\x16\x0f\x56\xa0\xac\x7b\xc7\x7f\x31\x8c\x69\x2f\x47\xd8\x40\x87\x37\x74\x01\x89\x1c\x78\xfe\xec\xd1\x8e\x4b\x4c\x11\x4f\x22\x7e\xb3\x51\xd3\x24\x06\x23\x41\xe5\x17\x9b\xa3\xe9\x77\x1e\x3a\x54\xa1\xef\x66\x42\x56\xae\xc1\x7a\x61\xe3\x1e\xea\x71\x90\x53\xda\x72\xbc\x99\xb0\x36\x96\xd4\x36\x30\x6a\x9b\xc4\x31\x6d\x93\xf2\xc8\x5d\x2b\xca\xce\x65\x59\xf9\xa0\xa5\x7c\x66\x1b\x17\x01\xf3\x87\xcb\x8f\xfc\x3b\x96\xcb\xdf\xf6\xe0\xa6\x5d\xc5\x9e\xb5\x5f\xa2\x2e\xbf\x48\x1f\xf4\x6b\xb7\x94\xeb\x9c\x98\x76\x43\x2f\x84\xe2\xae\x16\x59\x67\x01\xd4\xa1\x7a\xd4\x6c\x3c\xf6\x39\xc1\xdf\xb8\x22\x3e\xa0\x0c\x7a\x3d\x0e\xe6\xc5\xa5\x3b\xa7\xc8\x45\x2a\x28\x41\x31\x68\x1b\x8c\x2c\x91\xb1\x39\x32\x7d\xf1\xec\xdd\x1d\x44\x9e\x23\xf8\x9e\x80\x5d\x67\xf6\xae\x2f\x7b\xea\xae\xc3\x7d\xac\x95\xf7\x3d\x47\xef\xc8\x6e\x38\x75\xae\x9c\x1d\x25\x26\xd8\x28\x09\xbb\x2f\x18\xa9\x6d\x58\x5a\xd3\xce\x74\x85\xa1\xcd\x79\x26\xed\x74\xc3\xf1\x6f\x3a\x7e\x61\x12\x3c\x30\xc9\xb9\xcd\x45\x28\x70\x1e\xd5\x7c\xf7\x9f\xd9\xc4\xa0\x20\xb1\xed\x18\x1c\x50\x3d\x50\x56\x0b\x7f\x1e\x0e\x52\x29\x20\xeb\x33\x77\xd6\xe4\x04\x3c\x03\x9c\x39\xe7\x39\x77\xb0\xce\xc0\xd3\x07\x79\x93\x34\xca\x9b\xb8\x61\xde\x50\xe3\x4c\x9f\xe7\x6c\x74\x02\xb2\xf4\xf2\xa1\x67\xf7\xdc\x99\xcd\x31\xa6\xf5\xec\x41\xe7\x0a\x09\x83\x76\x33\xe3\x32\xc8\xcb\x2c\xe2\x84\x27\x69\xd4\x91\xc3\xab\xd8\x05\x4e\x4f\x74\x72\xc3\x14\x02\xe8\xe6\x9d\x81\x5f\xb4\xc2\x6f\x12\x91\x70\x13\x8b\x85\x9b\xf3\xd1\x70\x75\xe9\x49\x9a\xd3\x5c\xe2\xca\x89\x60\xf1\xdc\x9a\xb4\x9f\xe5\x20\x3f\xa4\x5b\x48\xa6\xe6\x08\x83\x3a\xbb\x2a\xdd\x7b\x90\x13\xc5\x79\x57\xae\x39\xf5\xbf\xda\xbb\xb2\xb1\x12\x8a\xd8\xbf\x28\xed\x5d\xb9\xbf\x38\xca\xa8\x14\xf1\xae\x2c\x9d\x82\xde\x95\xc7\xd8\x25\x2a\xf1\xae\xbc\xb2\x2a\xf9\x36\xfa\xc6\x3e\x5f\x85\x47\xe2\x5d\x99\x57\x2a\x95\x19\x6a\x14\x3b\x52\x76\xbc\x2b\xf3\xb6\x26\x94\x90\x37\xd3\x37\xdc\x14\xf1\xae\xcc\x0f\x39\x5e\x40\x5d\x75\x48\xa3\xc4\xbb\xb2\xd0\x35\x6a\x3a\xaa\x89\x9d\x9f\x0a\x2d\xc7\xbb\xb2\x85\x42\xe5\xf3\x7c\x0e\xa7\x12\xef\xca\x8f\xda\x64\x77\x44\x5e\x37\xbb\xc8\x3b\xb3\x30\x78\x0a\x78\x57\x96\xde\xf0\xd0\xd0\x78\xa1\x0f\xd7\xbb\xf2\xc8\x16\x26\xa8\x1d\x49\x13\x1e\xf8\xfa\x16\x15\xa9\x2a\x90\x2b\x87\x3d\xc7\x12\x47\xac\x09\xde\x95\xed\xbc\xd1\x34\xee\x32\xb5\x3b\x8e\x6f\x1a\xb8\x9f\x78\xef\xca\x24\x17\x63\x09\xc3\x87\xcb\xd5\x11\x4a\x6b\xb8\xc8\xbd\xe3\xf5\x56\x44\x49\x72\xbf\x36\xbd\xbb\x2b\xdc\xdd\x91\x71\xa0\xef\x27\xe7\x5b\xb8\xcb\x74\xfa\x6d\xc5\xf3\xca\x4c\xfd\xc0\x37\xf6\xba\x5c\x49\xf6\x8e\x1c\x82\xee\x6c\x6f\xcb\xc8\xe5\xa9\x22\x6d\x78\xa1\x03\xad\x74\xb2\xdd\x0f\xb5\x20\x3c\xa8\x4f\xf5\xe5\x68\x54\xb3\xa5\x46\xcb\x56\xdf\xf8\xa1\x9a\x03\x04\x37\x04\x5b\x82\x06\xe0\x37\x4c\x99\xc8\x6b\x0d\x83\x1f\x09\x92\xa1\x35\x04\xec\xc7\x58\x93\x44\x45\x6d\x2e\x6c\x15\xfe\x9e\xdc\x09\xb6\x4a\xda\x6f\x70\xa8\xfd\x21\x6e\xbf\xa6\xf9\x5e\x9a\x07\xea\x63\x1d\xda\x90\xdf\x25\xb3\xf5\x8e\xda\x1f\xf3\x82\xa1\xc9\x82\xca\x37\x04\x63\x24\x03\x4e\x9a\x82\x01\x69\xf6\x14\x50\x8b\xf3\xe0\x7b\x54\x87\xdf\x64\xbc\x40\x5f\x43\x45\x2c\xf0\x63\x8e\x97\x6c\x34\x5e\xe5\x8e\x07\xb8\xbb\x4b\x6d\xdc\x54\x24\xe4\x31\xf9\x59\x30\x2b\xc8\x33\xf4\xd0\x81\x17\xea\xaa\x75\xc1\x36\x80\xdc\x66\x33\xc1\x46\x30\x4a\x82\x60\x2b\xad\x3b\xdb\x90\xf0\xdf\x85\x4a\x43\x30\x7c\x7c\x42\xfb\x1b\xaf\xfd\x93\x84\x70\xf3\xd1\x59\x56\x04\x17\x37\xc4\x13\xf3\x08\xe0\x53\x9b\x22\x86\x1f\xc1\x6a\x00\x9c\x8f\x33\xe4\x97\x17\xd2\x11\x8e\x64\xc1\x46\x79\xa8\x6f\x6f\x3e\x04\xb4\x80\x8e\xd3\xfb\xde\x93\x5d\xa9\x54\x91\x97\x60\x87\xa2\xb2\xb0\x3c\xc7\xf8\x2f\x58\x26\xd2\x5c\x75\xe6\x10\xc3\x41\x26\x5d\xf6\x67\x13\xe1\x57\x47\x74\x4a\x51\xe4\x70\x14\xf5\xca\xcd\xd3\x05\xbc\x1f\xc1\x2b\x8f\xda\x87\x9f\x83\xcd\x0f\xf9\xb6\xe6\x13\x0b\x00\xcf\x0b\x1c\xaf\x18\xc2\x9a\x97\x0d\xfe\xc5\xf0\xe0\x97\x31\xbd\x5f\xee\x4d\xb9\xe7\xc1\x4d\xea\xf5\x60\xbd\xd2\xde\x94\x7b\xbc\xa8\xd0\xde\x94\x7b\x7c\x7d\x44\x7b\x53\x06\xd4\x70\xb4\x37\xe5\x26\x5f\x93\x69\x6f\xca\x59\xe4\xbd\x97\xf2\xa6\xdc\x73\xda\xf5\xbd\x29\xa3\xfe\x7c\x6f\xca\xa4\x3f\xdf\x9b\x32\xe9\x8f\xf6\xa6\x8c\xfa\xf3\xbd\x29\xf7\xb0\xb7\x67\xda\x9b\x32\xf4\x37\xc5\x5e\x89\x2b\xfc\x4c\x11\xde\x1c\x6f\xc3\x6c\x8f\xc9\x0a\xf2\x98\xcc\x47\xcb\x6f\x37\xab\x59\x3e\xf7\x36\xcb\x73\xac\xb6\x86\xa8\xad\x89\x2d\xe4\xf8\x86\xcd\xab\xd8\x73\xf1\x9a\x57\x6d\x94\x9f\x45\x6d\xbf\x21\x8f\xc6\x03\x83\xfc\x9e\xa3\x51\x36\x34\xe4\xe1\xf8\xe8\xc0\xb0\xe4\x9b\x0a\xfa\x5e\x23\x18\x54\x03\x24\x83\x88\x68\x9b\xf4\xf3\xe0\xf5\x03\xb0\xe1\x9f\x4e\xec\x64\x86\x7e\xfe\xce\xf2\x74\x7c\xcd\x94\x62\xc4\x38\xd0\x5a\xc4\x08\xb1\x79\xb6\xda\x18\xac\xab\xa3\x47\x09\xc9\xab\x47\x2c\x14\xf0\x04\x0f\x8d\x18\x62\x76\x7f\x84\xda\x60\xad\x62\xf2\xab\xa2\x7f\xe6\xc8\x95\x7e\x73\xd2\xae\x3d\x49\x77\xd9\xea\x43\xfb\x03\x2d\x96\x36\x6e\x01\xaf\xa4\x06\x2f\xcb\xb6\xae\xa8\xf9\xdc\x12\x93\x39\xf6\xc7\x2f\xe0\x11\x3f\xf0\xd5\x0c\x67\x2c\x5d\xa1\x58\x5b\x38\x14\xca\xbb\xbe\xc6\x1d\x21\x08\x34\x82\x57\x40\x17\x65\xd5\x54\x2c\x14\xa7\x28\x0f\x65\x95\x89\x10\x44\xff\xb4\xf8\x4e\x93\xd7\x37\xd6\xec\x69\x80\xd6\x67\x0d\x2f\x52\x22\x2e\x0c\x01\x84\xab\xb4\xcd\x2d\x75\x2c\x89\x15\x97\x98\x31\x94\x22\x48\x0f\x2c\x04\x15\xb4\x00\xb0\x10\x46\xde\xe6\x85\x01\x16\x8a\x45\x7b\x56\xc0\x42\xb1\x3e\xa2\xda\x23\x93\x26\x41\x79\xb4\x78\x24\x41\x6c\xf8\x04\xc5\x2b\x78\x81\x94\x32\x82\x2d\x66\x84\x7d\x2d\x23\x18\x52\xd3\xb0\xf8\xc6\x63\xff\xce\xe4\xf6\x3a\x10\xf1\x64\x74\x97\x69\x9b\xb6\xdd\x34\xf3\x6f\xdc\xa6\xbf\xcc\x0a\x03\xd4\x85\x28\xd7\x4e\xf8\x77\x57\xc2\xdf\x7c\xab\x89\x40\x9d\x03\x93\xe0\x41\xb8\x28\x46\x5f\x1a\x74\xc6\x8d\x77\x7e\x73\xef\x11\x70\x71\xa7\xe6\xab\x07\xe4\x7a\x7b\xfe\x20\xe4\x3a\x4f\xa3\xf7\x4e\xf3\xb1\xd1\x91\x94\xc2\x7c\xa4\xda\x83\xda\x32\x37\x58\x09\x52\xef\x09\xa5\x0d\x04\x3c\x02\x75\x4d\xdc\xa2\x1b\xc4\x9b\x39\x30\xc9\x7b\xc4\x06\x1f\x0d\x71\xc1\xf7\x00\x55\x77\xef\xa3\xda\x9b\xfb\xdf\x11\xfe\x3b\xbc\x99\x77\xfa\xb6\xae\x1e\x95\xd5\x44\xec\xad\xac\x4c\x7f\xc5\xe5\x15\xd3\x5e\x15\x36\xf2\xbe\xbe\x96\x8f\x8a\xa9\x96\x9a\x2b\xce\xec\x2e\xad\x63\xc3\xe4\xa6\xad\x25\xa7\x37\xc5\xfe\x7e\x94\x39\x29\x75\x53\x36\x1b\xa6\x3a\x6d\x43\x5e\x73\xa5\xea\x3d\x94\x5e\xc5\xe9\x99\xd6\x8a\x3b\x2a\x22\x5f\x2e\xcf\xb8\xb7\x42\x5d\x18\xb7\xd7\x72\xbe\x0f\xba\x90\x5c\x3d\x3d\x14\xea\xfc\x18\xfe\xce\x74\x71\xfb\x45\xb1\xb5\xb2\x0c\x94\x5e\x46\xe9\x4b\x2e\xdf\x84\x7e\xa0\xcd\x6d\x13\xfa\x92\x4d\x19\xfa\xb4\xf6\x72\xa6\x38\x6c\x0b\xa8\x2f\xc8\x5f\x59\x66\xdf\x54\x33\xed\x35\x6f\xf4\x32\xd5\xfc\xbc\x9a\xaf\x3c\x42\x3b\xd0\x5e\x06\x60\xd0\x30\x0c\xd0\x3e\x1a\x13\xf4\x7b\xec\xd3\x63\x10\xe5\xb7\x32\x48\x00\xa7\x7d\x53\x86\x3e\x5a\xce\xd8\xba\xa6\x5c\x91\x33\x04\x3e\xe8\x63\xdb\x37\x8b\xbc\x5c\x7b\x7b\x9b\x9b\x19\xf5\x11\xf0\x34\x12\xc2\x78\x2a\xa2\xf6\xb7\xbd\x25\xe0\xab\x0e\x63\x17\xd4\x8c\xbc\x22\xf8\x00\xbc\xe8\x4d\x93\x5f\x95\x49\xba\xd9\x84\xfe\x1a\x78\x5c\x08\x7e\xce\xec\x79\xf0\xb7\x94\x11\xfc\xf7\x08\x34\x73\x4f\xd6\x61\x07\x28\xb1\x01\xd4\x81\x43\x72\x74\xf8\x31\x5a\x6d\xa0\x67\xba\x4a\x59\x7f\x04\xb9\x22\x5b\xe7\x1a\xb0\x57\x36\x22\xb5\x4a\xd7\x12\xb8\xfe\x1d\x28\x63\x48\x0c\x39\x62\x26\xc4\x0f\x3c\x71\x88\x73\xf1\x52\x1e\x79\xa1\x29\x80\x83\x0b\x98\x83\x63\xe1\x40\x84\x27\xa2\x33\x11\x94\xbc\xb7\xbb\x2a\x0a\x55\x81\x7f\xe0\x3b\x77\xe7\x7c\x2f\xee\x56\xb5\xf7\xac\xa7\xcc\x51\x3f\x02\x0a\x7d\x01\x8a\x49\xdf\x17\xe2\x3c\xec\xc9\xac\x8f\x7f\x57\x21\x8e\x52\x45\xa7\x60\xcd\x10\x8f\xbe\x32\xe8\xea\xa7\x92\x87\xc5\x9a\x81\xf6\x05\xee\x77\x07\xe5\xaf\xfd\x6f\x05\xe5\x3f\xfa\xdf\x23\xa4\xb4\xf7\xfc\x6f\x15\xad\xdb\x77\xff\xdb\xe2\xbb\x3c\x08\x18\x3c\x0f\x4a\xcb\xef\xcf\xfd\x76\xfb\x73\xbf\xdd\xfe\xdc\x6f\xb7\x3f\xf7\xdb\xed\xcf\xfd\x56\x51\xf9\xa2\xff\xed\xf4\xc7\x10\x8c\x8f\x86\xb0\xe1\x9b\x32\xaf\xd9\xc2\xce\x11\x74\x06\x5f\x93\x78\x60\xc1\x76\xb4\xbc\xcf\xbf\x58\x6d\x8d\x50\x5b\x20\x5c\xe7\x8a\xb0\x47\xe1\x03\x40\xb8\xee\x9c\x70\x01\x07\x2f\x5c\x80\xa4\x92\xdf\x4d\x1c\x56\xe0\x19\x09\xe1\x99\x03\x03\x08\xef\x2c\x16\xe6\x58\x48\xcb\xbc\xae\xc0\x6f\xc9\xe9\x47\xf2\xfb\x69\x93\x69\xfe\x44\xc8\x01\x24\x63\x7f\xfb\x16\xf1\x71\x48\x1e\xfb\x60\x93\x5c\xea\xbd\x78\xec\x81\x3c\x6b\x87\x1a\xf4\x8d\x4f\x39\x94\xf9\xb5\x5b\xf4\x54\x48\x19\x7e\xfe\xfd\x6b\x95\xa4\x61\x44\xc2\x68\xff\xdf\x45\x76\x5e\xfe\x8d\x69\x0c\xc6\x30\x66\x62\x56\x9f\x86\xab\xc7\x59\x4f\xd1\xae\x93\xce\x35\x9f\x0a\xf7\xf8\x17\xd4\x63\xf5\x2f\xb8\x47\xf7\x81\x48\xc8\x7b\x91\xeb\x8a\x2d\xb5\x99\x29\x69\x46\xdf\xce\xf4\x39\xd3\xf3\x69\xe0\x6d\x8d\x77\x79\x14\xbe\xb9\xa4\xcf\xce\xe7\xda\x1c\xd2\xc2\x4e\xe3\x8a\xa5\xdb\x7c\xf1\x3f\xfc\xce\xae\xf0\xbf\xd7\xfe\xb7\x89\x6d\xa0\xa9\x04\x6b\xb6\x42\x1e\x5c\xa3\xf7\x0d\xb4\x51\x43\x5c\x0c\x08\xfa\xb5\x53\xd4\x1f\xaf\x0f\xc6\x0f\x67\xe8\x91\x1b\x5d\x27\x17\x12\x35\x7d\x69\x6d\xe6\xec\xa7\x03\x09\x6f\xae\x63\x2f\xc1\x92\x3d\x4e\x4f\xe7\xe6\x74\xc3\x8c\x70\x78\xc5\x15\xff\x23\x10\xe5\xb0\xf0\xed\x1b\x0d\xea\xf9\x2e\x72\x58\xef\xc2\x69\xa8\x82\xef\xb8\xa9\xe6\x63\xdf\x50\x5c\xd2\x6a\x21\x10\x9e\x3a\x1a\x21\xf2\x42\x14\x04\xc2\x5d\x5e\x58\xd5\xb3\x58\x2d\x26\x5e\xa5\x17\x13\xae\xd2\x8b\xd4\x55\x3a\x8d\xa9\xd8\x07\x34\x91\x37\x26\xd1\x53\x5a\xfc\x17\xac\x40\xfd\xe9\x6f\x37\x50\xe2\xdb\x95\x97\xa0\x92\x84\xd0\xb9\x6d\x7a\xf9\x4b\xca\xfa\xe6\xc6\xd4\x5b\xd0\xd2\x6b\xc8\x4f\x35\x75\x71\x1a\xba\x36\xcd\x27\xbb\xd9\x71\x10\x76\xed\x07\x24\x49\xc3\x6d\xb8\x28\xe5\xe2\xca\xe7\x16\x04\xeb\x24\x72\x61\x6c\xf0\xd1\xff\x06\xd2\xca\xc5\xc0\xe8\x31\xe3\x80\x1f\x7d\xc7\x06\x82\x22\xa4\xeb\x68\x32\xcd\x93\x22\x7c\x2b\x58\x34\xc8\xdc\xfc\x0b\xfb\xfd\xcb\x11\x40\x77\xd9\x7e\x90\x53\xbb\x8e\xe5\x3c\x8f\xbd\xdc\xef\x85\xbf\xfc\x83\x5d\xb6\x5c\x0c\x16\xcd\x95\x7e\xaf\xc6\x95\xf5\x25\x80\x57\x3c\x9f\x8b\x2f\xce\xe5\x6f\x2b\xce\x9b\x63\x22\x36\xb6\xd6\x7c\xba\x89\x09\x1a\x44\x02\x87\x50\x91\x66\x72\xd1\x75\x16\xf1\x3a\x1d\xba\xef\x8d\xb1\x95\xcb\x39\x16\x8c\x51\x2b\xc6\xfc\xb7\x6b\x37\x33\x57\x74\x62\xc2\x06\xf3\xe3\xc3\x8d\x00\x40\x57\x80\x0d\x76\xa0\x11\x37\x33\x36\xe3\x0c\x07\x75\x5f\x19\x27\x27\xe8\xcb\xdd\xda\xe1\x80\xb1\xd7\x44\xac\x5e\xb3\x7d\xbb\xe3\xc9\x72\x58\x21\x65\xec\x96\xf9\xcf\x6b\x3f\x97\xce\x20\x96\xca\xa8\xf8\x37\xda\x9c\x98\xb6\x2e\x0a\xb9\xfc\xf2\xca\x04\x6c\x8b\x22\xa6\x0d\x4e\x57\xbe\x37\xc7\x04\xfb\x25\x56\x0f\x2c\x03\xa6\x98\x4e\x6e\xb5\x8d\xb5\xd7\xcf\x13\xc1\x37\x79\x12\xf0\xd7\xb9\xbc\x74\xbe\xfc\x70\xd0\x94\xe7\x39\xea\x41\x3e\xb9\xea\xa3\x18\xb4\xf7\x7e\x99\x8e\x25\xec\x7e\xfa\x2e\x50\xf0\xb7\x77\xcd\x4a\x43\xeb\xd8\x74\x05\xb9\x95\x53\xc0\x71\x4b\x1d\x54\x64\xe8\x3d\x40\x7b\x7a\xb0\xae\x7f\x6b\xea\x9b\x37\x1d\x29\xa1\x57\x5d\xfd\xa8\xff\x76\xcd\xbf\x02\xa3\xbc\xf6\x52\xaf\xf7\x40\x1f\x40\x4d\xaf\xe6\x22\xb2\xe4\x22\x9a\x59\x8e\x80\x7e\xe5\xc5\xa4\x0e\xbe\x0a\x66\x3b\xbd\x0e\xcc\x54\xba\x99\x69\x60\x74\xbe\x93\x5f\x1a\xcd\x9c\xef\x85\x22\xfc\x2c\x1c\x32\xa2\x1e\xb5\x03\x68\x75\xa2\x5a\xc5\xea\x7f\x41\x07\x0b\xc1\xe6\x39\x0a\x13\x04\x03\x41\x8c\x05\xd6\x16\xf6\x44\x1e\xee\xee\xd7\x7d\x67\x53\x2d\x20\xbe\x83\x14\xb5\x25\xfc\xfe\x80\x8e\x60\xd7\x45\xe7\xce\xcd\x57\x62\x09\xee\x6e\xc9\xe8\x8e\xa8\xdc\x57\xcb\xfe\xee\x76\x17\x4a\x8e\x26\x31\x70\xe9\x8c\x35\x84\x52\x1a\x12\xd4\x0c\x75\xe1\x4d\x3e\xaf\x72\x57\xc4\x9c\xdb\xe9\xda\x4f\x09\x7e\xb9\xde\x9a\xfc\x27\xb3\x48\x48\x20\x06\xb8\x40\xdc\xce\x07\x1d\x6d\xaa\xfc\xc0\x3c\xdf\x83\xc5\x28\xb8\x3d\xf9\x06\xc9\x57\x4e\xac\x9e\xbf\xfc\xe3\xe7\x97\x37\x4f\x7c\xf8\x26\xf7\xe0\xf8\xf9\x65\x75\xe2\x64\x45\x0a\x33\xba\xda\x1f\x5e\xf5\x83\xb6\xd4\xe7\xcc\x3e\x9c\x5c\x66\x27\x6e\x5e\xb4\x38\x73\xa2\x69\xe7\xe0\x29\xd3\x9d\x0b\x4e\x77\x0e\xf8\x5b\x70\xba\xbd\x94\xe0\x17\x65\x84\xf8\x65\x33\x4e\x51\x2a\x7e\xef\x14\xf6\x81\xce\xa4\xe7\x40\xb1\x9f\x5f\x46\xce\xb4\x03\x32\xda\xd2\x34\x10\x24\x3a\x1f\x92\x5c\x01\xc0\x5c\x57\x05\x1e\x7b\x0e\x47\x4e\x22\x36\x6b\x81\x83\x1f\x9f\xab\x55\x02\x52\x91\x3c\x4b\xb4\x9e\xf7\xc1\xd7\x9f\xd5\xc5\x74\x31\xf3\x99\x5d\x50\xa4\x27\xbb\xa1\xa5\xf4\x38\xdf\x36\x34\xd8\xd7\x0f\xe7\x39\x54\xe0\xc9\xd9\x6d\xb9\x78\xa9\x93\x4c\xa2\x72\x3a\x7e\x92\x8a\x61\xa3\x3f\xae\x7c\x0b\xfa\xec\x65\x0e\x9c\x7e\xd9\x94\x3d\xc7\xdd\x16\x29\x17\x4c\x61\x28\x2b\x95\x08\x94\xdc\x59\x30\x52\x6e\xa0\x7e\x1d\xc6\x2a\x2d\x41\xa3\x30\x16\x51\x24\xbe\x10\x94\x79\xd0\xa0\xcf\x72\x28\x95\xcf\x66\x99\xd3\x93\x65\x34\x8a\x3a\xba\xd4\x4b\xd5\x9f\x3d\xfa\x2a\x6b\xf4\xe5\xe4\xd1\x7b\xb4\x49\xcd\x52\x50\x49\x0b\xbe\x6a\x71\x34\xc0\xa8\x6e\x8a\x17\xd7\x6d\xb6\x58\xa0\x94\xcf\x5c\x4c\x38\x91\xf2\xa5\xcf\x34\x98\x10\xfd\x4e\xe2\x98\x5c\x39\x20\x39\x61\x4d\xae\x72\x51\xe3\xe6\x44\xfd\x89\xe6\x14\x31\xf5\xbc\x01\x62\xcd\x29\xf2\x2a\x37\x94\x4a\x73\x8d\xa0\x26\xc5\xd0\x7f\xdc\x53\xd6\x4f\x69\x3f\x80\xda\xe3\xf6\x99\xa5\x00\x39\x39\xcc\x54\x1a\xbe\x44\x35\x88\xed\xfe\x88\xc8\x3a\x0a\x09\xd1\xd3\x72\x3f\xb2\x4c\x36\x7d\x3a\x42\x92\xc1\xe7\xf6\x45\xef\x60\x88\x6e\x9c\x09\x7d\xbc\x6c\x67\xbe\x27\x63\xbc\x3d\xa3\xa9\xe0\x2a\xe6\x09\xa9\xef\x57\x8a\x0c\xc0\x15\x3f\x81\xba\xe1\x06\x12\x64\xc8\x75\x7c\xd6\xde\x95\x2f\xee\xd6\xc3\x7b\x5d\x14\x89\x9c\xe8\x31\x01\xc6\xc9\x02\x3e\x44\x8b\x1e\x1e\x10\xf3\xc2\xe9\xde\xd4\xdc\xaa\x09\x01\x11\x43\xa7\x17\x81\xf7\x7c\x49\x4e\x43\x83\xc7\x4f\x54\x6f\x1e\xe2\xae\x23\x19\xce\x84\x46\x33\x9c\x95\x9f\x1c\xb8\x31\xa6\x52\x12\x24\x14\xef\xa2\xd8\xd6\xad\xc7\xe2\x22\xd8\xa6\xb1\xc6\xe6\x6c\x71\x93\x14\x0f\x5a\x68\xd7\x49\x1f\xb6\x05\x4f\xa6\x9c\x53\x36\x4a\x54\x38\x31\x1e\x9d\x98\x8f\xd1\xd8\xbd\xb1\x45\x7f\x44\x62\x59\x06\xde\xa7\xc6\x3a\xac\x64\xb4\x18\x1b\x42\x16\x03\xbf\x77\x72\xaf\x82\x42\x8e\x0c\x2c\xf4\xc8\x34\xba\x44\x0b\x78\x2a\xae\xc2\x0f\x57\xfd\x76\x8e\x28\x92\xf8\x14\xed\x1f\xe2\x91\x71\xf1\xc8\xe2\x1b\x8d\xa2\x2d\x8a\x69\x46\xed\xe4\xc1\x7b\xc7\x37\xa1\x27\x20\x58\x61\x2d\x44\xa5\x4b\x02\x74\xbb\xe3\x7e\x09\xd0\xb9\xa7\x3d\xf8\xc2\xf2\x22\xd9\xcf\x58\x1d\xf4\xfa\x49\x9f\x52\x0a\xf4\x20\xeb\xff\x1e\xe5\x68\xd4\xa8\xc8\xfb\xa6\xe3\x66\x43\x20\x0c\xeb\xc7\xe1\xa7\x6b\xf9\xdb\x22\x83\xa1\xe7\x1c\x52\x09\x37\x16\x86\x91\xe9\xaf\x2c\xdc\xf9\x19\x0a\x50\xb4\xca\xa7\x74\x21\x9f\x85\x07\x63\x09\x92\xf3\x74\x90\xff\x9b\x73\x4e\x96\x0a\x17\xfb\xe9\xf7\x5b\xfe\xd2\x8d\x48\xb4\xdd\x72\xf6\x96\x0b\xb7\x5c\x28\xde\xe6\x2f\xdd\x3e\x44\x5b\x2e\x55\xa2\x2a\x6f\x81\x3b\x57\x37\xa7\x14\x7e\x06\xd0\x79\x46\xd3\xa5\x4f\xa8\xfd\x8c\xa6\x4b\x8c\xa6\x2b\xb8\x69\xfc\x2a\x07\x32\xf4\x10\x11\xd2\x33\x5d\xba\x74\xa6\xa9\x06\xbf\x74\xa6\xa3\xed\x7e\xc5\x26\x31\xda\x6a\x2e\xcb\x98\x8b\x62\xee\x13\xd3\xcc\x6a\x9b\x41\x42\xc5\xb3\x49\x88\x9a\x67\x46\xdb\x39\x8e\xd1\x76\xd9\x9b\xe8\xe7\xa9\x11\xbc\x75\xf2\xce\xe6\xab\x45\x86\x0b\xf3\xc0\x55\xb8\xcb\xe2\xab\xd5\x2a\x1d\x02\x29\x70\x47\x1e\x39\x04\xc7\x07\x15\x38\xa4\x11\x7d\x64\x52\x2c\x16\x83\xef\x5a\x73\x8e\xd6\x18\xbe\x94\x62\xc6\x3a\x0d\x68\xfe\x71\x91\x92\xce\x8f\xb8\xc2\xb8\xe0\xbd\xcd\xef\xaf\x7c\x78\x23\x97\xba\x8c\xec\x3f\xa6\x2e\x7a\x83\x57\x26\x2e\xd6\x7f\xdc\x1e\xcc\xc3\x46\x67\x7b\xb8\x0d\xf8\x4b\x0d\xeb\xb1\xb8\x32\xe6\xf2\x4c\xab\x08\xdf\x51\x55\xcc\xed\x4c\xd1\x7b\x95\x97\x73\x0f\xfb\xbd\x03\x7b\xcf\xe3\x63\xd1\xf1\x33\x4c\x5d\xc7\x24\xdd\x7b\xe7\x13\x2e\xba\xf3\x94\x11\x01\xc0\x1e\xf5\x6c\x8a\x67\x3f\x78\x49\x03\xe5\xae\x12\xee\x70\x50\x12\x20\x0d\xa3\x37\xc5\x0f\x01\x91\x92\x48\x1b\x0c\x96\x76\x14\x44\xff\x91\xd3\xb3\xe3\x3f\xde\xff\xdc\x5f\xe2\x4b\xe8\x7b\xf8\xe9\x5a\x36\xa8\x86\xbb\xcd\xd3\x09\xfb\x2b\x0c\x13\xc3\x9d\x59\x61\xc1\x2d\x8a\xec\x1b\xa1\x48\xb3\x0e\xa2\x22\xad\x5f\x11\x0a\x8b\xe9\x35\xae\x96\x9b\x4b\xa8\x33\x36\x38\x24\x05\x7d\x9c\x7f\x95\x60\x39\xc6\x25\xe5\x39\x8b\x31\x34\x43\x69\x6d\xa5\xbb\x7b\xda\x59\xbb\xe3\x2e\xe6\xa2\x3d\x64\xf1\xe3\xbe\x89\x63\x44\x50\x37\x9f\x63\x23\xa8\x33\xb3\xe8\x54\xef\x1e\xb4\x8a\xe3\x30\x87\x42\x93\xfd\x75\xce\xc1\xff\x8a\xe1\xab\x33\x18\x0a\x5e\x9e\xae\x68\xcd\xe3\x83\x36\xa6\x1f\x3d\x9f\xd5\x56\x0a\x05\x87\xd7\xa6\x1b\x1c\x9e\xc3\x36\x93\xe3\x52\x7d\xd6\x0d\xc1\xf7\x40\x64\x40\x3c\x3f\x91\x73\xb6\xec\xaf\x5d\xcd\xd2\xaa\x4b\x8e\x3c\x9c\x0e\x5e\x7c\x32\xef\x3c\x03\xa0\x64\xbc\x23\xb4\x70\x04\x59\xbf\xec\x59\x8e\x85\x9d\xa7\xfc\x65\xfa\x2d\x3f\xfe\x08\xdf\x1f\xff\x19\x7e\x04\xfc\x67\xff\xa1\xa3\x1a\xe2\x38\x20\x7b\xf5\xd7\xd9\x14\xfe\xa7\x79\xef\xd1\xc9\x72\xa1\xd4\x07\x72\xd1\xe0\x66\x3b\xcf\x52\x51\x99\x58\x6b\x10\x1c\x13\x9b\x2c\x61\xb6\x45\x08\x5d\x20\x29\xd3\xeb\x95\x48\xfa\xb4\x7e\x49\xa9\xc4\x9e\x83\x45\x92\xb3\x23\x4f\xf4\x13\x3b\x27\xe1\xca\x93\xfa\x0e\x94\x48\xcc\xf5\xdf\xc9\x07\x06\x4e\xf9\x3a\x74\xa5\x75\x0a\x38\xd8\x20\x2f\x1e\x16\x6c\x47\x14\x9b\x45\x3d\x62\x67\x83\xe1\x51\x47\x3c\x18\x78\x32\x63\xa1\xf0\x72\x63\x73\x82\x4f\xb3\xa9\xde\x3d\x14\x30\xde\x4c\xa7\x13\xa7\x7b\x2b\x1a\x9f\x1b\x9b\x43\xf7\x77\x11\x59\xc6\xf6\x49\xe5\x27\xe4\xb1\x9e\x67\x9f\x41\x90\xb1\xbd\xfa\xd9\x09\x59\xc1\xe8\xfa\x71\x43\x77\xb9\x20\x7d\x3d\x79\x73\x5b\xc0\x6c\x97\xb8\xae\x28\x04\xbd\x8d\x04\x7c\xdb\xf8\x3e\x33\x62\x9c\x9b\x04\x79\x54\x74\xaa\x03\x01\x8c\xd9\x65\x68\x27\xf2\x01\x68\x42\xde\x44\x68\x68\x82\x71\x91\x2f\x81\x8d\x9a\x1e\x56\xc7\xbe\x2a\x1e\xf1\x99\xf2\xd9\x8e\xc3\x3c\x92\xee\x96\x7a\xa2\x1f\x74\xb4\x50\x60\xb9\x80\x09\xcc\x1e\x8b\xeb\x47\xb1\x1d\x2c\xe0\x76\xcd\xea\x26\xe7\x10\x44\x18\x24\x76\x9b\x34\x95\x33\x08\x31\x54\x24\xa6\x5f\x1f\xd9\x5e\xc7\x31\x98\x66\x33\x5d\x1a\x93\x3e\xe9\xba\xad\x27\x4e\x20\x3d\xe7\x21\xe1\xcb\x9c\xc4\x28\xab\x0d\x77\x1e\x58\x59\x51\x6f\x33\x67\x74\x7e\x13\x27\xfa\x1d\xd5\x07\xfe\x32\x5e\x4d\xc7\x7e\x11\xe9\x3d\xfa\xfc\xdb\xcf\x68\x4c\xd3\x1c\xb9\xf7\xfc\x46\x05\xa1\x45\x2a\xf7\x0d\xa8\x90\xde\x41\xa5\xeb\x98\x3c\xa8\x7f\x9f\xe9\x99\xdc\xf7\x13\x88\xab\x07\xe2\xe8\x31\x1a\xfc\x23\x9a\x9f\x60\x87\x1e\x0a\xf3\x1c\x4c\xff\xa5\x77\x3e\xd4\x65\x4f\x60\x02\x23\x76\xcd\x80\x52\xdd\x23\x6d\x57\xc5\x2f\xe0\x0b\xfe\x5b\xca\xa2\x18\x76\x69\xef\x57\xa8\xec\x5f\xfe\x11\x29\x5d\x74\x4b\x3b\x7e\xc7\x48\x7e\xe0\x24\xc6\x2d\xea\x75\xeb\xed\xfb\x48\x61\x5a\x01\xcd\xcd\x72\x5a\x6e\x4e\x6f\xff\x13\xbc\x6d\x32\x1a\xbb\x8a\xbd\x2f\xa3\x6c\x1d\xbd\x23\x8d\x60\x5d\x6f\xed\x46\x76\x37\x0e\x54\xb1\x57\x7e\xce\xf8\x2d\xdb\xa7\x34\xc6\xb0\x61\x33\xe6\xee\x03\xfd\x8d\x41\x24\xa2\x3d\x90\xdb\x7b\xb4\x94\x6b\xb5\x1d\x3c\x1b\x8f\x14\xab\x86\x6c\x24\xc2\x05\xbc\x5e\xc8\x89\x5d\x24\x3b\x10\xfa\x16\x95\x5b\x1e\x99\xc5\xc2\xb6\x18\xbb\x57\xcb\x78\xd5\xf7\x7b\xc6\x6b\xa7\xc4\x8b\x75\x7a\x72\x03\x9e\xa9\xf2\x61\x3f\x63\x64\xfe\xd9\x5e\xff\x73\xdf\xa8\xc8\x45\x69\x5e\xd9\x1c\x48\x03\xde\x42\x29\x5d\x32\xef\x6f\xad\xdc\x92\xd4\xae\x9f\xf6\x2f\x14\x29\x78\x05\x6b\x2e\x6c\xd9\x1b\xb4\xe7\x8a\x62\xc7\xb5\x99\xf3\xb7\xec\xe1\x20\xee\x95\x4a\xe5\xc2\xd8\xe9\xc1\xc8\xe7\xd7\x61\x72\x66\x7a\xb1\x3c\xb7\x4e\x74\xc0\x3f\xfc\xc9\x0f\x06\x3e\x43\x01\x73\x19\x67\x1c\xb4\x03\xf5\x28\xe1\x3a\x12\xd2\x97\x71\xb7\x41\x77\x63\xb4\xb8\x89\x89\xaa\x79\x5b\xfe\x16\x78\x54\x43\x11\x97\x23\x8f\x8a\x51\x63\xe3\xf0\x43\x86\xc0\x38\xdd\xc0\x03\x71\x83\x61\x58\x20\x7b\xde\xd8\x28\x99\xe8\xa9\x52\xcc\x21\x50\xa7\x1f\x4c\xd8\x62\x46\x83\xa3\x6c\x45\x4f\xa3\x19\x64\xe1\x4c\x24\x17\x9d\xfc\x60\x8e\xc3\x19\xe7\xd8\x9d\x04\xe2\x67\x0e\x16\xfe\x0f\x72\x34\x71\xb3\xd3\x5f\x51\x17\xff\xcf\xdf\xff\x92\xfb\xcb\x3f\x30\x01\x5c\x9f\x59\x3e\xef\x94\x67\xf0\xd7\x79\xb5\xa8\x15\xb5\x73\x3b\x2e\xc4\x37\xa4\x2f\x66\x5a\x39\x7f\x6e\x43\xdc\x85\x23\x28\x26\x74\x5c\x9a\xcd\xb8\xca\xb9\x1d\x97\x12\x50\x31\xd7\x60\x2d\x9c\xdb\x50\xf9\xc2\x11\x54\xe2\x3b\x9e\x71\x68\x16\xce\xed\xb8\x7a\x61\xc7\xb0\x16\xe2\xbb\x2e\x95\xe6\xd3\x4a\xee\x22\xba\xc3\x0b\xf2\x22\xca\xbb\xa8\x46\xe1\xe2\x1a\xdc\xc5\x35\x8a\x17\xd7\x28\x5d\x5c\xa3\x7c\x71\x8d\xca\xc5\x35\xaa\x17\xd7\x70\x88\x81\x30\xd5\x24\x53\xa2\xe4\x96\x2e\x64\x41\x3e\x07\x3a\xb3\x78\xe1\xb2\xe2\x17\x71\x13\x9f\x99\x9c\x59\xbc\x74\x59\xf1\x8b\x18\x83\xcf\x17\xce\x2c\x5e\xfd\x12\x56\x7e\xf1\x52\xbe\x78\x25\x5f\xbc\x90\x2f\x5e\xc7\x17\x2f\xe3\x8b\x57\xf1\xc5\x8b\xf8\xe2\x35\x4c\x2f\xe1\xcb\x96\xe3\xed\xfe\xa8\x69\x58\x11\xa4\x2b\xff\x35\x37\x2d\x16\x72\xb3\x80\x0a\xe5\x97\x64\x93\x4d\x3e\x37\x9b\x72\xc5\xb0\x67\x66\x56\xe5\xeb\xd8\x9c\xdf\x9d\x37\xca\xd1\x90\x7f\x21\x03\xcd\xb8\x0c\x66\xa7\x3f\xd2\xc7\x66\x4f\x5f\x9f\x01\x2d\x71\x63\x5b\xe4\xb5\x6c\xa1\x1c\xd7\x0d\x5d\xf9\x3a\x36\xe7\x8b\xc7\xe6\x34\x1d\x1a\x5b\xb9\xca\xcd\xb2\xf9\x60\x49\x1c\x0c\x2b\x76\xb1\xcf\xf2\x95\x7c\x25\xae\x13\xbf\xea\x75\x4c\xfa\x17\x8f\xca\x09\xdc\x15\x18\x53\x35\x97\x9f\xe7\x67\xb4\x61\x69\x70\xbb\xc6\x70\xcf\x41\x6f\xc5\x62\x2b\xba\xa0\x53\x37\x6c\x7e\x4c\x81\x14\x5f\x0e\xee\x05\xaf\x7b\x63\x1f\xf3\x6a\x3a\x71\xbf\xe7\x63\xc4\x05\xeb\x86\x80\x79\xe5\xd8\x3d\x5c\x45\x23\x51\xa6\x16\x65\x85\x72\x0c\xd5\xf9\x99\xfd\x0f\x3f\x68\x7d\xc1\xdd\xbf\xfe\x81\xf6\x3a\x3f\xc3\x41\x15\xf0\xa3\x77\x3a\x14\xe3\x2f\xb7\x85\x66\xc3\xf3\xcb\xef\xed\x3b\xfd\x36\x8a\xec\x12\x3e\x11\xb2\xb3\xbe\x86\x0e\xfd\xd3\x24\x17\xb0\xf0\x79\x45\x60\x9b\xea\x87\x23\x62\x1d\x66\x05\x88\x34\x74\x1e\x90\x50\x94\xda\x8d\xbb\xdc\x07\xbf\x0a\x63\x57\x09\xad\x95\xe8\xb1\x58\x32\x2f\x24\x4c\x3b\xa6\x0a\x9b\xc5\x10\x5e\x18\x53\x85\xb5\x7e\x09\x8b\x09\xae\xf3\xe9\x81\x18\x01\x87\xa3\x22\x47\xd7\x32\xe3\x7c\x29\xcb\x6e\xeb\x9a\x99\xca\x3a\xd2\x71\x2f\xcf\xf3\xf4\x73\x70\x86\xf7\x9e\x0b\x8d\x4d\x62\xfa\x0e\x35\x13\x2c\x8a\x2e\x1f\xd8\x03\xa0\x73\x48\x43\x84\x03\x5d\x6c\xb6\x12\xdf\x20\x0b\x32\x6d\xfa\x3a\xc7\xc7\xf7\x6e\x51\xaf\x01\x27\x8e\xa4\xb1\xc5\xaf\x56\x58\x25\x62\xdc\xba\x30\x8e\x4e\xf0\xc1\x0a\xc5\x16\x02\x3d\x3b\xb7\x5f\xe9\x00\xc4\x15\x64\x7a\xd2\x27\x57\x23\x09\x0b\xf3\x26\x4a\xaf\x38\x62\x68\xda\x82\xf6\x0d\x68\x4a\xd5\x22\x61\x02\xd6\x2b\xf2\x09\x91\x5e\x23\x5f\xce\xe5\x34\xba\xc6\x05\x9d\x55\x8a\x8e\x12\xf3\xae\x6f\x80\x68\xd3\x6b\xcc\x66\xf3\x6c\x85\xae\x71\x41\x67\x7a\x3e\x47\x18\x8b\xb5\x89\x0a\x60\xc6\x49\x44\x51\xd3\x72\x15\xaa\xc2\xd9\x5d\xcd\xab\x7a\xb9\x4c\x6a\x1a\xd8\x36\x3d\xad\x02\xc5\xc1\x48\x85\xb3\xbb\xca\xeb\x9a\xc6\x39\x57\x80\xfa\x74\x93\x5a\x3e\x9b\x9d\x15\xa7\x73\xbf\xfc\xd9\x1d\x95\xe6\x0b\xef\xfd\xce\xe6\x98\x8e\xbd\x7c\xae\x52\x9c\x67\xfd\xf2\x67\x77\x54\xe4\xb4\x8a\xd3\xd1\x9b\x69\x6d\xf4\x43\x3a\x68\x5c\xa1\xa8\x55\xe9\x1a\x67\x77\x36\xcd\x57\x73\x8e\x54\xda\x1d\x5f\x51\x5c\x9c\xd4\x1a\x85\x42\x41\xab\xd0\x35\xce\x27\x0b\xad\x5c\x70\x46\xb6\x33\x9f\xd7\xa9\xe5\xf5\x6c\xa1\x5a\x2d\xfb\xe5\x2f\x59\x57\xfa\xdc\x99\xab\x57\xe4\x22\x2e\x75\x50\xc5\x12\x80\x46\x55\x38\x7f\x4c\xa5\xb2\xe6\xac\x7e\x28\xf7\x9e\x5a\x9e\x04\x12\xf7\xcb\x5f\x80\x3c\xe4\x79\xce\xa1\x27\xc8\x4d\xad\x40\x2e\xcb\xa8\x0a\x17\x50\x20\xfa\x1f\x75\x0b\xe6\x72\xe4\x84\x8b\xb0\x40\x41\xd2\x30\x15\xa9\x86\xbe\x2b\x63\x34\x16\xbe\x2e\x0b\x96\x0c\xb4\x96\x0b\xdf\x74\x31\x2e\xd5\xd8\x15\x7d\xcb\x35\xe7\xd2\x8d\xd1\x42\xe4\xde\x2d\x58\x34\xd0\xa0\x7f\x43\x35\x33\x0d\x76\x6b\x11\x43\x56\xaa\x60\xa0\xad\x82\xd7\xd6\x2b\xde\xd9\x47\xef\xba\x02\xc6\x0e\xa4\x10\x71\xb9\x45\xd9\x48\x46\x62\x63\xfc\xb2\x3b\x89\x90\x6d\xb9\x17\xeb\x9f\x32\x5e\x0c\x3c\x6d\x4b\x88\xc7\x46\xdd\x65\xf9\x69\xd4\x8d\x8a\x9f\x18\x7f\x3b\xf6\x65\x6d\x86\x14\xd6\xe8\x61\x0b\xf2\xc5\x40\x9b\x9c\x0e\x30\xc6\x43\xd7\x88\xff\x72\x27\xa0\x81\xc9\x77\x23\x62\x23\x1a\x48\x1d\x8f\x6b\x38\x4e\x53\x8e\x17\xc5\xfd\x3a\x36\xc7\x0b\xaa\x9b\xda\xbe\x73\x38\xb5\x3f\x4c\x5f\x83\xe4\x19\x4b\x33\x67\xcd\x41\xf8\xca\x2d\xda\x49\x3c\x1a\x58\x4f\x81\xf5\x52\xbe\x10\x7e\x38\xee\x07\x74\x25\xa6\x30\xe8\xee\xa7\x98\x2d\x5f\xfb\x66\x39\x4e\x42\xf6\x2a\x58\x20\x94\x1f\x8e\xfc\x17\x46\x45\x10\xdf\xf1\xd9\x6c\xa4\x33\x46\xa3\x65\x53\x87\xa2\x97\xa6\xf9\x6c\x96\x1a\x8a\x93\xe0\x0d\xc5\xf9\x0e\xe5\x87\x86\xb2\xd4\xa7\xaf\x07\xf6\xb4\x72\x5f\x31\xab\x89\xdd\x5d\x36\xc1\xa5\x79\xb9\x98\x8a\x15\x6d\x9e\x2d\x07\x26\xd8\x49\xf0\xb0\xe2\x7c\x87\xf2\x53\xb1\x12\x9c\xe1\x84\xfc\xb3\xa7\x78\x51\xc8\x66\xd3\x67\x79\x3a\xcd\xe6\xb2\x39\x6a\x3c\x4e\x82\x37\x1e\xe7\x3b\x94\x1f\x8e\x02\xeb\x9e\xc9\x04\x26\x3a\x18\x1b\xff\x2c\x26\xe2\xa5\x05\x26\x8f\x5d\x20\xd0\x46\xd8\x55\x1b\x32\xd4\x21\x35\x52\x2d\x75\xa2\xc5\xd8\xa6\x3a\xd1\x72\x61\xe5\xc3\x29\x11\xf6\x2f\xe6\x3e\xd0\x62\xb8\x1e\x73\xb2\x22\x1e\xc8\xa8\x74\xba\x1a\x5d\x9c\x61\xaa\xe1\xfa\xe3\x70\x38\x3f\x8a\x16\x81\xca\x7f\x8f\xb5\x1e\x8a\x0c\x29\xc6\x7c\x88\x51\x2e\xe2\xcb\x65\xba\xdf\xa3\xf9\x8a\x14\x45\x87\x2c\x71\xf1\x9c\x1c\xd9\xf8\xe5\xd1\x9c\x44\x61\xcf\x07\xa3\x39\x89\xab\xfc\x6e\x8b\xbe\x49\x34\xa7\xfb\x41\x30\x9a\x13\xf1\xff\x4e\xa2\x39\x6d\x5a\xb3\xa7\x0e\xf2\x41\xdf\x44\xad\x0e\x9e\x49\x20\x0b\xa1\xc1\xeb\x28\x46\xd4\xc3\x04\xbb\x1a\x77\xa2\x39\x65\x64\xe1\x4e\x81\x36\x8a\x54\x34\x27\xf1\xc3\xe0\x25\x14\x1d\xa8\x8f\x1b\xd5\x48\x34\x27\xfb\x49\x3c\xa1\xe8\x2a\x23\xec\x72\xbf\xb6\x23\xd1\x9c\x44\x99\x7f\x86\xcf\x7a\x03\xd7\x27\xd1\x9c\x16\x62\xee\x39\xcb\xa1\x68\x1e\xa8\xa8\xd0\x6f\x06\xa2\x39\x3d\xbe\xf3\xfc\x9f\x19\xcd\xe9\x34\x51\xbe\x20\x9a\x53\xcb\x29\x27\xba\x95\x25\x5e\xee\xa9\x75\xe4\xf2\xbd\xb6\xe0\x57\x15\xb1\x6c\xcf\xde\x04\xbb\x22\xbf\xda\x9b\x3b\x51\xab\x0c\xfb\xa7\xc9\x22\x10\x60\x60\xcb\xf7\x79\xa9\xc2\x7f\xd8\xf2\x1d\x7f\xac\x34\xca\xb6\xd6\x17\x9b\x95\xd6\xc2\x7e\xee\x4b\xab\xca\xf8\xe1\xee\x0e\x47\x79\x6a\xde\x71\x27\x4b\x92\x78\x55\xe1\x95\xbb\x7d\x2d\x23\xf7\x2d\x3b\x63\xd6\x38\xbb\x6f\xf0\xd5\x4a\xed\x4d\xed\x1d\x0c\x56\x94\xa8\xc4\x9f\x70\xe0\x02\x9e\x1a\x6f\x30\x1a\x94\xf7\x73\x6e\x74\x29\x28\xd7\xbf\x3b\xa0\xa0\x0a\x59\x14\xb8\x43\xc0\x81\x08\xde\x78\xa5\x22\xd4\x6d\xad\x50\x7f\xd7\x0a\x82\xa2\x15\x5a\x1f\x15\xa1\x69\x4b\x4d\xf8\x16\xf9\x76\xbd\xff\x50\x6e\xf0\xcd\x5d\x49\x6f\x5a\xb5\x3b\xbe\xc9\x8f\xc7\x85\x2c\xd7\x6b\xe6\x66\xf5\x67\x5e\x68\x0c\x5e\x0c\x4b\xd8\x55\xf6\xf5\xee\xc3\xbe\xf9\xfe\xde\x7b\x3e\xa9\xd2\x73\xfd\x24\x6d\x96\x95\x9e\xe1\xc2\x5d\xbb\x2b\xa3\xc0\x26\xf3\x0e\x0a\xec\x30\x44\x30\xb6\x6d\xa9\xcf\x0f\xb4\x66\xf7\xa4\x3d\x77\xed\xd1\x49\x1a\x54\x04\x01\xfe\xe6\x0d\xf1\xf4\x90\xcd\x9c\x0c\xa1\xa4\x3f\x2f\x4b\x3c\xe0\x81\x5b\x3c\xee\xc7\x1a\x2f\x4d\x1a\x2f\xa2\xd1\x78\x7e\xb7\x47\xb9\x9e\xbd\x68\xcb\x42\xf3\x49\x1a\x8e\x9b\x76\xc9\xc5\xc7\x5d\x26\x0b\x7d\x35\x1f\x48\x40\x9a\xe0\xb8\xc2\xed\xf2\x83\xf5\xd4\xba\xe7\xa7\x8b\xb6\xf0\x30\x2a\x0b\xce\xc4\x4b\x2e\xce\x50\xf0\xa7\x57\x04\x67\x9d\xe7\x44\xe1\x43\x6a\xd6\x8c\xce\x4a\x36\x39\x11\xe0\x3e\xf2\x1f\xa3\x6c\xdf\x90\x3f\x3a\x4b\x4e\xac\x7f\x70\xb5\xce\x87\xac\xf3\xcb\x11\xf4\xad\x75\x24\xe3\x68\x08\x86\xdd\xa9\xc1\xca\xaf\xf1\x76\x47\x78\xe1\xdb\x92\x61\x03\x2e\x8d\x7c\x73\xc9\x2f\x1a\xa7\xf5\xbd\xb8\x5c\xcf\x9a\x27\x5e\xef\x9a\xc6\x13\x3f\xcc\x2a\xcd\xd3\x7e\x22\xbe\xf0\x0d\xd1\x5e\x37\x04\x65\xdd\x86\x3a\xf7\x8d\xc1\x7e\x21\x09\x5c\xfe\x5e\xd0\x9a\x35\x41\x6e\x8b\x27\xb9\x03\xf8\xb1\xba\x4b\x8e\x5e\x05\x68\xbc\xf0\xef\x9e\xc7\x01\x2c\x1e\x94\x23\x6f\x76\xcc\x9a\x21\x37\xdb\x08\x5e\x03\xe0\x1b\x28\x00\x9b\x76\xaa\x9f\x30\x9c\x19\xa0\x7e\xa1\x6f\x74\x72\x35\x5b\x32\xeb\xa2\xdc\xe8\x3c\xf0\x5b\x79\xa5\xac\x5a\xef\x5c\xad\xfb\xa0\x40\x7e\xe7\xbd\x69\xc8\x0b\xfe\x41\xcb\xf0\x1f\xf8\xef\x47\x8c\x03\x58\xef\x71\x63\x10\x6c\x7b\x28\x96\x78\x32\x5e\x43\x85\xb1\xdb\x0d\x8b\xdf\x0f\x6b\xfc\x7c\x66\x19\x28\xda\x18\xfc\x37\x95\x1b\xa2\xa1\x49\xb5\x81\xa6\x4b\xca\x7a\x20\xf1\x5c\xa3\xfd\x5e\x69\xd4\x96\xfc\x40\x1c\x48\x7a\xdd\xce\x4a\x82\x6d\x35\x00\x1f\x7e\x9b\x36\x6a\x43\x7b\xba\xaf\xa9\xba\x24\x54\x66\x0d\xe5\x05\x70\xbb\x6f\x09\xc6\xa8\x25\xda\x53\xc3\x81\x21\x43\xfa\x68\x98\x82\xc1\x29\xa8\xed\xe6\x52\xeb\x0a\xbc\x76\x2f\xac\x94\xac\x60\x58\x4d\x81\xcf\x3e\x35\x97\x52\x4b\x1a\xf0\x3d\xc1\xe0\xfd\xb5\xa0\xe1\x28\x4f\x40\x0b\x4a\x8f\x37\xb4\x93\x60\x73\x35\xf9\x5d\x06\x1c\x56\x04\xc0\x5f\xae\x5b\xe3\x44\x32\xb7\x5a\x13\xd1\x51\xeb\xc3\xc7\x09\xe0\x1f\xcf\x8b\xc5\x93\xf1\x92\x39\x07\x98\xfc\x79\xba\xaf\x0f\x3a\x43\x51\xac\xda\x4a\x5b\xb0\x5b\x36\xc0\x6c\xac\xeb\xcd\x95\x6a\xd5\x6d\xe9\x90\x30\x1e\x42\x17\xf6\x48\x16\x46\x07\xde\xea\x08\x7c\xcf\x96\x44\xc0\x21\xc6\x83\xbf\xbe\x01\xfe\x99\xc6\xdf\x03\x1d\x48\x1f\x4a\xa1\x0b\xf3\x56\x3f\xa1\x48\x70\xda\xb8\xfe\xa1\xc2\xb7\x96\x27\x11\xd0\xe0\x7b\xa0\xf4\x79\x45\x05\xfa\xad\x08\x2d\x53\xdb\xb6\xde\xd5\x67\xf4\xbb\xab\xf0\xeb\xd6\x88\x1f\x48\x27\x19\xb8\xca\xbe\x23\x1a\x56\x47\x3c\x41\x4f\xcb\xce\x40\x11\x47\x6b\x65\x26\x37\x04\x5b\x6b\xec\x8d\x4e\x5d\x50\xf6\xf7\xa2\xb2\x46\x51\xe5\x4e\xfd\xf7\xce\x1a\xe6\xb9\x0d\xe3\xb9\x87\x3a\x90\x6e\xb5\xe1\x7b\x2d\x7f\x54\xee\x94\xa9\x5d\x17\xa6\xb6\x08\x63\xea\xd6\x0c\xae\x07\x7d\x3f\xf8\xfc\x2a\x2b\xe4\xed\xe6\x90\x17\x55\x1c\xbd\xae\x6f\xcb\x79\x80\x75\xc1\x2f\x51\x74\x39\x58\xab\x27\x05\x47\x99\x13\xde\x55\x58\xbb\xf8\x37\x8a\xd8\x86\xa2\xd0\xe1\xc8\x6d\x92\x5c\x15\x60\x7d\xc8\xc2\x5a\xec\x4b\xfc\xdc\x6a\x28\x9d\x1a\xf4\xd3\x30\x64\x09\xd6\x8d\x0a\xd3\x20\xa9\x53\x5e\x13\x64\x7b\x2f\xd6\x2d\x10\x82\x8a\xd4\x31\x06\xaa\x28\xda\xaa\x3c\x69\xf1\x50\x77\x54\x87\x32\x02\xbf\x86\x6e\x10\xcd\xd8\xe8\xbb\xa7\x4c\xf8\x75\xdd\xc3\x29\xb0\x4b\x7e\xbe\x17\xb2\x28\xc0\x89\xc8\x25\xc1\xb9\x05\x5e\xd0\x14\x0c\x8c\x4f\xa0\x15\xc0\x2d\xfc\x46\x7c\x13\xf3\xb4\x77\xe0\x67\x36\xaf\xac\xb2\x52\x5d\x54\x8c\x86\x22\x57\x14\x21\x6f\x4c\x6a\x7c\x04\xde\xbb\xb1\xf0\xb8\x9f\x9e\x06\x4f\x7a\x4d\xcd\xf3\xc3\x4e\x9b\x5f\x4e\x85\x1a\x2f\x09\x35\x59\x1a\xf3\xc6\xbe\x21\x36\x86\x20\x5f\x46\x5d\x18\x8f\x38\x18\x8d\x10\x2d\xd4\x60\x2c\x35\xbe\x08\x98\x50\x46\x83\xc7\x27\x40\x74\x73\xf9\x28\x8d\x8b\x47\x4c\x1f\x62\x87\xbf\x57\x9a\x73\xfe\xc9\xe6\x1b\x06\x1d\x6d\xaf\x22\x00\x4d\xe0\xdf\x6e\x54\x3c\x8c\xeb\xa1\x9a\x93\x6d\x63\x2b\xf2\x76\x5b\xac\x0f\x2b\x22\xa2\x05\x51\x95\xc5\xfe\x48\xae\xf1\x7b\x79\x65\xac\x60\x2d\xae\xb7\x22\x0a\x56\xf5\x38\x2c\xe3\xdf\x43\x15\xe8\x39\xdb\xac\x1a\x1a\xac\x3d\xbd\x0f\xeb\x15\xf3\xcf\xa6\xcd\x2f\xf8\xa7\x8e\xa0\xd9\x3c\x52\x82\x0a\x2e\x5e\xd0\x6f\x44\xa3\x80\x9f\x82\xf3\x9b\xd0\xe5\x20\x48\x9f\x82\xed\xd0\xe9\x6a\xb4\x00\xe6\x05\x83\x35\x9e\x09\x5c\xe8\x6f\xf8\x2d\x6a\xb2\x9f\x0e\x70\xe2\xbf\x11\xbc\x9a\xac\x1a\x7b\x60\x56\x0a\x86\xb9\x65\x1b\xf8\x6f\x5c\xde\xb6\xc9\xdf\xf0\x9b\x4e\xaf\xf9\x72\x95\x6f\x29\xf5\x16\x5a\x4f\x00\xff\x2b\x86\xfb\x01\xad\xa9\xbd\x40\x7e\xe3\xb5\x35\xe7\x1f\x9c\xdf\x03\xa5\x29\x98\x9d\xa5\x8c\xd6\xd0\x83\xf6\x01\x65\x60\x3d\x75\x4c\x80\x7d\x8e\x22\x09\x02\x3c\xf7\x2d\xc0\x69\x57\x54\x01\x67\x7b\xf8\x36\x64\xf1\xae\x7c\x10\xa1\xef\x71\xb1\x03\xe3\xe5\x16\xf5\xc1\x84\xdf\xa1\xbc\x9a\x96\x6d\x99\xea\xb6\xb5\x52\x0a\x50\xae\xbd\x73\xcb\x57\xf8\x42\x13\xd1\xdb\x40\xd5\xb1\xa6\x88\xd7\x8f\x26\xcc\x8c\x46\x81\x47\xb1\x99\x6a\xda\xa0\x5b\x23\x6b\x5c\x7e\x90\xc9\xba\x1f\xe0\x48\x8a\x08\x36\x13\xd3\x26\xfc\x6e\x91\x35\xc4\xc3\x3a\xb9\x87\x35\x2a\xb4\x41\x2e\x89\xb0\x66\xf0\xb7\xa2\xf5\xc4\xe7\x62\x46\x34\x38\xf8\xb6\xea\x82\xa9\x09\x1a\x6f\x41\xff\x88\xa5\x75\xe0\xf7\x6b\x66\x8d\xbf\x15\x51\x7c\xda\x14\x45\x45\x06\x46\x64\x90\x20\x52\x08\x26\x11\xc9\xbc\xfa\x11\x45\x04\xeb\x28\xc2\x3d\x99\x6f\x8a\xef\x9c\x48\xd4\x48\x32\xa7\x64\x9d\x74\x10\x8f\x02\x7c\xa2\xc8\x95\xc0\x83\xd0\xdc\xbb\x70\x02\x8d\x40\xd9\x0f\x6d\x04\xf5\x3e\x3a\x88\x7f\x39\xb8\x87\xb2\x80\x4b\x6d\x0b\xbc\xb9\x29\x2c\x61\x2c\xe6\xb2\x36\x90\x0e\xed\x81\xd4\xb1\x60\x4c\x96\x92\x1d\xb4\x87\xd9\x41\xed\x9e\x57\x37\xad\xd5\xba\xa8\x64\x3b\xc5\xde\x50\x7d\x55\x06\xd2\xb6\xf5\x30\xca\xc1\x5c\x0c\x94\xe1\x11\x0b\x09\xc1\x50\x24\x69\x20\x4d\xd0\x6f\xf4\xdd\x12\xd6\xd3\x77\xc5\xba\x57\x86\x88\x91\x2d\x05\xcc\xcf\xd6\x92\xd5\x7a\xd7\x2c\x05\xd2\x7b\x26\xc8\xd1\xf7\x4e\x69\x20\x4a\xba\xbc\x1a\x6d\x5b\xc3\xd1\xb6\x3b\x94\x75\x79\xa4\x6c\xdc\x36\x1a\x82\x3c\x70\xdb\x6e\x2c\xad\x15\x56\xc2\xf0\x7c\xad\x51\xa0\xad\x16\x2f\xa2\xd0\x85\xc2\x00\x2d\x46\xa4\xea\x77\x31\xbf\xd6\x50\x64\xcd\x27\x0a\x57\x64\x0e\x11\xce\x6a\x12\xc2\x99\xb3\x26\x10\x8d\x29\x85\x16\x85\xbf\xae\xc3\x17\xbb\x30\xd7\xdd\x93\xe2\xe2\x13\xe1\x0f\xb5\x09\x6d\x8f\xb2\x50\x16\xe4\xbf\xd6\xa8\x0f\x34\x22\x0b\xa0\x4e\xd7\xed\x03\xe1\xdc\x20\xf3\xd2\x27\xeb\x10\x7d\x03\x5e\x0f\xc0\x56\xb2\x93\xc6\x92\x07\xfe\x22\xc1\xd8\x46\x75\xf8\x4f\x42\x7f\x37\x57\x76\xa5\x69\x70\x90\xae\x98\x82\x92\xdd\xc1\x5c\x4c\x04\x73\xf4\x36\x3c\xa9\x13\xe0\xf3\x89\xf8\x7d\x3c\x8d\xaa\x9d\x0f\xc5\x84\x05\x37\x04\xdd\x61\x22\x21\x1a\x3c\x29\xaf\xbd\xda\xfa\xae\xbd\xe1\x45\x18\xf3\xe6\x5d\xd9\xb7\x94\x77\xed\x59\x18\xd8\x12\xf0\x66\xa0\x3f\x19\xfd\x87\x78\xb4\xd8\xdd\x9e\xf6\xdd\xe5\xba\x5e\xe7\x41\x0e\x09\xa3\x87\xe6\xb2\xf2\x2c\x2a\x87\x7b\x79\x68\x0c\x9b\xc2\x7e\x21\x2f\xb9\xe5\x40\x04\x9a\xc6\x8a\x86\xaa\x4a\x4b\x04\xbb\x8a\xbe\xa7\x0d\xb3\xdf\x6a\x29\x23\x53\x5e\xc1\x3a\x19\x42\xff\x20\x63\xf1\x1c\x2f\xe5\xa7\xce\x60\x3f\x1b\x4d\xf8\xae\xf8\x6e\x2c\x65\x14\xb1\xd5\x8d\xa6\x38\xd3\x40\x4e\xf1\x45\x5e\xb2\xf8\x0d\x9e\xaf\x11\x8a\x26\x5a\x06\x1e\xea\xca\x55\x6f\xfe\x5c\x7c\x92\xbf\x47\x23\x81\xd0\xfc\x08\xa5\xd5\x01\xc7\xf7\xb6\x44\xd6\xa0\xb9\x17\x1c\x7e\x41\xd3\xb7\xcb\x37\x1e\xeb\x1f\x94\xfc\x76\x7e\x83\xdc\x7f\x47\x65\xba\x4e\x59\x67\x5e\xbd\x6f\xd4\x26\x5e\x6f\xa4\x9d\x06\x5e\xfb\x64\x5e\xc3\xbf\x5f\xf9\xc1\x08\xc8\xd0\x52\x1e\x0c\x6b\x2e\x29\xb0\xde\x11\x2e\x0d\xbb\x5d\x3b\x19\x0f\x92\x6d\xdd\xd7\x56\x9d\x79\x7d\xa9\x82\x1e\x64\x0d\x40\x37\x9e\xdc\x8b\xa3\x59\xe3\xb4\x5f\xc9\xca\x64\x28\xf1\x56\x1b\x70\x88\xa3\xc8\x02\x81\x34\x50\x54\x56\x61\xb4\x6e\x11\xfa\x00\xda\x01\xd5\x07\xf4\x04\xb1\x2f\x8e\x56\x5d\x60\xb1\x48\xce\xd6\x50\x1a\x0f\xfa\x82\xb1\x6f\xd7\xb6\xa3\x5e\xcd\xb0\x5a\x0d\xdb\x80\x39\x55\xeb\x35\xbc\x5f\x1a\x35\x78\x1b\xd1\x8b\x5a\x17\x30\x3f\x52\x5a\xc3\x19\xec\xb2\xec\x7d\xa3\xb5\x1c\xf5\x45\x01\xa8\xe8\xd4\x01\x9d\x64\xdd\x02\xe5\x63\xd9\x38\xd9\x88\x6f\x4e\xea\xb0\x26\xeb\x4b\x18\xeb\x32\x3b\x06\xdd\xf8\x09\xc6\x07\xcc\xca\x82\x71\x00\x6f\x50\x60\xce\x15\x4d\x26\xbf\x8d\x21\x26\x07\x45\xc6\xf2\x12\x68\x6a\xd4\x06\xfe\x2b\x80\xae\x22\x82\xce\x55\x5b\x2a\x4d\xd0\x67\x24\x5e\xc9\x76\x45\xa3\x02\xfa\x35\x3f\x6f\x0e\x24\xad\xa6\x70\xb2\x24\x48\x80\x93\x6c\xa3\xce\x03\x0f\xb5\x47\x88\xe7\xd5\xb1\xee\x60\xf4\x0a\x3c\x0e\xf4\x55\xbb\xcb\xdb\xc0\x87\x41\x5e\xf4\x79\xa1\xcb\xb7\xd6\x88\x1f\xe3\xf5\x87\xe7\x0c\xd3\xc7\x5e\x40\xeb\x5a\x38\x8d\x10\x7d\x3c\x52\xb4\x81\x68\xc2\x5b\x83\x38\x2a\x2d\xa5\x93\xa1\xdf\x4e\xa4\xda\x42\x5d\xd0\xc6\x8c\xf5\x1c\xe6\x17\xc1\xdf\x7e\xf9\x1c\x5d\x37\x4a\x43\xf8\xf7\x2b\x3f\x94\x9b\x32\x45\x2b\x32\x45\x2b\x23\x43\x5d\xb6\x60\x8d\x34\x4d\xde\x6a\x0c\xd6\x82\xa4\x58\x62\x6d\xa9\x8e\x9b\x0f\x9d\x1e\xac\xa1\x07\xe9\x64\xc0\x7c\x81\xdc\x00\xb4\x22\x7a\xaa\x2d\xa5\xb9\xb8\xe6\x14\xc0\xef\x06\xf0\x25\x43\x9b\x75\x12\x6d\x77\x54\x1f\x02\xae\xfd\xb9\x56\x25\x44\x07\xfc\x00\xed\x19\x10\x1d\x74\xe4\x86\xbd\xbe\xaf\x19\xc5\x4d\x0d\xe8\x05\xf2\x81\xb6\x3a\xb5\x1a\xe8\x67\xa0\xef\x89\xc0\x5f\x26\xc0\x77\x2b\xa0\xa3\x37\xa1\x2c\xcc\x09\x4c\xac\x02\xf3\x32\xd3\x0b\x35\x7b\x7f\x0f\x44\x05\x72\x41\x1b\xb7\x6c\x79\xdc\x84\xb9\x97\x4e\x2a\xac\xef\xd1\x04\xc9\xcf\xe6\xc0\x32\xa5\x93\xd2\xc2\x73\x6e\x70\x48\xb0\x75\x61\x9f\x30\x6e\x29\x5a\x5b\xb4\x33\x6b\x98\x5f\x24\x0b\x9b\x38\x52\xb2\x31\x92\x77\x7c\x47\x04\x98\xeb\x98\x8e\xf8\x11\xf4\x25\x3f\x80\x6e\x03\x63\x95\x06\x82\x9d\xed\x35\x05\x09\xe8\x84\x87\xba\x95\xfb\x9a\x92\x05\xdd\x6e\xdd\x84\xfd\x11\xe8\xef\x88\xae\x46\x32\x28\xbe\xa0\x43\x8f\x6a\x58\xbf\x34\x3a\x88\x05\x16\x28\xfd\x97\x2f\x1b\xa0\xff\x22\xe1\xe0\xea\x95\xa7\xa8\x0e\xc9\x0b\x62\x5f\x51\x46\x2d\x03\xc1\x61\x00\xc8\x83\xa5\x05\x7a\xf7\x4a\x84\xf1\x19\x8a\x2d\xdc\x59\xdd\x24\xfd\x15\xef\x5f\x0f\x36\xff\xc2\xd7\xd7\x6e\x94\x68\x9a\x66\x42\xfc\xcb\x8b\x8e\x8c\xf4\x40\x9f\x16\x57\xa3\x8f\xba\x80\xf5\x45\x2c\x7b\x5d\xfa\xc4\x32\xd8\xa5\x17\x57\xbf\x20\x75\x56\x34\x1d\xd5\x3f\xb3\xb7\x78\x1f\xe5\x76\x2f\x6a\x0e\xcd\x3f\xe8\x24\xb0\x7f\xc8\xf6\x6b\x4b\x79\x50\x33\x2a\xb0\xcf\xd0\x10\xae\xeb\x02\xe2\x55\x36\x37\x90\x0c\xae\x0f\x6b\xb5\x8b\xf8\x0a\xd2\x6b\x3a\x0f\x95\x55\x0b\xc9\x15\xdb\x6a\x61\xfe\x8e\xf6\x26\xb6\xda\x68\x89\x9d\xbb\x7e\xb6\xb1\x17\x94\xf1\x9e\x07\xfa\x83\x3a\xbd\x1a\x8c\x59\xfa\xe0\x73\x56\xab\x92\x07\x4d\x75\x28\x19\x68\xff\xa2\x89\x88\xbe\x80\xff\x00\x2c\x06\xcc\xbb\x81\x68\xa6\x8d\xf8\x1a\xa4\xa3\x76\x87\x12\x09\x43\x8b\xf5\x45\xc1\x06\xbd\x07\xd6\xbf\xac\xe0\xc3\x86\x82\xf4\xe0\xc8\xf4\x77\xc9\xe1\xe3\xa3\x81\xaf\xfb\xb8\x7a\x2d\x99\x67\x90\xb9\x0b\xc0\xcc\x52\x52\x78\xe0\x53\x16\xd0\x9d\xb4\x87\x31\xdc\x13\xbe\x05\xeb\xc9\xe6\xee\x17\xcf\x1c\xac\x07\xa2\xab\xb5\x26\xf2\x44\x5f\x94\xb5\x96\x5d\xb7\x45\xc3\x90\x79\xb4\xd5\x04\x5e\x26\xbe\x95\x14\xf4\x2d\xf0\x72\x4b\x7f\x5a\xb7\x78\x03\x31\x3b\x4b\x5e\x0d\x36\x59\x7e\xdc\xcf\x3c\x53\xe7\x41\x2d\xa5\x39\x43\xf0\x76\x0c\x5a\x9e\x8d\x3c\xda\x70\xa2\x70\x23\x7e\x00\x73\x9f\x15\x7c\x7d\x2b\x2b\x10\x3a\xc9\x0a\xc1\x08\xe0\x58\x47\x45\x7a\x6b\xae\x65\xa2\x75\x6a\x0c\xd1\x3a\x87\x71\x2f\x9a\xcb\xd1\xb8\xc9\x07\xf5\x5e\xe5\x7e\xd4\x86\xef\x42\x17\xf4\x27\x28\x9f\x1b\x2a\x06\x8e\xf0\x2d\x4a\x6b\x1d\xea\x00\x7f\xe4\x82\xfa\xaf\xed\xd0\xb3\xe2\xed\xc7\x4c\x5e\xcc\x22\x7a\xce\xa3\x75\x83\xa3\x92\x2f\x01\xcf\x06\xda\x8f\x45\x74\xde\x3b\x7e\x08\xb2\xf6\x54\x41\xe7\x35\xf0\x77\x45\x94\x6c\xa9\x56\x03\xae\x22\x18\x46\x4b\x18\x35\x40\x1e\xc9\x35\x71\xab\xa9\x80\x33\x11\xf4\x5d\x79\xc1\xc9\x75\xcc\x97\x0c\x69\x32\x55\x0c\xb1\xbc\x14\x66\x92\x21\x77\x87\xcf\x6b\xb9\x0d\x6b\xad\x65\x18\x62\x5d\x95\xdb\x22\x87\xf6\xfe\x00\xdf\x78\xdc\x87\xb9\xa9\xf3\xd9\x81\x84\xd6\xa1\x68\x55\x37\xa2\x62\xee\xc4\x07\x61\x2b\xd9\xb9\xa6\xb4\xac\x6b\x77\x47\x1c\x88\xd7\xd9\x66\x34\xf1\xfe\x02\x16\xea\x86\x6f\x06\xe5\x85\xbf\xa7\x48\xd3\x11\xc8\x7c\xd1\x3a\x48\xf0\x77\x58\x87\x18\x8d\x3c\x5d\xef\xe4\xfc\x26\x7a\x06\x92\x43\x20\x83\x54\xac\xa3\x08\x27\xbc\x66\x5d\xfa\x44\xeb\xd9\x99\x63\xe0\x89\xb9\x8e\x23\x57\xe7\x0f\x88\x9f\x47\xf4\x80\xb1\x82\xe6\xbe\x51\xb3\x2b\xbd\x3a\xf0\x21\x60\x78\xf0\xff\x0e\xc8\x5c\x19\xe9\x60\x98\x96\x45\x14\x0d\x5e\x51\x44\xbc\xf7\x46\xfc\xcc\x50\xd1\x14\x03\x7b\xad\x3c\x21\x09\x0d\xfa\x65\x0f\xf3\x73\xbb\x33\x90\x4c\x75\x03\xfc\xfb\x09\x08\x7c\xdc\xe2\x2d\xd4\x77\xe1\x60\x3b\xfd\x95\x91\x6c\xc7\xb4\xb6\xa6\x64\x0b\xe6\xdb\xad\x36\xea\x43\x15\xa0\xbd\x87\x06\xf0\x09\xb4\xe7\x16\x14\x1b\xad\x6b\x59\xc4\xba\x06\xf0\x19\x1e\x45\xa5\x87\x7d\xad\x02\xf2\xc3\xde\xb7\x11\x7f\x10\x81\x0e\x04\xc4\xf3\x41\xba\xd5\x97\xeb\x21\xe8\x12\x8f\xd2\x12\x56\x27\xbf\x47\x4a\x8e\x80\xf5\x5f\x5e\xeb\xf0\x78\xdc\x3c\xef\xcb\x7f\x98\xcf\x89\x4c\xcf\x27\x9a\xb3\x27\xd0\xb1\x61\x1e\xc8\xfa\x11\xde\xf1\xfa\x87\x7d\xa3\x86\x23\xf5\x7b\xba\xb7\xa9\x35\x10\x7e\x9d\xf9\x2c\xd4\xfd\x79\xc4\x11\xf1\x05\x34\x77\x06\xfa\x0d\x3a\x24\xd2\x1b\x80\xa7\xb6\x3c\xdd\xdd\xd3\xe1\xdd\xbd\x95\xcb\x8f\x9f\x85\x90\x1e\xd1\xfa\xdc\x7c\x22\x1d\xea\xbe\x25\xa8\xa0\xc0\x69\x63\xe9\x7d\xb4\x05\x4e\x55\x13\x6d\x34\xcf\x9c\x00\xbb\x18\x40\xde\xbc\x8f\xce\x22\x60\x0e\x1b\x64\x3e\x91\x2c\x82\xf9\x56\x80\x7f\x1a\x56\x0f\xcb\x54\xd8\x33\xf2\x68\x2b\x4e\xf6\x11\x2d\x90\x91\xfd\x9a\xad\xc2\xfc\x8d\x37\xa8\x5f\xd4\x0a\x8a\xe6\x7f\x40\x7a\x01\xa2\x0b\x3c\xbf\x3a\x82\x49\xc2\x75\x0c\x0d\x56\xab\x0a\xe9\xaa\x24\x4e\x86\x1c\x4e\x37\xa4\x2e\xb4\x8d\x44\x2c\x52\xf5\x9f\xa4\x77\xa9\x85\xe7\x4a\x80\xbd\xfc\x92\x9f\xd6\x97\x12\x82\xab\x8e\xd6\x34\xd0\x54\x1b\x8d\xa3\xc6\xaf\xb1\x1c\xc7\x7b\x5e\xd0\x3f\x41\x57\x41\xed\x37\xf1\x39\x92\x3d\xea\x88\xb6\x26\x89\x88\xbf\x0f\xac\x81\xa4\x54\xa0\x6d\x45\xf6\xe5\x35\xec\xb3\x5b\x87\x65\xb1\x3c\x5f\xd4\x3e\x3e\x00\x7f\x7b\x97\x04\xfa\x77\xc0\x42\xf0\x9f\x9d\xbb\x8a\xca\x75\xd0\xb9\xfa\x0c\xc9\xdd\xbc\xed\x1c\xce\xfa\xb1\x7f\x11\xff\xc5\x81\x91\x79\x3f\xbe\xaf\xc8\x47\xef\x35\x08\x97\x88\xa4\x48\x9e\xcc\xa1\xe2\x9b\xb3\xbf\xe7\xa8\xf3\xa6\xe6\x7c\xaf\xf8\x49\x87\x6f\xda\x75\x74\x1b\x22\xcc\x8c\xb8\xfa\x54\xfb\x38\xe0\x31\xae\x2f\x14\x10\x7c\x7e\x7b\xce\x8f\x85\xe8\x5d\x47\xfb\x22\x8d\x17\xef\x79\xd8\x7e\x2b\x28\x32\xae\x66\x8b\xa2\x01\xd2\xde\x92\xc5\x93\xd1\x91\xf8\x0f\xab\xb6\x33\x06\xf7\xc2\xc0\xa8\x97\x79\x75\x28\xec\x8c\x46\xde\xd0\x0c\x21\x6f\x01\xc1\xac\x7a\x1e\x7e\x05\x9b\xdf\x1a\x7c\x9d\xc2\x49\xcc\x0f\xc7\xbf\x7a\xe7\xb6\xe8\xb7\xcd\x53\xf8\x13\x51\xbe\xe2\x7f\xd7\x50\xbe\xec\x97\x97\xd0\xf7\x83\xff\x5d\xe7\x05\x15\x15\x72\xbf\x1b\x28\x40\x71\xdb\xcf\xbf\x47\x71\xa0\xc7\xe4\xde\x46\x12\x15\xaf\x3f\xf7\xdb\xed\xcf\xfd\x76\xfb\x73\xbf\xdd\xfe\xdc\x6f\xb7\x3f\xf7\xbb\x81\xf2\xbb\xfe\xb7\xd3\x9f\xf0\x8e\x82\x14\xcf\x79\x14\xa4\x98\xe3\x27\xb6\x30\x46\xc1\x87\x01\x6b\x1f\x28\xb8\x31\x0e\x52\x2c\xe2\xf3\xea\x23\xaa\x09\xe9\x4b\x14\xb4\x78\xaa\x40\x7a\x63\xfe\xae\x3e\x0d\x76\xb3\xad\x16\x4a\xd7\x58\x41\x90\xc3\xfd\x34\x48\xa0\x65\x21\x8b\xda\x87\xef\x0d\x4e\x57\xbc\x72\x1b\x14\x2b\x5c\xe6\x05\x13\xf1\x39\xf8\xdd\x72\x82\x28\x77\xbd\x20\xca\xe8\x9c\xd4\x8e\x9f\xbd\xe0\xcf\xdf\xff\xee\x07\x40\x3e\xbc\x1e\xf5\xc3\xfb\x4e\xff\xed\xdb\x35\xf3\x06\x96\x98\x1a\x59\x8b\x98\x0b\xd8\x79\xb6\x0a\xfb\x92\xea\xe8\x51\x82\xcd\xbb\xa0\x8d\xc8\xc5\x0f\xcc\xf0\xde\x8e\x89\xc8\xed\xfe\x08\xb5\xc1\x5a\xc5\xe4\x5f\x45\x14\x72\x94\xd0\x95\xd4\xd2\x2a\x3d\xbc\xc9\x52\xf5\xa1\xfd\x21\xa3\xab\x4f\x1c\x09\x5c\x25\x24\x22\xcb\xb6\x31\x53\xf3\x39\xac\x02\xd6\x71\x78\x6c\x71\x8d\xb2\x76\xf7\xfd\xe9\x76\x76\x72\x2f\x74\x47\x44\xdb\xf7\x57\x9a\x44\x2e\x70\xa1\xbd\x07\x5c\xbe\x8b\xb2\x6a\x2a\xbe\xd0\x9d\xa2\x3c\xc8\xaa\x0f\xc8\x05\x2e\xfa\xa7\xc5\xf7\x4d\x7e\x91\xb3\x66\x4f\x03\xb4\x1a\x1f\xf1\x30\x30\x57\x10\xec\x36\x2c\x1d\x05\x60\xd0\xd1\xb7\x30\x26\xab\xc0\x20\x50\xc2\x2e\x84\xc7\x17\xb8\xa8\x3d\xbc\xda\x25\x7c\xe1\xdc\xef\xa3\x0b\xdd\xa2\x3d\x2b\x74\x91\x36\x32\x46\xe3\xf5\x97\x3f\x3a\xf0\x90\x80\xc2\xa1\x12\x62\xc8\x85\xd6\x72\xde\xd8\x1c\x27\xe8\x32\x15\x2d\x88\xda\x2b\xd7\xe4\xdb\x5c\xc3\xee\x73\x0d\x5e\xd1\x45\x83\x9f\x8c\xee\x32\x6d\xf3\xc4\xdd\x03\x5d\x3c\xdc\x71\xc7\x76\x8d\xd7\xdb\x93\x37\x73\x94\x69\x2a\xf5\x26\x02\xb6\x9f\xed\xe3\xdf\x8a\x3c\x68\x92\x43\xb0\x39\xfc\x33\xcc\x0b\x32\xd0\x25\x62\xfa\xd9\xbe\x34\x50\x26\x4d\xb3\x63\xb5\x1f\xe4\x42\x5f\xaa\x37\x86\x39\xe1\x71\xbc\xa9\xae\xa7\xe3\xe2\x87\xde\xcc\x8b\x4b\xee\xe4\x10\xb4\x4b\xd8\x73\x10\x5b\xa3\xd3\xfc\x41\xb6\xe7\xa3\x51\x1e\x24\x53\x6e\xf0\xa0\xda\x9d\xa7\xc7\x7a\x77\xc5\xbf\x93\xb4\x2e\x4e\xeb\x36\x71\x5a\x6e\x3e\x82\xfc\xda\x20\x37\x58\xc1\x8e\xef\xe9\xb1\x01\x62\x2a\x8f\xd3\xa4\x2e\x4e\x1b\x34\x51\x9a\xfc\x81\xd3\xd6\x8f\x28\x2d\x3f\xc0\xe5\x34\x1b\xa5\xf5\x6a\x73\x94\xc6\xf5\x70\x39\xa3\x88\xd3\xa4\x3a\x4a\x2b\x76\x0b\x28\x6d\x53\x83\xb4\x53\x67\x85\xda\x93\xf2\x5d\x54\xee\x01\x09\x59\xc0\xae\xba\x26\x67\x7d\x98\xa9\x28\x88\xcf\xdd\xa3\xcd\xdf\xa3\x21\x8e\xf9\x76\x16\x70\x0b\x2b\x48\x57\xc4\x99\xdd\xb6\x79\x4e\xab\x15\x95\x41\x56\x50\x3a\xf5\xb9\x31\x31\x84\x4a\xa7\xb5\x56\x0e\x27\xb1\x6c\x75\xf2\x4a\x6e\x55\x33\x8c\xde\x76\xc0\xab\xd2\xe4\xb5\xb2\xe1\xcb\xee\x7f\x65\xf8\x8f\xdb\xf4\xf5\x43\x7d\x71\xa8\xef\x1e\x3e\x0a\xdd\xda\x47\xb9\xdb\x3f\xd4\xb5\x85\x36\xca\x9c\x84\x43\x26\xfb\x50\xe8\x1c\xca\x85\xce\x6a\x79\xa8\xc2\xdf\xf5\xbe\xa6\x08\x8b\xe3\x28\x93\x55\x1f\x33\xf6\x60\x60\x2d\x34\xa5\xd3\xeb\x17\xa4\x49\xa1\x56\xb5\x9f\x6a\x19\xfb\xa9\x20\x3d\xad\xed\x4e\xa9\x59\x96\xfa\x7b\xd8\x33\x8f\x7a\x99\xd6\x43\xe1\x75\xf0\x54\x1e\x4c\x47\x95\xea\x87\x52\xc9\x7c\x3c\x94\x07\x4f\x4d\x68\x6b\xaf\xcc\x16\x07\xa9\xfa\xd1\xd6\xab\x1f\x32\x37\x5b\xcc\xa5\xea\xe9\xa1\x20\xf1\x4f\xe5\x4d\xff\xd0\xa8\xab\xc7\xb6\x79\xa7\x9f\xec\xbb\x7d\xbd\x7a\xaa\x17\x3b\xb5\xde\x32\x73\xaa\x95\x85\xce\xa8\x5e\x03\x5a\xa9\x96\xb2\x8f\x99\xec\x78\xd3\xef\x6b\xd9\x7e\x7f\x9f\xcd\x64\x1f\x4f\x50\xbf\x2c\x35\x0a\xe5\x41\x5f\x7b\x2f\xbc\x69\xef\xbd\x46\xa1\x00\x7f\x8f\xaa\x27\x9e\xd4\xa9\x48\x8f\x66\x5e\xe0\x26\x8d\xa2\x2d\xca\xc7\x36\x82\xa5\xcb\x3f\x96\xf5\xc2\xa1\xac\x73\x87\xb2\x59\x38\xce\xf4\xe2\x5e\x86\xf4\x02\xa4\x1f\x77\xcf\xe6\xbb\x59\x9e\xb6\x0b\x9d\x42\xb7\x20\x1f\xf3\x66\xb9\xc5\xed\xb6\xa5\xed\x4b\xfb\x5e\x3f\x58\x6f\x9a\x59\x81\x7d\xcb\x87\x25\x7b\x6d\x57\x4f\xad\x8f\x87\x97\xb6\x2a\x1f\xd6\x7a\x53\x38\x6a\xf7\xcb\xf5\xf3\x56\x6c\xf7\xac\x43\x6b\xa8\xee\x4b\x66\x5e\xd4\x27\xf7\x4b\xdc\x77\x15\xf7\x3d\x86\xfe\x0e\xe5\x2d\x77\x9c\x99\xc5\xe3\x6c\x0b\x7d\x57\x71\xdf\x63\x6b\xb7\x2b\x41\xdf\xaa\xdc\x91\x60\x9c\x1f\xb3\x72\xd7\x18\xdf\x9b\xd6\x0b\xfc\x77\xbc\x37\xb9\x97\x8e\x69\xd9\x00\x27\xac\x48\xe3\xb1\xb4\xe5\x1a\x4b\xb3\xd4\x6b\x1f\x67\xa2\x7d\x54\x8f\x2b\xb3\xd4\x10\xb6\x05\x4b\x3e\x6e\xf4\xd2\x9b\x3d\x9e\x3d\xdf\x37\x1e\x2d\xee\x58\x34\xcb\xc2\xd6\xcc\xe5\xdb\x1a\x57\xcf\xe9\xcf\x7b\xf9\x0b\x70\xf2\x6c\x96\xc6\x35\xeb\x89\x93\x9f\xa4\x5a\x41\x90\x0e\xa8\x3e\xe0\x7c\x3e\xca\xd8\x0f\xed\xfd\x5e\xad\x6f\xb8\x92\xba\x9a\x98\xed\x82\xfc\xd6\x45\x38\x10\xf9\x52\xbb\x5a\x19\x3d\x9a\xe5\xf1\xd3\xeb\x7d\xcf\xb4\x4a\xbd\xc3\x06\xda\xdb\x58\xc7\x27\x73\x62\x36\x37\x9c\x3e\x5e\x4e\xa6\xd2\xc6\x1a\x8e\x96\x93\xfb\xfa\x9a\x1b\x0e\xe1\xb7\xb4\xde\xdd\x0f\xd7\x93\xde\x70\xbd\x6b\x8c\xd6\x93\xe9\x50\x6c\x4d\x87\x9b\x5d\xe3\x69\x55\x34\xfb\x1b\x2e\x3f\x46\x30\xbd\x3e\x65\x56\x5a\xa9\x9b\xdd\xe4\x61\x0e\xd4\xc3\x72\x3e\x06\x55\x9d\x5f\x95\x07\x6f\x07\x90\x9f\xba\xbc\xe4\xb6\x0d\x93\x9b\xb6\x97\x5c\xbe\xb9\x32\x50\x3a\x88\x26\x75\xdb\x35\x55\xf8\xe6\xcc\xde\x72\xd7\xa8\x6d\x64\xd4\xef\xb8\xbe\x91\xc7\x8f\xcb\xdd\xb4\xb9\x55\xa7\x2a\xc0\xd5\xde\xf2\x46\x6f\xc2\xbd\x15\x0e\xa7\x71\x7b\xbd\x13\xfb\x1b\x2b\x2b\x57\xdf\x7b\xc6\x47\x1f\x94\x6c\xb5\x34\x5c\xcb\x99\x81\x59\x14\xdb\x6b\x59\xef\x2f\xf9\x55\x3b\x73\x9a\x15\xe4\x02\x8c\xdf\xda\x2a\x4b\xee\x28\x41\xbf\xad\x25\x37\x6d\x88\x62\x67\xbb\xeb\xef\x57\x82\x8a\xe6\x71\xdb\x36\xe5\x63\xd3\xb4\xcc\x96\x29\x6f\x65\x53\x7e\x69\x9a\x9c\x09\xf0\xbd\x37\x57\xca\xaa\x5c\xef\xdc\x95\xeb\x23\x0d\xf6\xb5\x5b\x54\x06\xd2\x8f\xf2\x4a\xde\xf6\x4c\xb5\x74\xbf\xb2\x8e\x7d\x93\x7b\x6f\xaf\xd4\xf7\x9e\x78\xdf\x2f\xc8\xef\x7d\x5b\x50\xa7\x8a\x39\x11\xdb\x2b\xfb\x4f\x83\x15\xf8\xea\xb4\xf6\x35\x30\xae\xee\xf5\xc1\xd3\xaa\x5b\x98\x95\x6b\x0b\x8d\x3f\xf5\x27\xc3\xf9\x9d\xd6\xe5\x0e\x77\xe5\x5a\x2b\xf7\x58\xb5\xeb\xc0\x63\xa4\x7a\xed\xa5\x5c\x98\x2c\x61\x1c\x5c\x7e\xb0\x9e\x48\xf2\x7e\x26\xd7\xd7\x13\x71\xb0\xda\xf5\xda\x6b\xeb\x38\x34\x5b\x62\x43\xec\x56\xf2\xd5\x5c\xad\x30\xe2\xc7\xca\xba\x75\xdf\x83\xf4\x07\xb3\xd8\x90\xd7\xaa\x2a\xef\x61\x73\xb9\x56\xa7\xdd\xa5\x8c\xc6\xd5\x6b\x2d\xd5\x71\x5d\xec\x1f\x5b\x19\x6e\x5d\x47\x7f\x9b\x6a\xaf\x8d\xf2\x56\xea\x74\x20\xf6\xf7\x66\xf5\x5d\xae\x2f\x27\x62\x0b\xb5\x2d\x02\x8f\xe4\xa7\xaf\x07\xe0\x45\xc3\xd5\xee\x5e\x59\xf3\xab\x45\xe1\x63\xb1\xc0\x63\x68\xdd\x03\x4c\x6e\xba\xf9\xbe\x37\xc6\x83\x75\xab\xd1\x43\x69\x66\xf1\x5e\x5e\xcb\xaa\x8c\xca\x16\x6c\x07\x26\x2a\x7d\xbf\x05\x98\xe4\x69\xcf\x81\x49\x5e\xca\x80\xeb\x9a\x56\x28\x7c\x68\xc1\x74\x75\x5a\x17\xd1\xa9\xa9\x0a\x52\x5e\x36\x51\x1a\xc0\x5a\x02\x55\xce\x40\x65\x0b\x81\x74\xb5\x54\x5f\xf3\xcb\x35\xc0\xd1\x58\xab\x26\xcc\x6f\x07\xd6\xf7\xa1\x6d\x56\xf6\x8f\xe6\x9d\x56\x14\xdc\x31\xb4\x44\x65\x6d\x95\x86\xa6\x6d\x3e\x9a\xdc\x9b\x08\xe9\xc7\x4d\x69\x8b\x97\xd7\xcb\xce\x3c\x9a\xa5\x52\xfb\xe5\xa9\xb4\xd6\x5e\x06\xef\xdb\x46\xbe\x3d\xe5\xcd\xf6\x63\x6b\xd8\x16\x26\x30\x5e\xcb\x54\x96\x3b\xb1\xb1\xb2\x86\xed\x25\xa4\x67\x3e\xd6\x75\x07\xce\xc6\xd2\x1a\xc3\xbe\x7b\xd8\x06\xdc\x3e\x9b\x36\xfc\xcd\x0d\xbb\xb0\x9e\x1a\x6b\x99\xc0\x52\x7c\x9b\x8f\xea\x0b\xed\xd9\xe9\x73\xb1\x6c\x9d\x2a\xdb\xe7\xfc\x44\xdf\xb5\x0a\x66\x61\xda\xd6\xad\x41\x75\xf1\x94\xab\x18\x85\x97\xf6\xdc\x86\x3e\x79\x90\x1d\xef\xd3\xf6\x1e\xe6\x3e\xc3\x2b\x75\x98\xcf\xee\x5a\xcd\xc0\xbc\x8b\xca\xaa\x78\xdf\x5d\x71\xf9\xfe\x4a\xce\x40\x7f\x0b\x1e\xfa\x03\x3a\xcb\xdc\xaf\xb8\xed\x00\x68\x0b\xd6\xf2\xb4\xbf\x54\xf3\x00\xdb\x48\x36\xef\x60\x67\xa8\x02\x3e\xd5\x71\x73\x69\xe9\x00\xa7\x5e\x37\x65\xf3\x7e\x69\xa1\xb5\xd6\x40\xf8\x94\xd6\x40\xc7\xd2\x9b\xd6\xcd\x9c\xda\xe5\x9a\x32\x96\x96\x6a\x4f\x36\x2c\x58\x97\x9c\x8e\x78\x85\xb4\xb2\xa6\x7d\xa0\xb3\xe6\x5a\x86\xf6\x8b\xb2\x5c\xb3\xde\x0a\x4f\x03\xa0\x49\x2b\x3f\x00\x58\x36\x87\x97\xcc\xdb\xf1\x7e\xcc\xed\x66\xc7\xc9\x9b\x7a\xac\x9a\xe5\x43\xf5\xd8\x6c\x70\xda\xb4\xfa\xbc\x1b\x8b\xfd\xa5\x8c\x60\x01\x9c\xa9\xb0\x0f\xe6\x06\x27\xb5\x31\xb7\x9e\x9e\x79\xf9\xe9\xb9\x3e\x5b\x6c\xb6\xed\xb1\x7a\x00\xb5\xab\xb4\x79\x7a\x99\x3c\xbf\x3e\x37\xf2\xcb\xe2\x3d\xa2\xbf\x81\xd8\x16\xdb\xf5\xe9\x60\xfd\x92\x7f\x3f\xcd\xdb\xf5\xec\xa1\x99\xe1\xcc\xb2\xd9\x3e\xb4\xf4\x93\xf5\xda\x30\x5f\x4a\x2f\xeb\xfd\xb6\xc4\x4d\x4a\x39\xc3\x9a\x4c\x0a\xeb\xa7\x69\x7b\x2e\x1f\x9e\x17\xdb\xdc\xbb\xf6\xdc\x7a\x9f\x3d\x55\x2d\xd3\x5e\x5a\x66\x3e\xff\x84\xe6\x73\xd7\x2c\xed\xcc\x52\xa6\x6d\xed\x1a\xc6\x66\x57\x35\xe6\xe3\xf9\x6e\xb6\xe1\xe4\xea\xc9\xb4\x81\xc6\x9b\x2b\xd9\xec\x99\x72\x49\x5e\x59\x2f\x08\x9f\xed\x95\xf5\xde\x5b\x59\xf9\xde\x4a\x2d\xb5\x57\x20\xa3\xd6\xad\xed\xd3\xa6\xa8\x8f\xb7\x93\xc6\x2c\x92\x0f\x73\x06\xf8\x47\xeb\x5e\x5e\xa9\x66\x77\xc9\x1d\x3e\xcc\x82\x2e\xea\xcf\xbb\x92\x6e\xa1\x39\xee\xd0\x78\x1b\xae\x8a\x0d\x90\x64\x99\xe3\xe1\x65\x5c\xd8\xcd\x5e\xd4\x37\xeb\xa8\x99\xc5\xf7\xd6\xb3\x6c\xc8\xdb\x92\x56\x87\x36\xbb\x68\x7e\x57\xf2\xb1\x6b\x72\xf9\xd6\x4a\x7d\x01\x61\x91\x69\xad\x2c\x97\xb7\xe0\xdf\xf0\xfd\xd2\x35\xad\x77\xf4\xdd\x31\x55\x34\x67\x2f\x6d\x90\x91\x6d\xb1\x39\x7f\x9e\x3d\x3e\xae\x94\x7c\xb7\x06\xbf\x0b\x13\x7b\x59\xd5\x8c\x31\xf0\x59\xc4\x6b\x8f\x2d\xb3\x50\x1a\xce\x5b\xe8\x4e\x0f\xda\xe1\x00\x7e\x35\x33\xda\xb4\x36\x6f\x9b\xc2\xbd\x36\x6f\x55\xb3\x56\x53\x37\xf5\xd2\xb8\xb9\x56\xb7\x43\x34\xe7\x7b\x79\xff\xf8\xb2\x79\xc9\x4e\xca\xb9\x9c\x78\xdf\xf8\x10\x9e\x5e\x9e\x16\xbb\x17\xf1\xd9\xba\x9f\x2f\x77\xa5\x36\x48\x5b\x73\x3d\x15\xc7\xcf\x79\x21\x37\xc9\x6f\x8e\x4f\xc6\xaa\xd0\x68\xf3\xb0\xc6\xf4\x0e\xc1\xa9\x89\xe0\x47\x78\xec\xad\xe4\x52\x0f\x8f\x0f\xf1\xc7\xe2\x51\xd9\x4e\x74\xc0\xeb\x74\xb2\x9e\x1c\x23\xf9\x20\x93\xfb\x64\x9c\x66\xd7\x94\xf3\x4d\xb3\xd0\x6b\xcf\xb9\x56\x09\xe1\xd5\x78\xd6\xdb\x9a\xbd\x32\x33\xb9\xec\xa3\xd5\xe6\xeb\x07\x39\x63\x6f\xef\xf3\xcb\xd7\x97\xfb\xe7\x97\xfb\xfb\xb7\xf9\x4b\xce\xde\xe5\x8f\x4b\xb1\x95\x7f\x15\x26\xb9\xbb\xe7\xe6\xbb\xa6\xef\x4e\xa5\x6d\xf3\x65\xac\xab\x19\xe0\x79\x63\xcc\xfb\xf0\xda\x90\x07\x77\x46\x33\x97\x59\x34\xaa\x2f\xd3\xa7\xd6\x56\x1f\x3f\x16\x55\xae\xb5\x04\x3e\x51\x2c\x08\x4f\xb3\xea\xbb\x52\x5f\xc9\xf7\x1d\x03\xc9\x87\x02\xe2\x56\xa7\xdc\xa2\xf9\x58\x58\x34\x7b\x02\x92\xe9\x39\x61\xdc\xae\x66\xf7\xb0\x4e\xc7\xfd\x4d\x0b\x98\xc9\xee\xfe\x61\x55\x9c\xb6\xc5\xee\x16\xf1\x8e\xfe\xb6\xf5\x02\x4b\x7d\x3a\xd9\x4c\xf4\xc7\x8d\x9a\x81\x35\xdc\xeb\x22\xb9\xbd\xda\xe9\xbd\xad\x9c\x51\xd7\x93\xf1\xc3\xba\x08\xf2\x9d\x2b\x3d\x02\x4e\xda\x5b\xd5\x54\x97\x13\x13\xe4\x70\x63\xb8\x30\xcc\xe1\xc2\x2a\x16\xcd\xc2\xb8\xad\xab\xf3\xa2\xf1\x64\xc8\x6f\xd6\xbe\xfe\xcc\x1d\xb5\x65\x6b\x83\xf8\xc8\x50\xb7\x0e\x40\x63\x2f\x8d\x85\xdc\xaa\xae\x54\xb4\xd6\x10\x9c\xef\xf2\xc2\x1a\x64\xc8\x3a\x06\xda\x28\xe8\x0d\xfd\xb9\x5a\x45\xf0\xcf\x9f\x0f\x15\xb1\x79\xa8\xcc\xd5\xae\x0d\x6b\x64\x6b\xda\x8f\xd0\xfe\xb6\xab\xab\xd5\xe2\xba\xa9\x0f\xb4\x62\x37\xb7\x2e\x94\xfa\x4b\x6e\x2f\xf7\xd4\x7d\xdd\x90\x8f\x35\xe0\x7b\xc3\x65\xeb\xbe\xb9\x91\x8f\x8f\xb0\x36\xe7\xb0\x66\x1a\x2b\x90\xa1\xa6\x9c\x01\x9e\xb3\x55\x90\x4c\xc5\x7c\x89\x43\xf3\x97\x01\xf9\x7a\x44\xb2\x0e\xe6\x1e\xe4\x2c\x97\x77\x74\x8f\x6d\x73\xc9\xe9\xb2\x69\xc1\xdf\xc6\x6a\xa4\x0f\xc6\x23\xe0\x5f\x5d\x4c\x83\x1c\xd0\x38\xe2\x63\xaa\xf3\x1b\xb5\x69\x95\xd0\x37\xd0\x38\xf5\x2d\xbf\x7c\x2c\x5e\x8e\xd2\x0e\xa8\xf2\x15\xf0\xf0\xca\x1d\xf5\xad\x75\x7c\x85\xfe\xef\xd7\xea\x8b\xb2\x56\x4b\xca\x5a\x2e\x21\x7e\xdf\xc5\x32\x12\xf3\x13\x73\xb0\x99\x8c\x15\xd0\xb3\x54\x5c\x0e\xf1\xb2\x49\xa3\x85\xf4\x1e\xb1\xd5\xe8\x80\x4e\xd0\xdf\xc8\x99\xd1\x0a\xf3\xf9\xe3\xa3\xd9\xea\xd5\x90\xee\x65\x58\x19\xd1\xb4\x0d\xc0\xcf\xb8\xbd\xd9\x89\xd3\x4d\xab\x34\x7a\xde\x89\xa0\xaf\x4e\xdb\xcf\x16\xcc\x51\x6b\x58\xdf\x34\x33\x8a\x0e\xb8\x00\xde\x5a\x33\x55\xb1\xb5\xe0\x96\x77\xcb\x42\x06\x70\x0f\x0a\x18\x77\x0f\xe3\x1d\x8a\x46\x93\x93\x61\x6d\xca\xa6\x6a\x36\x40\x87\x40\xba\x18\xe8\x3b\x26\xfc\xd6\xd1\x37\xc2\x49\x13\xbe\xe1\x3f\xef\xf7\x3d\x2e\x03\x3a\x85\x28\xdf\xc3\x5e\xe0\xd0\x16\x94\x12\xa2\x31\x90\x67\xf3\x36\xf0\xf4\xc7\x15\xa2\x97\xe2\x3d\xa2\x99\xb1\x69\xaf\xe6\x58\x0e\x80\x3e\x68\x4d\x7a\xeb\x75\x49\x1c\x3c\x4f\xc4\xf9\xaa\x58\xea\x3e\xc3\x1c\xbe\x70\xfb\xfa\xce\x3a\x1a\x46\x11\xe4\x4e\xe1\xfd\x61\xce\xc1\xfe\x08\xf8\x80\x30\x99\x57\xd6\xcd\x23\xac\x29\x87\xdf\x17\x5b\x99\xd5\x73\xa9\xbd\xc0\x32\x78\xd8\x5a\x4e\x06\xd5\x75\xf3\xbd\x8d\xe8\x6b\xd9\xdc\x55\x16\xcd\x5c\x15\x64\x55\x01\x68\x46\x85\xfe\x1e\x75\xb9\x8a\xe8\x06\xf8\xee\xb2\xb4\x6c\x96\xa4\x85\x75\x2f\x2c\xac\xc7\xcc\xf2\x29\xdf\xd4\xb9\xa3\x00\xf2\xb1\x6f\x14\xef\x91\x0e\xf2\xb0\x2c\x0e\x9b\x1b\xd5\x7c\x30\x77\xbd\xfb\x35\xf7\xf2\x60\xb6\x3a\xb2\x39\x19\x82\x9e\x62\xf6\x8d\xc9\x50\xd8\x70\xe2\x54\xbf\x1f\x64\xb6\xd6\xb0\x2f\xd6\xf2\x30\x46\xb1\x6d\x70\x19\x69\x8d\xe8\xae\x38\x6c\x6f\x14\xd3\xae\x7e\x18\xc0\x53\xa6\x9d\x25\x97\x91\x57\x1c\xd0\xde\x04\xe9\x71\xc7\x3e\xd0\x5b\x7f\x65\x01\xcf\xe0\x8e\x88\x0e\x5b\x20\x77\x7b\x50\xa6\x09\x7a\x4d\x7b\x89\x64\x99\xaa\x03\x8e\x91\xdc\x3b\x82\xbe\xf4\x50\xee\x09\x98\xee\x10\xef\x43\x74\xd5\x07\xfa\x42\x3c\xaa\x8f\xdb\xb5\x5c\x9a\x06\x39\x6a\x95\x9a\x84\xf7\x94\xd0\x77\x0f\xbe\xd1\x3c\x8e\x17\xbb\xfb\xda\x8a\x53\xe5\x35\xd7\x1b\x18\x6a\x31\xb3\x2a\x94\x7a\x86\x9c\xbb\x5b\xa9\x22\x8c\x57\x6c\x3c\xab\x47\xd0\xcd\x41\x57\xdf\x0d\x7b\x5b\xf5\xa8\x03\xbd\x34\xb6\xd6\xfd\xc2\xd8\x95\xe0\xf7\x11\xa4\xa2\x08\x7c\x01\xc6\x24\x67\x80\x57\xf4\x1e\x90\x3e\xb7\x01\x1d\xc5\x9c\xa0\xf5\xa5\x8f\x96\x56\x06\x64\x66\x09\x8d\x0b\xe4\x3e\xc8\xd9\x16\x1e\xa7\x0a\x3a\xb9\xb0\x51\x4b\x03\x4c\xa7\x86\x09\xb4\x0a\xfc\xb9\x05\x7a\x95\x35\x55\x40\x07\x02\x3a\x7e\xc7\xba\xed\x96\x9b\x3e\x19\xbb\x9e\xb0\x7e\x2e\xf5\x75\x98\xff\x09\xac\x13\xcd\x3a\xbc\x2e\x1b\xdd\x2a\xc8\x07\xb4\xfe\x40\xc7\x05\x1d\xc0\xda\xde\x9b\xea\x0b\xfa\xbe\x77\x74\xd8\x7b\x2c\x47\xb0\x2e\x0b\xe9\xa0\xf7\xfa\xf4\x07\x7b\x66\x39\x45\xaf\x06\x39\x78\x27\xb4\x3f\xad\xb7\x9b\x77\x8b\x3a\xf0\x95\xdc\xa6\xf4\x0e\xa2\xad\xb7\x7a\x9d\xe8\x79\xb4\xd6\x36\xdc\x56\x5d\x16\xf5\xe6\xc6\x1a\x8f\x97\x2d\xd8\x1f\xc9\x63\xd8\x17\xf5\x80\x36\xc6\x88\x27\xa1\x7d\xd1\x03\xf0\xdc\xc1\xa6\xd5\x18\x03\x5e\xc6\xeb\xdd\x74\xb0\xe1\x32\xea\xaa\xa8\x77\x61\xcd\xe7\xcd\x52\xee\xce\x2a\xf4\x56\xf3\xd6\xfc\xc5\xcc\x37\xda\xea\xd3\xa3\xa1\x36\xf8\xff\x97\xbd\x6f\x6d\x6a\x23\x57\x1a\xfe\xfe\xfe\x0a\xd7\x79\x6a\x6b\xc3\xc1\x76\x7c\x1b\x1b\x6f\xaa\x52\x87\x90\x9b\xc9\x85\x10\x36\x0b\x4e\xbd\xfb\xc1\xd8\x63\x7b\xc0\xf6\x38\xbe\x40\x58\x8a\xe7\xb7\x3f\x2d\x69\x34\xa3\x4b\xeb\x32\x06\x12\xce\x2e\xbb\x87\xb3\x30\x6a\x75\xb7\xd4\xad\x56\xeb\xd6\xdd\xd9\xae\x9c\xb6\x0e\x77\x8f\xc9\x78\xdb\x27\xba\x01\x63\x00\xe6\xee\x06\xf9\x5e\x87\xef\x30\xef\x4e\x3f\x32\x9d\xe8\x7d\x1e\x05\x47\xaf\xe8\xba\xe8\x2b\x8c\xf9\x6e\xef\x78\x1c\x4c\xdf\x4c\x3b\x60\xa9\x83\x11\x9d\x1f\xa3\xda\xba\xdf\xeb\xb5\xe3\xbd\x4f\xfd\x26\x59\x07\x1e\x5c\xf4\xff\x7a\xd1\xdb\xbe\x98\xbd\xab\xbd\xff\x46\xd6\xb8\x6c\x7d\x77\x32\x9e\x1f\xbd\x26\x3a\x3d\x0a\xde\xec\x9d\x35\xde\x1d\x8e\xe2\xda\xde\x59\xf7\xe0\xe3\xa8\x4b\xc6\xcb\xbb\xf7\xa3\xce\xe4\xe9\x38\xde\x7b\x33\xea\x1c\xef\x81\x9f\xf9\x82\xdc\x01\x1d\x77\x8e\x5e\x11\x7f\x78\x1c\x83\xed\x20\xb2\xeb\xae\x41\x3f\x7a\x1f\x89\xff\x0f\x3e\xf3\xe7\xf1\xfe\x1b\xe8\x0b\xd0\xc5\xaf\x07\x7b\xe7\xf1\xde\xe7\xd1\xfe\x8b\xa7\xe7\x9d\xbd\x8f\xa3\x78\xd9\x61\x78\x0f\xf6\x47\xf1\x74\x2f\xea\xbe\x7b\x33\x02\x3b\x35\xee\x12\x7c\x47\xf0\xfb\x80\xd8\xaa\xfd\x61\xbc\x6a\x11\x7f\x7f\x3f\x5e\x5f\xbd\xee\x5e\x34\x5e\xec\x82\x8c\x89\xde\x05\xe0\xd3\xef\xef\x7d\x02\x9f\x85\xe8\xe2\x87\x33\xd0\xa5\xf6\x0e\xe8\x6e\x97\xcc\xe5\xe0\x27\x81\x0d\xa5\xeb\x28\xd0\x57\x3a\x9f\x1e\x82\xfc\x89\xbf\x4a\x6c\x47\x97\xda\x36\xf8\x39\x26\x6b\xbb\x37\x51\x1c\xbe\x07\x5e\xc0\x9f\x3c\x22\x6b\x8d\xa3\xf6\x65\x1d\xfc\xce\xe5\xc7\x17\xdd\xa3\xd7\xa3\x46\xb4\xc7\xe7\x29\x98\xbf\x60\x9c\x6d\xc3\x5a\x21\x04\xbd\x78\x43\xf4\xfc\xf2\xfc\xfb\x49\x7d\xff\xa2\x3f\x9e\xbf\x7d\x5f\x7f\x39\x5c\x82\x5f\x3b\xac\x6f\x83\x2f\x18\x3d\xbd\xa8\xbf\x38\x0c\x66\x66\x3f\xff\xac\xfe\x07\xac\xeb\x2f\x47\xc7\xef\x17\xf3\x68\x3e\xa7\x53\xf3\xb4\xbb\x88\xd7\x17\x51\x73\xb2\x3d\x7f\xfb\xee\xbc\x3f\x1f\xac\xa2\xda\xa8\x13\x55\x3a\xa4\x4f\xc1\x46\x90\xb5\x32\xd8\x61\xb0\x1d\x7b\x6f\x61\xfe\xee\x26\x6b\xe6\x46\x78\x10\xcd\x61\x1c\x82\xef\x5f\x85\xfe\x99\x35\x0e\xfa\xc3\xaf\xf3\xf6\xf4\xe4\xdb\xd1\x80\xcd\xbf\xaf\x88\x0f\x3f\xec\x7c\x6e\x46\xf5\x7e\x27\xaa\x1e\x91\xb5\x40\xb2\xee\x81\xf1\x19\x37\xc1\xa6\x1e\x02\xef\x4b\xc2\xe7\xcb\xa8\x73\x0c\x73\x06\xc8\xb4\x33\x7d\x05\x7c\xb6\xe6\x60\xa3\xf9\x5a\x0c\xd6\x19\x60\x17\xd7\xbf\xef\xed\x06\xb3\xb3\x4f\x61\xf3\x75\xf7\x8a\xcc\x69\x5f\x60\xcd\x59\xef\x34\x5f\x7e\x68\x7f\xef\xbe\x06\xdf\xfb\x13\xc8\x87\xce\xb3\xa0\xa3\xaf\xf6\x3e\x5c\xb4\x5e\x5f\xf4\xcf\x06\x23\xb0\x6d\x64\xde\x25\xeb\xbe\x38\x82\x75\xde\x97\x4e\xe7\xaa\x77\xbe\x7d\xf5\x01\x7c\x98\x63\x68\x1f\x8c\xcb\x2e\xcc\x32\xd0\x2e\xb2\xfe\x86\x39\xfc\x23\xc8\xe3\xcb\x5f\x4f\x97\x7f\x7c\xbe\x3c\x26\xb6\xf2\x1d\x5d\x97\xc3\x58\xa0\xbe\x17\xd8\xd4\xb3\xfd\x57\x9d\xf8\x69\xff\xac\xf3\x74\x17\xd6\x87\x20\xf3\x6e\xed\x70\xef\x53\xf8\x62\xfb\xaf\xca\x1f\xb3\xce\xfb\xc9\x71\x7d\xf1\x3d\xda\x6f\x7e\x9d\x7e\xfc\xfd\x68\xfb\xf2\x6a\x30\x9a\x7f\x0f\x83\xc6\x45\x6b\x7e\xf9\x85\xac\xc5\xf7\x40\xa7\xea\x47\x30\x87\x9e\x77\x40\x8f\x62\x62\xab\xc1\xae\xc1\xa8\xa9\x83\x5d\x3a\x67\x3e\x1e\xb1\xe7\x30\xd6\xc0\x3e\x77\x2e\x5a\x04\x96\xf0\x49\x7c\x05\xf8\x01\x9e\xc1\x0f\xe9\x40\xff\xc4\x94\x5f\x62\x9f\x29\x5f\xe0\x87\x5c\x70\x3f\x64\xdc\x68\x42\x3f\x0b\x7e\x48\x4c\xed\x27\xee\x87\xc4\xd3\x8e\xe0\x87\x5c\x7c\xfd\xce\xfd\xb7\xbd\x8f\xd4\x7f\x69\x00\x8f\xc4\x26\x35\xae\x8e\xce\xf7\x8f\x8f\x27\x5f\x7b\x7f\x4c\x82\xa3\x93\xe9\xfe\x1a\xfe\xfb\xe6\x33\xe0\x3e\x00\x79\x80\x1d\xde\x83\x76\x5c\xc1\x5a\x0c\x6c\x6f\xb7\xf6\xfb\x5e\xe7\xea\xe8\x0c\xfc\x09\xa8\x47\xea\x1f\x9c\x13\x5b\x0d\xb6\x92\xf2\xd2\xa8\x01\x6f\x47\xb0\x6e\xfe\x46\xec\xfc\x3e\x99\xf7\x60\xfc\xb2\x79\x27\x6e\xbe\x39\xeb\x86\x1f\xc6\x97\x64\xed\x70\x05\xed\x81\x39\x8e\xfa\xf3\xd1\xfb\x44\x16\xef\xa9\xef\xd9\x85\x71\xd5\x99\xc2\xba\x1d\xec\x55\x63\x0a\x36\xf6\x18\xfc\xfd\x6f\xfb\x60\xc7\xc1\x9b\x27\xff\x3d\x27\xf3\xd3\x3b\xf2\xfb\xde\xc7\x6f\x30\xc7\x7c\x7b\x3f\xed\x1c\x1f\x8f\xf6\x7b\xbb\xe7\x6f\xb7\x61\x5e\x5f\x35\xc7\xb3\xda\xee\xb0\xd1\x7c\x49\xfd\xc4\xce\xaa\x3d\xae\x37\xf7\x86\x8d\xed\x17\x51\x7d\xfb\x2d\xac\x3e\x76\xc7\xdd\x77\xaf\xc6\x9d\x6a\x6d\x3c\x9b\xee\x0e\x47\xe3\xa7\xc3\x93\xe8\x65\x3f\x66\x73\x08\xd8\x89\xed\xb3\xb7\x57\x07\xc3\x4e\xf0\xf4\x2c\x3e\x38\x18\x35\x60\xce\xab\xd7\x0e\xc1\x5f\xdc\x39\x6b\x1c\x7d\xa0\xf2\xe9\xd2\xb9\x97\xc9\x07\xf4\x97\x8c\x4b\x2a\xa3\x6e\xef\x20\xf5\x15\x2f\xcf\x42\x18\x1b\x87\xe0\xe7\x7d\x64\xfa\x40\xfa\x66\x17\xc6\xc6\xe0\x1d\x8c\x8d\x43\xba\x8e\xa5\xf3\x31\xc8\xeb\x12\xac\xc3\xe5\x31\xb1\xcd\xfb\x54\x66\x1d\xb2\x8f\xd5\x05\xd8\xd5\xbb\x17\xa7\x2f\xeb\xfb\x64\x7f\x84\xc8\xa0\xb1\x7d\x00\x7d\xfd\x91\xca\x9b\xd2\x27\x7c\xc0\x9a\x81\xc9\x9b\xfa\x56\x4c\x97\x88\x9d\xef\x7d\x60\xbc\x80\x0d\x03\xba\xad\xa7\xcb\x99\xa0\xa3\x87\x89\x0e\x10\x5c\x30\x7e\xbf\x7d\x8a\x83\x83\xaf\xe7\xfb\xe1\x27\xf0\xb5\x7e\x3f\xfb\x0a\x3e\x7b\xdc\xec\x9d\xcd\xa3\x0f\x53\x62\xf9\x41\x2f\xe7\x9d\x75\x38\x0a\x06\xed\xc9\xac\x79\x18\xc6\x93\x2a\xd8\xf7\xcf\x60\xd7\x77\xcf\x1a\xe0\xc3\x74\xc2\x5d\xf0\x11\x3f\x41\xdf\xb5\xa3\xc6\x31\xc8\x2f\xda\x9b\xc4\x7b\x87\x20\x8b\x16\xf8\xe8\xd0\xa7\x6f\x76\xf7\x3a\x7b\xbb\xc3\xf8\xeb\x0e\xb4\x15\x7e\x8e\x81\xb7\xab\x7d\x98\x7b\x61\x4d\x77\x45\xe6\x20\xf2\x37\xd9\x83\x22\x6b\x69\xa2\x27\x1f\x49\xbf\xc0\x9c\xf1\x61\x4c\x6e\x93\x90\xb5\x75\x9c\xe8\x0a\xf4\x73\x14\x43\xdf\xc4\xc9\x38\x8f\x49\x9f\x11\x9f\x93\x8c\x23\xe2\x77\x46\xb0\xfe\xa7\x3a\xf4\x32\x8a\xdf\xbd\x4f\xe4\xc5\xfc\x9e\x46\xf4\x39\xda\x27\xf6\xfc\x1b\xac\xbb\xa0\x5f\xe6\x6f\xde\x81\x7f\xf1\x3b\xf9\x2f\xf5\xcd\xc9\xbe\x50\x37\x3a\x64\x3a\x7b\x7c\x34\xfa\xfa\x75\x7b\xd6\x79\x77\x32\xfa\x0a\x3e\x49\xfc\x06\xe6\xe5\x37\x6f\xd3\xfd\xc5\x4b\x58\x5b\xc6\x20\xe7\xc6\x0e\xdd\x67\x7d\xfd\x09\x7e\xba\xe4\x12\xd3\x2e\x3b\x08\x1c\xed\xbe\x38\xa7\x6f\xcd\x76\xd3\x07\x6f\x9f\x2f\x5f\x7f\xd8\x3d\x26\xa7\x45\x2f\xab\xa4\x74\x8c\x9e\x3b\xbd\xc2\x4f\xa5\xc8\x19\xec\xa7\xd7\x93\xdd\xf0\xe5\x53\x7a\x50\x1c\xf2\xab\x5c\xca\xc3\xb1\xf4\x88\xb4\xc3\xf8\xd8\xa5\x4c\xf0\x07\x66\x5f\xc8\x59\xc3\x79\x02\xd7\xe1\x95\x0f\x77\x47\xb0\xe8\xba\x7c\x71\xb1\xfb\x71\x67\xef\xd3\xe5\xfb\x8b\x17\xeb\x9d\xb7\x2f\x2f\xa3\x8b\xbd\x93\x9d\xfd\xbf\xbe\x77\x9e\xbe\x9e\x3c\x7d\x5a\x27\x0f\xce\x18\xe6\x83\xee\xee\xce\xee\xef\x97\x2f\x3f\x89\x0f\xe5\x86\xd9\x43\xb9\x4f\xc9\x43\xb9\xe1\xd3\xb3\x37\xa3\xc3\xc3\x17\xe3\xdd\x17\x2f\xb7\x2f\x3f\x35\x46\xdb\x67\x2f\x9b\x9d\x4f\x67\xbb\xdb\xbb\x2f\xeb\x97\x07\xed\x51\xb3\x46\xcf\x97\xac\xe7\x70\x48\x47\xd0\x87\x75\x3b\xc2\x01\xfc\xe2\x8f\xc9\xfb\xfd\xc7\x03\x78\xaa\x6d\xfc\x94\xf5\xf1\x40\xfc\xef\x79\x20\x4e\xce\xba\x7f\xdd\x72\x87\xd8\xd0\x9e\xb3\xf3\xdc\x13\x69\x38\xc9\xff\x3f\xac\x54\x9a\xbf\x9a\x02\x6f\x24\xe0\x7a\x40\x07\x1f\x18\x23\xbd\xe0\x57\x3d\x80\xc4\xbc\xb7\x58\x45\x24\x5e\x95\x83\x49\x63\x25\x94\x84\x31\xd2\x82\xc8\xb4\x1e\xc7\x00\x65\xa0\x91\x30\x00\xd0\xfd\xb1\x1e\xcf\x53\x28\xa4\xc1\x11\xa7\xf3\x55\x9a\xc6\xe1\x59\xbc\x5e\x91\x37\xee\x42\xe8\x9a\xde\x7c\x0e\xb0\xbd\x19\x7d\x17\x3f\x0b\xb3\x08\x33\xbd\x79\x69\x0c\x02\x9d\x10\xa1\x96\x0c\xa9\x07\x2a\x48\xe6\x01\x3d\xbc\x8a\xaa\x1d\x4a\x4e\xc0\x6a\xa3\x26\x04\x16\x2c\x37\x5b\x3b\x4d\x12\xcb\x47\xcc\xa8\x98\xa6\x19\xc0\x03\x87\x0a\x69\x1d\xd5\xb4\x88\xc1\x96\x31\xe3\xa2\x90\x56\x91\xfd\x4b\x03\xe0\x80\x28\xa1\xa7\x0b\xd1\x6c\x19\xae\xb0\x70\x3b\xc6\x4c\x11\x4a\xe8\x9b\x62\x46\x40\xfc\x46\x43\x08\x9a\x03\xef\xdc\x3d\x76\x41\x1d\x0a\x5c\x1d\xe4\x48\x86\x41\xa5\x92\x86\x6e\x90\xe0\xfe\x37\xf9\x1b\x4b\x7f\x2b\x69\xd9\x22\x5c\xae\x27\xab\xa5\x4f\xb6\x4f\x1a\x67\x30\x89\x6e\x78\xcf\xa9\xdb\x34\x65\x11\xb3\x48\x90\x20\x39\x49\x68\x95\x1d\x9a\x78\xe5\x07\xe4\xdf\x34\xe6\x20\xcd\x12\x3c\xef\x60\xfd\xfa\x5c\xca\xdd\x92\x37\xa2\xa5\x86\xec\x16\x09\x62\x15\x5c\x85\xe4\x17\x35\x35\xb2\x1c\x3f\x54\x0d\x14\x2a\x8f\xe8\x2c\x89\x6a\x12\x46\x84\x8c\xfb\x34\xae\x86\x29\x91\xbe\x62\x43\xea\x75\x2e\x41\x1e\x31\xd3\x68\x10\xb6\x6c\x0d\x41\xfa\x26\x41\x88\x44\xcf\x31\xe0\x00\xcb\x3d\xed\x8d\xc2\x6b\x68\x72\x6f\xc5\x92\xfa\xe9\xb1\x52\xe5\xe0\x3d\x49\x66\xa9\x2c\xc2\x4f\x1d\x51\xc9\xc0\x2e\x83\x84\x6c\x21\x9a\x8e\x94\xf8\xad\x42\x02\x1a\xde\x61\x3c\x88\xa8\x1d\x57\x96\x8a\x35\x4d\x03\xd4\x34\x2b\x56\x56\x99\xa5\x34\x4e\x73\x94\x55\x59\x52\x5d\x9a\x38\xf3\xf6\xd9\x65\x85\x34\x31\xb2\x22\x99\x63\x71\x19\x19\x1d\x84\xcb\xfe\x22\x9a\x13\x2b\x75\x2d\x18\x87\x8a\x21\x51\x8f\x31\x49\xb3\x91\xc0\x7c\x11\xf5\x65\x4d\xd0\xe3\x70\xaa\xe3\xb3\x3c\x0d\x97\x4b\xa2\x40\x7c\x64\x54\x71\xc1\xa7\x80\x69\x0a\xb0\xbb\x4a\xdd\xbb\x40\xd2\x05\x59\x22\x91\x19\xd9\x32\x74\x2f\xa8\xf2\x42\x9b\xd8\x73\xe0\x27\xde\x13\x60\x94\x95\x3c\x19\x2d\x04\xbf\x9a\x39\x8b\x67\xf9\x4e\x2d\x4d\x26\xd2\x82\x91\xb4\x2d\x5f\x92\x10\x23\x4e\xf6\xb3\x7e\x1b\xc6\xfd\x75\x9a\xcd\x5c\xc0\x9b\xd9\x9f\x3a\x38\x24\xea\xbc\xa4\x33\xd0\x4e\x34\x97\x27\xf3\xe3\xf3\x72\x34\x9b\xaf\x57\xcf\x23\xc9\x37\xb4\x26\x41\x96\x52\x18\x66\xe9\x26\x61\x54\x36\x53\x0b\x4b\x7d\x1f\xf1\x43\x16\x7e\x30\x31\xff\x99\x61\x92\xbe\x61\x6e\x04\x9f\xe4\x48\x9a\x26\xd1\x02\xa7\x99\xcb\xdc\xed\x62\xa1\xc9\x7f\x5e\xb3\xf4\xa0\xe8\xa7\x6b\x98\x03\x66\xa5\xe5\x3c\x9a\x15\xca\xcd\x65\x81\x4c\x3e\xbd\xc5\x33\x27\x80\x86\xa9\x14\x41\xd3\xd8\x6f\x7d\x90\xff\xea\x37\x3d\x66\xbd\x19\xc4\xd2\xdd\x72\xd0\x53\xc9\x91\x15\x7e\xe7\xc0\xcc\x39\xa7\xc2\xe1\x9f\x92\x64\xd9\x35\xd5\xdf\xa1\x89\xdf\x60\x2e\x15\xb0\x24\xd1\xa7\x57\xe1\x28\x5e\x5c\xe9\xa6\x8f\x97\xa4\x53\xea\x98\x4c\x7e\x45\xdb\xa4\x4b\x21\xa4\x98\xef\x42\x0c\x77\xae\x22\x6c\xd4\x23\xb0\x61\x85\xfc\xeb\xc9\x15\x12\x0f\x2e\x31\x0f\xf9\x10\x3c\x2f\xcf\x7a\x53\x2c\x6d\x3f\xb7\x5a\xfe\x1d\x94\x60\xb4\xf5\x10\xe7\xda\x14\xef\x9d\xa6\x52\xc5\xed\x4d\x75\x0b\x33\x85\x58\x5e\x49\x3b\x6d\xc9\x9a\x7b\xf0\xca\xbd\x00\xf3\xac\xac\xf4\x50\x21\x5d\x45\x24\xb9\x28\x76\x92\x69\xcf\xdd\x93\x88\x34\xf5\x4c\x8a\xbe\xee\xa1\x7d\xcd\xb7\xd1\x52\xce\x67\x85\xe6\x6e\xa5\xdd\x37\xf5\x45\x22\xac\x24\x0a\x54\x87\xb7\xb9\x0f\xaf\xae\x05\xd0\xc5\x84\xbf\x5a\x5f\x1b\x56\x5f\x2c\x23\x71\x05\x16\x49\xa2\xf2\xda\x57\xf0\x0f\x58\x78\xce\xf5\x4b\x7e\xe9\x5a\x16\x23\x86\x85\xda\xb3\x8d\xf5\x21\xb1\x63\x69\x6e\x01\x22\x15\x79\x6d\x72\x57\x4e\x25\xf1\xf8\xa8\x1f\x9c\xfd\x46\x04\x9f\xf5\x5f\x43\xdc\xf0\xb1\x7a\x9e\xcc\xeb\x4e\xb3\xf5\xd2\x14\xf1\xd4\x33\x0b\x07\xff\xfa\x53\xdb\x94\xd0\x12\x52\x4a\x95\x59\xd2\x75\x57\xed\x4a\x96\x91\x93\x76\x2c\x4b\xfd\x8b\x1b\xae\x74\x71\x45\xa3\x6a\x26\xbb\x74\x48\x54\x4d\x29\x5a\xa6\x0e\x96\x39\xa9\xe2\x6e\x9f\xd4\xa1\x42\x68\x4a\xbd\x58\x55\x41\x12\x12\x1b\x81\xca\xfc\x9e\x2c\x7e\x25\x02\xd6\x90\xb9\xe1\xe1\x2b\x11\x48\xb5\x79\xe3\xde\x1c\x9b\xb8\x94\xe0\x9b\x64\xbb\x46\x09\xdb\xc9\xfc\x7a\x3e\xa0\xe7\xe1\x62\x39\x0f\xe9\xd4\xf2\x5b\xad\x42\x15\x15\xf9\x84\x0c\x7f\x6d\x93\x89\x3a\x68\x64\xe8\x96\xc0\x1a\xc5\xeb\x55\x91\xea\x8f\xfa\x31\xc9\x0f\xab\x7c\x65\xee\xa2\xfa\x59\x34\x1c\xf7\x48\x26\xeb\xcf\x42\x79\x19\xc1\x74\xac\x27\xdb\x4e\x5c\xbb\x39\x68\x64\xb8\xb8\x08\x4b\xf5\xc1\x33\x4b\x99\x8a\x30\x8b\x0a\xfb\x4c\xca\x67\xcd\xd6\xfe\x42\x70\xdc\xdb\xc5\xe3\xd6\xb2\x72\x0b\x2c\x14\xfe\x7d\x6d\x43\x9e\xe4\x1a\x17\x58\xf1\x82\x62\xc6\x70\x7d\x1a\x4a\xad\xcd\xf2\x5e\x55\x85\xad\x17\xfa\x3b\x37\x4a\x72\x6e\xe2\x2c\xf7\x29\xf9\xd7\x6f\x5f\x99\xec\x08\x8a\x20\xf5\x2d\x94\x99\xe7\xe9\x56\x8b\xd0\xf3\xc2\x6e\x4d\xda\x69\x2b\x12\x39\xd8\x92\xff\x76\xbd\x24\x0e\x3e\x0d\xf3\xfb\x1b\x81\x7a\x56\x9a\xc6\x7f\x61\x5f\x97\xfa\x47\xf5\x83\x9d\xd3\xe7\x83\xe8\xe2\x5a\x62\xab\xd4\x0f\x27\x13\x75\x64\x4f\x41\xe8\x13\x31\xa8\x2e\x4f\x32\x46\x28\x30\xc4\x59\xda\x79\xae\xd8\xa9\xbd\x58\xae\xe0\x7b\x5f\x81\x4f\xe4\xa7\x87\xf4\x45\xe1\x9e\xff\x5b\x81\x4c\xcf\xa3\xd2\x55\xa8\x6c\xa3\xa4\xfd\xea\x52\x1b\xfe\x01\xcb\x42\xed\x7f\xf2\x87\xa8\xb4\x59\xc6\x7c\xca\x93\x23\x11\x9a\xbc\x67\xc1\xb7\x7d\x41\xc0\x22\x4a\x36\x4c\xe4\x11\x59\x6e\x66\x10\x96\xee\x4a\xa9\xfe\x43\x0c\xa1\xda\x15\xd7\xb6\xfc\x08\x66\x5e\x0d\x20\x92\x9c\xd9\x91\x1d\x25\x22\x49\x91\x01\xc1\x67\x29\xb9\xde\x30\xfa\x1e\x0e\x64\xd9\xdf\xce\x68\x22\x0d\xa3\xeb\x1a\xf5\xef\xcb\x68\x32\x01\x9f\x91\xa4\x47\xca\x44\xa0\x9f\xb4\xb0\x32\x98\x8b\xc3\xfa\x80\x99\xa6\xad\x67\xd6\x42\x33\x47\x7c\x6f\xbb\x04\xcb\xc3\x78\x32\x21\x66\x73\x15\xaf\xfb\x63\xd1\x7c\x09\x06\x9b\x24\xc4\x17\x0d\x9b\xe2\xd9\x4a\x90\xda\xc4\x93\xd2\xba\xa2\xbe\x98\x50\x92\x8d\xa5\x9a\x28\x91\xe7\xf6\xf9\x24\x67\xbf\xd3\xce\x59\xc4\x60\x93\xc2\xaf\x4f\xa4\x1e\xcb\x3e\x32\xcb\x02\x22\x4f\x95\x42\xcf\x88\x6e\x17\x47\x89\xf4\x8b\x4d\x24\x19\x00\x3b\x2e\x27\xf8\x15\x6a\x62\xa7\xa5\xae\x2b\x32\x83\xe3\x04\x5c\x0c\xc8\xf4\x93\xbc\x62\x09\x03\x74\x6f\x80\x24\x4f\xe3\x0c\x65\x13\x9a\x40\x5f\xc8\x64\xa0\x4c\xd3\x62\x55\x3a\x7e\xc4\xc9\x3e\xcb\x4f\xe6\xdd\x16\x92\x93\x81\xb2\x6b\x56\x70\x0e\x80\xb4\xe6\x9a\x67\x64\xd3\xb9\xc0\x1c\x22\x13\x05\x17\x07\x29\x03\xf3\x35\xd8\x1b\x98\x4a\xaf\xc5\x21\x92\x6a\xfd\x77\xae\x95\x69\x2a\x1a\xa1\xf3\x4e\xe3\xc1\x55\x56\x5f\x5c\x7d\xb3\x34\x43\x62\x3f\x73\x30\xb0\x19\xab\x27\xa4\xe2\x96\xee\x4b\xe6\x35\x11\x18\xd6\xe7\x65\x6a\x08\x8b\x68\x11\xf9\x16\x2e\xd8\x76\x2f\x0e\x81\x59\x56\x3e\xc5\x65\xe4\x12\x22\xaa\xf1\xbd\x73\x7b\xab\x4f\xa0\x41\xa5\x32\xd5\xf7\x0e\xd0\x72\xdc\x2e\x67\x56\xab\x2a\xcb\x8f\xf7\x8e\xba\x8b\x72\xa3\x43\xe8\x6b\xab\xdb\xb5\x5c\x3d\xab\x24\x6e\xb2\xa8\x8d\x77\xdd\x33\xbc\x0f\x6a\xe2\xce\x43\x34\x83\xa6\x45\x2b\xbd\xb9\xea\xe9\x80\x38\xd1\xf2\xb5\xba\x70\x50\xa0\x39\xef\xf2\x3e\x82\xd6\xd8\x2c\x0b\xab\xc5\x93\xa0\xcc\x63\xfe\x03\x2b\x10\x45\x9d\x94\x88\xae\x5e\x45\x9c\x9f\xca\xd3\x70\xb6\x2e\x94\xc1\x3d\x9d\xaa\x7b\x3c\xd8\x78\xe5\xbd\x50\x1e\x44\xd3\x69\x38\x48\x3a\xc3\x66\x61\x95\xaf\xe9\x0a\x4f\xb1\xba\xb2\x1b\x4b\x06\x9c\xbe\x9e\x4a\xf2\xde\xd1\xdf\x2d\x60\xb7\x77\x36\x44\x3b\xac\xd0\x2b\xa6\xb3\x2b\x56\xc0\x66\x42\xac\x84\xcc\x2a\x2a\xeb\xea\x4a\xad\xc2\x97\x6a\xd2\xe6\xa3\xd4\x6a\x71\x5e\xff\x5f\x6e\xdb\x8c\xe5\xc9\x00\xb5\xf7\x47\xad\x09\x74\x6d\x7d\x92\x01\x48\xac\x48\xb3\x3e\xc6\x8b\x02\xe0\xc5\x4c\xc9\xc9\x4d\xc9\xc0\x8e\x30\x6d\x63\xcc\x48\xc5\x5e\xac\x54\x40\x06\x84\x90\x59\x55\x92\x72\x89\x0d\x79\xf6\xc6\x38\x51\x21\x3c\x99\x29\xb9\xb8\x29\x61\xec\xc8\xfa\x90\x47\x7a\xbe\x35\x19\xfb\x36\xc1\xe7\x50\x5f\xdf\x9a\x9e\x7d\xe6\x1e\xe8\xe3\xd5\x74\x52\x8e\xe2\xe5\xb5\xee\xe2\xb8\x96\x17\x69\xdd\x22\xff\xa5\x40\x66\x50\xee\x38\x91\x23\xd3\xa8\x37\x91\xcd\x5c\xba\xeb\x0b\x38\xaf\x0a\xab\x71\x34\xfb\xd7\x9f\x52\xd3\x8a\x26\x20\xd9\xc7\x66\x06\x97\x0c\x04\xe6\xb2\x02\x8c\x86\x86\x7d\xc5\xea\x55\x03\x5e\x51\xab\x83\x81\xd7\x52\x3a\xf0\x77\xa8\xd7\xa1\x5f\xb1\x8a\x75\x4e\x47\x6e\x11\x81\x77\x36\x3b\x01\xc2\xd0\x36\x5a\x41\xc2\x4f\xa2\x1c\xce\x5e\x45\x54\xcd\xa3\x8e\x97\x92\xb9\xcc\x95\xc1\x58\xa9\x02\x43\x4d\x96\x0e\xe4\xc5\x12\x15\xaf\x75\xf5\x14\xa0\x4c\x69\xd2\xc5\x98\x42\x80\xbc\x98\xaa\xbb\x98\xaa\xa3\x4c\x39\x35\xc7\x29\x5a\xb4\x8e\x17\xcb\x54\xcf\x6c\x2c\x67\x00\x4e\x6d\x74\x99\x5b\x9f\x4a\x7e\x13\xa8\x73\xfe\xb4\x68\xa4\x73\x52\xc0\xa0\xfc\xd8\x72\x2a\x65\xc9\xa6\x95\x4e\xc6\x30\x28\x3f\xc6\x9c\x8a\x59\xca\xa1\x99\xf9\xc4\x8c\x57\xf2\x63\xdb\xa9\x9c\x25\x45\x3b\xc9\x34\x36\xe9\x5d\xa5\xb6\x54\xdd\xaf\xa2\x03\x44\x05\xba\x8f\x7d\xa2\x7c\x34\xf2\xed\x04\x11\x2f\x2f\x1f\xfe\x0d\x77\x67\xf2\x12\xf1\xde\x7f\xc9\xd6\x41\xba\xcc\x24\x8d\xb7\x72\x70\xfb\x55\x31\xe6\xd4\xda\xd8\xc1\xd4\x07\x71\xed\x6c\x10\x9b\x08\xcf\x6f\x29\x67\xe8\x33\xcc\x90\x68\x20\xc6\xe1\x28\x5f\xc8\x96\xdf\x09\xa8\x85\xa6\x02\x96\xc4\x1a\x28\xdc\x97\x18\xb5\x6d\x69\x2a\x27\x33\xc5\x3b\x1a\xe3\x39\x08\xe4\x1f\xe0\x39\x90\x6f\x38\xba\x73\x51\xf0\x1e\xda\x82\x96\xe5\x22\xe0\xa7\xe3\xeb\x59\x9f\xe8\xee\xdd\x61\xcd\x54\x47\x62\xfd\xee\xe9\xdc\x87\xe5\x5a\x4e\x88\x43\xd0\x9b\xc4\xc2\x86\x92\xdc\x1e\xe6\x10\x22\x60\x8e\xf1\x10\x38\x86\x43\x80\x9c\x8c\xe4\xa6\xe2\x20\x12\xa8\x43\x22\x3f\x05\x50\xfc\xc0\x31\x30\x02\xfd\x4c\x62\x03\x32\x0e\x2a\x02\x11\x61\x0b\xd0\x45\xe7\x8e\xe7\xb7\x4d\xda\xe5\x37\x2a\x19\xe6\x78\xbd\x72\x6b\xa1\x08\x74\x77\xda\x21\x6a\xa0\x3f\x85\x7c\x5a\x9e\x69\xa0\x3f\x85\x3c\x8a\x21\x69\x5f\x1e\x12\x79\x54\x5c\xd5\x3e\x23\x9d\x7b\xd1\xbd\x3c\xad\xf2\xd4\xbc\x7e\x0f\xb0\x0f\xe2\xcb\xd9\x8f\xf5\x2d\x5c\x74\xef\xea\xb4\x39\x2f\x99\xfc\x7e\x46\x6e\x12\x9b\x9e\xf4\xe6\xa7\x93\xc7\xe7\x10\xd0\xfb\x6d\x82\xf0\x87\xac\xad\xe0\x97\x02\x79\xda\x82\xbe\x80\xe5\x85\xa6\x02\x95\xb4\xe7\x22\x97\x63\xa9\xd9\x68\xd7\x4c\xb4\x6b\x38\x6d\xaf\xbd\x7f\x8e\x03\xea\x17\xa0\x0d\x38\x65\x5e\x68\x2a\x50\x29\xfb\xee\xf5\x8b\x68\x6a\x36\xe2\x35\x13\xf1\x5a\x42\x5c\x30\x63\x29\x1b\xcf\x33\xe7\x2d\xba\x57\x9b\x86\x11\xb7\x9e\x14\x98\xc1\xe4\x3b\x4e\xc2\x52\xca\x70\x3d\x51\x39\x47\x55\x96\x58\x66\x7a\x77\xbc\xc2\xb4\x34\x48\x27\x44\x81\x9f\x94\x5b\xc1\x96\xb2\x7a\x14\x0a\xb0\x8f\x4c\xcb\x56\x51\xff\xfc\x4a\xbd\xa8\xe8\x7d\x4d\x8b\xdb\xee\x1d\x7e\x1c\x4c\xd1\x81\xc2\xae\x67\x03\xe4\x3a\x5f\x7a\x85\xe7\x59\x76\x99\x48\xac\x87\x5e\x80\x70\x55\xa2\xc4\xc8\xe8\x2c\xaa\x98\xc8\x47\x76\xf9\x46\xbc\x72\xa3\xd7\x65\x85\x7a\x75\xf6\x3d\xbd\x3b\x93\xde\x98\xa1\x18\x66\x3d\x76\x93\x4e\xe9\x40\xde\x73\xec\x7b\x16\x3d\x80\xde\x5f\xd5\x3f\x2e\xf5\x6f\xb1\xf6\x89\xfd\xcd\x66\x94\xde\xe9\xb5\x76\xf1\x18\x3e\x8a\xaf\xaf\xc8\x9f\xf1\x3c\x9c\x21\x17\xfc\x48\x51\x72\x5d\x14\xb9\x70\xa1\xde\x22\x90\xaf\x79\x0a\x17\x28\x6a\xe9\xd1\x8f\x80\xb0\xf0\x6f\x1d\xa5\x7a\x7d\x8b\x4c\x5c\xe4\x86\xbb\x7a\x59\x2a\xc3\x52\x5e\x86\xa3\x29\xb9\xf5\x20\x04\x14\x11\x8a\xbd\x5f\x8b\xb2\x47\x20\xda\xc3\xca\x2a\x7d\x80\xce\xde\x54\xb2\xdf\x13\x53\x50\x2b\x0b\x97\xa7\xd9\x1f\x9b\xbf\x0b\xc5\xda\x93\xdc\x0f\x52\x9a\xe3\xf9\x48\xf4\x0e\x5a\xf3\xf8\x1c\xd4\xfd\x1c\x94\x5e\xff\x16\xaf\xae\xe3\x8f\xbf\xc8\xa3\x95\x42\xc5\x2b\x68\x8b\xe1\xfd\x1e\x16\xa0\x43\xb8\x0c\x4f\x5f\x14\x99\xee\xe5\xf3\x9e\x99\xf4\xe6\x4b\x68\x6f\x08\xfc\xf7\xb2\x7e\x24\xb7\xc3\xe9\x95\xba\xac\x41\x52\xd8\x0d\x31\x3e\x80\x00\x22\xbc\xd1\x4a\x20\x24\x63\x47\x81\x0a\xab\x41\x51\xf8\x63\x8c\x4d\xfe\xd8\x83\xb3\x7c\xcf\xd3\x90\x47\x85\x9c\x60\xd8\x1b\x5c\x63\x4f\x3e\x85\x72\xc2\x56\x12\xc5\x83\x99\x6c\xed\x35\xae\xd8\xcf\xc9\xf5\x2c\x43\x57\x63\x0f\xed\x85\x77\x41\xea\x0b\x01\x8e\x4c\x0a\x1c\xc4\x03\x09\xa9\x2f\xf0\xb3\x09\x39\xe7\xb3\x4e\xf1\xb1\x21\xde\x01\x8b\xe7\xa0\xbd\x48\xa4\x15\x5b\x15\x11\xde\x50\x1d\x0b\xd4\xc2\x9f\x53\xda\x91\x59\xde\xff\x6d\x80\x2d\x9e\x4d\xae\x36\x0c\x21\x93\x20\x1e\xc6\xf1\xca\xa6\x47\xa4\x5c\xd3\xa3\x2c\x2e\x83\x7d\xbc\xdf\x85\xbe\x99\x75\x4c\x7a\x85\x62\x8b\x4d\x85\x28\x99\xde\xc4\x5c\x9a\x92\x54\xf1\xd7\x14\x66\x66\xb5\xd8\x3b\x76\x74\xde\x6f\x45\x3d\x70\x19\x35\xc5\x1d\x20\x28\x41\xbc\x00\x93\x77\xed\x25\xfa\x2d\xa9\x9a\xf4\x3c\x59\x46\xa1\x76\xeb\xe0\x1a\x13\xbb\xae\x33\x59\x9d\xe7\x2c\x8e\x95\xa2\x19\x24\x35\x1b\x99\x9f\x55\x38\xb1\x17\xf8\x4b\x84\x0c\x86\x7b\x27\x29\x13\x48\x59\xe2\xa3\x60\x5e\x67\x06\x44\xe2\xc8\xf5\xcf\xd3\xab\x9c\xb2\xe7\xf9\x9f\x69\x38\x88\x7a\x05\xc2\x49\x61\xd9\x5f\x84\xe1\xac\xd0\x03\x93\xff\x84\xbc\xa1\x60\x93\x2d\xcc\xef\xf3\xef\x5b\xd7\xd9\x7c\x44\x6e\x4f\x97\xd7\x33\x8a\x95\x7c\xd8\x12\x67\x65\x84\x59\xbd\x42\x61\x45\xee\x51\x15\xad\x10\x0b\x47\xf1\x73\x71\xc6\x33\x40\x8c\xaf\xb3\xc0\x44\x82\xbb\x6b\x58\x78\xda\x39\x26\x8a\x6c\x27\x48\xe7\x40\xd4\xaf\x37\x30\xc8\x25\xcb\xf4\x37\x7b\x13\x98\xce\x35\xaa\x6f\x54\xaa\xd2\xb8\x5f\x15\xc5\xaf\x65\x91\xe4\x7c\x1b\xe2\xd9\x73\xca\x1b\xed\xc4\xa1\x52\x4e\x3d\xd3\xf1\x41\x7d\x5d\x58\xb9\x86\x53\xe9\x15\x83\x64\xc7\x7d\x19\x1c\x88\x43\xd4\xd1\xe5\x92\x8d\x53\x66\x73\x4a\x65\x10\x52\x5f\x16\x3c\x1a\xbb\xe0\x54\x5c\x66\xde\x25\x0b\x91\x84\xb1\x2a\x22\xdf\x48\x98\x2c\xc9\x27\x43\x60\xc7\x62\x48\xad\x6c\xc8\x65\xcf\x56\x57\x8b\x75\x7f\xb5\x5e\x90\xf5\x32\x7b\x73\xa1\xb8\x98\xfc\x17\x14\x3a\x73\xbb\xd4\xc9\x23\xf5\x75\x69\x5f\x61\xe4\x96\xa4\xb5\xf4\xcc\xde\x8c\xc9\x27\xa0\x02\xa3\x60\x83\x54\x29\x83\xb5\x8c\xfa\x99\x23\x9b\x9f\x75\xf2\x44\x34\xeb\x82\x05\x77\x8d\x6d\x10\xbe\xed\xf2\x6e\xd6\x16\xaa\x7c\xac\x1b\x99\x0a\x0e\xd7\x93\x09\x13\xb7\xa6\xc7\x49\x8c\xbb\x52\x78\x01\xd6\x7b\xa9\x05\x9b\x4a\x43\x26\x08\x3e\x05\xfa\xf2\x40\xd0\x61\x6a\x39\x12\xf3\x41\xfe\x9f\x3d\xf4\x40\x59\x24\x86\xee\xae\x59\x54\x18\x63\xdc\x26\xee\x91\xc0\x25\xe1\x0c\xe1\x31\x11\xd7\x86\xbd\x89\x59\x50\x3f\xf4\x5e\x3d\x21\xa1\xf7\xea\xe0\x85\x62\xe2\x44\x53\x2b\x76\x54\xa5\xae\x87\x08\x33\xc7\xf1\xd2\xe9\x40\xd7\xac\xc6\x8c\xc4\x93\xda\x56\x31\xa7\xb4\x3d\xea\x1a\xbb\x5f\xac\xeb\x6d\x31\x24\xbb\x5a\x66\xdb\x2e\x17\x92\xb5\x5c\xa4\x5f\xd5\x87\x15\x95\xc2\xff\xf4\xea\xfd\x5a\xbb\x9e\x04\x55\x95\x5c\xfd\x3e\x88\x22\x10\xa6\x25\x1e\x1f\xaf\xdf\x6c\xd6\x06\xd8\xa4\x44\xe8\xcf\xc2\x51\x4f\xa7\xcf\xbf\x22\xf4\xc3\xca\x69\xe3\xb4\x81\xd1\x1f\x0e\x9b\xc3\xa6\x4e\xbf\x3d\xac\xf7\xea\x3b\x26\xfa\xe1\x62\x11\x2f\x64\xe2\xf4\xd3\xfd\x53\xbe\xec\x2d\x66\x30\xa7\xcb\xb4\x93\x8f\x08\xf5\x7e\xfb\xb4\xd7\x3e\xc5\xa9\xf7\x86\x75\x9d\x7a\xd0\xaa\xf7\x2a\x46\xea\xf2\x5e\x29\x23\xce\x03\x6a\xa9\xb4\x95\x45\x1a\xc2\x03\x0b\xdc\xa5\xf1\xa0\x54\xc4\x79\x21\xc3\xb4\x0c\xee\x1c\xf9\x6b\x20\x33\xc4\xbf\x2a\xbb\x2e\x59\x81\x10\x91\x2c\x5d\x77\xd0\x4f\x22\x4e\xd4\x88\x0a\x0c\x36\x2a\x45\xf6\x3f\x12\xd1\xc1\xed\xa7\xb7\xdb\xd5\xc4\x4f\x4f\xef\xa0\x52\xda\xab\x42\xea\xeb\xfc\xeb\x4f\xc6\x4e\xd1\x07\x28\x73\xd2\x3d\x40\x17\xbe\x70\x89\xf3\xe9\x07\x3a\xc6\xdf\x9d\x59\xfc\x77\x27\x5e\x79\x35\xe5\xc1\x06\xf7\xfb\x3d\x40\xf1\x05\x80\x4f\x53\xef\x73\x25\x70\x0f\x52\xd9\x74\x6d\xe0\x58\x11\x64\x33\x8c\x67\x67\x6f\xe4\xb4\x1b\x82\x3a\x65\x83\xd5\x00\x70\xad\x6c\x02\x63\x28\x93\xc8\xd0\x36\xa4\x2a\xc8\x35\x1e\xf5\x53\x41\xac\xc4\x90\x42\xf0\x2a\x10\x22\x5a\x5a\x84\x61\x05\x6d\xb3\xe2\x94\xca\xd5\x5d\x0d\x28\xc4\x70\xb2\x6d\x30\x2b\x5a\x15\x44\xc5\xcc\xca\x31\xe4\x6c\x38\x58\x91\xab\x20\xda\x66\x0c\x2d\x97\x27\x9d\x64\x15\xa5\xcc\x7a\x63\xe1\x3b\x37\x44\xf3\xef\xcf\x0c\x31\x61\x58\x50\x1b\x71\xc9\x44\xcc\x67\x6a\xf8\x8d\x4e\x5e\xb0\x65\x9d\x9e\xda\x81\x3a\x3d\x09\x84\xa2\x19\x69\x5c\xb6\x92\xb1\x53\x14\xa3\xea\x93\x60\xe1\xfa\xd4\x0c\x53\xb6\x99\x98\xec\x87\x48\x31\x37\x35\x98\x6c\xb2\x4b\x9c\x16\xc9\x2f\x08\x5b\x61\x0b\xf1\x4a\x1a\xf5\x66\xbd\xe1\x41\x3f\xf1\x45\x7c\x39\x48\x5d\x17\xd9\x37\x69\x84\x0d\x9d\x87\x46\xbb\x5e\xad\xb4\x3c\x78\x60\x2e\x89\x2f\x0b\x48\x44\xd0\x8d\x3c\x13\x8c\x13\xee\x12\xfb\xf2\x92\xb9\xd0\x62\x7f\xb4\x40\x2a\x88\xa7\x58\x6b\x05\xa7\x35\xd5\x57\xc3\xb8\xe0\x8e\xb1\x2f\x17\x99\x23\xbd\xa9\x66\xf4\x56\x30\x27\x8c\xd3\x8d\x11\x36\x3e\x61\x98\xf7\xe9\x3d\xaf\xc2\x36\x09\x8b\xb5\x95\x06\x78\xa1\x13\xa6\x1a\x08\x06\x8b\x51\x2a\xdb\xbe\x84\x46\xea\x3c\x08\x27\x74\x55\x6b\x48\x7f\xcb\x21\x87\x81\x82\xc7\x49\xa0\x66\xe3\xd2\xca\x72\x68\x71\xf9\x94\x50\x67\xd4\x73\x8f\xdd\x4c\xce\x75\x24\xb9\x5c\x2d\xa2\xb9\x6e\x96\x84\x65\xe1\x6c\xab\xa8\x01\x3e\x57\x41\xae\xcd\xa1\x15\x02\x62\x3a\x6b\x6c\xcd\x98\x5a\x41\x6f\xb2\x78\x0d\x5f\xfa\xb2\x1d\x95\x16\xae\x69\x97\x91\x39\x03\xfe\x26\xbb\xfe\xe8\x2c\x25\x95\x9b\xc2\x8c\x69\xdb\x7e\x2c\xb4\x79\x7a\xbb\xe1\x7f\x06\x30\x38\x6b\x3b\x72\x27\x08\x95\xb4\xa8\x72\x0c\xde\xc7\xee\xc7\x0b\x12\x5b\xc2\x4e\x7d\x58\x6b\x55\xab\x7d\x99\xba\x5c\x4f\x63\x80\x55\xf1\x61\xe0\x2a\x9c\x4c\xe2\x4b\x07\x03\xa7\xa7\x83\x8a\xd2\x7c\xb9\x9e\xce\x00\xad\xe2\xd5\x03\x13\x72\x85\xc8\x4a\xff\x34\xe8\xf7\xab\x0a\x7d\xa9\x9a\x46\x9e\xd5\xf0\x21\x3f\x22\x4b\x3c\x3b\x79\x21\xc0\x7f\x4a\x5e\xaa\xa6\x91\x67\x35\x7c\xc8\xaf\xc2\xde\xc4\x4e\xbd\x52\x39\x0d\x7a\x03\x99\xba\x58\x4b\x23\xce\x2a\xf8\x10\x3f\x9d\xac\x1d\x3d\x5f\xab\xee\x04\x83\x8a\x4c\x5c\xac\x85\xb4\x9c\x54\xf0\x21\x7e\x11\xc5\xb0\xe2\xb0\x93\x6f\x36\xea\x41\xbf\x2d\x93\x97\xeb\x69\x0c\xb0\x2a\x3e\x0c\xcc\xd7\x8b\xf9\xc4\xd1\xfe\x5e\xbd\x5e\xef\x2b\x9a\x27\xd7\xd3\x18\x60\x55\xbc\x18\x88\x66\xe7\x76\xf2\x61\xa5\xde\x6e\xb7\x14\xf2\x42\x2d\x3d\x9c\x25\xad\xe0\x25\xfb\x05\xbd\xcf\x6b\x6d\x7c\xd0\x6c\xd5\x87\x8a\xf0\xc5\x6a\x7a\xdb\x69\x0d\xcf\x61\x77\x65\xa7\xce\x2e\x3c\x69\xa3\xee\xca\x48\x9c\x55\xf0\xd3\x7b\xa8\x6c\xa7\x5e\x3d\xad\xf6\xab\x03\x55\xf1\x85\x6a\x1a\x79\x56\xc3\xcb\xe2\xcd\x42\xb2\xe2\x59\x4f\xb3\x1d\x64\x35\xde\xf0\xea\x32\x36\x80\xf0\x4b\xd9\xab\x31\x58\x20\x03\x4c\xbd\x5e\xae\x27\xff\x30\xe0\x61\xbc\x5e\x18\x60\xf9\x6d\xe7\x21\x31\xa7\x06\x10\x7e\x0f\x3c\xfa\x6e\xe2\xbb\x59\x6e\xb2\x7f\x5a\x3c\x19\xcd\x05\x98\x47\x03\x70\x23\x75\x83\x18\x30\xdd\x75\x37\x01\xd7\xca\x09\x83\xb0\xb6\x30\x76\x5b\xb5\x5c\x4d\xfe\x49\x3a\xc7\x4c\x3c\x69\x0b\xf8\xcc\x66\x0e\xdb\xe5\x4a\x9b\xfd\xcb\xa5\x41\x02\x62\x1b\x80\x77\x94\xbe\x5e\x8d\x23\xd0\x16\x23\xee\x56\xb9\xd9\xae\xd5\x2b\xad\x66\x3b\x13\x8d\x15\x9c\xc7\x7e\xe6\x62\x1a\x5a\xa0\x35\x31\x44\xdf\x31\x68\xe9\x14\x95\xaa\x23\x79\x3f\x2f\x2f\xc9\xf9\xd7\x14\x33\x57\x94\xb4\x1e\xd1\x51\xbd\x1e\xff\xaa\xc9\x2f\xab\x47\x35\x17\xa9\x99\x7e\xe7\x75\x77\xca\x2d\xb5\x32\xd5\x64\xbd\x6e\xfa\x59\xd1\xea\xac\x1e\x51\x6f\xa4\x1e\xff\xcc\x47\x4e\x55\x6f\x27\x51\x7b\xbd\x26\xff\xca\x2b\xb6\xb4\x76\xb2\x31\x80\xd4\x4c\xbf\xf3\x28\x2c\x75\xbd\x9d\x6c\x4c\xe8\x95\xb3\xef\xaa\x3d\xe0\x35\xe9\x38\xd1\x2b\xa6\x9f\x79\x3d\x4c\xa2\x28\xbf\x2b\x99\xdb\xa6\x2e\xd1\x64\x30\x21\xdc\x4e\xd4\xb6\x36\x11\x99\x26\xc3\x0b\xd3\xa5\xb4\x80\x0f\x07\x5d\x99\x92\xd1\x86\xe9\x93\x50\xc4\x07\x2b\x22\xdf\x74\x04\xe2\x6a\xa5\xa1\xd0\x25\xcd\x07\x25\xa6\x5f\x43\xb5\x7e\x1b\x91\x36\x1f\xa7\xa8\x9a\xa9\x08\xb2\x8c\x5f\x86\xab\x03\x4a\x06\x37\x7d\xd1\xe3\x9f\xad\xc1\x92\xca\x09\x27\xee\xbe\x4a\x67\xa8\x48\xbf\x27\xe7\x3f\x76\x90\x64\xd7\x0d\x8b\x92\xcd\xb2\x5e\xaa\x51\xb2\x93\xaf\x4b\xfd\xa3\xfa\xc1\xda\x32\xfd\x0a\x98\xef\x1d\xc4\x41\xd8\x8f\xd9\xc5\x6f\xe1\xf6\x63\x7a\xb7\x9d\xbf\xbd\x49\x2f\xae\xd3\xcb\x96\x69\xb4\xe8\x9d\x6c\x6f\x85\xee\x27\x04\x3c\xaf\x42\x92\xc8\xa1\x03\xa8\x96\xd6\x9e\xed\x2d\xfb\xe1\x4c\xb8\x69\x2f\x66\x20\x1d\xec\xfc\x6a\xad\x4b\x32\xc5\x98\x2b\xb7\x0c\x95\x95\xf3\x39\xe9\x16\xa9\xe9\xe0\xcd\xd6\xf5\xae\x9d\x5d\x4c\x4f\xad\x18\x13\x55\xca\x87\x92\xdf\x00\x70\xa8\xa7\xac\x27\x62\x06\x04\x9f\xda\x1b\x34\x95\xf3\x95\xed\xb6\x78\x37\x9a\x0f\x22\xf6\xaa\xa1\x34\x22\x1b\x57\x20\xdd\x27\xc2\xa3\x80\xa2\xc2\xc0\x56\x41\xdf\x9c\x51\x6e\xfd\xde\x01\xb6\xcc\x79\xf6\x6a\x9a\xde\x6d\x77\xd4\x32\x9a\xeb\xf3\xce\x5a\x46\xb0\xe5\x6c\xd9\xb5\x9e\x16\x0a\x79\xf7\xb1\x10\x32\xfb\xaa\x0f\x3a\xe4\xc3\x0b\x69\x23\x18\x9c\xd6\x67\xa6\x0d\xb7\xf6\x96\x78\xde\x88\x60\x2a\x48\x07\x94\x48\x4c\x56\xe1\x76\x9a\x89\x48\xd5\x70\x28\xa3\x70\x82\x52\x17\x2f\x26\xfb\xe0\x37\x22\x91\x2f\x1f\x68\x10\xda\x2d\x04\x33\x44\xba\xef\x8e\xc3\xe5\xbf\x9a\x50\xab\x41\x43\x92\x1f\x6e\x24\x53\xb4\x9b\x5d\xa4\x2a\x3a\x70\xf8\xdd\xf5\x52\x43\x19\xdb\x71\x3a\x6f\x62\xc9\xa3\xa4\xa6\x8d\x92\xec\x80\x50\x3a\x86\x48\x9f\x32\x0a\x77\x19\x0d\x87\xe6\x79\x5e\x28\xa9\x28\x85\x4b\xc9\xf2\xa5\x49\xd3\x63\x1c\xf5\x6a\x25\xc6\x91\xe2\x16\x49\x55\x92\x1d\xf5\x6b\xeb\x93\x18\xf9\xb9\x9d\x54\x7f\xa0\x90\x14\x20\x7c\xf6\xee\xed\xc3\xba\xa2\x9e\x94\xca\xa1\xd8\x28\x99\xf4\x20\x47\x31\x21\x16\x50\xa6\x73\xdc\x0a\x6e\x25\x7f\x32\x6e\xb7\x0a\xca\xbd\x89\xdc\xd5\xc7\xe9\x7d\x94\x5f\x7f\xbd\x25\x23\xea\x60\xba\x05\x53\xf2\x55\xcf\xe4\x2a\x0a\x92\xd9\x6a\x03\x26\xb3\x93\xa3\xdb\xf2\x28\x9c\x41\x71\x16\x93\xe8\xdc\xb7\xe3\x11\x79\xdb\x24\xc8\x49\x38\x93\x33\xdc\x33\xde\xfc\x72\xb1\x01\xab\x66\x25\x75\x0a\xee\xe5\x0d\x61\x5f\x9c\x21\x25\xa9\x8a\x37\x8e\x16\xdc\xeb\x47\xaa\x31\xf2\x06\x54\xbc\x8e\xdc\xf3\x0c\x58\xb8\xb6\xa3\x50\x2e\x07\x3a\xed\x72\xe0\x83\x29\x7b\x9d\x93\x56\x00\x7b\x3c\x85\xf5\xc9\xca\x40\xac\xdc\xd2\x68\x91\x4f\x58\x4d\xe1\xe9\x0f\xbb\xbd\x84\x71\x94\xd4\x31\x36\xae\xdc\xd4\xe9\x35\xbd\x10\x09\xe4\x49\xce\x3a\x5e\x2b\xc9\xe4\xc6\x4c\x98\x98\xc8\x4d\x3c\xb6\x35\x26\x70\xd3\x4a\xcb\xb4\x3c\x7b\xf3\x79\xed\x7e\x3d\x5c\xb5\x3c\x1b\xae\x22\xaf\x8f\x07\xeb\x64\x81\x59\xa7\x71\xeb\x8d\x05\x7a\xcd\x55\x34\x25\xdd\x36\x5c\xcf\x58\x56\x56\xfa\x3e\xd5\x51\xac\x63\x19\x92\x40\xf9\xd3\x78\x10\x92\x7b\x3f\xe3\x67\xa6\x02\x31\x2a\x23\xd2\x1f\x9b\x65\x39\xb0\xa7\x0b\xe3\x6f\xd0\x05\x72\x96\xf4\x50\x72\x7e\x28\x9a\x20\x2a\xc9\xe1\x24\xd4\x97\xf6\x00\x34\x7e\x6e\xb2\x30\x8c\x7a\x15\x35\x06\x87\x9d\x77\xee\x26\xda\x75\x87\x20\x2e\x91\xa0\x15\xe1\x6f\xf3\xde\x7a\x19\x0e\x9e\x59\xca\x48\x87\xc4\x73\x43\xff\xdf\xc9\x6b\x76\x51\xd3\xe9\x79\xd1\x32\x44\x08\xa4\x7a\x19\x98\x14\x96\x16\x20\xc8\xc0\xd1\x44\xf0\x91\xdc\x97\xbf\x31\x80\xce\xec\x99\xe1\x3b\x86\x8d\x85\xdb\x5c\x83\x7b\xa7\x97\xc1\x67\x3b\xa9\x83\xf5\xea\x3d\x79\xa7\x6e\x2b\xc4\x88\x26\x21\x3c\x3d\xd0\x7f\xa6\xa9\xe6\xad\xa5\x37\xff\xe1\x48\xce\xc3\xab\xe1\x02\x00\x96\x05\xde\xe2\xeb\xca\x2f\xe6\x70\x29\x3b\x5b\x85\x34\x08\x8b\x92\x04\xc9\x04\xc1\x83\x9d\x94\xaa\x37\xd5\x7b\x43\x9d\x6d\x7e\xb5\x6e\x76\x2c\x54\xaa\xc4\x17\x75\xd0\xc1\x60\xb2\xdc\x88\x9c\x26\x0c\xf5\x1b\xb2\xaf\x6a\x26\xe5\xa4\x63\x6a\x0e\x41\x7d\xf3\x9f\x47\xc9\x3c\x54\xc9\x98\xc6\x4e\x32\x7a\x89\x98\x84\x0a\xb6\x8c\x28\x27\x80\xbc\xc0\xb2\x87\x75\xb3\x5f\x4f\x9e\xe0\x51\x8f\xcc\xd0\x37\x81\x40\xb3\x54\xb5\x93\x2c\x55\x2b\xc1\x2f\x19\xa2\x7a\x30\x08\x47\x19\xb2\x6a\x85\xfe\x29\xb4\x1f\xe0\xc9\x7d\xbd\x3b\xc4\x45\x15\x21\x15\x1c\x13\x96\x2f\xf7\xa6\x2e\xf0\xe5\x38\x47\xfd\x34\x1d\x10\x32\x1a\x1f\x65\xfd\xf7\x95\xb5\x65\x7c\xd3\xd9\xf3\x67\x0b\xdd\xd1\x6b\x77\x28\xf2\x3b\x97\xf8\xc3\x14\xf8\xa3\xa0\xff\x19\x82\x2e\x0f\x16\xf1\x1c\x5b\xc5\xa4\x34\x78\x54\x47\x72\x01\x9c\xe7\x56\xc6\xc2\x41\x0a\xe5\xd6\xba\xe6\x45\x4c\xc3\xb4\x88\x69\x78\xae\xba\xfb\xeb\xd3\xa8\x5f\x3a\x0d\xff\x8a\xc2\xc5\x93\x72\xbd\x51\xac\x96\x9b\xd5\x62\xb9\x55\xac\x6e\x59\x16\xe3\x96\x5a\x5a\xf7\x58\x96\x4d\x04\x52\x5f\x34\xb1\xaf\x3a\x1e\xcb\xaa\x85\x80\xc2\x70\xc3\x30\xc1\x67\xcc\x16\x33\x22\xd7\x82\xea\x61\x29\x55\x99\x23\x87\xf8\x76\x30\xc4\xa8\xa2\x66\x7e\xa3\xd9\x4d\x44\x1c\x43\xc9\x5a\xfc\x74\x56\xf0\xde\x81\x8e\xbb\xbe\x05\x5a\x89\xa7\xbc\x0d\x52\xbb\xe7\xa7\xf2\x22\xea\xe0\xb0\x37\xb0\xed\x03\x90\x62\x5d\xa1\xd9\x57\x11\x4f\xba\x3b\x48\x8a\x0a\xeb\xf9\xbf\xfe\x74\x22\xfd\x32\xc7\xd1\x7e\x99\x9b\x11\x93\x20\xa6\x1e\xa8\x5f\x02\x18\x8e\x9c\x94\x98\xd1\x93\x1d\x0c\x0f\xf4\xd8\x46\x45\x56\x62\x46\x4f\xf7\x2a\x3c\xf0\xa3\x3b\x15\x42\x91\x2e\x40\x8b\x25\x21\xe5\x88\x25\x49\x3e\x3b\x64\xe8\xc6\x8b\x4b\x91\x16\x38\xc5\xe8\xc6\x6e\x12\x64\x52\xe4\x94\xa4\x9b\x82\x49\x96\xc8\x96\x13\x2e\x4c\x37\x09\xa3\x38\x6d\xdb\x4e\x4c\xdc\x92\x0d\x55\xac\xa2\x64\x53\xbc\xc0\x4d\x54\xbe\xcc\x5d\xb6\x3a\x75\x1f\xba\xe0\xf5\xfc\x82\x3a\x1f\xac\xc4\x6d\xb9\x85\x0a\xb8\x13\xd8\x55\xed\xe5\x03\x66\xd2\xd4\xa3\x44\x39\x73\xb0\x5b\x32\xf3\x5b\xba\xdf\x5e\x7d\xb0\x8c\x9a\x7a\x96\xef\x2e\x78\x31\x7c\x62\x54\x84\x93\xbc\x8a\x60\x5b\xb2\x20\xfd\xfa\x40\xd9\x34\xf5\x6a\xba\xac\xf3\xe4\xd7\xa8\x07\x27\xb9\xf5\x20\x67\xc7\x3e\x5c\x4e\xf1\xbe\x55\x1d\x3d\xc5\x75\xd3\x5a\xe8\x86\x37\xd2\x91\x2d\xe4\xe6\x83\xcf\xe9\x5c\x0a\xe0\x81\xc9\x1c\x40\x01\xd6\xb6\x07\xc8\xa3\xb1\x3f\x55\xdb\xf8\x63\xb8\x2d\x19\xd9\x2d\x19\xfa\xf4\x81\xf2\x69\xec\x57\xd5\x36\x6e\x3e\xe8\xfc\xf9\x3d\x31\x69\xc1\x89\x49\x53\x1f\x24\x97\xc6\x3e\xd5\xcc\xe2\x8f\x61\xd7\xa4\x04\x27\x46\x65\x7d\xa0\x8c\x96\x87\x93\x48\xd9\xe3\x29\x6a\xdf\x70\x57\x3f\xdd\xa1\x6a\x9a\xb6\xae\x9a\xec\xfc\x7d\x1c\x2f\xa2\xbf\xe2\xd9\xaa\x37\x41\xa8\x99\xd6\x10\x59\xa5\xd7\x50\x47\x5f\x8a\xab\xe5\x56\x32\x96\xb5\x8a\x8c\x07\x59\x30\x6a\x00\x37\x65\x1e\xa7\x26\x47\x73\x78\x15\xbc\x31\x72\xa9\x85\x80\xa5\x21\x22\x0e\xa4\x19\x4a\x31\x36\xa4\xd4\x2e\xc5\xcf\x97\xe7\xe1\x62\x39\x0f\x69\x98\x94\x27\x35\x9a\x86\x22\xdb\x7b\x2d\xb5\xe9\xd6\xf0\xb3\x7c\xd0\xca\xca\x2d\x1f\xc9\x8a\x2f\x35\xf1\x6c\x58\x1a\xa0\xff\xa8\x66\xeb\x52\x97\x75\x2f\x6f\xe3\x4f\x72\x35\xfe\xe4\x2e\x1a\x7f\xe2\xdb\xf8\x13\xb3\xcc\xff\x41\x8d\x76\x8d\xf3\xc4\xf1\xfe\x11\xea\xb7\x81\x9e\xe7\x1a\x59\x5a\x37\x9b\x87\xf9\xdf\xbb\xd5\xf6\x51\xbe\x41\xdb\x37\x55\xbf\x0d\xf4\xfc\xb6\x43\xcb\x34\xcc\xff\xe6\xad\x4e\xb2\x9d\x79\x39\x23\x14\x54\xf7\x42\x92\xcf\x08\x2a\x8b\xdb\x41\x61\x11\x7f\x83\x7f\xc7\x94\x31\x21\xe4\x77\x50\x56\xde\x41\x2f\x98\xdd\xdd\xa9\xdd\x43\xe0\xc6\xd0\x47\x3f\xe6\xb4\x8c\x3c\xd4\x43\xbe\xe9\x9d\xf4\x93\xd9\x91\x4e\x7f\x26\x57\xb6\x25\x49\xb9\x89\x2e\x48\xc8\x67\x89\x6c\xe4\x71\x28\x5e\xab\x06\x45\x7a\x28\x5e\x0f\x82\x22\x6f\xd9\x06\x15\x55\xfe\x6d\xc7\x61\x93\x2b\xe4\xf0\x91\x7c\xc4\xcf\x65\x26\x57\xce\xa3\x47\x52\x19\x39\xb3\x62\x9f\x8d\x58\xdd\xe7\x8e\x04\x01\x7a\x5a\xc5\x0b\x8c\xb8\xdd\x87\x8e\x04\x05\x7a\x4e\xc5\x0b\x8c\xb8\x3d\x4e\x1c\x09\x0e\xfc\x84\x2a\x2d\xd1\x24\x66\x3b\xf3\x9a\x5c\x61\xa7\x8d\xf4\xab\x5d\x68\x4e\xa4\xa8\xd8\x2c\x27\x8d\x99\xdc\x9c\xa8\x0d\x92\xb3\x1e\x33\x66\xa2\x73\xa2\x37\x08\xcf\x7a\xc6\x28\x48\xcf\x89\xdf\x24\x3f\xeb\x01\x23\x11\xaf\x97\xb1\xaf\x0f\x9e\x94\xeb\x45\xfa\x3f\xcd\x22\x89\x65\x37\x35\xf3\xe5\x62\x92\xcc\xb8\x5c\x2d\x26\x3f\x18\x1a\xb1\xf8\xa6\x61\xc5\x54\x6e\x17\xe9\xff\x50\x6e\x78\xd9\x4d\xd3\xc7\x44\x53\xc2\x95\x7a\x31\xfd\x3f\x9c\x35\x09\xc2\x76\x5f\x9b\x72\xd0\x2a\x26\x3f\x38\x83\x59\xb1\xe7\x74\x49\x58\x28\x56\x8b\x78\xb7\xd1\x02\x79\xa7\xed\x51\xb2\x7f\x2b\xc9\x1a\xc6\x6e\x8e\x03\x71\x96\x7f\x3b\x20\xce\xb3\x35\x43\x37\x87\x70\xf6\xb0\x5c\xaf\x54\x73\x20\xe6\x00\x37\xad\x00\xeb\x5f\x85\x0b\x17\x97\x09\xae\x36\x2a\x2b\x85\x70\xe0\x60\x8c\x95\x9b\x56\x2a\x32\xb0\x3b\xeb\xb2\x36\x0a\x1f\x65\xf4\x00\x65\x64\x18\x4f\xb9\xae\x42\x24\x89\xf3\x9d\xe2\x2a\x6d\x2a\xaf\x9a\xa3\x57\x92\x72\x2f\x69\x95\x5c\xe2\x2a\xe5\x91\x97\x83\x31\xbb\xb4\xb2\xbc\xdf\xe9\x9f\xfa\xa8\x79\x94\xc4\x4f\x93\x84\x61\x6c\xe4\xba\xce\x42\xe6\xae\xa4\xaf\xcd\xec\x09\x10\xb9\xe4\x51\x62\xdd\x6d\x46\x9c\x01\x78\x48\xa4\xea\xe2\x32\xe5\xd1\x2d\x8f\x92\x8b\xb1\x94\xaf\xdb\x8c\x8d\x47\x49\xfc\x34\x49\x18\xc6\x46\xbe\x1b\x49\x84\xbc\x5b\x26\xa5\x4d\x85\xe2\x92\x49\x1e\x91\x94\x5c\x32\x29\xe5\x11\x8a\x83\xb1\x3b\x19\x1c\x8f\xa2\xf8\x79\xa2\x40\x47\x07\xd9\x29\xb5\xaf\x1d\xfd\x56\x7c\x41\xe5\x97\x62\x10\xf8\xae\xfa\xfc\x57\xa3\x7e\x5b\xb1\xde\xcb\x64\x45\x21\xff\x71\xad\x37\xe9\x00\x2c\x83\xf0\x7e\x90\x1d\x16\xdf\x55\x45\x03\xfa\xa3\xe1\xe8\x0f\xc5\xad\xf2\x5e\xfd\xf8\x5f\x2a\x62\xce\x5f\xc5\xe5\x77\xa6\x10\x88\x76\x3c\xf6\x8b\x65\x45\xc6\x6f\x36\xfa\xf4\x90\xbf\x5f\x9d\xbf\x8f\x5c\x5d\xb4\x61\x0f\x95\xdc\x5d\x54\xb2\xe9\xce\x63\xdf\xb8\xf5\x87\xf9\x03\xb5\x3c\x93\xb6\x63\x9e\x4d\xcb\xf3\x35\x29\xe5\xd6\xe6\x2d\x67\x20\x88\xb8\xff\x8b\x9b\x62\x92\x0e\x5d\xca\xe4\x69\x51\xc9\xd5\xa4\xd2\x86\x6d\x72\x37\xc9\x2e\x9c\xff\xda\x96\x88\x07\x7b\xcb\x49\x44\x9f\x82\x16\xb1\xe3\x28\x5a\xe8\x3e\x06\xa5\x60\x9d\x59\x57\xbb\x05\xc1\xbf\x6b\xdc\xdf\xed\xcb\x72\xf4\x28\x8d\xf1\xee\x38\x18\xde\x9c\xf3\x24\xd7\x98\x8d\x79\x19\xc4\x5e\x6c\x69\x82\xf3\xa4\x38\x61\xf6\xc4\xd0\x88\x13\x73\x23\x92\x1c\x9f\xf4\xc4\x11\x6f\x83\x04\x61\x2d\xb5\xb4\xc0\x7d\x1e\x7d\xeb\x26\x90\x4e\xb2\xb6\x80\x02\xd8\x0a\x91\x51\xa1\x44\x35\xc3\x87\x85\xed\x76\x10\x81\x03\x43\x81\xab\x17\x2d\xf8\xc9\x23\xe3\x9e\x98\xff\xe1\x83\xc3\xa3\x1d\xb8\x6e\xd1\x82\x87\x32\x3e\xee\xb7\x15\x77\x30\x44\xb0\x9b\x5a\x89\xa5\xf4\x3a\x79\xee\x22\xb1\x09\xf4\x27\x48\xc6\x85\x6e\x17\xb9\x5a\xd5\xd5\x2e\xb4\x3d\x0c\x86\x8c\x3d\x75\xe2\xc5\xd8\x09\xc2\x98\xfe\xfc\xc5\xc8\xd8\x09\xc2\xd8\x89\xa1\xa7\x7e\x36\x43\x86\x9e\x22\x16\xc6\xeb\xbe\x9d\x51\x08\x7e\x1b\x1d\x46\x15\xd0\xba\xea\x01\x70\x64\xee\xab\x13\x2f\xce\x8c\x62\xf0\xe3\xcc\xa8\x04\x58\x5f\xfd\x64\x8e\xa4\xe9\xfc\x92\x24\x56\xd6\x4d\x6b\x7a\x35\x72\xc7\xf4\x88\x6b\x47\x0d\xa2\x9a\x99\x6e\x82\xd3\xc3\x37\x26\x60\x98\x67\xc3\xbf\xff\x14\x0f\x80\xf2\xee\xf2\x8d\x37\xe6\xfc\x87\x4c\xff\xb4\x09\x6e\xdf\x98\x31\xab\x3b\x31\xfc\xfb\x4f\x9c\xfb\x69\x0b\x3c\x7c\xe3\xdb\x36\xe1\xae\x7d\x63\x42\xd7\xec\x1b\x8b\xc3\xc2\xe6\xd0\x10\x38\xd4\xa1\x49\x0b\x7e\xf2\xc8\xb8\x27\xe6\x7f\xf8\xe0\xf0\x68\x07\xae\x5b\x76\x1f\xff\x07\x8f\x8f\xfb\x6d\xc5\x3d\xf9\xc6\x89\xa5\x74\xbf\xbc\xa9\x2a\x4f\x5c\xac\xef\x61\x0c\xc0\xd9\x73\x18\xfc\xb6\xa5\x0d\x45\xa9\x9e\x87\x20\x87\xce\xde\xfc\x34\x73\x53\xac\x06\x39\x08\x32\x60\xc3\x3d\x4d\x2b\xa7\xad\x72\x1e\x3a\x1c\xdc\xe7\x0d\x93\x5a\xd7\xf8\x58\x4a\x07\x94\xdd\xa5\x47\x25\x79\x54\x12\x5c\x49\x8c\x16\xa5\x9b\x57\x59\x5c\xaf\xb4\x4d\xd0\x9b\xab\x4b\xf7\x49\x0e\x6d\x49\x81\x37\x57\x16\x12\x8a\x2a\x8f\x1c\x05\xf8\xdc\x2a\xd3\x7d\x92\x8f\xd2\xc6\x0a\x63\x79\x74\xab\x03\x62\x56\xe5\x51\x51\x1e\x15\x05\x53\x14\x83\x65\xe1\xab\xf6\xfb\x33\x6a\x1b\xcc\x3a\x1b\x5a\xe7\x0d\x66\x9b\x7c\x94\x36\xd6\x8a\xdb\xcf\xa4\x1b\xcc\x3c\xb7\x73\x16\x34\xd3\xf2\xa8\x29\x8f\x9a\x62\xd0\x14\xb3\x6d\xd9\x60\x36\xca\x63\xd6\xf2\xcf\x3c\x9b\x59\xe7\x4d\x66\x9c\x5c\x73\x2a\x83\xde\x60\xb6\xb9\xdd\x4c\xba\xc1\xac\x73\x5b\x67\x01\xb3\x2b\x8f\x5a\xf2\xa8\x25\x6a\x78\x8f\xe1\xa4\xb7\x1c\xdb\x33\xae\xa5\x5b\xf6\xad\xc0\xb0\x97\xcf\x0a\x0c\x9b\x48\x94\x82\xfe\x98\x1a\x3e\xde\x94\x97\xe3\xde\x79\x78\xaf\xd4\x29\x05\x6d\xfb\x8a\x7c\xbc\x29\x9f\xc6\xeb\x59\xff\x7e\xc9\x33\x12\x5a\x96\x34\xfa\xf5\xa6\xbc\xea\x0d\x7a\xf7\x4a\x9e\x10\x50\x89\x93\x6f\x37\xe5\xf9\x7a\xb2\xf4\x6d\xba\x3d\x11\x9e\x89\x36\xa5\xa0\x12\xa7\x1f\x6f\xca\x67\xd1\x68\x34\xb9\xdf\x9e\x67\x24\x54\xfa\xec\x2b\x7e\x87\x0e\x34\x12\x0c\x64\x91\x0c\xc3\x62\x20\x9e\xb0\xdd\xd4\x82\x5f\x8a\xad\xc0\x18\x66\x36\x67\x4d\x64\x1a\x27\xfa\xc8\x31\xd8\x2e\xa0\x3a\xe2\x37\xfe\x52\xac\x33\x0e\x8a\x2d\xf8\x71\x3c\x5c\x38\x71\x65\x61\x22\xa9\x57\x6a\xe4\x0a\x2b\xfc\x80\xcd\x2d\xe2\xf6\x50\xa8\x63\x4d\xfc\x42\xb0\x49\x93\xd2\x3f\xa6\xcd\xba\xbc\xd9\xf8\x4f\x55\xa6\x96\x34\xc0\x41\xcc\x1a\x6a\x16\x9f\x7c\x05\x18\xf0\x60\x0d\x9c\xf2\x32\xc3\xc4\x2a\xc2\x55\x03\x33\x0e\x5a\x26\x67\x39\xfa\x3b\x37\x53\x97\x2a\x31\xac\xb6\xdc\x89\xa6\xe8\x45\xb4\x67\x8c\xb5\xca\x6d\x3e\x81\x03\xff\xca\x64\x6f\x80\xb8\x71\x8f\x08\x9e\xe8\xb0\x9a\x56\xc5\x71\x6b\x10\x37\xf6\x91\xa1\xd7\x32\x30\xad\x83\x38\x93\x29\x26\xd0\x78\x22\xc5\xb4\x50\xd2\xc0\x47\x91\x3c\x10\x91\xe8\xa3\x85\x7a\x02\x16\xfb\x6f\x11\x90\xe0\x33\x07\x76\x31\x61\x82\x49\x6b\x97\x5b\x92\xae\x3c\x10\x86\xf4\x9e\x62\x3e\x8b\x8b\x33\x8f\xd0\x27\x75\x7b\xed\x72\x2d\x28\x96\x5b\x81\x01\x45\x56\xea\x8a\x39\x43\x80\x08\x34\x8a\x47\x28\xb5\xf5\x15\x7b\x5a\x07\x14\x77\x8c\xfc\xa4\xa5\x37\x4d\xf4\xbd\x67\xf6\xee\x8f\x50\xac\x98\xf8\xc9\x4a\x0d\xef\x46\x85\xd8\x36\x40\xb1\x6d\xe4\x27\x2d\x95\xb4\xea\x51\x78\xff\x6d\xc2\xfb\x7f\xff\x17\x00\x00\xff\xff\x92\x70\x0b\x4a\xde\xbb\x07\x00") func filesCssSemanticMinCssBytes() ([]byte, error) { return bindataRead( @@ -315,7 +316,7 @@ func filesCssSemanticMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/semantic.min.css", size: 447592, mode: os.FileMode(493), modTime: time.Unix(1433931187, 0)} + info := bindataFileInfo{name: "files/css/semantic.min.css", size: 506846, mode: os.FileMode(493), modTime: time.Unix(1440990032, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -335,7 +336,7 @@ func filesCssThemesDefaultAssetsFontsIconsEot() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/themes/default/assets/fonts/icons.eot", size: 60767, mode: os.FileMode(420), modTime: time.Unix(1432137165, 0)} + info := bindataFileInfo{name: "files/css/themes/default/assets/fonts/icons.eot", size: 60767, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -355,7 +356,7 @@ func filesCssThemesDefaultAssetsFontsIconsOtf() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/themes/default/assets/fonts/icons.otf", size: 93888, mode: os.FileMode(420), modTime: time.Unix(1432137165, 0)} + info := bindataFileInfo{name: "files/css/themes/default/assets/fonts/icons.otf", size: 93888, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -375,7 +376,7 @@ func filesCssThemesDefaultAssetsFontsIconsSvg() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/themes/default/assets/fonts/icons.svg", size: 313398, mode: os.FileMode(420), modTime: time.Unix(1432137165, 0)} + info := bindataFileInfo{name: "files/css/themes/default/assets/fonts/icons.svg", size: 313398, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -395,7 +396,7 @@ func filesCssThemesDefaultAssetsFontsIconsTtf() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/themes/default/assets/fonts/icons.ttf", size: 122092, mode: os.FileMode(420), modTime: time.Unix(1432137165, 0)} + info := bindataFileInfo{name: "files/css/themes/default/assets/fonts/icons.ttf", size: 122092, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -415,7 +416,7 @@ func filesCssThemesDefaultAssetsFontsIconsWoff() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/themes/default/assets/fonts/icons.woff", size: 71508, mode: os.FileMode(420), modTime: time.Unix(1432137165, 0)} + info := bindataFileInfo{name: "files/css/themes/default/assets/fonts/icons.woff", size: 71508, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -435,7 +436,7 @@ func filesCssThemesDefaultAssetsFontsIconsWoff2() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/themes/default/assets/fonts/icons.woff2", size: 56780, mode: os.FileMode(420), modTime: time.Unix(1432137165, 0)} + info := bindataFileInfo{name: "files/css/themes/default/assets/fonts/icons.woff2", size: 56780, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -455,12 +456,12 @@ func filesCssThemesDefaultAssetsImagesFlagsPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/css/themes/default/assets/images/flags.png", size: 28123, mode: os.FileMode(420), modTime: time.Unix(1432137165, 0)} + info := bindataFileInfo{name: "files/css/themes/default/assets/images/flags.png", size: 28123, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x56\x4d\x6f\xe3\x36\x10\x3d\x3b\xbf\x82\x11\x0a\xa4\x05\x2c\x71\xb7\xe8\xc9\x96\x04\x6c\xb7\xc6\xb6\x40\x8a\x00\xd9\xdc\x16\x8b\x82\x96\x26\x12\x63\x8a\x54\x49\xca\x1f\x0d\xfc\xdf\x3b\xa4\x3e\xa2\xc4\x4e\x62\xaf\x0f\xb6\x35\x9a\x99\xf7\x38\xf3\x66\xa4\xb8\xb4\x95\x48\x2f\x26\x71\x09\x2c\xc7\xdf\x49\x6c\xb9\x15\x90\x7e\x16\xaa\xc9\xc9\x9d\xd2\x1a\xa4\x8d\x69\x6b\xbc\x20\xf8\x99\xc4\x15\x58\x46\x24\xab\x20\x09\xd6\x1c\x36\xb5\xd2\x36\x20\x99\x92\x16\x5d\x93\x60\xc3\x73\x5b\x26\x39\xac\x79\x06\xa1\xbf\x98\x12\x2e\xb9\xe5\x4c\x84\x26\x63\x02\x92\x8f\xd1\x87\x29\xa9\xd8\x96\x57\x4d\x35\x36\x35\x06\xb4\xbf\x66\x4b\x34\x49\x15\x78\x3e\x82\xcb\x15\xd1\x20\x92\xc0\xd8\x9d\x00\x53\x02\x20\x9c\xdd\xd5\x08\x6f\x61\x6b\x69\x66\x4c\x40\x4a\x0d\xf7\x49\x80\x7f\xe9\x35\xb3\xca\x7f\x45\xee\xc6\x0f\xa5\x30\x50\x31\x69\x79\x16\x55\x5c\xfe\x78\x16\x56\xd7\xc7\x82\x39\x56\x6a\x70\x73\x55\x0e\xef\xd9\xda\x19\xa3\x5a\x16\x7d\x3e\x5e\xb1\x02\xe8\x36\x6c\x9d\xa9\x4f\xe1\x51\x5f\xe2\xa5\xdf\x64\x11\x62\x1a\xb6\xfa\xfe\x98\x73\x53\x0b\xb6\x9b\x11\xa9\x24\xcc\xf7\x31\xf5\x11\xae\xb9\xb4\xeb\x6e\xbc\x54\xf9\x8e\x60\x04\x72\x4b\x02\xfc\x0a\xd2\x38\xe7\x6b\xd2\xe7\x20\x99\x60\xc6\x20\x2f\x44\x6f\x79\x5f\x86\x21\xb9\xfb\xeb\xee\x7a\x41\x92\x63\x1f\x12\x86\xde\xcd\x25\xe9\x62\xbd\x54\x7c\x30\x8a\xea\x57\xff\x3b\x89\x59\x77\xe0\xd2\xda\xda\xcc\x28\x2d\xb8\x2d\x9b\x65\x94\xa9\x8a\x3e\xd4\x5c\x08\xa5\x19\x6d\x8b\x61\x5b\xc9\x05\x3e\x6e\x62\x99\x2e\x00\x45\xf5\xcf\x52\x30\xb9\xea\x8c\xc8\xd6\x09\x2a\x09\x84\x2a\xd4\x9f\x6a\x0d\x9a\x24\xe4\x9e\x09\x03\x4f\x0e\x95\x42\x35\xb9\x5b\xcf\xbd\xac\x6e\x5e\x3a\x09\x60\x6b\x38\x96\xab\xa5\x3e\x89\x79\x7f\xb2\xa5\x68\x80\xb4\x1d\xf1\x05\xf3\xc6\x47\x4f\x7b\x76\x39\xc4\x4f\x49\x7b\xb8\x19\x19\x4c\x7b\x2c\x33\xe5\x29\x79\x36\x54\x6d\x61\x28\x6b\x2b\x45\xbb\x52\x8d\x2b\x69\x2c\xb3\x8d\xe9\x78\x20\x0d\x04\x35\xa5\xda\x24\x81\x86\x7f\x1b\x30\x16\xcb\xd7\x48\x4b\x52\xf2\xa1\x3b\x52\x17\xd7\x20\x63\xae\xb3\x46\x30\x8d\x1c\x58\xce\x65\x81\xd2\xab\x81\xd9\x96\xbd\x27\x33\x4a\x9a\x09\x9e\xad\x92\xe0\x27\xad\x94\x8d\x40\x16\x5c\x42\x04\x39\xb7\x58\x89\xcb\x03\xe3\xfc\xd9\xe1\x0b\x0d\x20\x67\xe4\xc0\x6b\xff\x3a\x23\x1c\x72\x57\xe5\xb6\x8e\x5e\xa1\x49\x70\x8f\xcb\x23\x34\xfc\x3f\x98\x91\x8f\xbf\xd5\xdb\xf9\xdb\x14\x55\x25\xf9\x0b\x82\x83\x69\xfe\xd4\xdd\xa3\x1c\x07\xc7\x37\x18\xe2\xec\x49\xb0\xe7\x30\x3c\x56\x78\x5e\x94\x56\xba\xd2\xfb\x3c\x07\xac\x48\x47\x0b\x6f\x4a\xc8\x2c\xe4\x53\xec\x51\x3e\x23\x97\x83\x81\xec\x9f\x40\x62\x8a\xba\xf0\x93\x36\xfc\x71\x93\xf9\xe5\xfa\xe6\xf7\x4f\xd7\x64\x71\x7b\x7b\x73\x4b\xfe\x5e\x7c\xfd\xfa\xe9\xcb\x09\x83\xea\xe6\x07\x67\x11\xb4\x0e\x46\xcc\xf1\x52\xe1\xd9\xc1\x98\x7e\xf8\x47\x27\x43\x91\x9b\x67\xda\x1f\x2b\x46\xbb\x99\x91\x8d\x10\x23\xbe\x23\x19\xbb\xdd\x03\x3a\x48\x17\x0e\x60\xe0\x3f\x89\xeb\xf4\xf1\x11\x63\xf7\xb8\xa8\xea\xd1\xd1\xfc\xaa\xc3\x02\x70\x25\xfb\x0c\xad\xb0\x5a\x64\xec\x83\x56\x42\xb8\xc1\x5e\x78\xf3\xe7\xc1\xe2\x1d\xb8\xcc\x44\x93\x03\x31\x3a\x4b\x82\x2b\x0b\x15\xae\x44\x0b\xb4\xd3\xa6\x7b\xda\x5d\x39\x9a\x1d\x42\x7a\x04\xcd\x49\xe4\x00\xeb\x06\x8d\xa7\x21\x79\x85\x9d\x82\xd3\x6d\x3a\x73\x80\xd5\x2d\x08\x73\x1a\x5e\x9f\xe6\x24\xcc\x5c\x6d\xa4\x5b\x09\x87\xa0\x7f\xf4\x77\x4e\x43\x1d\x12\x1d\x81\xf5\xb8\x99\xe6\xb5\x6d\xa3\x1e\x0c\x5d\x83\xcc\x95\xa6\xb8\xb6\xf4\x2e\x34\x56\xe3\x5c\x44\x0f\xc6\x47\x79\xc7\xf4\xf5\x18\x26\x0b\x37\x50\xfe\x59\xfc\x66\x08\xd5\xc0\x84\xe5\x15\xbc\xe6\x96\x6e\x38\x66\xdc\x44\xf8\xdc\x43\xc1\xf6\x17\x7d\x7a\x95\x37\x02\x7e\xbe\xc2\x9b\x57\x53\xf2\xed\xfb\x2f\xf3\xb7\xb8\xb5\x72\x1a\x15\xf0\xdd\xd3\x38\x59\x9c\xe3\xdf\xb7\xf5\x9c\x98\xa1\x29\xe7\x04\x35\x96\x0b\xf3\xae\x57\xff\x4a\x14\x66\x25\x64\xab\xa5\xda\xbe\x1b\xa1\x9b\x83\x7e\xb5\x13\x1e\x53\xf7\x16\x92\x5e\xe0\x33\xcf\xbd\x7b\xfe\x1f\x00\x00\xff\xff\x36\x53\xc9\x01\x82\x0a\x00\x00") +var _filesIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x56\xdd\x6e\xe3\x36\x13\xbd\x76\x9e\x82\x11\x3e\x20\x5f\x01\xcb\xf4\x16\xed\x8d\x2d\x09\xd8\xa6\xc1\xb6\x40\x8a\x00\xd9\xdc\x2d\x16\x05\x2d\x8d\x25\xc6\x14\xa9\x92\x94\x7f\x1a\xf8\xdd\x3b\xa4\x7e\x22\xc7\x4e\xe2\xac\x2f\x6c\x6b\x38\x33\xe7\x70\xe6\x0c\xa9\xa8\xb0\xa5\x48\x2e\x46\x51\x01\x2c\xc3\xdf\x51\x64\xb9\x15\x90\x5c\x0b\x55\x67\xe4\x41\x69\x0d\xd2\x46\xb4\x31\x5e\x10\xfc\x8c\xa2\x12\x2c\x23\x92\x95\x10\x07\x6b\x0e\x9b\x4a\x69\x1b\x90\x54\x49\x8b\xae\x71\xb0\xe1\x99\x2d\xe2\x0c\xd6\x3c\x85\xd0\x3f\x8c\x09\x97\xdc\x72\x26\x42\x93\x32\x01\xf1\xa7\xc9\x74\x4c\x4a\xb6\xe5\x65\x5d\x0e\x4d\xb5\x01\xed\x9f\xd9\x02\x4d\x52\x05\x9e\x8f\xe0\x72\x45\x34\x88\x38\x30\x76\x27\xc0\x14\x00\x08\x67\x77\x15\xc2\x5b\xd8\x5a\x9a\x1a\x13\x90\x42\xc3\x32\x0e\xf0\x2f\xbd\x65\x56\xf9\xaf\x89\x5b\xf8\xa1\x14\x06\x4a\x26\x2d\x4f\x27\x25\x97\x3f\x9e\x85\x55\xd5\xa9\x60\x8e\x95\xea\xdd\x5c\x95\xc3\x25\x5b\x3b\xe3\xa4\x92\x79\x97\x8f\x97\x2c\x07\xba\x0d\x1b\x67\xea\x53\x78\xd4\x97\x78\xc9\x37\x99\x87\x98\x86\xad\xbe\x3f\x65\xdc\x54\x82\xed\x66\x44\x2a\x09\xf3\x7d\x44\x7d\x84\x6b\x2e\x6d\xbb\x1b\x2d\x54\xb6\x23\x18\x81\xdc\xe2\x00\xbf\xb0\x6f\x82\x19\xd3\xfc\x4f\xa2\x8c\xaf\x49\x97\xaf\x5b\x49\x91\x49\xb3\x87\xcb\x30\x24\x0f\x7f\x3e\xdc\xde\x90\xf8\xd4\x87\x84\xa1\x77\x73\x49\xda\x58\x2f\x1b\x1f\x8c\x02\xfb\xd9\xff\x8e\x22\xd6\x6e\xbe\xb0\xb6\x32\x33\x4a\x73\x6e\x8b\x7a\x31\x49\x55\x49\x1f\x2b\x2e\x84\xd2\x8c\x36\x85\xb1\x8d\xfc\x02\x1f\x37\xb2\x4c\xe7\x80\x02\xfb\x7b\x21\x98\x5c\xb5\x46\x64\xeb\xc4\x15\x07\x42\xe5\xea\x0f\xb5\x06\x4d\x62\xb2\x64\xc2\xc0\xb3\x43\xa9\x50\x59\x6e\xe9\xd0\xcb\xea\xfa\xa5\x93\x00\xb6\x86\x53\xb9\x1a\xea\xa3\x88\x77\x3b\x5b\x88\x1a\x48\xd3\x1d\x5f\x30\x6f\x7c\xf2\xb4\x67\x97\x7d\xfc\x98\x34\x9b\x9b\x91\xde\xb4\xc7\x32\x53\x9e\x90\x83\x01\x6b\x0a\x43\x59\x53\x29\xda\x96\x6a\x58\x49\x63\x99\xad\x4d\xcb\x03\x69\x20\xa8\x29\xd4\x26\x0e\x34\xfc\x53\x83\xb1\x58\xbe\x5a\x5a\x92\x90\x69\xbb\xa5\x36\xae\x46\xc6\x5c\xa7\xb5\x60\x1a\x39\xb0\x8c\xcb\x1c\x65\x58\x01\xb3\x0d\x7b\x4f\x66\x90\x34\x15\x3c\x5d\xc5\xc1\xff\xb4\x52\x2e\xa7\x5c\xf2\x7c\x02\x19\xb7\x58\x89\xcb\x23\xe3\xfc\x60\xf3\xb9\x06\x90\x33\x72\xe4\xb5\x7f\x9d\x11\x0e\xbc\xab\x72\x53\x47\xaf\xd6\x38\x58\xe2\x41\x12\x1a\xfe\x2f\xcc\xc8\xa7\x5f\xaa\xed\xfc\x6d\x8a\xaa\x94\xfc\x05\xc1\xde\x34\x7f\xee\xee\x49\x8e\xbd\xe3\x1b\x0c\x71\x0e\x25\xd8\x8f\x30\x3c\x55\x78\x9e\x17\x56\xba\xd2\xfb\x3c\x47\xac\x48\x4b\x0b\x17\x25\xa4\x16\xb2\x31\xf6\x28\x9b\x91\xcb\xde\x40\xf6\xcf\x20\x11\x45\x5d\xf8\x49\xeb\xff\xb8\xc9\xfc\x72\x7b\xf7\xdb\xe7\x5b\x72\x73\x7f\x7f\x77\x4f\xfe\xba\xf9\xfa\xf5\xf3\x97\x33\x06\xd5\xcd\x0f\xce\x22\x68\x1d\x0c\x98\xe3\xa3\xc2\xbd\x83\x31\xdd\xf0\x0f\x76\x86\x22\x37\x07\xda\x1f\xb4\x03\x03\xb1\x11\xb2\x16\x62\xc0\x77\x20\x63\x77\x0e\x81\x0e\x92\x1b\x07\xd0\xf3\x1f\x45\x55\xf2\xf4\x84\xb1\x7b\x3c\xb4\xaa\xc1\xd6\xfc\xb1\x87\x05\xe0\x4a\xf6\xe8\x5e\x58\x0d\x32\xf6\x41\x2b\x21\xdc\x60\x5f\x7b\xf3\x75\x6f\xf1\x0e\x5c\xa6\xa2\xce\x80\x18\x9d\xc6\xc1\x95\x85\x12\x8f\x47\x0b\xb4\xd5\xa6\xbb\xf9\xae\x1c\xcd\x16\x21\x39\x81\xe6\x24\x72\x84\x75\x87\xc6\xf3\x90\xbc\xc2\xce\xc1\x69\x4f\x3a\x73\x84\xd5\x1e\x10\xe6\x3c\xbc\x2e\xcd\x59\x98\x99\xda\x48\x77\x24\x1c\x83\xfe\xde\xad\x9c\x87\xda\x27\x3a\x01\xeb\x71\x53\xcd\x2b\xdb\x44\x3d\x1a\xba\x06\x99\x29\x4d\xf1\xd8\xd2\xbb\xd0\x58\x8d\x73\x31\x79\x34\x3e\xca\x3b\x26\xaf\xc7\x30\x99\xbb\x81\xf2\xf7\xf2\x51\x88\x1b\x82\x83\x38\xaa\x81\x09\xcb\x4b\x18\x38\x76\xda\x1f\xfa\xb9\x8b\x08\xef\x21\xa1\xf0\xd5\xa3\x50\xc6\xce\x7e\x9d\x4e\xa7\x7d\xf0\x6b\xdc\x92\x0d\x47\x4e\x9b\x09\xde\x9c\x28\xf9\xee\xa1\x23\xa8\xb2\x5a\xc0\xff\xaf\x70\xf1\x6a\x4c\xbe\x7d\xff\x69\xfe\xd6\xee\x1a\x41\x0e\x5a\xf0\x6e\x3d\x9c\xb0\x3e\xe2\xdf\x09\xe3\x23\x31\x7d\x5b\x3f\x12\x54\x5b\x2e\xcc\xbb\x5e\xdd\x0b\x56\x98\x16\x90\xae\x16\x6a\xfb\x6e\x84\xae\x8f\x3a\xde\x9c\x11\x11\x75\xef\x34\xc9\x05\xde\x9a\xfe\x4d\xf6\xbf\x00\x00\x00\xff\xff\xfa\x67\x9d\xd4\xd1\x0a\x00\x00") func filesIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -475,52 +476,52 @@ func filesIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/index.html", size: 2690, mode: os.FileMode(420), modTime: time.Unix(1436522194, 0)} + info := bindataFileInfo{name: "files/index.html", size: 2769, mode: os.FileMode(420), modTime: time.Unix(1441024640, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesJsDownloadsControllerJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd2\xd7\x52\x48\xcf\xc9\x4f\x4a\xcc\x29\x56\x48\x2c\x28\x50\xd0\xd2\xe7\xe2\x02\xd2\x7a\xc9\xf9\x79\x25\x45\xf9\x39\x39\xa9\x45\x1a\x4a\x2e\xf9\xe5\x79\x39\xf9\x89\x29\xc5\xce\x70\x41\x25\x1d\x85\xb4\xd2\xbc\xe4\x92\xcc\xfc\x3c\x0d\x95\xe2\xe4\xfc\x82\x54\x1d\x05\x95\xa2\xfc\xfc\x92\x60\x10\x5b\x53\xa1\x9a\x4b\x01\x89\xaf\x97\x02\x33\x41\xc1\x56\x01\xa2\xdc\x9a\xab\x56\xd3\x1a\x10\x00\x00\xff\xff\x9b\xad\x66\xb8\x7c\x00\x00\x00") +var _filesJsConfigControllerJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x5c\x8f\xc1\x6e\xc3\x20\x10\x44\xef\xfe\x8a\x6d\x94\x83\x13\x59\xce\xbd\x15\xea\xc1\x9f\xd0\x2f\x00\xb3\x20\x24\xca\x22\x58\x94\x43\x95\x7f\x2f\x94\x38\x42\xbd\x8d\x67\x3c\x6f\x87\xdb\x15\xac\x27\x25\x7d\x06\x19\xe3\x72\x77\x41\xd3\x1d\xae\xb7\x69\xaa\x9f\xeb\x4e\x81\x13\x79\x8f\x69\x3e\x6d\x14\x8c\xb3\xdb\xcb\x39\x2d\x60\x4a\xd8\xd9\x51\x98\xcf\x79\xa7\x88\x0b\x9c\x13\x11\x7f\x75\x9d\x99\x92\xb4\x55\xc8\xe8\x2e\xf0\x33\xc1\x90\x36\x70\x85\x81\x80\xde\xfc\x68\xe9\x9f\x5a\x51\x3b\xae\xbe\xa9\x8b\x46\x9b\xc9\x5a\x8f\x2d\x38\x6e\xaa\x0e\xfd\x5f\x54\x20\x84\x80\x12\x34\x1a\x17\x50\xc3\x27\xbc\x8d\x3f\xbc\x83\x6a\xd4\xc7\x80\xce\x45\x7d\x3b\xde\x8e\x45\xaf\x03\x07\xbf\xee\x7f\xee\x2d\x09\xe7\xe1\x11\x99\x25\xe3\xda\x8b\x97\x27\xf5\x51\xc5\x6f\x00\x00\x00\xff\xff\xf5\x97\x32\x6b\x54\x01\x00\x00") -func filesJsDownloadsControllerJsBytes() ([]byte, error) { +func filesJsConfigControllerJsBytes() ([]byte, error) { return bindataRead( - _filesJsDownloadsControllerJs, - "files/js/downloads-controller.js", + _filesJsConfigControllerJs, + "files/js/config-controller.js", ) } -func filesJsDownloadsControllerJs() (*asset, error) { - bytes, err := filesJsDownloadsControllerJsBytes() +func filesJsConfigControllerJs() (*asset, error) { + bytes, err := filesJsConfigControllerJsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "files/js/downloads-controller.js", size: 124, mode: os.FileMode(420), modTime: time.Unix(1434468381, 0)} + info := bindataFileInfo{name: "files/js/config-controller.js", size: 340, mode: os.FileMode(420), modTime: time.Unix(1441018460, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesJsEngineControllerJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x74\x91\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\xab\xc9\x60\x07\xa3\x40\x57\xd3\xa9\x74\xe9\xd0\x0e\x19\x4b\x07\xc5\x96\xcc\x81\x2a\x09\xe9\x94\x50\x42\xfe\x7b\x4f\x56\x13\x9b\xd2\x6c\xa7\xf7\xde\x7d\x77\x67\xef\xb6\x30\x19\x77\x90\x26\x82\xf4\xbe\x3b\xa1\x1d\xdd\x09\xb6\xbb\xaa\xe2\xa7\x18\x9c\xa5\xe0\x8c\x51\xa1\xa9\x5f\xec\x84\x56\x3d\xdf\x94\xba\x03\x9d\xec\x40\xe8\x6c\xb3\x89\x83\xf3\xaa\x83\x4d\x70\x8e\xf6\xa5\x8e\xe4\x82\x9c\xb8\x90\x1e\x5b\x38\x57\xb0\x72\x85\x9a\x61\xf0\x04\xa5\xb3\xcf\x6e\x2c\xce\x88\xc4\xba\xe6\x8d\xd6\x32\x8e\x2c\xd6\x56\x12\x1e\x55\xdd\x57\x8b\x11\xd3\xe1\x0b\x89\xd7\xd2\x38\xe5\xbe\xeb\x4a\x79\x24\xa7\x00\x50\x37\x0f\xab\xc9\xa3\x24\x29\xca\x2d\xb1\x9d\x03\x00\x41\x51\x0a\xb6\x5f\xe2\xd7\x99\x7f\x03\xf3\xf3\x28\x03\xcc\xab\xff\x0f\xfd\xb8\x75\x7f\x2e\x44\x75\x97\x94\x3c\x37\x67\xdc\xf9\x52\xe2\x45\x58\x51\xd8\x7b\xdd\xbf\xbf\x89\x48\x01\x79\x84\xfe\x6e\x94\x28\xf7\x76\x60\x93\x31\x1d\x3c\xb6\xbf\x40\xfe\xd4\xf9\x9f\xb1\x95\x82\x6a\x0a\xa9\xcd\x58\x66\x5f\xb8\xf8\x09\x00\x00\xff\xff\xf8\xe2\x8c\x69\xee\x01\x00\x00") +var _filesJsDownloadsControllerJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x94\xc1\x6e\xe3\x20\x10\x86\xef\x7e\x8a\x29\x8a\x2a\xbb\x1b\xe1\xbd\x5b\x7b\x6a\xcf\xbd\xec\x71\xd5\x03\x6b\xc6\x31\x2b\x02\x16\x8c\xbb\x87\x55\xde\x7d\x01\x1b\xdb\x71\x13\xb5\x87\x28\x30\xf3\xff\xc3\xf0\x31\x49\xfd\x04\x27\x6d\x7f\x0b\xed\x41\x0c\x03\x3c\xd5\x45\x11\xbe\x79\x6b\x0d\x39\xab\x35\xba\x92\xbd\xd8\xbf\x46\x5b\x21\xfd\xf3\x12\x64\x47\xe8\x46\xd3\x92\xb2\xa6\x3c\xf8\xd6\x0e\x78\x84\x83\xb3\x96\x7e\xc6\x75\x05\xff\x0a\xd8\xec\xb9\xcc\x15\xe0\x07\x4c\xf2\xa6\x88\x8a\xb4\xe4\x66\x3c\xbf\x6c\x04\x4b\xe1\xa9\x0c\x80\xea\xe6\x33\xb8\x27\x41\xc8\x57\xf1\xe3\x23\xdc\xce\xf0\xe7\x5e\x69\xe9\xd0\x54\xa9\x02\x80\x43\x1a\x9d\xf9\x4c\xcd\x35\x9a\x13\xf5\x4d\xb1\xb1\x7c\x8f\xbb\x4b\x53\x5c\xaa\xe6\x23\x9a\x57\x2b\xf1\xab\x54\xc2\xba\x27\x1a\xa6\x5b\xbd\x0b\x07\x66\xa1\xc1\x4d\xa8\xd3\xcc\xe1\x41\x50\x1f\x32\xbf\x0c\x7f\x15\x67\x7c\x8b\xe1\x95\xc0\x61\x10\xa1\x4f\xda\xdc\x7c\x8e\x7c\x9e\x49\x87\x64\xa6\xe9\xa0\x18\x58\x7b\xb8\x25\x9f\x48\xc4\x8e\xf8\x68\x7c\xaf\x3a\x2a\x93\x2b\x8a\xa8\xaf\x12\x9a\xf0\x31\xd3\x3e\xd4\x4a\xd2\x3f\x56\x99\x92\xd5\xac\x4a\xaf\x5c\xd7\x12\x3b\x31\x6a\xf2\xeb\x93\xb7\xda\x7a\x94\xbb\xc7\xce\xc4\x43\xb5\x29\xdf\x44\xee\x8b\x87\xec\xe9\xa4\x71\xef\x59\xc4\x21\xf1\x70\xc7\xa9\xc2\x93\xdd\x1a\xac\x08\xa1\x8d\xa8\x99\x1d\x49\x2b\x83\xec\xc8\xa2\x96\xbd\x35\xbb\xc1\x53\xbe\x53\x1a\xcb\x2a\x3b\x01\x5a\x3e\x8c\xbe\x2f\x59\x8c\xb3\x6a\xd2\x5f\x00\xb5\xc7\x8f\x12\xab\x65\x18\x8e\x2c\xca\xa5\x1f\xae\x58\xdc\xaa\x1d\xb2\xe6\xda\x36\x13\x6a\x67\xc4\x30\x65\xaf\xee\x9a\x3a\xbd\x43\x36\x00\xca\xa3\xbe\x23\xe4\xa5\x72\xf7\x4c\x3b\x06\xc9\xb9\x5a\x1d\x9e\xed\xfb\xfe\xc0\xd4\x6c\x1a\x77\x2e\x51\x23\x61\x18\x87\xfc\x27\x50\x33\xf8\x96\x27\xa6\xda\xfc\xb8\xfe\x07\x00\x00\xff\xff\x41\x5a\xfa\x67\x8a\x04\x00\x00") -func filesJsEngineControllerJsBytes() ([]byte, error) { +func filesJsDownloadsControllerJsBytes() ([]byte, error) { return bindataRead( - _filesJsEngineControllerJs, - "files/js/engine-controller.js", + _filesJsDownloadsControllerJs, + "files/js/downloads-controller.js", ) } -func filesJsEngineControllerJs() (*asset, error) { - bytes, err := filesJsEngineControllerJsBytes() +func filesJsDownloadsControllerJs() (*asset, error) { + bytes, err := filesJsDownloadsControllerJsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "files/js/engine-controller.js", size: 494, mode: os.FileMode(420), modTime: time.Unix(1434460037, 0)} + info := bindataFileInfo{name: "files/js/downloads-controller.js", size: 1162, mode: os.FileMode(420), modTime: time.Unix(1441030369, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesJsOmniControllerJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\x57\x5f\x6f\xdc\x36\x12\x7f\xf7\xa7\x98\x08\x86\x23\xc5\xb2\x94\xe0\x9e\xce\x7b\x7b\x41\x2e\x38\xa0\x06\x9a\xa6\x70\x1a\x14\xe8\xda\x06\xe8\x15\x77\x97\x8d\x44\xaa\x14\xb5\x4e\x9a\xec\x77\xef\xf0\xaf\x28\xad\xec\xf4\xa1\x2f\xb6\x96\x1c\xce\x0c\xe7\xcf\xef\x37\x2c\x5f\xc0\xb6\x16\xf7\xa4\xee\x80\xb4\x6d\xfe\xc0\x78\x25\x1e\xe0\x45\x79\x72\x82\x3f\x8b\xb5\xe0\x4a\x8a\xba\xa6\x32\x4d\xde\x37\x9c\xbd\x0d\xbf\x93\x1c\x36\x3d\x5f\x2b\x26\x78\x7a\xda\xad\x45\x4b\x73\x38\x95\x42\xa8\x0f\xf6\xbb\x53\x42\x92\x2d\x7e\x90\x96\xe1\x2f\x4a\xe4\x7a\x97\xc1\xd7\x13\x88\xa4\x0a\x81\x2a\x61\x09\xf6\xfc\x42\xef\x99\xaf\x82\xf1\xb6\x57\x1d\xee\x68\x79\x00\x2d\x76\xe9\x35\x16\x6a\xad\x3d\x81\x6f\xdf\x20\x49\x72\xb3\xdf\x4a\xb1\x67\x15\x95\xb1\xcc\xcf\x6e\xcd\xc8\xa9\xf6\x3e\x41\xc9\x83\x36\x51\x96\xb4\x62\x0a\x36\x8c\xd6\x55\x37\x98\x34\x8b\x4b\xd8\x60\x20\x62\x4f\x94\x24\xeb\x4f\x54\x6a\x5f\x56\x5f\x61\x7f\x89\x36\xe1\x70\x1b\x09\x78\xdb\xc6\xdb\x43\xb4\x71\xfa\x40\xd4\x7a\x97\x26\xf6\x2e\x41\x2e\x8e\x5b\x9b\xb9\x0b\xb2\x8d\xfe\x9e\x71\x7e\x09\xed\xc2\x48\x78\x6b\x44\x76\x34\xcd\xf4\xda\x21\xb3\xb7\x61\x1b\xe8\x79\x47\x95\x0e\xb2\x02\x25\xf0\x66\xb2\x53\x21\x26\xe3\x80\x7b\xa7\x2a\xa2\x48\xf1\xc1\x24\xc5\xdb\xea\x62\xcf\xba\xf1\x96\xf7\xb3\x2c\x25\x6d\xc4\x9e\x42\x4d\xd0\x04\xda\xf3\xde\x3f\x9b\x1e\x30\x1b\x00\x92\xaa\x5e\xf2\x85\x3b\xbc\x61\xb5\x32\x1e\x01\x6c\x84\x4c\xf7\x44\x02\xab\x80\x71\x78\xc4\x9c\x51\x5d\x5e\x30\x45\x9b\xd3\xb2\x50\xb4\x53\x29\xab\xb2\x0c\x74\x55\x32\xde\xd3\x85\x93\x9a\xa6\x62\xc5\xaa\x5b\x0c\xdd\x44\xab\x5e\xb5\x27\x0e\x4f\x84\x14\xff\x69\xbf\xcc\xea\x2f\x42\x4a\xca\x4d\x59\xf8\xc0\x78\xd7\xdc\xe1\x46\x54\x98\xaf\x20\xa6\xa4\x75\xea\x30\xd6\xf3\x8e\x6c\x39\x1d\xa9\xc1\x65\xd2\x74\x73\xca\x1a\x2f\xeb\x75\x59\x3d\x0d\xae\xd8\xde\x2c\xfe\xe8\xa9\xfc\xf2\x41\x49\xc6\xb7\xce\x79\xa7\xcd\x18\xd5\x31\x83\xf4\x59\x79\x87\x71\xbf\xbc\x57\x6c\x77\x99\xae\xde\x5c\xfc\x46\x2e\xfe\x7c\x79\xf1\xef\xdb\xf3\xcc\x07\xb2\x29\x3e\xab\x6c\x08\xb4\x73\x41\x77\x1a\x95\xba\xee\x92\x2b\xbe\x27\x35\xa6\xe7\x8a\x6f\x04\xfc\x40\xba\x5d\xb2\x98\x49\xea\xe1\x24\xbe\x01\x43\xd9\x1d\x8a\xe2\xf9\x6b\xba\xfd\xff\xe7\xb6\x38\x7d\x35\xaa\x5f\x4e\x1a\x8a\x9b\x4d\x51\x71\xdb\xc0\xbe\x34\xb8\x80\xd0\x6a\x97\xef\x87\x7b\x34\xd8\x81\x8f\x14\x93\x90\x6b\x0a\x44\x4a\xf2\x65\x10\x4f\xb5\x3c\x56\x54\xa7\x08\x5f\x53\xb1\x81\x37\x7a\x3f\xf3\x1a\xcc\x2e\x76\xb2\xfe\x7f\xeb\xc2\x85\x1d\xc4\xa1\xad\x09\x2a\x6b\x48\xeb\x8b\x13\x6c\x75\xa2\xf0\xcb\x05\xfe\xfb\x8f\x39\x5a\xd4\x94\x6f\xd5\x0e\x17\xce\xcf\xb3\x71\xe0\xbc\xf3\x2b\xa6\x2b\xcf\x20\x85\x3e\xa1\x7f\x1e\x9c\xa1\x87\x1d\xab\x29\xa4\x93\x03\x4e\x27\xfc\x37\xb6\xf0\x88\xf2\xa2\x15\x6d\xea\xd3\x7c\xb4\xd7\x77\xbb\x34\x40\x54\x36\x53\x86\xb6\xdf\xbf\x57\xcd\x9d\x97\x1a\x0a\x70\xec\xb9\xa4\x5d\x5f\xab\x6e\xde\x55\xbf\xe9\x3c\xf5\x3e\xc4\xbd\x36\xe7\xc0\x04\xdb\x97\x63\x22\x30\x65\x39\xaa\xa3\xa1\x4e\x79\x5f\xd7\xbe\x24\x34\x00\x92\xba\x86\x7f\x19\x18\xd4\x48\x9e\xbb\x1d\xc1\x29\xb6\x0f\x6e\x39\x8c\xbc\xa7\xe6\x7a\xd3\xcb\x07\xc6\x01\x70\x4d\x7d\x19\xeb\xc1\x02\x32\xdd\x39\x59\xb4\x11\x73\x8b\xb6\x2b\x26\xa0\xbd\xd5\x9a\xc7\x9d\x80\x6d\xf2\x4e\x48\x3a\x8a\xb3\x6f\x12\x71\x6d\xa3\x18\xf3\xd1\x34\xc2\xba\x8c\x6f\xa3\x8e\x2f\xef\x76\x4a\xb5\xdd\xeb\xcb\x9b\xf2\xa6\x74\x3d\x7e\x1c\xc4\xd0\x09\x31\xbe\xd9\x44\x01\x50\x34\xe5\x74\xb9\x7b\xde\xbc\x4e\x8b\x01\x32\xbe\xa7\xce\xc2\x5c\x1a\x3a\x7f\xaa\x76\xe6\x7c\x7c\xdc\x96\x67\xec\xcc\xb8\xb4\xa6\x0c\x1d\x93\x6d\x00\x71\x57\xef\xd6\xff\x8f\xd7\x57\x71\xb1\x69\xf0\xc9\xc1\x63\x54\x1e\x00\xc7\x17\xa1\xc5\x17\x48\xdc\xe5\x5f\x27\x70\xee\x3c\x48\x3e\xab\x65\xc0\x53\x5c\x86\x34\x20\x1d\xa2\xd8\xf3\xe7\x19\x2e\x25\x67\x91\x7c\xc5\x97\x46\xcc\xe0\x9d\x15\xc1\xc4\x19\x94\x49\xcb\x9b\x5f\xcb\x6d\x3e\x59\xea\xce\xcd\xda\xb9\x56\xe5\x94\xa4\x01\x10\x51\xc1\xea\x36\x43\x6a\x68\xd3\x70\x19\x35\x60\xf7\xe0\xf9\x99\x92\xc6\x2e\xe5\x6b\xac\x66\xbc\xfe\x5b\xd1\xb4\x58\xfb\x98\x63\x55\xec\x33\x0f\xe0\x87\xac\xf8\x5d\x30\x9e\xa2\x0b\x47\x2d\xda\x19\x62\x61\x9b\x2f\x4f\xe0\xc4\xb4\xfb\x62\xda\x89\xc9\xe6\xa8\x70\x6c\xcc\xfe\x39\xda\x99\x03\xea\x79\x7c\x5d\x64\x61\xa2\x40\x37\x8f\x41\x1b\xa3\x13\xa2\x39\xd5\xd0\xb5\x35\xc3\x24\xe1\x18\xfb\x2a\x84\x30\x2a\x4f\xd0\x74\xb0\x98\xf0\x60\x28\x71\xcd\x76\xbe\x18\xd3\x88\x05\xf3\x29\x67\xe6\x53\xbb\xd9\xe2\xef\xe2\xfc\xec\x2c\x33\x4a\x6a\x7f\xdf\x30\xe5\xa0\xf5\x28\xab\x38\x64\x1d\x13\xc0\x51\x8e\xac\x8e\x71\x93\x1e\x6c\x73\xcf\x4a\x4e\xc0\xe5\x30\xef\xd3\x13\x23\xd6\xc4\x2d\x07\xc8\x83\x5f\xf8\xb0\x28\x7a\x59\xcf\xc1\xca\xc8\xbb\x89\x1e\x9b\x8d\xb1\x1a\xbb\xf6\x5d\x4d\xfe\x88\x1b\xc4\x08\x3e\x83\x54\x9a\x7c\xbc\x82\xff\xf5\xdb\xe4\xe9\x7b\xce\x73\xaf\x63\xa7\x5a\x88\x4f\x7d\x1b\x46\xf6\xe7\x1d\x08\xc9\xb6\x8c\x87\xe9\xaf\x1d\xde\x03\x4e\xeb\xdc\x00\xbf\x1a\xfb\xef\x0f\xb9\xa1\x57\x4f\xe9\x7e\x29\x1b\x35\x93\xb6\x60\x0d\xa2\xfe\x32\x8d\x78\x64\x75\x77\x53\xe2\xcc\xe8\xda\xd8\x9f\xd6\x51\xcf\xe0\xec\x2c\x9e\xf1\x2c\x8b\x1b\x7f\x30\x2e\xd3\xa4\xf8\x93\xf9\x4c\x83\xe4\x31\x4d\x66\x18\xae\xf5\x9a\x76\xdd\x00\x74\x8e\xef\xe2\x37\x01\xa4\xe3\x19\x04\x96\x4b\x6c\xff\x18\x10\x67\x98\x74\xa0\xd9\x48\x60\x60\xe1\x88\x68\xa7\x60\xe3\x1f\x0c\xf3\x78\x33\x76\xc5\xce\x86\x91\x27\x5a\x5a\xe7\xcd\x89\x21\xd4\x0c\x46\xca\x92\x54\x95\x0f\x3d\x4e\x25\xe4\xbe\x13\x75\xaf\x28\x60\x80\xbb\x01\x5d\x36\xa9\x09\xb9\x8e\x78\x79\x17\xc8\xdd\xa6\x21\x36\x85\x5e\x1b\xb9\xa5\x57\x79\x6e\x17\x06\x83\x87\xe9\xfd\xc3\xb8\xa6\x41\x45\x66\xd3\xfb\x46\x99\xd1\x10\x67\xb6\x2c\xc9\x3e\x5a\xe2\x57\xf8\x58\x8b\xcb\xdc\x5a\x18\x1e\x90\x98\x3d\x37\x61\xea\x67\x1d\x60\x02\x1c\x3e\xe6\x80\x3d\xc5\x6b\x41\x2a\xe0\xe2\xe1\xd9\xc9\x38\xd5\x4f\xb5\xed\x58\x62\x9e\x2e\xac\x71\xdd\xc5\x39\xe8\x76\x43\xeb\x80\x2d\xb7\x67\x44\x07\x7b\x20\x30\xa7\xab\x25\xc3\x64\xeb\xc8\xf5\x98\xaa\x7e\x12\xf0\xf1\xfa\x47\x2c\x8a\x9e\x57\xc9\xb8\x05\x90\x73\x1f\x6d\x81\xd8\xc4\x71\xb9\xa3\x6e\x8c\x04\x76\xf7\xb8\xe0\x71\x39\x9b\xd2\xfd\x91\x47\xf8\xd7\xb9\x11\x4f\x41\x61\x49\xeb\x31\xb8\x31\x8d\xa5\x9f\x6b\x51\x45\xb4\x1f\x8a\x61\x98\xe0\xcc\x6e\xa0\xf1\xb9\xf3\x03\xd7\xb9\x6b\x5a\xae\x1b\x1d\xcc\x61\xf5\x15\xe9\xcb\xac\x39\x5a\x83\xc3\x6d\x36\xb1\x77\xd4\xcc\xe3\xc8\x3b\x8b\x42\x86\x81\x2e\x24\x62\x1c\xa6\xa1\xa6\x8f\x2b\x67\x54\x32\xe1\xcd\x84\x1f\x7f\x05\x00\x00\xff\xff\x55\x7b\xb1\x36\x16\x13\x00\x00") +var _filesJsOmniControllerJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\x57\x5f\x6f\xdb\x36\x10\x7f\xcf\xa7\xb8\x0a\x41\x2a\x35\x8e\xd4\x62\x4f\xb3\xe7\x15\x5d\x31\x60\x01\xd6\x75\x48\x57\x0c\x98\x93\x00\x8c\x4d\xdb\x5a\x65\x52\x23\xa9\xa4\x5d\xeb\xef\xbe\xe3\x5f\x91\xb2\xe2\xbc\xec\x25\x91\xc9\xe3\xdd\xf1\xfe\xfc\x7e\xc7\xea\x05\x6c\x1a\x7e\x47\x1a\x09\xa4\x6d\x27\x0f\x35\x5b\xf1\x07\x78\x51\x9d\x9c\xe0\xcf\x72\xc9\x99\x12\xbc\x69\xa8\xc8\xb3\xf7\x3b\x56\xbf\x0d\xbf\xb3\x09\xac\x3b\xb6\x54\x35\x67\xf9\xa9\x5c\xf2\x96\x4e\xe0\x54\x70\xae\x3e\xd8\x6f\xa9\xb8\x20\x1b\xfc\x20\x6d\x8d\xbf\x28\x11\xcb\x6d\x01\x5f\x4f\x20\x92\x2a\x39\xaa\x84\x39\xd8\xf3\x33\xbd\x67\xbe\xca\x9a\xb5\x9d\x92\xb8\xa3\xe5\x01\xb4\xd8\xd4\x6b\x2c\xd5\x52\x7b\x02\xdf\xbe\x41\x96\x4d\xcc\x7e\x2b\xf8\x7d\xbd\xa2\x22\x96\xf9\xdd\xad\x19\x39\xd5\xde\x65\x28\xb9\xd7\x26\xaa\x8a\xae\x6a\x05\xeb\x9a\x36\x2b\xd9\x9b\x34\x8b\x73\x58\x63\x20\x62\x4f\x76\x64\xc3\xa8\x0a\x9e\x28\x41\x96\x9f\xa8\x90\x53\x58\x7c\x85\xfb\x29\x7a\x00\xfb\x1b\xaf\xd9\x1d\xf1\xde\x18\xff\xe3\x8d\xd3\x07\xa2\x96\xdb\x3c\xb3\xb7\x0b\x72\x71\x24\xdb\xc2\x19\xaa\xd7\xfa\x7b\xe4\x3a\x73\x68\x67\x46\xc2\x5b\x23\x42\xd2\xbc\xd0\x6b\xfb\xc2\xde\xaf\x5e\x43\xc7\x24\x55\x3a\xec\x0a\x14\xc7\xbb\x0a\xa9\x42\x94\xd2\x14\x78\xa7\xa4\x22\x8a\x96\x1f\x4c\x9e\xbc\x31\x19\xbb\x26\xd3\x2d\xef\x68\x55\x09\xba\xe3\xf7\x14\x1a\x82\x36\xd0\xa0\x77\xff\xd9\xf0\x80\xd9\x00\x10\x54\x75\x82\xcd\xdc\xe1\x75\xdd\x28\xe3\x12\xc0\x9a\x8b\xfc\x9e\x08\xa8\x57\x50\x33\x78\xc4\x9c\x51\x5d\x5d\xd4\x8a\xee\x4e\xab\x52\x51\xa9\xf2\x7a\x55\x14\xa0\x0b\xb5\x66\x1d\x9d\x39\xa9\x61\x2e\x16\xf5\xea\x06\x63\x37\xd0\xaa\x57\xed\x89\xfd\x91\x98\xe2\x3f\xed\x97\x59\xfd\x83\x0b\x41\x99\xa9\x14\x1f\x18\xef\x9a\xaf\x18\xbe\xc2\x84\x05\x31\x25\xac\x53\xfb\x54\xcf\x3b\x5f\x57\x7d\xea\x89\x20\x3b\x39\xa6\x2c\xd4\xa0\xd7\x65\xf5\xec\x70\xc5\xb6\x6b\xf9\x4f\x47\xc5\x97\x0f\x4a\xd4\x6c\xe3\x9c\x77\xda\x8c\x51\x1d\x33\xc8\x9f\x55\xb7\x18\xf7\xe9\x9d\xaa\xb7\xd3\x7c\xf1\xe6\xe2\x2f\x72\xf1\xef\xcb\x8b\xef\x6f\xce\x0b\x1f\xc8\x5d\xf9\x59\x15\x7d\xa0\x9d\x0b\xba\xf9\xa8\xd0\x85\x97\x5d\xb2\x7b\xd2\x60\x7a\x2e\xd9\x9a\xc3\x2f\x44\x6e\xb3\xd9\x48\x52\xf7\xd6\x26\x66\x44\xf2\x86\x96\x0d\xdf\xe4\x99\x71\x0a\xec\x45\xb0\xa8\x76\xde\xb1\xa4\xcb\xb0\xed\xd7\x7c\x8b\x6a\xd1\xd6\x15\xdd\xfc\xfc\xb9\x2d\x4f\x5f\xcd\x46\xe4\x18\xd9\x51\x94\xd9\x95\x2b\x66\x61\xc0\x57\x13\xe3\xa1\x43\x61\xfa\xbe\xbf\xfa\xae\x54\xa2\x00\xfd\x17\x8f\x2d\x6e\x42\xf1\x71\xb1\xa4\x40\x84\x20\x5f\x7a\xd9\xdc\x88\xd5\x0c\x1b\x82\x2d\x29\x5f\xc3\x1b\xbd\x5f\xf4\xc7\xf5\xff\x1b\xe7\x3f\x36\x1b\x83\xb6\x21\x4b\x7d\xb9\xd6\x97\x31\xd8\x3a\x46\xe1\x97\x33\xfc\xf7\x83\x39\x5a\x36\x94\x6d\xd4\x16\x17\xce\xcf\x8b\x34\xc4\xee\x5a\xde\xf5\x45\xad\x4b\xd5\xe0\x8b\x3e\xa8\x7f\xee\x9d\xbd\x87\x6d\xdd\x50\xc8\xc7\xcf\x39\x0b\xf0\x63\x6c\xef\xb8\xa9\xb2\xe5\x6d\x3e\x9e\x8c\x5e\xa4\x93\xdb\x3c\xa0\x5d\x31\x52\xcc\x16\x35\x9e\xea\x09\xe9\xa5\xfa\x32\x4e\xaf\x23\xa8\xec\x1a\x25\xc7\x1d\xf7\x9b\xce\x61\xef\x43\xdc\xb1\x63\x0e\x0c\x48\x63\x9e\x32\x8c\x29\xee\xa4\xc2\xfa\x6a\x67\x5d\xd3\xf8\x42\xd1\x38\x4a\x9a\x06\xbe\x33\x68\xaa\x29\x62\xe2\x76\x38\xa3\xd8\x84\xb8\xe5\xa0\xf6\x8e\x9a\xeb\x0d\x2f\x1f\x08\x04\x29\xc4\x42\xc3\x34\xd6\x03\xae\x35\x06\x8b\x36\x62\x6e\xd1\xf6\xd6\x00\xfb\x37\x5a\x73\xda\x23\xd8\x40\xef\xb8\xa0\x49\x9c\xdd\x16\xe3\x57\x36\x8a\x31\xd1\x0d\x23\xec\x3a\x24\x34\x44\x75\xbb\x55\xaa\x95\xaf\xa7\xd7\xd5\x75\xe5\x90\xe2\x30\x88\x85\x4f\x57\x8c\x92\x36\x51\x00\x14\x4d\x39\x5d\xee\x9e\xd7\xaf\xf3\xb2\x07\x9e\xa7\xd4\x59\xb0\xcc\x03\x26\x0c\xd5\x8e\x9c\x8f\x8f\xdb\xf2\x8c\x9d\x49\x4b\x6b\x48\xfd\x09\x99\x7b\x2a\x70\xf5\x6e\xfd\xff\x78\x75\x19\x17\x9b\xc6\xa3\x09\x78\xf4\x9a\x04\x0c\xf2\x45\x68\xd1\x11\x32\x77\xf9\xd7\x19\x9c\x3b\x0f\xb2\xcf\x6a\x1e\x50\x19\x97\x21\x0f\x18\x88\xc0\xf6\xfc\x79\x81\x4b\xd9\x59\x24\xbf\x62\x73\x23\x66\x20\xd0\x8a\x60\xe2\x0c\x02\xe5\xd5\xf5\x9f\xd5\x66\x32\x58\x92\xe7\x66\xed\x5c\xab\x72\x4a\xf2\x80\x91\xa8\x60\x71\x53\x60\xc7\xb7\x79\xb8\x8c\xea\x19\xa0\xf7\xfc\x4c\x09\x63\x97\xb2\x25\x56\x33\x5e\xff\x2d\xdf\xb5\x58\xfb\x98\x63\x55\xde\x17\x9e\x06\xf6\x45\xf9\x37\xaf\x59\x8e\x2e\x8c\xb7\xa8\xcd\xa4\x65\xaa\x23\x78\x31\xec\xc2\x98\xc4\x62\xea\x1a\x14\xd0\x80\x46\xfe\x3f\x2e\x1b\xc3\xf4\xa3\x18\x3c\x2b\xc2\xb4\x82\x4e\x3f\x0a\xf3\x18\xba\x10\xea\x47\xf4\xc9\xb6\xa9\x31\x91\x38\x43\xbf\x0a\x61\x8e\x4a\x18\x34\x9d\xcc\x0e\x08\x37\x51\x56\x24\x6d\x1e\x75\x89\xe6\x50\x5f\xcf\xf9\x21\xc5\x4e\x1e\xa1\xe7\xe1\x7a\x28\xf7\x31\xae\x7e\x9a\x46\x9c\xbc\xec\xee\x76\xb5\x72\x28\x7d\x50\x18\x38\xf5\x1d\x72\xc9\x41\x7e\xad\x8e\xb4\xdf\xf7\x16\x27\x46\x25\x07\x38\xb5\x1f\xf7\xe9\xc8\xcc\x37\x70\xcb\x61\x7b\xef\x17\x3e\x7e\xca\x4e\x34\x63\x08\x95\x78\x37\xd0\xe3\xf2\x96\xa8\xb1\x6b\x4f\x6a\xf2\x47\xdc\x64\x48\xf0\xa9\xa6\xf2\xec\xe3\x25\xfc\xd4\x6d\xb2\xe3\xf7\x1c\xa7\x71\x47\x74\x0d\xe7\x9f\xba\x36\x3c\x22\x9e\x4b\xe0\xa2\xde\xd4\x2c\x8c\xa3\x6d\xff\x42\xf1\x5a\xc7\x9e\x14\x8b\xf4\x02\xfe\x94\x9b\xc9\xf4\xbb\xc1\x2f\x15\x49\x27\x6a\x13\xd6\x22\x1a\xa8\xf2\x88\x93\x16\xb7\xd7\x15\x4e\xb1\x0e\x0a\xfc\x69\x1d\xf6\x02\xce\xce\xe2\x49\xd2\x4e\x04\xc6\x1f\x0c\xcc\x30\x2b\xfe\xe4\x64\xa4\x53\x26\x31\xe5\x16\x18\xaf\xe5\x92\x4a\xd9\x83\xa6\xe3\xce\xf8\x95\x82\x7d\xef\x19\x15\x61\x36\x9d\x6d\x60\x3e\x47\x1c\x89\x81\x76\x84\xa1\x7b\xfa\x8e\x04\x7a\x76\x8f\x08\x7c\x88\x5a\xfe\x39\x33\x0e\x5c\xa9\x2b\x76\x1e\x8d\x3c\xd1\xd2\x3a\x89\x4e\x0c\x51\xaa\x37\x52\x55\x64\xb5\xf2\x69\xc0\x69\x87\xdc\x21\xe2\x74\x8a\x02\x06\x5b\xf6\x88\xb4\xce\x4d\xf8\x75\xf4\xab\xdb\x30\x34\xd8\x94\xc4\xa6\xd0\x6b\x23\x37\xf7\x2a\xcf\xed\x42\x6f\x70\x3f\xbc\x7f\x18\x03\x35\x9a\x88\x62\x78\xdf\x28\x4b\x1e\x16\xdd\x0b\xee\xd1\x7a\xbf\xc4\xa7\x64\x5c\xf3\xd6\x42\xff\xbc\xc5\x4c\xba\xc9\x55\x3f\x3a\x01\x13\xe0\x40\x73\x02\xd8\x60\xac\xe1\x64\x05\x8c\x3f\x3c\x0b\x1c\x65\x15\x1c\xeb\xe1\x54\x62\x9c\x77\xac\x71\xdd\xd2\x13\xd0\xbd\x87\xd6\x01\xfb\xef\xbe\x26\x3a\xd8\x27\x83\x1a\xc3\x1b\xf7\x13\xb3\x23\xed\x43\xce\xfb\x8d\xc3\xc7\xab\x5f\xb1\x28\x3a\xb6\xca\xd2\x76\x40\x2e\x7f\xb4\x1d\x62\x13\x87\xa5\x8f\xba\x31\x12\x44\x91\xb4\xf8\x71\xb9\x18\x8e\x11\x07\x1e\xe1\x5f\xe7\x46\x3c\x5d\x85\x25\xad\x47\x6b\x3e\x88\xa5\x9f\x97\x51\x45\xb4\x1f\x8a\xa1\x9f\x0c\xcd\x6e\x98\x07\xc6\xce\xf7\x04\xe8\xae\x69\x99\x2f\x39\x38\x81\xc5\x57\xe4\x2d\xb3\xe6\xf8\x0c\xf6\x37\xc5\xc0\xde\x41\x33\xa7\x91\x77\x16\xb9\x08\x83\x62\x48\x44\x1a\xa6\xbe\xa6\x0f\x2b\x27\x29\x99\x40\xa2\xfa\xe3\xbf\x00\x00\x00\xff\xff\xb7\x9d\x40\x0e\xc8\x13\x00\x00") func filesJsOmniControllerJsBytes() ([]byte, error) { return bindataRead( @@ -535,12 +536,12 @@ func filesJsOmniControllerJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/js/omni-controller.js", size: 4886, mode: os.FileMode(420), modTime: time.Unix(1436538097, 0)} + info := bindataFileInfo{name: "files/js/omni-controller.js", size: 5064, mode: os.FileMode(420), modTime: time.Unix(1440992049, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesJsRunJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x92\xcf\x6e\xdb\x30\x0c\xc6\xef\x7e\x0a\x2e\x30\x0a\xa7\x0b\xe4\xed\x5a\x23\xe8\x61\xeb\x39\x40\xd7\x5b\xdb\x01\x8a\x42\x27\x5a\x15\x49\x90\xe8\xfc\x41\x91\x77\x1f\xe5\xd8\x89\xbd\x16\xbb\x18\x16\xf9\x91\xfc\xf1\x93\xca\x5b\x58\x1b\xb7\x94\x26\x82\xf4\x7e\xb6\xd7\x76\xe5\xf6\x70\x5b\x66\x59\x59\x3e\x3a\x47\x3f\x9c\xa5\xe0\x8c\xc1\x90\x71\x5e\x84\xc6\x16\x75\x63\x15\x69\x67\x8b\x3c\xb0\xe0\x97\x72\x1e\x67\x10\x51\x06\xb5\x99\x71\x13\x3d\x85\xf7\x2c\x03\xd8\xc9\x00\x79\x4c\x59\x98\xc3\xb9\xaf\xe8\x8f\xd7\xca\x2a\x49\xcb\x32\x22\x35\x1e\x02\x4a\x43\x7a\x8b\xb0\x92\x24\x39\x7e\x2e\x17\xe9\xc4\x45\xef\xa7\x6a\x1c\x13\xb9\xb3\x8d\xe7\xbf\xd4\xf2\x42\x95\xc6\x03\xa4\xa6\x4f\x8b\x9f\x0b\xa0\x4d\x70\x44\x06\x21\x67\x7e\x73\x8c\x6d\xae\x6b\x72\x0e\x15\xd3\xd4\xf7\x54\xf5\xd0\x81\xae\xc0\x3d\x91\x88\x47\xab\x8a\xc1\xec\xb6\x26\x90\x70\x36\x92\xa4\x26\x0e\x09\x74\x64\xd7\x2c\x2a\xc2\x55\x0f\xd3\x55\xaa\x3e\xce\xf2\x81\xaa\xfa\x3f\x54\x59\xe2\xc1\xbb\x88\x6c\x72\xd8\x69\x85\xf1\x6a\xc3\xd9\x76\xee\x76\xfe\x19\x18\xc4\x17\xc1\x61\xfe\xb6\x2d\xba\xa0\xb6\xbe\xa1\xa7\xa3\x1f\x19\xb6\xeb\x21\xe3\x5e\x93\xda\x14\xc4\x79\x57\xc3\x25\x0c\xa0\x24\x0f\x9f\xd8\x66\xbb\xc4\x30\xb9\xeb\x82\xbc\x3e\x5f\x5a\xb0\x97\x44\x35\x52\x2f\x9d\x33\x28\xed\x27\x72\xb5\x41\xf5\xd6\xa9\x4f\xd9\x30\x43\x78\xa0\xc9\x75\xef\x0e\x9a\xef\x60\x75\x1c\x02\xd7\x3d\x59\xba\x2d\x2f\x29\xed\xdf\x41\xd7\x30\x9f\xcf\x61\xe2\x96\x7f\xd8\xd8\x09\xdc\x43\x2d\x5a\xc1\x1d\xd4\xd5\x70\xd4\xf0\x15\x35\xde\x38\xb9\x8a\x70\x73\xf3\x59\xf8\x39\xd5\xbf\x7e\x80\xf2\x01\x77\x1a\xf7\xf1\xdf\x77\xc9\x1b\x0c\x51\x53\x71\x4f\xdb\x8d\x2e\xca\x17\x51\x3c\xff\x7e\x11\xaf\x5f\xa7\x79\x39\x15\x84\x91\x3a\xdd\x3d\x3c\xe2\xfa\xe1\xe0\x45\xfe\x9d\x89\x6d\x63\xcc\x87\xb9\x3a\x3e\x6c\x3d\x8d\xec\xe0\x65\xfb\x11\xba\x2e\xbe\xa4\x63\x36\x72\x9c\x42\x83\xa3\xed\x17\xad\x3d\xe2\x0d\x8f\xb1\xad\x16\x06\xed\x3a\xd9\xc8\xde\x7d\xeb\x46\x9e\xa6\xd5\xdf\x00\x00\x00\xff\xff\x71\x34\x3a\xa5\x1c\x04\x00\x00") +var _filesJsRunJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x52\x4d\x6f\xdb\x30\x0c\x3d\xc7\xbf\x82\x30\x82\xc2\xe9\x02\x79\xbb\x36\x08\x7a\x18\x7a\xda\x61\x40\xb7\x9d\xda\x0e\x50\x6c\x3a\xf1\xa2\x48\x82\x44\xe7\x03\x45\xfe\xfb\x28\x5b\x76\xdd\x26\x68\x0e\x81\xfd\xf8\xf8\xf8\xf8\xe8\xfc\x16\xd6\xca\xac\xa4\xf2\x20\xad\x9d\x1f\x6a\x5d\x9a\x03\xdc\xe6\x49\x92\xe7\x8f\xc6\xd0\x77\xa3\xc9\x19\xa5\xd0\x25\x5c\x17\xae\xd1\x59\xd5\xe8\x82\x6a\xa3\xb3\xa9\x63\xc2\xaf\xc2\x58\x9c\x83\x47\xe9\x8a\xcd\x9c\x45\xea\x19\xbc\x26\x09\xc0\x5e\x3a\x98\xfa\x50\x85\x25\x74\xba\xa2\x7f\x7d\xeb\x5c\x04\x6a\x9e\xab\x5a\x6f\xa1\xb1\x40\x06\xa4\x5e\x37\x4a\xba\x64\x12\x04\x1c\x31\xdb\xa1\x54\x54\xef\x30\x4b\xf3\xfe\x31\x9d\x2d\x92\x49\xa7\x2e\x3c\x49\x0a\xa2\xaf\x67\xc6\x1c\x09\x59\x96\x59\xda\x82\xe9\x1c\xc6\x9c\x39\x0c\xd6\x83\xc7\x49\x2f\x30\xe5\xcd\xd4\x29\x0b\x92\xe7\x59\xa7\x61\x74\xe8\x68\x3c\xcb\x0e\x3d\x46\xb3\x4b\xbc\xd6\xf9\x41\xb6\xaf\x16\x46\x6b\x2c\x08\x4b\x56\xe9\x9a\x59\xbc\x1b\x71\x8e\x7b\xe3\xd1\x1a\x8f\x9c\x9e\xdb\xd7\x05\x7a\xc6\x7a\xc3\x6d\x9e\xdc\xd8\x3d\x2c\xde\x2a\x9c\x30\xc3\xfc\xdf\x4a\x44\xb0\xd6\xb6\xa1\xdf\xa7\x36\xdc\xc1\xcd\x3e\xd8\x01\xfe\xf9\x43\x4d\xc5\x26\x23\xae\x9b\x0a\x06\x18\xa0\x90\x3c\x3c\xd5\xcd\x6e\x85\x2e\xbd\x8b\x20\x70\xe0\xd4\x38\x3d\x14\x16\xef\xd8\x2b\x63\x14\x4a\x7d\x85\x5e\x6c\xb0\xd8\x46\xf6\x39\x19\x57\x08\x8f\xd4\x16\xce\x63\xd3\x7c\xcc\xf2\x34\x36\x5c\xf5\xce\xc2\xe9\xad\xa4\xb0\x7f\x34\x5d\xc1\x72\xb9\x84\xd4\xac\xfe\x71\xa2\x29\xdc\x43\x25\x5a\xc2\x1d\x54\x8b\xf1\xa8\xf1\xbd\xc5\x1f\xab\x8c\x2c\x3d\xdc\xdc\x5c\xc5\x9f\x82\xc2\xcb\x85\x2d\xeb\x70\x5f\xe3\xc1\xc7\x4f\x6a\xc0\x79\x87\xb1\xd9\xd0\xdc\xfb\x8d\xc3\xb3\xfc\x59\x64\x4f\x7f\x9f\xc5\xcb\x97\xd9\x34\x9f\x09\x42\x4f\x91\x77\x0f\x8f\xb8\x7e\x38\x5a\x31\xfd\xc6\x9e\x75\xa3\xd4\xc5\xdc\xda\x3f\xec\x2c\xbd\x0b\x84\xd7\xfd\x30\x22\x72\xf9\x32\x3f\xf0\xe4\x3b\x42\x48\xe6\xeb\x85\x5c\xa4\x7c\x2e\xc7\x08\x5b\xfb\xd9\xa6\x2a\xb6\xbd\xa2\x50\xa8\xd7\x6d\xb8\xbd\x6c\xf8\x68\xff\x07\x00\x00\xff\xff\x66\xba\x2f\x8f\x2b\x04\x00\x00") func filesJsRunJsBytes() ([]byte, error) { return bindataRead( @@ -555,12 +556,12 @@ func filesJsRunJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/js/run.js", size: 1052, mode: os.FileMode(420), modTime: time.Unix(1436540007, 0)} + info := bindataFileInfo{name: "files/js/run.js", size: 1067, mode: os.FileMode(420), modTime: time.Unix(1441009679, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesJsSemanticCheckboxJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x56\x4b\x6f\xdb\x30\x0c\xbe\xfb\x57\x10\x46\x01\x27\x6d\x56\xef\xdc\x36\xc5\x86\x61\xc7\x9d\x77\x58\x87\x42\xb1\x98\x44\xa8\x22\x1b\x92\x9c\xad\x6b\xfd\xdf\x47\xc9\xef\x47\x1e\x5d\xb1\x53\x24\xea\x13\xc9\x8f\x1f\x45\x27\xbe\x84\x8d\x4c\x57\x4c\x1a\x60\x59\x06\x97\x71\x10\xd0\xef\x35\x17\x1a\x13\x2b\xf6\x38\x8b\x92\x2d\x26\x4f\xab\xf4\x77\xb4\x80\x75\xae\xc8\x98\xaa\xd9\x1c\x5e\x02\x00\x8d\x36\xd7\xca\x2f\xdd\xc6\x58\x2d\x12\x7b\x03\xd1\xd7\x68\x51\x99\x32\xc9\x12\xbc\x01\xab\x73\x2c\x4d\x56\x33\x65\x12\x99\xf3\x9e\xd5\x24\x69\x46\x86\xd2\x11\x81\x9e\xdd\x2e\xfc\x14\x2e\x2a\x83\x11\x7f\xfa\x06\x9f\x13\xf2\x9e\x8d\x0b\xc3\x56\x72\x60\xdc\xa5\x1c\x25\xa5\xb4\x54\x9b\x6f\x6e\x19\x79\x7b\x51\x25\x83\x3b\x4a\xd0\x3a\xd7\x77\x5c\xec\x21\x91\xcc\x98\xe5\x43\xf8\xf2\x52\x73\x7e\xf4\xa6\xa2\x78\x08\xef\x43\xb8\xaa\x7c\x86\x77\x42\x65\xb9\xf5\x69\x12\xba\xc6\x0e\x30\x92\xad\x50\x82\xda\x7c\x48\xa4\x48\x9e\x1c\xce\xfd\x3e\xa6\xea\xb1\xbe\x30\x9b\x3f\x84\x0e\xd0\xd6\xe4\xfe\x2e\xf6\xd7\x7a\x8e\x62\x4a\xed\xbe\x22\x24\x85\x7a\xba\x69\x65\xf0\x75\x5b\x00\x4a\xdc\xa1\xb2\x0b\x60\xd6\x6a\xb3\x80\x8a\xeb\xbc\x29\x68\x1c\x83\x41\x0b\x79\x06\x75\xec\x92\x2b\x30\xc5\x3d\x8d\x0a\x27\xd6\x50\xfa\xbc\x76\x46\x58\x2e\x21\x32\x96\x30\x4c\xf3\x08\x5e\x5f\xa1\x77\xb6\x84\x5c\x71\x5c\x0b\x85\xbc\x8d\x04\x3d\x4c\xe7\xfa\xed\x00\xd0\xaf\xb0\x83\xe6\xa2\xc9\xae\x41\x17\xc4\xcd\xe0\x64\x5e\x52\x70\xd4\xd1\x91\xc8\x25\xe0\xac\xb8\x25\xf6\x2d\xe1\x6d\xba\xd9\x48\x3c\x12\xbe\x02\x9c\x15\xbe\xc4\x1e\x0c\xff\xbf\x6a\xdb\x6f\x8e\xa6\x33\xdc\x63\x1b\xf5\x83\x33\x7a\xe2\x92\xe9\xcd\x14\xef\x51\xcc\x49\xf3\x15\x44\x50\x7a\x38\x58\xe2\x26\xd2\x36\x7f\x67\x20\xef\xe0\x18\x5b\xe4\x31\xbd\xa4\x72\x35\x62\x5c\xd9\x7d\x2a\x6b\x1a\x8f\xd8\x79\x01\xed\xd9\xd1\x47\xd0\xc0\xc0\x3b\x38\x21\x6b\x8b\x76\x83\xb1\xd5\xb4\x7a\xdd\x74\x2e\x24\xd7\x48\xc3\xf7\xc7\xc7\x9f\xd7\x44\xe2\x33\xbd\x76\xb1\xca\x6d\x3d\xa3\x91\xd3\x88\x8e\xa2\xf9\x04\x65\x7f\xee\xc8\xd9\x2d\x42\xc6\x34\xdb\xa1\xa5\x86\xaf\x47\x26\x08\x1a\x05\x7b\x26\xa4\xdb\x8d\x2a\xd1\xa0\x5c\x29\xea\xcd\x69\x65\xae\x08\xdd\x44\x98\xd2\xe1\x8b\x1b\x88\xb0\xa5\x26\x96\xa8\x83\x3e\xd9\x95\x50\x9c\x68\x39\xc4\xf8\xbb\xd3\x0d\x7a\x41\x5f\x2b\xf9\x3c\x9b\x44\x1c\x20\x71\x40\xb3\x43\xf2\x97\x7a\x0c\x91\xa7\x54\xeb\x62\xfc\x47\x68\xd8\x05\xc7\xe5\xd5\xb8\x4b\xf7\x38\xa1\xf0\xbc\x7f\x7f\xd4\x4b\xff\x9a\xdb\x14\xe2\x8d\x9d\xe7\x5c\x8c\xf2\x0b\xa6\xd6\x45\xdb\xa3\xcd\x8a\x1a\xe2\x3b\xb3\xc9\x16\xd6\xa9\x76\x5f\x45\x9f\x58\xd0\x4d\xf5\xe2\x97\x3b\x9f\x45\xfe\xa4\xdb\x15\x7b\x26\xbb\xf2\x38\x11\xc9\x34\x50\xba\x93\x48\xf9\xbf\xe5\x36\x98\xbc\x31\x16\xfb\x54\x31\xdf\x59\xa6\x09\x09\x8f\x8e\x8f\xc3\x21\xcf\x69\x9a\x62\x50\x78\xb7\x2f\x6e\x03\xda\xfe\x0d\x00\x00\xff\xff\x39\x1a\x2a\x43\x0a\x0a\x00\x00") +var _filesJsSemanticCheckboxJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x56\x4b\x6f\xdb\x30\x0c\xbe\xfb\x57\x10\x46\x01\x27\x6d\x56\xef\xdc\x36\xc5\x86\x61\xc7\x9d\x77\x58\x87\x42\xb1\x98\x44\xa8\x22\x1b\x92\x9c\xad\x6b\xfd\xdf\x47\xc9\xef\x47\x1e\x5d\xb1\x53\x24\xea\x13\xc9\x8f\x1f\x45\x27\xbe\x84\x8d\x4c\x57\x4c\x1a\x60\x59\x06\x97\x71\x10\xd0\xef\x35\x17\x1a\x13\x2b\xf6\x38\x8b\x92\x2d\x26\x4f\xab\xf4\x77\xb4\x80\x75\xae\xc8\x98\xaa\xd9\x1c\x5e\x02\x00\x8d\x36\xd7\xca\x2f\xdd\xc6\x58\x2d\x12\x7b\x03\xd1\xd7\x68\x51\x99\x32\xc9\x12\xbc\x01\xab\x73\x2c\x4d\x56\x33\x65\x12\x99\xf3\x9e\xd5\x24\x69\x46\x86\xd2\x11\x81\x9e\xdd\x2e\xfc\x14\x2e\x2a\x83\x11\x7f\xfa\x06\x9f\x13\xf2\x9e\x8d\x0b\xc3\x56\x72\x60\xdc\xa5\x1c\x25\xa5\xb4\x54\x9b\x6f\x6e\x19\x79\x7b\x51\x25\x83\x3b\x4a\xd0\x3a\xd7\x77\x5c\xec\x21\x91\xcc\x98\xe5\x43\xf8\xf2\x52\x73\x7e\xf4\xa6\xa2\x78\x08\xef\x43\xb8\xaa\x7c\x86\x77\x42\x65\xb9\xf5\x69\x12\xba\xc6\x0e\x30\x92\xad\x50\x82\xda\x7c\x48\xa4\x48\x9e\x1c\xce\xfd\x3e\xa6\xea\xb1\xbe\x30\x9b\x3f\x84\x0e\xd0\xd6\xe4\xfe\x2e\xf6\xd7\x7a\x8e\x62\x4a\xed\xbe\x22\x24\x85\x7a\xba\x69\x65\xf0\x75\x5b\x00\x4a\xdc\xa1\xb2\x0b\x60\xd6\x6a\xb3\x80\x8a\xeb\xbc\x29\x68\x1c\x83\x41\x0b\x79\x06\x75\xec\x92\x2b\x30\xc5\x3d\x8d\x0a\x27\xd6\x50\xfa\xbc\x76\x46\x58\x2e\x21\x32\x96\x30\x4c\xf3\x08\x5e\x5f\xa1\x77\xb6\x84\x5c\x71\x5c\x0b\x85\xbc\x8d\x04\x3d\x4c\xe7\xfa\xed\x00\xd0\xaf\xb0\x83\xe6\xa2\xc9\xae\x41\x17\xc4\xcd\xe0\x64\x5e\x52\x70\xd4\xd1\x91\xc8\x25\xe0\xac\xb8\x25\xf6\x2d\xe1\x6d\xba\xd9\x48\x3c\x12\xbe\x02\x9c\x15\xbe\xc4\x1e\x0c\xff\xbf\x6a\xdb\x6f\x8e\xa6\x33\xdc\x63\x1b\xf5\x83\x33\x7a\xe2\x92\xe9\xcd\x14\xef\x51\xcc\x49\xf3\x15\x44\x50\x7a\x38\x58\xe2\x26\xd2\x36\x7f\x67\x20\xef\xe0\x18\x5b\xe4\x31\xbd\xa4\x72\x35\x62\x5c\xd9\x7d\x2a\x6b\x1a\x8f\xd8\x79\x01\xed\xd9\xd1\x47\xd0\xc0\xc0\x3b\x38\x21\x6b\x8b\x76\x83\xb1\xd5\xb4\x7a\xdd\x74\x2e\x24\xd7\x48\xc3\xf7\xc7\xc7\x9f\xd7\x44\xe2\x33\xbd\x76\xb1\xca\x6d\x3d\xa3\x91\xd3\x88\x8e\xa2\xf9\x04\x65\x7f\xee\xc8\xd9\x2d\x42\xc6\x34\xdb\xa1\xa5\x86\xaf\x47\x26\x08\x1a\x05\x7b\x26\xa4\xdb\x8d\x2a\xd1\xa0\x5c\x29\xea\xcd\x69\x65\xae\x08\xdd\x44\x98\xd2\xe1\x8b\x1b\x88\xb0\xa5\x26\x96\xa8\x83\x3e\xd9\x95\x50\x9c\x68\x39\xc4\xf8\xbb\xd3\x0d\x7a\x41\x5f\x2b\xf9\x3c\x9b\x44\x1c\x20\x71\x40\xb3\x43\xf2\x97\x7a\x0c\x91\xa7\x54\xeb\x62\xfc\x47\x68\xd8\x05\xc7\xe5\xd5\xb8\x4b\xf7\x38\xa1\xf0\xbc\x7f\x7f\xd4\x4b\xff\x9a\xdb\x14\xe2\x8d\x9d\xe7\x5c\x8c\xf2\x0b\xa6\xd6\x45\xdb\xa3\xcd\x8a\x1a\xe2\x3b\xb3\xc9\x16\xd6\xa9\x76\x5f\x45\x9f\x58\xd0\x4d\xf5\xe2\x97\x3b\x9f\x45\xfe\xa4\xdb\x15\x7b\x26\xbb\xf2\x38\x11\xc9\x34\x50\xba\x93\x48\xf9\xbf\xe5\x36\x98\xbc\x31\x16\xfb\x54\x31\xdf\x59\xa6\x09\x09\x8f\x8e\x8f\xc3\x21\xcf\x69\x9a\x62\x50\x78\xb7\x2f\x6e\x03\xb7\xfd\x1b\x00\x00\xff\xff\x81\xa4\x91\x6d\x0b\x0a\x00\x00") func filesJsSemanticCheckboxJsBytes() ([]byte, error) { return bindataRead( @@ -575,12 +576,12 @@ func filesJsSemanticCheckboxJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/js/semantic-checkbox.js", size: 2570, mode: os.FileMode(420), modTime: time.Unix(1433931924, 0)} + info := bindataFileInfo{name: "files/js/semantic-checkbox.js", size: 2571, mode: os.FileMode(420), modTime: time.Unix(1440990112, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesJsTorrentsControllerJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x8f\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\xa1\x2c\x4b\xb3\x94\xac\x67\xab\x5e\x16\x44\x6f\x82\xde\xc4\x43\xb6\x4d\x77\xa3\xd9\x99\x90\x4c\xf0\x20\xfb\xee\xa6\xdb\x1a\x2a\x16\x4f\x33\xfd\xfb\xcf\xf7\x91\xed\x06\x0e\x96\xf6\xca\x06\x50\xce\xc1\x66\x5b\x14\x69\xca\x96\x90\x3d\x59\xab\x7d\x55\xbe\x90\xf7\x1a\x39\xec\x72\x56\xd6\xd0\x47\x6c\xd9\x10\x56\xab\xd0\x92\xd3\x35\xac\x3c\x11\x3f\x8f\xbb\x72\x46\xc0\x57\x01\xb3\x50\xf2\x44\x81\x5b\x18\x4f\x9a\x62\x28\x5c\x56\x19\xe2\xfe\x64\x78\x12\xa5\x46\xa6\xab\xcb\xa8\x81\x47\x1e\x0c\xe8\x1f\x54\xf5\x9a\xff\xca\x47\xec\xe9\x41\x85\xe3\x9b\x7c\x27\x83\x55\x79\x5d\x0a\xd1\xa4\x83\xf3\x5f\xcb\xbd\xb1\x7a\x51\x91\x1e\x35\xb7\xf4\xa9\xb7\xa4\x48\x35\xf9\xa4\xf8\x7f\x55\x47\x9f\x68\x49\x75\x06\x0f\x73\x57\x16\x78\xcd\xd1\x63\x22\xed\xe8\xe4\xac\x66\xdd\xc1\x1d\x5c\xc1\x7a\xfd\x2b\xba\x19\xbe\x8e\x11\x3f\xc2\x24\x38\x8b\xe6\x3b\x00\x00\xff\xff\xb8\x03\x7c\xb3\xb1\x01\x00\x00") +var _filesJsTorrentsControllerJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x8f\xc1\x4e\xc3\x30\x0c\x86\xef\x7d\x0a\xab\x9a\xa6\x76\xaa\x52\xce\x0c\xb8\x4c\x42\x70\x43\x82\x1b\xe2\x90\xb5\xe9\x16\xc8\xec\x28\x71\xc5\x01\xed\xdd\x71\xd7\x11\x8a\x98\x10\xda\xc9\x8e\xf3\xfb\xfb\xe4\x7a\x01\x1b\x47\x6b\xed\x22\x68\xef\x61\x51\x67\x99\x54\xd5\x10\x72\x20\xe7\x4c\x28\xf2\x27\x0a\xc1\x20\xc7\x55\x9a\xe5\x15\x74\x3d\x36\x6c\x09\x8b\x59\x6c\xc8\x9b\x0a\x66\x81\x88\x1f\xc7\x5e\x7b\x5b\xc2\x47\x06\x93\xa1\xe2\x23\x05\xae\x61\x5c\x59\x66\x43\xe0\xd0\xaa\xd8\xaf\x77\x96\x8f\x22\x49\x24\xba\x3e\x94\x0a\x78\xe4\xc1\x80\xfe\x42\x15\xcf\xe9\x57\xdd\x63\x47\x77\x3a\x6e\x5f\xd4\x2b\x59\x2c\xf2\xcb\xbc\x2c\x97\xb2\xb0\xff\x6d\xb9\xb5\xce\x9c\x54\xc8\x51\x53\x4b\x27\xb9\x53\x0a\x89\xa9\x07\xcd\x7f\xab\x5a\x7a\x47\x47\xba\xb5\xb8\x99\xba\x92\x20\x18\xee\x03\x0a\x69\x45\x3b\xef\x0c\x9b\x16\x6e\xe0\x02\xe6\xf3\x1f\xa3\xab\xe1\xb5\xed\xf1\x2d\x7e\x0b\xea\xfa\x7f\x0e\xc9\x9d\xa7\x91\x45\x31\xed\xe5\xa6\xcf\x00\x00\x00\xff\xff\x78\x35\x3d\x12\x1c\x02\x00\x00") func filesJsTorrentsControllerJsBytes() ([]byte, error) { return bindataRead( @@ -595,12 +596,12 @@ func filesJsTorrentsControllerJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/js/torrents-controller.js", size: 433, mode: os.FileMode(420), modTime: time.Unix(1436540773, 0)} + info := bindataFileInfo{name: "files/js/torrents-controller.js", size: 540, mode: os.FileMode(420), modTime: time.Unix(1441018460, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesJsUtilsJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x56\x5b\x6f\xdb\x36\x14\x7e\xcf\xaf\xe0\x88\x14\xa2\x63\x45\x4a\xd0\x37\x0b\xde\xb0\xa2\xc1\x1e\x86\x22\xc3\xd2\xa7\x39\xce\x40\x4b\x94\xac\x56\x26\x55\x92\x72\xea\xb9\xfe\xef\x3b\xbc\xe8\xe6\xcb\xb0\x61\x03\x86\xa2\x64\x44\x9e\xcb\x77\xbe\x73\xa1\xe3\x1b\x54\x54\x62\x45\x2b\x85\x68\x5d\x87\xaf\x25\xcf\xc4\x2b\xba\x89\xaf\xae\xe0\x33\xca\x69\xaa\x85\xdc\x91\x80\xd6\x65\x10\xa2\xbc\xe1\xa9\x2e\x05\x27\xd7\x52\x08\xfd\x94\x8a\x9a\x85\xe8\x7a\xad\x75\x1d\x22\xc9\xbe\x30\x29\x27\x68\x7f\x85\x90\xb3\x12\x99\x0b\x34\x77\x02\x09\x1c\x6f\xa9\x34\x62\x0d\x53\x1a\x8e\x3b\x63\xd4\x6e\x21\xca\xa8\xa6\x4e\xdf\x89\x36\xb2\x02\x31\x1c\x83\xef\x18\x4f\x7b\x97\x11\xe3\x45\xc9\x59\x54\x66\x53\x0c\x17\x4e\x3d\xb1\x6a\x03\x21\xd0\x2a\x79\x01\x06\xb4\x6c\x98\xbb\x95\x4c\x37\x92\x3b\x3c\x51\x2d\x94\x26\xe0\xc2\xfb\x8d\x00\xbc\x90\xc4\x47\x11\xe5\x25\xa7\x55\xb5\x23\x1d\xc8\x16\xd8\x79\x1f\x39\xf0\xe7\x9d\x1c\x26\x66\x3f\xb4\xf1\x82\x08\xdc\xef\xfb\x6f\x6b\x4e\xc1\xd9\x02\xa7\x82\xe7\x65\xd1\x48\x86\x43\xbc\xa1\x05\x67\x1a\xfe\x00\x48\xb0\x02\xeb\x92\x71\xf3\x9d\x97\x15\xc3\x4b\xa3\xee\x55\xa3\x5c\xc8\x07\x9a\xae\xc9\x11\x81\x2d\x42\xf0\xb8\x70\x27\x4b\xf0\xe2\xf9\x8e\x56\x90\x12\xc2\x9b\x0a\xe2\xf5\xe2\x16\xa6\x5d\x3d\x2f\xa0\x98\x5c\x99\x93\x71\xea\x15\xa3\x32\x5d\xff\x83\xec\x7b\x73\x1e\x4d\x55\xcd\x7a\xcd\x5a\x8a\x6d\x99\x31\x19\x22\x40\x25\x77\x21\xaa\x69\xc1\x7a\x6a\x0d\x41\x35\x95\x74\x63\xf8\xd9\x5b\x91\x99\x5d\x0f\x89\x97\x28\x73\x62\x54\xd0\x77\xf3\x39\x6a\x78\xc6\x20\x4f\x2c\x9b\x78\xa5\xc8\x5e\xcd\xad\xd1\xe4\x34\x5b\x2e\x90\xe3\xa2\xe8\xca\xb2\xad\xd4\xa8\x60\x9a\xe0\xd8\x49\x43\x7d\xf5\x98\xf7\xde\xcf\xac\x05\xe9\xe8\x73\xa5\xf5\x65\x5c\x41\xc3\x8b\xbf\x28\xa6\x8b\x00\x07\x15\x85\x46\x7e\x2c\xb7\x60\xd5\x57\x5b\x68\x37\xc1\xd9\x59\x96\x6b\xaa\xd7\x63\x7a\x45\xad\x2d\xb9\x5d\x28\x7b\x2b\x34\x33\x0b\x3a\xa0\xc3\x7f\xcf\xdb\x14\xdf\x96\x9a\x6d\x70\x68\x7d\xff\xff\x8c\xb9\xee\x3c\x53\xe7\xb0\x41\xe1\x0c\x0b\x7d\x54\xcf\x7e\xa8\x55\x22\xa5\xd5\x93\x93\x45\xdf\xbe\xd9\xd6\x3e\x35\xe6\x62\xba\x68\xab\x3b\x05\xa1\x10\x29\x4d\x75\xa3\xda\x10\x61\x2a\x28\x51\x31\x4f\x0e\x6e\x07\xa6\xfd\x44\xc1\x1b\x15\x20\xf2\x46\x4d\x80\xce\xa1\x6e\x72\x1c\x55\x59\x69\x26\x49\xf0\x99\xed\xd4\x45\x14\x8f\xab\x4f\x2c\xd5\x91\x91\x39\xa3\x4a\xb3\x4c\xd5\x34\x65\x97\xf5\xbb\xd3\x0e\x3b\xb4\xa7\xde\xd5\x4c\xe4\x48\xd9\x16\xc5\x4a\x4b\xc8\x0e\x9e\x8c\x93\xa1\x46\xf3\x58\x45\x92\xd5\x15\x78\x22\x31\x59\xfc\x78\xfb\xdb\x72\xba\xa0\xb7\x7f\x2c\x6f\x26\x71\x31\xf0\xfc\x7b\x88\x5e\x85\xcc\xfa\x42\xf0\xda\x18\xfe\x4d\xed\x55\x3b\x7f\x7b\x73\x2f\xcf\x28\x0e\x11\xc6\x17\xe9\x31\xc3\x95\xd3\xcd\xe5\xa4\xf7\x3d\x35\xe8\x24\x7f\x47\xe2\x67\x00\xfc\xf2\x1c\x2f\xa7\x93\xeb\x78\x12\x69\x48\x93\x97\xfb\x01\xfd\xca\x8a\x87\xaf\x75\x74\x7d\x8f\x66\xb6\xc1\x2e\x21\x58\xed\xf4\x98\x61\x7b\x30\xc2\x60\x4f\xce\x15\xd9\x89\xae\x53\x33\x7d\xa9\xa0\x48\xcd\x28\x5c\x04\xef\x40\x20\xf8\xd9\xae\x1f\xec\xfa\x93\x5d\x3f\xda\xf5\x97\x77\xc1\x32\x39\x13\x2d\x1f\xbe\xc3\xe6\x01\xbb\x4b\xba\x4f\x33\x3e\xac\xf9\x45\xb9\x4c\x7c\xd6\x51\x9b\x76\x6e\xd3\x1e\xf0\x66\xb3\x62\x32\x38\x4d\xd6\x2d\xee\xbb\x10\x7e\x27\xac\x81\x7f\x44\x38\xfa\x1e\xdd\xdf\xdd\xdd\xf5\xe2\xbd\x8f\xe9\xb4\x5c\x9a\x36\x0b\xbe\xde\xdf\xbd\x04\x90\x69\x52\xa2\x1b\xf4\xb6\x6b\x6f\x0e\x92\x1f\x80\xdf\x48\x8a\xc6\xbc\x70\x28\x36\xa6\x26\x76\x1b\xba\x6a\x01\x98\x62\xe1\xf0\xdf\x95\x8d\x3a\x4e\x4b\x56\x4a\x68\x89\x72\xcb\x48\xc0\x8b\x07\x0e\x29\xfa\x1b\xd5\xef\x5e\x42\x56\xb1\x0d\x3c\xd9\xf0\xbe\x6a\x2d\xbb\x8e\xf0\xa7\xee\xfd\xc5\xd0\x6a\x30\x43\x38\x82\xbd\x96\x4c\x29\x3c\x30\xce\xb6\x20\xd7\x53\x60\x48\xb5\x47\x11\xb0\x94\xae\xd1\x1c\x78\xbd\x7f\x3b\x9c\x83\xd6\x6f\x74\x0d\xb0\x2f\x4d\xca\x4e\x86\x6d\x69\x45\x2c\xae\xc8\x87\xd5\x11\x38\x9c\x95\x00\xd7\x7a\x04\x6c\x66\x7f\xcf\x72\xda\x54\x9a\x74\xf7\x87\xf1\x2f\x1c\xcb\x5a\x1c\x7f\x7c\x7c\xff\x08\xa4\x6c\xc4\x96\x21\xbd\x2e\x15\x5a\xd3\xf4\xf3\x31\x9b\x9f\xea\x27\x99\xfe\x4b\x2e\x7d\x30\xaf\x54\xc3\xaf\x1f\x17\x8d\x35\x3b\xb0\xaa\x64\xda\x13\xd0\x72\x6f\x44\x09\x86\x2b\xa0\xdb\x08\x24\xa7\x61\xfc\x19\x00\x00\xff\xff\x06\x12\x3d\x95\x07\x0b\x00\x00") +var _filesJsUtilsJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x56\x5b\x6f\xdb\x36\x14\x7e\xcf\xaf\x38\x13\x52\x88\x8e\x15\x29\x41\xdf\x2c\x78\xc3\x8a\x06\x7b\x18\x8a\x0c\x4b\x9f\xe6\x38\x03\x2d\x53\xb6\x5a\x99\x54\x49\xca\xa9\xe7\xfa\xbf\xef\xf0\xa2\x9b\x2f\xc3\x86\x0d\x18\x8a\x92\x11\xf9\x9d\xdb\x77\x2e\x74\x72\x03\xab\x52\x2c\x68\xa9\x80\x56\x55\xf4\x5a\xf0\xa5\x78\x85\x9b\xe4\xea\x0a\x3f\xe3\x9c\x66\x5a\xc8\x1d\x09\x69\x55\x84\x11\xe4\x35\xcf\x74\x21\x38\xb9\x96\x42\xe8\xa7\x4c\x54\x2c\x82\xeb\xb5\xd6\x55\x04\x92\x7d\x61\x52\x8e\x60\x7f\x05\xe0\xb4\xc4\xe6\x02\xa6\x0e\x90\xe2\xf1\x96\x4a\x03\xab\x99\xd2\x78\xdc\x2a\xa3\x76\x8b\x60\x49\x35\x75\xf2\x0e\x5a\xcb\x12\x61\x41\x82\xb6\x93\x60\xec\x50\xa9\xbd\xed\xcc\xc7\x78\x59\xf0\x15\xe2\xb4\xac\x99\xbb\x95\x4c\xd7\x92\x3b\xb3\x71\x25\x94\x26\xa8\xc9\xab\x8f\xd1\x47\x21\x89\x77\x36\xce\x0b\x4e\xcb\x72\x47\x5a\x5f\x1a\xfb\xe7\x6d\xe4\x48\x93\x37\x72\x18\x99\xfd\xd0\x84\x85\x10\xbc\xdf\x77\xdf\x56\x9d\xc2\xb3\x59\x90\x09\x9e\x17\xab\x5a\xb2\x20\x0a\x36\x74\xc5\x99\xc6\x3f\xd0\x25\x5c\x91\x5c\xc9\xb8\xf9\xce\x8b\x92\x05\x73\x23\xee\x45\xe3\x5c\xc8\x07\x9a\xad\xc9\x11\x4f\x8d\x87\x68\x71\xe6\x4e\xe6\x68\xc5\xd3\x1a\x2f\x90\x79\xc2\xeb\x12\xe3\xf5\x70\xeb\xa6\x5d\x3d\x2f\x28\x98\x5e\x99\x93\x61\x86\x15\xa3\x32\x5b\xff\x83\x24\x7b\x75\xde\x9b\xb2\x9c\x74\x92\x95\x14\xdb\x62\xc9\x64\x04\xe8\x95\xdc\x45\x50\xd1\x15\xeb\xa8\x35\x04\x55\x54\xd2\x8d\xe1\x67\x6f\x21\x13\xbb\x1e\x52\x8f\x28\x72\x62\x44\xe0\xbb\xe9\x14\x6a\xbe\x64\x98\x27\xb6\x1c\x79\xa1\xd8\x5e\x4d\xad\xd2\xf4\x34\x5b\x2e\x90\xe3\xa2\x68\xab\xaf\x29\xc8\x78\xc5\x34\x09\x12\x87\xc6\xfa\xea\x7c\xde\x7b\x3b\x93\xc6\x49\x47\x9f\x2b\xad\x2f\xc3\x0a\xea\x5f\xfc\x45\x31\x5d\x74\xb0\x57\x51\x30\xb0\x63\xb9\x45\xad\xbe\xda\x22\xbb\x09\xce\xce\xb2\x5c\x51\xbd\x1e\xd2\x2b\x2a\x6d\xc9\x6d\x43\xd9\x5b\xd0\xc4\x2c\x70\x80\xc3\x7f\xcf\xdb\x38\xb8\x2d\x34\xdb\x04\x91\xb5\xfd\xff\x33\xe6\xba\xf3\x4c\x9d\xe3\x86\x85\xd3\x2f\xf4\x41\x3d\xfb\xd9\x55\x8a\x8c\x96\x4f\x0e\x0b\xdf\xbe\xd9\xd6\x3e\x55\xe6\x62\xba\xa8\xab\x3d\x45\x50\x04\x4a\x53\x5d\xab\xb6\x7f\x4b\x26\x35\xe9\x18\xc1\x29\xa1\x44\xc9\x3c\x59\x41\x33\x27\xed\x27\x84\x6f\x54\x08\xe4\x8d\x1a\x21\xbd\x7d\x5d\xe9\x71\x94\x45\xa9\x99\x24\xe1\x67\xb6\x53\x17\xbd\x7a\x5c\x7c\x62\x99\x8e\x0d\xe6\x8c\x28\x5d\x2e\x55\x45\x33\x76\x59\xbe\x3d\x6d\x63\xc1\x76\xd5\xbb\x8a\x89\x1c\x94\x6d\xd9\x40\x69\x89\xd9\x0a\x46\xc3\xe4\xa8\xc1\x7c\x56\xb1\x64\x55\x89\x96\x48\x42\x66\x3f\xde\xfe\x36\x1f\xcf\xe8\xed\x1f\xf3\x9b\x51\xb2\xea\x59\xfe\x3d\x82\x57\x21\x97\x5d\x61\x78\xe9\x00\xff\x8d\xed\x55\x33\x8f\x3b\x75\x2f\xcf\x90\x44\x10\x04\x17\xe9\x31\xc3\x96\xd3\xcd\xe5\x22\xe8\x7a\xac\xd7\x59\xfe\x8e\x24\xcf\xe8\xf0\xcb\x73\x32\x1f\x8f\xae\x93\x51\xac\x31\x4d\x1e\xf7\x03\xfc\xca\x56\x0f\x5f\xab\xf8\xfa\x1e\x26\xb6\xe1\x2e\x79\xb0\xd8\xe9\x21\xc3\xf6\x60\xe0\x83\x3d\x39\x57\x74\x27\xb2\x4e\xcc\xf4\xa9\xc2\xa2\x35\xa3\x71\x16\xbe\x43\x40\xf8\xb3\x5d\x3f\xd8\xf5\x27\xbb\x7e\xb4\xeb\x2f\xef\xc2\x79\x7a\x26\x5a\xde\x7f\x7e\xcd\x83\x76\x97\xb6\x9f\x66\x9c\x58\xf5\xb3\x62\x9e\xfa\xac\x43\x93\x76\x6e\xd3\x1e\xf2\x7a\xb3\x60\x32\x3c\x4d\xd6\x6d\xd0\x75\x25\xfe\x3c\x58\x23\xff\x40\x38\x7c\x0f\xf7\x77\x77\x77\x1d\xbc\xb3\x31\x1e\x17\x73\xd3\x76\xe1\xd7\xfb\xbb\x97\x10\x33\x4d\x0a\xb8\x81\xb7\x6d\xbb\x73\x44\x7e\x40\x7e\x63\x29\x6a\xf3\xe2\x41\x62\x54\x8d\xec\xd6\x37\xd5\x38\x60\x8a\x85\xe3\x7f\x57\x36\xea\x38\x2d\xcb\x42\x62\x4b\x14\x5b\x46\x42\xbe\x7a\xe0\x98\xa2\xbf\x51\xfd\xee\x65\x64\x25\xdb\xe0\x13\x8e\xef\xad\xd6\xb2\xed\x08\x7f\xea\xde\xe3\x00\x5b\x0d\x67\x0a\x07\xdc\x2b\xc9\x94\x0a\x7a\xca\xd9\x16\x71\x1d\x05\x86\x54\x7b\x14\x23\x4b\xd9\x1a\xa6\xc8\xeb\xfd\xdb\xfe\x5c\xb4\x76\xe3\x6b\x74\xfb\xd2\xe4\x6c\x31\x6c\x4b\x4b\x62\xfd\x8a\x7d\x58\x2d\x81\xfd\xd9\x89\xee\x5a\x8b\xe8\x9b\xd9\xdf\xb3\x9c\xd6\xa5\x26\xed\xfd\x61\xf8\x8b\xc7\xb2\x96\x24\x1f\x1f\xdf\x3f\x22\x29\x1b\xb1\x65\xa0\xd7\x85\x82\x35\xcd\x3e\x1f\xb3\xf9\xa9\x7a\x92\xd9\xbf\xe4\xd2\x07\xf3\x4a\x35\xfe\x1a\x72\xd1\x58\xb5\x3d\xad\x4a\x66\x1d\x01\x0d\xf7\x06\x4a\x02\xbc\x42\xba\x0d\x20\x3d\x0d\xe3\xcf\x00\x00\x00\xff\xff\x01\x38\x07\x88\xfe\x0a\x00\x00") func filesJsUtilsJsBytes() ([]byte, error) { return bindataRead( @@ -615,7 +616,7 @@ func filesJsUtilsJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/js/utils.js", size: 2823, mode: os.FileMode(420), modTime: time.Unix(1436540046, 0)} + info := bindataFileInfo{name: "files/js/utils.js", size: 2814, mode: os.FileMode(420), modTime: time.Unix(1441029609, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -635,7 +636,7 @@ func filesJsVendorAngularMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/js/vendor/angular.min.js", size: 125910, mode: os.FileMode(420), modTime: time.Unix(1433931160, 0)} + info := bindataFileInfo{name: "files/js/vendor/angular.min.js", size: 125910, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -655,52 +656,72 @@ func filesJsVendorQueryStringJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/js/vendor/query-string.js", size: 1547, mode: os.FileMode(420), modTime: time.Unix(1433931300, 0)} + info := bindataFileInfo{name: "files/js/vendor/query-string.js", size: 1547, mode: os.FileMode(420), modTime: time.Unix(1439016967, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesTemplateDownloadsHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x55\xc1\x92\xe3\x26\x10\xbd\xcf\x57\xf4\x50\xc9\xda\xae\x1a\x8f\x9c\x72\x4e\xb3\x92\x4f\xa9\xfc\x40\x8e\xa9\x54\x0a\x43\xdb\x62\x2d\x03\x05\x68\xbc\xce\xac\xff\x3d\x0d\x1a\xcb\x48\x56\x76\x2a\xeb\x83\x0b\xc1\xe3\xf5\xeb\x47\xd3\x94\xf5\x1a\x44\xc3\xbd\xaf\x58\xab\xa0\x46\x2e\xd1\xb1\xcd\x6f\xe6\xa4\x1b\xc3\xa5\x2f\x8b\x7a\xbd\x79\x78\x28\xa5\x7a\x05\xbd\x5f\xaa\x5d\xc5\x1e\x25\x0f\xfc\xb9\xb5\x69\x1d\xbe\x7d\x83\xf9\x70\x02\x0e\x78\xf6\x8b\xe7\x06\xf5\x3e\xd4\x50\x55\xb0\x62\x59\x84\x23\x7a\xcf\xf7\x08\xda\xc8\x6b\x0c\xb6\x79\x00\x28\x6d\x1f\x14\x76\xaa\x41\x0f\x7c\x6b\x5e\xb1\x2c\xec\xe6\xa1\x2c\x28\x7c\x54\x11\xf8\xb6\xc1\xab\x8e\x41\xd4\x4f\x9f\xbe\x2f\x63\x33\x54\xd1\x6a\x1f\xb8\x38\x24\x3a\x61\x8e\x96\x8b\x00\x3e\x38\x65\x51\xc2\x95\x21\x88\x46\x42\x8a\xd8\x09\x0c\xd1\x9c\x38\x8a\x63\xd7\x0d\xd2\xf4\x95\x57\xf3\x23\x41\x7f\x27\xf1\x65\x11\xea\x09\x80\x57\xff\x10\xe0\x0f\xfa\x1f\x01\x36\xb7\x6f\x1a\x25\xee\x38\xf3\x1e\xaf\x0c\x5b\x23\xcf\x7d\xe4\x3e\x0d\xdb\x9b\xc5\xa2\x27\x0e\x2d\xf2\x50\xb1\xb9\xe5\xa1\x7e\x82\xdd\x02\x94\x86\xdc\x13\x76\x8b\x28\x87\x9a\xdf\xe7\x69\x85\x47\xa6\xda\x21\xf9\xfb\xf6\x06\xbb\xe7\xd6\x35\x70\xb9\x30\xf2\xc1\xed\x91\xc8\xff\xde\x36\x5c\x1f\x7a\x2b\x63\xa8\x6c\x3b\x00\x6d\x8a\x73\x64\x7f\xd4\x15\xd9\x69\x7b\xb6\x5e\xaa\xec\x14\xf0\x6b\x40\xa7\x79\x03\x8d\xd2\x07\x50\xc2\x68\x46\x4e\xa8\x4c\x4e\xc1\xb3\x8f\xc7\xe5\x12\xac\xc3\x57\x85\x27\xd8\xb6\x21\x18\x0d\xcb\x65\xb6\xae\xa2\x76\x5f\x9b\x53\xc5\x88\x79\x9e\xc4\x2f\x62\x01\xc6\xaf\xa8\x6a\x41\x65\x92\x69\xb9\xfd\xe6\x37\x04\xc1\x67\x47\xfb\xeb\x8c\x0a\x7b\x04\x1d\x63\xd6\x1f\x62\xac\xdc\xcd\x16\x2c\x83\x90\x3e\xd1\x28\x71\x20\xe3\xba\x3c\xfc\x9f\x11\xfd\x17\x54\xf0\x38\x9c\xc9\x77\xbd\x1b\xf6\xaa\x24\x1a\xb0\x0d\x3f\x77\x56\x8d\x79\x13\xe8\xcd\xb4\x81\xdc\xc4\x17\x18\xf2\x5d\xc6\xce\x66\x66\xa2\xf3\x43\x23\xb3\xcb\x3e\x52\x95\x1c\x3e\xa9\x20\xea\xce\xe3\x94\xeb\xa0\x00\xae\x9b\x3b\xd4\xf2\x54\xa3\xae\x18\x19\x3a\x00\x11\xac\xcb\xe6\xa4\x64\x20\xaa\x5f\x56\xab\x9f\xa9\xa6\x8c\x0e\xce\x34\x7e\x33\x32\xb5\xf4\xa6\x75\x02\xe1\x8b\x5d\x7a\x27\x2a\x96\x0e\x96\x4a\xf2\x6c\xf1\xdd\x95\x62\x22\x40\x91\x56\x06\xd2\xba\x36\xf2\xa1\xd6\xf5\x98\x8a\xb7\x52\x99\x1f\x93\x97\xb6\x92\x3c\xdc\x7f\x26\x02\x89\xc2\x57\xa9\x74\xee\xd4\x26\xe0\xff\x57\x4b\x25\x36\xa6\x32\xdb\x2f\x48\xed\x2c\xde\xfc\xf1\x25\xee\x24\x59\x4b\x35\xc8\x83\x32\xba\x88\xdb\xef\x6e\xc4\xe0\x50\x6a\x54\xfb\x9a\x2e\xfe\x7a\xb5\xb2\x5f\xd9\x5d\xee\x78\xdc\x52\xcb\x9c\x4e\x7d\x14\x07\x8a\x71\xce\x9d\xd2\xef\x24\x7d\x6d\xfc\xd7\xaf\x20\x27\x5a\x58\xd7\x55\xfb\x3d\x29\xe3\xd8\x63\xa9\x07\x6d\xcf\x81\x1e\x92\xbe\x01\xfd\x07\xc1\xf5\x60\xd9\x74\x2f\x79\xdc\x3d\xff\x44\x90\x9d\x72\x47\x96\xdd\xe0\xdb\x2c\xdd\xde\xe0\x5a\x9c\xb8\xb2\x8e\xbc\x09\x8e\xfb\x7a\xb2\xb9\x8d\x62\x48\x6c\x30\x28\xbd\x8f\x6f\x59\x16\x72\xb2\x7d\xe4\xf0\x2e\xfa\x67\xe0\x56\xcd\x67\x29\xda\xec\x09\xde\xe2\xcd\x7c\x49\xbd\xf8\x72\xdf\x82\xba\x56\x41\xea\x5e\x20\x8f\xfc\x04\x7b\x87\xe7\x17\xc8\xa6\x2e\x13\x59\x89\x1a\xc5\x74\xbb\xce\x32\xca\x38\xfa\xd7\x22\xb2\xd3\xc3\x4f\xd5\x4b\xbe\x08\xe5\x04\xbd\xbe\xf1\x65\x8a\x59\xdc\xd1\xdd\x0e\x2b\x7b\x12\xbb\x87\x90\x06\xf1\x59\xde\xfc\x1b\x00\x00\xff\xff\x1d\x9e\x4c\x24\xbc\x08\x00\x00") +var _filesTemplateConfigHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x92\xcf\x72\xa3\x30\x0c\xc6\xef\x79\x0a\xad\x2f\x49\x66\x76\x97\x4b\x4e\x3b\xc0\x25\x8f\xb0\xbd\x75\x7a\x30\x58\x18\x0d\xc6\x66\xb0\xa1\xcd\x50\xde\xbd\x36\x7f\x12\xda\xa1\x3d\xd9\x58\x3f\x7d\xfa\x24\x11\x17\xa6\xad\x41\xcb\x3f\xb6\x34\xaf\x09\x43\x41\x8e\x41\xae\xb8\xb5\x09\xeb\x08\x2c\xca\x1a\xb5\x83\xf0\x0e\x01\x65\xe9\x01\x20\x2e\x2f\x1b\x46\x50\x4f\x82\xb4\x84\x12\xb9\xc0\x96\xa5\x57\xa3\x0b\x92\x5d\xcb\x1d\x19\x1d\x47\xe5\x65\xca\xf1\xd8\x9a\x54\x10\x2a\xc1\xfc\x23\x84\xca\x2d\x36\xc8\x5d\xc2\x4e\xd5\xef\xfe\x0c\xa4\xc1\x3a\xee\xf0\xef\xac\x72\xa7\x48\x93\x67\xdc\xad\x41\x48\x3c\xd4\x74\xee\xc9\xdf\x4f\xfd\x79\x72\xb4\xe8\x07\xae\x58\xa9\x04\x8e\x79\x89\x79\x75\x5c\x08\xcf\x4c\xdf\x99\x79\x83\x40\x78\xce\x48\xa9\x90\x2d\xd1\xa9\x4c\x6d\x04\xaa\x84\x6d\x2d\x3c\x57\x2f\x2c\x1d\x06\xa8\xe0\x1d\xb8\x10\xb6\xe1\x39\x5a\x18\xc7\x38\x5a\xe5\x16\x07\x91\xb7\xf0\x8d\x99\x5f\x3b\x66\x14\xcf\x50\xed\x0b\xcf\xa1\x15\x9c\xba\x5d\x2c\x0f\x43\x38\xc7\x91\xfd\x64\x36\x8e\xa6\x94\x2f\xb6\x1e\x97\xcd\x2a\xb2\xce\x39\xa3\xed\x76\x88\x8f\xcd\x66\xaa\x43\x98\x89\x75\x48\xbe\xea\x12\x1f\x94\xe1\x61\xed\xff\x80\x37\xe4\xcf\xf1\x13\x42\x79\xe5\x8d\x75\x59\x4d\x6e\x36\x76\x3a\xdf\x3b\xff\xcf\x7b\xdc\x9d\xd8\xa3\xb2\x6c\xf1\xb6\x56\xde\x08\xce\x0b\xdb\x48\x5d\xb9\xce\x51\xed\xf6\x19\x47\xe1\x7f\x4d\x0f\x1f\x01\x00\x00\xff\xff\x89\xb5\x9d\xff\xe2\x02\x00\x00") -func filesTemplateDownloadsHtmlBytes() ([]byte, error) { +func filesTemplateConfigHtmlBytes() ([]byte, error) { return bindataRead( - _filesTemplateDownloadsHtml, - "files/template/downloads.html", + _filesTemplateConfigHtml, + "files/template/config.html", ) } -func filesTemplateDownloadsHtml() (*asset, error) { - bytes, err := filesTemplateDownloadsHtmlBytes() +func filesTemplateConfigHtml() (*asset, error) { + bytes, err := filesTemplateConfigHtmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "files/template/config.html", size: 738, mode: os.FileMode(420), modTime: time.Unix(1441003358, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _filesTemplateDownloadTreeHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x52\xc1\x52\xdd\x30\x0c\xbc\xf3\x15\xc2\xd3\x81\xf6\x00\xf9\x00\x5e\x72\xe1\xce\xa5\x5f\xe0\xda\x7a\xb1\x06\xc7\xce\xc8\x06\x86\x52\xfe\xbd\x72\xe2\xa4\x79\x69\x86\x53\xe2\x95\x76\x57\x5e\xf9\xea\x44\x10\xfa\x3b\x3a\xb7\x8a\x92\x25\xfe\xfe\x43\x95\xb3\xf1\x3a\x25\x81\x4c\x0c\x2b\x42\xe6\xb9\x55\x39\xf6\xbd\x47\xc1\xba\x53\x43\xdd\x05\xfb\x4c\x53\xe1\x7f\x7a\x6d\xb5\xf4\x0a\xb5\x20\x78\xc6\x90\x55\x77\x05\xb0\xc5\x1d\x6a\x8b\x3c\xc1\x52\x48\xa3\x0e\xfb\xe1\xba\x8f\x0f\x08\xd1\xe2\xfd\x93\x1e\x10\x3e\x3f\x4f\x4d\xe9\xaa\x04\x7d\x38\x8c\x63\x14\xa8\xb1\xf1\x2d\xf8\xa8\x6d\xb3\x28\x7c\x1b\x75\x76\x22\x71\xa0\xa9\xb7\x13\x6c\x66\xe6\xe8\x53\x9d\x4e\xaa\xd3\xdd\x93\x8b\x6f\xad\xba\x96\xea\x99\x78\xd8\x46\x55\x21\x68\x21\xf3\x0b\xaa\x45\x87\xd1\x0a\xa0\x93\x83\x12\x4f\x0d\xe7\x40\xd1\xa2\xc7\x4c\xa1\x87\x9b\x1b\x38\x50\x5f\xcb\xb3\xfc\x03\x30\x0e\xf1\x55\xee\xfc\x70\xe1\x64\x1c\x9a\xe7\xaf\x9d\x16\xa5\x95\xd7\x33\xbe\x4b\x20\x59\xb8\x22\x40\x6c\x3c\x42\x49\xae\xb8\xed\x94\xfe\xc5\x7f\x6a\x64\x8f\xfb\x7d\x5a\x4c\x86\x69\xcc\x54\x48\x4b\xca\x3f\xe9\x37\xc2\x1f\xf8\xf5\x9e\x31\x4d\x69\x1f\x10\x3d\xa5\xac\x76\xbb\x2f\x41\x5c\x1b\x1f\x13\xda\xf2\x10\x66\xff\x0d\x87\x32\xce\x09\x31\x8e\xa8\x73\xab\x8a\x1b\x50\x98\x5d\x1f\x1d\x79\xcb\x18\x54\x4d\x00\xa6\x2c\xe7\x9d\x7a\xe4\x56\x3d\x49\xd7\xe3\x7a\xbe\x68\xa3\x60\xfc\x8b\x68\x25\x36\xad\xba\x15\x9b\xd1\xeb\x8c\xeb\x8b\xba\xcb\x8c\x78\xef\xf2\xe0\x6f\x4b\x34\xcb\x75\xe6\x9f\xfa\xf9\x1b\x00\x00\xff\xff\x77\x1a\x07\x7d\x68\x03\x00\x00") + +func filesTemplateDownloadTreeHtmlBytes() ([]byte, error) { + return bindataRead( + _filesTemplateDownloadTreeHtml, + "files/template/download-tree.html", + ) +} + +func filesTemplateDownloadTreeHtml() (*asset, error) { + bytes, err := filesTemplateDownloadTreeHtmlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "files/template/downloads.html", size: 2236, mode: os.FileMode(420), modTime: time.Unix(1434468313, 0)} + info := bindataFileInfo{name: "files/template/download-tree.html", size: 872, mode: os.FileMode(420), modTime: time.Unix(1441029609, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesTemplateEngineHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x94\x93\x41\x6f\x9c\x30\x10\x85\xef\xfc\x8a\xa9\x55\x29\xbb\x52\xba\x5c\x72\xaa\x80\x4b\xd4\x6b\x2f\xed\x2d\xca\xc1\x8b\x07\x33\xc2\xd8\x08\x9b\x6d\x23\xca\x7f\xaf\x8d\x81\x90\x8a\x46\xed\x65\x61\xed\xe7\x37\xdf\x1b\xc6\x49\x56\x99\xbe\x05\x2d\x3f\xd9\xda\xfc\xc8\x19\x0a\x72\x0c\x4a\xc5\xad\xcd\xd9\x40\x60\x51\xb6\xa8\x1d\x04\x15\x2b\x12\x80\xac\x7e\xd8\x6d\x0b\xba\x91\x20\x2d\xa1\x46\x2e\xb0\x67\xc5\x17\x2d\x49\x63\x96\xd6\x0f\x45\x12\xd4\x5e\xb0\xca\x2b\x42\x25\xa2\x87\x45\x85\xa5\xdb\xf9\xd4\x83\x44\xb8\xaa\xc1\xff\x0c\xce\x19\xcd\x02\x51\x6b\x04\xaa\x9c\x91\x60\xfe\x0c\x84\x15\xd3\x39\x32\xda\x86\x35\xe0\x16\xf0\xf2\x95\xb7\x18\xd8\xe0\x44\xe2\x1e\xf0\x0c\xa4\xe1\x63\x6f\x8c\xbb\x08\xee\xf8\x25\xd2\xd8\x58\x34\x8d\x55\xe3\xbb\xe7\x8a\x80\xef\xc7\x79\x34\xba\x22\x39\xf4\x3c\xd4\x8d\xa9\x8e\x42\xad\x7c\x3d\x76\xc8\x5d\xce\x4e\xcd\xfd\xed\x2f\x2c\x4f\x24\x9e\x2f\xd1\x76\x3b\x46\x9a\xfc\x21\xf7\xd2\x21\xe4\xfe\x54\x37\xb8\xef\xfe\xfd\x74\x3b\xb3\x99\x71\xa9\x18\x84\xd5\x2a\xcb\xe1\xae\xac\xb1\x6c\xee\xe6\x6c\xb3\x66\xfe\x7f\x35\x3f\x21\x28\xbc\xce\x48\xa9\x90\x2d\xbb\xb0\x6b\xe8\xbb\x50\x4f\xcd\x33\x2b\xc6\x11\x1a\xf8\x05\x5c\x08\xdb\xf1\x12\x2d\x4c\x53\x96\xae\xfe\xb1\xe0\xd2\xc2\x43\xba\x0f\x07\x74\x8a\x5f\x51\x1d\x1b\xc7\xad\x55\x38\xe7\x5f\x32\x8c\x63\x78\x4e\x13\xfb\x2f\xfa\x2c\x9d\x3d\xfe\xe0\xfc\xe7\x6f\x7e\x38\xbc\x71\x2c\x2d\xdb\x25\x7e\xb5\x78\x33\xb8\xc9\xd6\xee\x45\x30\x2a\xc3\x43\x81\xcf\xc0\x3b\xf2\xcf\x89\xed\x25\x54\x36\x39\xb3\xc3\xb5\x25\x17\x23\x9c\xce\x5b\xd3\xbe\xf1\x1b\xc2\x9b\x11\x3c\x6c\xfd\x2b\x88\xec\xf1\x65\x7f\x83\x16\xfb\x70\xa9\xfd\x64\x55\x5c\x59\xdc\xcc\x1f\xb9\x2e\x51\x1d\xf7\x28\xc9\xd2\x70\xe1\x8b\xdf\x01\x00\x00\xff\xff\x65\x82\x2f\x2e\x1e\x04\x00\x00") +var _filesTemplateDownloadsHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x56\xc1\x92\xa3\x36\x10\xbd\xfb\x2b\x7a\xa8\x64\x6d\x57\x8d\x8d\x53\xce\x69\x16\xb8\x6c\x2a\xc7\x5c\x72\x4c\xa5\x52\x32\x6a\x83\xd6\x42\x50\x92\x18\xaf\x33\xe3\x7f\x4f\x4b\x18\x2c\x30\xd9\xa9\xc4\x87\x29\x10\xdd\xef\x75\x3f\xb5\x9e\x26\x29\xf7\x90\x4b\x66\x4c\x1a\xb5\x02\x4a\x64\x1c\x75\x94\xfd\x52\x9f\x95\xac\x19\x37\x49\x5c\xee\xb3\xc5\x22\xe1\xe2\x15\x54\xb1\x11\xc7\x34\x52\x6d\x35\x7c\x5e\xad\x21\x4d\x61\x17\x05\x10\x15\x1a\xc3\x0a\x04\x55\xf3\x3e\x2a\xca\x16\x00\x49\x33\xa0\xc2\x51\x48\x34\xc0\x0e\xf5\x2b\x26\x71\x93\x2d\x92\x98\xf0\xbf\x4f\x93\x8d\x59\x0c\x16\x15\x2a\xdb\x21\xbb\xac\xfb\x27\x29\x4c\xb7\x3e\xfe\x22\x2c\x56\x91\x03\xd7\xd8\x20\xb3\x44\x50\x73\x04\xa1\xc0\x58\x66\x71\x3b\x70\x6d\xbf\x94\x42\x72\x8d\x2a\xf2\x10\xee\x47\x49\x79\xad\xac\xae\xa5\x44\x9d\x46\xbf\x51\xe2\x97\xe1\x7d\x14\x26\x54\x2e\x5b\x82\x35\x3a\x4f\xa3\x25\x31\x36\x92\xc0\xe3\x5e\x89\x8d\xd5\x88\xdb\xd2\x56\x72\x19\x65\xb7\xa6\xa9\xca\xee\x61\x10\xe1\x69\xb3\x59\x24\x96\x1d\x24\xf6\x5a\x70\x66\xd9\xb6\x6d\x7c\x7d\xf0\xe9\x13\xac\x46\x0b\xef\x70\xc2\x8b\x59\x6f\x25\xaa\xc2\x96\x53\xa5\x5a\x45\x0d\xe6\x27\x0f\x97\xd7\x55\xc3\x72\x4b\x2d\x6b\xd1\x20\x87\x1e\xc1\xe6\x92\x83\x67\xec\x04\xb5\x6e\x0e\x6e\x12\x5a\x9d\xdd\x3a\xa4\xe5\x1e\x57\xb1\x8a\x42\x7f\xa5\x6d\x4c\x62\x5b\xce\x04\x18\xf1\x37\x05\xfc\x4e\x7f\x27\x01\xd9\xfd\x9d\x9e\x74\xd7\xff\xc0\x97\xd8\x43\xcd\x2f\x03\xf3\xd0\x46\x33\x8c\xcd\x68\x0b\x57\x0d\xb3\xe5\x33\x1c\xd7\x6e\x1f\x43\x4d\xa2\x3b\x23\x1f\xd7\x3c\xec\x56\xc2\x1c\x52\xa9\x91\xf4\x7d\x7b\x83\xe3\xb6\xd5\x12\xae\xd7\x88\x74\xd0\x05\x12\xf8\x5f\x07\xc9\xd4\x69\x90\xd2\x51\x05\xe9\x00\x94\xe4\xd6\x48\x7e\x57\x97\x43\xa7\xf4\xe0\x7b\x22\x82\x5d\xc0\x6f\x16\xb5\x62\x92\xa6\x53\x9d\x40\xd0\x38\xb9\x01\x10\x41\x39\x31\x0b\x5e\x84\xab\xcd\x94\xf5\x39\x8d\x28\x73\xe5\x8b\xf3\x47\xcd\xbd\x39\xd6\x35\x8d\x41\xc0\x75\xff\xad\xee\x11\x14\xbe\xac\x9a\x9f\x97\xf0\xfe\x3e\x09\x9d\xc6\xec\x3f\x8c\x69\xf8\x71\xb9\x8e\x82\x10\x77\x26\xa4\xc8\x4f\x24\x8c\xc6\x57\x81\x67\xf3\x87\x8b\xfe\x13\x52\x78\x1a\xaf\x84\x59\x37\x41\x5e\x05\xc7\x1a\xe8\x6c\x5c\x3a\x29\xa6\xb8\x3e\xe8\xad\x6e\x2d\xa9\x85\x2f\x30\xc6\xbb\x4e\x95\x0b\x4c\x63\xc2\xec\x55\x3c\x0b\x9b\x97\x9d\x8e\xbe\x9f\xd1\x26\xf6\xc9\x5d\xd4\xe6\x5c\xa2\x4a\x23\x12\x6d\x14\x44\x61\x5d\xc5\x67\xc1\x2d\x41\xfd\xb4\xdb\xfd\x48\x73\xd1\x59\x80\xc9\x26\xc2\x25\xa6\x6e\x75\x8e\xf0\xb5\xd9\x78\x1b\xf0\x9b\x47\x63\x75\x69\xf0\xd6\x79\x3c\x43\x10\xfb\x2f\xa3\xd2\x7a\x7f\xf8\xa0\xd6\xfd\x14\x8a\xb5\x5c\xd4\xff\xaf\x3c\x9f\x4a\xe5\x61\xf1\x99\x00\x38\xe6\x26\xf5\xe3\xf1\x50\xad\x0f\xfc\xef\xd5\xd2\x18\x4d\xa1\xea\xc3\x57\x24\x4b\x72\xa7\x77\x7a\x10\xbb\x92\x9a\x86\xe6\x8c\x59\x51\xab\xd8\xa5\x3f\x4c\xfd\x68\x53\x4a\x14\x45\x49\x87\x77\xbf\xdb\x35\xdf\xa2\x87\xde\xb1\x3a\x90\xed\xcd\xb7\x3e\xe1\x81\x78\xda\x73\x57\xe9\x77\x9a\xee\x1d\xbc\x7f\xb3\x7c\xc6\x86\x3a\x67\x1c\x72\x7c\xc7\xce\x27\xc9\x47\x0e\x17\x4b\xd7\xe2\x60\x22\xff\x02\xd0\x6f\x6c\x34\xef\x17\x4f\xc7\xed\x0f\x14\x72\x14\xba\xbb\xee\x6e\xa7\xf4\xbe\x4a\x27\xd4\xea\x16\x67\x8e\xa5\x26\x6d\xac\x66\xa6\x9c\x35\xa8\x09\x07\x47\x89\x56\xa8\xc2\xdd\x47\x01\xe5\xac\x45\x84\xe1\x1d\xfb\x67\x60\x8d\x58\x2d\x3d\xdb\xf2\x19\xde\xdc\xc9\x7c\xf1\x7e\x7a\x7d\xb4\x99\xce\x0e\xa8\xba\x17\x08\x99\x9f\xa1\xd0\x78\x79\x81\x60\xe9\x3a\xd3\x55\x5e\x62\x3e\x6f\xb9\x41\x47\x01\xc6\xe0\xf8\x0e\x9d\xfe\x8d\xa1\xe9\x25\x5d\x72\xa1\x73\xba\x41\xdd\xed\xe2\xba\x78\x80\xbb\x6f\x56\x70\xad\x75\x97\x19\xdd\xec\xfe\x6e\xcd\x60\xb3\xc9\x16\xff\x04\x00\x00\xff\xff\xb4\xcf\x38\xc2\x71\x09\x00\x00") -func filesTemplateEngineHtmlBytes() ([]byte, error) { +func filesTemplateDownloadsHtmlBytes() ([]byte, error) { return bindataRead( - _filesTemplateEngineHtml, - "files/template/engine.html", + _filesTemplateDownloadsHtml, + "files/template/downloads.html", ) } -func filesTemplateEngineHtml() (*asset, error) { - bytes, err := filesTemplateEngineHtmlBytes() +func filesTemplateDownloadsHtml() (*asset, error) { + bytes, err := filesTemplateDownloadsHtmlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "files/template/engine.html", size: 1054, mode: os.FileMode(420), modTime: time.Unix(1434468145, 0)} + info := bindataFileInfo{name: "files/template/downloads.html", size: 2417, mode: os.FileMode(420), modTime: time.Unix(1441030406, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesTemplateOmniHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x56\x4b\x6f\xe3\xb6\x13\xbf\xe7\x53\x8c\x75\x58\x64\x81\xc4\xda\xff\xd5\x90\x05\x64\xff\xeb\x76\x0d\x24\x36\xe0\x38\x87\x9e\x0a\x5a\xa2\x6d\x22\x34\xa9\x92\x54\xb6\x69\xd6\xdf\xbd\xc3\x97\x24\xcb\x56\x1f\x69\xd1\x1c\x62\xbe\x66\xe6\x37\xaf\x9f\x26\x1b\xdd\xde\xc2\xf2\x61\x31\x87\xcf\x77\x2b\xb8\xbd\xcd\xaf\xb2\x92\xbd\x40\xc1\x89\xd6\xd3\x44\x1e\x04\x83\x9a\xc1\x96\xd7\xac\x04\x56\x48\x01\x4c\x54\xb5\x49\xf2\x2b\x80\xcc\x2d\x71\x01\x50\x71\x52\xd0\xbd\xe4\x25\x55\xd3\x64\x26\x0c\x55\xa0\x29\x51\xc5\x1e\x7e\xa9\xa9\x7a\xbd\x01\x23\x95\xa2\xc2\xc0\xd3\xea\x1e\xa4\x82\x03\xd9\x09\x6a\x77\xf3\xc4\xc9\x8b\xdd\xed\x41\x96\x94\x4f\x13\xa7\x53\x8f\xad\xe1\xe6\xaa\xd8\x13\xb1\xa3\xd3\xa4\x22\x4a\xd3\xeb\x8f\xcd\x39\xb5\x86\xa6\x89\xae\x37\x07\x66\x96\x28\x81\x77\xa9\x47\x16\x1d\xb0\x90\x5b\x3d\xfe\xec\xcd\x43\x9b\x80\x35\x39\xf6\x9b\x9b\x00\x29\x1c\x06\x7c\xdf\xbf\xfb\x6d\x40\x7f\xe3\x14\xf9\xbf\x3d\xe5\xd5\x04\x46\x1d\x15\xf0\xe1\x43\xd8\x07\xe9\x66\x1f\xc4\x8f\x49\x9e\xa5\x0c\x03\x9c\x62\x84\xf3\xab\x2b\x17\xfa\x87\xbb\x1f\x17\xb3\x35\xcc\xbe\xcc\xd7\xcb\x10\xff\xad\x54\x07\x0b\x57\xef\xe5\xb7\x69\x42\x4b\x66\x92\xe8\x0e\xa6\xc2\xee\xc1\x3e\xf1\x39\xe8\x24\x0b\x2f\x71\xc7\x30\x07\xd6\x90\xb3\x71\xfa\x60\xcb\x28\x2f\x9d\x18\x9e\x73\xb2\xa1\x3c\x5f\x90\x03\xcd\x52\xbf\xf6\xe7\x03\xef\x63\xba\xc1\xbc\x56\x98\x0a\x43\x7f\x35\x49\xb8\x68\x93\x27\x50\x5b\xe7\x34\xe6\x4d\x1b\xc5\xc4\x8e\x6d\x5f\x63\xee\x7a\x05\x63\x41\x44\x58\x0d\xee\xbf\xe8\xc0\x5c\x6c\x25\x7c\x25\x7a\xff\xef\x79\xc1\x50\xe5\x1e\x35\xbe\xc3\x93\x06\xcd\x7b\xdd\x59\x2b\x52\x3c\x53\xa5\x3b\xde\x9c\x88\x0e\xb9\x67\x41\x2a\x5a\x51\x62\xd0\x2b\xec\x51\x30\x41\xd1\xdf\x71\xdc\x8c\x5f\xde\xe1\x73\x80\x3c\xe0\x71\x96\xda\x5a\xed\x55\xfb\x0f\xf3\xd9\xfd\x17\x98\xad\x56\xcb\x0e\xe5\x34\x15\x6f\x7b\x9f\x2a\x75\x52\xf4\x4a\x59\xd6\xa0\x5a\x93\x9d\x2f\x95\xac\xca\xdf\xde\xc2\xcb\xe3\x31\x4b\xab\x5e\x5f\x3d\xce\xee\x56\xff\xff\x0a\x9f\x9f\xd6\xeb\xe5\xe2\xf1\x8c\xd8\x42\xcb\x6e\x6a\x63\xa4\xd0\x49\x6b\xbc\xd7\xd0\x81\x8e\x2a\x25\x43\x63\x5d\x59\xdb\x9a\x72\x5a\x98\x0e\xbe\x9d\xa2\x54\x04\x6d\xc9\x39\x9b\x35\xe2\x91\x89\x64\x65\x18\xda\xc5\x07\x25\x10\x0d\x7a\x6c\x3b\xc7\x76\x35\x5c\xb3\xf2\x06\xf4\x47\x9b\xc2\x28\xe5\x73\x98\xa5\xde\xaa\x47\x10\x02\x56\x70\x56\x3c\x47\x06\x7c\x74\xa8\x63\x96\x5a\x70\x86\x89\x57\xd8\xf0\x9a\x46\x80\x7d\x3e\xe4\x92\x94\x98\xe2\x49\xe0\x6c\x5c\x46\xa6\x2b\x99\x26\x1b\x4e\xcb\x09\x08\xb9\xa2\xba\xe6\x46\x5b\x52\xc4\xee\x78\x90\x8a\xda\x00\xa9\x70\xda\x2e\xc7\x9c\x8a\x9d\xd9\x43\x0e\x9f\x9c\x96\x63\xac\x0c\x5d\x11\xd1\x06\xba\x51\x98\xe4\x0b\x19\x65\x47\xe8\x25\xbe\xba\x28\x30\xea\x48\x78\x57\xdb\xc7\x4d\xb1\x85\x0a\x38\x65\xc5\xd3\xea\x19\xcc\xf5\xe8\x3c\xd9\xae\xce\x7e\x92\x35\x7a\xfc\x42\x31\x06\xf1\xab\xd6\xa4\x66\xb0\xf0\x56\xb3\xc7\xa7\xfb\xf5\x79\xe1\x05\x47\x87\x51\xfc\x61\x40\x13\x70\x98\x8c\x4d\x4a\xc7\xc1\x5a\x68\x83\x4d\xe8\x4f\xe5\xa1\x22\x58\x9c\xb6\x6d\x2b\x5a\x82\x29\x38\xfe\xb3\x57\x31\x0f\x46\x75\xd9\x42\xd9\x52\x8b\xa8\x1a\xb2\x30\x65\x54\x2f\x5a\x72\x76\x37\xc4\x0a\xef\x15\xdd\x62\xe1\xbc\x81\x1a\xd7\x8a\xc3\xf1\x98\xa0\x09\xb5\xa3\xa8\xef\xe7\x0d\x27\xe2\x39\xc9\xdd\xa5\x2b\x6b\xdb\x9e\xa4\xd1\x9c\x9a\xb2\x6b\x05\x95\x31\x54\xa5\xc6\x9a\xfd\x46\x9b\x96\x77\x9b\xd6\xa8\xd3\x65\xcf\x50\xd7\x80\x9e\x18\x0c\xdd\xe5\xbc\x58\x43\x4d\xd3\xd3\x52\x07\x64\x6e\xed\xa0\xb9\x1a\xca\x36\x2a\x1d\x90\xaa\xa8\x53\xe9\x41\xb8\x4d\x2b\x76\x0e\x00\xe7\x0d\xa3\x24\x3f\xc1\xc0\x06\x5a\x75\x6e\xe8\xe1\x5a\x35\xac\x7a\xda\xb5\x9e\x52\x4a\xf9\x4d\xd8\xf6\x74\xb3\x57\x98\x1f\xfa\x01\xc0\x95\x3a\x49\xad\x0d\x68\x68\xd1\x4b\x19\xb5\xfa\x0e\xf6\x0e\x6b\x85\x5b\x37\xa6\xc9\xff\x3e\x75\xf1\xfe\x39\xb9\xf4\xc1\x5e\xa6\x98\xf6\x53\x32\x48\x34\xc7\x8e\x5d\x80\x7b\xeb\xa9\x85\xd6\x62\x49\x9b\x8f\xde\x25\x97\xf1\xd7\x56\xf6\xe5\x99\x6a\x88\xfb\xc3\x78\x36\xc0\xfd\xfe\xb6\x1d\xae\xfa\x81\x58\xfb\x61\xee\x9f\xd0\x2c\xa9\x58\xc7\x75\xe7\xf4\x83\xb3\x7a\x36\x28\x5c\x84\xd6\xea\x75\xb0\xdc\x40\x38\x85\x91\x1b\x14\xfb\x36\x5d\x15\x4d\xdc\xd0\x78\xbc\x0c\xd8\x63\xcd\x67\xf8\xa2\xcf\xa2\x36\x96\x38\x95\xae\x66\x8b\x18\xcc\xb3\x58\x9e\x07\x31\x0c\xbb\xff\x75\x00\x83\xd6\xfe\xb7\xe0\xf7\x00\x00\x00\xff\xff\x61\xc0\xf6\x91\xdf\x0c\x00\x00") +var _filesTemplateOmniHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x57\x4d\x6f\xdb\x38\x13\xbe\xfb\x57\x8c\x75\x28\x52\x20\xb1\xfb\x02\x3d\x05\xb2\x81\xf4\xad\x77\x6b\x20\x71\x00\xc7\x39\xec\x69\x41\x5b\xb4\x45\x84\x22\xb5\x24\x95\x6e\x36\xf5\x7f\xdf\xe1\x87\x24\x5a\xb2\x52\x2c\x82\xdd\x1e\x1a\x91\xa3\x99\x79\x9e\xf9\xb4\x46\xa3\x74\x7c\x75\x05\x77\x37\xbf\xae\x16\x1b\x58\x7c\x5d\x6e\xee\xd7\x70\x75\x35\x1f\xa5\x19\x7b\x86\x1d\x27\x5a\xcf\x92\x8a\x81\xa6\x87\x82\x0a\x93\x80\x38\x5c\xe9\x5c\x7e\x9f\x25\x34\x63\x78\x9c\x8f\x00\xd2\xbd\x54\x45\xf4\xae\x95\x80\xbd\x4b\xac\x14\xe5\xf9\xe7\x48\x8a\x76\x59\xc6\xc4\x01\x72\x4a\x32\xaa\x92\xf9\x1d\x39\x08\x6a\xe0\x71\xbd\x84\x05\x6a\x4a\x95\x4e\xf3\xcf\x41\x33\x02\xb1\x67\x94\x67\xc1\x22\x4a\x38\xd9\x52\x3e\x5f\x91\x82\xa6\x53\xff\x5c\x4b\x06\x75\x50\xc6\x44\x59\x19\x30\x2f\x25\x9d\x25\x86\xfe\x69\x92\x46\x84\xbc\x0a\x99\x51\x3e\x4b\x0a\x87\x67\x22\xd0\xf4\x89\x78\x97\x13\x71\x40\xbd\x92\x28\x4d\x3d\xe8\x07\xa3\x90\xc9\xc5\xc7\xf6\xbd\x92\x93\x1d\xcd\x25\x47\x66\xb3\xc4\xa2\x6b\x11\x4f\x11\x58\xa0\x15\x3d\xfe\x8c\xe1\x52\xec\x25\x7c\x23\x3a\xff\x97\x68\x32\xb4\x9f\xa3\xf9\x77\x52\x6d\x60\xbe\x97\xef\x46\x91\xdd\x13\x55\xfa\x84\x6e\xc7\xc0\x70\x0c\x2c\x78\x45\x4b\x4a\x0c\x12\x07\x26\x20\xb0\x34\xc1\xea\x3f\x0d\x92\x99\x3c\xbf\x33\x30\x81\xcf\x9b\x61\x49\xa7\xb6\x5b\xb0\xe7\xfc\x85\x6f\xc9\xfb\xbb\xd5\x12\xbe\xdc\xf4\xbb\x51\x16\x82\x01\x36\xd2\x9e\x57\x2c\x03\xb6\x93\x02\x1c\x15\xe7\xc2\xb3\x1a\xf5\x60\x2c\x84\xa1\x0a\xbb\x98\xa8\x5d\x0e\x7f\x54\x54\xbd\x5c\x02\xb6\x9a\xc2\x9e\xc6\xce\xbb\x05\xa9\x42\xa8\x6c\x1f\x7a\x2a\x6d\x14\x9c\x4d\x3d\xb1\x8e\x1b\xd1\x49\x24\x6a\xf6\x78\x4f\xad\xa3\x59\xa2\xab\x6d\xc1\xcc\x3d\x6a\xa0\x6c\xea\x91\xd5\x04\x2c\xe4\xd6\x8e\xbf\x7b\xf5\xd0\xae\xc1\xba\x9c\xf8\xc3\x65\x80\x14\x2e\x03\xbe\x1f\x3f\xfc\x31\xa0\xbf\x6c\xc2\x0e\x38\x51\x78\x79\x0d\xe3\xc8\x04\x7c\xf8\x10\xce\x41\xbb\x39\x07\xf5\x63\x32\x4f\xa7\xac\x13\xfa\x30\x0d\x7f\x59\x2e\x6e\xbf\xc2\x62\xbd\x8e\x47\x62\x33\xff\x6c\x34\xa8\x52\x49\x3c\xf8\x94\xb2\x71\xa4\x5a\x93\x83\x6f\xfc\xb4\x9c\xbf\xbe\x86\x37\x8f\xc7\x74\x5a\x76\x3c\x3d\x2c\x6e\xd6\xff\xff\x06\x5f\x1e\x37\x9b\xfb\xd5\x43\x2f\xd5\x81\xc4\xb6\x32\x46\x0a\x1d\x0d\xdf\x0e\xc5\x90\xa0\x52\x49\x9c\xad\xae\xd8\xac\x6f\x4d\x39\xdd\x99\x08\xdf\x41\x51\x2a\x82\xb5\xa4\x9f\xdf\x46\xbd\xce\x8d\x2c\x0d\x43\xbf\xf8\x42\x06\x44\x83\x76\x33\xd1\x4e\x76\xb8\x60\xd9\x25\xe8\x8f\xb6\xc3\x6a\x2d\xdf\x5b\xe9\xd4\x7b\xf5\x08\x42\xc0\x76\x9c\xed\x9e\xea\x9a\x78\x70\xa8\xeb\x8a\x69\xc1\x19\x26\x5e\x60\xcb\x2b\x5a\x03\xec\x56\x08\x97\xc4\xee\x8d\xeb\x50\xc5\xf8\x58\xe7\x3e\x63\x9a\x6c\x39\xcd\xae\x41\xc8\x35\xd5\x15\x37\xda\x96\x09\x8e\xb5\x3b\xa9\xa8\x0d\x90\x0a\xb7\xed\xe3\x84\x53\x71\x30\x39\xcc\xe1\x93\xb3\x72\xac\x97\x95\x2e\x89\x68\x03\xdd\x18\x4c\xe6\x2b\x59\xeb\x8e\x91\x25\xbe\x75\x56\x61\x1c\x69\x78\xaa\xed\xcb\x21\xf5\x4d\x05\x9c\xae\xd8\xd3\xea\x19\xcc\xf5\xb8\x9f\x6c\x57\x67\xbf\xc9\x0a\x19\x3f\x53\x8c\x41\xdd\xe7\x4d\x6a\x06\x0b\x6f\xbd\x78\x78\xbc\xdd\xf4\x0b\x2f\x10\x1d\x46\xf1\x66\x40\xc3\xcf\x02\x63\x93\x12\x11\xac\x84\x36\x38\x0c\xfd\xad\x2c\x4a\x82\xc5\xa9\x71\x7a\x96\x34\x03\xb3\xe3\xf8\x9f\x15\xd5\x79\x30\x2a\x1e\xe6\xca\x96\x5a\x8d\xaa\x99\xa5\x26\xab\xcd\x8b\x78\xd5\xa2\x84\x58\xe5\x5c\xd1\x3d\x16\xce\x2b\xa8\x49\xa5\x38\x1c\x8f\x09\xba\x50\x07\x8a\xf6\x7e\xdf\x72\x22\x9e\x92\xb9\x13\xba\xb2\xb6\xed\x49\xda\x29\x6d\xb2\xd8\x0b\x1a\x63\x68\x4a\x4d\x34\xfb\x8b\x36\x2d\xef\x0e\xad\x53\x67\xcb\xde\xa1\xad\x01\x3b\x75\x30\x74\x67\x17\xb9\x1a\x6a\x9a\x9e\x66\x3a\x20\x73\xcf\x0e\x9a\xab\xa1\x74\xab\xa6\x03\x5a\x25\x75\x26\x3d\x08\x77\x68\xd5\xfa\x00\x70\x02\x1b\x25\xf9\xe9\x3e\x1c\x68\xd5\xa5\xa1\xc5\x85\x8a\xf6\x1b\xf4\x46\x4a\x26\xbf\x0b\xdb\x9e\x6e\x1b\x85\x89\xda\x0d\x00\x3e\xa9\x93\xd4\xda\x80\x86\x16\x3d\x97\x51\x6b\xaf\xb0\x32\xac\x15\x6e\x69\xcc\x92\xff\x7d\x8a\xf1\xfe\x7c\xb8\x74\xc1\x9e\x1f\x31\xfe\xdf\x9b\x83\xe6\x18\xf9\x05\xb8\xb5\x4c\x2d\xb4\x16\xcb\x34\xfe\x55\xd2\xa3\x8c\x7f\x6d\x65\x9f\xdf\x32\x43\xb3\x3f\x2c\xac\x81\xd9\xef\xa5\xbe\xf7\xcf\x05\x62\xe3\xd7\xdb\x7b\xc6\x2c\x29\x59\x44\xdd\x91\xf6\xbf\x78\x46\xf1\x4f\x97\x93\x9d\x18\x43\x6b\xed\x3a\x58\xee\xa3\x60\x06\x63\xf7\xd9\xd0\xf5\xe9\xaa\xe8\xda\x7d\x38\x1c\xcf\x03\xf6\x58\xe7\xf6\x03\xa1\x3b\x45\x6d\x2c\xf1\xab\x65\xbd\x58\xd5\xc1\xec\xc5\xb2\x1f\xc4\xb0\xfe\xff\xeb\x00\x06\xab\xbd\x5d\xf0\x77\x00\x00\x00\xff\xff\x9e\x75\x31\x5f\x87\x0d\x00\x00") func filesTemplateOmniHtmlBytes() ([]byte, error) { return bindataRead( @@ -715,12 +736,12 @@ func filesTemplateOmniHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/template/omni.html", size: 3295, mode: os.FileMode(420), modTime: time.Unix(1436522722, 0)} + info := bindataFileInfo{name: "files/template/omni.html", size: 3463, mode: os.FileMode(420), modTime: time.Unix(1440992108, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _filesTemplateTorrentsHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xa4\x58\xdf\x6f\xdb\x36\x10\x7e\xef\x5f\x71\xd1\xb0\xda\x59\x6b\x39\x45\xd1\x97\xcc\x36\x90\x2d\x29\x56\x20\xe8\x0a\xb4\x7b\xd9\xb0\x07\xda\xa2\x2c\xa2\xb2\x28\x90\x54\x3c\xd7\xf1\xff\xbe\x3b\x51\xb2\x28\x4a\x72\xe2\x36\x0f\xb5\x65\x1e\x8f\xdf\x7d\xbc\x1f\x9f\xfa\x62\x16\x89\x07\x58\xa5\x4c\xeb\x79\x60\xa4\x52\x3c\x33\x7a\x92\x70\x16\x71\x15\x2c\x5e\x00\xcc\x92\xb7\xf5\x72\x21\xc0\x59\x00\xf8\x52\x99\x93\xd5\x34\x79\x6b\xad\xdf\x39\xd6\xb1\x48\xb9\x86\x48\x6e\xb3\x54\xb2\x48\x64\xeb\xf6\xfe\x5b\x67\x61\xbf\x87\x88\x19\x16\x96\x5b\xdc\x85\xc7\x47\xb8\x82\xc3\xc1\xfa\xb2\x27\xbd\x5b\xbc\x98\x4d\x11\x36\x7a\xb1\xf0\xb3\xf5\x44\xc4\xf3\x40\xe8\xbb\x4d\x6e\x76\xe3\xd2\xd1\x5d\xb6\x16\x19\xd7\xff\xf0\xf2\x33\x14\xd1\xbf\x61\x8d\xf7\x32\x70\x30\x6e\xb8\xd6\x6c\xcd\x21\x93\x35\x4e\x6d\xe3\xce\x17\x37\x51\x04\x35\x25\xc0\x96\xf2\x81\xcf\xa6\xf9\xf1\xec\xe3\xd1\x8a\xe7\x9c\x99\x79\x30\x4e\x98\x4e\x5e\x83\xb9\x04\x91\xc1\x53\x18\x02\x3c\x02\xf7\x56\x38\xf6\x32\xe7\xd9\x35\x98\x90\x3e\x0f\xb4\xe6\x20\xac\x20\x80\xe6\xeb\x0d\x7e\x22\x3a\x82\xe7\xc4\x7d\x61\xc2\x7b\xc4\xcd\x23\x37\x2e\xb6\x32\xe2\x81\x23\x94\x07\xae\x0c\x8f\x20\x12\x9b\xcd\x91\x79\xf7\xd2\xe9\x04\xfe\x9f\x01\x0a\x9d\x0c\xee\x2d\xf1\x35\xc3\x50\x87\xdb\xd9\xa5\x0d\x5b\x7d\x65\xcb\x94\xc3\x5a\x89\xa8\xc7\xb3\xd9\x4a\x58\xc9\xb4\xd8\x64\xa0\xe4\xb6\x32\x68\x9b\x88\x2c\xae\x6d\x8e\xeb\x6d\x8b\x8c\x6d\xb8\xb3\x84\x8b\x3a\x67\x19\x85\xae\x13\xb9\xc5\xe0\x15\xa6\xd4\x6e\x6c\xc2\x8f\x68\xf8\x6a\x14\x7e\x13\xf9\xe8\xb2\xb5\x01\x28\xb9\xec\x3a\x26\x92\xeb\x69\x4a\xae\x5a\xbe\x59\xe3\xb8\xd7\x6f\xcb\x2d\x9a\x26\x8a\xe3\x05\xa0\xff\x3e\xeb\xb0\x50\x29\x9e\xf8\x5c\x30\xcc\x21\xa0\x26\xbf\xcb\x07\x25\x59\xb0\xf8\xa9\xf4\xf2\x01\xd9\xfb\x03\x9f\xd1\x53\x6b\x47\xfb\xc1\xd9\xbc\x92\x99\x51\x32\xd5\xa7\x29\xa7\x24\x0c\x1a\x22\x6c\x56\xda\xb4\xeb\x33\xc7\x3c\x30\x85\xf6\xa2\x74\x0d\xa8\xb0\xbc\x65\xe7\x1a\xeb\x12\xd8\x14\x98\xa6\xd7\x26\xb4\xee\x42\xda\x04\xf3\x39\x5c\x21\x7f\xfb\x7d\xfb\xe7\x47\x58\xee\x0c\xd7\x14\xb5\x7f\x83\xcf\x75\x9d\xeb\xda\x39\x8c\x3d\xf7\xb8\x74\x3c\x60\xaa\x2f\x3d\xe7\xe8\x5e\xb8\x65\xa6\x30\xb5\xcb\x16\x07\x02\xd9\x0d\x16\xb3\xa9\xe8\xe0\xe9\x41\xe9\xdd\x70\xf9\xd3\xc5\x64\x02\xb7\x1f\x3e\xdf\xfc\x76\x7f\x77\x0b\x7f\x7d\xba\xff\xf3\xe6\x76\x90\xd3\x22\x3f\x9b\xd1\x22\xef\xe1\x13\x7f\xfc\x41\x36\x8b\x7c\x80\xcb\x72\xe1\x5c\x26\x11\xcf\x8f\xf2\x08\x93\x49\xab\xa6\x7d\x0b\xe2\xb9\x5d\xf3\x0d\x88\xb5\xe2\x3c\x83\x94\x2d\x79\xda\xa9\xf5\x3a\xfe\x48\x68\xea\x7a\xd1\x75\x6f\xd1\x1f\x7a\xf6\x89\xd5\xd7\x81\x46\x05\x2f\x5f\x02\xcb\xc5\x78\x84\x4f\x37\x69\x3a\x7a\x0d\x7b\x2a\xf0\xeb\x56\x71\xfb\xed\xac\xa1\x4d\x33\x6a\xf1\x47\xbe\xe0\x6f\x91\x0f\xb5\x94\x0e\x2d\x6e\xd8\x0a\x07\xc4\x50\xd0\x25\xf8\x12\xe3\x2a\x95\x9a\x9f\x0d\xd1\x48\xf7\x4a\xe1\x33\x3e\x7f\x47\xdb\x2b\xcf\x8e\x9c\xae\x74\x71\x6c\x4b\xdf\x75\x95\x65\x54\xba\x58\x6e\x84\xa9\x46\xf2\x78\x84\x79\xab\xcc\x88\x26\xf8\x60\x34\x79\xca\x76\xed\x68\x70\xcb\x30\xe5\xe7\x91\xec\xc1\x89\x78\xca\x0d\x3f\x8d\xc7\x28\xa2\xdf\x01\x74\x5b\x6e\x7a\x16\xc1\xce\x83\xfb\x95\xba\x50\x33\xca\x1b\x89\x61\xa7\x42\x75\x2e\x95\x2a\xdd\x6c\x8e\x77\xb2\x68\x4f\x98\xd6\x60\xf9\x92\x08\x7d\x14\x30\xf8\x55\x64\x56\x97\x84\xf0\x49\xa1\xf0\x02\x93\xf0\xea\xa2\x72\xb9\xe5\x0a\x96\x85\x31\x32\xc3\x1d\x54\x5b\x64\xc9\x0c\x07\xa9\x4a\x3b\xe2\xcf\xc6\xbb\x62\x95\xc9\x46\x52\xfe\x9b\xd0\x09\xc2\x0d\xb1\xce\x78\x17\x20\x29\x11\x77\xb6\x55\xca\xe9\x54\x10\x33\x53\xaa\x9c\xe6\x26\x8b\xac\xd1\x3e\x2b\xb9\xc9\x11\x29\xb2\xa1\x44\x4e\x3a\xab\x56\x91\x60\x56\x29\x02\x26\x23\x77\xce\x1a\x92\xc0\xad\x1c\x31\xca\xbb\x5d\x93\xb4\xc5\xcf\x7b\x94\xbe\xb3\xa9\x49\x06\xcd\xb4\xf8\x86\x66\x9f\xf1\xdf\x5e\xb3\xc5\xcb\x6c\xa9\xf3\x5f\xfd\x35\x7c\x56\x6e\x6a\x78\xc8\x66\x66\x29\xa3\x9d\x87\xd4\xc9\x87\xf7\xa5\xb8\x47\x79\x5e\x7d\x0d\x53\x94\xb9\x88\x89\x46\x81\x9f\xaf\x26\x22\xc5\x41\xdd\x7b\x1e\xbc\x3d\x26\x51\x39\x48\x82\xc5\x47\x69\xc5\x3d\x22\x88\x86\xf1\xd9\xe3\x1d\x45\x41\x24\x97\x1b\x03\x57\x84\xc7\x24\xbe\x2b\x44\x7d\x28\x06\x44\x65\x9d\x25\xfe\x6f\x43\x72\x33\xf6\x4b\xd2\xfe\xa1\x2a\x8b\xc3\x4f\x0c\x59\x78\x2c\xa1\x65\x1d\x99\x57\x87\xd6\x37\x69\xfb\xf4\x67\xec\x69\x4e\xfb\xd7\x55\x9e\xf1\x80\xda\x3c\x17\x17\xeb\x0e\xdd\x1e\x5a\xea\xd6\x60\x91\x3a\x2f\x78\xfd\x78\x9b\xca\x59\xa6\x05\xaf\x5f\x4d\x72\x25\xd7\xd4\x04\x7a\x10\xbb\xc5\xb8\x64\xca\x16\xac\xd9\xa5\x1c\x23\xde\x8a\xc8\xe0\xf4\x19\xc7\xe1\xef\x58\x7a\xd4\xed\xa2\x29\x7e\x4f\x8a\xec\xab\xbe\xfc\xe5\xcd\xd5\x15\xbc\x82\xd1\xcf\xa3\x7e\x22\x5c\xc7\xcd\xf9\xbd\x31\x0e\x85\x7e\x8a\x0f\x2a\x8d\x38\xac\xf9\xb8\x43\x45\xa3\xba\x74\x34\x6c\x70\x32\xa8\xdf\x40\xfb\x68\x10\xad\xf1\x67\xfb\xbc\x33\x30\xbc\xa3\x60\x0e\x59\x91\xa6\xbd\xda\xa9\x7c\xa1\xdd\xef\xbd\x1d\xa4\xf9\xf2\x67\x44\xe8\x97\x66\xab\x98\x6c\xf7\xf1\x9c\x94\x19\x47\x1d\xa9\x56\x80\x7e\xba\x9d\x74\x59\xbf\xa7\x74\x6b\x54\x9c\x52\x62\xf1\x25\xf5\xa3\x76\x3a\x1e\xba\x17\xd0\xd1\x64\x71\xa9\xc3\x2e\xda\x1b\xe9\x27\x3b\x91\xa9\x99\x38\xea\xe0\x35\xf4\x25\x79\x85\xc9\x0e\x33\xbc\xae\xa2\x19\x05\x27\x14\xad\x78\x7e\x15\x35\xa8\x9f\xc2\x29\xf3\x27\x61\xd2\x2c\xf5\x94\xd9\xc9\xdb\xe9\xcc\x8a\xf6\x6c\x98\x99\x58\x4a\x53\x57\x80\x37\x10\x16\xf0\x26\x38\x6f\xe0\x75\x73\xc9\x73\x79\x38\xc0\xfb\xea\xff\x83\x5a\x18\x7b\x66\x5f\x9f\x2f\x2f\x2f\xe1\x8b\x34\x2c\x3d\xdf\x97\x1d\xab\x27\xf7\x75\x78\x23\x9e\x1a\x01\x56\xaa\x83\x45\x9f\x7a\xa9\xbe\xd8\x8f\xff\x03\x00\x00\xff\xff\xdd\xb7\x0a\x7f\xa5\x13\x00\x00") +var _filesTemplateTorrentsHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x94\x57\xdd\x6e\xdb\x38\x13\xbd\xf7\x53\x4c\xf4\xa1\x71\x8c\xd6\x72\x8a\xa0\x37\xf9\x64\x01\x0b\x6c\x8b\x5d\x6c\x51\x04\x6d\x5f\x80\x92\x68\x8b\xa8\x24\x0a\x24\x15\xaf\x9b\xf8\xdd\x77\x46\xbf\xa4\x24\x3b\x3f\x17\xb1\x2c\x0e\x67\xce\x0c\x0f\xcf\x8c\x17\x41\x22\x1e\x21\xce\x98\xd6\x5b\xcf\x48\xa5\x78\x61\xf4\x3a\xe5\x2c\xe1\xca\x0b\x17\x00\x41\x7a\xd7\x2d\x57\x02\xac\x05\x80\x9f\xad\x39\x59\x6d\xd2\xbb\xc6\xfa\x93\x65\xbd\x13\x19\xd7\x90\xc8\x43\x91\x49\x96\x88\x62\xef\xee\x7f\x7a\x82\xa2\xca\xff\xe1\x47\x7d\xa3\x0d\x33\xdc\xef\x1c\xae\xe0\x74\x02\xe3\x78\xff\x14\x2e\x82\x0d\x42\x0d\x17\x0d\xe2\x62\xbf\x16\xbb\xad\x27\xf4\xe7\xbc\x34\xc7\xf1\x7e\xcf\x02\x91\x73\xad\xd9\x9e\x43\x21\x3b\x20\xba\x49\xac\x0c\xff\x48\x92\x3e\x0c\xb0\x48\x3e\xf2\x60\x53\x4e\x03\x29\x5e\x72\x66\xb6\xde\x4d\xca\x74\xfa\x01\xcc\x0a\x44\x01\x6e\x44\x0f\x1d\xa2\x65\x1b\xf5\x49\x96\xbc\xb8\x07\xe3\xd3\xe7\x89\xd6\x2c\x3c\x6d\x40\xd0\x7c\x9f\xe3\x27\x62\x21\x30\x56\x4e\x57\xc6\xff\x8a\x28\x79\x62\x67\xc1\x62\x23\x1e\x39\x06\x7e\xe4\xca\xf0\x04\x12\x91\xe7\x7d\x21\xed\x33\xa4\x08\xfc\x5f\x03\x94\x28\x19\x7c\x6d\x2a\xdf\xe6\x44\xb5\x6c\x92\x9b\xec\xc2\x84\xe2\x5f\x2c\xca\x38\xec\x95\x48\x66\x3c\x9b\x83\x84\x58\x66\x55\x5e\x80\x92\x87\xd6\xc0\x35\x11\xc5\xae\xb3\xe9\xd7\x5d\x8b\x82\xe5\xdc\x5a\xc2\x45\x5d\xb2\x82\x52\xd7\xa9\x3c\x60\xf2\x0a\x19\x72\xbc\x31\xfe\x37\x34\x7c\xbf\xf4\x7f\x8b\x72\xb9\x72\x36\xd4\xbc\x69\xd6\x91\x26\xb6\xa7\x0d\xb9\x72\x7c\xb3\xc1\xf1\xac\x5f\xc7\x2d\x9a\xa6\x8a\xe3\x01\xa0\xff\x39\x6b\xbf\x52\x19\x46\x7c\x2d\x18\x66\x15\xa0\x2b\xfe\xb4\x1e\x44\x29\x2f\xfc\x5f\xed\xe5\x6f\xac\xde\x5f\xf8\x1d\x3d\x39\x3b\xdc\x2f\xd6\xe6\x58\x16\x46\xc9\x4c\xcf\x94\xbc\xab\x2a\x11\xca\xf8\x3f\x0c\x23\xd6\xf4\x84\x22\xf2\x56\xc3\xcd\x9c\x3f\x90\x8e\xcc\x79\x85\x5b\xef\x8d\xff\x67\x6b\x8d\xec\xdb\x6e\xe1\x16\x0b\xf1\xf4\xe4\xbc\x7d\x86\xe8\x68\xb8\x26\xf4\x93\x93\x78\xc9\xe9\x77\xbc\x4d\x9d\x5b\xb8\xb1\x1d\xd7\x2b\xbd\xeb\x8d\x5e\x39\xe5\x0f\xae\xd6\x6b\x08\x84\x7d\x53\x14\xb2\xb3\x4e\x0d\x04\x16\xc8\x0b\x83\x8d\x08\x61\xbd\x0e\x2f\x50\x65\xf2\x9d\x59\x97\x71\x5c\x3c\x8c\xb1\x57\x9c\x17\x90\xb1\x88\x67\x36\x87\xea\xfc\x44\xfc\x0b\x0b\x5c\x45\xb9\x30\xad\x3a\xdc\x2c\x35\xb9\x58\x92\x74\xb8\xa5\xee\x71\xc7\x99\xac\x92\xfe\x3c\x6c\xe0\x75\xf4\xc5\x3c\xad\xd8\xf9\x13\x46\x90\x0a\x8f\xe4\x2d\x10\x65\x79\x09\x21\xad\xbb\xb8\x64\xf9\x12\xac\xf9\xe2\xbd\x0d\x57\xc2\x33\x6e\xf8\x25\x64\x46\xd1\x9d\xb1\xa0\x7d\xe7\x39\x4a\xf9\x1c\x38\xeb\x26\xd9\x8f\xc8\xa1\x41\xed\x06\xec\xa4\xde\x3d\x70\x22\x15\xd5\xa0\xc4\x64\x42\xf7\x12\x3a\x77\xef\x67\x2a\x74\xaf\xf1\xf8\x28\x8a\x46\xba\x7d\x78\x50\xd8\x89\xc0\xa4\xbc\xa5\x4f\x29\x0f\x5c\x41\x54\x19\x23\x0b\xdc\x41\x9a\x43\x96\x44\x77\xa9\x6a\x3b\xaa\x54\x93\x5d\xcc\x5a\x13\xca\x0c\x84\xf1\xad\x1c\x6c\x79\xe8\x68\x6e\x03\x24\xb1\x1e\x74\xb0\x6f\x2e\x97\x92\x08\x4c\xdd\x08\x86\x33\xab\x8a\xa1\x3d\xc4\x32\x2f\x11\x29\x56\x43\x89\x92\x0f\xac\xc5\xdc\xe2\x0c\x01\x93\x91\x2d\x45\x86\x9a\xbe\x73\x74\x46\xb9\x1a\x8a\x26\x6e\x7f\xf8\x82\x83\x43\xb0\x31\xe9\x59\x33\x2d\x7e\xa3\xd9\x0f\xfc\x7f\xd1\xac\xe4\x2a\xae\x7b\xec\x83\x92\x7b\x2a\xff\x8c\x75\x2d\x20\xf8\xf6\xba\x88\x74\xf9\xff\xda\x60\xa2\x16\x36\x60\xb2\x70\x12\x0a\x4c\x24\x93\xe3\x28\x41\x8b\x46\x5f\xea\x29\xe8\xf9\x19\xda\x47\x3f\xe3\xc5\x1e\x31\x92\xda\x79\x63\xe8\x09\x69\x39\x89\xd1\xd6\xbb\xeb\xb9\x57\x8b\xa5\x17\x7e\x93\xcd\x44\x85\x08\x92\xf3\xf8\x9a\xf0\xed\xce\x5e\x51\x68\xa3\x67\x0f\x33\x3b\x1a\x62\x5a\x44\x73\x28\xce\xb4\xeb\x7a\xdd\xe9\x66\xfd\x5b\xb7\x91\xef\xfc\x87\xa6\xf8\x10\xc0\xc7\xdb\x71\xa2\xcd\x1f\x76\x3d\x34\x63\x58\x8b\xe7\x1a\x60\x31\x69\xa3\x5d\x82\xe3\x7e\xd2\xbe\x67\x73\xf1\xb0\xae\x14\xd0\xe9\xe7\x6d\x98\x49\xf7\x7e\x2b\x0e\x36\xa9\xc5\x66\xa6\x18\xb6\x8e\xec\xfc\xee\x0c\x3e\x63\x63\x52\xde\xc4\xe9\x70\xc9\x38\x19\x74\xf3\xea\x0c\x50\xa7\x5d\x68\xde\x48\x9e\xa5\x9c\xa3\x50\xb0\xc5\xf1\x3a\xcb\x1a\x51\x9c\x3a\x2b\xb1\x7d\x8f\x76\x50\xe7\x2e\x5f\x91\xe1\x98\x80\x0e\x65\x9a\xab\xb9\x98\xa9\x30\x5d\xd7\xae\x93\x8f\xcb\x7b\xd1\x65\x7f\x8d\xc7\xd0\x6a\xca\x75\x6d\x00\xa7\x5e\x1a\x49\x60\x60\xc2\xe9\xf4\x6e\x9e\x3a\xdd\x01\x8d\xa9\x13\xc2\x2d\x5c\x5f\xc3\x98\xbb\x53\xca\x0c\x87\x16\x65\x15\xef\xa6\xf3\xb2\x55\x99\xb9\xb3\xb3\xc4\x36\x62\xaa\x11\x64\x73\xcc\x38\xd2\xf3\x20\x12\x93\xde\x5b\x51\xdf\xc3\xf2\xdd\x72\x9e\xaa\xb6\x9f\x21\xdc\x2c\x0b\xcf\x91\xf3\x55\xe7\xd9\xa8\x62\x32\x9e\x34\xa7\x47\x20\xec\xa9\x2e\x11\x9a\xd4\x3f\xa1\x64\xda\xce\x7f\x9a\x56\x6f\x60\xec\x55\x6f\x46\x65\x6f\x3a\x3f\x29\x92\x35\x31\x7d\x80\xdd\xea\xec\xa5\x69\x1a\xe9\xd9\xe1\xe9\x85\x24\x5f\x92\x79\x57\xd6\x03\xb3\x93\xd2\x74\xd7\xba\xfb\xe1\xda\x2a\xe8\x0a\xa9\xf3\xd1\x7b\x5b\x93\x9b\x5e\x91\x89\x53\xfc\x19\x5c\x3f\x8d\x13\x99\x76\xbc\x19\x6f\x66\x7c\xe1\xf0\x07\xbb\x61\xd9\xdb\x7d\x35\x9d\xf1\xe2\xbe\x49\xed\xa8\x56\xc3\xd4\x55\xcf\x04\xe1\xdc\xcc\xd2\x3e\xb4\x1f\xff\x05\x00\x00\xff\xff\x56\x4c\x42\x8a\x8e\x10\x00\x00") func filesTemplateTorrentsHtmlBytes() ([]byte, error) { return bindataRead( @@ -735,7 +756,7 @@ func filesTemplateTorrentsHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "files/template/torrents.html", size: 5029, mode: os.FileMode(420), modTime: time.Unix(1436540942, 0)} + info := bindataFileInfo{name: "files/template/torrents.html", size: 4238, mode: os.FileMode(420), modTime: time.Unix(1441029609, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -811,8 +832,8 @@ var _bindata = map[string]func() (*asset, error){ "files/css/themes/default/assets/fonts/icons.woff2": filesCssThemesDefaultAssetsFontsIconsWoff2, "files/css/themes/default/assets/images/flags.png": filesCssThemesDefaultAssetsImagesFlagsPng, "files/index.html": filesIndexHtml, + "files/js/config-controller.js": filesJsConfigControllerJs, "files/js/downloads-controller.js": filesJsDownloadsControllerJs, - "files/js/engine-controller.js": filesJsEngineControllerJs, "files/js/omni-controller.js": filesJsOmniControllerJs, "files/js/run.js": filesJsRunJs, "files/js/semantic-checkbox.js": filesJsSemanticCheckboxJs, @@ -820,8 +841,9 @@ var _bindata = map[string]func() (*asset, error){ "files/js/utils.js": filesJsUtilsJs, "files/js/vendor/angular.min.js": filesJsVendorAngularMinJs, "files/js/vendor/query-string.js": filesJsVendorQueryStringJs, + "files/template/config.html": filesTemplateConfigHtml, + "files/template/download-tree.html": filesTemplateDownloadTreeHtml, "files/template/downloads.html": filesTemplateDownloadsHtml, - "files/template/engine.html": filesTemplateEngineHtml, "files/template/omni.html": filesTemplateOmniHtml, "files/template/torrents.html": filesTemplateTorrentsHtml, } @@ -922,9 +944,9 @@ var _bintree = &bintree{nil, map[string]*bintree{ "index.html": &bintree{filesIndexHtml, map[string]*bintree{ }}, "js": &bintree{nil, map[string]*bintree{ - "downloads-controller.js": &bintree{filesJsDownloadsControllerJs, map[string]*bintree{ + "config-controller.js": &bintree{filesJsConfigControllerJs, map[string]*bintree{ }}, - "engine-controller.js": &bintree{filesJsEngineControllerJs, map[string]*bintree{ + "downloads-controller.js": &bintree{filesJsDownloadsControllerJs, map[string]*bintree{ }}, "omni-controller.js": &bintree{filesJsOmniControllerJs, map[string]*bintree{ }}, @@ -944,9 +966,11 @@ var _bintree = &bintree{nil, map[string]*bintree{ }}, }}, "template": &bintree{nil, map[string]*bintree{ - "downloads.html": &bintree{filesTemplateDownloadsHtml, map[string]*bintree{ + "config.html": &bintree{filesTemplateConfigHtml, map[string]*bintree{ }}, - "engine.html": &bintree{filesTemplateEngineHtml, map[string]*bintree{ + "download-tree.html": &bintree{filesTemplateDownloadTreeHtml, map[string]*bintree{ + }}, + "downloads.html": &bintree{filesTemplateDownloadsHtml, map[string]*bintree{ }}, "omni.html": &bintree{filesTemplateOmniHtml, map[string]*bintree{ }}, diff --git a/static/files/css/app.css b/static/files/css/app.css index 1028c1e8b..feb1854fd 100644 --- a/static/files/css/app.css +++ b/static/files/css/app.css @@ -52,7 +52,7 @@ html body .muted { font-size: 1.2em; } -/* +/* ================ app styles */ @@ -69,11 +69,13 @@ html body .muted { right: 10px; } -.engine { - margin-bottom: 30px; +.app .config form.edit { + margin-bottom: 1rem; } - -.engine .buttons { +.app .config form.edit input { + font-family: monospace; +} +.app .config form.edit .buttons { text-align: center; } diff --git a/static/files/css/sections/downloads.css b/static/files/css/sections/downloads.css index 817a32427..62d7649b2 100644 --- a/static/files/css/sections/downloads.css +++ b/static/files/css/sections/downloads.css @@ -2,4 +2,16 @@ .nodownloads, .nouploads { text-align: center; -} \ No newline at end of file +} + +.downloads .ui.list .content { + width: 100%; +} + +.downloads .ui.list .item .controls { + opacity: 0; + transition: opacity .3s ease-in-out; +} +.downloads .ui.list .item:hover > .content > .header > .controls { + opacity: 1; +} diff --git a/static/files/css/sections/torrents.css b/static/files/css/sections/torrents.css index b9b4af1d1..4ab2b953d 100644 --- a/static/files/css/sections/torrents.css +++ b/static/files/css/sections/torrents.css @@ -31,15 +31,11 @@ section.torrents { display: inline; } -.torrent .status > div { - display: inline-block; -} - .torrent .status .muted { color: lightgray; } -.torrent .controls.column > div { +.torrent .controls.column { /*padding-top: 5px;*/ text-align: right; } @@ -50,7 +46,8 @@ section.torrents { font-size: 0.75rem; } -.torrent .download.file .name { +.torrent .download.file .name, +.torrent .download.file .percent { position: relative; overflow: hidden; } @@ -74,4 +71,4 @@ section.torrents { .torrent .downloads tfoot tr th { font-weight: bold; font-size: 0.85rem; -} \ No newline at end of file +} diff --git a/static/files/css/semantic.min.css b/static/files/css/semantic.min.css index bc20525eb..15fc96906 100755 --- a/static/files/css/semantic.min.css +++ b/static/files/css/semantic.min.css @@ -1,5 +1,5 @@ /* - * # Semantic UI - 1.12.3 + * # Semantic UI - 2.0.3 * https://github.com/Semantic-Org/Semantic-UI * http://www.semantic-ui.com/ * @@ -8,4 +8,4 @@ * http://opensource.org/licenses/MIT * */ -*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;font-size:14px}input[type=text],input[type=email],input[type=search],input[type=password]{-webkit-appearance:none;-moz-appearance:none}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0;color:#009fda;text-decoration:none}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}body,html{height:100%}body{margin:0;padding:0;min-width:320px;background:#f7f7f7;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:14px;line-height:1.33;color:rgba(0,0,0,.8);font-smoothing:antialiased}h1,h2,h3,h4,h5{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;line-height:1.33em;margin:-webkit-calc(2rem - .165em)0 1rem;margin:calc(2rem - .165em) 0 1rem;font-weight:700;padding:0}h1{min-height:1rem;font-size:2rem}h2{font-size:1.714rem}h3{font-size:1.28rem}h4{font-size:1.071rem}h5{font-size:1rem}h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,p:first-child{margin-top:0}h1:last-child,h2:last-child,h3:last-child,h4:last-child,h5:last-child,p:last-child{margin-bottom:0}p{margin:0 0 1em;line-height:1.33}a:hover{color:#00b2f3}::-webkit-selection{background-color:#cce2ff;color:rgba(0,0,0,.8)}::-moz-selection{background-color:#cce2ff;color:rgba(0,0,0,.8)}::selection{background-color:#cce2ff;color:rgba(0,0,0,.8)}input::-webkit-selection,textarea::-webkit-selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.8)}input::-moz-selection,textarea::-moz-selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.8)}input::selection,textarea::selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.8)}.ui.button{cursor:pointer;display:inline-block;min-height:1em;outline:0;border:none;vertical-align:baseline;background-color:#e0e0e0;color:rgba(0,0,0,.6);font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;margin:0 .25em 0 0;padding:.78571em 1.5em;text-transform:none;text-shadow:none;font-weight:700;line-height:1;font-style:normal;text-align:center;text-decoration:none;background-image:none;border-radius:.2857rem;box-shadow:0 0 0 1px transparent inset,0 0 0 0 rgba(39,41,43,.15)inset;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;will-change:'';-webkit-tap-highlight-color:transparent}.ui.button:hover{background-color:#e8e8e8;background-image:none;box-shadow:'';color:rgba(0,0,0,.8)}.ui.button:hover .icon{opacity:.85}.ui.button:focus{background-color:'';color:rgba(0,0,0,.8);background-image:''!important;box-shadow:0 0 0 1px transparent inset,0 0 1px rgba(81,167,232,.8)inset,0 0 3px 2px rgba(81,167,232,.8)!important}.ui.button:focus .icon{opacity:.85}.ui.active.button:active,.ui.button:active{background-color:#ccc;background-image:'';color:rgba(0,0,0,.8);box-shadow:0 0 0 1px transparent inset,0 1px 4px 0 rgba(39,41,43,.15)inset!important}.ui.active.button{background-color:#d0d0d0;background-image:none;box-shadow:0 0 0 1px transparent inset;color:rgba(0,0,0,.8)}.ui.active.button:hover{background-color:#d0d0d0;background-image:none;color:rgba(0,0,0,.8)}.ui.active.button:active{background-color:#d0d0d0;background-image:none}.ui.loading.loading.loading.loading.loading.loading.button{position:relative;cursor:default;text-shadow:none!important;color:transparent!important;opacity:1;pointer-events:none;-webkit-transition:all 0s linear,opacity .2s ease;transition:all 0s linear,opacity .2s ease}.ui.loading.button:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285em 0 0 -.64285em;width:1.2857em;height:1.2857em;border-radius:500rem;border:.2em solid rgba(0,0,0,.15)}.ui.loading.button:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285em 0 0 -.64285em;width:1.2857em;height:1.2857em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#fff transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.labeled.icon.loading.button .icon{background-color:transparent;box-shadow:none}@-webkit-keyframes button-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes button-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.basic.loading.button:not(.inverted):before{border-color:rgba(0,0,0,.1)}.ui.basic.loading.button:not(.inverted):after{border-top-color:#aaa}.ui.button:disabled,.ui.buttons .disabled.button,.ui.disabled.active.button,.ui.disabled.button,.ui.disabled.button:hover{cursor:default;background-color:#dcddde!important;color:rgba(0,0,0,.4)!important;opacity:.3!important;background-image:none!important;box-shadow:none!important;pointer-events:none}.ui.basic.buttons .ui.disabled.button{border-color:rgba(39,41,43,.5)}.ui.animated.button{position:relative;overflow:hidden;vertical-align:middle;padding-right:0!important}.ui.animated.button .content{will-change:transform,opacity}.ui.animated.button .visible.content{position:relative;margin-right:1.5em;left:auto;right:0}.ui.animated.button .hidden.content{position:absolute;width:100%;top:50%;left:auto;right:-100%;margin-top:-.5em}.ui.animated.button .hidden.content,.ui.animated.button .visible.content{-webkit-transition:right .3s ease 0s;transition:right .3s ease 0s}.ui.animated.button:hover .visible.content{left:auto;right:200%}.ui.animated.button:hover .hidden.content{left:auto;right:0}.ui.vertical.animated.button .hidden.content,.ui.vertical.animated.button .visible.content{-webkit-transition:top .3s ease,-webkit-transform .3s ease;transition:top .3s ease,transform .3s ease}.ui.vertical.animated.button .visible.content{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);right:auto}.ui.vertical.animated.button .hidden.content{top:-50%;left:0;right:auto}.ui.vertical.animated.button:hover .visible.content{-webkit-transform:translateY(200%);-ms-transform:translateY(200%);transform:translateY(200%);right:auto}.ui.vertical.animated.button:hover .hidden.content{top:50%;right:auto}.ui.fade.animated.button .hidden.content,.ui.fade.animated.button .visible.content{-webkit-transition:opacity .3s ease,-webkit-transform .3s ease;transition:opacity .3s ease,transform .3s ease}.ui.fade.animated.button .visible.content{left:auto;right:auto;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.ui.fade.animated.button .hidden.content{opacity:0;left:0;right:auto;-webkit-transform:scale(1.5);-ms-transform:scale(1.5);transform:scale(1.5)}.ui.fade.animated.button:hover .visible.content{left:auto;right:auto;opacity:0;-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.ui.fade.animated.button:hover .hidden.content{left:0;right:auto;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.ui.inverted.button{box-shadow:0 0 0 2px #fff inset!important;background:0 0;color:#fff;text-shadow:none!important}.ui.inverted.buttons .button{margin:0 0 0 -2px}.ui.inverted.buttons .button:first-child{margin-left:0}.ui.inverted.vertical.buttons .button{margin:0 0 -2px}.ui.inverted.vertical.buttons .button:first-child{margin-top:0}.ui.inverted.buttons .button:hover{position:relative}.ui.inverted.button:hover{background:#fff;box-shadow:0 0 0 2px #fff inset!important;color:rgba(0,0,0,.8)}.ui.facebook.button{background-color:#3b579d;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.facebook.button:hover{background-color:#3f5da8;color:#fff;text-shadow:none}.ui.facebook.button:active{background-color:#314983;color:#fff;text-shadow:none}.ui.twitter.button{background-color:#4092cc;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.twitter.button:hover{background-color:#4c99cf;color:#fff;text-shadow:none}.ui.twitter.button:active{background-color:#3180b7;color:#fff;text-shadow:none}.ui.google.plus.button{background-color:#d34836;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.google.plus.button:hover{background-color:#d65343;color:#fff;text-shadow:none}.ui.google.plus.button:active{background-color:#bc3a29;color:#fff;text-shadow:none}.ui.linkedin.button{background-color:#1f88be;color:#fff;text-shadow:none}.ui.linkedin.button:hover{background-color:#2191cb;color:#fff;text-shadow:none}.ui.linkedin.button:active{background-color:#1a729f;color:#fff;text-shadow:none}.ui.youtube.button{background-color:#cc181e;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.youtube.button:hover{background-color:#da1a20;color:#fff;text-shadow:none}.ui.youtube.button:active{background-color:#ac1419;color:#fff;text-shadow:none}.ui.instagram.button{background-color:#49769c;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.instagram.button:hover{background-color:#4e7ea6;color:#fff;text-shadow:none}.ui.instagram.button:active{background-color:#3e6484;color:#fff;text-shadow:none}.ui.pinterest.button{background-color:#00aced;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.pinterest.button:hover{background-color:#00b7fc;color:#fff;text-shadow:none}.ui.pinterest.button:active{background-color:#0092c9;color:#fff;text-shadow:none}.ui.vk.button{background-color:#4D7198;color:#fff;background-image:none;box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.vk.button:hover{background-color:#5279a2;color:#fff}.ui.vk.button:active{background-color:#415f80;color:#fff}.ui.button>.icon{opacity:.8;margin:0 .4em 0 -.2em;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;vertical-align:baseline;color:''}.ui.button>.right.icon{margin:0 -.2em 0 .4em}.ui[class*="left floated"].button,.ui[class*="left floated"].buttons{float:left;margin-left:0;margin-right:.25em}.ui[class*="right floated"].button,.ui[class*="right floated"].buttons{float:right;margin-right:0;margin-left:.25em}.ui.compact.button,.ui.compact.buttons .button{padding:.5892825em 1.125em}.ui.compact.icon.button,.ui.compact.icon.buttons .button{padding:.5892825em}.ui.compact.labeled.icon.button,.ui.compact.labeled.icon.buttons .button{padding:.5892825em 3.69642em}.ui.mini.button,.ui.mini.buttons .button,.ui.mini.buttons .or{font-size:.71428571rem}.ui.tiny.button,.ui.tiny.buttons .button,.ui.tiny.buttons .or{font-size:.85714286rem}.ui.small.button,.ui.small.buttons .button,.ui.small.buttons .or{font-size:.92857143rem}.ui.button,.ui.buttons .button,.ui.buttons .or{font-size:1rem}.ui.large.button,.ui.large.buttons .button,.ui.large.buttons .or{font-size:1.14285714rem}.ui.big.button,.ui.big.buttons .button,.ui.big.buttons .or{font-size:1.28571429rem}.ui.huge.button,.ui.huge.buttons .button,.ui.huge.buttons .or{font-size:1.42857143rem}.ui.massive.button,.ui.massive.buttons .button,.ui.massive.buttons .or{font-size:1.71428571rem}.ui.icon.button,.ui.icon.buttons .button{padding:.78571em}.ui.icon.button>.icon,.ui.icon.buttons .button>.icon{opacity:.9;margin:0;vertical-align:top}.ui.basic.button,.ui.basic.buttons .button{background:0 0!important;color:rgba(0,0,0,.6)!important;font-weight:400;border-radius:.2857rem;text-transform:none;text-shadow:none!important;box-shadow:0 0 0 1px rgba(39,41,43,.15)inset}.ui.basic.buttons{box-shadow:0 0 0 1px rgba(39,41,43,.15);border-radius:.2857rem}.ui.basic.button:hover,.ui.basic.buttons .button:hover{background:#fafafa!important;color:rgba(0,0,0,.8)!important;box-shadow:0 0 0 1px rgba(39,41,43,.15)inset,0 0 0 0 rgba(39,41,43,.15)inset}.ui.basic.button:active,.ui.basic.buttons .button:active{background:#f8f8f8!important;color:rgba(0,0,0,.8)!important;box-shadow:0 0 0 1px rgba(0,0,0,.15)inset,0 1px 4px 0 rgba(39,41,43,.15)inset}.ui.basic.active.button,.ui.basic.buttons .active.button{background:rgba(0,0,0,.05)!important;box-shadow:''!important;color:rgba(0,0,0,.8)}.ui.basic.active.button:hover,.ui.basic.buttons .active.button:hover{background-color:rgba(0,0,0,.05)}.ui.basic.buttons .button:hover{box-shadow:0 0 0 1px rgba(39,41,43,.15)inset,0 0 0 0 rgba(39,41,43,.15)inset inset}.ui.basic.buttons .button:active{box-shadow:0 0 0 1px rgba(0,0,0,.15)inset,0 1px 4px 0 rgba(39,41,43,.15)inset inset}.ui.basic.buttons .active.button{box-shadow:rgba(39,41,43,.3)inset}.ui.basic.inverted.button,.ui.basic.inverted.buttons .button{background-color:transparent!important;color:#fafafa!important;box-shadow:0 0 0 2px rgba(255,255,255,.5)inset!important}.ui.basic.inverted.button:hover,.ui.basic.inverted.buttons .button:hover{color:#fff!important;box-shadow:0 0 0 2px #fff inset!important}.ui.basic.inverted.button:active,.ui.basic.inverted.buttons .button:active{background-color:rgba(255,255,255,.05)!important;color:#fff!important;box-shadow:0 0 0 2px rgba(255,255,255,.9)inset!important}.ui.basic.inverted.active.button,.ui.basic.inverted.buttons .active.button{background-color:rgba(255,255,255,.05);color:#fff;text-shadow:none;box-shadow:0 0 0 2px rgba(255,255,255,.7)inset}.ui.basic.inverted.active.button:hover,.ui.basic.inverted.buttons .active.button:hover{background-color:rgba(255,255,255,.07);box-shadow:0 0 0 2px #fff inset!important}.ui.basic.buttons .button{border-radius:0;border-left:1px solid rgba(39,41,43,.15);box-shadow:none}.ui.basic.vertical.buttons .button{border-left:none;border-left-width:0;border-top:1px solid rgba(39,41,43,.15)}.ui.basic.vertical.buttons .button:first-child{border-top-width:0}.ui.labeled.icon.button,.ui.labeled.icon.buttons .button{position:relative;padding-left:4.07142em!important;padding-right:1.5em!important}.ui.labeled.icon.button>.icon,.ui.labeled.icon.buttons>.button>.icon{position:absolute;width:2.57142em;height:100%;background-color:rgba(0,0,0,.05);text-align:center;color:'';border-radius:.2857rem 0 0 .2857rem;line-height:1;box-shadow:-1px 0 0 0 transparent inset;top:0;left:0}.ui[class*="right labeled"].icon.button{padding-right:4.07142em!important;padding-left:1.5em!important}.ui[class*="right labeled"].icon.button>.icon{left:auto;right:0;border-radius:0 .2857rem .2857rem 0;box-shadow:1px 0 0 0 transparent inset}.ui.labeled.icon.button>.icon:after,.ui.labeled.icon.button>.icon:before,.ui.labeled.icon.buttons>.button>.icon:after,.ui.labeled.icon.buttons>.button>.icon:before{display:block;position:absolute;width:100%;top:50%;text-align:center;margin-top:-.5em}.ui.labeled.icon.buttons .button>.icon{border-radius:0}.ui.labeled.icon.buttons .button:first-child>.icon{border-top-left-radius:.2857rem;border-bottom-left-radius:.2857rem}.ui.labeled.icon.buttons .button:last-child>.icon{border-top-right-radius:.2857rem;border-bottom-right-radius:.2857rem}.ui.vertical.labeled.icon.buttons .button:first-child>.icon{border-radius:.2857rem 0 0}.ui.vertical.labeled.icon.buttons .button:last-child>.icon{border-radius:0 0 0 .2857rem}.ui.fluid[class*="right labeled"].icon.button,.ui.fluid[class*="left labeled"].icon.button{padding-left:1.5em!important;padding-right:1.5em!important}.ui.button.toggle.active,.ui.buttons .button.toggle.active,.ui.toggle.buttons .active.button{background-color:#5bbd72!important;box-shadow:none!important;text-shadow:none;color:#fff!important}.ui.button.toggle.active:hover{background-color:#66c17b!important;text-shadow:none;color:#fff!important}.ui.circular.button{border-radius:10em}.ui.circular.button>.icon{width:1em;vertical-align:baseline}.ui.attached.button{display:block;margin:0;box-shadow:0 0 0 1px rgba(39,41,43,.15)!important;border-radius:0}.ui.attached.top.button{border-radius:.2857rem .2857rem 0 0}.ui.attached.bottom.button{border-radius:0 0 .2857rem .2857rem}.ui.attached.left.button{display:inline-block;border-left:none;padding-right:.75em;text-align:right;border-radius:.2857rem 0 0 .2857rem}.ui.attached.right.button{display:inline-block;padding-left:.75em;text-align:left;border-radius:0 .2857rem .2857rem 0}.ui.buttons .or{position:relative;float:left;width:.3em;height:2.57142em;z-index:3}.ui.buttons .or:before{position:absolute;text-align:center;border-radius:500rem;content:'or';top:50%;left:50%;background-color:#fff;text-shadow:none;margin-top:-.892855em;margin-left:-.892855em;width:1.78571em;height:1.78571em;line-height:1.78571em;color:rgba(0,0,0,.4);font-style:normal;font-weight:700;box-shadow:0 0 0 1px transparent inset}.ui.buttons .or[data-text]:before{content:attr(data-text)}.ui.fluid.buttons .or{width:0!important}.ui.fluid.buttons .or:after{display:none}.attached.ui.buttons{margin:0;border-radius:0}.attached.ui.buttons .button{margin:0}.attached.ui.buttons .button:first-child,.attached.ui.buttons .button:last-child{border-radius:0}[class*="top attached"].ui.buttons{margin-bottom:-1px;border-radius:.2857rem .2857rem 0 0}[class*="top attached"].ui.buttons .button:first-child{border-radius:.2857rem 0 0}[class*="top attached"].ui.buttons .button:last-child{border-radius:0 .2857rem 0 0}[class*="bottom attached"].ui.buttons{margin-top:-1px;border-radius:0 0 .2857rem .2857rem}[class*="bottom attached"].ui.buttons .button:first-child{border-radius:0 0 0 .2857rem}[class*="bottom attached"].ui.buttons .button:last-child{border-radius:0 0 .2857rem}[class*="left attached"].ui.buttons{margin-left:-1px;border-radius:0 .2857rem .2857rem 0}[class*="left attached"].ui.buttons .button:first-child{margin-left:-1px;border-radius:0 .2857rem 0 0}[class*="left attached"].ui.buttons .button:last-child{margin-left:-1px;border-radius:0 0 .2857rem}[class*="right attached"].ui.buttons,[class*="right attached"].ui.buttons .button{margin-right:-1px;border-radius:.2857rem 0 0 .2857rem}[class*="right attached"].ui.buttons .button:first-child{margin-left:-1px;border-radius:.2857rem 0 0}[class*="right attached"].ui.buttons .button:last-child{margin-left:-1px;border-radius:0 0 0 .2857rem}.ui.button.fluid,.ui.fluid.buttons,.ui.fluid.buttons>.button{display:block;width:100%}.ui.\32.buttons,.ui.two.buttons{width:100%}.ui.\32.buttons>.button,.ui.two.buttons>.button{width:50%}.ui.\33.buttons,.ui.three.buttons{width:100%}.ui.\33.buttons>.button,.ui.three.buttons>.button{width:33.333%}.ui.\34.buttons,.ui.four.buttons{width:100%}.ui.\34.buttons>.button,.ui.four.buttons>.button{width:25%}.ui.\35.buttons,.ui.five.buttons{width:100%}.ui.\35.buttons>.button,.ui.five.buttons>.button{width:20%}.ui.\36.buttons,.ui.six.buttons{width:100%}.ui.\36.buttons>.button,.ui.six.buttons>.button{width:16.666%}.ui.\37.buttons,.ui.seven.buttons{width:100%}.ui.\37.buttons>.button,.ui.seven.buttons>.button{width:14.285%}.ui.\38.buttons,.ui.eight.buttons{width:100%}.ui.\38.buttons>.button,.ui.eight.buttons>.button{width:12.5%}.ui.\39.buttons,.ui.nine.buttons{width:100%}.ui.\39.buttons>.button,.ui.nine.buttons>.button{width:11.11%}.ui.\31\30.buttons,.ui.ten.buttons{width:100%}.ui.\31\30.buttons>.button,.ui.ten.buttons>.button{width:10%}.ui.\31\31.buttons,.ui.eleven.buttons{width:100%}.ui.\31\31.buttons>.button,.ui.eleven.buttons>.button{width:9.09%}.ui.\31\32.buttons,.ui.twelve.buttons{width:100%}.ui.\31\32.buttons>.button,.ui.twelve.buttons>.button{width:8.3333%}.ui.fluid.vertical.buttons,.ui.fluid.vertical.buttons>.button{display:block;width:auto}.ui.\32.vertical.buttons>.button,.ui.two.vertical.buttons>.button{height:50%}.ui.\33.vertical.buttons>.button,.ui.three.vertical.buttons>.button{height:33.333%}.ui.\34.vertical.buttons>.button,.ui.four.vertical.buttons>.button{height:25%}.ui.\35.vertical.buttons>.button,.ui.five.vertical.buttons>.button{height:20%}.ui.\36.vertical.buttons>.button,.ui.six.vertical.buttons>.button{height:16.666%}.ui.\37.vertical.buttons>.button,.ui.seven.vertical.buttons>.button{height:14.285%}.ui.\38.vertical.buttons>.button,.ui.eight.vertical.buttons>.button{height:12.5%}.ui.\39.vertical.buttons>.button,.ui.nine.vertical.buttons>.button{height:11.11%}.ui.\31\30.vertical.buttons>.button,.ui.ten.vertical.buttons>.button{height:10%}.ui.\31\31.vertical.buttons>.button,.ui.eleven.vertical.buttons>.button{height:9.09%}.ui.\31\32.vertical.buttons>.button,.ui.twelve.vertical.buttons>.button{height:8.3333%}.ui.black.button,.ui.black.buttons .button{background-color:#1b1c1d;color:#fff;text-shadow:none;background-image:none}.ui.black.button{box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.black.button:hover,.ui.black.buttons .button:hover{background-color:#1b1c1d;color:#fff;text-shadow:none}.ui.black.button:active,.ui.black.buttons .button:active{background-color:#0a0a0b;color:#fff;text-shadow:none}.ui.black.active.button,.ui.black.button .active.button:active,.ui.black.buttons .active.button,.ui.black.buttons .active.button:active{background-color:#0f0f10;color:#fff;text-shadow:none}.ui.basic.black.button,.ui.basic.black.buttons .button{box-shadow:0 0 0 2px rgba(39,41,43,.15)inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.black.button:hover,.ui.basic.black.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #1b1c1d inset!important;color:#1b1c1d!important}.ui.basic.black.button:active,.ui.basic.black.buttons .button:active{box-shadow:0 0 0 2px #0a0a0b inset!important;color:#0a0a0b!important}.ui.basic.black.active.button,.ui.basic.black.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #0a0a0b inset!important;color:#0a0a0b!important}.ui.buttons>.basic.black.button:not(:first-child){margin-left:-2px}.ui.inverted.black.button,.ui.inverted.black.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #d4d4d5 inset!important;color:#fff}.ui.inverted.black.active.button,.ui.inverted.black.button:hover,.ui.inverted.black.buttons .active.button,.ui.inverted.black.buttons .button:hover{box-shadow:0 0 0 2px #333 inset!important;background-color:#333;color:#fff}.ui.inverted.black.button:active,.ui.inverted.black.buttons .button:active{box-shadow:0 0 0 2px #212121 inset!important;background-color:#212121;color:#fff}.ui.inverted.black.basic.button,.ui.inverted.black.basic.buttons .button,.ui.inverted.black.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5)inset!important;color:#fff!important}.ui.inverted.black.basic.active.button,.ui.inverted.black.basic.button:hover,.ui.inverted.black.basic.buttons .active.button,.ui.inverted.black.basic.buttons .button:hover,.ui.inverted.black.buttons .basic.active.button,.ui.inverted.black.buttons .basic.button:hover{box-shadow:0 0 0 2px #333 inset!important;color:#fff!important}.ui.inverted.black.basic.button:active,.ui.inverted.black.basic.buttons .button:active,.ui.inverted.black.buttons .basic.button:active{box-shadow:0 0 0 2px #212121 inset!important;color:#fff!important}.ui.blue.button,.ui.blue.buttons .button{background-color:#3b83c0;color:#fff;text-shadow:none;background-image:none}.ui.blue.button{box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.blue.button:hover,.ui.blue.buttons .button:hover{background-color:#458ac6;color:#fff;text-shadow:none}.ui.blue.button:active,.ui.blue.buttons .button:active{background-color:#3370a5;color:#fff;text-shadow:none}.ui.blue.active.button,.ui.blue.button .active.button:active,.ui.blue.buttons .active.button,.ui.blue.buttons .active.button:active{background-color:#3576ac;color:#fff;text-shadow:none}.ui.basic.blue.button,.ui.basic.blue.buttons .button{box-shadow:0 0 0 2px rgba(39,41,43,.15)inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.blue.button:hover,.ui.basic.blue.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #458ac6 inset!important;color:#458ac6!important}.ui.basic.blue.button:active,.ui.basic.blue.buttons .button:active{box-shadow:0 0 0 2px #3370a5 inset!important;color:#3370a5!important}.ui.basic.blue.active.button,.ui.basic.blue.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #3370a5 inset!important;color:#3370a5!important}.ui.buttons>.basic.blue.button:not(:first-child){margin-left:-2px}.ui.inverted.blue.button,.ui.inverted.blue.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #54c8ff inset!important;color:#54c8ff}.ui.inverted.blue.active.button,.ui.inverted.blue.button:hover,.ui.inverted.blue.buttons .active.button,.ui.inverted.blue.buttons .button:hover{box-shadow:0 0 0 2px #54c8ff inset!important;background-color:#54c8ff;color:#fff}.ui.inverted.blue.button:active,.ui.inverted.blue.buttons .button:active{box-shadow:0 0 0 2px #30bdff inset!important;background-color:#30bdff;color:#fff}.ui.inverted.blue.basic.button,.ui.inverted.blue.basic.buttons .button,.ui.inverted.blue.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5)inset!important;color:#fff!important}.ui.inverted.blue.basic.active.button,.ui.inverted.blue.basic.button:hover,.ui.inverted.blue.basic.buttons .active.button,.ui.inverted.blue.basic.buttons .button:hover,.ui.inverted.blue.buttons .basic.active.button,.ui.inverted.blue.buttons .basic.button:hover{box-shadow:0 0 0 2px #54c8ff inset!important;color:#54c8ff!important}.ui.inverted.blue.basic.button:active,.ui.inverted.blue.basic.buttons .button:active,.ui.inverted.blue.buttons .basic.button:active{box-shadow:0 0 0 2px #30bdff inset!important;color:#54c8ff!important}.ui.green.button,.ui.green.buttons .button{background-color:#5bbd72;color:#fff;text-shadow:none;background-image:none}.ui.green.button{box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.green.button:hover,.ui.green.buttons .button:hover{background-color:#66c17b;color:#fff;text-shadow:none}.ui.green.button:active,.ui.green.buttons .button:active{background-color:#46ae5f;color:#fff;text-shadow:none}.ui.green.active.button,.ui.green.button .active.button:active,.ui.green.buttons .active.button,.ui.green.buttons .active.button:active{background-color:#49b562;color:#fff;text-shadow:none}.ui.basic.green.button,.ui.basic.green.buttons .button{box-shadow:0 0 0 2px rgba(39,41,43,.15)inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.green.button:hover,.ui.basic.green.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #66c17b inset!important;color:#66c17b!important}.ui.basic.green.button:active,.ui.basic.green.buttons .button:active{box-shadow:0 0 0 2px #46ae5f inset!important;color:#46ae5f!important}.ui.basic.green.active.button,.ui.basic.green.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #46ae5f inset!important;color:#46ae5f!important}.ui.buttons>.basic.green.button:not(:first-child){margin-left:-2px}.ui.inverted.green.button,.ui.inverted.green.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #2ecc40 inset!important;color:#2ecc40}.ui.inverted.green.active.button,.ui.inverted.green.button:hover,.ui.inverted.green.buttons .active.button,.ui.inverted.green.buttons .button:hover{box-shadow:0 0 0 2px #2ecc40 inset!important;background-color:#2ecc40;color:#fff}.ui.inverted.green.button:active,.ui.inverted.green.buttons .button:active{box-shadow:0 0 0 2px #27af37 inset!important;background-color:#27af37;color:#fff}.ui.inverted.green.basic.button,.ui.inverted.green.basic.buttons .button,.ui.inverted.green.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5)inset!important;color:#fff!important}.ui.inverted.green.basic.active.button,.ui.inverted.green.basic.button:hover,.ui.inverted.green.basic.buttons .active.button,.ui.inverted.green.basic.buttons .button:hover,.ui.inverted.green.buttons .basic.active.button,.ui.inverted.green.buttons .basic.button:hover{box-shadow:0 0 0 2px #2ecc40 inset!important;color:#2ecc40!important}.ui.inverted.green.basic.button:active,.ui.inverted.green.basic.buttons .button:active,.ui.inverted.green.buttons .basic.button:active{box-shadow:0 0 0 2px #27af37 inset!important;color:#2ecc40!important}.ui.orange.button,.ui.orange.buttons .button{background-color:#e07b53;color:#fff;text-shadow:none;background-image:none}.ui.orange.button{box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.orange.button:hover,.ui.orange.buttons .button:hover{background-color:#e28560;color:#fff;text-shadow:none}.ui.orange.button:active,.ui.orange.buttons .button:active{background-color:#db6435;color:#fff;text-shadow:none}.ui.orange.active.button,.ui.orange.button .active.button:active,.ui.orange.buttons .active.button,.ui.orange.buttons .active.button:active{background-color:#dc6a3d;color:#fff;text-shadow:none}.ui.basic.orange.button,.ui.basic.orange.buttons .button{box-shadow:0 0 0 2px rgba(39,41,43,.15)inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.orange.button:hover,.ui.basic.orange.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #e28560 inset!important;color:#e28560!important}.ui.basic.orange.button:active,.ui.basic.orange.buttons .button:active{box-shadow:0 0 0 2px #db6435 inset!important;color:#db6435!important}.ui.basic.orange.active.button,.ui.basic.orange.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #db6435 inset!important;color:#db6435!important}.ui.buttons>.basic.orange.button:not(:first-child){margin-left:-2px}.ui.inverted.orange.button,.ui.inverted.orange.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ff851b inset!important;color:#ff851b}.ui.inverted.orange.active.button,.ui.inverted.orange.button:hover,.ui.inverted.orange.buttons .active.button,.ui.inverted.orange.buttons .button:hover{box-shadow:0 0 0 2px #ff851b inset!important;background-color:#ff851b;color:#fff}.ui.inverted.orange.button:active,.ui.inverted.orange.buttons .button:active{box-shadow:0 0 0 2px #f67300 inset!important;background-color:#f67300;color:#fff}.ui.inverted.orange.basic.button,.ui.inverted.orange.basic.buttons .button,.ui.inverted.orange.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5)inset!important;color:#fff!important}.ui.inverted.orange.basic.active.button,.ui.inverted.orange.basic.button:hover,.ui.inverted.orange.basic.buttons .active.button,.ui.inverted.orange.basic.buttons .button:hover,.ui.inverted.orange.buttons .basic.active.button,.ui.inverted.orange.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff851b inset!important;color:#ff851b!important}.ui.inverted.orange.basic.button:active,.ui.inverted.orange.basic.buttons .button:active,.ui.inverted.orange.buttons .basic.button:active{box-shadow:0 0 0 2px #f67300 inset!important;color:#ff851b!important}.ui.pink.button,.ui.pink.buttons .button{background-color:#d9499a;color:#fff;text-shadow:none;background-image:none}.ui.pink.button{box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.pink.button:hover,.ui.pink.buttons .button:hover{background-color:#dc56a1;color:#fff;text-shadow:none}.ui.pink.button:active,.ui.pink.buttons .button:active{background-color:#d22c8a;color:#fff;text-shadow:none}.ui.pink.active.button,.ui.pink.button .active.button:active,.ui.pink.buttons .active.button,.ui.pink.buttons .active.button:active{background-color:#d5348e;color:#fff;text-shadow:none}.ui.basic.pink.button,.ui.basic.pink.buttons .button{box-shadow:0 0 0 2px rgba(39,41,43,.15)inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.pink.button:hover,.ui.basic.pink.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #dc56a1 inset!important;color:#dc56a1!important}.ui.basic.pink.button:active,.ui.basic.pink.buttons .button:active{box-shadow:0 0 0 2px #d22c8a inset!important;color:#d22c8a!important}.ui.basic.pink.active.button,.ui.basic.pink.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #d22c8a inset!important;color:#d22c8a!important}.ui.buttons>.basic.pink.button:not(:first-child){margin-left:-2px}.ui.inverted.pink.button,.ui.inverted.pink.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ff8edf inset!important;color:#ff8edf}.ui.inverted.pink.active.button,.ui.inverted.pink.button:hover,.ui.inverted.pink.buttons .active.button,.ui.inverted.pink.buttons .button:hover{box-shadow:0 0 0 2px #ff8edf inset!important;background-color:#ff8edf;color:#fff}.ui.inverted.pink.button:active,.ui.inverted.pink.buttons .button:active{box-shadow:0 0 0 2px #ff6ad5 inset!important;background-color:#ff6ad5;color:#fff}.ui.inverted.pink.basic.button,.ui.inverted.pink.basic.buttons .button,.ui.inverted.pink.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5)inset!important;color:#fff!important}.ui.inverted.pink.basic.active.button,.ui.inverted.pink.basic.button:hover,.ui.inverted.pink.basic.buttons .active.button,.ui.inverted.pink.basic.buttons .button:hover,.ui.inverted.pink.buttons .basic.active.button,.ui.inverted.pink.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff8edf inset!important;color:#ff8edf!important}.ui.inverted.pink.basic.button:active,.ui.inverted.pink.basic.buttons .button:active,.ui.inverted.pink.buttons .basic.button:active{box-shadow:0 0 0 2px #ff6ad5 inset!important;color:#ff8edf!important}.ui.purple.button,.ui.purple.buttons .button{background-color:#564f8a;color:#fff;text-shadow:none;background-image:none}.ui.purple.button{box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.purple.button:hover,.ui.purple.buttons .button:hover{background-color:#5c5594;color:#fff;text-shadow:none}.ui.purple.button:active,.ui.purple.buttons .button:active{background-color:#484273;color:#fff;text-shadow:none}.ui.purple.active.button,.ui.purple.button .active.button:active,.ui.purple.buttons .active.button,.ui.purple.buttons .active.button:active{background-color:#4c467a;color:#fff;text-shadow:none}.ui.basic.purple.button,.ui.basic.purple.buttons .button{box-shadow:0 0 0 2px rgba(39,41,43,.15)inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.purple.button:hover,.ui.basic.purple.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #5c5594 inset!important;color:#5c5594!important}.ui.basic.purple.button:active,.ui.basic.purple.buttons .button:active{box-shadow:0 0 0 2px #484273 inset!important;color:#484273!important}.ui.basic.purple.active.button,.ui.basic.purple.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #484273 inset!important;color:#484273!important}.ui.buttons>.basic.purple.button:not(:first-child){margin-left:-2px}.ui.inverted.purple.button,.ui.inverted.purple.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #cdc6ff inset!important;color:#cdc6ff}.ui.inverted.purple.active.button,.ui.inverted.purple.button:hover,.ui.inverted.purple.buttons .active.button,.ui.inverted.purple.buttons .button:hover{box-shadow:0 0 0 2px #cdc6ff inset!important;background-color:#cdc6ff;color:#1b1c1d}.ui.inverted.purple.button:active,.ui.inverted.purple.buttons .button:active{box-shadow:0 0 0 2px #aea2ff inset!important;background-color:#aea2ff;color:#1b1c1d}.ui.inverted.purple.basic.button,.ui.inverted.purple.basic.buttons .button,.ui.inverted.purple.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5)inset!important;color:#fff!important}.ui.inverted.purple.basic.active.button,.ui.inverted.purple.basic.button:hover,.ui.inverted.purple.basic.buttons .active.button,.ui.inverted.purple.basic.buttons .button:hover,.ui.inverted.purple.buttons .basic.active.button,.ui.inverted.purple.buttons .basic.button:hover{box-shadow:0 0 0 2px #cdc6ff inset!important;color:#cdc6ff!important}.ui.inverted.purple.basic.button:active,.ui.inverted.purple.basic.buttons .button:active,.ui.inverted.purple.buttons .basic.button:active{box-shadow:0 0 0 2px #aea2ff inset!important;color:#cdc6ff!important}.ui.red.button,.ui.red.buttons .button{background-color:#d95c5c;color:#fff;text-shadow:none;background-image:none}.ui.red.button{box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.red.button:hover,.ui.red.buttons .button:hover{background-color:#dc6868;color:#fff;text-shadow:none}.ui.red.button:active,.ui.red.buttons .button:active{background-color:#d23f3f;color:#fff;text-shadow:none}.ui.red.active.button,.ui.red.button .active.button:active,.ui.red.buttons .active.button,.ui.red.buttons .active.button:active{background-color:#d44747;color:#fff;text-shadow:none}.ui.basic.red.button,.ui.basic.red.buttons .button{box-shadow:0 0 0 2px rgba(39,41,43,.15)inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.red.button:hover,.ui.basic.red.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #dc6868 inset!important;color:#dc6868!important}.ui.basic.red.button:active,.ui.basic.red.buttons .button:active{box-shadow:0 0 0 2px #d23f3f inset!important;color:#d23f3f!important}.ui.basic.red.active.button,.ui.basic.red.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #d23f3f inset!important;color:#d23f3f!important}.ui.buttons>.basic.red.button:not(:first-child){margin-left:-2px}.ui.inverted.red.button,.ui.inverted.red.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ff695e inset!important;color:#ff695e}.ui.inverted.red.active.button,.ui.inverted.red.button:hover,.ui.inverted.red.buttons .active.button,.ui.inverted.red.buttons .button:hover{box-shadow:0 0 0 2px #ff695e inset!important;background-color:#ff695e;color:#fff}.ui.inverted.red.button:active,.ui.inverted.red.buttons .button:active{box-shadow:0 0 0 2px #ff483a inset!important;background-color:#ff483a;color:#fff}.ui.inverted.red.basic.button,.ui.inverted.red.basic.buttons .button,.ui.inverted.red.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5)inset!important;color:#fff!important}.ui.inverted.red.basic.active.button,.ui.inverted.red.basic.button:hover,.ui.inverted.red.basic.buttons .active.button,.ui.inverted.red.basic.buttons .button:hover,.ui.inverted.red.buttons .basic.active.button,.ui.inverted.red.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff695e inset!important;color:#ff695e!important}.ui.inverted.red.basic.button:active,.ui.inverted.red.basic.buttons .button:active,.ui.inverted.red.buttons .basic.button:active{box-shadow:0 0 0 2px #ff483a inset!important;color:#ff695e!important}.ui.teal.button,.ui.teal.buttons .button{background-color:#00b5ad;color:#fff;text-shadow:none;background-image:none}.ui.teal.button{box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.teal.button:hover,.ui.teal.buttons .button:hover{background-color:#00c4bc;color:#fff;text-shadow:none}.ui.teal.button:active,.ui.teal.buttons .button:active{background-color:#00918b;color:#fff;text-shadow:none}.ui.teal.active.button,.ui.teal.button .active.button:active,.ui.teal.buttons .active.button,.ui.teal.buttons .active.button:active{background-color:#009c95;color:#fff;text-shadow:none}.ui.basic.teal.button,.ui.basic.teal.buttons .button{box-shadow:0 0 0 2px rgba(39,41,43,.15)inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.teal.button:hover,.ui.basic.teal.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #00c4bc inset!important;color:#00c4bc!important}.ui.basic.teal.button:active,.ui.basic.teal.buttons .button:active{box-shadow:0 0 0 2px #00918b inset!important;color:#00918b!important}.ui.basic.teal.active.button,.ui.basic.teal.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #00918b inset!important;color:#00918b!important}.ui.buttons>.basic.teal.button:not(:first-child){margin-left:-2px}.ui.inverted.teal.button,.ui.inverted.teal.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #6dffff inset!important;color:#6dffff}.ui.inverted.teal.active.button,.ui.inverted.teal.button:hover,.ui.inverted.teal.buttons .active.button,.ui.inverted.teal.buttons .button:hover{box-shadow:0 0 0 2px #6dffff inset!important;background-color:#6dffff;color:#1b1c1d}.ui.inverted.teal.button:active,.ui.inverted.teal.buttons .button:active{box-shadow:0 0 0 2px #49ffff inset!important;background-color:#49ffff;color:#1b1c1d}.ui.inverted.teal.basic.button,.ui.inverted.teal.basic.buttons .button,.ui.inverted.teal.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5)inset!important;color:#fff!important}.ui.inverted.teal.basic.active.button,.ui.inverted.teal.basic.button:hover,.ui.inverted.teal.basic.buttons .active.button,.ui.inverted.teal.basic.buttons .button:hover,.ui.inverted.teal.buttons .basic.active.button,.ui.inverted.teal.buttons .basic.button:hover{box-shadow:0 0 0 2px #6dffff inset!important;color:#6dffff!important}.ui.inverted.teal.basic.button:active,.ui.inverted.teal.basic.buttons .button:active,.ui.inverted.teal.buttons .basic.button:active{box-shadow:0 0 0 2px #49ffff inset!important;color:#6dffff!important}.ui.yellow.button,.ui.yellow.buttons .button{background-color:#f2c61f;color:#fff;text-shadow:none;background-image:none}.ui.yellow.button{box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.yellow.button:hover,.ui.yellow.buttons .button:hover{background-color:#f3ca2d;color:#fff;text-shadow:none}.ui.yellow.button:active,.ui.yellow.buttons .button:active{background-color:#e0b40d;color:#fff;text-shadow:none}.ui.yellow.active.button,.ui.yellow.button .active.button:active,.ui.yellow.buttons .active.button,.ui.yellow.buttons .active.button:active{background-color:#eabc0e;color:#fff;text-shadow:none}.ui.basic.yellow.button,.ui.basic.yellow.buttons .button{box-shadow:0 0 0 2px rgba(39,41,43,.15)inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.yellow.button:hover,.ui.basic.yellow.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #f3ca2d inset!important;color:#f3ca2d!important}.ui.basic.yellow.button:active,.ui.basic.yellow.buttons .button:active{box-shadow:0 0 0 2px #e0b40d inset!important;color:#e0b40d!important}.ui.basic.yellow.active.button,.ui.basic.yellow.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #e0b40d inset!important;color:#e0b40d!important}.ui.buttons>.basic.yellow.button:not(:first-child){margin-left:-2px}.ui.inverted.yellow.button,.ui.inverted.yellow.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ffe21f inset!important;color:#ffe21f}.ui.inverted.yellow.active.button,.ui.inverted.yellow.button:hover,.ui.inverted.yellow.buttons .active.button,.ui.inverted.yellow.buttons .button:hover{box-shadow:0 0 0 2px #ffe21f inset!important;background-color:#ffe21f;color:#1b1c1d}.ui.inverted.yellow.button:active,.ui.inverted.yellow.buttons .button:active{box-shadow:0 0 0 2px #fada00 inset!important;background-color:#fada00;color:#1b1c1d}.ui.inverted.yellow.basic.button,.ui.inverted.yellow.basic.buttons .button,.ui.inverted.yellow.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5)inset!important;color:#fff!important}.ui.inverted.yellow.basic.active.button,.ui.inverted.yellow.basic.button:hover,.ui.inverted.yellow.basic.buttons .active.button,.ui.inverted.yellow.basic.buttons .button:hover,.ui.inverted.yellow.buttons .basic.active.button,.ui.inverted.yellow.buttons .basic.button:hover{box-shadow:0 0 0 2px #ffe21f inset!important;color:#ffe21f!important}.ui.inverted.yellow.basic.button:active,.ui.inverted.yellow.basic.buttons .button:active,.ui.inverted.yellow.buttons .basic.button:active{box-shadow:0 0 0 2px #fada00 inset!important;color:#ffe21f!important}.ui.primary.button,.ui.primary.buttons .button{background-color:#3b83c0;color:#fff;text-shadow:none;background-image:none}.ui.primary.button{box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.primary.button:hover,.ui.primary.buttons .button:hover{background-color:#458ac6;color:#fff;text-shadow:none}.ui.primary.button:active,.ui.primary.buttons .button:active{background-color:#3370a5;color:#fff;text-shadow:none}.ui.primary.active.button,.ui.primary.buttons .active.button{background-color:#3576ac;color:#fff;text-shadow:none}.ui.secondary.button,.ui.secondary.buttons .button{background-color:#1b1c1d;color:#fff;text-shadow:none;background-image:none}.ui.secondary.button{box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.secondary.button:hover,.ui.secondary.buttons .button:hover{background-color:#222425;color:#fff;text-shadow:none}.ui.secondary.button:active,.ui.secondary.buttons .button:active{background-color:#0a0a0b;color:#fff;text-shadow:none}.ui.secondary.active.button,.ui.secondary.buttons .active.button{background-color:#0f0f10;color:#fff;text-shadow:none}.ui.positive.button,.ui.positive.buttons .button{background-color:#5bbd72!important;color:#fff;text-shadow:none;background-image:none}.ui.positive.button{box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.positive.active.button,.ui.positive.button:hover,.ui.positive.buttons .active.button,.ui.positive.buttons .button:hover{background-color:#66c17b!important;color:#fff;text-shadow:none}.ui.positive.button:active,.ui.positive.buttons .button:active{background-color:#46ae5f!important;color:#fff;text-shadow:none}.ui.positive.active.button,.ui.positive.button .active.button:active,.ui.positive.buttons .active.button,.ui.positive.buttons .active.button:active{background-color:#49b562;color:#fff;text-shadow:none}.ui.negative.button,.ui.negative.buttons .button{background-color:#d95c5c!important;color:#fff;text-shadow:none;background-image:none}.ui.negative.button{box-shadow:0 0 0 0 rgba(39,41,43,.15)inset}.ui.negative.active.button,.ui.negative.button:hover,.ui.negative.buttons .active.button,.ui.negative.buttons .button:hover{background-color:#dc6868!important;color:#fff;text-shadow:none}.ui.negative.button:active,.ui.negative.buttons .button:active{background-color:#d23f3f!important;color:#fff;text-shadow:none}.ui.negative.active.button,.ui.negative.button .active.button:active,.ui.negative.buttons .active.button,.ui.negative.buttons .active.button:active{background-color:#d44747;color:#fff;text-shadow:none}.ui.buttons{display:inline-block;vertical-align:middle;margin:0 .25em 0 0}.ui.buttons>.active.button,.ui.buttons>.button:hover{position:relative}.ui.buttons:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui.buttons:not(.basic):not(.inverted){box-shadow:none}.ui.buttons:not(.basic):not(.inverted)>.button,.ui.buttons>.ui.button:not(.basic):not(.inverted){box-shadow:0 0 0 1px transparent inset,0 0 0 0 rgba(39,41,43,.15)inset}.ui.buttons .button{float:left;border-radius:0;margin:0}.ui.buttons .button:first-child{border-left:none;margin-left:0;border-top-left-radius:.2857rem;border-bottom-left-radius:.2857rem}.ui.buttons .button:last-child{border-top-right-radius:.2857rem;border-bottom-right-radius:.2857rem}.ui.vertical.buttons{display:inline-block}.ui.vertical.buttons .button{display:block;float:none;width:100%;margin:0;box-shadow:none}.ui.vertical.buttons .button:first-child,.ui.vertical.buttons .huge.button:first-child,.ui.vertical.buttons .massive.button:first-child,.ui.vertical.buttons .mini.button:first-child,.ui.vertical.buttons .small.button:first-child,.ui.vertical.buttons .tiny.button:first-child{border-radius:.2857rem .2857rem 0 0}.ui.vertical.buttons .button:last-child,.ui.vertical.buttons .gigantic.button:last-child,.ui.vertical.buttons .huge.button:last-child,.ui.vertical.buttons .massive.button:last-child,.ui.vertical.buttons .mini.button:last-child,.ui.vertical.buttons .small.button:last-child,.ui.vertical.buttons .tiny.button:last-child{margin-bottom:0;border-radius:0 0 .2857rem .2857rem}.ui.divider{margin:1rem 0;line-height:1;height:0;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:rgba(0,0,0,.85);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;font-size:1rem}.ui.divider:not(.vertical):not(.horizontal){border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.2)}.ui.grid>.ui.divider{font-size:1rem}.ui.horizontal.divider{position:relative;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center}.ui.horizontal.divider:after,.ui.horizontal.divider:before{position:absolute;content:'';z-index:3;width:50%;top:50%;height:0;border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.2)}.ui.horizontal.divider:before{margin-left:-webkit-calc(-50% - 1em);margin-left:calc(-50% - 1em)}.ui.horizontal.divider:after{margin-left:1em}.ui.vertical.divider{position:absolute;z-index:2;top:50%;left:50%;margin:0;padding:0;width:auto;height:50%;line-height:0;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.ui.vertical.divider:after,.ui.vertical.divider:before{position:absolute;left:50%;content:'';z-index:3;border-left:1px solid rgba(0,0,0,.1);border-right:1px solid rgba(255,255,255,.2);width:0;height:-webkit-calc(100% - 1rem);height:calc(100% - 1rem)}.ui.vertical.divider:before{top:-100%}.ui.vertical.divider:after{top:auto;bottom:0}@media only screen and (max-width:767px){.ui.grid .stackable.row .ui.vertical.divider,.ui.stackable.grid .ui.vertical.divider{position:relative;margin:1rem 0;left:50%;height:auto;overflow:hidden;line-height:1;text-align:center}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:before{position:absolute;left:auto;content:'';z-index:3;width:50%;top:50%;height:0;border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.2)}.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:before{margin-left:-51%}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:after{margin-left:1em}}.ui.divider>.icon{margin:0;font-size:1rem;height:1em;vertical-align:middle}.ui.hidden.divider{border-color:transparent!important}.ui.divider.inverted,.ui.horizontal.inverted.divider,.ui.vertical.inverted.divider{color:#fff}.ui.divider.inverted,.ui.divider.inverted:after,.ui.divider.inverted:before{border-top-color:rgba(0,0,0,.15)!important;border-bottom-color:rgba(255,255,255,.15)!important;border-left-color:rgba(0,0,0,.15)!important;border-right-color:rgba(255,255,255,.15)!important}.ui.fitted.divider{margin:0}.ui.clearing.divider{clear:both}.ui.section.divider{margin-top:2rem;margin-bottom:2rem}i.flag:not(.icon){display:inline-block;width:16px;height:11px;line-height:11px;vertical-align:baseline;margin:0 .5em 0 0;text-decoration:inherit;speak:none;font-smoothing:antialiased;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag:not(.icon):before{display:inline-block;content:'';background:url(themes/default/assets/images/flags.png)no-repeat;width:16px;height:11px}i.flag.ad:before,i.flag.andorra:before{background-position:0 0}i.flag.ae:before,i.flag.uae:before,i.flag.united.arab.emirates:before{background-position:0 -26px}i.flag.af:before,i.flag.afghanistan:before{background-position:0 -52px}i.flag.ag:before,i.flag.antigua:before{background-position:0 -78px}i.flag.ai:before,i.flag.anguilla:before{background-position:0 -104px}i.flag.al:before,i.flag.albania:before{background-position:0 -130px}i.flag.am:before,i.flag.armenia:before{background-position:0 -156px}i.flag.an:before,i.flag.netherlands.antilles:before{background-position:0 -182px}i.flag.angola:before,i.flag.ao:before{background-position:0 -208px}i.flag.ar:before,i.flag.argentina:before{background-position:0 -234px}i.flag.american.samoa:before,i.flag.as:before{background-position:0 -260px}i.flag.at:before,i.flag.austria:before{background-position:0 -286px}i.flag.au:before,i.flag.australia:before{background-position:0 -312px}i.flag.aruba:before,i.flag.aw:before{background-position:0 -338px}i.flag.aland.islands:before,i.flag.ax:before{background-position:0 -364px}i.flag.az:before,i.flag.azerbaijan:before{background-position:0 -390px}i.flag.ba:before,i.flag.bosnia:before{background-position:0 -416px}i.flag.barbados:before,i.flag.bb:before{background-position:0 -442px}i.flag.bangladesh:before,i.flag.bd:before{background-position:0 -468px}i.flag.be:before,i.flag.belgium:before{background-position:0 -494px}i.flag.bf:before,i.flag.burkina.faso:before{background-position:0 -520px}i.flag.bg:before,i.flag.bulgaria:before{background-position:0 -546px}i.flag.bahrain:before,i.flag.bh:before{background-position:0 -572px}i.flag.bi:before,i.flag.burundi:before{background-position:0 -598px}i.flag.benin:before,i.flag.bj:before{background-position:0 -624px}i.flag.bermuda:before,i.flag.bm:before{background-position:0 -650px}i.flag.bn:before,i.flag.brunei:before{background-position:0 -676px}i.flag.bo:before,i.flag.bolivia:before{background-position:0 -702px}i.flag.br:before,i.flag.brazil:before{background-position:0 -728px}i.flag.bahamas:before,i.flag.bs:before{background-position:0 -754px}i.flag.bhutan:before,i.flag.bt:before{background-position:0 -780px}i.flag.bouvet.island:before,i.flag.bv:before{background-position:0 -806px}i.flag.botswana:before,i.flag.bw:before{background-position:0 -832px}i.flag.belarus:before,i.flag.by:before{background-position:0 -858px}i.flag.belize:before,i.flag.bz:before{background-position:0 -884px}i.flag.ca:before,i.flag.canada:before{background-position:0 -910px}i.flag.cc:before,i.flag.cocos.islands:before{background-position:0 -962px}i.flag.cd:before,i.flag.congo:before{background-position:0 -988px}i.flag.central.african.republic:before,i.flag.cf:before{background-position:0 -1014px}i.flag.cg:before,i.flag.congo.brazzaville:before{background-position:0 -1040px}i.flag.ch:before,i.flag.switzerland:before{background-position:0 -1066px}i.flag.ci:before,i.flag.cote.divoire:before{background-position:0 -1092px}i.flag.ck:before,i.flag.cook.islands:before{background-position:0 -1118px}i.flag.chile:before,i.flag.cl:before{background-position:0 -1144px}i.flag.cameroon:before,i.flag.cm:before{background-position:0 -1170px}i.flag.china:before,i.flag.cn:before{background-position:0 -1196px}i.flag.co:before,i.flag.colombia:before{background-position:0 -1222px}i.flag.costa.rica:before,i.flag.cr:before{background-position:0 -1248px}i.flag.cs:before,i.flag.serbia:before{background-position:0 -1274px}i.flag.cu:before,i.flag.cuba:before{background-position:0 -1300px}i.flag.cape.verde:before,i.flag.cv:before{background-position:0 -1326px}i.flag.christmas.island:before,i.flag.cx:before{background-position:0 -1352px}i.flag.cy:before,i.flag.cyprus:before{background-position:0 -1378px}i.flag.cz:before,i.flag.czech.republic:before{background-position:0 -1404px}i.flag.de:before,i.flag.germany:before{background-position:0 -1430px}i.flag.dj:before,i.flag.djibouti:before{background-position:0 -1456px}i.flag.denmark:before,i.flag.dk:before{background-position:0 -1482px}i.flag.dm:before,i.flag.dominica:before{background-position:0 -1508px}i.flag.do:before,i.flag.dominican.republic:before{background-position:0 -1534px}i.flag.algeria:before,i.flag.dz:before{background-position:0 -1560px}i.flag.ec:before,i.flag.ecuador:before{background-position:0 -1586px}i.flag.ee:before,i.flag.estonia:before{background-position:0 -1612px}i.flag.eg:before,i.flag.egypt:before{background-position:0 -1638px}i.flag.eh:before,i.flag.western.sahara:before{background-position:0 -1664px}i.flag.er:before,i.flag.eritrea:before{background-position:0 -1716px}i.flag.es:before,i.flag.spain:before{background-position:0 -1742px}i.flag.et:before,i.flag.ethiopia:before{background-position:0 -1768px}i.flag.eu:before,i.flag.european.union:before{background-position:0 -1794px}i.flag.fi:before,i.flag.finland:before{background-position:0 -1846px}i.flag.fiji:before,i.flag.fj:before{background-position:0 -1872px}i.flag.falkland.islands:before,i.flag.fk:before{background-position:0 -1898px}i.flag.fm:before,i.flag.micronesia:before{background-position:0 -1924px}i.flag.faroe.islands:before,i.flag.fo:before{background-position:0 -1950px}i.flag.fr:before,i.flag.france:before{background-position:0 -1976px}i.flag.ga:before,i.flag.gabon:before{background-position:-36px 0}i.flag.gb:before,i.flag.united.kingdom:before{background-position:-36px -26px}i.flag.gd:before,i.flag.grenada:before{background-position:-36px -52px}i.flag.ge:before,i.flag.georgia:before{background-position:-36px -78px}i.flag.french.guiana:before,i.flag.gf:before{background-position:-36px -104px}i.flag.gh:before,i.flag.ghana:before{background-position:-36px -130px}i.flag.gi:before,i.flag.gibraltar:before{background-position:-36px -156px}i.flag.gl:before,i.flag.greenland:before{background-position:-36px -182px}i.flag.gambia:before,i.flag.gm:before{background-position:-36px -208px}i.flag.gn:before,i.flag.guinea:before{background-position:-36px -234px}i.flag.gp:before,i.flag.guadeloupe:before{background-position:-36px -260px}i.flag.equatorial.guinea:before,i.flag.gq:before{background-position:-36px -286px}i.flag.gr:before,i.flag.greece:before{background-position:-36px -312px}i.flag.gs:before,i.flag.sandwich.islands:before{background-position:-36px -338px}i.flag.gt:before,i.flag.guatemala:before{background-position:-36px -364px}i.flag.gu:before,i.flag.guam:before{background-position:-36px -390px}i.flag.guinea-bissau:before,i.flag.gw:before{background-position:-36px -416px}i.flag.guyana:before,i.flag.gy:before{background-position:-36px -442px}i.flag.hk:before,i.flag.hong.kong:before{background-position:-36px -468px}i.flag.heard.island:before,i.flag.hm:before{background-position:-36px -494px}i.flag.hn:before,i.flag.honduras:before{background-position:-36px -520px}i.flag.croatia:before,i.flag.hr:before{background-position:-36px -546px}i.flag.haiti:before,i.flag.ht:before{background-position:-36px -572px}i.flag.hu:before,i.flag.hungary:before{background-position:-36px -598px}i.flag.id:before,i.flag.indonesia:before{background-position:-36px -624px}i.flag.ie:before,i.flag.ireland:before{background-position:-36px -650px}i.flag.il:before,i.flag.israel:before{background-position:-36px -676px}i.flag.in:before,i.flag.india:before{background-position:-36px -702px}i.flag.indian.ocean.territory:before,i.flag.io:before{background-position:-36px -728px}i.flag.iq:before,i.flag.iraq:before{background-position:-36px -754px}i.flag.ir:before,i.flag.iran:before{background-position:-36px -780px}i.flag.iceland:before,i.flag.is:before{background-position:-36px -806px}i.flag.it:before,i.flag.italy:before{background-position:-36px -832px}i.flag.jamaica:before,i.flag.jm:before{background-position:-36px -858px}i.flag.jo:before,i.flag.jordan:before{background-position:-36px -884px}i.flag.japan:before,i.flag.jp:before{background-position:-36px -910px}i.flag.ke:before,i.flag.kenya:before{background-position:-36px -936px}i.flag.kg:before,i.flag.kyrgyzstan:before{background-position:-36px -962px}i.flag.cambodia:before,i.flag.kh:before{background-position:-36px -988px}i.flag.ki:before,i.flag.kiribati:before{background-position:-36px -1014px}i.flag.comoros:before,i.flag.km:before{background-position:-36px -1040px}i.flag.kn:before,i.flag.saint.kitts.and.nevis:before{background-position:-36px -1066px}i.flag.kp:before,i.flag.north.korea:before{background-position:-36px -1092px}i.flag.kr:before,i.flag.south.korea:before{background-position:-36px -1118px}i.flag.kuwait:before,i.flag.kw:before{background-position:-36px -1144px}i.flag.cayman.islands:before,i.flag.ky:before{background-position:-36px -1170px}i.flag.kazakhstan:before,i.flag.kz:before{background-position:-36px -1196px}i.flag.la:before,i.flag.laos:before{background-position:-36px -1222px}i.flag.lb:before,i.flag.lebanon:before{background-position:-36px -1248px}i.flag.lc:before,i.flag.saint.lucia:before{background-position:-36px -1274px}i.flag.li:before,i.flag.liechtenstein:before{background-position:-36px -1300px}i.flag.lk:before,i.flag.sri.lanka:before{background-position:-36px -1326px}i.flag.liberia:before,i.flag.lr:before{background-position:-36px -1352px}i.flag.lesotho:before,i.flag.ls:before{background-position:-36px -1378px}i.flag.lithuania:before,i.flag.lt:before{background-position:-36px -1404px}i.flag.lu:before,i.flag.luxembourg:before{background-position:-36px -1430px}i.flag.latvia:before,i.flag.lv:before{background-position:-36px -1456px}i.flag.libya:before,i.flag.ly:before{background-position:-36px -1482px}i.flag.ma:before,i.flag.morocco:before{background-position:-36px -1508px}i.flag.mc:before,i.flag.monaco:before{background-position:-36px -1534px}i.flag.md:before,i.flag.moldova:before{background-position:-36px -1560px}i.flag.me:before,i.flag.montenegro:before{background-position:-36px -1586px}i.flag.madagascar:before,i.flag.mg:before{background-position:-36px -1613px}i.flag.marshall.islands:before,i.flag.mh:before{background-position:-36px -1639px}i.flag.macedonia:before,i.flag.mk:before{background-position:-36px -1665px}i.flag.mali:before,i.flag.ml:before{background-position:-36px -1691px}i.flag.burma:before,i.flag.mm:before,i.flag.myanmar:before{background-position:-36px -1717px}i.flag.mn:before,i.flag.mongolia:before{background-position:-36px -1743px}i.flag.macau:before,i.flag.mo:before{background-position:-36px -1769px}i.flag.mp:before,i.flag.northern.mariana.islands:before{background-position:-36px -1795px}i.flag.martinique:before,i.flag.mq:before{background-position:-36px -1821px}i.flag.mauritania:before,i.flag.mr:before{background-position:-36px -1847px}i.flag.montserrat:before,i.flag.ms:before{background-position:-36px -1873px}i.flag.malta:before,i.flag.mt:before{background-position:-36px -1899px}i.flag.mauritius:before,i.flag.mu:before{background-position:-36px -1925px}i.flag.maldives:before,i.flag.mv:before{background-position:-36px -1951px}i.flag.malawi:before,i.flag.mw:before{background-position:-36px -1977px}i.flag.mexico:before,i.flag.mx:before{background-position:-72px 0}i.flag.malaysia:before,i.flag.my:before{background-position:-72px -26px}i.flag.mozambique:before,i.flag.mz:before{background-position:-72px -52px}i.flag.na:before,i.flag.namibia:before{background-position:-72px -78px}i.flag.nc:before,i.flag.new.caledonia:before{background-position:-72px -104px}i.flag.ne:before,i.flag.niger:before{background-position:-72px -130px}i.flag.nf:before,i.flag.norfolk.island:before{background-position:-72px -156px}i.flag.ng:before,i.flag.nigeria:before{background-position:-72px -182px}i.flag.ni:before,i.flag.nicaragua:before{background-position:-72px -208px}i.flag.netherlands:before,i.flag.nl:before{background-position:-72px -234px}i.flag.no:before,i.flag.norway:before{background-position:-72px -260px}i.flag.nepal:before,i.flag.np:before{background-position:-72px -286px}i.flag.nauru:before,i.flag.nr:before{background-position:-72px -312px}i.flag.niue:before,i.flag.nu:before{background-position:-72px -338px}i.flag.new.zealand:before,i.flag.nz:before{background-position:-72px -364px}i.flag.om:before,i.flag.oman:before{background-position:-72px -390px}i.flag.pa:before,i.flag.panama:before{background-position:-72px -416px}i.flag.pe:before,i.flag.peru:before{background-position:-72px -442px}i.flag.french.polynesia:before,i.flag.pf:before{background-position:-72px -468px}i.flag.new.guinea:before,i.flag.pg:before{background-position:-72px -494px}i.flag.ph:before,i.flag.philippines:before{background-position:-72px -520px}i.flag.pakistan:before,i.flag.pk:before{background-position:-72px -546px}i.flag.pl:before,i.flag.poland:before{background-position:-72px -572px}i.flag.pm:before,i.flag.saint.pierre:before{background-position:-72px -598px}i.flag.pitcairn.islands:before,i.flag.pn:before{background-position:-72px -624px}i.flag.pr:before,i.flag.puerto.rico:before{background-position:-72px -650px}i.flag.palestine:before,i.flag.ps:before{background-position:-72px -676px}i.flag.portugal:before,i.flag.pt:before{background-position:-72px -702px}i.flag.palau:before,i.flag.pw:before{background-position:-72px -728px}i.flag.paraguay:before,i.flag.py:before{background-position:-72px -754px}i.flag.qa:before,i.flag.qatar:before{background-position:-72px -780px}i.flag.re:before,i.flag.reunion:before{background-position:-72px -806px}i.flag.ro:before,i.flag.romania:before{background-position:-72px -832px}i.flag.rs:before,i.flag.serbia:before{background-position:-72px -858px}i.flag.ru:before,i.flag.russia:before{background-position:-72px -884px}i.flag.rw:before,i.flag.rwanda:before{background-position:-72px -910px}i.flag.sa:before,i.flag.saudi.arabia:before{background-position:-72px -936px}i.flag.sb:before,i.flag.solomon.islands:before{background-position:-72px -962px}i.flag.sc:before,i.flag.seychelles:before{background-position:-72px -988px}i.flag.sd:before,i.flag.sudan:before{background-position:-72px -1040px}i.flag.se:before,i.flag.sweden:before{background-position:-72px -1066px}i.flag.sg:before,i.flag.singapore:before{background-position:-72px -1092px}i.flag.saint.helena:before,i.flag.sh:before{background-position:-72px -1118px}i.flag.si:before,i.flag.slovenia:before{background-position:-72px -1144px}i.flag.jan.mayen:before,i.flag.sj:before,i.flag.svalbard:before{background-position:-72px -1170px}i.flag.sk:before,i.flag.slovakia:before{background-position:-72px -1196px}i.flag.sierra.leone:before,i.flag.sl:before{background-position:-72px -1222px}i.flag.san.marino:before,i.flag.sm:before{background-position:-72px -1248px}i.flag.senegal:before,i.flag.sn:before{background-position:-72px -1274px}i.flag.so:before,i.flag.somalia:before{background-position:-72px -1300px}i.flag.sr:before,i.flag.suriname:before{background-position:-72px -1326px}i.flag.sao.tome:before,i.flag.st:before{background-position:-72px -1352px}i.flag.el.salvador:before,i.flag.sv:before{background-position:-72px -1378px}i.flag.sy:before,i.flag.syria:before{background-position:-72px -1404px}i.flag.swaziland:before,i.flag.sz:before{background-position:-72px -1430px}i.flag.caicos.islands:before,i.flag.tc:before{background-position:-72px -1456px}i.flag.chad:before,i.flag.td:before{background-position:-72px -1482px}i.flag.french.territories:before,i.flag.tf:before{background-position:-72px -1508px}i.flag.tg:before,i.flag.togo:before{background-position:-72px -1534px}i.flag.th:before,i.flag.thailand:before{background-position:-72px -1560px}i.flag.tajikistan:before,i.flag.tj:before{background-position:-72px -1586px}i.flag.tk:before,i.flag.tokelau:before{background-position:-72px -1612px}i.flag.timorleste:before,i.flag.tl:before{background-position:-72px -1638px}i.flag.tm:before,i.flag.turkmenistan:before{background-position:-72px -1664px}i.flag.tn:before,i.flag.tunisia:before{background-position:-72px -1690px}i.flag.to:before,i.flag.tonga:before{background-position:-72px -1716px}i.flag.tr:before,i.flag.turkey:before{background-position:-72px -1742px}i.flag.trinidad:before,i.flag.tt:before{background-position:-72px -1768px}i.flag.tuvalu:before,i.flag.tv:before{background-position:-72px -1794px}i.flag.taiwan:before,i.flag.tw:before{background-position:-72px -1820px}i.flag.tanzania:before,i.flag.tz:before{background-position:-72px -1846px}i.flag.ua:before,i.flag.ukraine:before{background-position:-72px -1872px}i.flag.ug:before,i.flag.uganda:before{background-position:-72px -1898px}i.flag.um:before,i.flag.us.minor.islands:before{background-position:-72px -1924px}i.flag.america:before,i.flag.united.states:before,i.flag.us:before{background-position:-72px -1950px}i.flag.uruguay:before,i.flag.uy:before{background-position:-72px -1976px}i.flag.uz:before,i.flag.uzbekistan:before{background-position:-108px 0}i.flag.va:before,i.flag.vatican.city:before{background-position:-108px -26px}i.flag.saint.vincent:before,i.flag.vc:before{background-position:-108px -52px}i.flag.ve:before,i.flag.venezuela:before{background-position:-108px -78px}i.flag.british.virgin.islands:before,i.flag.vg:before{background-position:-108px -104px}i.flag.us.virgin.islands:before,i.flag.vi:before{background-position:-108px -130px}i.flag.vietnam:before,i.flag.vn:before{background-position:-108px -156px}i.flag.vanuatu:before,i.flag.vu:before{background-position:-108px -182px}i.flag.wallis.and.futuna:before,i.flag.wf:before{background-position:-108px -234px}i.flag.samoa:before,i.flag.ws:before{background-position:-108px -260px}i.flag.ye:before,i.flag.yemen:before{background-position:-108px -286px}i.flag.mayotte:before,i.flag.yt:before{background-position:-108px -312px}i.flag.south.africa:before,i.flag.za:before{background-position:-108px -338px}i.flag.zambia:before,i.flag.zm:before{background-position:-108px -364px}i.flag.zimbabwe:before,i.flag.zw:before{background-position:-108px -390px}.ui.header{border:none;margin:-webkit-calc(2rem - .165em)0 1rem;margin:calc(2rem - .165em) 0 1rem;padding:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;line-height:1.33em;text-transform:none;color:rgba(0,0,0,.8)}.ui.header:first-child{margin-top:-.165em}.ui.header:last-child{margin-bottom:0}.ui.header .sub.header{font-weight:400;margin:0;padding:0;line-height:1.2em;color:rgba(0,0,0,.5)}.ui.header>.icon{display:table-cell;opacity:1;font-size:1.5em;padding-top:.165em;vertical-align:middle}.ui.header .icon:only-child{display:inline-block;padding:0;margin-right:.75rem}.ui.header>.image,.ui.header>img{display:inline-block;margin-top:.165em;width:2.5em;height:auto;vertical-align:middle}.ui.header>.image:only-child,.ui.header>img:only-child{margin-right:.75rem}.ui.header .content{display:inline-block;vertical-align:top}.ui.header>.image+.content,.ui.header>img+.content{padding-left:.75rem;vertical-align:middle}.ui.header>.icon+.content{padding-left:.75rem;display:table-cell;vertical-align:middle}.ui.header .ui.label{font-size:'';margin:0 0 0 .5rem;vertical-align:middle}.ui.header+p{margin-top:0}h1.ui.header{font-size:2rem}h2.ui.header{font-size:1.714rem}h3.ui.header{font-size:1.28rem}h4.ui.header{font-size:1.071rem}h5.ui.header{font-size:1rem}h1.ui.header .sub.header{font-size:1.4285rem}h2.ui.header .sub.header,h3.ui.header .sub.header{font-size:1.1428rem}h4.ui.header .sub.header{font-size:1rem}h5.ui.header .sub.header{font-size:.9285rem}.ui.huge.header{min-height:1em;font-size:2em}.ui.large.header{font-size:1.714em}.ui.medium.header{font-size:1.28em}.ui.small.header{font-size:1.071em}.ui.tiny.header{font-size:1em}.ui.huge.header .sub.header,.ui.large.header .sub.header{font-size:1.4285rem}.ui.header .sub.header{font-size:1.1428rem}.ui.small.header .sub.header{font-size:1rem}.ui.tiny.header .sub.header{font-size:.9285rem}.ui.icon.header{display:inline-block;text-align:center;margin:2rem 0 1rem}.ui.icon.header:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.icon.header:first-child{margin-top:0}.ui.icon.header .icon{float:none;display:block;width:auto;height:auto;padding:0;font-size:3em;margin:0 auto .25rem;opacity:1}.ui.icon.header .content{display:block}.ui.icon.header .circular.icon,.ui.icon.header .square.icon{font-size:2em}.ui.block.icon.header .icon{margin-bottom:0}.ui.icon.header.aligned{margin-left:auto;margin-right:auto;display:block}.ui.disabled.header{opacity:.3}.ui.black.header,a.ui.black.header:hover{color:#1b1c1d!important}.ui.blue.header{color:#3b83c0!important}a.ui.blue.header:hover{color:#458ac6!important}.ui.green.header{color:#5bbd72!important}a.ui.green.header:hover{color:#66c17b!important}.ui.orange.header{color:#e07b53!important}a.ui.orange.header:hover{color:#e28560!important}.ui.pink.header{color:#d9499a!important}a.ui.pink.header:hover{color:#dc56a1!important}.ui.purple.header{color:#564f8a!important}a.ui.purple.header:hover{color:#5c5594!important}.ui.red.header{color:#d95c5c!important}a.ui.red.header:hover{color:#dc6868!important}.ui.teal.header{color:#00b5ad!important}a.ui.teal.header:hover{color:#00c4bc!important}.ui.yellow.header{color:#f2c61f!important}a.ui.yellow.header:hover{color:#f3ca2d!important}.ui.black.dividing.header{border-bottom:2px solid #1b1c1d}.ui.blue.dividing.header{border-bottom:2px solid #3b83c0}.ui.green.dividing.header{border-bottom:2px solid #5bbd72}.ui.orange.dividing.header{border-bottom:2px solid #e07b53}.ui.pink.dividing.header{border-bottom:2px solid #d9499a}.ui.purple.dividing.header{border-bottom:2px solid #564f8a}.ui.red.dividing.header{border-bottom:2px solid #d95c5c}.ui.teal.dividing.header{border-bottom:2px solid #00b5ad}.ui.yellow.dividing.header{border-bottom:2px solid #f2c61f}.ui.inverted.header{color:#fff}.ui.inverted.header .sub.header{color:rgba(255,255,255,.85)}.ui.inverted.attached.header,.ui.inverted.block.header{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05))#333;background:linear-gradient(transparent,rgba(0,0,0,.05))#333;box-shadow:none}.ui.inverted.black.header{color:#aaa!important}a.ui.inverted.black.header:hover{color:#b2b2b2!important}.ui.inverted.blue.header{color:#54c8ff!important}a.ui.inverted.blue.header:hover{color:#63cdff!important}.ui.inverted.green.header{color:#2ecc40!important}a.ui.inverted.green.header:hover{color:#37d249!important}.ui.inverted.orange.header{color:#ff851b!important}a.ui.inverted.orange.header:hover{color:#ff8d2a!important}.ui.inverted.pink.header{color:#ff8edf!important}a.ui.inverted.pink.header:hover{color:#ff9de3!important}.ui.inverted.purple.header{color:#cdc6ff!important}a.ui.inverted.purple.header:hover{color:#dad5ff!important}.ui.inverted.red.header{color:#ff695e!important}a.ui.inverted.red.header:hover{color:#ff776d!important}.ui.inverted.teal.header{color:#6dffff!important}a.ui.inverted.teal.header:hover{color:#7cffff!important}.ui.inverted.yellow.header{color:#ffe21f!important}a.ui.inverted.yellow.header:hover{color:#ffe42e!important}.ui.inverted.block.header{border-bottom:none}.ui.left.aligned.header{text-align:left}.ui.right.aligned.header{text-align:right}.ui.center.aligned.header,.ui.centered.header{text-align:center}.ui.justified.header{text-align:justify}.ui.justified.header:after{display:inline-block;content:'';width:100%}.ui.floated.header,.ui[class*="left floated"].header{float:left;margin-top:0;margin-right:.5em}.ui[class*="right floated"].header{float:right;margin-top:0;margin-left:.5em}.ui.fitted.header{padding:0}.ui.dividing.header{padding-bottom:.25rem;border-bottom:1px solid rgba(0,0,0,.1)}.ui.dividing.header .sub.header{padding-bottom:.25rem}.ui.dividing.header .icon{margin-bottom:0}.ui.inverted.dividing.header{border-bottom-color:rgba(255,255,255,.2)}.ui.block.header{background:#f0f0f0;padding:.75rem 1rem;box-shadow:none;border:1px solid #d4d4d5;border-radius:.3125rem}.ui.tiny.block.header{font-size:1em}.ui.small.block.header{font-size:1.071em}.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1.28em}.ui.large.block.header{font-size:1.714em}.ui.huge.block.header{font-size:2em}.ui.attached.header{background:#fff;padding:.75rem 1rem;margin-left:-1px;margin-right:-1px;box-shadow:none;border:1px solid #d4d4d5}.ui.attached.block.header{background:#f0f0f0}.ui.attached:not(.top):not(.bottom).header{margin-top:0;margin-bottom:0;border-top:none;border-bottom:none;border-radius:0}.ui.top.attached.header{margin-bottom:0;border-bottom:none;border-radius:.3125rem .3125rem 0 0}.ui.bottom.attached.header{margin-top:0;border-top:none;border-radius:0 0 .3125rem .3125rem}.ui.tiny.attached.header{font-size:.8571em}.ui.small.attached.header{font-size:.9285em}.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1em}.ui.large.attached.header{font-size:1.0714em}.ui.huge.attached.header{font-size:1.1428em}.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1.28em}@font-face{font-family:Icons;src:url(themes/default/assets/fonts/icons.eot);src:url(themes/default/assets/fonts/icons.eot?#iefix)format('embedded-opentype'),url(themes/default/assets/fonts/icons.woff2)format('woff'),url(themes/default/assets/fonts/icons.woff)format('woff'),url(themes/default/assets/fonts/icons.ttf)format('truetype'),url(themes/default/assets/fonts/icons.svg#icons)format('svg');font-style:normal;font-weight:400;font-variant:normal;text-decoration:inherit;text-transform:none}i.icon{display:inline-block;opacity:1;margin:0 .25rem 0 0;width:1.23em;height:.9em;font-family:Icons;font-style:normal;line-height:1;font-weight:400;text-decoration:inherit;text-align:center;speak:none;font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.icon:before{background:0 0!important}i.icon.loading{height:1em;-webkit-animation:icon-loading 2s linear infinite;animation:icon-loading 2s linear infinite}@-webkit-keyframes icon-loading{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes icon-loading{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}i.emphasized.icon,i.icon.active,i.icon.hover{opacity:1}i.disabled.icon{pointer-events:none;opacity:.3!important}i.link.icon{cursor:pointer;opacity:.8;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}i.link.icon:hover{opacity:1!important}i.circular.icon{border-radius:500em!important;padding:.5em!important;box-shadow:0 0 0 .1em rgba(0,0,0,.1)inset;line-height:1!important;width:2em!important;height:2em!important}i.circular.inverted.icon{border:none;box-shadow:none}i.flipped.icon,i.horizontally.flipped.icon{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}i.vertically.flipped.icon{-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}i.clockwise.rotated.icon,i.right.rotated.icon,i.rotated.icon{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}i.counterclockwise.rotated.icon,i.left.rotated.icon{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}i.bordered.icon{width:2em;height:2em;padding:.55em .385em!important;box-shadow:0 0 0 .1em rgba(0,0,0,.1)inset;vertical-align:baseline}i.bordered.inverted.icon{border:none;box-shadow:none}i.white.icon{color:#fff!important}i.black.icon{color:#1b1c1d!important}i.blue.icon{color:#3b83c0!important}i.green.icon{color:#5bbd72!important}i.orange.icon{color:#e07b53!important}i.pink.icon{color:#d9499a!important}i.purple.icon{color:#564f8a!important}i.red.icon{color:#d95c5c!important}i.teal.icon{color:#00b5ad!important}i.yellow.icon{color:#f2c61f!important}i.inverted.icon{color:#fff}i.inverted.black.icon{color:#333!important}i.inverted.blue.icon{color:#54c8ff!important}i.inverted.green.icon{color:#2ecc40!important}i.inverted.orange.icon{color:#ff851b!important}i.inverted.pink.icon{color:#ff8edf!important}i.inverted.purple.icon{color:#cdc6ff!important}i.inverted.red.icon{color:#ff695e!important}i.inverted.teal.icon{color:#6dffff!important}i.inverted.yellow.icon{color:#ffe21f!important}i.inverted.bordered.icon,i.inverted.circular.icon{background-color:#222!important;color:#FFF!important}i.inverted.bordered.black.icon,i.inverted.circular.black.icon{background-color:#1b1c1d!important;color:#FFF!important}i.inverted.bordered.blue.icon,i.inverted.circular.blue.icon{background-color:#3b83c0!important;color:#FFF!important}i.inverted.bordered.green.icon,i.inverted.circular.green.icon{background-color:#5bbd72!important;color:#FFF!important}i.inverted.bordered.orange.icon,i.inverted.circular.orange.icon{background-color:#e07b53!important;color:#FFF!important}i.inverted.bordered.pink.icon,i.inverted.circular.pink.icon{background-color:#d9499a!important;color:#FFF!important}i.inverted.bordered.purple.icon,i.inverted.circular.purple.icon{background-color:#564f8a!important;color:#FFF!important}i.inverted.bordered.red.icon,i.inverted.circular.red.icon{background-color:#d95c5c!important;color:#FFF!important}i.inverted.bordered.teal.icon,i.inverted.circular.teal.icon{background-color:#00b5ad!important;color:#FFF!important}i.inverted.bordered.yellow.icon,i.inverted.circular.yellow.icon{background-color:#f2c61f!important;color:#FFF!important}i.small.icon{font-size:.875em}i.icon{font-size:1em}i.large.icon{font-size:1.5em;vertical-align:middle}i.big.icon{font-size:2em;vertical-align:middle}i.huge.icon{font-size:4em;vertical-align:middle}i.massive.icon{font-size:8em;vertical-align:middle}i.icon.search:before{content:"\f002"}i.icon.mail.outline:before{content:"\f003"}i.icon.external:before{content:"\f08e"}i.icon.signal:before{content:"\f012"}i.icon.setting:before{content:"\f013"}i.icon.home:before{content:"\f015"}i.icon.inbox:before{content:"\f01c"}i.icon.browser:before{content:"\f022"}i.icon.tag:before{content:"\f02b"}i.icon.tags:before{content:"\f02c"}i.icon.calendar:before{content:"\f073"}i.icon.comment:before{content:"\f075"}i.icon.comments:before{content:"\f086"}i.icon.shop:before{content:"\f07a"}i.icon.settings:before{content:"\f085"}i.icon.trophy:before{content:"\f091"}i.icon.payment:before{content:"\f09d"}i.icon.feed:before{content:"\f09e"}i.icon.alarm.outline:before{content:"\f0a2"}i.icon.tasks:before{content:"\f0ae"}i.icon.cloud:before{content:"\f0c2"}i.icon.lab:before{content:"\f0c3"}i.icon.mail:before{content:"\f0e0"}i.icon.idea:before{content:"\f0eb"}i.icon.dashboard:before{content:"\f0e4"}i.icon.sitemap:before{content:"\f0e8"}i.icon.alarm:before{content:"\f0f3"}i.icon.terminal:before{content:"\f120"}i.icon.code:before{content:"\f121"}i.icon.protect:before{content:"\f132"}i.icon.calendar.outline:before{content:"\f133"}i.icon.ticket:before{content:"\f145"}i.icon.external.square:before{content:"\f14c"}i.icon.map:before{content:"\f14e"}i.icon.bug:before{content:"\f188"}i.icon.mail.square:before{content:"\f199"}i.icon.history:before{content:"\f1da"}i.icon.options:before{content:"\f1de"}i.icon.comment.outline:before{content:"\f0e5"}i.icon.comments.outline:before{content:"\f0e6"}i.icon.text.telephone:before{content:"\f1e4"}i.icon.find:before{content:"\f1e5"}i.icon.wifi:before{content:"\f1eb"}i.icon.alarm.slash:before{content:"\f1f6"}i.icon.alarm.slash.outline:before{content:"\f1f7"}i.icon.copyright:before{content:"\f1f9"}i.icon.at:before{content:"\f1fa"}i.icon.eyedropper:before{content:"\f1fb"}i.icon.paint.brush:before{content:"\f1fc"}i.icon.heartbeat:before{content:"\f21e"}i.icon.download:before{content:"\f019"}i.icon.repeat:before{content:"\f01e"}i.icon.refresh:before{content:"\f021"}i.icon.lock:before{content:"\f023"}i.icon.bookmark:before{content:"\f02e"}i.icon.print:before{content:"\f02f"}i.icon.write:before{content:"\f040"}i.icon.theme:before{content:"\f043"}i.icon.adjust:before{content:"\f042"}i.icon.edit:before{content:"\f044"}i.icon.external.share:before{content:"\f045"}i.icon.ban:before{content:"\f05e"}i.icon.mail.forward:before,i.icon.share:before{content:"\f064"}i.icon.expand:before{content:"\f065"}i.icon.compress:before{content:"\f066"}i.icon.unhide:before{content:"\f06e"}i.icon.hide:before{content:"\f070"}i.icon.random:before{content:"\f074"}i.icon.retweet:before{content:"\f079"}i.icon.sign.out:before{content:"\f08b"}i.icon.pin:before{content:"\f08d"}i.icon.sign.in:before{content:"\f090"}i.icon.upload:before{content:"\f093"}i.icon.call:before{content:"\f095"}i.icon.call.square:before{content:"\f098"}i.icon.remove.bookmark:before{content:"\f097"}i.icon.unlock:before{content:"\f09c"}i.icon.configure:before{content:"\f0ad"}i.icon.filter:before{content:"\f0b0"}i.icon.wizard:before{content:"\f0d0"}i.icon.undo:before{content:"\f0e2"}i.icon.exchange:before{content:"\f0ec"}i.icon.cloud.download:before{content:"\f0ed"}i.icon.cloud.upload:before{content:"\f0ee"}i.icon.reply:before{content:"\f112"}i.icon.reply.all:before{content:"\f122"}i.icon.erase:before{content:"\f12d"}i.icon.unlock.alternate:before{content:"\f13e"}i.icon.archive:before{content:"\f187"}i.icon.translate:before{content:"\f1ab"}i.icon.recycle:before{content:"\f1b8"}i.icon.send:before{content:"\f1d8"}i.icon.send.outline:before{content:"\f1d9"}i.icon.share.alternate:before{content:"\f1e0"}i.icon.share.alternate.square:before{content:"\f1e1"}i.icon.wait:before{content:"\f017"}i.icon.write.square:before{content:"\f14b"}i.icon.share.square:before{content:"\f14d"}i.icon.add.to.cart:before{content:"\f217"}i.icon.in.cart:before{content:"\f218"}i.icon.add.user:before{content:"\f234"}i.icon.remove.user:before{content:"\f235"}i.icon.help.circle:before{content:"\f059"}i.icon.info.circle:before{content:"\f05a"}i.icon.warning:before{content:"\f12a"}i.icon.warning.circle:before{content:"\f06a"}i.icon.warning.sign:before{content:"\f071"}i.icon.help:before{content:"\f128"}i.icon.info:before{content:"\f129"}i.icon.announcement:before{content:"\f0a1"}i.icon.birthday:before{content:"\f1fd"}i.icon.users:before{content:"\f0c0"}i.icon.doctor:before{content:"\f0f0"}i.icon.child:before{content:"\f1ae"}i.icon.user:before{content:"\f007"}i.icon.handicap:before{content:"\f193"}i.icon.student:before{content:"\f19d"}i.icon.spy:before{content:"\f21b"}i.icon.female:before{content:"\f182"}i.icon.male:before{content:"\f183"}i.icon.woman:before{content:"\f221"}i.icon.man:before{content:"\f222"}i.icon.non.binary.transgender:before{content:"\f223"}i.icon.intergender:before{content:"\f224"}i.icon.transgender:before{content:"\f225"}i.icon.lesbian:before{content:"\f226"}i.icon.gay:before{content:"\f227"}i.icon.heterosexual:before{content:"\f228"}i.icon.other.gender:before{content:"\f229"}i.icon.other.gender.vertical:before{content:"\f22a"}i.icon.other.gender.horizontal:before{content:"\f22b"}i.icon.grid.layout:before{content:"\f00a"}i.icon.list.layout:before{content:"\f00b"}i.icon.block.layout:before{content:"\f009"}i.icon.zoom:before{content:"\f00e"}i.icon.zoom.out:before{content:"\f010"}i.icon.resize.vertical:before{content:"\f07d"}i.icon.resize.horizontal:before{content:"\f07e"}i.icon.maximize:before{content:"\f0b2"}i.icon.crop:before{content:"\f125"}i.icon.cocktail:before{content:"\f000"}i.icon.road:before{content:"\f018"}i.icon.flag:before{content:"\f024"}i.icon.book:before{content:"\f02d"}i.icon.gift:before{content:"\f06b"}i.icon.leaf:before{content:"\f06c"}i.icon.fire:before{content:"\f06d"}i.icon.plane:before{content:"\f072"}i.icon.magnet:before{content:"\f076"}i.icon.legal:before{content:"\f0e3"}i.icon.lemon:before{content:"\f094"}i.icon.world:before{content:"\f0ac"}i.icon.travel:before{content:"\f0b1"}i.icon.shipping:before{content:"\f0d1"}i.icon.money:before{content:"\f0d6"}i.icon.rain:before{content:"\f0e9"}i.icon.treatment:before{content:"\f0f1"}i.icon.bar:before{content:"\f0fc"}i.icon.flag.outline:before{content:"\f11d"}i.icon.flag.checkered:before{content:"\f11e"}i.icon.puzzle:before{content:"\f12e"}i.icon.fire.extinguisher:before{content:"\f134"}i.icon.rocket:before{content:"\f135"}i.icon.anchor:before{content:"\f13d"}i.icon.bullseye:before{content:"\f140"}i.icon.sun:before{content:"\f185"}i.icon.moon:before{content:"\f186"}i.icon.fax:before{content:"\f1ac"}i.icon.life.ring:before{content:"\f1cd"}i.icon.bomb:before{content:"\f1e2"}i.icon.soccer:before{content:"\f1e3"}i.icon.calculator:before{content:"\f1ec"}i.icon.diamond:before{content:"\f219"}i.icon.crosshairs:before{content:"\f05b"}i.icon.asterisk:before{content:"\f069"}i.icon.certificate:before{content:"\f0a3"}i.icon.circle:before{content:"\f111"}i.icon.quote.left:before{content:"\f10d"}i.icon.quote.right:before{content:"\f10e"}i.icon.ellipsis.horizontal:before{content:"\f141"}i.icon.ellipsis.vertical:before{content:"\f142"}i.icon.cube:before{content:"\f1b2"}i.icon.cubes:before{content:"\f1b3"}i.icon.circle.notched:before{content:"\f1ce"}i.icon.circle.thin:before{content:"\f1db"}i.icon.checkmark:before{content:"\f00c"}i.icon.checkmark.box:before{content:"\f046"}i.icon.move:before{content:"\f047"}i.icon.add.circle:before{content:"\f055"}i.icon.remove.circle:before{content:"\f057"}i.icon.check.circle:before{content:"\f058"}i.icon.remove.circle.outline:before{content:"\f05c"}i.icon.check.circle.outline:before{content:"\f05d"}i.icon.plus:before{content:"\f067"}i.icon.minus:before{content:"\f068"}i.icon.add.square:before{content:"\f0fe"}i.icon.radio:before{content:"\f10c"}i.icon.selected.radio:before{content:"\f192"}i.icon.minus.square:before{content:"\f146"}i.icon.minus.square.outline:before{content:"\f147"}i.icon.check.square:before{content:"\f14a"}i.icon.plus.square.outline:before{content:"\f196"}i.icon.toggle.off:before{content:"\f204"}i.icon.toggle.on:before{content:"\f205"}i.icon.film:before{content:"\f008"}i.icon.sound:before{content:"\f025"}i.icon.photo:before{content:"\f030"}i.icon.bar.chart:before{content:"\f080"}i.icon.camera.retro:before{content:"\f083"}i.icon.newspaper:before{content:"\f1ea"}i.icon.area.chart:before{content:"\f1fe"}i.icon.pie.chart:before{content:"\f200"}i.icon.line.chart:before{content:"\f201"}i.icon.arrow.circle.outline.down:before{content:"\f01a"}i.icon.arrow.circle.outline.up:before{content:"\f01b"}i.icon.chevron.left:before{content:"\f053"}i.icon.chevron.right:before{content:"\f054"}i.icon.arrow.left:before{content:"\f060"}i.icon.arrow.right:before{content:"\f061"}i.icon.arrow.up:before{content:"\f062"}i.icon.arrow.down:before{content:"\f063"}i.icon.chevron.up:before{content:"\f077"}i.icon.chevron.down:before{content:"\f078"}i.icon.pointing.right:before{content:"\f0a4"}i.icon.pointing.left:before{content:"\f0a5"}i.icon.pointing.up:before{content:"\f0a6"}i.icon.pointing.down:before{content:"\f0a7"}i.icon.arrow.circle.left:before{content:"\f0a8"}i.icon.arrow.circle.right:before{content:"\f0a9"}i.icon.arrow.circle.up:before{content:"\f0aa"}i.icon.arrow.circle.down:before{content:"\f0ab"}i.icon.caret.down:before{content:"\f0d7"}i.icon.caret.up:before{content:"\f0d8"}i.icon.caret.left:before{content:"\f0d9"}i.icon.caret.right:before{content:"\f0da"}i.icon.angle.double.left:before{content:"\f100"}i.icon.angle.double.right:before{content:"\f101"}i.icon.angle.double.up:before{content:"\f102"}i.icon.angle.double.down:before{content:"\f103"}i.icon.angle.left:before{content:"\f104"}i.icon.angle.right:before{content:"\f105"}i.icon.angle.up:before{content:"\f106"}i.icon.angle.down:before{content:"\f107"}i.icon.chevron.circle.left:before{content:"\f137"}i.icon.chevron.circle.right:before{content:"\f138"}i.icon.chevron.circle.up:before{content:"\f139"}i.icon.chevron.circle.down:before{content:"\f13a"}i.icon.toggle.down:before{content:"\f150"}i.icon.toggle.up:before{content:"\f151"}i.icon.toggle.right:before{content:"\f152"}i.icon.long.arrow.down:before{content:"\f175"}i.icon.long.arrow.up:before{content:"\f176"}i.icon.long.arrow.left:before{content:"\f177"}i.icon.long.arrow.right:before{content:"\f178"}i.icon.arrow.circle.outline.right:before{content:"\f18e"}i.icon.arrow.circle.outline.left:before{content:"\f190"}i.icon.toggle.left:before{content:"\f191"}i.icon.power:before{content:"\f011"}i.icon.trash:before{content:"\f1f8"}i.icon.trash.outline:before{content:"\f014"}i.icon.disk.outline:before{content:"\f0a0"}i.icon.desktop:before{content:"\f108"}i.icon.laptop:before{content:"\f109"}i.icon.tablet:before{content:"\f10a"}i.icon.mobile:before{content:"\f10b"}i.icon.game:before{content:"\f11b"}i.icon.keyboard:before{content:"\f11c"}i.icon.plug:before{content:"\f1e6"}i.icon.folder:before{content:"\f07b"}i.icon.folder.open:before{content:"\f07c"}i.icon.level.up:before{content:"\f148"}i.icon.level.down:before{content:"\f149"}i.icon.file:before{content:"\f15b"}i.icon.file.outline:before{content:"\f016"}i.icon.file.text:before{content:"\f15c"}i.icon.file.text.outline:before{content:"\f0f6"}i.icon.folder.outline:before{content:"\f114"}i.icon.folder.open.outline:before{content:"\f115"}i.icon.file.pdf.outline:before{content:"\f1c1"}i.icon.file.word.outline:before{content:"\f1c2"}i.icon.file.excel.outline:before{content:"\f1c3"}i.icon.file.powerpoint.outline:before{content:"\f1c4"}i.icon.file.image.outline:before{content:"\f1c5"}i.icon.file.archive.outline:before{content:"\f1c6"}i.icon.file.audio.outline:before{content:"\f1c7"}i.icon.file.video.outline:before{content:"\f1c8"}i.icon.file.code.outline:before{content:"\f1c9"}i.icon.barcode:before{content:"\f02a"}i.icon.qrcode:before{content:"\f029"}i.icon.fork:before{content:"\f126"}i.icon.html5:before{content:"\f13b"}i.icon.css3:before{content:"\f13c"}i.icon.rss:before{content:"\f09e"}i.icon.rss.square:before{content:"\f143"}i.icon.openid:before{content:"\f19b"}i.icon.database:before{content:"\f1c0"}i.icon.server:before{content:"\f233"}i.icon.heart:before{content:"\f004"}i.icon.star:before{content:"\f005"}i.icon.empty.star:before{content:"\f006"}i.icon.thumbs.outline.up:before{content:"\f087"}i.icon.thumbs.outline.down:before{content:"\f088"}i.icon.star.half:before{content:"\f089"}i.icon.empty.heart:before{content:"\f08a"}i.icon.smile:before{content:"\f118"}i.icon.frown:before{content:"\f119"}i.icon.meh:before{content:"\f11a"}i.icon.star.half.empty:before{content:"\f123"}i.icon.thumbs.up:before{content:"\f164"}i.icon.thumbs.down:before{content:"\f165"}i.icon.music:before{content:"\f001"}i.icon.video.play.outline:before{content:"\f01d"}i.icon.volume.down:before{content:"\f027"}i.icon.volume.up:before{content:"\f028"}i.icon.record:before{content:"\f03d"}i.icon.step.backward:before{content:"\f048"}i.icon.fast.backward:before{content:"\f049"}i.icon.backward:before{content:"\f04a"}i.icon.play:before{content:"\f04b"}i.icon.pause:before{content:"\f04c"}i.icon.stop:before{content:"\f04d"}i.icon.forward:before{content:"\f04e"}i.icon.fast.forward:before{content:"\f050"}i.icon.step.forward:before{content:"\f051"}i.icon.eject:before{content:"\f052"}i.icon.unmute:before{content:"\f130"}i.icon.mute:before{content:"\f131"}i.icon.video.play:before{content:"\f144"}i.icon.closed.captioning:before{content:"\f20a"}i.icon.marker:before{content:"\f041"}i.icon.coffee:before{content:"\f0f4"}i.icon.food:before{content:"\f0f5"}i.icon.building.outline:before{content:"\f0f7"}i.icon.hospital:before{content:"\f0f8"}i.icon.emergency:before{content:"\f0f9"}i.icon.first.aid:before{content:"\f0fa"}i.icon.military:before{content:"\f0fb"}i.icon.h:before{content:"\f0fd"}i.icon.location.arrow:before{content:"\f124"}i.icon.space.shuttle:before{content:"\f197"}i.icon.university:before{content:"\f19c"}i.icon.building:before{content:"\f1ad"}i.icon.paw:before{content:"\f1b0"}i.icon.spoon:before{content:"\f1b1"}i.icon.car:before{content:"\f1b9"}i.icon.taxi:before{content:"\f1ba"}i.icon.tree:before{content:"\f1bb"}i.icon.bicycle:before{content:"\f206"}i.icon.bus:before{content:"\f207"}i.icon.ship:before{content:"\f21a"}i.icon.motorcycle:before{content:"\f21c"}i.icon.street.view:before{content:"\f21d"}i.icon.hotel:before{content:"\f236"}i.icon.train:before{content:"\f238"}i.icon.subway:before{content:"\f239"}i.icon.table:before{content:"\f0ce"}i.icon.columns:before{content:"\f0db"}i.icon.sort:before{content:"\f0dc"}i.icon.sort.ascending:before{content:"\f0dd"}i.icon.sort.descending:before{content:"\f0de"}i.icon.sort.alphabet.ascending:before{content:"\f15d"}i.icon.sort.alphabet.descending:before{content:"\f15e"}i.icon.sort.content.ascending:before{content:"\f160"}i.icon.sort.content.descending:before{content:"\f161"}i.icon.sort.numeric.ascending:before{content:"\f162"}i.icon.sort.numeric.descending:before{content:"\f163"}i.icon.font:before{content:"\f031"}i.icon.bold:before{content:"\f032"}i.icon.italic:before{content:"\f033"}i.icon.text.height:before{content:"\f034"}i.icon.text.width:before{content:"\f035"}i.icon.align.left:before{content:"\f036"}i.icon.align.center:before{content:"\f037"}i.icon.align.right:before{content:"\f038"}i.icon.align.justify:before{content:"\f039"}i.icon.list:before{content:"\f03a"}i.icon.outdent:before{content:"\f03b"}i.icon.indent:before{content:"\f03c"}i.icon.linkify:before{content:"\f0c1"}i.icon.cut:before{content:"\f0c4"}i.icon.copy:before{content:"\f0c5"}i.icon.attach:before{content:"\f0c6"}i.icon.save:before{content:"\f0c7"}i.icon.content:before{content:"\f0c9"}i.icon.unordered.list:before{content:"\f0ca"}i.icon.ordered.list:before{content:"\f0cb"}i.icon.strikethrough:before{content:"\f0cc"}i.icon.underline:before{content:"\f0cd"}i.icon.paste:before{content:"\f0ea"}i.icon.unlink:before{content:"\f127"}i.icon.superscript:before{content:"\f12b"}i.icon.subscript:before{content:"\f12c"}i.icon.header:before{content:"\f1dc"}i.icon.paragraph:before{content:"\f1dd"}i.icon.euro:before{content:"\f153"}i.icon.pound:before{content:"\f154"}i.icon.dollar:before{content:"\f155"}i.icon.rupee:before{content:"\f156"}i.icon.yen:before{content:"\f157"}i.icon.ruble:before{content:"\f158"}i.icon.won:before{content:"\f159"}i.icon.lira:before{content:"\f195"}i.icon.shekel:before{content:"\f20b"}i.icon.paypal:before{content:"\f1ed"}i.icon.paypal.card:before{content:"\f1f4"}i.icon.google.wallet:before{content:"\f1ee"}i.icon.visa:before{content:"\f1f0"}i.icon.mastercard:before{content:"\f1f1"}i.icon.discover:before{content:"\f1f2"}i.icon.american.express:before{content:"\f1f3"}i.icon.stripe:before{content:"\f1f5"}i.icon.twitter.square:before{content:"\f081"}i.icon.facebook.square:before{content:"\f082"}i.icon.linkedin.square:before{content:"\f08c"}i.icon.github.square:before{content:"\f092"}i.icon.twitter:before{content:"\f099"}i.icon.facebook:before{content:"\f09a"}i.icon.github:before{content:"\f09b"}i.icon.pinterest:before{content:"\f0d2"}i.icon.pinterest.square:before{content:"\f0d3"}i.icon.google.plus.square:before{content:"\f0d4"}i.icon.google.plus:before{content:"\f0d5"}i.icon.linkedin:before{content:"\f0e1"}i.icon.github.alternate:before{content:"\f113"}i.icon.maxcdn:before{content:"\f136"}i.icon.bitcoin:before{content:"\f15a"}i.icon.youtube.square:before{content:"\f166"}i.icon.youtube:before{content:"\f167"}i.icon.xing:before{content:"\f168"}i.icon.xing.square:before{content:"\f169"}i.icon.youtube.play:before{content:"\f16a"}i.icon.dropbox:before{content:"\f16b"}i.icon.stack.overflow:before{content:"\f16c"}i.icon.instagram:before{content:"\f16d"}i.icon.flickr:before{content:"\f16e"}i.icon.adn:before{content:"\f170"}i.icon.bitbucket:before{content:"\f171"}i.icon.bitbucket.square:before{content:"\f172"}i.icon.tumblr:before{content:"\f173"}i.icon.tumblr.square:before{content:"\f174"}i.icon.apple:before{content:"\f179"}i.icon.windows:before{content:"\f17a"}i.icon.android:before{content:"\f17b"}i.icon.linux:before{content:"\f17c"}i.icon.dribbble:before{content:"\f17d"}i.icon.skype:before{content:"\f17e"}i.icon.foursquare:before{content:"\f180"}i.icon.trello:before{content:"\f181"}i.icon.gittip:before{content:"\f184"}i.icon.vk:before{content:"\f189"}i.icon.weibo:before{content:"\f18a"}i.icon.renren:before{content:"\f18b"}i.icon.pagelines:before{content:"\f18c"}i.icon.stack.exchange:before{content:"\f18d"}i.icon.vimeo:before{content:"\f194"}i.icon.slack:before{content:"\f198"}i.icon.wordpress:before{content:"\f19a"}i.icon.yahoo:before{content:"\f19e"}i.icon.google:before{content:"\f1a0"}i.icon.reddit:before{content:"\f1a1"}i.icon.reddit.square:before{content:"\f1a2"}i.icon.stumbleupon.circle:before{content:"\f1a3"}i.icon.stumbleupon:before{content:"\f1a4"}i.icon.delicious:before{content:"\f1a5"}i.icon.digg:before{content:"\f1a6"}i.icon.pied.piper:before{content:"\f1a7"}i.icon.pied.piper.alternate:before{content:"\f1a8"}i.icon.drupal:before{content:"\f1a9"}i.icon.joomla:before{content:"\f1aa"}i.icon.behance:before{content:"\f1b4"}i.icon.behance.square:before{content:"\f1b5"}i.icon.steam:before{content:"\f1b6"}i.icon.steam.square:before{content:"\f1b7"}i.icon.spotify:before{content:"\f1bc"}i.icon.deviantart:before{content:"\f1bd"}i.icon.soundcloud:before{content:"\f1be"}i.icon.vine:before{content:"\f1ca"}i.icon.codepen:before{content:"\f1cb"}i.icon.jsfiddle:before{content:"\f1cc"}i.icon.rebel:before{content:"\f1d0"}i.icon.empire:before{content:"\f1d1"}i.icon.git.square:before{content:"\f1d2"}i.icon.git:before{content:"\f1d3"}i.icon.hacker.news:before{content:"\f1d4"}i.icon.tencent.weibo:before{content:"\f1d5"}i.icon.qq:before{content:"\f1d6"}i.icon.wechat:before{content:"\f1d7"}i.icon.slideshare:before{content:"\f1e7"}i.icon.twitch:before{content:"\f1e8"}i.icon.yelp:before{content:"\f1e9"}i.icon.lastfm:before{content:"\f202"}i.icon.lastfm.square:before{content:"\f203"}i.icon.ioxhost:before{content:"\f208"}i.icon.angellist:before{content:"\f209"}i.icon.meanpath:before{content:"\f20c"}i.icon.buysellads:before{content:"\f20d"}i.icon.connectdevelop:before{content:"\f20e"}i.icon.dashcube:before{content:"\f210"}i.icon.forumbee:before{content:"\f211"}i.icon.leanpub:before{content:"\f212"}i.icon.sellsy:before{content:"\f213"}i.icon.shirtsinbulk:before{content:"\f214"}i.icon.simplybuilt:before{content:"\f215"}i.icon.skyatlas:before{content:"\f216"}i.icon.whatsapp:before{content:"\f232"}i.icon.viacoin:before{content:"\f237"}i.icon.medium:before{content:"\f23a"}i.icon.like:before{content:"\f004"}i.icon.favorite:before{content:"\f005"}i.icon.video:before{content:"\f008"}i.icon.check:before{content:"\f00c"}i.icon.cancel:before,i.icon.close:before,i.icon.delete:before,i.icon.remove:before,i.icon.x:before{content:"\f00d"}i.icon.user.cancel:before,i.icon.user.close:before,i.icon.user.delete:before,i.icon.user.times:before,i.icon.user.x:before{content:"\f235"}i.icon.magnify:before,i.icon.zoom.in:before{content:"\f00e"}i.icon.shutdown:before{content:"\f011"}i.icon.clock:before,i.icon.time:before{content:"\f017"}i.icon.play.circle.outline:before{content:"\f01d"}i.icon.headphone:before{content:"\f025"}i.icon.volume.off:before{content:"\f026"}i.icon.camera:before{content:"\f030"}i.icon.video.camera:before{content:"\f03d"}i.icon.picture:before{content:"\f03e"}i.icon.compose:before,i.icon.pencil:before{content:"\f040"}i.icon.point:before{content:"\f041"}i.icon.tint:before{content:"\f043"}i.icon.signup:before{content:"\f044"}i.icon.plus.circle:before{content:"\f055"}i.icon.minus.circle:before{content:"\f056"}i.icon.dont:before{content:"\f05e"}i.icon.minimize:before{content:"\f066"}i.icon.add:before{content:"\f067"}i.icon.eye:before{content:"\f06e"}i.icon.cart:before{content:"\f07a"}i.icon.shuffle:before{content:"\f074"}i.icon.chat:before,i.icon.talk:before{content:"\f075"}i.icon.shopping.cart:before{content:"\f07a"}i.icon.bar.graph:before{content:"\f080"}i.icon.area.graph:before{content:"\f1fe"}i.icon.pie.graph:before{content:"\f200"}i.icon.line.graph:before{content:"\f201"}i.icon.key:before,i.icon.privacy:before{content:"\f084"}i.icon.cogs:before{content:"\f085"}i.icon.discussions:before{content:"\f086"}i.icon.like.outline:before{content:"\f087"}i.icon.dislike.outline:before{content:"\f088"}i.icon.heart.outline:before{content:"\f08a"}i.icon.log.out:before{content:"\f08b"}i.icon.thumb.tack:before{content:"\f08d"}i.icon.winner:before{content:"\f091"}i.icon.bookmark.outline:before{content:"\f097"}i.icon.phone.square:before{content:"\f098"}i.icon.credit.card:before{content:"\f09d"}i.icon.hdd.outline:before{content:"\f0a0"}i.icon.bullhorn:before{content:"\f0a1"}i.icon.bell:before{content:"\f0f3"}i.icon.bell.slash:before{content:"\f1f6"}i.icon.bell.slash.outline:before{content:"\f1f7"}i.icon.hand.outline.right:before{content:"\f0a4"}i.icon.hand.outline.left:before{content:"\f0a5"}i.icon.hand.outline.up:before{content:"\f0a6"}i.icon.hand.outline.down:before{content:"\f0a7"}i.icon.globe:before{content:"\f0ac"}i.icon.wrench:before{content:"\f0ad"}i.icon.briefcase:before{content:"\f0b1"}i.icon.group:before{content:"\f0c0"}i.icon.flask:before{content:"\f0c3"}i.icon.bars:before,i.icon.sidebar:before{content:"\f0c9"}i.icon.list.ul:before{content:"\f0ca"}i.icon.list.ol:before,i.icon.numbered.list:before{content:"\f0cb"}i.icon.magic:before{content:"\f0d0"}i.icon.truck:before{content:"\f0d1"}i.icon.currency:before{content:"\f0d6"}i.icon.dropdown:before,i.icon.triangle.down:before{content:"\f0d7"}i.icon.triangle.up:before{content:"\f0d8"}i.icon.triangle.left:before{content:"\f0d9"}i.icon.triangle.right:before{content:"\f0da"}i.icon.envelope:before{content:"\f0e0"}i.icon.conversation:before{content:"\f0e6"}i.icon.lightning:before{content:"\f0e7"}i.icon.umbrella:before{content:"\f0e9"}i.icon.lightbulb:before{content:"\f0eb"}i.icon.suitcase:before{content:"\f0f2"}i.icon.bell.outline:before{content:"\f0a2"}i.icon.ambulance:before{content:"\f0f9"}i.icon.medkit:before{content:"\f0fa"}i.icon.fighter.jet:before{content:"\f0fb"}i.icon.beer:before{content:"\f0fc"}i.icon.plus.square:before{content:"\f0fe"}i.icon.computer:before{content:"\f108"}i.icon.asexual:before,i.icon.circle.outline:before,i.icon.intersex:before{content:"\f10c"}i.icon.spinner:before{content:"\f110"}i.icon.gamepad:before{content:"\f11b"}i.icon.star.half.full:before{content:"\f123"}i.icon.question:before{content:"\f128"}i.icon.attention:before{content:"\f12a"}i.icon.eraser:before{content:"\f12d"}i.icon.microphone:before{content:"\f130"}i.icon.microphone.slash:before{content:"\f131"}i.icon.shield:before{content:"\f132"}i.icon.target:before{content:"\f140"}i.icon.play.circle:before{content:"\f144"}i.icon.pencil.square:before{content:"\f14b"}i.icon.compass:before{content:"\f14e"}i.icon.eur:before{content:"\f153"}i.icon.gbp:before{content:"\f154"}i.icon.usd:before{content:"\f155"}i.icon.inr:before{content:"\f156"}i.icon.cny:before,i.icon.jpy:before,i.icon.rmb:before{content:"\f157"}i.icon.rouble:before,i.icon.rub:before{content:"\f158"}i.icon.krw:before,i.icon.won:before{content:"\f159"}i.icon.btc:before{content:"\f15a"}i.icon.ils:before,i.icon.sheqel:before{content:"\f20b"}i.icon.try:before{content:"\f195"}i.icon.zip:before{content:"\f187"}i.icon.dot.circle.outline:before{content:"\f192"}i.icon.sliders:before{content:"\f1de"}i.icon.wi-fi:before{content:"\f1eb"}i.icon.graduation:before{content:"\f19d"}i.icon.\33d:before{content:"\f1b2"}i.icon.weixin:before{content:"\f1d7"}i.icon.binoculars:before{content:"\f1e5"}i.icon.gratipay:before{content:"\f184"}i.icon.genderless:before{content:"\f1db"}i.icon.teletype:before{content:"\f1e4"}i.icon.power.cord:before{content:"\f1e6"}i.icon.tty:before{content:"\f1e4"}i.icon.cc:before{content:"\f20a"}i.icon.ils:before{content:"\f20b"}i.icon.plus.cart:before{content:"\f217"}i.icon.arrow.down.cart:before{content:"\f218"}i.icon.detective:before{content:"\f21b"}i.icon.venus:before{content:"\f221"}i.icon.mars:before{content:"\f222"}i.icon.mercury:before{content:"\f223"}i.icon.female.homosexual:before,i.icon.venus.double:before{content:"\f226"}i.icon.male.homosexual:before,i.icon.mars.double:before{content:"\f227"}i.icon.venus.mars:before{content:"\f228"}i.icon.mars.alternate:before,i.icon.mars.stroke:before{content:"\f229"}i.icon.mars.vertical:before{content:"\f22a"}i.icon.mars.horizontal:before{content:"\f22b"}i.icon.mars.stroke.vertical:before{content:"\f22a"}i.icon.mars.stroke.horizontal:before{content:"\f22b"}i.icon.neuter:before{content:"\f22c"}i.icon.facebook.official{content:"\f230"}i.icon.pinterest.official{content:"\f231"}i.icon.bed:before{content:"\f236"}.ui.image{position:relative;display:inline-block;vertical-align:middle;max-width:100%;background-color:transparent}img.ui.image{display:block}.ui.image img,.ui.image svg{display:block;max-width:100%;height:auto}.ui.hidden.image,.ui.hidden.images{display:none}.ui.disabled.image,.ui.disabled.images{cursor:default;opacity:.3}.ui.inline.image,.ui.inline.image img,.ui.inline.image svg{display:inline-block}.ui.top.aligned.image,.ui.top.aligned.image img,.ui.top.aligned.image svg,.ui.top.aligned.images .image{display:inline-block;vertical-align:top}.ui.middle.aligned.image,.ui.middle.aligned.image img,.ui.middle.aligned.image svg,.ui.middle.aligned.images .image{display:inline-block;vertical-align:middle}.ui.bottom.aligned.image,.ui.bottom.aligned.image img,.ui.bottom.aligned.image svg,.ui.bottom.aligned.images .image{display:inline-block;vertical-align:bottom}.ui.rounded.image,.ui.rounded.image img,.ui.rounded.image svg,.ui.rounded.images .image,.ui.rounded.images img,.ui.rounded.images svg{border-radius:.3125em}.ui.bordered.image img,.ui.bordered.image svg,.ui.bordered.images .image,.ui.bordered.images img,.ui.bordered.images svg,img.ui.bordered.image{border:1px solid rgba(0,0,0,.1)}.ui.circular.image,.ui.circular.images{overflow:hidden}.ui.circular.image,.ui.circular.image img,.ui.circular.image svg,.ui.circular.images .image,.ui.circular.images img,.ui.circular.images svg{border-radius:500rem}.ui.fluid.image,.ui.fluid.image img,.ui.fluid.image svg,.ui.fluid.images,.ui.fluid.images img,.ui.fluid.images svg{display:block;width:100%;height:auto}.ui.avatar.image,.ui.avatar.image img,.ui.avatar.image svg,.ui.avatar.images .image,.ui.avatar.images img,.ui.avatar.images svg{margin-right:.25em;display:inline-block;width:2.5em;height:2.5em;border-radius:500rem}.ui.floated.image,.ui.floated.images{float:left;margin-right:1em;margin-bottom:1em}.ui.right.floated.image,.ui.right.floated.images{float:right;margin-right:0;margin-bottom:1em;margin-left:1em}.ui.floated.image:last-child,.ui.floated.images:last-child{margin-bottom:0}.ui.centered.image,.ui.centered.images{margin-left:auto;margin-right:auto}.ui.mini.image,.ui.mini.images .image,.ui.mini.images img,.ui.mini.images svg{width:20px;height:auto;font-size:.71428571rem}.ui.tiny.image,.ui.tiny.images .image,.ui.tiny.images img,.ui.tiny.images svg{width:80px;height:auto;font-size:.85714286rem}.ui.small.image,.ui.small.images .image,.ui.small.images img,.ui.small.images svg{width:150px;height:auto;font-size:.92857143rem}.ui.medium.image,.ui.medium.images .image,.ui.medium.images img,.ui.medium.images svg{width:300px;height:auto;font-size:1rem}.ui.large.image,.ui.large.images .image,.ui.large.images img,.ui.large.images svg{width:450px;height:auto;font-size:1.14285714rem}.ui.big.image,.ui.big.images .image,.ui.big.images img,.ui.big.images svg{width:600px;height:auto;font-size:1.28571429rem}.ui.huge.image,.ui.huge.images .image,.ui.huge.images img,.ui.huge.images svg{width:800px;height:auto;font-size:1.42857143rem}.ui.massive.image,.ui.massive.images .image,.ui.massive.images img,.ui.massive.images svg{width:960px;height:auto;font-size:1.71428571rem}.ui.images{font-size:0;margin:0 -.25rem}.ui.images .image,.ui.images img,.ui.images svg{display:inline-block;margin:0 .25rem .5rem}.ui.input{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;color:rgba(0,0,0,.8)}.ui.input input{margin:0;max-width:100%;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0);text-align:left;line-height:1.2142em;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;padding:.67861em 1em;background:#fff;border:1px solid rgba(0,0,0,.15);color:rgba(0,0,0,.8);border-radius:.2857rem;-webkit-transition:background-color .2s ease,box-shadow .2s ease,border-color .2s ease;transition:background-color .2s ease,box-shadow .2s ease,border-color .2s ease;box-shadow:none}.ui.input input::-webkit-input-placeholder{color:rgba(0,0,0,.4)}.ui.input input::-moz-placeholder{color:rgba(0,0,0,.4)}.ui.input input::-ms-input-placeholder{color:rgba(0,0,0,.4)}.ui.input input:active,.ui.input.down input{border-color:rgba(0,0,0,.3);background:#fafafa;color:rgba(0,0,0,.8);box-shadow:none}.ui.loading.loading.input>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285em 0 0 -.64285em;width:1.2857em;height:1.2857em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.loading.input>i.icon:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285em 0 0 -.64285em;width:1.2857em;height:1.2857em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#aaa transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.input input:focus,.ui.input.focus input{border-color:rgba(39,41,43,.3);background:#fff;color:rgba(0,0,0,.8);box-shadow:none}.ui.input input:focus input::-webkit-input-placeholder,.ui.input.focus input::-webkit-input-placeholder{color:rgba(0,0,0,.8)}.ui.input input:focus input::-moz-placeholder,.ui.input.focus input::-moz-placeholder{color:rgba(0,0,0,.8)}.ui.input input:focus input::-ms-input-placeholder,.ui.input.focus input::-ms-input-placeholder{color:rgba(0,0,0,.8)}.ui.input.error input{background-color:#fff0f0;border-color:#dbb1b1;color:#d95c5c;box-shadow:none}.ui.input.error input ::-webkit-input-placeholder{color:rgba(255,80,80,.4)}.ui.input.error input ::-moz-placeholder{color:rgba(255,80,80,.4)}.ui.input.error input ::-ms-input-placeholder{color:rgba(255,80,80,.4)}.ui.input.error input :focus::-webkit-input-placeholder{color:rgba(255,80,80,.7)}.ui.input.error input :focus::-moz-placeholder{color:rgba(255,80,80,.7)}.ui.input.error input :focus::-ms-input-placeholder{color:rgba(255,80,80,.7)}.ui.transparent.input input{border-color:transparent!important;background-color:transparent!important;padding:0!important;box-shadow:none!important}.ui.transparent.icon.input>i.icon{width:1.25em}.ui.transparent.icon.input>input{padding-left:0!important;padding-right:2em!important}.ui.transparent[class*="left icon"].input>input{padding-left:2em!important;padding-right:0!important}.ui.transparent.inverted.input{color:#fff}.ui.transparent.inverted.input input{color:inherit}.ui.transparent.inverted.input input::-webkit-input-placeholder{color:rgba(255,255,255,.5)}.ui.transparent.inverted.input input::-moz-placeholder{color:rgba(255,255,255,.5)}.ui.transparent.inverted.input input::-ms-input-placeholder{color:rgba(255,255,255,.5)}.ui.icon.input>i.icon{cursor:default;position:absolute;text-align:center;top:0;right:0;margin:0;height:100%;width:2.82142em;opacity:.5;border-radius:0 .2857rem .2857rem 0;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}.ui.icon.input input{padding-right:2.82142em!important}.ui.icon.input>i.icon:after,.ui.icon.input>i.icon:before{left:0;position:absolute;text-align:center;top:50%;width:100%;margin-top:-.5em}.ui.icon.input>i.link.icon{cursor:pointer}.ui.icon.input>i.circular.icon{top:.35em;right:.5em}.ui[class*="left icon"].input>i.icon{right:auto;left:1px;border-radius:.2857rem 0 0 .2857rem}.ui[class*="left icon"].input>i.circular.icon{right:auto;left:.5em}.ui[class*="left icon"].input>input{padding-left:2.82142em!important;padding-right:1em!important}.ui.icon.input>input:focus~i.icon{opacity:1}.ui.labeled.input>.label{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;margin:0;font-size:1rem}.ui.labeled.input>.label:not(.corner){padding-top:.78571em;padding-bottom:.78571em}.ui.labeled.input:not([class*="corner labeled"]):not([class*="right labeled"])>input{border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.ui.labeled.input:not([class*="corner labeled"]):not([class*="right labeled"])>.label{border-top-right-radius:0;border-bottom-right-radius:0}.ui[class*="right labeled"].input>input{border-right:none;border-top-right-radius:0!important;border-bottom-right-radius:0!important}.ui[class*="right labeled"].input>.label{border-top-left-radius:0;border-bottom-left-radius:0}.ui.labeled.input .corner.label{top:1px;right:1px;font-size:.75em;border-radius:0 .2857rem 0 0}.ui.labeled.input input{padding-right:2.5em!important}.ui[class*="corner labeled"].icon.input:not(.left)>input{padding-right:3.25em!important}.ui[class*="corner labeled"].icon.input:not(.left)>.icon{margin-right:1.25em}.ui.action.input>.button,.ui.action.input>.buttons{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.ui.action.input>.button,.ui.action.input>.buttons>.button{padding-top:.78571em;padding-bottom:.78571em;margin:0}.ui.action.input:not([class*="left action"])>input{border-right:none;border-top-right-radius:0!important;border-bottom-right-radius:0!important}.ui.action.input:not([class*="left action"])>.button,.ui.action.input:not([class*="left action"])>.buttons>.button{border-top-left-radius:0;border-bottom-left-radius:0}.ui[class*="left action"].input>.button,.ui[class*="left action"].input>.buttons>.button{border-top-right-radius:0;border-bottom-right-radius:0}.ui[class*="left action"].input>input{border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.ui.inverted.input input{border:none}.ui.fluid.input{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.fluid.input>input{width:100%!important}.ui.mini.input{font-size:.71428571em}.ui.small.input{font-size:.92857143em}.ui.input{font-size:1em}.ui.large.input{font-size:1.14285714em}.ui.big.input{font-size:1.28571429em}.ui.huge.input{font-size:1.42857143em}.ui.massive.input{font-size:1.71428571em}.ui.label{display:inline-block;vertical-align:baseline;line-height:1;margin:0 .125em;background-color:#e8e8e8;border-color:#e8e8e8;background-image:none;padding:.6em .8em;color:rgba(0,0,0,.6);text-transform:none;font-weight:700;border-radius:.2857rem;box-sizing:border-box;-webkit-transition:background .2s ease;transition:background .2s ease}.ui.label:first-child{margin-left:0}.ui.label:last-child{margin-right:0}a.ui.label{cursor:pointer}.ui.label a{cursor:pointer;color:inherit;opacity:.8;-webkit-transition:.2s opacity ease;transition:.2s opacity ease}.ui.label a:hover{opacity:1}.ui.label .icon{width:auto;margin:0 .75em 0 0}.ui.label .detail{display:inline-block;vertical-align:top;font-weight:700;margin-left:1em;opacity:.8}.ui.label .detail .icon{margin:0 .25em 0 0}.ui.label .close.icon,.ui.label .delete.icon{cursor:pointer;margin-right:0;margin-left:.5em;opacity:.8;-webkit-transition:background .2s ease;transition:background .2s ease}.ui.label .delete.icon:hover{opacity:1}.ui.labels .label{margin:0 .5em .75em 0}.ui.attached.segment>.ui.top.left.attached.label,.ui.bottom.attached.segment>.ui.top.left.attached.label{border-top-left-radius:0}.ui.attached.segment>.ui.top.right.attached.label,.ui.bottom.attached.segment>.ui.top.right.attached.label{border-top-right-radius:0}.ui.top.attached.segment>.ui.bottom.left.attached.label{border-bottom-left-radius:0}.ui.top.attached.segment>.ui.bottom.right.attached.label{border-bottom-right-radius:0}.ui.top.attached.label:first-child+:not(.attached){margin-top:2rem!important}.ui.bottom.attached.label:first-child~:last-child:not(.attached){margin-top:0;margin-bottom:2rem!important}.ui.image.label{width:auto!important;margin-top:0;margin-bottom:0;max-width:9999px;vertical-align:baseline;text-transform:none;background:#e8e8e8;padding:.6em .8em .6em .5em;border-radius:.2857rem;box-shadow:none}.ui.image.label img{display:inline-block;vertical-align:top;height:2.2em;margin:-.6em .5em -.6em -.5em;border-radius:.2857rem}.ui.image.label .detail{background:rgba(0,0,0,.1);margin:-.6em -.8em -.6em .5em;padding:.6em .8em;border-radius:0 .2857rem .2857rem 0}.ui.tag.label,.ui.tag.labels .label{margin-left:1em;position:relative;padding-left:1.5em;padding-right:1.5em;border-radius:0 .2857rem .2857rem 0}.ui.tag.label:before,.ui.tag.labels .label:before{position:absolute;-webkit-transform:translateY(-50%)translateX(50%)rotate(-45deg);-ms-transform:translateY(-50%)translateX(50%)rotate(-45deg);transform:translateY(-50%)translateX(50%)rotate(-45deg);top:50%;right:100%;content:'';background-color:#e8e8e8;background-image:none;width:1.56em;height:1.56em;-webkit-transition:background .2s ease;transition:background .2s ease}.ui.tag.label:after,.ui.tag.labels .label:after{position:absolute;content:'';top:50%;left:-.25em;margin-top:-.25em;background-color:#fff!important;width:.5em;height:.5em;box-shadow:0 -1px 1px 0 rgba(0,0,0,.3);border-radius:500rem}.ui.corner.label{position:absolute;top:0;right:0;margin:0;padding:0;text-align:center;width:3.25em;height:3.25em;z-index:1;-webkit-transition:border-color .2s ease;transition:border-color .2s ease;background-color:transparent!important}.ui.corner.label:after{position:absolute;content:"";right:0;top:0;z-index:-1;width:0;height:0;background-color:transparent!important;border-top:0 solid transparent;border-right:3.25em solid transparent;border-bottom:3.25em solid transparent;border-left:0 solid transparent;border-right-color:inherit;-webkit-transition:border-color .2s ease;transition:border-color .2s ease}.ui.corner.label .icon{position:relative;top:.4em;left:.75em;font-size:1em;margin:0}.ui.left.corner.label,.ui.left.corner.label:after{right:auto;left:0}.ui.left.corner.label:after{border-top:3.25em solid transparent;border-right:3.25em solid transparent;border-bottom:0 solid transparent;border-left:0 solid transparent;border-top-color:inherit}.ui.left.corner.label .icon{left:-.75em}.ui.segment>.ui.corner.label{top:-1px;right:-1px}.ui.segment>.ui.left.corner.label{right:auto;left:-1px}.ui.input>.ui.corner.label{top:1px;right:1px}.ui.input>.ui.right.corner.label{right:auto;left:1px}.ui.ribbon.label{position:relative;margin:0;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;border-radius:0 .2857rem .2857rem 0;border-color:rgba(0,0,0,.15)}.ui.ribbon.label:after{position:absolute;content:'';top:100%;left:0;background-color:transparent!important;border-style:solid;border-width:0 1.2em 1.2em 0;border-color:transparent;border-right-color:inherit;width:0;height:0}.ui[class*="right ribbon"].label{text-align:left;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%);border-radius:.2857rem 0 0 .2857rem;padding-left:.8em}.ui[class*="right ribbon"].label:after{left:auto;right:0;border-style:solid;border-width:1.2em 1.2em 0 0;border-color:transparent;border-top-color:inherit}.ui.ribbon.label{left:-webkit-calc(-1rem - 1.2em);left:calc(-1rem - 1.2em);margin-right:-1.2em;padding-left:-webkit-calc(1rem + 1.2em);padding-left:calc(1rem + 1.2em)}.ui[class*="right ribbon"].label{left:-webkit-calc(100% + 1rem + 1.2em);left:calc(100% + 1rem + 1.2em);padding-right:-webkit-calc(1rem + 1.2em);padding-right:calc(1rem + 1.2em)}.ui.card .image>.ribbon.label,.ui.image>.ribbon.label{position:absolute;top:1rem}.ui.card .image>.ui.ribbon.label,.ui.image>.ui.ribbon.label{left:-webkit-calc(.05rem - 1.2em);left:calc(.05rem - 1.2em);padding-left:-webkit-calc(-.05rem + 1.2em);padding-left:calc(-.05rem + 1.2em)}.ui.card .image>.ui[class*="right ribbon"].label,.ui.image>.ui[class*="right ribbon"].label{left:-webkit-calc(100% + -.05rem + 1.2em);left:calc(100% + -.05rem + 1.2em);padding-left:.8em;padding-right:-webkit-calc(-.05rem + 1.2em);padding-right:calc(-.05rem + 1.2em)}.ui.attached.label,.ui.top.attached.label{width:100%;position:absolute;margin:0;top:0;left:0;padding:.75em 1em;border-radius:.2857rem .2857rem 0 0}.ui.bottom.attached.label{top:auto;bottom:0;border-radius:0 0 .2857rem .2857rem}.ui.top.left.attached.label{width:auto;margin-top:0!important;border-radius:.2857rem 0}.ui.top.right.attached.label{width:auto;left:auto;right:0;border-radius:0 .2857rem}.ui.bottom.left.attached.label{width:auto;top:auto;bottom:0;border-radius:0 .2857rem}.ui.bottom.right.attached.label{top:auto;bottom:0;left:auto;right:0;width:auto;border-radius:.2857rem 0}.ui.label.disabled{opacity:.5}a.ui.label:hover,a.ui.labels .label:hover{background-color:#e0e0e0;border-color:#e0e0e0;background-image:none;color:rgba(0,0,0,.8)}.ui.labels a.label:hover:before,a.ui.label:hover:before{background-color:#e0e0e0;background-image:none;color:rgba(0,0,0,.8)}.ui.label.visible,.ui.labels.visible .label{display:inline-block!important}.ui.label.hidden,.ui.labels.hidden .label{display:none!important}.ui.black.label,.ui.black.labels .label{background-color:#1b1c1d!important;border-color:#1b1c1d!important;color:#fff!important}.ui.black.label:before,.ui.black.labels .label:before,.ui.labels .black.label:before{background-color:#1b1c1d!important}a.ui.black.label:hover,a.ui.black.labels .label:hover{background-color:#1b1c1d!important;border-color:#1b1c1d!important}.ui.black.labels a.label:hover:before,.ui.labels a.black.label:hover:before,a.ui.black.label:hover:before{background-color:#1b1c1d!important}.ui.black.corner.label,.ui.black.corner.label:hover{background-color:transparent!important}.ui.black.ribbon.label{border-color:#020203!important}.ui.blue.label,.ui.blue.labels .label{background-color:#3b83c0!important;border-color:#3b83c0!important;color:#fff!important}.ui.blue.label:before,.ui.blue.labels .label:before,.ui.labels .blue.label:before{background-color:#3b83c0!important}.ui.blue.labels a.label:hover,a.ui.blue.label:hover,a.ui.blue.labels .label:hover{background-color:#458ac6!important;border-color:#458ac6!important;color:#fff!important}.ui.blue.labels a.label:hover:before,.ui.labels a.blue.label:hover:before,a.ui.blue.label:hover:before{background-color:#458ac6!important}.ui.blue.corner.label,.ui.blue.corner.label:hover{background-color:transparent!important}.ui.blue.ribbon.label{border-color:#2f6899!important}.ui.green.label,.ui.green.labels .label{background-color:#5bbd72!important;border-color:#5bbd72!important;color:#fff!important}.ui.green.label:before,.ui.green.labels .label:before,.ui.labels .green.label:before{background-color:#5bbd72!important}a.ui.green.label:hover,a.ui.green.labels .label:hover{background-color:#66c17b!important;border-color:#66c17b!important}.ui.green.labels a.label:hover:before,.ui.labels a.green.label:hover:before,a.ui.green.label:hover:before{background-color:#66c17b!important}.ui.green.corner.label,.ui.green.corner.label:hover{background-color:transparent!important}.ui.green.ribbon.label{border-color:#42a359!important}.ui.orange.label,.ui.orange.labels .label{background-color:#e07b53!important;border-color:#e07b53!important;color:#fff!important}.ui.labels .orange.label:before,.ui.orange.label:before,.ui.orange.labels .label:before{background-color:#e07b53!important}.ui.orange.labels a.label:hover,a.ui.orange.label:hover,a.ui.orange.labels .label:hover{background-color:#e28560!important;border-color:#e28560!important;color:#fff!important}.ui.labels a.orange.label:hover:before,.ui.orange.labels a.label:hover:before,a.ui.orange.label:hover:before{background-color:#e28560!important}.ui.orange.corner.label,.ui.orange.corner.label:hover{background-color:transparent!important}.ui.orange.ribbon.label{border-color:#d85a28!important}.ui.pink.label,.ui.pink.labels .label{background-color:#d9499a!important;border-color:#d9499a!important;color:#fff!important}.ui.labels .pink.label:before,.ui.pink.label:before,.ui.pink.labels .label:before{background-color:#d9499a!important}.ui.pink.labels a.label:hover,a.ui.pink.label:hover,a.ui.pink.labels .label:hover{background-color:#dc56a1!important;border-color:#dc56a1!important;color:#fff!important}.ui.labels a.pink.label:hover:before,.ui.pink.labels a.label:hover:before,a.ui.pink.label:hover:before{background-color:#dc56a1!important}.ui.pink.corner.label,.ui.pink.corner.label:hover{background-color:transparent!important}.ui.pink.ribbon.label{border-color:#c62981!important}.ui.purple.label,.ui.purple.labels .label{background-color:#564f8a!important;border-color:#564f8a!important;color:#fff!important}.ui.labels .purple.label:before,.ui.purple.label:before,.ui.purple.labels .label:before{background-color:#564f8a!important}.ui.purple.labels a.label:hover,a.ui.purple.label:hover,a.ui.purple.labels .label:hover{background-color:#5c5594!important;border-color:#5c5594!important;color:#fff!important}.ui.labels a.purple.label:hover:before,.ui.purple.labels a.label:hover:before,a.ui.purple.label:hover:before{background-color:#5c5594!important}.ui.purple.corner.label,.ui.purple.corner.label:hover{background-color:transparent!important}.ui.purple.ribbon.label{border-color:#423c6a!important}.ui.red.label,.ui.red.labels .label{background-color:#d95c5c!important;border-color:#d95c5c!important;color:#fff!important}.ui.labels .red.label:before,.ui.red.label:before,.ui.red.labels .label:before{background-color:#d95c5c!important}.ui.red.corner.label,.ui.red.corner.label:hover{background-color:transparent!important}a.ui.red.label:hover,a.ui.red.labels .label:hover{background-color:#dc6868!important;border-color:#dc6868!important;color:#fff!important}.ui.labels a.red.label:hover:before,.ui.red.labels a.label:hover:before,a.ui.red.label:hover:before{background-color:#dc6868!important}.ui.red.ribbon.label{border-color:#cf3333!important}.ui.teal.label,.ui.teal.labels .label{background-color:#00b5ad!important;border-color:#00b5ad!important;color:#fff!important}.ui.labels .teal.label:before,.ui.teal.label:before,.ui.teal.labels .label:before{background-color:#00b5ad!important}.ui.teal.labels a.label:hover,a.ui.teal.label:hover,a.ui.teal.labels .label:hover{background-color:#00c4bc!important;border-color:#00c4bc!important;color:#fff!important}.ui.labels a.teal.label:hover:before,.ui.teal.labels a.label:hover:before,a.ui.teal.label:hover:before{background-color:#00c4bc!important}.ui.teal.corner.label,.ui.teal.corner.label:hover{background-color:transparent!important}.ui.teal.ribbon.label{border-color:#00827c!important}.ui.yellow.label,.ui.yellow.labels .label{background-color:#f2c61f!important;border-color:#f2c61f!important;color:#fff!important}.ui.labels .yellow.label:before,.ui.yellow.label:before,.ui.yellow.labels .label:before{background-color:#f2c61f!important}.ui.yellow.labels a.label:hover,a.ui.yellow.label:hover,a.ui.yellow.labels .label:hover{background-color:#f3ca2d!important;border-color:#f3ca2d!important;color:#fff!important}.ui.labels a.yellow.label:hover:before,.ui.yellow.labels a.label:hover:before,a.ui.yellow.label:hover:before{background-color:#f3ca2d!important}.ui.yellow.corner.label,.ui.yellow.corner.label:hover{background-color:transparent!important}.ui.yellow.ribbon.label{border-color:#d2a90c!important}.ui.fluid.labels>.label,.ui.label.fluid{width:100%;box-sizing:border-box}.ui.inverted.label,.ui.inverted.labels .label{color:#fff!important}.ui.horizontal.label,.ui.horizontal.labels .label{margin:0 .5em 0 0;padding:.4em .8em;min-width:3em;text-align:center}.ui.circular.label,.ui.circular.labels .label{min-width:2em;min-height:2em;padding:.5em!important;line-height:1em;text-align:center;border-radius:500rem}.ui.empty.circular.label,.ui.empty.circular.labels .label{min-width:0;min-height:0;overflow:hidden;width:.5em;height:.5em;vertical-align:baseline}.ui.pointing.label{position:relative}.ui.attached.pointing.label{position:absolute}.ui.pointing.label:before{position:absolute;content:'';-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:2;width:.6em;height:.6em;-webkit-transition:background .2s ease;transition:background .2s ease;background-color:#e8e8e8;background-image:none}.ui.pointing.above.label,.ui.pointing.label{margin-top:1em}.ui.pointing.above.label:before,.ui.pointing.label:before{margin-left:-.3em;top:-.3em;left:50%}.ui.pointing.below.label,.ui.pointing.bottom.label{margin-top:0;margin-bottom:1em}.ui.pointing.below.label:before,.ui.pointing.bottom.label:before{margin-left:-.3em;top:auto;right:auto;bottom:-.3em;left:50%}.ui.pointing.left.label{margin-top:0;margin-left:.6em}.ui.pointing.left.label:before{margin-top:-.3em;bottom:auto;right:auto;top:50%;left:0}.ui.pointing.right.label{margin-top:0;margin-right:.6em}.ui.pointing.right.label:before{margin-top:-.3em;right:-.3em;top:50%;bottom:auto;left:auto}.ui.floating.label{position:absolute;z-index:100;top:-1em;left:100%;margin:0 0 0 -1.5em!important}.ui.mini.label,.ui.mini.labels .label{font-size:.6428rem}.ui.tiny.label,.ui.tiny.labels .label{font-size:.7142rem}.ui.small.label,.ui.small.labels .label{font-size:.7857rem}.ui.label,.ui.labels .label{font-size:.8571rem}.ui.large.label,.ui.large.labels .label{font-size:1rem}.ui.big.label,.ui.big.labels .label{font-size:1.1428rem}.ui.huge.label,.ui.huge.labels .label{font-size:1.2857rem}.ui.massive.label,.ui.massive.labels .label{font-size:1.4285rem}.ui.list,ol.ui.list,ul.ui.list{list-style-type:none;margin:1em 0;padding:0}.ui.list:first-child,ol.ui.list:first-child,ul.ui.list:first-child{margin-top:0;padding-top:0}.ui.list:last-child,ol.ui.list:last-child,ul.ui.list:last-child{margin-bottom:0;padding-bottom:0}.ui.list .list>.item,.ui.list>.item,ol.ui.list li,ul.ui.list li{display:list-item;table-layout:fixed;list-style-type:none;list-style-position:outside;padding:.3em 0;line-height:1.2}.ui.list>.item:after,.ui.list>.list>.item,ol.ui.list>li:first-child:after,ul.ui.list>li:first-child:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.list .list>.item:first-child,.ui.list>.item:first-child,ol.ui.list li:first-child,ul.ui.list li:first-child{padding-top:0}.ui.list .list>.item:last-child,.ui.list>.item:last-child,ol.ui.list li:last-child,ul.ui.list li:last-child{padding-bottom:0}.ui.list .list,ol.ui.list ol,ul.ui.list ul{clear:both;margin:0;padding:.75em 0 .25em .5em}.ui.list .list>.item>i.icon,.ui.list>.item>i.icon{display:table-cell;margin:0;padding-top:.1rem;padding-right:.3em;vertical-align:middle;-webkit-transition:color .2s ease;transition:color .2s ease}.ui.list .list>.item i[class*="top aligned"].icon,.ui.list>.item>i[class*="top aligned"].icon{vertical-align:top}.ui.list .list>.item>i.icon:only-child,.ui.list>.item>i.icon:only-child{display:inline-block;vertical-align:top}.ui.list .list>.item>.image,.ui.list>.item>.image{display:table-cell;background-color:transparent;margin:0;padding-right:.5em;vertical-align:middle}.ui.list .list>.item>[class*="top aligned"].image,.ui.list>.item>[class*="top aligned"].image{vertical-align:top}.ui.list .list>.item>.image img,.ui.list>.item>.image img{vertical-align:middle}.ui.list .list>.item>.image:only-child,.ui.list .list>.item>img.image,.ui.list>.item>.image:only-child,.ui.list>.item>img.image{display:inline-block;padding-right:0}.ui.list .list>.item>.content,.ui.list>.item>.content{line-height:1.2em}.ui.list .list>.item>.icon+.content,.ui.list .list>.item>.icon+.content .ui.list>.item>.image+.content,.ui.list .list>.item>.image+.content,.ui.list>.item>.icon+.content,.ui.list>.item>.image+.content{display:table-cell;padding:0 0 0 .5em;vertical-align:middle}.ui.list .list>.item>img.image+.content,.ui.list>.item>img.image+.content{display:inline-block}.ui.list .list>.item [class*="top aligned"].content,.ui.list>.item>[class*="top aligned"].content{vertical-align:top}.ui.list .list>.item>.content>.list,.ui.list>.item>.content>.list{margin-left:0;padding-left:0}.ui.list .list>a.item,.ui.list>a.item{cursor:pointer;color:rgba(0,0,0,.8)}.ui.list .list>a.item:hover,.ui.list>a.item:hover{color:#00b2f3}.ui.list .list>a.item i.icon,.ui.list>a.item i.icon{color:rgba(0,0,0,.4)}.ui.list .item a{cursor:pointer;color:rgba(0,0,0,.8)!important}.ui.list .item a:hover{color:#00b2f3!important}.ui.list .list>.item .header,.ui.list>.item .header{display:block;margin:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;color:rgba(0,0,0,.8)}.ui.list .list>.item .description,.ui.list>.item .description{display:block;color:rgba(0,0,0,.8)}.ui.list .list>.item [class*="left floated"],.ui.list>.item [class*="left floated"]{float:left;margin:0 1em 0 0}.ui.list .list>.item [class*="right floated"],.ui.list>.item [class*="right floated"]{float:right;margin:0 0 0 1em}.ui.menu .ui.list .list>.item,.ui.menu .ui.list>.item{display:list-item;table-layout:fixed;background-color:transparent;list-style-type:none;list-style-position:outside;padding:.3em 0;line-height:1.2}.ui.menu .ui.list .list>.item:before,.ui.menu .ui.list>.item:before{border:none;background:0 0}.ui.menu .ui.list .list>.item:first-child,.ui.menu .ui.list>.item:first-child{padding-top:0}.ui.menu .ui.list .list>.item:last-child,.ui.menu .ui.list>.item:last-child{padding-bottom:0}.ui.horizontal.list{display:inline-block;font-size:0}.ui.horizontal.list>.item{display:inline-block;margin-left:1em;font-size:1rem}.ui.horizontal.list>.item:first-child{margin-left:0!important;padding-left:0!important}.ui.horizontal.list .list{padding-left:0;padding-bottom:0}.ui.horizontal.list>.item:first-child,.ui.horizontal.list>.item:last-child{padding-top:.3em;padding-bottom:.3em}.ui.horizontal.list>.item>i.icon{margin:0;padding:0 .25em 0 0}.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.icon+.content{float:none;display:inline-block}.ui.list .list>.disabled.item,.ui.list>.disabled.item{pointer-events:none;color:rgba(40,40,40,.3)!important}.ui.inverted.list .list>.disabled.item,.ui.inverted.list>.disabled.item{color:rgba(225,225,225,.3)!important}.ui.list .list>a.item:hover .icon,.ui.list>a.item:hover .icon{color:rgba(0,0,0,.8)}.ui.inverted.list .list>a.item>.icon,.ui.inverted.list>a.item>.icon{color:rgba(255,255,255,.8)}.ui.inverted.list .list>.item .header,.ui.inverted.list>.item .header{color:#fff}.ui.inverted.list .list>.item .description,.ui.inverted.list>.item .description{color:rgba(255,255,255,.8)}.ui.inverted.list .list>a.item,.ui.inverted.list>a.item{cursor:pointer;color:#fff}.ui.inverted.list .list>a.item:hover,.ui.inverted.list>a.item:hover{color:#00b2f3}.ui.inverted.list .item a{cursor:pointer;color:#fff!important}.ui.inverted.list .item a:hover{color:#00b2f3!important}.ui.link.list .item,.ui.link.list .item a,.ui.link.list a.item{color:rgba(0,0,0,.4);-webkit-transition:.2s color ease;transition:.2s color ease}.ui.link.list .active.item,.ui.link.list .active.item a,.ui.link.list .item a:active,.ui.link.list .item a:hover,.ui.link.list a.item:active,.ui.link.list a.item:hover{color:rgba(0,0,0,.8)}.ui.inverted.link.list .item,.ui.inverted.link.list .item a,.ui.inverted.link.list a.item{color:rgba(255,255,255,.5)}.ui.inverted.link.list .active.item a,.ui.inverted.link.list .item a:active,.ui.inverted.link.list .item a:hover,.ui.inverted.link.list a.active.item,.ui.inverted.link.list a.item:active,.ui.inverted.link.list a.item:hover{color:#fff}.ui.selection.list .list>.item,.ui.selection.list>.item{cursor:pointer;background:0 0;padding:.5em;margin:0;color:rgba(0,0,0,.4);border-radius:.5em;-webkit-transition:.2s color ease,.2s padding-left ease,.2s background-color ease;transition:.2s color ease,.2s padding-left ease,.2s background-color ease}.ui.selection.list .list>.item:last-child,.ui.selection.list>.item:last-child{margin-bottom:0}.ui.selection.list.list>.item:hover,.ui.selection.list>.item:hover{background:rgba(0,0,0,.03);color:rgba(0,0,0,.8)}.ui.selection.list .list>.item.active,.ui.selection.list .list>.item:active,.ui.selection.list>.item.active,.ui.selection.list>.item:active{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8)}.ui.inverted.selection.list>.item{background:0 0;color:rgba(255,255,255,.5)}.ui.inverted.selection.list>.item:hover{background:rgba(255,255,255,.02);color:#fff}.ui.inverted.selection.list>.item.active,.ui.inverted.selection.list>.item:active{background:rgba(255,255,255,.05);color:#fff}.ui.celled.selection.list .list>.item,.ui.celled.selection.list>.item,.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{border-radius:0}.ui.animated.list>.item{-webkit-transition:.2s color ease,.2s padding-left ease,.2s background-color ease;transition:.2s color ease,.2s padding-left ease,.2s background-color ease}.ui.animated.list:not(.horizontal)>.item:hover{padding-left:1em}.ui.fitted.list:not(.selection) .list>.item,.ui.fitted.list:not(.selection)>.item{padding-left:0;padding-right:0}.ui.fitted.selection.list .list>.item,.ui.fitted.selection.list>.item{margin-left:-.5em;margin-right:-.5em}.ui.bulleted.list,ul.ui.list{margin-left:1rem}.ui.bulleted.list .list>.item,.ui.bulleted.list>.item,ul.ui.list li{position:relative}.ui.bulleted.list .list>.item:before,.ui.bulleted.list>.item:before,ul.ui.list li:before{position:absolute;top:auto;left:auto;margin-left:-1rem;content:'•';opacity:1;color:rgba(0,0,0,.8);vertical-align:top}.ui.bulleted.list .list,ul.ui.list ul{padding-left:1rem}.ui.horizontal.bulleted.list,ul.ui.horizontal.bulleted.list{margin-left:0}.ui.horizontal.bulleted.list>.item,ul.ui.horizontal.bulleted.list li{margin-left:1.5rem}.ui.horizontal.bulleted.list>.item:first-child,ul.ui.horizontal.bulleted.list li:first-child{margin-left:0}.ui.horizontal.bulleted.list>.item:first-child::before,ul.ui.horizontal.bulleted.list li:first-child::before{display:none}.ui.ordered.list,.ui.ordered.list .list,ol.ui.list,ol.ui.list ol{counter-reset:ordered;margin-left:1.25rem;list-style-type:none}.ui.ordered.list .list>.item,.ui.ordered.list>.item,ol.ui.list li{list-style-type:none;position:relative}.ui.ordered.list .list>.item:before,.ui.ordered.list>.item:before,ol.ui.list li:before{position:absolute;top:auto;left:auto;margin-left:-1.25rem;counter-increment:ordered;content:counters(ordered,".")" ";text-align:right;color:rgba(0,0,0,.8);vertical-align:middle;opacity:.8}.ui.ordered.list .list,ol.ui.list ol{margin-left:1em}.ui.ordered.list .list>.item:before,ol.ui.list ol li:before{margin-left:-2em}.ui.ordered.horizontal.list,ol.ui.horizontal.list{margin-left:0}.ui.ordered.horizontal.list .list>.item:before,.ui.ordered.horizontal.list>.item:before,ol.ui.horizontal.list li:before{position:static;margin:0 .5em 0 0}.ui.divided.list>.item{border-top:1px solid rgba(39,41,43,.15)}.ui.divided.list .item .list>.item,.ui.divided.list .list>.item,.ui.divided.list .list>.item:first-child,.ui.divided.list>.item:first-child{border-top:none}.ui.divided.list:not(.horizontal) .list>.item:first-child{border-top-width:1px}.ui.divided.bulleted.list .list,.ui.divided.bulleted.list:not(.horizontal){margin-left:0;padding-left:0}.ui.divided.bulleted.list .list>.item:not(.horizontal),.ui.divided.bulleted.list>.item:not(.horizontal){padding-left:1rem}.ui.divided.ordered.list{margin-left:0}.ui.divided.ordered.list .list>.item,.ui.divided.ordered.list>.item{padding-left:1.25rem}.ui.divided.ordered.list .item .list{margin-left:0;margin-right:0;padding-bottom:.3em}.ui.divided.ordered.list .item .list>.item{padding-left:1em}.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{margin:0;border-radius:0}.ui.divided.horizontal.list{margin-left:0}.ui.divided.horizontal.list>.item{border-top:none;border-left:1px solid rgba(39,41,43,.15);margin:0;padding-left:.5em;padding-right:.5em;line-height:.6}.ui.horizontal.divided.list>.item:first-child{border-left:none}.ui.divided.inverted.horizontal.list>.item,.ui.divided.inverted.list>.item,.ui.divided.inverted.list>.list{border-color:rgba(255,255,255,.2)}.ui.celled.list>.item,.ui.celled.list>.list{border-top:1px solid rgba(39,41,43,.15);padding-left:.5em;padding-right:.5em}.ui.celled.list>.item:last-child{border-bottom:1px solid rgba(39,41,43,.15)}.ui.celled.list>.item:first-child,.ui.celled.list>.item:last-child{padding-top:.3em;padding-bottom:.3em}.ui.celled.list .item .list>.item{border-width:0}.ui.celled.list .list>.item:first-child{border-top-width:0}.ui.celled.bulleted.list{margin-left:0}.ui.celled.bulleted.list .list>.item,.ui.celled.bulleted.list>.item{padding-left:1rem}.ui.celled.bulleted.list .item .list{margin-left:-1rem;margin-right:-1rem;padding-bottom:.3em}.ui.celled.ordered.list{margin-left:0}.ui.celled.ordered.list .list>.item,.ui.celled.ordered.list>.item{padding-left:1.25rem}.ui.celled.ordered.list .item .list{margin-left:0;margin-right:0;padding-bottom:.3em}.ui.celled.ordered.list .list>.item{padding-left:1em}.ui.horizontal.celled.list{margin-left:0}.ui.horizontal.celled.list .list>.item,.ui.horizontal.celled.list>.item{border-top:none;border-left:1px solid rgba(39,41,43,.15);margin:0;padding-left:.5em;padding-right:.5em;line-height:.6}.ui.horizontal.celled.list .list>.item:last-child,.ui.horizontal.celled.list>.item:last-child{border-bottom:none;border-right:1px solid rgba(39,41,43,.15)}.ui.celled.inverted.horizontal.list .list>.item,.ui.celled.inverted.horizontal.list>.item,.ui.celled.inverted.list>.item,.ui.celled.inverted.list>.list{border-color:1px solid rgba(255,255,255,.2)}.ui.relaxed.list:not(.horizontal)>.item{padding-top:.5rem;padding-bottom:.5rem}.ui.horizontal.relaxed.list>.item{padding-left:1.25rem;padding-right:1.25rem}.ui[class*="very relaxed"].list:not(.horizontal)>.item{padding-top:1rem;padding-bottom:1rem}.ui.horizontal[class*="very relaxed"].list .list>.item,.ui.horizontal[class*="very relaxed"].list>.item{padding-left:2rem;padding-right:2rem}.ui.mini.list{font-size:.71428571em}.ui.tiny.list{font-size:.85714286em}.ui.small.list{font-size:.92857143em}.ui.list{font-size:1em}.ui.large.list{font-size:1.14285714em}.ui.big.list{font-size:1.28571429em}.ui.huge.list{font-size:1.42857143em}.ui.massive.list{font-size:1.71428571em}.ui.mini.horizontal.list .list>.item,.ui.mini.horizontal.list>.item{font-size:.71428571rem}.ui.tiny.horizontal.list .list>.item,.ui.tiny.horizontal.list>.item{font-size:.85714286rem}.ui.small.horizontal.list .list>.item,.ui.small.horizontal.list>.item{font-size:.92857143rem}.ui.horizontal.list .list>.item,.ui.horizontal.list>.item{font-size:1rem}.ui.large.horizontal.list .list>.item,.ui.large.horizontal.list>.item{font-size:1.14285714rem}.ui.big.horizontal.list .list>.item,.ui.big.horizontal.list>.item{font-size:1.28571429rem}.ui.huge.horizontal.list .list>.item,.ui.huge.horizontal.list>.item{font-size:1.42857143rem}.ui.massive.horizontal.list .list>.item,.ui.massive.horizontal.list>.item{font-size:1.71428571rem}.ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0;text-align:center;z-index:1000;-webkit-transform:translateX(-50%)translateY(-50%);-ms-transform:translateX(-50%)translateY(-50%);transform:translateX(-50%)translateY(-50%)}.ui.loader:before{position:absolute;content:'';top:0;left:50%;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loader:after{position:absolute;content:'';top:0;left:50%;-webkit-animation:loader .6s linear;animation:loader .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#aaa transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}@-webkit-keyframes loader{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loader{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.loader:after,.ui.loader:before{width:2.2585em;height:2.2585em;margin:0 0 0 -1.12925em}.ui.mini.loader:after,.ui.mini.loader:before{width:1.2857em;height:1.2857em;margin:0 0 0 -.64285em}.ui.small.loader:after,.ui.small.loader:before{width:1.7142em;height:1.7142em;margin:0 0 0 -.8571em}.ui.large.loader:after,.ui.large.loader:before{width:4.5714em;height:4.5714em;margin:0 0 0 -2.2857em}.ui.dimmer .loader{display:block}.ui.dimmer .ui.loader{color:#fff}.ui.dimmer .ui.loader:before{border-color:rgba(255,255,255,.15)}.ui.dimmer .ui.loader:after{border-color:#fff transparent transparent}.ui.inverted.dimmer .ui.loader{color:rgba(0,0,0,.8)}.ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,.1)}.ui.inverted.dimmer .ui.loader:after{border-color:#aaa transparent transparent}.ui.text.loader{width:auto!important;height:auto!important;text-align:center;font-style:normal}.ui.indeterminate.loader:after{-webkit-animation-direction:reverse;animation-direction:reverse;-webkit-animation-duration:1.2s;animation-duration:1.2s}.ui.loader.active,.ui.loader.visible{display:block}.ui.loader.disabled,.ui.loader.hidden{display:none}.ui.inverted.dimmer .ui.mini.loader,.ui.mini.loader{width:1.2857em;height:1.2857em;font-size:.7857em}.ui.inverted.dimmer .ui.small.loader,.ui.small.loader{width:1.7142em;height:1.7142em;font-size:.9285em}.ui.inverted.dimmer .ui.loader,.ui.loader{width:2.2585em;height:2.2585em;font-size:1em}.ui.inverted.dimmer .ui.loader.large,.ui.loader.large{width:4.5714em;height:4.5714em;font-size:1.1428em}.ui.mini.text.loader{min-width:1.2857em;padding-top:1.9857em}.ui.small.text.loader{min-width:1.7142em;padding-top:2.4142em}.ui.text.loader{min-width:2.2585em;padding-top:2.9585em}.ui.large.text.loader{min-width:4.5714em;padding-top:5.2714em}.ui.inverted.loader{color:#fff}.ui.inverted.loader:before{border-color:rgba(255,255,255,.15)}.ui.inverted.loader:after{border-top-color:#fff}.ui.inline.loader{position:relative;vertical-align:middle;margin:0;left:0;top:0;-webkit-transform:none;-ms-transform:none;transform:none}.ui.inline.loader.active,.ui.inline.loader.visible{display:inline-block}.ui.centered.inline.loader.active,.ui.centered.inline.loader.visible{display:block}.ui.rail{position:absolute;top:0;width:300px;height:100%;box-sizing:content-box;font-size:1em}.ui.left.rail{left:auto;right:100%;padding:0 2rem 0 0;margin:0 2rem 0 0}.ui.right.rail{left:100%;right:auto;padding:0 0 0 2rem;margin:0 0 0 2rem}.ui.left.internal.rail{left:0;right:auto;padding:0 0 0 2rem;margin:0 0 0 2rem}.ui.right.internal.rail{left:auto;right:0;padding:0 2rem 0 0;margin:0 2rem 0 0}.ui.left.dividing.rail{padding:0 2.5rem 0 0;margin:0 2.5rem 0 0;border-right:1px solid rgba(39,41,43,.15)}.ui.right.dividing.rail{border-left:1px solid rgba(39,41,43,.15);padding:0 0 0 2.5rem;margin:0 0 0 2.5rem}.ui.close.left.rail{padding:0 1em 0 0;margin:0 1em 0 0}.ui.close.right.rail{padding:0 0 0 1em;margin:0 0 0 1em}.ui.very.close.left.rail{padding:0 .5em 0 0;margin:0 .5em 0 0}.ui.very.close.right.rail{padding:0 0 0 .5em;margin:0 0 0 .5em}.ui.attached.left.rail,.ui.attached.right.rail{padding:0;margin:0}.ui.reveal{display:inline-block;position:relative!important;font-size:0!important}.ui.reveal>.visible.content{position:absolute!important;top:0!important;left:0!important;z-index:3!important;-webkit-transition:all .8s cubic-bezier(.175,.885,.32,1).15s;transition:all .8s cubic-bezier(.175,.885,.32,1).15s}.ui.reveal>.hidden.content{position:relative!important;z-index:2!important}.ui.reveal:hover .visible.content{z-index:4!important}.ui.slide.reveal{position:relative!important;overflow:hidden!important;white-space:nowrap}.ui.slide.reveal>.content{display:block;float:left;margin:0;-webkit-transition:-webkit-transform .8s cubic-bezier(.175,.885,.32,1).15s;transition:transform .8s cubic-bezier(.175,.885,.32,1).15s}.ui.slide.reveal>.visible.content{position:relative!important}.ui.slide.reveal>.hidden.content{position:absolute!important;left:0!important;width:100%!important;-webkit-transform:translateX(100%)!important;-ms-transform:translateX(100%)!important;transform:translateX(100%)!important}.ui.slide.reveal:hover>.visible.content{-webkit-transform:translateX(-100%)!important;-ms-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.slide.reveal:hover>.hidden.content,.ui.slide.right.reveal>.visible.content{-webkit-transform:translateX(0)!important;-ms-transform:translateX(0)!important;transform:translateX(0)!important}.ui.slide.right.reveal>.hidden.content{-webkit-transform:translateX(-100%)!important;-ms-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.slide.right.reveal:hover>.visible.content{-webkit-transform:translateX(100%)!important;-ms-transform:translateX(100%)!important;transform:translateX(100%)!important}.ui.slide.right.reveal:hover>.hidden.content{-webkit-transform:translateX(0)!important;-ms-transform:translateX(0)!important;transform:translateX(0)!important}.ui.slide.up.reveal>.hidden.content{-webkit-transform:translateY(100%)!important;-ms-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.slide.up.reveal:hover>.visible.content{-webkit-transform:translateY(-100%)!important;-ms-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.slide.up.reveal:hover>.hidden.content{-webkit-transform:translateY(0)!important;-ms-transform:translateY(0)!important;transform:translateY(0)!important}.ui.slide.down.reveal>.hidden.content{-webkit-transform:translateY(-100%)!important;-ms-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.slide.down.reveal:hover>.visible.content{-webkit-transform:translateY(100%)!important;-ms-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.slide.down.reveal:hover>.hidden.content{-webkit-transform:translateY(0)!important;-ms-transform:translateY(0)!important;transform:translateY(0)!important}.ui.fade.reveal>.visible.content{opacity:1}.ui.fade.reveal:hover>.visible.content{opacity:0}.ui.move.reveal{position:relative!important;overflow:hidden!important;white-space:nowrap}.ui.move.reveal>.content{display:block;float:left;margin:0;-webkit-transition:-webkit-transform .8s cubic-bezier(.175,.885,.32,1).15s;transition:transform .8s cubic-bezier(.175,.885,.32,1).15s}.ui.move.reveal>.visible.content{position:relative!important}.ui.move.reveal>.hidden.content{position:absolute!important;left:0!important;width:100%!important}.ui.move.reveal:hover>.visible.content{-webkit-transform:translateX(-100%)!important;-ms-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.move.right.reveal:hover>.visible.content{-webkit-transform:translateX(100%)!important;-ms-transform:translateX(100%)!important;transform:translateX(100%)!important}.ui.move.up.reveal:hover>.visible.content{-webkit-transform:translateY(-100%)!important;-ms-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.move.down.reveal:hover>.visible.content{-webkit-transform:translateY(100%)!important;-ms-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.rotate.reveal>.visible.content{-webkit-transition-duration:.8s;transition-duration:.8s;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.ui.rotate.reveal>.visible.content,.ui.rotate.right.reveal>.visible.content{-webkit-transform-origin:bottom right;-ms-transform-origin:bottom right;transform-origin:bottom right}.ui.rotate.reveal:hover>.visible.content,.ui.rotate.right.reveal:hover>.visible.content{-webkit-transform:rotate(110deg);-ms-transform:rotate(110deg);transform:rotate(110deg)}.ui.rotate.left.reveal>.visible.content{-webkit-transform-origin:bottom left;-ms-transform-origin:bottom left;transform-origin:bottom left}.ui.rotate.left.reveal:hover>.visible.content{-webkit-transform:rotate(-110deg);-ms-transform:rotate(-110deg);transform:rotate(-110deg)}.ui.disabled.reveal{opacity:1!important}.ui.disabled.reveal>.content{-webkit-transition:none!important;transition:none!important}.ui.disabled.reveal:hover>.visible.content{position:static!important;display:block!important;opacity:1!important;top:0!important;left:0!important;right:auto!important;bottom:auto!important;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.ui.disabled.reveal:hover>.hidden.content{display:none!important}.ui.masked.reveal{overflow:hidden}.ui.instant.reveal>.content{-webkit-transition-delay:0s!important;transition-delay:0s!important}.ui.reveal>.content{font-size:1rem!important}.ui.segment{position:relative;background-color:#fff;box-shadow:0 0 0 1px rgba(39,41,43,.15),0 1px 2px 0 rgba(0,0,0,.05);margin:1rem 0;padding:1em;border-radius:.2857rem;border:none}.ui.segment:first-child{margin-top:0}.ui.segment:last-child{margin-bottom:0}.ui.segment:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui[class*="vertical segment"]{margin:0;padding-left:0;padding-right:0;background-color:transparent;border-radius:0;border:none;box-shadow:0 -1px 0 rgba(39,41,43,.15)inset}.ui[class*="vertical segment"]:last-child{box-shadow:none}.ui[class*="horizontal segment"]{margin:0;padding-top:0;padding-bottom:0;background-color:transparent;border-radius:0;border:none;box-shadow:1px 0 0 rgba(39,41,43,.15)}.ui.inverted.segment>.ui.header{color:#fff}.ui[class*="bottom attached"].segment>[class*="top attached"].label{border-top-left-radius:0;border-top-right-radius:0}.ui[class*="top attached"].segment>[class*="bottom attached"].label{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.attached.segment:not(.top):not(.bottom)>[class*="top attached"].label{border-top-left-radius:0;border-top-right-radius:0}.ui.attached.segment:not(.top):not(.bottom)>[class*="bottom attached"].label{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.grid .ui.segment.column,.ui.page.grid.segment{padding-top:2em;padding-bottom:2em}.ui.grid.segment{margin:1rem 0;border-radius:.2857rem}.ui.basic.table.segment{background:#fff;border:none;box-shadow:0 0 0 1px rgba(39,41,43,.15),0 1px 2px 0 rgba(0,0,0,.05)}.ui[class*="very basic"].table.segment{padding:1em}.ui.piled.segment{margin:3em 0;box-shadow:0 0 1px 1px rgba(39,41,43,.15);z-index:auto}.ui.piled.segment:first-child{margin-top:0}.ui.piled.segment:last-child{margin-bottom:0}.ui.piled.segment:after,.ui.piled.segment:before{background-color:#fff;visibility:visible;content:'';display:block;height:100%;left:0;position:absolute;width:100%;box-shadow:0 0 1px 1px rgba(39,41,43,.15)}.ui.piled.segment:after{-webkit-transform:rotate(1.2deg);-ms-transform:rotate(1.2deg);transform:rotate(1.2deg);top:0;z-index:-1}.ui.piled.segment:before{-webkit-transform:rotate(-1.2deg);-ms-transform:rotate(-1.2deg);transform:rotate(-1.2deg);top:0;z-index:-2}.ui[class*="top attached"].piled.segment{margin-top:3em;margin-bottom:0}.ui.piled.segment[class*="top attached"]:first-child{margin-top:0}.ui.piled.segment[class*="bottom attached"]{margin-top:0;margin-bottom:3em}.ui.piled.segment[class*="bottom attached"]:last-child{margin-bottom:0}.ui.stacked.segment{padding-bottom:1.4em}.ui.stacked.segment:after,.ui.stacked.segment:before{content:'';position:absolute;bottom:-3px;left:0;border-top:1px solid rgba(39,41,43,.15);background-color:rgba(0,0,0,.03);width:100%;height:6px;visibility:visible}.ui.stacked.segment:before{display:none}.ui.tall.stacked.segment:before{display:block;bottom:0}.ui.stacked.inverted.segment:after,.ui.stacked.inverted.segment:before{background-color:rgba(0,0,0,.03);border-top:1px solid rgba(39,41,43,.3)}.ui.compact.segment{display:table}.ui.circular.segment{display:table-cell;padding:2em;text-align:center;vertical-align:middle;border-radius:500em}.ui.raised.segment{box-shadow:0 0 0 1px rgba(39,41,43,.15),0 1px 4px 0 rgba(0,0,0,.15)}.ui.disabled.segment{opacity:.3;color:rgba(40,40,40,.3)}.ui.loading.segment{position:relative;cursor:default;point-events:none;text-shadow:none!important;color:transparent!important;-webkit-transition:all 0s linear;transition:all 0s linear}.ui.loading.segment:before{position:absolute;content:'';top:0;left:0;background:rgba(255,255,255,.8);width:100%;height:100%;border-radius:.2857rem;z-index:100}.ui.loading.segment:after{position:absolute;content:'';top:50%;left:50%;margin:-1.5em 0 0 -1.5em;width:3em;height:3em;-webkit-animation:segment-spin .6s linear;animation:segment-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#aaa rgba(0,0,0,.1)rgba(0,0,0,.1);border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent;visibility:visible;z-index:101}@-webkit-keyframes segment-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes segment-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.basic.segment{position:relative;background-color:transparent;box-shadow:none;border-radius:0}.ui.fitted.segment{padding:0}.ui.black.segment:not(.inverted){border-top:2px solid #1b1c1d}.ui.blue.segment:not(.inverted){border-top:2px solid #3b83c0}.ui.green.segment:not(.inverted){border-top:2px solid #5bbd72}.ui.orange.segment:not(.inverted){border-top:2px solid #e07b53}.ui.pink.segment:not(.inverted){border-top:2px solid #d9499a}.ui.purple.segment:not(.inverted){border-top:2px solid #564f8a}.ui.red.segment:not(.inverted){border-top:2px solid #d95c5c}.ui.teal.segment:not(.inverted){border-top:2px solid #00b5ad}.ui.yellow.segment:not(.inverted){border-top:2px solid #f2c61f}.ui.black.segment:not(.inverted):not(.attached),.ui.blue.segment:not(.inverted):not(.attached),.ui.green.segment:not(.inverted):not(.attached),.ui.orange.segment:not(.inverted):not(.attached),.ui.pink.segment:not(.inverted):not(.attached),.ui.purple.segment:not(.inverted):not(.attached),.ui.red.segment:not(.inverted):not(.attached),.ui.teal.segment:not(.inverted):not(.attached),.ui.yellow.segment:not(.inverted):not(.attached){border-top-left-radius:.2857rem!important;border-top-right-radius:.2857rem!important}.ui.inverted.black.segment,.ui.inverted.segment{background-color:#1b1c1d!important;color:#fff!important}.ui.inverted.blue.segment{background-color:#3b83c0!important;color:#fff!important}.ui.inverted.green.segment{background-color:#5bbd72!important;color:#fff!important}.ui.inverted.orange.segment{background-color:#e07b53!important;color:#fff!important}.ui.inverted.pink.segment{background-color:#d9499a!important;color:#fff!important}.ui.inverted.purple.segment{background-color:#564f8a!important;color:#fff!important}.ui.inverted.red.segment{background-color:#d95c5c!important;color:#fff!important}.ui.inverted.teal.segment{background-color:#00b5ad!important;color:#fff!important}.ui.inverted.yellow.segment{background-color:#f2c61f!important;color:#fff!important}.ui[class*="left aligned"].segment{text-align:left}.ui[class*="right aligned"].segment{text-align:right}.ui[class*="center aligned"].segment{text-align:center}.ui.floated.segment,.ui[class*="left floated"].segment{float:left;margin-right:1rem}.ui[class*="right floated"].segment{float:right;margin-left:1rem}.ui.inverted.segment{border:none;box-shadow:none}.ui.inverted.segment .segment{color:rgba(0,0,0,.8)}.ui.inverted.segment .inverted.segment{color:#fff}.ui.inverted.segment,.ui.primary.inverted.segment{background-color:#1b1c1d;color:#fff}.ui.inverted.attached.segment,.ui.inverted.block.segment{border-color:#555}.ui.secondary.segment{background:#faf9fa;color:rgba(0,0,0,.8)}.ui.tertiary.segment{background:#ebebeb;color:rgba(0,0,0,.8)}.ui.secondary.inverted.segment{background:-webkit-linear-gradient(rgba(255,255,255,.3) 0,rgba(255,255,255,.3) 100%);background:linear-gradient(rgba(255,255,255,.3) 0,rgba(255,255,255,.3) 100%);color:#fafafa}.ui.tertiary.inverted.segment{background:-webkit-linear-gradient(rgba(255,255,255,.5) 0,rgba(255,255,255,.5) 100%);background:linear-gradient(rgba(255,255,255,.5) 0,rgba(255,255,255,.5) 100%);color:#f0f0f0}.ui.segment.attached{top:0;bottom:0;margin:0 -1px;width:-webkit-calc(100% + 2px);width:calc(100% + 2px);max-width:-webkit-calc(100% + 2px);max-width:calc(100% + 2px);border-radius:0;box-shadow:none;border:1px solid #d4d4d5}.ui.segment.attached+.ui.segment.attached:not(.top){border-top:none}.ui[class*="top attached"].segment{top:0;bottom:0;margin-top:1rem;margin-bottom:0;border-radius:.2857rem .2857rem 0 0}.ui.segment[class*="top attached"]:first-child{margin-top:0}.ui.segment[class*="bottom attached"]{top:0;bottom:0;margin-top:0;margin-bottom:1rem;box-shadow:none,0 1px 2px 0 rgba(0,0,0,.05);border-radius:0 0 .2857rem .2857rem}.ui.segment[class*="bottom attached"]:last-child{margin-bottom:0}.ui.segments{margin:1rem 0}.ui.segments:first-child{margin-top:0}.ui.segments:last-child{margin-bottom:0}.ui.segments>.segment{top:0;bottom:0;margin:0 -1px;width:-webkit-calc(100% + 2px);width:calc(100% + 2px);max-width:-webkit-calc(100% + 2px);max-width:calc(100% + 2px);border-radius:0;box-shadow:none;border:1px solid #d4d4d5}.ui.segments>.segment:not(:first-child){border-top:none}.ui.segments>.segment:first-child{margin-top:0;bottom:0;margin-bottom:0;top:0;border-radius:.2857rem .2857rem 0 0}.ui.segments>.segment:last-child{bottom:0;margin-top:0;margin-bottom:0;top:0;box-shadow:none,0 1px 2px 0 rgba(0,0,0,.05);border-radius:0 0 .2857rem .2857rem}.ui.steps .step{position:relative;display:table-cell;vertical-align:middle;margin:0;padding:.9285em 1.5em .9285em 2.25em;background:#fff;color:rgba(0,0,0,.8);box-shadow:0 0 0 1px #d4d4d5;border-radius:0}.ui.steps .step:after{position:absolute;z-index:2;content:'';top:50%;right:0;border:none;background-color:#fff;width:1.5em;height:1.5em;border-bottom:1px solid rgba(39,41,43,.15);border-right:1px solid rgba(39,41,43,.15);-webkit-transform:translateY(-50%)translateX(50%)rotate(-45deg);-ms-transform:translateY(-50%)translateX(50%)rotate(-45deg);transform:translateY(-50%)translateX(50%)rotate(-45deg)}.ui.steps .step,.ui.steps .step:after{-webkit-transition:background-color .2s ease,opacity .2s ease,color .2s ease,box-shadow .2s ease;transition:background-color .2s ease,opacity .2s ease,color .2s ease,box-shadow .2s ease}.ui.steps{display:table;table-layout:fixed;background:0 0;box-shadow:'';line-height:1.142rem;box-sizing:border-box;border-radius:.2857rem}.ui.steps .step:first-child{padding-left:1.5em;border-radius:.2857rem 0 0 .2857rem}.ui.steps .step:last-child{border-radius:0 .2857rem .2857rem 0;margin-right:0}.ui.steps .step:only-child{border-radius:.2857rem}.ui.steps .step:last-child:after{display:none}.ui.steps .step .title{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.0714em;font-weight:700}.ui.steps .step .description{font-weight:400;font-size:.9285em;color:rgba(0,0,0,.8)}.ui.steps .step .title~.description{margin-top:.1em}.ui.steps .step>.icon,.ui.steps .step>.icon~.content{display:table-cell;vertical-align:middle}.ui.steps .step>.icon{font-size:2em;margin:0;padding-right:.6em}.ui.steps .link.step,.ui.steps a.step{cursor:pointer}.ui.ordered.steps{counter-reset:ordered}.ui.ordered.steps .step:before{display:table-cell;position:static;text-align:center;content:counters(ordered,".");vertical-align:middle;padding-right:.6em;font-size:2em;counter-increment:ordered}.ui.ordered.steps .step>*{display:table-cell;vertical-align:middle}.ui.vertical.steps{display:inline-block;overflow:visible}.ui.vertical.steps .step{display:block;border-radius:0;padding:.9285em 1.5em}.ui.vertical.steps .step:first-child{padding:.9285em 1.5em;border-radius:.2857rem .2857rem 0 0}.ui.vertical.steps .step:last-child{border-radius:0 0 .2857rem .2857rem}.ui.vertical.steps .step:after{display:none}.ui.vertical.steps .active.step:after{display:block}@media only screen and (max-width:767px){.ui.steps{overflow:visible}.ui.steps .step{display:block;border-radius:0;padding:.9285em 1.5em}.ui.steps .step:first-child{padding:.9285em 1.5em;border-radius:.2857rem .2857rem 0 0}.ui.steps .step:last-child{border-radius:0 0 .2857rem .2857rem}.ui.steps .step:after{display:none}}.ui.steps .link.step:hover,.ui.steps .link.step:hover::after,.ui.steps a.step:hover,.ui.steps a.step:hover::after{background:#fafafa;color:rgba(0,0,0,.8)}.ui.steps .link.step:active,.ui.steps .link.step:active::after,.ui.steps a.step:active,.ui.steps a.step:active::after{background:#f0f0f0;color:rgba(0,0,0,.8)}.ui.steps .step.active{cursor:auto;background:#f0f0f0}.ui.steps .step.active:after{background:#f0f0f0}.ui.steps .step.active .title{color:#009fda}.ui.ordered.steps .step.active:before,.ui.steps .active.step .icon{color:rgba(0,0,0,.85)}.ui.steps .link.active.step:hover,.ui.steps .link.active.step:hover::after,.ui.steps a.active.step:hover,.ui.steps a.active.step:hover::after{cursor:pointer;background:#ececec;color:rgba(0,0,0,.8)}.ui.ordered.steps .step.completed:before,.ui.steps .step.completed>.icon:before{color:#5bbd72;font-family:Step;content:'\e800'}.ui.steps .disabled.step{cursor:auto;background:#fff;pointer-events:none}.ui.steps .disabled.step,.ui.steps .disabled.step .description,.ui.steps .disabled.step .title{color:rgba(40,40,40,.3)}.ui.steps .disabled.step:after{background:#fff}@media only screen and (min-width:992px){.ui[class*="tablet stackable"].steps{overflow:visible}.ui[class*="tablet stackable"].steps .step{display:block;border-radius:0;padding:.9285em 1.5em}.ui[class*="tablet stackable"].steps .step:first-child{padding:.9285em 1.5em;border-radius:.2857rem .2857rem 0 0}.ui[class*="tablet stackable"].steps .step:last-child{border-radius:0 0 .2857rem .2857rem}.ui[class*="tablet stackable"].steps .step:after{display:none}}.ui.fluid.steps{width:100%}.attached.ui.steps{margin:0;border-radius:.2857rem .2857rem 0 0}.attached.ui.steps .step:first-child{border-radius:.2857rem 0 0}.attached.ui.steps .step:last-child{border-radius:0 .2857rem 0 0}.bottom.attached.ui.steps{margin:-1px 0 0;border-radius:0 0 .2857rem .2857rem}.bottom.attached.ui.steps .step:first-child{border-radius:0 0 0 .2857rem}.bottom.attached.ui.steps .step:last-child{border-radius:0 0 .2857rem}.ui.eight.steps,.ui.five.steps,.ui.four.steps,.ui.one.steps,.ui.one.steps>.step,.ui.seven.steps,.ui.six.steps,.ui.three.steps,.ui.two.steps{width:100%}.ui.two.steps>.step{width:50%}.ui.three.steps>.step{width:33.333%}.ui.four.steps>.step{width:25%}.ui.five.steps>.step{width:20%}.ui.six.steps>.step{width:16.666%}.ui.seven.steps>.step{width:14.285%}.ui.eight.steps>.step{width:12.5%}.ui.small.step,.ui.small.steps .step{font-size:.92857143rem}.ui.step,.ui.steps .step{font-size:1rem}.ui.large.step,.ui.large.steps .step{font-size:1.14285714rem}@font-face{font-family:Step;src:url("data:application/x-font-ttf;charset=utf-8;;base64,AAEAAAAOAIAAAwBgT1MvMj3hSQEAAADsAAAAVmNtYXDQEhm3AAABRAAAAUpjdnQgBkn/lAAABuwAAAAcZnBnbYoKeDsAAAcIAAAJkWdhc3AAAAAQAAAG5AAAAAhnbHlm32cEdgAAApAAAAC2aGVhZAErPHsAAANIAAAANmhoZWEHUwNNAAADgAAAACRobXR4CykAAAAAA6QAAAAMbG9jYQA4AFsAAAOwAAAACG1heHAApgm8AAADuAAAACBuYW1lzJ0aHAAAA9gAAALNcG9zdK69QJgAAAaoAAAAO3ByZXCSoZr/AAAQnAAAAFYAAQO4AZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6ADoAQNS/2oAWgMLAE8AAAABAAAAAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADoAf//AAAAAOgA//8AABgBAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADpAKYABUAHEAZDwEAAQFCAAIBAmoAAQABagAAAGEUFxQDEisBFAcBBiInASY0PwE2Mh8BATYyHwEWA6QP/iAQLBD+6g8PTBAsEKQBbhAsEEwPAhYWEP4gDw8BFhAsEEwQEKUBbxAQTBAAAAH//f+xA18DCwAMABJADwABAQpDAAAACwBEFRMCESsBFA4BIi4CPgEyHgEDWXLG6MhuBnq89Lp+AV51xHR0xOrEdHTEAAAAAAEAAAABAADDeRpdXw889QALA+gAAAAAzzWYjQAAAADPNWBN//3/sQOkAwsAAAAIAAIAAAAAAAAAAQAAA1L/agBaA+gAAP/3A6QAAQAAAAAAAAAAAAAAAAAAAAMD6AAAA+gAAANZAAAAAAAAADgAWwABAAAAAwAWAAEAAAAAAAIABgATAG4AAAAtCZEAAAAAAAAAEgDeAAEAAAAAAAAANQAAAAEAAAAAAAEACAA1AAEAAAAAAAIABwA9AAEAAAAAAAMACABEAAEAAAAAAAQACABMAAEAAAAAAAUACwBUAAEAAAAAAAYACABfAAEAAAAAAAoAKwBnAAEAAAAAAAsAEwCSAAMAAQQJAAAAagClAAMAAQQJAAEAEAEPAAMAAQQJAAIADgEfAAMAAQQJAAMAEAEtAAMAAQQJAAQAEAE9AAMAAQQJAAUAFgFNAAMAAQQJAAYAEAFjAAMAAQQJAAoAVgFzAAMAAQQJAAsAJgHJQ29weXJpZ2h0IChDKSAyMDE0IGJ5IG9yaWdpbmFsIGF1dGhvcnMgQCBmb250ZWxsby5jb21mb250ZWxsb1JlZ3VsYXJmb250ZWxsb2ZvbnRlbGxvVmVyc2lvbiAxLjBmb250ZWxsb0dlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAEMAbwBwAHkAcgBpAGcAaAB0ACAAKABDACkAIAAyADAAMQA0ACAAYgB5ACAAbwByAGkAZwBpAG4AYQBsACAAYQB1AHQAaABvAHIAcwAgAEAAIABmAG8AbgB0AGUAbABsAG8ALgBjAG8AbQBmAG8AbgB0AGUAbABsAG8AUgBlAGcAdQBsAGEAcgBmAG8AbgB0AGUAbABsAG8AZgBvAG4AdABlAGwAbABvAFYAZQByAHMAaQBvAG4AIAAxAC4AMABmAG8AbgB0AGUAbABsAG8ARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAAAAAIAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAQIBAwljaGVja21hcmsGY2lyY2xlAAAAAAEAAf//AA8AAAAAAAAAAAAAAAAAAAAAADIAMgML/7EDC/+xsAAssCBgZi2wASwgZCCwwFCwBCZasARFW1ghIyEbilggsFBQWCGwQFkbILA4UFghsDhZWSCwCkVhZLAoUFghsApFILAwUFghsDBZGyCwwFBYIGYgiophILAKUFhgGyCwIFBYIbAKYBsgsDZQWCGwNmAbYFlZWRuwACtZWSOwAFBYZVlZLbACLCBFILAEJWFkILAFQ1BYsAUjQrAGI0IbISFZsAFgLbADLCMhIyEgZLEFYkIgsAYjQrIKAAIqISCwBkMgiiCKsAArsTAFJYpRWGBQG2FSWVgjWSEgsEBTWLAAKxshsEBZI7AAUFhlWS2wBCywB0MrsgACAENgQi2wBSywByNCIyCwACNCYbCAYrABYLAEKi2wBiwgIEUgsAJFY7ABRWJgRLABYC2wBywgIEUgsAArI7ECBCVgIEWKI2EgZCCwIFBYIbAAG7AwUFiwIBuwQFlZI7AAUFhlWbADJSNhRESwAWAtsAgssQUFRbABYUQtsAkssAFgICCwCUNKsABQWCCwCSNCWbAKQ0qwAFJYILAKI0JZLbAKLCC4BABiILgEAGOKI2GwC0NgIIpgILALI0IjLbALLEtUWLEHAURZJLANZSN4LbAMLEtRWEtTWLEHAURZGyFZJLATZSN4LbANLLEADENVWLEMDEOwAWFCsAorWbAAQ7ACJUKxCQIlQrEKAiVCsAEWIyCwAyVQWLEBAENgsAQlQoqKIIojYbAJKiEjsAFhIIojYbAJKiEbsQEAQ2CwAiVCsAIlYbAJKiFZsAlDR7AKQ0dgsIBiILACRWOwAUViYLEAABMjRLABQ7AAPrIBAQFDYEItsA4ssQAFRVRYALAMI0IgYLABYbUNDQEACwBCQopgsQ0FK7BtKxsiWS2wDyyxAA4rLbAQLLEBDistsBEssQIOKy2wEiyxAw4rLbATLLEEDistsBQssQUOKy2wFSyxBg4rLbAWLLEHDistsBcssQgOKy2wGCyxCQ4rLbAZLLAIK7EABUVUWACwDCNCIGCwAWG1DQ0BAAsAQkKKYLENBSuwbSsbIlktsBossQAZKy2wGyyxARkrLbAcLLECGSstsB0ssQMZKy2wHiyxBBkrLbAfLLEFGSstsCAssQYZKy2wISyxBxkrLbAiLLEIGSstsCMssQkZKy2wJCwgPLABYC2wJSwgYLANYCBDI7ABYEOwAiVhsAFgsCQqIS2wJiywJSuwJSotsCcsICBHICCwAkVjsAFFYmAjYTgjIIpVWCBHICCwAkVjsAFFYmAjYTgbIVktsCgssQAFRVRYALABFrAnKrABFTAbIlktsCkssAgrsQAFRVRYALABFrAnKrABFTAbIlktsCosIDWwAWAtsCssALADRWOwAUVisAArsAJFY7ABRWKwACuwABa0AAAAAABEPiM4sSoBFSotsCwsIDwgRyCwAkVjsAFFYmCwAENhOC2wLSwuFzwtsC4sIDwgRyCwAkVjsAFFYmCwAENhsAFDYzgtsC8ssQIAFiUgLiBHsAAjQrACJUmKikcjRyNhIFhiGyFZsAEjQrIuAQEVFCotsDAssAAWsAQlsAQlRyNHI2GwBkUrZYouIyAgPIo4LbAxLLAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjILAIQyCKI0cjRyNhI0ZgsARDsIBiYCCwACsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsIBiYSMgILAEJiNGYTgbI7AIQ0awAiWwCENHI0cjYWAgsARDsIBiYCMgsAArI7AEQ2CwACuwBSVhsAUlsIBisAQmYSCwBCVgZCOwAyVgZFBYIRsjIVkjICCwBCYjRmE4WS2wMiywABYgICCwBSYgLkcjRyNhIzw4LbAzLLAAFiCwCCNCICAgRiNHsAArI2E4LbA0LLAAFrADJbACJUcjRyNhsABUWC4gPCMhG7ACJbACJUcjRyNhILAFJbAEJUcjRyNhsAYlsAUlSbACJWGwAUVjIyBYYhshWWOwAUViYCMuIyAgPIo4IyFZLbA1LLAAFiCwCEMgLkcjRyNhIGCwIGBmsIBiIyAgPIo4LbA2LCMgLkawAiVGUlggPFkusSYBFCstsDcsIyAuRrACJUZQWCA8WS6xJgEUKy2wOCwjIC5GsAIlRlJYIDxZIyAuRrACJUZQWCA8WS6xJgEUKy2wOSywMCsjIC5GsAIlRlJYIDxZLrEmARQrLbA6LLAxK4ogIDywBCNCijgjIC5GsAIlRlJYIDxZLrEmARQrsARDLrAmKy2wOyywABawBCWwBCYgLkcjRyNhsAZFKyMgPCAuIzixJgEUKy2wPCyxCAQlQrAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjIEewBEOwgGJgILAAKyCKimEgsAJDYGQjsANDYWRQWLACQ2EbsANDYFmwAyWwgGJhsAIlRmE4IyA8IzgbISAgRiNHsAArI2E4IVmxJgEUKy2wPSywMCsusSYBFCstsD4ssDErISMgIDywBCNCIzixJgEUK7AEQy6wJistsD8ssAAVIEewACNCsgABARUUEy6wLCotsEAssAAVIEewACNCsgABARUUEy6wLCotsEEssQABFBOwLSotsEIssC8qLbBDLLAAFkUjIC4gRoojYTixJgEUKy2wRCywCCNCsEMrLbBFLLIAADwrLbBGLLIAATwrLbBHLLIBADwrLbBILLIBATwrLbBJLLIAAD0rLbBKLLIAAT0rLbBLLLIBAD0rLbBMLLIBAT0rLbBNLLIAADkrLbBOLLIAATkrLbBPLLIBADkrLbBQLLIBATkrLbBRLLIAADsrLbBSLLIAATsrLbBTLLIBADsrLbBULLIBATsrLbBVLLIAAD4rLbBWLLIAAT4rLbBXLLIBAD4rLbBYLLIBAT4rLbBZLLIAADorLbBaLLIAATorLbBbLLIBADorLbBcLLIBATorLbBdLLAyKy6xJgEUKy2wXiywMiuwNistsF8ssDIrsDcrLbBgLLAAFrAyK7A4Ky2wYSywMysusSYBFCstsGIssDMrsDYrLbBjLLAzK7A3Ky2wZCywMyuwOCstsGUssDQrLrEmARQrLbBmLLA0K7A2Ky2wZyywNCuwNystsGgssDQrsDgrLbBpLLA1Ky6xJgEUKy2waiywNSuwNistsGsssDUrsDcrLbBsLLA1K7A4Ky2wbSwrsAhlsAMkUHiwARUwLQAAAEu4AMhSWLEBAY5ZuQgACABjILABI0SwAyNwsgQoCUVSRLIKAgcqsQYBRLEkAYhRWLBAiFixBgNEsSYBiFFYuAQAiFixBgFEWVlZWbgB/4WwBI2xBQBEAAA=")format('truetype'),url("data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAoUAA4AAAAAEPQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPeFJAWNtYXAAAAGIAAAAOgAAAUrQEhm3Y3Z0IAAAAcQAAAAUAAAAHAZJ/5RmcGdtAAAB2AAABPkAAAmRigp4O2dhc3AAAAbUAAAACAAAAAgAAAAQZ2x5ZgAABtwAAACuAAAAtt9nBHZoZWFkAAAHjAAAADUAAAA2ASs8e2hoZWEAAAfEAAAAIAAAACQHUwNNaG10eAAAB+QAAAAMAAAADAspAABsb2NhAAAH8AAAAAgAAAAIADgAW21heHAAAAf4AAAAIAAAACAApgm8bmFtZQAACBgAAAF3AAACzcydGhxwb3N0AAAJkAAAACoAAAA7rr1AmHByZXAAAAm8AAAAVgAAAFaSoZr/eJxjYGTewTiBgZWBg6mKaQ8DA0MPhGZ8wGDIyMTAwMTAysyAFQSkuaYwOLxgeMHIHPQ/iyGKmZvBHyjMCJIDAPe9C2B4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF4w/v8PUvCCAURLMELVAwEjG8OIBwBk5AavAAB4nGNgQANGDEbM3P83gjAAELQD4XicnVXZdtNWFJU8ZHASOmSgoA7X3DhQ68qEKRgwaSrFdiEdHAitBB2kDHTkncc+62uOQrtWH/m07n09JLR0rbYsls++R1tn2DrnRhwjKn0aiGvUoZKXA6msPZZK90lc13Uvj5UMBnFdthJPSZuonSRKat3sUC7xWOsqWSdYJ+PlIFZPVZ5noAziFB5lSUQbRBuplyZJ4onjJ4kWZxAfJUkgJaMQp9LIUEI1GsRS1aFM6dCr1xNx00DKRqMedVhU90PFJ8c1p9SsA0YqVznCFevVRr4bpwMve5DEOsGzrYcxHnisfpQqkIqR6cg/dkpOlIaBVHHUoVbi6DCTX/eRTCrNQKaMYkWl7oG43f102xYxPXQ6vi5KlUaqurnOKJrt0fGogygP2cbppNzQ2fbw5RlTVKtdcbPtQGYNXErJbHSfRAAdJlLj6QFONZwCqRn1R8XZ588BEslclKo8VTKHegOZMzt7cTHtbiersnCknwcyb3Z2452HQ6dXh3/R+hdM4cxHj+Jifj5C+lBqfiJOJKVGWMzyp4YfcVcgQrkxiAsXyuBThDl0RdrZZl3jtTH2hs/5SqlhPQna6KP4fgr9TiQrHGdRo/VInM1j13Wt3GdQS7W7Fzsyr0OVIu7vCwuuM+eEYZ4WC1VfnvneBTT/Bohn/EDeNIVL+5YpSrRvm6JMu2iKCu0SVKVdNsUU7YoppmnPmmKG9h1TzNKeMzLj/8vc55H7HN7xkJv2XeSmfQ+5ad9HbtoPkJtWITdtHblpLyA3rUZu2lWjOnYEGgZpF1IVQdA0svph3Fab9UDWjDR8aWDyLmLI+upER521tcofxX914gsHcmmip7siF5viLq/bFj483e6rj5pG3bDV+MaR8jAeRnocmtBZ+c3hv+1N3S6a7jKqMugBFUwKwABl7UAC0zrbCaT1mqf48gdgXIZ4zkpDtVSfO4am7+V5X/exOfG+x+3GLrdcd3kJWdYNcmP28N9SZKrrH+UtrVQnR6wrJ49VaxhDKrwour6SlHu0tRu/KKmy8l6U1srnk5CbPYMbQlu27mGwI0xpyiUeXlOlKD3UUo6yQyxvKco84JSLC1qGxLgOdQ9qa8TpoXoYGwshhqG0vRBwSCldFd+0ynfxHqtr2Oj4xRXh6XpyEhGf4ir7UfBU10b96A7avGbdMoMpVaqn+4xPsa/b9lFZaaSOsxe3VAfXNOsaORXTT+Rr4HRvOGjdAz1UfDRBI1U1x+jGKGM0ljXl3wR0MVZ+w2jVYvs93E+dpFWsuUuY7JsT9+C0u/0q+7WcW0bW/dcGvW3kip8jMb8tCvw7B2K3ZA3UO5OBGAvIWdAYxhYmdxiug23EbfY/Jqf/34aFRXJXOxq7eerD1ZNRJXfZ8rjLTXZZ16M2R9VOGvsIjS0PN+bY4XIstsRgQbb+wf8x7gF3aVEC4NDIZZiI2nShnurh6h6rsW04VxIBds2x43QAegAuQd8cu9bzCYD13CPnLsB9cgh2yCH4lByCz8i5BfA5OQRfkEMwIIdgl5w7AA/IIXhIDsEeOQSPyNkE+JIcgq/IIYjJIUjIuQ3wmByCJ+QQfE0OwTdGrk5k/pYH2QD6zqKbQKmdGhzaOGRGrk3Y+zxY9oFFZB9aROqRkesT6lMeLPV7i0j9wSJSfzRyY0L9iQdL/dkiUn+xiNRnxpeZIymvDp7zjg7+BJfqrV4AAAAAAQAB//8AD3icY2BkAALmJUwzGEQZZBwk+RkZGBmdGJgYmbIYgMwsoGSiiLgIs5A2owg7I5uSOqOaiT2jmZE8I5gQY17C/09BQEfg3yt+fh8gvYQxD0j68DOJiQn8U+DnZxQDcQUEljLmCwBpBgbG/3//b2SOZ+Zm4GEQcuAH2sblDLSEm8FFVJhJEGgLH6OSHpMdo5EcI3Nk0bEXJ/LYqvZ82VXHGFd6pKTkyCsQwQAAq+QkqAAAeJxjYGRgYADiw5VSsfH8Nl8ZuJlfAEUYzpvO6IXQCb7///7fyLyEmRvI5WBgAokCAFb/DJAAAAB4nGNgZGBgDvqfxRDF/IKB4f935iUMQBEUwAwAi5YFpgPoAAAD6AAAA1kAAAAAAAAAOABbAAEAAAADABYAAQAAAAAAAgAGABMAbgAAAC0JkQAAAAB4nHWQy2rCQBSG//HSi0JbWui2sypKabxgN4IgWHTTbqS4LTHGJBIzMhkFX6Pv0IfpS/RZ+puMpShNmMx3vjlz5mQAXOMbAvnzxJGzwBmjnAs4Rc9ykf7Zcon8YrmMKt4sn9C/W67gAYHlKm7wwQqidM5ogU/LAlfi0nIBF+LOcpH+0XKJ3LNcxq14tXxC71muYCJSy1Xci6+BWm11FIRG1gZ12W62OnK6lYoqStxYumsTKp3KvpyrxPhxrBxPLfc89oN17Op9uJ8nvk4jlciW09yrkZ/42jX+bFc93QRtY+ZyrtVSDm2GXGm18D3jhMasuo3G3/MwgMIKW2hEvKoQBhI12jrnNppooUOaMkMyM8+KkMBFTONizR1htpIy7nPMGSW0PjNisgOP3+WRH5MC7o9ZRR+tHsYT0u6MKPOSfTns7jBrREqyTDezs9/eU2x4WpvWcNeuS511JTE8qCF5H7u1BY1H72S3Ymi7aPD95/9+AN1fhEsAeJxjYGKAAC4G7ICZgYGRiZGZMzkjNTk7N7Eomy05syg5J5WBAQBE1QZBAABLuADIUlixAQGOWbkIAAgAYyCwASNEsAMjcLIEKAlFUkSyCgIHKrEGAUSxJAGIUViwQIhYsQYDRLEmAYhRWLgEAIhYsQYBRFlZWVm4Af+FsASNsQUARAAA")format('woff')}.ui.breadcrumb{margin:1em 0;display:inline-block;vertical-align:middle}.ui.breadcrumb:first-child{margin-top:0}.ui.breadcrumb:last-child{margin-bottom:0}.ui.breadcrumb .divider{display:inline-block;opacity:.5;margin:0 .2rem;font-size:.9em;color:rgba(0,0,0,.4);vertical-align:baseline}.ui.breadcrumb a{color:#009fda}.ui.breadcrumb a:hover{color:#00b2f3}.ui.breadcrumb .icon.divider{font-size:.85714286em;vertical-align:baseline}.ui.breadcrumb a.section{cursor:pointer}.ui.breadcrumb .section{display:inline-block;margin:0;padding:0}.ui.breadcrumb.segment{display:inline-block;padding:.5em 1em}.ui.breadcrumb .active.section{font-weight:700}.ui.mini.breadcrumb{font-size:.65em}.ui.tiny.breadcrumb{font-size:.7em}.ui.small.breadcrumb{font-size:.75em}.ui.breadcrumb{font-size:1em}.ui.large.breadcrumb{font-size:1.1em}.ui.big.breadcrumb{font-size:1.05em}.ui.huge.breadcrumb{font-size:1.3em}.ui.massive.breadcrumb{font-size:1.5em}.ui.form{position:relative;max-width:100%}.ui.form>p{margin:1em 0}.ui.form .field,.ui.form .fields .field{clear:both;margin:0 0 1em}.ui.form .field:last-child,.ui.form .fields:last-child{margin-bottom:0}.ui.form .field>label{display:block;margin:0 0 .2857rem;color:rgba(0,0,0,.8);font-size:.9285em;font-weight:700;text-transform:none}.ui.form .grouped.fields>label{margin:0 0 .2857rem;color:rgba(0,0,0,.8);font-weight:700;text-transform:none}.ui.form .inline.fields>label{display:inline-block;vertical-align:middle;margin:0 1em 0 0;color:rgba(0,0,0,.8);font-size:.9285em;font-weight:700;text-transform:none}.ui.form .ui.input,.ui.form input:not([type]),.ui.form input[type=number],.ui.form input[type=text],.ui.form input[type=email],.ui.form input[type=search],.ui.form input[type=password],.ui.form input[type=date],.ui.form input[type=datetime-local],.ui.form input[type=tel],.ui.form input[type=time],.ui.form input[type=url],.ui.form textarea{width:100%;vertical-align:top}.ui.form input:not([type]),.ui.form input[type=number],.ui.form input[type=text],.ui.form input[type=email],.ui.form input[type=search],.ui.form input[type=password],.ui.form input[type=date],.ui.form input[type=datetime-local],.ui.form input[type=tel],.ui.form input[type=time],.ui.form input[type=url]{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;margin:0;outline:0;-webkit-appearance:none;tap-highlight-color:rgba(255,255,255,0);line-height:1.2142em;padding:.67861em 1em;font-size:1em;background:#fff;border:1px solid rgba(39,41,43,.15);color:rgba(0,0,0,.8);border-radius:.2857rem;box-shadow:0 0 0 0 transparent inset;-webkit-transition:background-color .2s ease,color .2s ease,box-shadow .2s ease,border-color .2s ease;transition:background-color .2s ease,color .2s ease,box-shadow .2s ease,border-color .2s ease}.ui.form textarea,.ui.textarea{margin:0;-webkit-appearance:none;tap-highlight-color:rgba(255,255,255,0);padding:.78571em 1em;background:#fff;border:1px solid rgba(39,41,43,.15);outline:0;color:rgba(0,0,0,.8);border-radius:.2857rem;box-shadow:0 0 0 0 transparent inset;-webkit-transition:background-color .2s ease,color .2s ease,box-shadow .2s ease,border-color .2s ease;transition:background-color .2s ease,color .2s ease,box-shadow .2s ease,border-color .2s ease;font-size:1em;height:12em;min-height:8em;max-height:24em;line-height:1.2857;resize:vertical}.ui.form input[type=checkbox],.ui.form textarea{vertical-align:top}.ui.form input.attached{width:auto}.ui.form select{display:block;height:auto;width:100%;background:#fff;border:1px solid rgba(39,41,43,.15);border-radius:.2857rem;box-shadow:0 0 0 0 transparent inset;padding:.62em 1em;color:rgba(0,0,0,.8);-webkit-transition:background-color .2s ease,color .2s ease,box-shadow .2s ease,border-color .2s ease;transition:background-color .2s ease,color .2s ease,box-shadow .2s ease,border-color .2s ease}.ui.form .field>.selection.dropdown{width:100%}.ui.form .field>.selection.dropdown>.dropdown.icon{float:right}.ui.form .inline.field>.selection.dropdown{width:auto}.ui.form .inline.field>.selection.dropdown>.dropdown.icon{float:none}.ui.form .divider{clear:both;margin:1em 0}.ui.form .error.message,.ui.form .success.message,.ui.form .warning.message{display:none}.ui.form .message:first-child{margin-top:0}.ui.form .field .prompt.label{white-space:nowrap}.ui.form .inline.field .prompt{margin:-.5em 0 -.5em 1em}.ui.form .inline.field .prompt:before{margin-top:-.3em;bottom:auto;right:auto;top:50%;left:0}.ui.form ::-webkit-input-placeholder{color:rgba(140,140,140,.8)}.ui.form ::-moz-placeholder{color:rgba(140,140,140,.8)}.ui.form :focus::-webkit-input-placeholder{color:rgba(89,89,89,.8)}.ui.form :focus::-moz-placeholder{color:rgba(89,89,89,.8)}.ui.form .error ::-webkit-input-placeholder{color:#e38585}.ui.form .error ::-moz-placeholder{color:#e38585}.ui.form .error :focus::-webkit-input-placeholder{color:#de7171}.ui.form .error :focus::-moz-placeholder{color:#de7171}.ui.form input:not([type]):focus,.ui.form input[type=number]:focus,.ui.form input[type=text]:focus,.ui.form input[type=email]:focus,.ui.form input[type=search]:focus,.ui.form input[type=password]:focus,.ui.form input[type=date]:focus,.ui.form input[type=datetime-local]:focus,.ui.form input[type=tel]:focus,.ui.form input[type=time]:focus,.ui.form input[type=url]:focus{color:rgba(0,0,0,.85);border-color:rgba(39,41,43,.3);border-radius:0 .2857rem .2857rem 0;background:#fff;box-shadow:1px 0 0 0 rgba(39,41,43,.3)inset}.ui.form textarea:focus{color:rgba(0,0,0,.85);border-color:rgba(39,41,43,.3);border-radius:0 .2857rem .2857rem 0;background:#fff;box-shadow:1px 0 0 0 rgba(39,41,43,.3)inset;-webkit-appearance:none}.ui.form.error .error.message,.ui.form.success .success.message,.ui.form.warning .warning.message{display:block}.ui.form .field.error .input,.ui.form .field.error label,.ui.form .fields.error .field .input,.ui.form .fields.error .field label{color:#d95c5c}.ui.form .field.error .corner.label,.ui.form .fields.error .field .corner.label{border-color:#d95c5c;color:#fff}.ui.form .field.error input:not([type]),.ui.form .field.error input[type=number],.ui.form .field.error input[type=text],.ui.form .field.error input[type=email],.ui.form .field.error input[type=search],.ui.form .field.error input[type=password],.ui.form .field.error input[type=date],.ui.form .field.error input[type=datetime-local],.ui.form .field.error input[type=tel],.ui.form .field.error input[type=time],.ui.form .field.error input[type=url],.ui.form .field.error select,.ui.form .field.error textarea,.ui.form .fields.error .field input:not([type]),.ui.form .fields.error .field input[type=number],.ui.form .fields.error .field input[type=text],.ui.form .fields.error .field input[type=email],.ui.form .fields.error .field input[type=search],.ui.form .fields.error .field input[type=password],.ui.form .fields.error .field input[type=date],.ui.form .fields.error .field input[type=datetime-local],.ui.form .fields.error .field input[type=tel],.ui.form .fields.error .field input[type=time],.ui.form .fields.error .field input[type=url],.ui.form .fields.error .field select,.ui.form .fields.error .field textarea{background:#fff0f0;border-color:#dbb1b1;color:#d95c5c;border-radius:0 .2857rem .2857rem 0;box-shadow:2px 0 0 0 #d95c5c inset}.ui.form .field.error input:not([type]):focus,.ui.form .field.error input[type=number]:focus,.ui.form .field.error input[type=text]:focus,.ui.form .field.error input[type=email]:focus,.ui.form .field.error input[type=search]:focus,.ui.form .field.error input[type=password]:focus,.ui.form .field.error input[type=date]:focus,.ui.form .field.error input[type=datetime-local]:focus,.ui.form .field.error input[type=tel]:focus,.ui.form .field.error input[type=time]:focus,.ui.form .field.error input[type=url]:focus,.ui.form .field.error select:focus,.ui.form .field.error textarea:focus{background:#fff0f0;border-color:#dbb1b1;color:#dc6868;-webkit-appearance:none;box-shadow:2px 0 0 0 #dc6868 inset}.ui.form .field.error select{-webkit-appearance:menulist-button}.ui.form .field.error .ui.dropdown,.ui.form .field.error .ui.dropdown .item,.ui.form .field.error .ui.dropdown .text,.ui.form .fields.error .field .ui.dropdown,.ui.form .fields.error .field .ui.dropdown .item{background:#fff0f0;color:#d95c5c}.ui.form .field.error .ui.dropdown,.ui.form .field.error .ui.dropdown:hover,.ui.form .fields.error .field .ui.dropdown,.ui.form .fields.error .field .ui.dropdown:hover{border-color:#dbb1b1!important}.ui.form .field.error .ui.dropdown:hover .menu,.ui.form .fields.error .field .ui.dropdown:hover .menu{border-color:#dbb1b1}.ui.form .field.error .ui.dropdown .menu .item:hover,.ui.form .fields.error .field .ui.dropdown .menu .item:hover{background-color:#fbe7e7}.ui.form .field.error .ui.dropdown .menu .active.item,.ui.form .fields.error .field .ui.dropdown .menu .active.item{background-color:#fdcfcf!important}.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box,.ui.form .field.error .checkbox:not(.toggle):not(.slider) label,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label{color:#d95c5c}.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box:before,.ui.form .field.error .checkbox:not(.toggle):not(.slider) label:before,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before{background:#fff0f0;border-color:#dbb1b1}.ui.form .field.error .checkbox .box:after,.ui.form .field.error .checkbox label:after,.ui.form .fields.error .field .checkbox .box:after,.ui.form .fields.error .field .checkbox label:after{color:#d95c5c}.ui.form .field :disabled,.ui.form .field.disabled,.ui.form .field.disabled label{opacity:.5}.ui.form .field.disabled :disabled{opacity:1}.ui.loading.form{position:relative;cursor:default;point-events:none;text-shadow:none!important;color:transparent!important;-webkit-transition:all 0s linear;transition:all 0s linear;z-index:100}.ui.loading.form:before{position:absolute;content:'';top:0;left:0;background:rgba(255,255,255,.8);width:100%;height:100%;z-index:100}.ui.loading.form:after{position:absolute;content:'';top:50%;left:50%;margin:-1.5em 0 0 -1.5em;width:3em;height:3em;-webkit-animation:form-spin .6s linear;animation:form-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#aaa rgba(0,0,0,.1)rgba(0,0,0,.1);border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent;visibility:visible;z-index:101}@-webkit-keyframes form-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes form-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.form .required.field>.checkbox:after,.ui.form .required.field>label:after,.ui.form .required.fields.grouped>label:after,.ui.form .required.fields:not(.grouped)>.field>.checkbox:after,.ui.form .required.fields:not(.grouped)>.field>label:after{margin:-.2em 0 0 .2em;content:'*';color:#d95c5c}.ui.form .required.field>label:after,.ui.form .required.fields.grouped>label:after,.ui.form .required.fields:not(.grouped)>.field>label:after{display:inline-block;vertical-align:top}.ui.form .required.field>.checkbox:after,.ui.form .required.fields:not(.grouped)>.field>.checkbox:after{position:absolute;top:0;left:100%}.ui.form .inverted.segment .ui.checkbox .box,.ui.form .inverted.segment .ui.checkbox label,.ui.form .inverted.segment label,.ui.inverted.form .ui.checkbox .box,.ui.inverted.form .ui.checkbox label,.ui.inverted.form label{color:#fff}.ui.form .grouped.fields{margin:0 0 1em}.ui.form .grouped.fields:last-child{margin-bottom:0}.ui.form .grouped.fields>label{font-size:.9285em}.ui.form .grouped.fields .field{display:block;float:none;margin:.5em 0;padding:0}.ui.form .fields{clear:both}.ui.form .fields:after{content:' ';display:block;clear:both;visibility:hidden;line-height:0;height:0}.ui.form .fields>.field{clear:none;float:left;padding-left:.5em;padding-right:.5em}.ui.form .fields>.field:first-child{border-left:none;box-shadow:none}.ui.form .two.fields>.field,.ui.form .two.fields>.fields{width:50%}.ui.form .three.fields>.field,.ui.form .three.fields>.fields{width:33.33333333%}.ui.form .four.fields>.field,.ui.form .four.fields>.fields{width:25%}.ui.form .five.fields>.field,.ui.form .five.fields>.fields{width:20%}.ui.form .six.fields>.field,.ui.form .six.fields>.fields{width:16.66666667%}.ui.form .seven.fields>.field,.ui.form .seven.fields>.fields{width:14.28571429%}.ui.form .eight.fields>.field,.ui.form .eight.fields>.fields{width:12.5%}.ui.form .nine.fields>.field,.ui.form .nine.fields>.fields{width:11.11111111%}.ui.form .ten.fields>.field,.ui.form .ten.fields>.fields{width:10%}@media only screen and (max-width:767px){.ui.form .eight.fields>.field,.ui.form .eight.fields>.fields,.ui.form .five.fields>.field,.ui.form .five.fields>.fields,.ui.form .four.fields>.field,.ui.form .four.fields>.fields,.ui.form .nine.fields>.field,.ui.form .nine.fields>.fields,.ui.form .seven.fields>.field,.ui.form .seven.fields>.fields,.ui.form .six.fields>.field,.ui.form .six.fields>.fields,.ui.form .ten.fields>.field,.ui.form .ten.fields>.fields,.ui.form .three.fields>.field,.ui.form .three.fields>.fields,.ui.form .two.fields>.field,.ui.form .two.fields>.fields{width:100%!important;margin:0 0 1em;padding-left:0;padding-right:0}}.ui.form .fields .field:first-child{padding-left:0}.ui.form .fields .field:last-child{padding-right:0}.ui.form .fields .wide.field{width:6.25%;padding-left:.5em;padding-right:.5em}.ui.form .fields .wide.field:first-child{padding-left:0}.ui.form .fields .wide.field:last-child{padding-right:0}.ui.form .one.wide.field{width:6.25%!important}.ui.form .two.wide.field{width:12.5%!important}.ui.form .three.wide.field{width:18.75%!important}.ui.form .four.wide.field{width:25%!important}.ui.form .five.wide.field{width:31.25%!important}.ui.form .six.wide.field{width:37.5%!important}.ui.form .seven.wide.field{width:43.75%!important}.ui.form .eight.wide.field{width:50%!important}.ui.form .nine.wide.field{width:56.25%!important}.ui.form .ten.wide.field{width:62.5%!important}.ui.form .eleven.wide.field{width:68.75%!important}.ui.form .twelve.wide.field{width:75%!important}.ui.form .thirteen.wide.field{width:81.25%!important}.ui.form .fourteen.wide.field{width:87.5%!important}.ui.form .fifteen.wide.field{width:93.75%!important}.ui.form .sixteen.wide.field{width:100%!important}@media only screen and (max-width:767px){.ui.form .fields>.eight.wide.field,.ui.form .fields>.eleven.wide.field,.ui.form .fields>.fifteen.wide.field,.ui.form .fields>.five.wide.field,.ui.form .fields>.four.wide.field,.ui.form .fields>.fourteen.wide.field,.ui.form .fields>.nine.wide.field,.ui.form .fields>.seven.wide.field,.ui.form .fields>.six.wide.field,.ui.form .fields>.sixteen.wide.field,.ui.form .fields>.ten.wide.field,.ui.form .fields>.thirteen.wide.field,.ui.form .fields>.three.wide.field,.ui.form .fields>.twelve.wide.field,.ui.form .fields>.two.wide.field,.ui.form .five.fields>.field,.ui.form .five.fields>.fields,.ui.form .four.fields>.field,.ui.form .four.fields>.fields,.ui.form .three.fields>.field,.ui.form .three.fields>.fields,.ui.form .two.fields>.field,.ui.form .two.fields>.fields{width:100%!important;margin:0 0 1em;padding-left:0;padding-right:0}}.ui.form .inline.fields{margin:0 0 1em}.ui.form .inline.fields .field{display:inline-block;float:none;margin:0 1em 0 0;padding:0}.ui.form .inline.field>.ui.input,.ui.form .inline.field>input,.ui.form .inline.field>label,.ui.form .inline.field>p,.ui.form .inline.fields .field>.ui.input,.ui.form .inline.fields .field>input,.ui.form .inline.fields .field>label,.ui.form .inline.fields .field>p{display:inline-block;width:auto;margin-top:0;margin-bottom:0;vertical-align:middle;font-size:.9285em}.ui.form .inline.field>.ui.input,.ui.form .inline.field>input,.ui.form .inline.fields .field>.ui.input,.ui.form .inline.fields .field>input{font-size:.9285em}.ui.form .inline.fields .field>.ui.checkbox label{padding-left:1.75em}.ui.form .inline.field>:first-child,.ui.form .inline.fields .field>:first-child{margin:0 .2857rem 0 0}.ui.form .inline.field>:only-child,.ui.form .inline.fields .field>:only-child{margin:0}.ui.small.form{font-size:.875em}.ui.form{font-size:auto}.ui.large.form{font-size:1.125em}.ui.huge.form{font-size:1.2em}.ui.grid{display:block;text-align:left;font-size:0;padding:0;margin:-1rem}.ui.grid:after,.ui.grid>.row:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.relaxed.grid{margin-left:-1.5rem;margin-right:-1.5rem}.ui[class*="very relaxed"].grid{margin-left:-2.5rem;margin-right:-2.5rem}.ui.grid+.grid{margin-top:1rem}.ui.grid>.column:not(.row),.ui.grid>.row>.column{position:relative;display:inline-block;font-size:1rem;width:6.25%;padding-left:1rem;padding-right:1rem;vertical-align:top}.ui.grid>*{padding-left:1rem;padding-right:1rem}.ui.grid>.row{position:relative;display:block;width:auto!important;padding:1rem 0;font-size:0}.ui.grid>.column:not(.row){padding-top:1rem;padding-bottom:1rem}.ui.grid>.row>.column{margin-top:0;margin-bottom:0}.ui.grid>.row>.column>img,.ui.grid>.row>img{max-width:100%}.ui.grid .row+.ui.divider{margin:1rem}.ui.grid>.column:last-child>.horizontal.segment,.ui.grid>.row>.column:last-child>.horizontal.segment{box-shadow:none}.ui.page.grid{padding-left:8%;padding-right:8%;width:auto}.ui.grid>.ui.grid:first-child{margin-top:0}.ui.grid>.ui.grid:last-child{margin-bottom:0}@media only screen and (max-width:767px){.ui.page.grid{width:auto;padding-left:0;padding-right:0;margin-left:0;margin-right:0}}@media only screen and (min-width:768px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:4em;padding-right:4em}}@media only screen and (min-width:992px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:8%;padding-right:8%}}@media only screen and (min-width:1400px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:15%;padding-right:15%}}@media only screen and (min-width:1920px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:23%;padding-right:23%}}.ui.grid>.column:only-child,.ui.grid>.row>.column:only-child,.ui[class*="one column"].grid>.column,.ui[class*="one column"].grid>.row>.column{width:100%}.ui[class*="two column"].grid>.column,.ui[class*="two column"].grid>.row>.column{width:50%}.ui[class*="three column"].grid>.column,.ui[class*="three column"].grid>.row>.column{width:33.33333333%}.ui[class*="four column"].grid>.column,.ui[class*="four column"].grid>.row>.column{width:25%}.ui[class*="five column"].grid>.column,.ui[class*="five column"].grid>.row>.column{width:20%}.ui[class*="six column"].grid>.column,.ui[class*="six column"].grid>.row>.column{width:16.66666667%}.ui[class*="seven column"].grid>.column,.ui[class*="seven column"].grid>.row>.column{width:14.28571429%}.ui[class*="eight column"].grid>.column,.ui[class*="eight column"].grid>.row>.column{width:12.5%}.ui[class*="nine column"].grid>.column,.ui[class*="nine column"].grid>.row>.column{width:11.11111111%}.ui[class*="ten column"].grid>.column,.ui[class*="ten column"].grid>.row>.column{width:10%}.ui[class*="eleven column"].grid>.column,.ui[class*="eleven column"].grid>.row>.column{width:9.09090909%}.ui[class*="twelve column"].grid>.column,.ui[class*="twelve column"].grid>.row>.column{width:8.33333333%}.ui[class*="thirteen column"].grid>.column,.ui[class*="thirteen column"].grid>.row>.column{width:7.69230769%}.ui[class*="fourteen column"].grid>.column,.ui[class*="fourteen column"].grid>.row>.column{width:7.14285714%}.ui[class*="fifteen column"].grid>.column,.ui[class*="fifteen column"].grid>.row>.column{width:6.66666667%}.ui[class*="sixteen column"].grid>.column,.ui[class*="sixteen column"].grid>.row>.column{width:6.25%}.ui.grid>[class*="one column"].row>.column{width:100%!important}.ui.grid>[class*="two column"].row>.column{width:50%!important}.ui.grid>[class*="three column"].row>.column{width:33.33333333%!important}.ui.grid>[class*="four column"].row>.column{width:25%!important}.ui.grid>[class*="five column"].row>.column{width:20%!important}.ui.grid>[class*="six column"].row>.column{width:16.66666667%!important}.ui.grid>[class*="seven column"].row>.column{width:14.28571429%!important}.ui.grid>[class*="eight column"].row>.column{width:12.5%!important}.ui.grid>[class*="nine column"].row>.column{width:11.11111111%!important}.ui.grid>[class*="ten column"].row>.column{width:10%!important}.ui.grid>[class*="eleven column"].row>.column{width:9.09090909%!important}.ui.grid>[class*="twelve column"].row>.column{width:8.33333333%!important}.ui.grid>[class*="thirteen column"].row>.column{width:7.69230769%!important}.ui.grid>[class*="fourteen column"].row>.column{width:7.14285714%!important}.ui.grid>[class*="fifteen column"].row>.column{width:6.66666667%!important}.ui.column.grid>[class*="one wide"].column,.ui.grid>.column.row>[class*="one wide"].column,.ui.grid>.row>[class*="one wide"].column,.ui.grid>[class*="sixteen column"].row>.column,.ui.grid>[class*="one wide"].column{width:6.25%!important}.ui.column.grid>[class*="two wide"].column,.ui.grid>.column.row>[class*="two wide"].column,.ui.grid>.row>[class*="two wide"].column,.ui.grid>[class*="two wide"].column{width:12.5%!important}.ui.column.grid>[class*="three wide"].column,.ui.grid>.column.row>[class*="three wide"].column,.ui.grid>.row>[class*="three wide"].column,.ui.grid>[class*="three wide"].column{width:18.75%!important}.ui.column.grid>[class*="four wide"].column,.ui.grid>.column.row>[class*="four wide"].column,.ui.grid>.row>[class*="four wide"].column,.ui.grid>[class*="four wide"].column{width:25%!important}.ui.column.grid>[class*="five wide"].column,.ui.grid>.column.row>[class*="five wide"].column,.ui.grid>.row>[class*="five wide"].column,.ui.grid>[class*="five wide"].column{width:31.25%!important}.ui.column.grid>[class*="six wide"].column,.ui.grid>.column.row>[class*="six wide"].column,.ui.grid>.row>[class*="six wide"].column,.ui.grid>[class*="six wide"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide"].column,.ui.grid>.column.row>[class*="seven wide"].column,.ui.grid>.row>[class*="seven wide"].column,.ui.grid>[class*="seven wide"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide"].column,.ui.grid>.column.row>[class*="eight wide"].column,.ui.grid>.row>[class*="eight wide"].column,.ui.grid>[class*="eight wide"].column{width:50%!important}.ui.column.grid>[class*="nine wide"].column,.ui.grid>.column.row>[class*="nine wide"].column,.ui.grid>.row>[class*="nine wide"].column,.ui.grid>[class*="nine wide"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide"].column,.ui.grid>.column.row>[class*="ten wide"].column,.ui.grid>.row>[class*="ten wide"].column,.ui.grid>[class*="ten wide"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide"].column,.ui.grid>.column.row>[class*="eleven wide"].column,.ui.grid>.row>[class*="eleven wide"].column,.ui.grid>[class*="eleven wide"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide"].column,.ui.grid>.column.row>[class*="twelve wide"].column,.ui.grid>.row>[class*="twelve wide"].column,.ui.grid>[class*="twelve wide"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide"].column,.ui.grid>.column.row>[class*="thirteen wide"].column,.ui.grid>.row>[class*="thirteen wide"].column,.ui.grid>[class*="thirteen wide"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide"].column,.ui.grid>.column.row>[class*="fourteen wide"].column,.ui.grid>.row>[class*="fourteen wide"].column,.ui.grid>[class*="fourteen wide"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide"].column,.ui.grid>.column.row>[class*="fifteen wide"].column,.ui.grid>.row>[class*="fifteen wide"].column,.ui.grid>[class*="fifteen wide"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide"].column,.ui.grid>.column.row>[class*="sixteen wide"].column,.ui.grid>.row>[class*="sixteen wide"].column,.ui.grid>[class*="sixteen wide"].column{width:100%!important}@media only screen and (min-width:320px)and (max-width:767px){.ui.column.grid>[class*="one wide mobile"].column,.ui.grid>.column.row>[class*="one wide mobile"].column,.ui.grid>.row>[class*="one wide mobile"].column,.ui.grid>[class*="one wide mobile"].column{width:6.25%!important}.ui.column.grid>[class*="two wide mobile"].column,.ui.grid>.column.row>[class*="two wide mobile"].column,.ui.grid>.row>[class*="two wide mobile"].column,.ui.grid>[class*="two wide mobile"].column{width:12.5%!important}.ui.column.grid>[class*="three wide mobile"].column,.ui.grid>.column.row>[class*="three wide mobile"].column,.ui.grid>.row>[class*="three wide mobile"].column,.ui.grid>[class*="three wide mobile"].column{width:18.75%!important}.ui.column.grid>[class*="four wide mobile"].column,.ui.grid>.column.row>[class*="four wide mobile"].column,.ui.grid>.row>[class*="four wide mobile"].column,.ui.grid>[class*="four wide mobile"].column{width:25%!important}.ui.column.grid>[class*="five wide mobile"].column,.ui.grid>.column.row>[class*="five wide mobile"].column,.ui.grid>.row>[class*="five wide mobile"].column,.ui.grid>[class*="five wide mobile"].column{width:31.25%!important}.ui.column.grid>[class*="six wide mobile"].column,.ui.grid>.column.row>[class*="six wide mobile"].column,.ui.grid>.row>[class*="six wide mobile"].column,.ui.grid>[class*="six wide mobile"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide mobile"].column,.ui.grid>.column.row>[class*="seven wide mobile"].column,.ui.grid>.row>[class*="seven wide mobile"].column,.ui.grid>[class*="seven wide mobile"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide mobile"].column,.ui.grid>.column.row>[class*="eight wide mobile"].column,.ui.grid>.row>[class*="eight wide mobile"].column,.ui.grid>[class*="eight wide mobile"].column{width:50%!important}.ui.column.grid>[class*="nine wide mobile"].column,.ui.grid>.column.row>[class*="nine wide mobile"].column,.ui.grid>.row>[class*="nine wide mobile"].column,.ui.grid>[class*="nine wide mobile"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide mobile"].column,.ui.grid>.column.row>[class*="ten wide mobile"].column,.ui.grid>.row>[class*="ten wide mobile"].column,.ui.grid>[class*="ten wide mobile"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide mobile"].column,.ui.grid>.column.row>[class*="eleven wide mobile"].column,.ui.grid>.row>[class*="eleven wide mobile"].column,.ui.grid>[class*="eleven wide mobile"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide mobile"].column,.ui.grid>.column.row>[class*="twelve wide mobile"].column,.ui.grid>.row>[class*="twelve wide mobile"].column,.ui.grid>[class*="twelve wide mobile"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide mobile"].column,.ui.grid>.column.row>[class*="thirteen wide mobile"].column,.ui.grid>.row>[class*="thirteen wide mobile"].column,.ui.grid>[class*="thirteen wide mobile"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide mobile"].column,.ui.grid>.column.row>[class*="fourteen wide mobile"].column,.ui.grid>.row>[class*="fourteen wide mobile"].column,.ui.grid>[class*="fourteen wide mobile"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide mobile"].column,.ui.grid>.column.row>[class*="fifteen wide mobile"].column,.ui.grid>.row>[class*="fifteen wide mobile"].column,.ui.grid>[class*="fifteen wide mobile"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide mobile"].column,.ui.grid>.column.row>[class*="sixteen wide mobile"].column,.ui.grid>.row>[class*="sixteen wide mobile"].column,.ui.grid>[class*="sixteen wide mobile"].column{width:100%!important}}@media only screen and (min-width:768px)and (max-width:991px){.ui.column.grid>[class*="one wide tablet"].column,.ui.grid>.column.row>[class*="one wide tablet"].column,.ui.grid>.row>[class*="one wide tablet"].column,.ui.grid>[class*="one wide tablet"].column{width:6.25%!important}.ui.column.grid>[class*="two wide tablet"].column,.ui.grid>.column.row>[class*="two wide tablet"].column,.ui.grid>.row>[class*="two wide tablet"].column,.ui.grid>[class*="two wide tablet"].column{width:12.5%!important}.ui.column.grid>[class*="three wide tablet"].column,.ui.grid>.column.row>[class*="three wide tablet"].column,.ui.grid>.row>[class*="three wide tablet"].column,.ui.grid>[class*="three wide tablet"].column{width:18.75%!important}.ui.column.grid>[class*="four wide tablet"].column,.ui.grid>.column.row>[class*="four wide tablet"].column,.ui.grid>.row>[class*="four wide tablet"].column,.ui.grid>[class*="four wide tablet"].column{width:25%!important}.ui.column.grid>[class*="five wide tablet"].column,.ui.grid>.column.row>[class*="five wide tablet"].column,.ui.grid>.row>[class*="five wide tablet"].column,.ui.grid>[class*="five wide tablet"].column{width:31.25%!important}.ui.column.grid>[class*="six wide tablet"].column,.ui.grid>.column.row>[class*="six wide tablet"].column,.ui.grid>.row>[class*="six wide tablet"].column,.ui.grid>[class*="six wide tablet"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide tablet"].column,.ui.grid>.column.row>[class*="seven wide tablet"].column,.ui.grid>.row>[class*="seven wide tablet"].column,.ui.grid>[class*="seven wide tablet"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide tablet"].column,.ui.grid>.column.row>[class*="eight wide tablet"].column,.ui.grid>.row>[class*="eight wide tablet"].column,.ui.grid>[class*="eight wide tablet"].column{width:50%!important}.ui.column.grid>[class*="nine wide tablet"].column,.ui.grid>.column.row>[class*="nine wide tablet"].column,.ui.grid>.row>[class*="nine wide tablet"].column,.ui.grid>[class*="nine wide tablet"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide tablet"].column,.ui.grid>.column.row>[class*="ten wide tablet"].column,.ui.grid>.row>[class*="ten wide tablet"].column,.ui.grid>[class*="ten wide tablet"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide tablet"].column,.ui.grid>.column.row>[class*="eleven wide tablet"].column,.ui.grid>.row>[class*="eleven wide tablet"].column,.ui.grid>[class*="eleven wide tablet"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide tablet"].column,.ui.grid>.column.row>[class*="twelve wide tablet"].column,.ui.grid>.row>[class*="twelve wide tablet"].column,.ui.grid>[class*="twelve wide tablet"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide tablet"].column,.ui.grid>.column.row>[class*="thirteen wide tablet"].column,.ui.grid>.row>[class*="thirteen wide tablet"].column,.ui.grid>[class*="thirteen wide tablet"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide tablet"].column,.ui.grid>.column.row>[class*="fourteen wide tablet"].column,.ui.grid>.row>[class*="fourteen wide tablet"].column,.ui.grid>[class*="fourteen wide tablet"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide tablet"].column,.ui.grid>.column.row>[class*="fifteen wide tablet"].column,.ui.grid>.row>[class*="fifteen wide tablet"].column,.ui.grid>[class*="fifteen wide tablet"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide tablet"].column,.ui.grid>.column.row>[class*="sixteen wide tablet"].column,.ui.grid>.row>[class*="sixteen wide tablet"].column,.ui.grid>[class*="sixteen wide tablet"].column{width:100%!important}}@media only screen and (min-width:992px){.ui.column.grid>[class*="one wide computer"].column,.ui.grid>.column.row>[class*="one wide computer"].column,.ui.grid>.row>[class*="one wide computer"].column,.ui.grid>[class*="one wide computer"].column{width:6.25%!important}.ui.column.grid>[class*="two wide computer"].column,.ui.grid>.column.row>[class*="two wide computer"].column,.ui.grid>.row>[class*="two wide computer"].column,.ui.grid>[class*="two wide computer"].column{width:12.5%!important}.ui.column.grid>[class*="three wide computer"].column,.ui.grid>.column.row>[class*="three wide computer"].column,.ui.grid>.row>[class*="three wide computer"].column,.ui.grid>[class*="three wide computer"].column{width:18.75%!important}.ui.column.grid>[class*="four wide computer"].column,.ui.grid>.column.row>[class*="four wide computer"].column,.ui.grid>.row>[class*="four wide computer"].column,.ui.grid>[class*="four wide computer"].column{width:25%!important}.ui.column.grid>[class*="five wide computer"].column,.ui.grid>.column.row>[class*="five wide computer"].column,.ui.grid>.row>[class*="five wide computer"].column,.ui.grid>[class*="five wide computer"].column{width:31.25%!important}.ui.column.grid>[class*="six wide computer"].column,.ui.grid>.column.row>[class*="six wide computer"].column,.ui.grid>.row>[class*="six wide computer"].column,.ui.grid>[class*="six wide computer"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide computer"].column,.ui.grid>.column.row>[class*="seven wide computer"].column,.ui.grid>.row>[class*="seven wide computer"].column,.ui.grid>[class*="seven wide computer"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide computer"].column,.ui.grid>.column.row>[class*="eight wide computer"].column,.ui.grid>.row>[class*="eight wide computer"].column,.ui.grid>[class*="eight wide computer"].column{width:50%!important}.ui.column.grid>[class*="nine wide computer"].column,.ui.grid>.column.row>[class*="nine wide computer"].column,.ui.grid>.row>[class*="nine wide computer"].column,.ui.grid>[class*="nine wide computer"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide computer"].column,.ui.grid>.column.row>[class*="ten wide computer"].column,.ui.grid>.row>[class*="ten wide computer"].column,.ui.grid>[class*="ten wide computer"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide computer"].column,.ui.grid>.column.row>[class*="eleven wide computer"].column,.ui.grid>.row>[class*="eleven wide computer"].column,.ui.grid>[class*="eleven wide computer"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide computer"].column,.ui.grid>.column.row>[class*="twelve wide computer"].column,.ui.grid>.row>[class*="twelve wide computer"].column,.ui.grid>[class*="twelve wide computer"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide computer"].column,.ui.grid>.column.row>[class*="thirteen wide computer"].column,.ui.grid>.row>[class*="thirteen wide computer"].column,.ui.grid>[class*="thirteen wide computer"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide computer"].column,.ui.grid>.column.row>[class*="fourteen wide computer"].column,.ui.grid>.row>[class*="fourteen wide computer"].column,.ui.grid>[class*="fourteen wide computer"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide computer"].column,.ui.grid>.column.row>[class*="fifteen wide computer"].column,.ui.grid>.row>[class*="fifteen wide computer"].column,.ui.grid>[class*="fifteen wide computer"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide computer"].column,.ui.grid>.column.row>[class*="sixteen wide computer"].column,.ui.grid>.row>[class*="sixteen wide computer"].column,.ui.grid>[class*="sixteen wide computer"].column{width:100%!important}}@media only screen and (min-width:1400px)and (max-width:1919px){.ui.column.grid>[class*="one wide large screen"].column,.ui.grid>.column.row>[class*="one wide large screen"].column,.ui.grid>.row>[class*="one wide large screen"].column,.ui.grid>[class*="one wide large screen"].column{width:6.25%!important}.ui.column.grid>[class*="two wide large screen"].column,.ui.grid>.column.row>[class*="two wide large screen"].column,.ui.grid>.row>[class*="two wide large screen"].column,.ui.grid>[class*="two wide large screen"].column{width:12.5%!important}.ui.column.grid>[class*="three wide large screen"].column,.ui.grid>.column.row>[class*="three wide large screen"].column,.ui.grid>.row>[class*="three wide large screen"].column,.ui.grid>[class*="three wide large screen"].column{width:18.75%!important}.ui.column.grid>[class*="four wide large screen"].column,.ui.grid>.column.row>[class*="four wide large screen"].column,.ui.grid>.row>[class*="four wide large screen"].column,.ui.grid>[class*="four wide large screen"].column{width:25%!important}.ui.column.grid>[class*="five wide large screen"].column,.ui.grid>.column.row>[class*="five wide large screen"].column,.ui.grid>.row>[class*="five wide large screen"].column,.ui.grid>[class*="five wide large screen"].column{width:31.25%!important}.ui.column.grid>[class*="six wide large screen"].column,.ui.grid>.column.row>[class*="six wide large screen"].column,.ui.grid>.row>[class*="six wide large screen"].column,.ui.grid>[class*="six wide large screen"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide large screen"].column,.ui.grid>.column.row>[class*="seven wide large screen"].column,.ui.grid>.row>[class*="seven wide large screen"].column,.ui.grid>[class*="seven wide large screen"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide large screen"].column,.ui.grid>.column.row>[class*="eight wide large screen"].column,.ui.grid>.row>[class*="eight wide large screen"].column,.ui.grid>[class*="eight wide large screen"].column{width:50%!important}.ui.column.grid>[class*="nine wide large screen"].column,.ui.grid>.column.row>[class*="nine wide large screen"].column,.ui.grid>.row>[class*="nine wide large screen"].column,.ui.grid>[class*="nine wide large screen"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide large screen"].column,.ui.grid>.column.row>[class*="ten wide large screen"].column,.ui.grid>.row>[class*="ten wide large screen"].column,.ui.grid>[class*="ten wide large screen"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide large screen"].column,.ui.grid>.column.row>[class*="eleven wide large screen"].column,.ui.grid>.row>[class*="eleven wide large screen"].column,.ui.grid>[class*="eleven wide large screen"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide large screen"].column,.ui.grid>.column.row>[class*="twelve wide large screen"].column,.ui.grid>.row>[class*="twelve wide large screen"].column,.ui.grid>[class*="twelve wide large screen"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide large screen"].column,.ui.grid>.column.row>[class*="thirteen wide large screen"].column,.ui.grid>.row>[class*="thirteen wide large screen"].column,.ui.grid>[class*="thirteen wide large screen"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide large screen"].column,.ui.grid>.column.row>[class*="fourteen wide large screen"].column,.ui.grid>.row>[class*="fourteen wide large screen"].column,.ui.grid>[class*="fourteen wide large screen"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide large screen"].column,.ui.grid>.column.row>[class*="fifteen wide large screen"].column,.ui.grid>.row>[class*="fifteen wide large screen"].column,.ui.grid>[class*="fifteen wide large screen"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide large screen"].column,.ui.grid>.column.row>[class*="sixteen wide large screen"].column,.ui.grid>.row>[class*="sixteen wide large screen"].column,.ui.grid>[class*="sixteen wide large screen"].column{width:100%!important}}@media only screen and (min-width:1920px){.ui.column.grid>[class*="one wide widescreen"].column,.ui.grid>.column.row>[class*="one wide widescreen"].column,.ui.grid>.row>[class*="one wide widescreen"].column,.ui.grid>[class*="one wide widescreen"].column{width:6.25%!important}.ui.column.grid>[class*="two wide widescreen"].column,.ui.grid>.column.row>[class*="two wide widescreen"].column,.ui.grid>.row>[class*="two wide widescreen"].column,.ui.grid>[class*="two wide widescreen"].column{width:12.5%!important}.ui.column.grid>[class*="three wide widescreen"].column,.ui.grid>.column.row>[class*="three wide widescreen"].column,.ui.grid>.row>[class*="three wide widescreen"].column,.ui.grid>[class*="three wide widescreen"].column{width:18.75%!important}.ui.column.grid>[class*="four wide widescreen"].column,.ui.grid>.column.row>[class*="four wide widescreen"].column,.ui.grid>.row>[class*="four wide widescreen"].column,.ui.grid>[class*="four wide widescreen"].column{width:25%!important}.ui.column.grid>[class*="five wide widescreen"].column,.ui.grid>.column.row>[class*="five wide widescreen"].column,.ui.grid>.row>[class*="five wide widescreen"].column,.ui.grid>[class*="five wide widescreen"].column{width:31.25%!important}.ui.column.grid>[class*="six wide widescreen"].column,.ui.grid>.column.row>[class*="six wide widescreen"].column,.ui.grid>.row>[class*="six wide widescreen"].column,.ui.grid>[class*="six wide widescreen"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide widescreen"].column,.ui.grid>.column.row>[class*="seven wide widescreen"].column,.ui.grid>.row>[class*="seven wide widescreen"].column,.ui.grid>[class*="seven wide widescreen"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide widescreen"].column,.ui.grid>.column.row>[class*="eight wide widescreen"].column,.ui.grid>.row>[class*="eight wide widescreen"].column,.ui.grid>[class*="eight wide widescreen"].column{width:50%!important}.ui.column.grid>[class*="nine wide widescreen"].column,.ui.grid>.column.row>[class*="nine wide widescreen"].column,.ui.grid>.row>[class*="nine wide widescreen"].column,.ui.grid>[class*="nine wide widescreen"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide widescreen"].column,.ui.grid>.column.row>[class*="ten wide widescreen"].column,.ui.grid>.row>[class*="ten wide widescreen"].column,.ui.grid>[class*="ten wide widescreen"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide widescreen"].column,.ui.grid>.column.row>[class*="eleven wide widescreen"].column,.ui.grid>.row>[class*="eleven wide widescreen"].column,.ui.grid>[class*="eleven wide widescreen"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide widescreen"].column,.ui.grid>.column.row>[class*="twelve wide widescreen"].column,.ui.grid>.row>[class*="twelve wide widescreen"].column,.ui.grid>[class*="twelve wide widescreen"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide widescreen"].column,.ui.grid>.column.row>[class*="thirteen wide widescreen"].column,.ui.grid>.row>[class*="thirteen wide widescreen"].column,.ui.grid>[class*="thirteen wide widescreen"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide widescreen"].column,.ui.grid>.column.row>[class*="fourteen wide widescreen"].column,.ui.grid>.row>[class*="fourteen wide widescreen"].column,.ui.grid>[class*="fourteen wide widescreen"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide widescreen"].column,.ui.grid>.column.row>[class*="fifteen wide widescreen"].column,.ui.grid>.row>[class*="fifteen wide widescreen"].column,.ui.grid>[class*="fifteen wide widescreen"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide widescreen"].column,.ui.grid>.column.row>[class*="sixteen wide widescreen"].column,.ui.grid>.row>[class*="sixteen wide widescreen"].column,.ui.grid>[class*="sixteen wide widescreen"].column{width:100%!important}}.ui.centered.grid,.ui.centered.grid>.row,.ui.grid>.centered.row{text-align:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.ui.centered.grid>.column:not(.aligned):not(.row),.ui.centered.grid>.row>.column:not(.aligned),.ui.grid .centered.row>.column:not(.aligned){text-align:left}.ui.grid>.centered.column,.ui.grid>.row>.centered.column{display:block;margin-left:auto;margin-right:auto}.ui.grid>.relaxed.row>.column,.ui.relaxed.grid>.column:not(.row),.ui.relaxed.grid>.row>.column{padding-left:1.5rem;padding-right:1.5rem}.ui.grid>[class*="very relaxed"].row>.column,.ui[class*="very relaxed"].grid>.column:not(.row),.ui[class*="very relaxed"].grid>.row>.column{padding-left:2.5rem;padding-right:2.5rem}.ui.grid .relaxed.row+.ui.divider,.ui.relaxed.grid .row+.ui.divider{margin-left:1.5rem;margin-right:1.5rem}.ui.grid [class*="very relaxed"].row+.ui.divider,.ui[class*="very relaxed"].grid .row+.ui.divider{margin-left:2.5rem;margin-right:2.5rem}.ui.padded.grid:not(.vertically):not(.horizontally){margin:0!important}[class*="horizontally padded"].ui.grid{margin-left:0!important;margin-right:0!important}[class*="vertically padded"].ui.grid{margin-top:0!important;margin-bottom:0!important}.ui.grid [class*="left floated"].column{float:left}.ui.grid [class*="right floated"].column{float:right}.ui.divided.grid:not([class*="vertically divided"])>.column:not(.row),.ui.divided.grid:not([class*="vertically divided"])>.row>.column{box-shadow:-1px 0 0 0 rgba(39,41,43,.15)}.ui[class*="vertically divided"].grid>.column:not(.row),.ui[class*="vertically divided"].grid>.row>.column{margin-top:1rem;margin-bottom:1rem;padding-top:0;padding-bottom:0}.ui[class*="vertically divided"].grid>.row{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;position:relative}.ui.divided.grid:not([class*="vertically divided"])>.column:first-child,.ui.divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:none}.ui.grid>.divided.row>.column{box-shadow:-1px 0 0 0 rgba(39,41,43,.15)}.ui.grid>.divided.row>.column:first-child{box-shadow:none}.ui[class*="vertically divided"].grid>.row:before{position:absolute;content:"";top:0;left:0;width:-webkit-calc(100% - 2rem);width:calc(100% - 2rem);height:1px;margin:0 1rem;box-shadow:0 -1px 0 0 rgba(39,41,43,.15)}.ui.padded.divided.grid:not(.vertically):not(.horizontally),[class*="horizontally padded"].ui.divided.grid{width:100%}.ui[class*="vertically divided"].grid>.row:first-child:before{box-shadow:none}.ui.inverted.divided.grid:not([class*="vertically divided"])>.column:not(.row),.ui.inverted.divided.grid:not([class*="vertically divided"])>.row>.column{box-shadow:-1px 0 0 0 rgba(255,255,255,.2)}.ui.inverted.divided.grid:not([class*="vertically divided"])>.column:not(.row):first-child,.ui.inverted.divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:none}.ui.inverted[class*="vertically divided"].grid>.row:before{box-shadow:0 -1px 0 0 rgba(255,255,255,.2)}.ui.relaxed[class*="vertically divided"].grid>.row:before{margin-left:1.5rem;margin-right:1.5rem;width:-webkit-calc(100% - 3rem);width:calc(100% - 3rem)}.ui[class*="very relaxed"][class*="vertically divided"].grid>.row:before{margin-left:5rem;margin-right:5rem;width:-webkit-calc(100% - 5rem);width:calc(100% - 5rem)}.ui.celled.grid{display:table;table-layout:fixed;width:100%;margin:1em 0;box-shadow:0 0 0 1px #d4d4d5}.ui.celled.grid>.column.row,.ui.celled.grid>.column.row:first-child,.ui.celled.grid>.row{display:table;table-layout:fixed;width:100%!important;margin:0;padding:0;box-shadow:0 -1px 0 0 #d4d4d5}.ui.celled.grid>.column:not(.row),.ui.celled.grid>.row>.column{display:table-cell;box-shadow:-1px 0 0 0 #d4d4d5;padding:.75em}.ui.celled.grid>.column:first-child,.ui.celled.grid>.row>.column:first-child,.ui.celled.page.grid{box-shadow:none}.ui.relaxed.celled.grid>.column:not(.row),.ui.relaxed.celled.grid>.row>.column{padding:1em}.ui[class*="very relaxed"].celled.grid>.column:not(.row),.ui[class*="very relaxed"].celled.grid>.row>.column{padding:2em}.ui[class*="internally celled"].grid,.ui[class*="internally celled"].grid>.row:first-child,.ui[class*="internally celled"].grid>.row>.column:first-child{box-shadow:none}.ui.grid [class*="left aligned"].column,.ui.grid>[class*="left aligned"].row>.column,.ui[class*="left aligned"].grid,.ui[class*="left aligned"].grid>.column,.ui[class*="left aligned"].grid>.row>.column{text-align:left;-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.ui.grid [class*="left aligned"].column{text-align:left!important}.ui.grid>[class*="center aligned"].row>.column,.ui[class*="center aligned"].grid,.ui[class*="center aligned"].grid>.column,.ui[class*="center aligned"].grid>.row>.column{text-align:center;-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.ui.grid [class*="center aligned"].column{text-align:center!important}.ui.grid>[class*="right aligned"].row>.column,.ui[class*="right aligned"].grid,.ui[class*="right aligned"].grid>.column,.ui[class*="right aligned"].grid>.row>.column{text-align:right;-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.ui.grid [class*="right aligned"].column{text-align:right!important}.ui.grid .justified.column,.ui.grid>.justified.row>.column,.ui.justified.grid,.ui.justified.grid>.column,.ui.justified.grid>.row>.column{text-align:justify;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.ui.grid .justified.column{text-align:justify!important;-webkit-hyphens:auto!important;-moz-hyphens:auto!important;-ms-hyphens:auto!important;hyphens:auto!important}.ui.grid [class*="top aligned"].column,.ui.grid>[class*="top aligned"].row>.column,.ui[class*="top aligned"].grid,.ui[class*="top aligned"].grid>.column,.ui[class*="top aligned"].grid>.row>.column{vertical-align:top;-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.ui.grid [class*="top aligned"].column{vertical-align:top!important;-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.ui.grid .stretched.column,.ui.grid>.stretched.row>.column,.ui.stretched.grid>.column:not(.row),.ui.stretched.grid>.row>.column{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.grid .stretched.column>*,.ui.grid>.stretched.row>.column>*,.ui.stretched.grid>.column>*,.ui.stretched.grid>.row>.column>*{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.ui.grid>[class*="middle aligned"].row>.column,.ui[class*="middle aligned"].grid,.ui[class*="middle aligned"].grid>.column,.ui[class*="middle aligned"].grid>.row>.column{vertical-align:middle;-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.ui.grid [class*="middle aligned"].column{vertical-align:middle!important;-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.ui.grid>[class*="bottom aligned"].row>.column,.ui[class*="bottom aligned"].grid,.ui[class*="bottom aligned"].grid>.column,.ui[class*="bottom aligned"].grid>.row>.column{vertical-align:bottom;-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.ui.grid [class*="bottom aligned"].column{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important;vertical-align:bottom!important}.ui.grid>.row>.white.column,.ui.grid>.white.column,.ui.grid>.white.row{background-color:#fff!important;color:rgba(0,0,0,.8)}.ui.grid>.row>.white.column{margin-top:-1rem;margin-bottom:-1rem;padding-top:1rem;padding-bottom:1rem}.ui.grid>.black.column,.ui.grid>.black.row,.ui.grid>.row>.black.column{background-color:#1b1c1d!important;color:#fff}.ui.grid>.row>.black.column{margin-top:-1rem;margin-bottom:-1rem;padding-top:1rem;padding-bottom:1rem}.ui.grid>.blue.column,.ui.grid>.blue.row,.ui.grid>.row>.blue.column{background-color:#3b83c0!important;color:#fff}.ui.grid>.row>.blue.column{margin-top:-1rem;margin-bottom:-1rem;padding-top:1rem;padding-bottom:1rem}.ui.grid>.green.column,.ui.grid>.green.row,.ui.grid>.row>.green.column{background-color:#5bbd72!important;color:#fff}.ui.grid>.row>.green.column{margin-top:-1rem;margin-bottom:-1rem;padding-top:1rem;padding-bottom:1rem}.ui.grid>.orange.column,.ui.grid>.orange.row,.ui.grid>.row>.orange.column{background-color:#e07b53!important;color:#fff}.ui.grid>.row>.orange.column{margin-top:-1rem;margin-bottom:-1rem;padding-top:1rem;padding-bottom:1rem}.ui.grid .pink.column,.ui.grid>.pink.row{background-color:#d9499a!important;color:#fff}.ui.grid>.row>.pink.column{margin-top:-1rem;margin-bottom:-1rem;padding-top:1rem;padding-bottom:1rem}.ui.grid>.purple.column,.ui.grid>.purple.row,.ui.grid>.row>.purple.column{background-color:#564f8a!important;color:#fff}.ui.grid>.row>.purple.column{margin-top:-1rem;margin-bottom:-1rem;padding-top:1rem;padding-bottom:1rem}.ui.grid>.red.column,.ui.grid>.red.row,.ui.grid>.row>.red.column{background-color:#d95c5c!important;color:#fff}.ui.grid>.row>.red.column{margin-top:-1rem;margin-bottom:-1rem;padding-top:1rem;padding-bottom:1rem}.ui.grid>.row>.teal.column,.ui.grid>.teal.column,.ui.grid>.teal.row{background-color:#00b5ad!important;color:#fff}.ui.grid>.row>.teal.column{margin-top:-1rem;margin-bottom:-1rem;padding-top:1rem;padding-bottom:1rem}.ui.grid>.row>.yellow.column,.ui.grid>.yellow.column,.ui.grid>.yellow.row{background-color:#f2c61f!important;color:#fff}.ui.grid>.row>.yellow.column{margin-top:-1rem;margin-bottom:-1rem;padding-top:1rem;padding-bottom:1rem}.ui[class*="equal width"].grid{table-layout:fixed}.ui.grid>[class*="equal width"].row,.ui[class*="equal width"].grid>.row{table-layout:fixed;width:100%!important}.ui.grid>[class*="equal width"].row,.ui[class*="equal width"].grid,.ui[class*="equal width"].grid>.row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.grid>[class*="equal width"].row>.column,.ui[class*="equal width"].grid>.column:not(.row),.ui[class*="equal width"].grid>.row>.column{display:block;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.ui[class*="equal height"].grid{table-layout:fixed}.ui.grid>[class*="equal height"].row,.ui[class*="equal height"].grid>.row{table-layout:fixed;width:100%!important}.ui.grid>[class*="equal height"].row,.ui[class*="equal height"].grid,.ui[class*="equal height"].grid>.row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.grid>[class*="equal height"].row>.column,.ui[class*="equal height"].grid>.column:not(.row),.ui[class*="equal height"].grid>.row>.column{display:block;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}@media only screen and (min-width:768px)and (max-width:991px){.ui.doubling.grid{width:100%!important}.ui.doubling.grid>.row,.ui.grid>.doubling.row{margin:0!important;padding:0!important}.ui.doubling.grid>.row>.column,.ui.grid>.doubling.row>.column{display:inline-block!important;padding-top:1rem!important;padding-bottom:1rem!important;margin:0}.ui.grid>[class*="two column"].doubling.row>.column,.ui[class*="two column"].doubling.grid>.column,.ui[class*="two column"].doubling.grid>.row>.column{width:100%!important}.ui.grid>[class*="three column"].doubling.row>.column,.ui.grid>[class*="four column"].doubling.row>.column,.ui[class*="three column"].doubling.grid>.column,.ui[class*="three column"].doubling.grid>.row>.column,.ui[class*="four column"].doubling.grid>.column,.ui[class*="four column"].doubling.grid>.row>.column{width:50%!important}.ui.grid>[class*="five column"].doubling.row>.column,.ui.grid>[class*="six column"].doubling.row>.column,.ui.grid>[class*="seven column"].doubling.row>.column,.ui[class*="five column"].doubling.grid>.column,.ui[class*="five column"].doubling.grid>.row>.column,.ui[class*="six column"].doubling.grid>.column,.ui[class*="six column"].doubling.grid>.row>.column,.ui[class*="seven column"].doubling.grid>.column,.ui[class*="seven column"].doubling.grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="eight column"].doubling.row>.column,.ui.grid>[class*="nine column"].doubling.row>.column,.ui[class*="eight column"].doubling.grid>.column,.ui[class*="eight column"].doubling.grid>.row>.column,.ui[class*="nine column"].doubling.grid>.column,.ui[class*="nine column"].doubling.grid>.row>.column{width:25%!important}.ui.grid>[class*="ten column"].doubling.row>.column,.ui.grid>[class*="eleven column"].doubling.row>.column,.ui[class*="ten column"].doubling.grid>.column,.ui[class*="ten column"].doubling.grid>.row>.column,.ui[class*="eleven column"].doubling.grid>.column,.ui[class*="eleven column"].doubling.grid>.row>.column{width:20%!important}.ui.grid>[class*="twelve column"].doubling.row>.column,.ui.grid>[class*="thirteen column"].doubling.row>.column,.ui[class*="twelve column"].doubling.grid>.column,.ui[class*="twelve column"].doubling.grid>.row>.column,.ui[class*="thirteen column"].doubling.grid>.column,.ui[class*="thirteen column"].doubling.grid>.row>.column{width:16.66666667%!important}.ui.grid>[class*="fourteen column"].doubling.row>.column,.ui.grid>[class*="fifteen column"].doubling.row>.column,.ui[class*="fourteen column"].doubling.grid>.column,.ui[class*="fourteen column"].doubling.grid>.row>.column,.ui[class*="fifteen column"].doubling.grid>.column,.ui[class*="fifteen column"].doubling.grid>.row>.column{width:14.28571429%!important}.ui.grid>[class*="sixteen column"].doubling.row>.column,.ui[class*="sixteen column"].doubling.grid>.column,.ui[class*="sixteen column"].doubling.grid>.row>.column{width:12.5%!important}}@media only screen and (max-width:767px){.ui.doubling.grid>.row,.ui.grid>.doubling.row{display:block!important;margin:0!important;padding:0!important}.ui.doubling.grid>.row>.column,.ui.grid>.doubling.row>.column{display:inline-block!important;padding-top:1rem!important;padding-bottom:1rem!important;margin:0!important}.ui.grid>[class*="two column"].doubling:not(.stackable).row>.column,.ui[class*="two column"].doubling:not(.stackable).grid>.column,.ui[class*="two column"].doubling:not(.stackable).grid>.row>.column{width:100%!important}.ui.grid>[class*="three column"].doubling:not(.stackable).row>.column,.ui.grid>[class*="four column"].doubling:not(.stackable).row>.column,.ui.grid>[class*="five column"].doubling:not(.stackable).row>.column,.ui.grid>[class*="six column"].doubling:not(.stackable).row>.column,.ui.grid>[class*="seven column"].doubling:not(.stackable).row>.column,.ui.grid>[class*="eight column"].doubling:not(.stackable).row>.column,.ui[class*="three column"].doubling:not(.stackable).grid>.column,.ui[class*="three column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="four column"].doubling:not(.stackable).grid>.column,.ui[class*="four column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="five column"].doubling:not(.stackable).grid>.column,.ui[class*="five column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="six column"].doubling:not(.stackable).grid>.column,.ui[class*="six column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="seven column"].doubling:not(.stackable).grid>.column,.ui[class*="seven column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="eight column"].doubling:not(.stackable).grid>.column,.ui[class*="eight column"].doubling:not(.stackable).grid>.row>.column{width:50%!important}.ui.grid>[class*="nine column"].doubling:not(.stackable).row>.column,.ui.grid>[class*="ten column"].doubling:not(.stackable).row>.column,.ui.grid>[class*="eleven column"].doubling:not(.stackable).row>.column,.ui.grid>[class*="twelve column"].doubling:not(.stackable).row>.column,.ui.grid>[class*="thirteen column"].doubling:not(.stackable).row>.column,.ui[class*="nine column"].doubling:not(.stackable).grid>.column,.ui[class*="nine column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="ten column"].doubling:not(.stackable).grid>.column,.ui[class*="ten column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="eleven column"].doubling:not(.stackable).grid>.column,.ui[class*="eleven column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="twelve column"].doubling:not(.stackable).grid>.column,.ui[class*="twelve column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="thirteen column"].doubling:not(.stackable).grid>.column,.ui[class*="thirteen column"].doubling:not(.stackable).grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="fourteen column"].doubling:not(.stackable).row>.column,.ui.grid>[class*="fifteen column"].doubling:not(.stackable).row>.column,.ui.grid>[class*="sixteen column"].doubling:not(.stackable).row>.column,.ui[class*="fourteen column"].doubling:not(.stackable).grid>.column,.ui[class*="fourteen column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="fifteen column"].doubling:not(.stackable).grid>.column,.ui[class*="fifteen column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="sixteen column"].doubling:not(.stackable).grid>.column,.ui[class*="sixteen column"].doubling:not(.stackable).grid>.row>.column{width:25%!important}.ui.stackable.grid{display:block!important;width:auto;margin-left:0!important;margin-right:0!important;padding:0}.ui.stackable.grid>.column.grid>.column,.ui.stackable.grid>.column.row>.column,.ui.stackable.grid>.column:not(.row),.ui.stackable.grid>.row>.column,.ui.stackable.grid>.row>.wide.column,.ui.stackable.grid>.wide.column{display:block!important;width:auto!important;margin:0!important;box-shadow:none!important;float:none!important;padding:1rem!important}.ui.stackable.grid>.row{display:block!important;margin:0;padding:0}.ui.grid .ui.stackable.grid,.ui.segment:not(.vertical) .ui.stackable.page.grid{margin-left:-1rem!important;margin-right:-1rem!important}.ui[class*="equal height"].stackable.page.grid{display:block!important}.ui.stackable.celled.grid>.column:not(.row):first-child,.ui.stackable.celled.grid>.row:first-child>.column:first-child,.ui.stackable.divided.grid>.column:not(.row):first-child,.ui.stackable.divided.grid>.row:first-child>.column:first-child{border-top:none!important}.ui.inverted.stackable.celled.grid>.column:not(.row),.ui.inverted.stackable.celled.grid>.row>.column,.ui.inverted.stackable.divided.grid>.column:not(.row),.ui.inverted.stackable.divided.grid>.row>.column{border-top:1px solid rgba(255,255,255,.2)}.ui.stackable.celled.grid>.column:not(.row),.ui.stackable.celled.grid>.row>.column,.ui.stackable.divided.grid>.column:not(.row),.ui.stackable.divided.grid>.row>.column{border-top:1px solid rgba(39,41,43,.15);box-shadow:none!important;padding-top:2rem!important;padding-bottom:2rem!important}.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="computer only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].row:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].column:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].row:not(.mobile),.ui.tablet:not(.mobile).only.grid.grid.grid,.ui[class*="computer only"].grid.grid.grid:not(.mobile){display:none!important}}@media only screen and (min-width:768px)and (max-width:991px){.ui.grid.grid.grid>.row>[class*="computer only"].column:not(.tablet),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.tablet),.ui.grid.grid.grid>[class*="computer only"].column:not(.tablet),.ui.grid.grid.grid>[class*="computer only"].row:not(.tablet),.ui.grid.grid.grid>[class*="mobile only"].column:not(.tablet),.ui.grid.grid.grid>[class*="mobile only"].row:not(.tablet),.ui[class*="computer only"].grid.grid.grid:not(.tablet),.ui[class*="mobile only"].grid.grid.grid:not(.tablet){display:none!important}}@media only screen and (min-width:992px){.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui[class*="mobile only"].grid.grid.grid:not(.computer){display:none!important}}.ui.menu{margin:1rem 0;background:#fff;font-size:0;font-weight:400;box-shadow:0 0 0 1px rgba(39,41,43,.15),0 1px 2px 0 rgba(0,0,0,.05);border-radius:.2857rem}.ui.menu:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.menu:first-child{margin-top:0}.ui.menu:last-child{margin-bottom:0}.ui.menu .menu{margin:0}.ui.menu:not(.vertical) .menu{font-size:0}.ui.menu .item{color:rgba(0,0,0,.8);position:relative;display:inline-block;padding:.78571em .95em;border-top:0 solid transparent;background:0 0;vertical-align:middle;line-height:1;text-decoration:none;box-sizing:border-box;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:opacity .2s ease,background .2s ease,box-shadow .2s ease;transition:opacity .2s ease,background .2s ease,box-shadow .2s ease}.ui.menu .item .item{color:rgba(0,0,0,.5)}.ui.menu .item .menu .link.item:hover,.ui.menu .item .menu a.item:hover{color:rgba(0,0,0,.85)}.ui.menu>.item:first-child{border-radius:.2857rem 0 0 .2857rem}.ui.menu:not(.vertical) .item.left,.ui.menu:not(.vertical) .menu.left{float:left}.ui.menu:not(.vertical) .item.right,.ui.menu:not(.vertical) .menu.right{float:right}.ui.menu .item:before{position:absolute;content:'';top:0;right:0;width:1px;height:100%;background:-webkit-linear-gradient(rgba(0,0,0,.05) 0,rgba(0,0,0,.1) 50%,rgba(0,0,0,.05) 100%);background:linear-gradient(rgba(0,0,0,.05) 0,rgba(0,0,0,.1) 50%,rgba(0,0,0,.05) 100%)}.ui.menu>.right.menu:first-child{display:none}.ui.menu .item.right:before,.ui.menu .menu.right .item:before{right:auto;left:0}.ui.menu .item>a:not(.ui),.ui.menu .item>p:only-child,.ui.menu .text.item>*{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;line-height:1.3;color:rgba(0,0,0,.8)}.ui.menu .item>p:first-child{margin-top:0}.ui.menu .item>p:last-child{margin-bottom:0}.ui.menu .item>i.icon{opacity:.75;float:none;margin:0 .25em 0 0}.ui.menu .item>i.dropdown.icon{float:right;margin-left:1em}.ui.menu:not(.vertical) .item>.button{position:relative;top:-.05em;margin:-.55em 0;padding-bottom:.55em;padding-top:.55em;font-size:.875em}.ui.menu .item>.input{width:100%}.ui.menu:not(.vertical) .item>.input{position:relative;top:0;margin:-.6em 0}.ui.menu .item>.input input{font-size:1em;padding-top:.4em;padding-bottom:.4em}.ui.menu .item>.input .button,.ui.menu .item>.input .label{padding-top:.4em;padding-bottom:.4em}.ui.small.menu .item>.input input{top:0;padding-top:.4em;padding-bottom:.4em}.ui.small.menu .item>.input .button,.ui.small.menu .item>.input .label{padding-top:.4em;padding-bottom:.4em}.ui.large.menu .item>.input input{top:-.125em;padding-bottom:.6em;padding-top:.6em}.ui.large.menu .item>.input .button,.ui.large.menu .item>.input .label{padding-top:.6em;padding-bottom:.6em}.ui.menu .header.item,.ui.vertical.menu .header.item{background:rgba(0,0,0,.04);margin:0;text-transform:normal;font-weight:700}.ui.menu .ui.dropdown.item.visible{background:rgba(0,0,0,.03);border-bottom-right-radius:0;border-bottom-left-radius:0}.ui.menu .ui.dropdown.active{box-shadow:none}.ui.menu .dropdown.item .menu{background:#fff;left:0;margin:0;min-width:-webkit-calc(100% - 1px);min-width:calc(100% - 1px);box-shadow:0 1px 3px 0 rgba(0,0,0,.08)}.ui.menu:not(.secondary) .pointing.dropdown.item .menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.ui.menu .simple.dropdown.item .menu{margin:0!important}.ui.secondary.menu>.menu>.active.dropdown.item{background-color:transparent}.ui.secondary.menu .dropdown.item .menu{left:0;min-width:100%}.ui.item.menu .dropdown .menu .item{width:100%}.ui.menu .item>.label{background:rgba(0,0,0,.35);color:#fff;margin:-.15em 0 -.15em .5em;padding:.3em .8em;vertical-align:baseline}.ui.menu .item>.floating.label{padding:.3em .8em}.ui.menu .item>img:only-child{display:block;max-width:100%;margin:0 auto}.ui.link.menu .menu>.item:hover,.ui.link.menu>.item:hover,.ui.menu .menu>.link.item:hover,.ui.menu .menu>a.item:hover,.ui.menu>.link.item:hover,.ui.menu>a.item:hover{cursor:pointer;background:rgba(0,0,0,.03);color:rgba(0,0,0,.8)}.ui.link.menu .item:active,.ui.menu .link.item:active,.ui.menu a.item:active{background:rgba(0,0,0,.03);color:rgba(0,0,0,.8)}.ui.menu .active.item{background:rgba(0,0,0,.03);color:rgba(0,0,0,.8);font-weight:400;box-shadow:0 2px 0 inset}.ui.menu .active.item>i.icon{opacity:1}.ui.vertical.menu .active.item{background:rgba(0,0,0,.03);border-radius:0;box-shadow:2px 0 0 inset}.ui.vertical.menu>.active.item:first-child{border-radius:0 .2857rem 0 0}.ui.vertical.menu>.active.item:last-child{border-radius:0 0 .2857rem}.ui.vertical.menu>.active.item:only-child{border-radius:0 .2857rem .2857rem 0}.ui.vertical.menu .active.item .menu .active.item{border-left:none}.ui.vertical.menu .item .menu .active.item{background-color:transparent;box-shadow:none}.ui.menu .active.item:hover,.ui.vertical.menu .active.item:hover{background-color:rgba(0,0,0,.03)}.ui.menu .item.disabled,.ui.menu .item.disabled:hover{cursor:default;color:rgba(40,40,40,.3);background-color:transparent!important}.ui.vertical.menu{background:#fff}.ui.vertical.menu .item{background:0 0;display:block;height:auto!important;border-top:none;border-left:0 solid transparent;border-right:none}.ui.vertical.menu>.item:first-child{border-radius:.2857rem .2857rem 0 0}.ui.vertical.menu>.item:last-child{border-radius:0 0 .2857rem .2857rem}.ui.vertical.menu .item>.label{float:right;text-align:center}.ui.vertical.menu .item>i.icon{width:1.18em;float:right;margin:0 0 0 .5em}.ui.vertical.menu .item>.label+i.icon{float:none;margin:0 .5em 0 0}.ui.vertical.menu .item:before{position:absolute;content:'';top:0;left:0;width:100%;background:-webkit-linear-gradient(left,rgba(0,0,0,.03) 0,rgba(0,0,0,.1) 1.5em,rgba(0,0,0,.03) 100%);background:linear-gradient(to right,rgba(0,0,0,.03) 0,rgba(0,0,0,.1) 1.5em,rgba(0,0,0,.03) 100%);height:1px}.ui.vertical.menu .item:first-child:before{background:0 0!important}.ui.vertical.menu .dropdown.item>.icon{float:right;content:"\f0da";margin-left:1em}.ui.vertical.menu .active.dropdown.item{border-top-right-radius:0;border-bottom-right-radius:0}.ui.vertical.menu .dropdown.item .menu{top:0!important;left:100%;margin:0;box-shadow:0 1px 3px 0 rgba(0,0,0,.08);border-radius:0 .2857rem .2857rem}.ui.vertical.menu .dropdown.item .menu .item{font-size:1rem}.ui.vertical.menu .dropdown.item .menu .item i.icon{margin-right:0}.ui.vertical.menu .dropdown.item.active{box-shadow:none}.ui.vertical.menu .item:not(.dropdown)>.menu{margin:.5em -.95em 0}.ui.vertical.menu .item:not(.dropdown)>.menu>.item{background:0 0;padding:.5rem 1.5rem;font-size:.875rem}.ui.vertical.menu .item>.menu>.item:before{display:none}.ui.tiered.menu>.menu>.item:hover{color:rgba(0,0,0,.8)}.ui.tiered.menu .active.item{background:#fcfcfc}.ui.tiered.menu>.menu .item.active:after{position:absolute;content:'';margin-top:-1px;top:100%;left:0;width:100%;height:2px;background-color:#fcfcfc}.ui.tiered.menu .sub.menu{background-color:#fcfcfc;border-radius:0 0 .2857rem .2857rem;border-top:1px solid rgba(39,41,43,.15);box-shadow:none}.ui.tiered.menu>.sub.menu>.item{color:rgba(0,0,0,.4);font-weight:400;text-transform:normal;font-size:.875rem}.ui.tiered.menu .sub.menu .item:before{background:0 0}.ui.tiered.menu .sub.menu .item:hover{background:none;color:rgba(0,0,0,.8)}.ui.tiered.menu .sub.menu .active.item{padding-top:.78571em;background:none;border-radius:0;border-top:medium none;box-shadow:none;color:rgba(0,0,0,.8)!important}.ui.tiered.menu .sub.menu .active.item:after{display:none}.ui.inverted.tiered.menu>.menu>.item{color:rgba(255,255,255,.5)}.ui.inverted.tiered.menu .sub.menu{background-color:rgba(0,0,0,.2)}.ui.inverted.tiered.menu .sub.menu .item{color:rgba(255,255,255,.8)}.ui.inverted.tiered.menu>.menu>.item:hover{color:#fff}.ui.inverted.tiered.menu .active.item:after{display:none}.ui.inverted.tiered.menu>.menu>.active.item,.ui.inverted.tiered.menu>.sub.menu>.active.item{color:#fff!important;box-shadow:none}.ui.pointing.tiered.menu>.menu>.item:after{display:none}.ui.pointing.tiered.menu>.sub.menu>.item:after{display:block}.ui.tabular.menu{background-color:transparent;border-radius:0;box-shadow:none!important;border-bottom:1px solid #d4d4d5}.ui.tabular.fluid.menu{width:-webkit-calc(100% + 2px)!important;width:calc(100% + 2px)!important}.ui.tabular.menu .item{background-color:transparent;border-left:1px solid transparent;border-right:1px solid transparent;border-top:1px solid transparent;padding-left:1.4em;padding-right:1.4em;color:rgba(0,0,0,.8)}.ui.tabular.menu .item:before{display:none}.ui.tabular.menu .item:hover{background-color:transparent;color:rgba(0,0,0,.8)}.ui.tabular.menu .active.item{position:relative;border-bottom:none;vertical-align:bottom;background-color:#fff;color:rgba(0,0,0,.8);border-color:#d4d4d5;font-weight:700;margin-bottom:-1px;box-shadow:none;border-radius:5px 5px 0 0}.ui.attached.tabular.menu{position:relative;z-index:2}.ui.tabular.menu+.bottom.attached.segment,.ui.tabular.menu~.bottom.attached.segment+.bottom.attached.segment{border-top:none;margin:0}.ui.pagination.menu{margin:0;display:inline-block;vertical-align:middle}.ui.pagination.menu .item{min-width:3em;text-align:center}.ui.pagination.menu .icon.item i.icon{vertical-align:top}.ui.pagination.menu.floated{display:block}.ui.pagination.menu .active.item{border-top:none;padding-top:.78571em;background-color:rgba(0,0,0,.03);box-shadow:none}.ui.secondary.menu{background:0 0;border-radius:0;box-shadow:none}.ui.secondary.menu>.item,.ui.secondary.menu>.menu>.item{box-shadow:none;border:none;height:auto!important;background:0 0;margin:0 .25em;padding:.5em .8em;border-radius:.2857rem}.ui.secondary.menu>.item:before,.ui.secondary.menu>.menu>.item:before{display:none!important}.ui.secondary.menu .item>.input input{background-color:transparent;border:none}.ui.secondary.menu .link.item,.ui.secondary.menu a.item{opacity:.8;-webkit-transition:none;transition:none}.ui.secondary.menu .header.item{border-right:.1em solid rgba(0,0,0,.1);background:none;border-radius:0}.ui.secondary.menu .link.item:hover,.ui.secondary.menu a.item:hover{opacity:1}.ui.secondary.menu>.active.item,.ui.secondary.menu>.menu>.active.item{background:rgba(0,0,0,.05);opacity:1;box-shadow:none}.ui.secondary.vertical.menu>.active.item{border-radius:.2857rem}.ui.secondary.inverted.menu .link.item,.ui.secondary.inverted.menu a.item{color:rgba(255,255,255,.8)}.ui.secondary.inverted.menu .link.item:hover,.ui.secondary.inverted.menu a.item:hover{color:#fff}.ui.secondary.inverted.menu .active.item{background-color:rgba(255,255,255,.05)}.ui.secondary.item.menu>.item{margin:0}.ui.secondary.attached.menu{box-shadow:none}.ui.secondary.vertical.menu>.item{border:none;margin:0 0 .3em;border-radius:.2857rem}.ui.secondary.vertical.menu>.header.item{border-radius:0}.ui.secondary.inverted.menu{background-color:transparent}.ui.secondary.inverted.pointing.menu{border-bottom:3px solid rgba(255,255,255,.1)}.ui.secondary.inverted.pointing.menu>.item{color:rgba(255,255,255,.7)}.ui.secondary.inverted.pointing.menu>.header.item{color:#FFF!important}.ui.secondary.inverted.pointing.menu>.item:hover,.ui.secondary.inverted.pointing.menu>.menu>.item:hover{color:rgba(255,255,255,.85)}.ui.secondary.inverted.pointing.menu>.item:active,.ui.secondary.inverted.pointing.menu>.menu>.item:active{border-color:rgba(255,255,255,.4)}.ui.secondary.inverted.pointing.menu>.item.active,.ui.secondary.inverted.pointing.menu>.menu>.item.active{border-color:rgba(255,255,255,.8);color:#fff}.ui.secondary.pointing.menu{border-bottom:3px solid rgba(0,0,0,.1)}.ui.secondary.pointing.menu>.item,.ui.secondary.pointing.menu>.menu>.item{margin:0 0 -3px;padding:.6em .95em;border-bottom:3px solid transparent;border-radius:0;-webkit-transition:color .2s ease;transition:color .2s ease}.ui.secondary.pointing.menu .header.item{margin-bottom:-3px;background-color:transparent!important;border-right-width:0!important;font-weight:700!important;color:rgba(0,0,0,.85)!important}.ui.secondary.pointing.menu .text.item{box-shadow:none!important}.ui.secondary.pointing.menu>.item:after,.ui.secondary.pointing.menu>.menu>.item:after{display:none}.ui.secondary.pointing.menu>.link.item:hover,.ui.secondary.pointing.menu>.menu>.link.item:hover,.ui.secondary.pointing.menu>.menu>a.item:hover,.ui.secondary.pointing.menu>a.item:hover{background-color:transparent;color:rgba(0,0,0,.8)}.ui.secondary.pointing.menu>.link.item:active,.ui.secondary.pointing.menu>.menu>.link.item:active,.ui.secondary.pointing.menu>.menu>a.item:active,.ui.secondary.pointing.menu>a.item:active{background-color:transparent;border-color:rgba(0,0,0,.2)}.ui.secondary.pointing.menu>.item.active,.ui.secondary.pointing.menu>.menu>.item.active{background-color:transparent;border-color:rgba(0,0,0,.4);box-shadow:none;color:rgba(0,0,0,.8)}.ui.secondary.vertical.pointing.menu{border:none;border-right:3px solid rgba(0,0,0,.1)}.ui.secondary.vertical.pointing.menu>.item{margin:0 -3px 0 0;border-bottom:none;border-right:3px solid transparent;border-radius:0}.ui.secondary.vertical.pointing.menu>.item:hover{background-color:transparent;color:rgba(0,0,0,.7)}.ui.secondary.vertical.pointing.menu>.item:active{background-color:transparent;border-color:rgba(0,0,0,.2)}.ui.secondary.vertical.pointing.menu>.item.active{background-color:transparent;border-color:rgba(0,0,0,.4);color:rgba(0,0,0,.85)}.ui.secondary.inverted.vertical.pointing.menu{border-right:3px solid rgba(255,255,255,.1);border-bottom:none}.ui.text.menu{display:inline-block;background:none;margin:1rem -1rem;border-radius:0;box-shadow:none}.ui.text.menu>.item{opacity:.8;margin:0 1em;padding:0;height:auto!important;border-radius:0;box-shadow:none;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}.ui.text.menu>.item:before{display:none!important}.ui.text.menu .header.item{background-color:transparent;opacity:1;color:rgba(50,50,50,.8);font-size:.875rem;padding:0;text-transform:uppercase;font-weight:700}.ui.text.menu .text.item{opacity:1;color:rgba(50,50,50,.8);font-weight:700}.ui.text.item.menu .item{margin:0}.ui.vertical.text.menu{margin:1rem 0}.ui.vertical.text.menu:first-child{margin-top:0}.ui.vertical.text.menu:last-child{margin-bottom:0}.ui.vertical.text.menu .item{float:left;clear:left;margin:.5em 0}.ui.vertical.text.menu .item>i.icon{float:none;margin:0 .78571em 0 0}.ui.vertical.text.menu .header.item{margin:.8em 0}.ui.text.menu .item:hover{opacity:1;background-color:transparent}.ui.text.menu .active.item{background-color:transparent;padding:0;border:none;opacity:1;font-weight:700;box-shadow:none}.ui.text.attached.menu,.ui.text.pointing.menu .active.item:after{box-shadow:none}.ui.inverted.text.menu,.ui.inverted.text.menu .item,.ui.inverted.text.menu .item.active,.ui.inverted.text.menu .item:hover{background-color:transparent}.ui.fluid.text.menu{margin-left:0;margin-right:0}.ui.icon.menu,.ui.vertical.icon.menu{width:auto;display:inline-block;height:auto}.ui.icon.menu>.item{height:auto;text-align:center;color:rgba(0,0,0,.6)}.ui.icon.menu>.item>.icon{display:block;float:none!important;margin:0 auto!important;opacity:1}.ui.icon.menu .icon:before{opacity:1}.ui.menu .icon.item .icon{margin:0}.ui.vertical.icon.menu{float:none}.ui.inverted.icon.menu .item{color:rgba(255,255,255,.8)}.ui.inverted.icon.menu .icon{color:#fff}.ui.labeled.icon.menu{text-align:center}.ui.fluid.labeled.icon.menu>.item{min-width:0}.ui.labeled.icon.menu>.item{min-width:6em}.ui.labeled.icon.menu>.item>.icon{display:block;font-size:1.5em!important;margin:0 auto .5em!important}.ui.blue.menu .active.item,.ui.menu .blue.active.item{border-color:#3b83c0!important;color:#3b83c0!important}.ui.green.menu .active.item,.ui.menu .green.active.item{border-color:#5bbd72!important;color:#5bbd72!important}.ui.menu .orange.active.item,.ui.orange.menu .active.item{border-color:#e07b53!important;color:#e07b53!important}.ui.menu .pink.active.item,.ui.pink.menu .active.item{border-color:#d9499a!important;color:#d9499a!important}.ui.menu .purple.active.item,.ui.purple.menu .active.item{border-color:#564f8a!important;color:#564f8a!important}.ui.menu .red.active.item,.ui.red.menu .active.item{border-color:#d95c5c!important;color:#d95c5c!important}.ui.menu .teal.active.item,.ui.teal.menu .active.item{border-color:#00b5ad!important;color:#00b5ad!important}.ui.menu .yellow.active.item,.ui.yellow.menu .active.item{border-color:#f2c61f!important;color:#f2c61f!important}.ui.inverted.menu{background:#1b1c1d;box-shadow:none}.ui.inverted.menu .header.item{margin:0;background:rgba(0,0,0,.3);box-shadow:none}.ui.inverted.menu .item,.ui.inverted.menu .item>a:not(.ui){color:#fff}.ui.inverted.menu .item:not(.dropdown).menu{background:0 0}.ui.inverted.menu .item .item,.ui.inverted.menu .item .item>a:not(.ui){color:rgba(255,255,255,.5)}.ui.inverted.menu .dropdown .menu .item{color:rgba(0,0,0,.8)!important;-webkit-transition:none;transition:none}.ui.inverted.menu .dropdown .menu .item:hover{background:rgba(0,0,0,.05)!important;color:rgba(0,0,0,.85)!important}.ui.inverted.menu .item.disabled,.ui.inverted.menu .item.disabled:hover{color:rgba(225,225,225,.3)}.ui.inverted.menu .item:before{background:-webkit-linear-gradient(rgba(255,255,255,.03) 0,rgba(255,255,255,.1) 50%,rgba(255,255,255,.03) 100%);background:linear-gradient(rgba(255,255,255,.03) 0,rgba(255,255,255,.1) 50%,rgba(255,255,255,.03) 100%)}.ui.vertical.inverted.menu .item:before{background:-webkit-linear-gradient(left,rgba(255,255,255,.03) 0,rgba(255,255,255,.1) 50%,rgba(255,255,255,.03) 100%);background:linear-gradient(to right,rgba(255,255,255,.03) 0,rgba(255,255,255,.1) 50%,rgba(255,255,255,.03) 100%)}.ui.inverted.menu .dropdown.item:hover,.ui.inverted.menu .link.item:hover,.ui.inverted.menu a.item:hover,.ui.link.inverted.menu .item:hover{background:rgba(255,255,255,.1);color:#fff}.ui.inverted.menu .item .menu .link.item:hover,.ui.inverted.menu .item .menu a.item:hover{background:0 0;color:#fff}.ui.inverted.menu .dropdown.item:active,.ui.inverted.menu .link.item:active,.ui.inverted.menu a.item:active{background:rgba(255,255,255,.15);color:#fff}.ui.inverted.menu .active.item{box-shadow:none!important;background:rgba(255,255,255,.2);color:#fff!important}.ui.inverted.vertical.menu .item .menu .active.item{background:0 0;color:#fff}.ui.inverted.pointing.menu .active.item:after{background:#5B5B5B;box-shadow:none}.ui.inverted.pointing.menu .active.item:hover:after{background:#4A4A4A}.ui.selection.menu>.item{color:rgba(0,0,0,.4)}.ui.selection.menu>.item:hover{color:rgba(0,0,0,.6)}.ui.selection.menu>.item.active{color:rgba(0,0,0,.85)}.ui.inverted.selection.menu>.item{color:rgba(255,255,255,.4)}.ui.inverted.selection.menu>.item:hover{color:rgba(255,255,255,.9)}.ui.inverted.selection.menu>.item.active{color:#FFF}.ui.floated.menu{float:left;margin:0 .5rem 0 0}.ui.right.floated.menu{float:right;margin:0 0 0 .5rem}.ui.grey.menu{background-color:#fafafa}.ui.inverted.blue.menu,.ui.inverted.blue.pointing.menu .active.item:after{background-color:#3b83c0}.ui.inverted.green.menu,.ui.inverted.green.pointing.menu .active.item:after{background-color:#5bbd72}.ui.inverted.orange.menu,.ui.inverted.orange.pointing.menu .active.item:after{background-color:#e07b53}.ui.inverted.pink.menu,.ui.inverted.pink.pointing.menu .active.item:after{background-color:#d9499a}.ui.inverted.purple.menu,.ui.inverted.purple.pointing.menu .active.item:after{background-color:#564f8a}.ui.inverted.red.menu,.ui.inverted.red.pointing.menu .active.item:after{background-color:#d95c5c}.ui.inverted.teal.menu,.ui.inverted.teal.pointing.menu .active.item:after{background-color:#00b5ad}.ui.inverted.yellow.menu,.ui.inverted.yellow.pointing.menu .active.item:after{background-color:#f2c61f}.ui.fitted.menu .item,.ui.fitted.menu .item .menu .item,.ui.menu .fitted.item{padding:0}.ui.horizontally.fitted.menu .item,.ui.horizontally.fitted.menu .item .menu .item,.ui.menu .horizontally.fitted.item{padding-top:.78571em;padding-bottom:.78571em}.ui.menu .vertically.fitted.item,.ui.vertically.fitted.menu .item,.ui.vertically.fitted.menu .item .menu .item{padding-left:.95em;padding-right:.95em}.ui.borderless.menu .item .menu .item:before,.ui.borderless.menu .item:before,.ui.menu .borderless.item:before{background:0 0!important}.ui.compact.menu{display:inline-block;margin:0;vertical-align:middle}.ui.compact.vertical.menu{width:auto!important}.ui.compact.vertical.menu .item:last-child::before{display:block}.ui.menu.fluid,.ui.vertical.menu.fluid{display:block;width:100%!important}.ui.item.menu,.ui.item.menu .item{width:100%;padding-left:0!important;padding-right:0!important;text-align:center}.ui.menu.two.item .item{width:50%}.ui.menu.three.item .item{width:33.333%}.ui.menu.four.item .item{width:25%}.ui.menu.five.item .item{width:20%}.ui.menu.six.item .item{width:16.666%}.ui.menu.seven.item .item{width:14.285%}.ui.menu.eight.item .item{width:12.5%}.ui.menu.nine.item .item{width:11.11%}.ui.menu.ten.item .item{width:10%}.ui.menu.eleven.item .item{width:9.09%}.ui.menu.twelve.item .item{width:8.333%}.ui.menu.fixed{position:fixed;z-index:101;margin:0;border:none;width:100%}.ui.menu.fixed,.ui.menu.fixed .item:first-child,.ui.menu.fixed .item:last-child{border-radius:0!important}.ui.fixed.menu,.ui.top.fixed.menu{top:0;left:0;right:auto;bottom:auto}.ui.right.fixed.menu{top:0;right:0;left:auto;bottom:auto;width:auto;height:100%}.ui.bottom.fixed.menu{bottom:0;left:0;top:auto;right:auto}.ui.left.fixed.menu{top:0;left:0;right:auto;bottom:auto;width:auto;height:100%}.ui.fixed.menu+.ui.grid{padding-top:2.75rem}.ui.pointing.menu .active.item:after{position:absolute;content:'';top:100%;left:50%;-webkit-transform:translateX(-50%)translateY(-50%)rotate(45deg);-ms-transform:translateX(-50%)translateY(-50%)rotate(45deg);transform:translateX(-50%)translateY(-50%)rotate(45deg);margin:0;background:0 0;width:.6em;height:.6em;border:none;border-bottom:1px solid #d4d4d5;border-right:1px solid #d4d4d5;z-index:11;-webkit-transition:background .2s ease;transition:background .2s ease}.ui.pointing.menu .active.item .menu .active.item:after{display:none}.ui.pointing.menu .active.item:hover:after{background-color:#fafafa}.ui.pointing.menu .active.item:after{background-color:#f7f7f7}.ui.vertical.pointing.menu .item:hover:after{background-color:#fafafa}.ui.vertical.pointing.menu .active.item:after{position:absolute;top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateX(50%)translateY(-50%)rotate(45deg);-ms-transform:translateX(50%)translateY(-50%)rotate(45deg);transform:translateX(50%)translateY(-50%)rotate(45deg);margin:0 -1px 0 0;border:none;border-top:1px solid #d4d4d5;border-right:1px solid #d4d4d5;background-color:#f7f7f7}.ui.vertical.pointing.menu .menu .active.item:after{background-color:#fff}.ui.menu.attached{margin:0;border-radius:0;box-shadow:0 0 0 1px #ddd}.ui.top.attached.menu{border-radius:.2857rem .2857rem 0 0}.ui.menu.bottom.attached{border-radius:0 0 .2857rem .2857rem}.ui.small.menu .item{font-size:.875rem}.ui.small.vertical.menu{width:13rem}.ui.menu .item{font-size:1rem}.ui.vertical.menu{width:15rem}.ui.large.menu .item{font-size:1.125rem}.ui.large.menu .item .item{font-size:.875rem}.ui.large.menu .dropdown .item{font-size:1rem}.ui.large.vertical.menu{width:18rem}.ui.message{position:relative;min-height:1em;margin:1em 0;background:#efefef;padding:1em 1.5em;line-height:1.3;color:rgba(0,0,0,.8);-webkit-transition:opacity .2s ease,color .2s ease,background .2s ease,box-shadow .2s ease;transition:opacity .2s ease,color .2s ease,background .2s ease,box-shadow .2s ease;border-radius:.2857rem;box-shadow:0 0 0 1px rgba(39,41,43,.15)inset,0 0 0 0 transparent}.ui.message:first-child{margin-top:0}.ui.message:last-child{margin-bottom:0}.ui.message .header{display:block;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;margin:0 0 .5rem}.ui.message .header:not(.ui){font-size:1.1em}.ui.message p{opacity:.85;margin:.75em 0}.ui.message p:first-child{margin-top:0}.ui.message p:last-child{margin-bottom:0}.ui.message .header+p{margin-top:.25em}.ui.message ul.list{opacity:.85;list-style-position:inside;margin:.5em 0 0;padding:0}.ui.message ul.list:first-child{margin-top:0}.ui.message ul.list:last-child{margin-bottom:0}.ui.message ul.list li{position:relative;list-style-type:none;margin:0 0 .3em 1em;padding:0}.ui.message ul.list li:before{position:absolute;content:'•';left:-1em;height:100%;vertical-align:baseline}.ui.message ul.list li:last-child{margin-bottom:0}.ui.message>.icon{margin-right:.6em}.ui.message>.close.icon{cursor:pointer;position:absolute;margin:0;top:1.15em;right:.5em;opacity:.7;-webkit-transition:opacity .1s linear;transition:opacity .1s linear}.ui.message>.close.icon:hover{opacity:1}.ui.message>:first-child{margin-top:0}.ui.message>:last-child{margin-bottom:0}.ui.visible.visible.visible.visible.message{display:block}.ui.icon.visible.visible.visible.visible.message{display:table}.ui.hidden.hidden.hidden.hidden.message{display:none}.ui.compact.message{display:inline-block}.ui.attached.message{margin-bottom:-1px;border-radius:.2857rem .2857rem 0 0;box-shadow:0 0 0 1px rgba(0,0,0,.1)inset;margin-left:-1px;margin-right:-1px}.ui.attached+.ui.attached.message:not(.top):not(.bottom){margin-top:-1px;border-radius:0}.ui.bottom.attached.message{margin-top:-1px;border-radius:0 0 .2857rem .2857rem;box-shadow:0 0 0 1px rgba(0,0,0,.1)inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.bottom.attached.message:not(:last-child){margin-bottom:1em}.ui.attached.icon.message{display:block;width:auto}.ui.icon.message{display:table;width:100%}.ui.icon.message>.icon:not(.close){display:table-cell;width:auto;vertical-align:middle;font-size:3em;opacity:.8}.ui.icon.message>.content{display:table-cell;width:100%;vertical-align:middle}.ui.icon.message .icon:not(.close)+.content{padding-left:1.5rem}.ui.icon.message .circular.icon{width:1em}.ui.icon.message .circular.icon+.content{width:auto;padding-left:2em}.ui.floating.message{box-shadow:0 1px 4px 0 rgba(0,0,0,.15),0 0 0 1px rgba(39,41,43,.15)inset}.ui.positive.message{background-color:#eeffe7;color:#3c763d}.ui.attached.positive.message,.ui.positive.message{box-shadow:0 0 0 1px #b7caa7 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.positive.message .header{color:#356e36}.ui.negative.message{background-color:#fff0f0;color:#a94442}.ui.attached.negative.message,.ui.negative.message{box-shadow:0 0 0 1px #dbb1b1 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.negative.message .header{color:#912d2b}.ui.info.message{background-color:#e9faff;color:#337b92}.ui.attached.info.message,.ui.info.message{box-shadow:0 0 0 1px #aad6df inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.info.message .header{color:#297187}.ui.warning.message{background-color:#fffbe6;color:#876a38}.ui.attached.warning.message,.ui.warning.message{box-shadow:0 0 0 1px #d9caab inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.warning.message .header{color:#825c01}.ui.error.message{background-color:#fff0f0;color:#a94442}.ui.attached.error.message,.ui.error.message{box-shadow:0 0 0 1px #dbb1b1 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.error.message .header{color:#912d2b}.ui.success.message{background-color:#eeffe7;color:#3c763d}.ui.attached.success.message,.ui.success.message{box-shadow:0 0 0 1px #b7caa7 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.success.message .header{color:#356e36}.ui.black.message,.ui.inverted.message{background-color:#1b1c1d;color:#fff}.ui.blue.message{background-color:#dff0ff;color:#3b83c0}.ui.blue.message .header{color:#3576ac}.ui.green.message{background-color:#ebffed;color:#1ebc30}.ui.green.message .header{color:#1aa62a}.ui.orange.message{background-color:#ffedde;color:#e07b53}.ui.orange.message .header{color:#dc6a3d}.ui.pink.message{background-color:#ffe3fb;color:#d9499a}.ui.pink.message .header{color:#d5348e}.ui.purple.message{background-color:#eae7ff;color:#564f8a}.ui.purple.message .header{color:#4c467a}.ui.red.message{background-color:#ffe8e6;color:#d95c5c}.ui.red.message .header{color:#d44747}.ui.teal.message{background-color:#e9ffff;color:#10a3a3}.ui.teal.message .header{color:#0e8c8c}.ui.yellow.message{background-color:#fff8db;color:#b58105}.ui.yellow.message .header{color:#9c6f04}.ui.small.message{font-size:.92857143em}.ui.message{font-size:1em}.ui.large.message{font-size:1.14285714em}.ui.huge.message{font-size:1.42857143em}.ui.massive.message{font-size:1.71428571em}.ui.ad{display:block;overflow:hidden;margin:1em 0}.ui.ad:first-child,.ui.ad:last-child{margin:0}.ui.ad iframe{margin:0;padding:0;border:none;overflow:hidden}.ui.leaderboard.ad{width:728px;height:90px}.ui[class*="medium rectangle"].ad{width:300px;height:250px}.ui[class*="large rectangle"].ad{width:336px;height:280px}.ui[class*="half page"].ad{width:300px;height:600px}.ui.square.ad{width:250px;height:250px}.ui[class*="small square"].ad{width:200px;height:200px}.ui[class*="small rectangle"].ad{width:180px;height:150px}.ui[class*="vertical rectangle"].ad{width:240px;height:400px}.ui.button.ad{width:120px;height:90px}.ui[class*="square button"].ad{width:125px;height:125px}.ui[class*="small button"].ad{width:120px;height:60px}.ui.skyscraper.ad{width:120px;height:600px}.ui[class*="wide skyscraper"].ad{width:160px}.ui.banner.ad{width:468px;height:60px}.ui[class*="vertical banner"].ad{width:120px;height:240px}.ui[class*="top banner"].ad{width:930px;height:180px}.ui[class*="half banner"].ad{width:234px;height:60px}.ui[class*="large leaderboard"].ad{width:970px;height:90px}.ui.billboard.ad{width:970px;height:250px}.ui.panorama.ad{width:980px;height:120px}.ui.netboard.ad{width:580px;height:400px}.ui[class*="large mobile banner"].ad{width:320px;height:100px}.ui[class*="mobile leaderboard"].ad{width:320px;height:50px}.ui.mobile.ad{display:none}@media only screen and (max-width:767px){.ui.mobile.ad{display:block}}.ui.centered.ad{margin-left:auto;margin-right:auto}.ui.test.ad{position:relative;background:#333}.ui.test.ad:after{position:absolute;top:50%;left:50%;width:100%;text-align:center;-webkit-transform:translateX(-50%)translateY(-50%);-ms-transform:translateX(-50%)translateY(-50%);transform:translateX(-50%)translateY(-50%);content:'Ad';color:#fff;font-size:1em;font-weight:700}.ui.mobile.test.ad:after{font-size:.85714em}.ui.test.ad[data-text]:after{content:attr(data-text)}.ui.card,.ui.cards>.card{max-width:100%;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:290px;min-height:0;background:#fff;padding:0;border:none;border-radius:.2857rem;box-shadow:0 3px 0 0 #d4d4d5,0 0 0 1px #d4d4d5;-webkit-transition:box-shadow .2s ease;transition:box-shadow .2s ease;z-index:''}.ui.card{margin:1em 0}.ui.card a,.ui.cards>.card a{cursor:pointer}.ui.card:first-child{margin-top:0}.ui.card:last-child{margin-bottom:0}.ui.cards{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:-.875em -.5em;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.cards>.card{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:.875em .5em;float:none}.ui.card:after,.ui.cards:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.cards~.ui.cards{margin-top:.875em}.ui.card>:first-child,.ui.cards>.card>:first-child{border-radius:.2857rem .2857rem 0 0!important}.ui.card>:last-child,.ui.cards>.card>:last-child{border-radius:0 0 .2857rem .2857rem!important}.ui.card>.image,.ui.cards>.card>.image{display:block;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;position:relative;padding:0;background:rgba(0,0,0,.05)}.ui.card>.image>img,.ui.cards>.card>.image>img{display:block;width:100%;height:auto;border-radius:.2857rem .2857rem 0 0;border:none}.ui.card>.image:only-child>img,.ui.cards>.card>.image:only-child>img{border-radius:.2857rem}.ui.card>.content,.ui.cards>.card>.content{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;background:0 0;margin:0;padding:1em;box-shadow:none;font-size:1em;border:none;border-radius:0}.ui.card>.content:after,.ui.cards>.card>.content:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.card>.content>.header,.ui.cards>.card>.content>.header{display:block;margin:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;color:rgba(0,0,0,.85)}.ui.card>.content>.header:not(.ui),.ui.cards>.card>.content>.header:not(.ui){font-weight:700;font-size:1.2em;margin-top:-.165em;line-height:1.33em}.ui.card>.content>.header+.description,.ui.card>.content>.meta+.description,.ui.cards>.card>.content>.header+.description,.ui.cards>.card>.content>.meta+.description{margin-top:.5em}.ui.card [class*="left floated"],.ui.cards>.card [class*="left floated"]{float:left}.ui.card [class*="right floated"],.ui.cards>.card [class*="right floated"]{float:right}.ui.card [class*="left aligned"],.ui.cards>.card [class*="left aligned"]{text-align:left}.ui.card [class*="center aligned"],.ui.cards>.card [class*="center aligned"]{text-align:center}.ui.card [class*="right aligned"],.ui.cards>.card [class*="right aligned"]{text-align:right}.ui.card .content img,.ui.cards>.card .content img{display:inline-block;vertical-align:middle;width:auto}.ui.card .avatar img,.ui.card img.avatar,.ui.cards>.card .avatar img,.ui.cards>.card img.avatar{width:2.5em;height:2.5em;border-radius:500rem}.ui.card>.content>.description,.ui.cards>.card>.content>.description{clear:both;color:rgba(0,0,0,.5)}.ui.card>.content p,.ui.cards>.card>.content p{margin:0 0 .5em}.ui.card>.content p:last-child,.ui.cards>.card>.content p:last-child{margin-bottom:0}.ui.card .meta,.ui.cards>.card .meta{font-size:.9em;color:rgba(0,0,0,.4)}.ui.card .meta *,.ui.cards>.card .meta *{margin-right:.3em}.ui.card .meta :last-child,.ui.cards>.card .meta :last-child{margin-right:0}.ui.card .meta [class*="right floated"],.ui.cards>.card .meta [class*="right floated"]{margin-right:0;margin-left:.3em}.ui.card>.content a:not(.ui),.ui.cards>.card>.content a:not(.ui){color:'';-webkit-transition:color .2s ease;transition:color .2s ease}.ui.card>.content a:not(.ui):hover,.ui.cards>.card>.content a:not(.ui):hover{color:''}.ui.card>.content>a.header,.ui.cards>.card>.content>a.header{color:rgba(0,0,0,.85)}.ui.card>.content>a.header:hover,.ui.cards>.card>.content>a.header:hover{color:#00b2f3}.ui.card .meta>a:not(.ui),.ui.cards>.card .meta>a:not(.ui){color:rgba(0,0,0,.4)}.ui.card .meta>a:not(.ui):hover,.ui.cards>.card .meta>a:not(.ui):hover{color:rgba(0,0,0,.8)}.ui.card>.button:last-child,.ui.card>.buttons:last-child,.ui.cards>.card>.button:last-child,.ui.cards>.card>.buttons:last-child{margin:0 0 -1px;width:100%}.ui.card .dimmer,.ui.cards>.card .dimmer{background-color:'';z-index:10}.ui.card>.content .star.icon,.ui.cards>.card>.content .star.icon{cursor:pointer;opacity:.75;-webkit-transition:color .2s ease;transition:color .2s ease}.ui.card>.content .star.icon:hover,.ui.cards>.card>.content .star.icon:hover{opacity:1;color:#ffb70a}.ui.card>.content .active.star.icon,.ui.cards>.card>.content .active.star.icon{color:#ffe623}.ui.card>.content .like.icon,.ui.cards>.card>.content .like.icon{cursor:pointer;opacity:.75;-webkit-transition:color .2s ease;transition:color .2s ease}.ui.card>.content .like.icon:hover,.ui.cards>.card>.content .like.icon:hover{opacity:1;color:#ff2733}.ui.card>.content .active.like.icon,.ui.cards>.card>.content .active.like.icon{color:#ff2733}.ui.card>.extra,.ui.cards>.card>.extra{max-width:100%;min-height:0!important;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;position:static;background:0 0;width:auto;margin:0;padding:.75em 1em;top:0;left:0;color:rgba(0,0,0,.4);box-shadow:none;-webkit-transition:color .2s ease;transition:color .2s ease;border-top:1px solid rgba(0,0,0,.05)}.ui.card>.extra a:not(.ui),.ui.cards>.card>.extra a:not(.ui){color:rgba(0,0,0,.4)}.ui.card>.extra a:not(.ui):hover,.ui.cards>.card>.extra a:not(.ui):hover{color:#00b2f3}.ui.fluid.card{width:100%;max-width:9999px}.ui.cards a.card:hover,.ui.link.card:hover,.ui.link.cards .card:hover,a.ui.card:hover{cursor:pointer;z-index:5;background:0 0;border:none;box-shadow:0 3px 0 0 #bebebf,0 0 0 1px rgba(39,41,43,.3)}.ui.black.card,.ui.black.cards>.card,.ui.cards>.black.card{box-shadow:0 3px 0 0 #1b1c1d,0 0 0 1px #d4d4d5}.ui.blue.card,.ui.blue.cards>.card,.ui.cards>.blue.card{box-shadow:0 3px 0 0 #3b83c0,0 0 0 1px #d4d4d5}.ui.cards>.green.card,.ui.green.card,.ui.green.cards>.card{box-shadow:0 3px 0 0 #5bbd72,0 0 0 1px #d4d4d5}.ui.cards>.orange.card,.ui.orange.card,.ui.orange.cards>.card{box-shadow:0 3px 0 0 #e07b53,0 0 0 1px #d4d4d5}.ui.cards>.pink.card,.ui.pink.card,.ui.pink.cards>.card{box-shadow:0 3px 0 0 #d9499a,0 0 0 1px #d4d4d5}.ui.cards>.purple.card,.ui.purple.card,.ui.purple.cards>.card{box-shadow:0 3px 0 0 #564f8a,0 0 0 1px #d4d4d5}.ui.cards>.red.card,.ui.red.card,.ui.red.cards>.card{box-shadow:0 3px 0 0 #d95c5c,0 0 0 1px #d4d4d5}.ui.cards>.teal.card,.ui.teal.card,.ui.teal.cards>.card{box-shadow:0 3px 0 0 #00b5ad,0 0 0 1px #d4d4d5}.ui.cards>.yellow.card,.ui.yellow.card,.ui.yellow.cards>.card{box-shadow:0 3px 0 0 #f2c61f,0 0 0 1px #d4d4d5}.ui.black.card:hover,.ui.black.cards>.card:hover,.ui.cards>.black.card:hover{box-shadow:0 3px 0 0 #1b1c1d,0 0 0 1px #d4d4d5}.ui.blue.card:hover,.ui.blue.cards>.card:hover,.ui.cards>.blue.card:hover{box-shadow:0 3px 0 0 #458ac6,0 0 0 1px #d4d4d5}.ui.cards>.green.card:hover,.ui.green.card:hover,.ui.green.cards>.card:hover{box-shadow:0 3px 0 0 #66c17b,0 0 0 1px #d4d4d5}.ui.cards>.orange.card:hover,.ui.orange.card:hover,.ui.orange.cards>.card:hover{box-shadow:0 3px 0 0 #e28560,0 0 0 1px #d4d4d5}.ui.cards>.pink.card:hover,.ui.pink.card:hover,.ui.pink.cards>.card:hover{box-shadow:0 3px 0 0 #dc56a1,0 0 0 1px #d4d4d5}.ui.cards>.purple.card:hover,.ui.purple.card:hover,.ui.purple.cards>.card:hover{box-shadow:0 3px 0 0 #5c5594,0 0 0 1px #d4d4d5}.ui.cards>.red.card:hover,.ui.red.card:hover,.ui.red.cards>.card:hover{box-shadow:0 3px 0 0 #dc6868,0 0 0 1px #d4d4d5}.ui.cards>.teal.card:hover,.ui.teal.card:hover,.ui.teal.cards>.card:hover{box-shadow:0 3px 0 0 #00c4bc,0 0 0 1px #d4d4d5}.ui.cards>.yellow.card:hover,.ui.yellow.card:hover,.ui.yellow.cards>.card:hover{box-shadow:0 3px 0 0 #f3ca2d,0 0 0 1px #d4d4d5}.ui.one.cards{margin-left:0;margin-right:0}.ui.one.cards>.card{width:100%}.ui.two.cards{margin-left:-1em;margin-right:-1em}.ui.two.cards>.card{width:-webkit-calc(50% - 2em);width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.two.cards>.card:nth-child(2n+1){clear:left}.ui.three.cards{margin-left:-1em;margin-right:-1em}.ui.three.cards>.card{width:-webkit-calc(33.33333333% - 2em);width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.three.cards>.card:nth-child(3n+1){clear:left}.ui.four.cards{margin-left:-.75em;margin-right:-.75em}.ui.four.cards>.card{width:-webkit-calc(25% - 1.5em);width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.four.cards>.card:nth-child(4n+1){clear:left}.ui.five.cards{margin-left:-.75em;margin-right:-.75em}.ui.five.cards>.card{width:-webkit-calc(20% - 1.5em);width:calc(20% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.five.cards>.card:nth-child(5n+1){clear:left}.ui.six.cards{margin-left:-.75em;margin-right:-.75em}.ui.six.cards>.card{width:-webkit-calc(16.66666667% - 1.5em);width:calc(16.66666667% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.six.cards>.card:nth-child(6n+1){clear:left}.ui.seven.cards{margin-left:-.5em;margin-right:-.5em}.ui.seven.cards>.card{width:-webkit-calc(14.28571429% - 1em);width:calc(14.28571429% - 1em);margin-left:.5em;margin-right:.5em}.ui.seven.cards>.card:nth-child(7n+1){clear:left}.ui.eight.cards{margin-left:-.5em;margin-right:-.5em}.ui.eight.cards>.card{width:-webkit-calc(12.5% - 1em);width:calc(12.5% - 1em);margin-left:.5em;margin-right:.5em;font-size:11px}.ui.eight.cards>.card:nth-child(8n+1){clear:left}.ui.nine.cards{margin-left:-.5em;margin-right:-.5em}.ui.nine.cards>.card{width:-webkit-calc(11.11111111% - 1em);width:calc(11.11111111% - 1em);margin-left:.5em;margin-right:.5em;font-size:10px}.ui.nine.cards>.card:nth-child(9n+1){clear:left}.ui.ten.cards{margin-left:-.5em;margin-right:-.5em}.ui.ten.cards>.card{width:-webkit-calc(10% - 1em);width:calc(10% - 1em);margin-left:.5em;margin-right:.5em}.ui.ten.cards>.card:nth-child(10n+1){clear:left}@media only screen and (max-width:767px){.ui.two.doubling.cards{margin-left:0;margin-right:0}.ui.two.doubling.cards .card{width:100%;margin-left:0;margin-right:0}.ui.three.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.three.doubling.cards .card{width:-webkit-calc(50% - 2em);width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.four.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.four.doubling.cards .card{width:-webkit-calc(50% - 2em);width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.five.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.five.doubling.cards .card{width:-webkit-calc(50% - 2em);width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.six.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.six.doubling.cards .card{width:-webkit-calc(50% - 2em);width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.seven.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.seven.doubling.cards .card{width:-webkit-calc(33.33333333% - 2em);width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.eight.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.eight.doubling.cards .card{width:-webkit-calc(33.33333333% - 2em);width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.nine.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.nine.doubling.cards .card{width:-webkit-calc(33.33333333% - 2em);width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.ten.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.ten.doubling.cards .card{width:-webkit-calc(33.33333333% - 2em);width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}}@media only screen and (min-width:768px)and (max-width:991px){.ui.two.doubling.cards{margin-left:0;margin-right:0}.ui.two.doubling.cards .card{width:100%;margin-left:0;margin-right:0}.ui.three.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.three.doubling.cards .card{width:-webkit-calc(50% - 2em);width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.four.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.four.doubling.cards .card{width:-webkit-calc(50% - 2em);width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.five.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.five.doubling.cards .card{width:-webkit-calc(33.33333333% - 2em);width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.six.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.six.doubling.cards .card{width:-webkit-calc(33.33333333% - 2em);width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.eight.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.eight.doubling.cards .card{width:-webkit-calc(25% - 1.5em);width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.nine.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.nine.doubling.cards .card{width:-webkit-calc(25% - 1.5em);width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.ten.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.ten.doubling.cards .card{width:-webkit-calc(20% - 1.5em);width:calc(20% - 1.5em);margin-left:.75em;margin-right:.75em}}@media only screen and (max-width:767px){.ui.stackable.cards{display:block!important}.ui.stackable.cards .card:first-child{margin-top:0!important}.ui.stackable.cards>.card{display:block!important;height:auto!important;margin:1em;padding:0!important;width:-webkit-calc(100% - 2em)!important;width:calc(100% - 2em)!important}}.ui.cards>.card{font-size:1em}.ui.comments{margin:1.5em 0;max-width:650px}.ui.comments:first-child{margin-top:0}.ui.comments:last-child{margin-bottom:0}.ui.comments .comment{position:relative;background:0 0;margin:.5em 0 0;padding:.5em 0 0;border:none;border-top:none;line-height:1.2}.ui.comments .comment:first-child{margin-top:0;padding-top:0}.ui.comments .comment .comments{margin:0 0 .5em .5em;padding:1em 0 1em 1em}.ui.comments .comment .comments:before{position:absolute;top:0;left:0}.ui.comments .comment .comments .comment{border:none;border-top:none;background:0 0}.ui.comments .comment .avatar{display:block;width:2.5em;height:auto;float:left;margin:.2em 0 0}.ui.comments .comment .avatar img,.ui.comments .comment img.avatar{display:block;margin:0 auto;width:100%;height:100%;border-radius:.25rem}.ui.comments .comment>.content{display:block}.ui.comments .comment>.avatar~.content{margin-left:3.5em}.ui.comments .comment .author{font-size:1em;color:rgba(0,0,0,.8);font-weight:700}.ui.comments .comment a.author{cursor:pointer}.ui.comments .comment a.author:hover{color:#00b2f3}.ui.comments .comment .metadata{display:inline-block;margin-left:.5em;color:rgba(0,0,0,.4);font-size:.875em}.ui.comments .comment .metadata>*{display:inline-block;margin:0 .5em 0 0}.ui.comments .comment .metadata>:last-child{margin-right:0}.ui.comments .comment .text{margin:.25em 0 .5em;font-size:1em;word-wrap:break-word;color:rgba(0,0,0,.8);line-height:1.3}.ui.comments .comment .actions{font-size:.875em}.ui.comments .comment .actions a{cursor:pointer;display:inline-block;margin:0 .75em 0 0;color:rgba(0,0,0,.4)}.ui.comments .comment .actions a:last-child{margin-right:0}.ui.comments .comment .actions a.active,.ui.comments .comment .actions a:hover{color:rgba(0,0,0,.8)}.ui.comments>.reply.form{margin-top:1em}.ui.comments .comment .reply.form{width:100%;margin-top:1em}.ui.comments .reply.form textarea{font-size:1em;height:12em}.ui.collapsed.comments,.ui.comments .collapsed.comment,.ui.comments .collapsed.comments{display:none}.ui.threaded.comments .comment .comments{margin:-1.5em 0 -1em 1.25em;padding:3em 0 2em 2.25em;box-shadow:-1px 0 0 rgba(39,41,43,.15)}.ui.minimal.comments .comment .actions{opacity:0;position:absolute;top:0;right:0;left:auto;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;-webkit-transition-delay:.1s;transition-delay:.1s}.ui.minimal.comments .comment>.content:hover>.actions{opacity:1}.ui.small.comments{font-size:.9em}.ui.comments{font-size:1em}.ui.large.comments{font-size:1.1em}.ui.huge.comments{font-size:1.2em}.ui.feed{margin:1em 0}.ui.feed:first-child,.ui.feed:last-child{margin-top:0}.ui.feed>.event{display:table;width:100%;padding:.5rem 0;margin:0;background:0 0;border-top:none}.ui.feed>.event:first-child{border-top:0;padding-top:0}.ui.feed>.event:last-child{padding-bottom:0}.ui.feed>.event>.label{display:table-cell;width:2.5em;height:2.5em;vertical-align:top;text-align:left}.ui.feed>.event>.label .icon{opacity:1;font-size:1.5em;width:100%;padding:.25em;background:0 0;border:none;border-radius:none;color:rgba(0,0,0,.6)}.ui.feed>.event>.label img{width:100%;height:auto;border-radius:500rem}.ui.feed>.event>.label+.content{padding:.5em 0 .5em 1.25em}.ui.feed>.event>.content{display:table-cell;vertical-align:top;text-align:left;word-wrap:break-word}.ui.feed>.event:last-child>.content{padding-bottom:0}.ui.feed>.event>.content a{cursor:pointer}.ui.feed>.event>.content .date{margin:-.5rem 0 0;padding:0;font-weight:400;font-size:1em;font-style:normal;color:rgba(0,0,0,.4)}.ui.feed>.event>.content .summary{margin:0;font-size:1em;font-weight:700;color:rgba(0,0,0,.8)}.ui.feed>.event>.content .summary img{display:inline-block;width:auto;height:2em;margin:-.25em .25em 0 0;border-radius:.25em;vertical-align:middle}.ui.feed>.event>.content .user{display:inline-block;font-weight:700;margin-right:0;vertical-align:baseline}.ui.feed>.event>.content .user img{margin:-.25em .25em 0 0;width:auto;height:2em;vertical-align:middle}.ui.feed>.event>.content .summary>.date{display:inline-block;float:none;font-weight:400;font-size:.875em;font-style:normal;margin:0 0 0 .5em;padding:0;color:rgba(0,0,0,.4)}.ui.feed>.event>.content .extra{margin:.5em 0 0;background:0 0;padding:0;color:rgba(0,0,0,.8)}.ui.feed>.event>.content .extra.images img{display:inline-block;margin:0 .25em 0 0;width:6em}.ui.feed>.event>.content .extra.text{padding:.5em 1em;border-left:3px solid rgba(0,0,0,.2);font-size:1em;max-width:500px;line-height:1.33}.ui.feed>.event>.content .meta{display:inline-block;font-size:.875em;margin:.5em 0 0;background:0 0;border:none;border-radius:0;box-shadow:none;padding:0;color:rgba(0,0,0,.6)}.ui.feed>.event>.content .meta>*{position:relative;margin-left:.75em}.ui.feed>.event>.content .meta>:after{content:'';color:rgba(0,0,0,.2);top:0;left:-1em;opacity:1;position:absolute;vertical-align:top}.ui.feed>.event>.content .meta .like{color:'';-webkit-transition:.2s color ease;transition:.2s color ease}.ui.feed>.event>.content .meta .like:hover .icon{color:#ff2733}.ui.feed>.event>.content .meta .active.like .icon{color:#ef404a}.ui.feed>.event>.content .meta>:first-child{margin-left:0}.ui.feed>.event>.content .meta>:first-child::after{display:none}.ui.feed>.event>.content .meta a,.ui.feed>.event>.content .meta>.icon{cursor:pointer;opacity:1;color:rgba(0,0,0,.5);-webkit-transition:color .2s ease;transition:color .2s ease}.ui.feed>.event>.content .meta a:hover,.ui.feed>.event>.content .meta a:hover .icon,.ui.feed>.event>.content .meta>.icon:hover{color:rgba(0,0,0,.8)}.ui.small.feed{font-size:.9em}.ui.feed{font-size:1em}.ui.large.feed{font-size:1.1em}.ui.items>.item{table-layout:fixed;display:table;margin:1em 0;width:100%;min-height:0;background:0 0;padding:0;border:none;border-radius:0;box-shadow:none;-webkit-transition:box-shadow .2s ease;transition:box-shadow .2s ease;z-index:''}.ui.items>.item a{cursor:pointer}.ui.items{margin:1.5em 0}.ui.items:first-child{margin-top:0!important}.ui.items:last-child{margin-bottom:0!important}.ui.items>.item:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item:first-child{margin-top:0}.ui.items>.item:last-child{margin-bottom:0}.ui.items>.item>.image{position:relative;display:table-cell;float:none;margin:0;padding:0;max-height:'';vertical-align:top}.ui.items>.item>.image>img{display:block;width:100%;height:auto;border-radius:.125rem;border:none}.ui.items>.item>.image:only-child>img{border-radius:0}.ui.items>.item>.content{display:block;background:0 0;margin:0;padding:0;box-shadow:none;font-size:1em;border:none;border-radius:0}.ui.items>.item>.content:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image+.content{width:100%;display:table-cell;margin-left:0;vertical-align:top;padding-left:1.5em}.ui.items>.item>.content>.header{display:block;margin:-.165em 0 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;color:rgba(0,0,0,.85)}.ui.items>.item>.content>.header:not(.ui){font-size:1.2em}.ui.items>.item [class*="left floated"]{float:left}.ui.items>.item [class*="right floated"]{float:right}.ui.items>.item .content img{vertical-align:middle;width:''}.ui.items>.item .avatar img,.ui.items>.item img.avatar{width:'';height:'';border-radius:500rem}.ui.items>.item>.content>.description{margin-top:.6em;max-width:550px;font-size:1em;line-height:1.33;color:rgba(0,0,0,.8)}.ui.items>.item>.content p{margin:0 0 .5em}.ui.items>.item>.content p:last-child{margin-bottom:0}.ui.items>.item .meta{font-size:1em;line-height:1em;color:rgba(0,0,0,.6)}.ui.items>.item .meta *{margin-right:.3em}.ui.items>.item .meta :last-child{margin-right:0}.ui.items>.item .meta [class*="right floated"]{margin-right:0;margin-left:.3em}.ui.items>.item>.content a:not(.ui){color:'';-webkit-transition:color .2s ease;transition:color .2s ease}.ui.items>.item>.content a:not(.ui):hover{color:''}.ui.items>.item>.content>a.header{color:rgba(0,0,0,.85)}.ui.items>.item>.content>a.header:hover{color:#00b2f3}.ui.items>.item .meta>a:not(.ui){color:rgba(0,0,0,.4)}.ui.items>.item .meta>a:not(.ui):hover{color:rgba(0,0,0,.8)}.ui.items>.item>.content .favorite.icon{cursor:pointer;opacity:.75;-webkit-transition:color .2s ease;transition:color .2s ease}.ui.items>.item>.content .favorite.icon:hover{opacity:1;color:#ffb70a}.ui.items>.item>.content .active.favorite.icon{color:#ffe623}.ui.items>.item>.content .like.icon{cursor:pointer;opacity:.75;-webkit-transition:color .2s ease;transition:color .2s ease}.ui.items>.item>.content .like.icon:hover{opacity:1;color:#ff2733}.ui.items>.item>.content .active.like.icon{color:#ff2733}.ui.items>.item .extra{display:block;position:relative;background:0 0;margin:.5rem 0 0;width:100%;padding:0;top:0;left:0;color:rgba(0,0,0,.4);box-shadow:none;-webkit-transition:color .2s ease;transition:color .2s ease;border-top:none}.ui.items>.item .extra>*{margin:.25rem .5rem .25rem 0}.ui.items>.item .extra>[class*="right floated"]{margin:.25rem 0 .25rem .5rem}.ui.items>.item .extra:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image:not(.ui){width:175px}@media only screen and (min-width:768px)and (max-width:991px){.ui.items>.item{margin:1em 0}.ui.items>.item>.image:not(.ui){width:150px}.ui.items>.item>.image+.content{display:block;padding:0 0 0 1em}}@media only screen and (max-width:767px){.ui.items>.item{margin:2em 0}.ui.items>.item>.image{display:block;margin-left:auto;margin-right:auto}.ui.items>.item>.image,.ui.items>.item>.image>img{max-width:100%!important;width:auto!important;max-height:250px!important}.ui.items>.item>.image+.content{display:block;padding:1.5em 0 0}}.ui.items>.item>.image+[class*="top aligned"].content{vertical-align:top}.ui.items>.item>.image+[class*="middle aligned"].content{vertical-align:middle}.ui.items>.item>.image+[class*="bottom aligned"].content{vertical-align:bottom}.ui.relaxed.items>.item{margin:1.5em 0}.ui[class*="very relaxed"].items>.item{margin:2em 0}.ui.divided.items>.item{border-top:1px solid rgba(39,41,43,.15);margin:0;padding:1em 0}.ui.divided.items>.item:first-child{border-top:none;margin-top:0!important;padding-top:0!important}.ui.divided.items>.item:last-child{margin-bottom:0!important;padding-bottom:0!important}.ui.relaxed.divided.items>.item{margin:0;padding:1.5em 0}.ui[class*="very relaxed"].divided.items>.item{margin:0;padding:2em 0}.ui.items a.item:hover,.ui.link.items>.item:hover{cursor:pointer}.ui.items a.item:hover .content .header,.ui.link.items>.item:hover .content .header{color:#00b2f3}.ui.items>.item{min-width:100%;font-size:1em}.ui.statistic{display:inline-block;margin:1em 0;max-width:175px}.ui.statistic+.ui.statistic{margin:0 0 0 1em}.ui.statistic:first-child{margin-top:0}.ui.statistic:last-child{margin-bottom:0}.ui.statistics>.statistic{display:block;float:left;margin:0 1em 2em;max-width:175px}.ui.statistics{display:block;margin:1em -1em}.ui.statistics:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.statistics:first-child{margin-top:0}.ui.statistics:last-child{margin-bottom:0}.ui.statistic>.value,.ui.statistics .statistic>.value{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:400;line-height:1em;color:#1b1c1d;text-transform:uppercase;text-align:center}.ui.statistic>.label,.ui.statistics .statistic>.label{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1rem;font-weight:400;color:rgba(0,0,0,.4);text-transform:none;text-align:center}.ui.statistic>.label~.value,.ui.statistics .statistic>.label~.value{margin-top:0}.ui.statistic>.value~.label,.ui.statistics .statistic>.value~.label{margin-top:.25rem}.ui.statistic>.value .icon,.ui.statistics .statistic>.value .icon{opacity:1;width:auto;margin:0}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{line-height:1em;min-height:2em;text-align:center}.ui.statistic>.text.value+.label,.ui.statistics .statistic>.text.value+.label{text-align:center}.ui.statistic>.value img,.ui.statistics .statistic>.value img{max-height:3rem;vertical-align:baseline}.ui.horizontal.statistic,.ui.horizontal.statistics{display:block;margin:0;max-width:9999px}.ui.horizontal.statistics .statistic{float:none;margin:1em 0;max-width:9999px}.ui.horizontal.statistic>.text.value,.ui.horizontal.statistics>.statistic>.text.value{min-height:0!important}.ui.horizontal.statistic>.value .icon,.ui.horizontal.statistics .statistic>.value .icon{width:1.18em}.ui.horizontal.statistic>.label,.ui.horizontal.statistics .statistic>.label{display:inline-block;vertical-align:middle;margin:0 0 0 .75em}.ui.blue.statistic>.value,.ui.blue.statistics .statistic>.value,.ui.statistics .blue.statistic>.value{color:#3b83c0}.ui.green.statistic>.value,.ui.green.statistics .statistic>.value,.ui.statistics .green.statistic>.value{color:#5bbd72}.ui.orange.statistic>.value,.ui.orange.statistics .statistic>.value,.ui.statistics .orange.statistic>.value{color:#e07b53}.ui.pink.statistic>.value,.ui.pink.statistics .statistic>.value,.ui.statistics .pink.statistic>.value{color:#d9499a}.ui.purple.statistic>.value,.ui.purple.statistics .statistic>.value,.ui.statistics .purple.statistic>.value{color:#564f8a}.ui.red.statistic>.value,.ui.red.statistics .statistic>.value,.ui.statistics .red.statistic>.value{color:#d95c5c}.ui.statistics .teal.statistic>.value,.ui.teal.statistic>.value,.ui.teal.statistics .statistic>.value{color:#00b5ad}.ui.statistics .yellow.statistic>.value,.ui.yellow.statistic>.value,.ui.yellow.statistics .statistic>.value{color:#f2c61f}.ui[class*="left floated"].statistic{float:left;margin:0 2em 1em 0}.ui[class*="right floated"].statistic{float:right;margin:0 0 1em 2em}.ui.floated.statistic:last-child{margin-bottom:0}.ui.inverted.statistic .value{color:#fff}.ui.inverted.statistic .label{color:rgba(255,255,255,.8)}.ui.inverted.blue.statistic>.value,.ui.inverted.blue.statistics .statistic>.value,.ui.statistics .inverted.blue.statistic>.value{color:#54c8ff}.ui.inverted.green.statistic>.value,.ui.inverted.green.statistics .statistic>.value,.ui.statistics .inverted.green.statistic>.value{color:#2ecc40}.ui.inverted.orange.statistic>.value,.ui.inverted.orange.statistics .statistic>.value,.ui.statistics .inverted.orange.statistic>.value{color:#ff851b}.ui.inverted.pink.statistic>.value,.ui.inverted.pink.statistics .statistic>.value,.ui.statistics .inverted.pink.statistic>.value{color:#ff8edf}.ui.inverted.purple.statistic>.value,.ui.inverted.purple.statistics .statistic>.value,.ui.statistics .inverted.purple.statistic>.value{color:#cdc6ff}.ui.inverted.red.statistic>.value,.ui.inverted.red.statistics .statistic>.value,.ui.statistics .inverted.red.statistic>.value{color:#ff695e}.ui.inverted.teal.statistic>.value,.ui.inverted.teal.statistics .statistic>.value,.ui.statistics .inverted.teal.statistic>.value{color:#6dffff}.ui.inverted.yellow.statistic>.value,.ui.inverted.yellow.statistics .statistic>.value,.ui.statistics .inverted.yellow.statistic>.value{color:#ffe21f}.ui.mini.horizontal.statistic>.value,.ui.mini.horizontal.statistics .statistic>.value,.ui.mini.statistic>.value,.ui.mini.statistics .statistic>.value{font-size:1.5rem}.ui.mini.statistic>.text.value,.ui.mini.statistics .statistic>.text.value{font-size:1rem}.ui.tiny.horizontal.statistic>.value,.ui.tiny.horizontal.statistics .statistic>.value,.ui.tiny.statistic>.value,.ui.tiny.statistics .statistic>.value{font-size:2rem}.ui.tiny.statistic>.text.value,.ui.tiny.statistics .statistic>.text.value{font-size:1rem}.ui.small.statistic>.value,.ui.small.statistics .statistic>.value{font-size:3rem}.ui.small.horizontal.statistic>.value,.ui.small.horizontal.statistics .statistic>.value{font-size:2rem}.ui.small.statistic>.text.value,.ui.small.statistics .statistic>.text.value{font-size:1.5rem}.ui.statistic>.value,.ui.statistics .statistic>.value{font-size:4rem}.ui.horizontal.statistic>.value,.ui.horizontal.statistics .statistic>.value{display:inline-block;vertical-align:middle;font-size:3rem}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{font-size:2rem}.ui.large.statistic>.value,.ui.large.statistics .statistic>.value{font-size:5rem}.ui.large.horizontal.statistic>.value,.ui.large.horizontal.statistics .statistic>.value{font-size:4rem}.ui.large.statistic>.text.value,.ui.large.statistics .statistic>.text.value{font-size:2.5rem}.ui.huge.statistic>.value,.ui.huge.statistics .statistic>.value{font-size:6rem}.ui.huge.horizontal.statistic>.value,.ui.huge.horizontal.statistics .statistic>.value{font-size:5rem}.ui.huge.statistic>.text.value,.ui.huge.statistics .statistic>.text.value{font-size:2.5rem}.ui.accordion,.ui.accordion .accordion{max-width:100%;font-size:1em}.ui.accordion .accordion{margin:1em 0 0;padding:0}.ui.accordion .accordion .title,.ui.accordion .title{cursor:pointer}.ui.accordion .title:not(.ui){padding:.5em 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1em;color:rgba(0,0,0,.8)}.ui.accordion .accordion .title~.content,.ui.accordion .title~.content{display:none}.ui.accordion:not(.styled) .accordion .title~.content:not(.ui),.ui.accordion:not(.styled) .title~.content:not(.ui){margin:0;padding:.5em 0 1em}.ui.accordion:not(.styled) .title~.content:not(.ui):last-child{padding-bottom:0}.ui.accordion .accordion .title .dropdown.icon,.ui.accordion .title .dropdown.icon{display:inline-block;float:none;opacity:1;width:1.25em;height:1em;margin:0 .25rem 0 0;padding:0;font-size:1em;-webkit-transition:-webkit-transform .2s ease,opacity .2s ease;transition:transform .2s ease,opacity .2s ease;vertical-align:baseline;-webkit-transform:none;-ms-transform:none;transform:none}.ui.accordion.menu .item .title{display:block;padding:0}.ui.accordion.menu .item .title>.dropdown.icon{float:right;margin:.165em 0 0 1em;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.ui.accordion .ui.header .dropdown.icon{font-size:1em;margin:0 .25rem 0 0}.ui.accordion .accordion .active.title .dropdown.icon,.ui.accordion .active.title .dropdown.icon,.ui.accordion.menu .item .active.title>.dropdown.icon{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.ui.styled.accordion{width:600px}.ui.styled.accordion,.ui.styled.accordion .accordion{border-radius:.2857rem;background:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.05),0 0 0 1px rgba(39,41,43,.15)}.ui.styled.accordion .accordion .title,.ui.styled.accordion .title{margin:0;padding:.75em 1em;color:rgba(0,0,0,.4);font-weight:700;border-top:1px solid rgba(39,41,43,.15);-webkit-transition:background .2s ease,color .2s ease;transition:background .2s ease,color .2s ease}.ui.styled.accordion .accordion .title:first-child,.ui.styled.accordion>.title:first-child{border-top:none}.ui.styled.accordion .accordion .content,.ui.styled.accordion .content{margin:0;padding:.5em 1em 1.5em}.ui.styled.accordion .accordion .content{padding:.5em 1em 1.5em}.ui.styled.accordion .accordion .active.title,.ui.styled.accordion .accordion .title:hover,.ui.styled.accordion .active.title,.ui.styled.accordion .title:hover{background:0 0;color:rgba(0,0,0,.8)}.ui.accordion .accordion .active.content,.ui.accordion .active.content{display:block}.ui.fluid.accordion,.ui.fluid.accordion .accordion{width:100%}.ui.inverted.accordion .title:not(.ui){color:#fff}@font-face{font-family:Accordion;src:url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfOIKAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zryj6HgAAAFwAAAAyGhlYWT/0IhHAAACOAAAADZoaGVhApkB5wAAAnAAAAAkaG10eAJuABIAAAKUAAAAGGxvY2EAjABWAAACrAAAAA5tYXhwAAgAFgAAArwAAAAgbmFtZfC1n04AAALcAAABPHBvc3QAAwAAAAAEGAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQASAEkAtwFuABMAADc0PwE2FzYXFh0BFAcGJwYvASY1EgaABQgHBQYGBQcIBYAG2wcGfwcBAQcECf8IBAcBAQd/BgYAAAAAAQAAAEkApQFuABMAADcRNDc2MzIfARYVFA8BBiMiJyY1AAUGBwgFgAYGgAUIBwYFWwEACAUGBoAFCAcFgAYGBQcAAAABAAAAAQAAqWYls18PPPUACwIAAAAAAM/9o+4AAAAAz/2j7gAAAAAAtwFuAAAACAACAAAAAAAAAAEAAAHg/+AAAAIAAAAAAAC3AAEAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAQAAAAC3ABIAtwAAAAAAAAAKABQAHgBCAGQAAAABAAAABgAUAAEAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")format('truetype'),url("data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAASwAAoAAAAABGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAS0AAAEtFpovuE9TLzIAAAIkAAAAYAAAAGAIIweQY21hcAAAAoQAAABMAAAATA984gpnYXNwAAAC0AAAAAgAAAAIAAAAEGhlYWQAAALYAAAANgAAADb/0IhHaGhlYQAAAxAAAAAkAAAAJAKZAedobXR4AAADNAAAABgAAAAYAm4AEm1heHAAAANMAAAABgAAAAYABlAAbmFtZQAAA1QAAAE8AAABPPC1n05wb3N0AAAEkAAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLa/iU+HQFHQAAAHkPHQAAAH4RHQAAAAkdAAABJBIABwEBBw0PERQZHnJhdGluZ3JhdGluZ3UwdTF1MjB1RjBEOXVGMERBAAACAYkABAAGAQEEBwoNVp38lA78lA78lA77lA773Z33bxWLkI2Qj44I9xT3FAWOj5CNkIuQi4+JjoePiI2Gi4YIi/uUBYuGiYeHiIiHh4mGi4aLho2Ijwj7FPcUBYeOiY+LkAgO+92L5hWL95QFi5CNkI6Oj4+PjZCLkIuQiY6HCPcU+xQFj4iNhouGi4aJh4eICPsU+xQFiIeGiYaLhouHjYePiI6Jj4uQCA74lBT4lBWLDAoAAAAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAADfYOJZfDzz1AAsCAAAAAADP/aPuAAAAAM/9o+4AAAAAALcBbgAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAAAtwABAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAEAAAAAtwASALcAAAAAUAAABgAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")format('woff');font-weight:400;font-style:normal}.ui.accordion .accordion .title .dropdown.icon,.ui.accordion .title .dropdown.icon{font-family:Accordion;line-height:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center}.ui.accordion .accordion .title .dropdown.icon:before,.ui.accordion .title .dropdown.icon:before{content:'\f0da'}.ui.checkbox{position:relative;display:inline-block;min-height:17px;font-size:1rem;line-height:15px;min-width:17px;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0;vertical-align:middle}.ui.checkbox input[type=checkbox],.ui.checkbox input[type=radio]{position:absolute;top:0;left:0;opacity:0!important;outline:0;z-index:-1}.ui.checkbox .box,.ui.checkbox label{display:block;cursor:pointer;padding-left:1.75em;outline:0}.ui.checkbox label{font-size:1em}.ui.checkbox .box:before,.ui.checkbox label:before{position:absolute;line-height:1;width:17px;height:17px;top:0;left:0;content:'';background:#fff;border-radius:.25em;-webkit-transition:background-color .3s ease,border .3s ease,box-shadow .3s ease;transition:background-color .3s ease,border .3s ease,box-shadow .3s ease;border:1px solid #d4d4d5}.ui.checkbox .box:after,.ui.checkbox label:after{position:absolute;top:0;left:0;line-height:17px;width:17px;height:17px;text-align:center;opacity:0;color:rgba(0,0,0,.8);-webkit-transition:all .1s ease;transition:all .1s ease}.ui.checkbox label,.ui.checkbox+label{cursor:pointer;color:rgba(0,0,0,.8);-webkit-transition:color .2s ease;transition:color .2s ease;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ui.checkbox+label{vertical-align:middle}.ui.checkbox .box:hover::before,.ui.checkbox label:hover::before{background:#fff;border:1px solid rgba(39,41,43,.3)}.ui.checkbox label:hover,.ui.checkbox+label:hover{color:rgba(0,0,0,.8)}.ui.checkbox .box:active::before,.ui.checkbox label:active::before{background:#f5f5f5;border:1px solid solid}.ui.checkbox input[type=checkbox]:active~label,.ui.checkbox input[type=radio]:active~label{color:rgba(0,0,0,.8)}.ui.checkbox input[type=checkbox]:focus~.box:before,.ui.checkbox input[type=checkbox]:focus~label:before,.ui.checkbox input[type=radio]:focus~.box:before,.ui.checkbox input[type=radio]:focus~label:before{background:#f5f5f5;border:1px solid solid}.ui.checkbox input[type=checkbox]:focus~label,.ui.checkbox input[type=radio]:focus~label{color:rgba(0,0,0,.8)}.ui.checkbox input[type=checkbox]:checked~.box:after,.ui.checkbox input[type=checkbox]:checked~label:after,.ui.checkbox input[type=radio]:checked~.box:after,.ui.checkbox input[type=radio]:checked~label:after{opacity:1}.ui.read-only.checkbox,.ui.read-only.checkbox label{cursor:default}.ui.checkbox input[type=checkbox][disabled]~.box:after,.ui.checkbox input[type=checkbox][disabled]~label,.ui.checkbox input[type=radio][disabled]~.box:after,.ui.checkbox input[type=radio][disabled]~label,.ui.disabled.checkbox .box:after,.ui.disabled.checkbox label{cursor:default;opacity:.5;color:#000}.ui.radio.checkbox{min-height:14px}.ui.radio.checkbox .box:before,.ui.radio.checkbox label:before{width:14px;height:14px;border-radius:500rem;top:1px;left:0;-webkit-transform:none;-ms-transform:none;transform:none}.ui.radio.checkbox .box:after,.ui.radio.checkbox label:after{border:none;line-height:14px;top:1px;left:0;font-size:9px;width:14px;height:14px;border-radius:500rem;-webkit-transform:scale(.42857143);-ms-transform:scale(.42857143);transform:scale(.42857143);background-color:rgba(0,0,0,.8)}.ui.slider.checkbox{cursor:pointer;min-height:1.25rem}.ui.slider.checkbox .box,.ui.slider.checkbox label{padding-left:4.5rem;line-height:1rem;color:rgba(0,0,0,.4)}.ui.slider.checkbox .box:before,.ui.slider.checkbox label:before{cursor:pointer;display:block;position:absolute;content:'';top:.4rem;left:0;z-index:1;border:none!important;background-color:rgba(0,0,0,.05);width:3.5rem;height:.25rem;-webkit-transform:none;-ms-transform:none;transform:none;border-radius:500rem;-webkit-transition:background .3s ease;transition:background .3s ease}.ui.slider.checkbox .box:after,.ui.slider.checkbox label:after{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05))#fff;background:linear-gradient(transparent,rgba(0,0,0,.05))#fff;position:absolute;content:'';opacity:1;z-index:2;border:none;box-shadow:0 1px 2px 0 rgba(0,0,0,.05),0 0 0 1px rgba(39,41,43,.15)inset;width:1.5rem;height:1.5rem;top:-.25rem;left:0;-webkit-transform:none;-ms-transform:none;transform:none;border-radius:500rem;-webkit-transition:left .3s ease 0s;transition:left .3s ease 0s}.ui.slider.checkbox input[type=checkbox]:focus~.box:before,.ui.slider.checkbox input[type=checkbox]:focus~label:before,.ui.slider.checkbox input[type=radio]:focus~.box:before,.ui.slider.checkbox input[type=radio]:focus~label:before{background-color:rgba(0,0,0,.1);border:none}.ui.slider.checkbox .box:hover,.ui.slider.checkbox label:hover{color:rgba(0,0,0,.8)}.ui.slider.checkbox .box:hover::before,.ui.slider.checkbox label:hover::before{background:rgba(0,0,0,.1)}.ui.slider.checkbox input[type=checkbox]:checked~.box,.ui.slider.checkbox input[type=checkbox]:checked~label,.ui.slider.checkbox input[type=radio]:checked~.box,.ui.slider.checkbox input[type=radio]:checked~label{color:rgba(0,0,0,.8)}.ui.slider.checkbox input[type=checkbox]:checked~.box:before,.ui.slider.checkbox input[type=checkbox]:checked~label:before,.ui.slider.checkbox input[type=radio]:checked~.box:before,.ui.slider.checkbox input[type=radio]:checked~label:before{background-color:rgba(0,0,0,.1)}.ui.slider.checkbox input[type=checkbox]:checked~.box:after,.ui.slider.checkbox input[type=checkbox]:checked~label:after,.ui.slider.checkbox input[type=radio]:checked~.box:after,.ui.slider.checkbox input[type=radio]:checked~label:after{left:2rem}.ui.toggle.checkbox{cursor:pointer;min-height:1.5rem}.ui.toggle.checkbox .box,.ui.toggle.checkbox label{min-height:1.5rem;padding-left:4.5rem;color:rgba(0,0,0,.8)}.ui.toggle.checkbox label{padding-top:.15em}.ui.toggle.checkbox .box:before,.ui.toggle.checkbox label:before{cursor:pointer;display:block;position:absolute;content:'';top:0;z-index:1;border:none;background-color:rgba(0,0,0,.05);width:3.5rem;height:1.5rem;border-radius:500rem}.ui.toggle.checkbox .box:after,.ui.toggle.checkbox label:after{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05))#fff;background:linear-gradient(transparent,rgba(0,0,0,.05))#fff;position:absolute;content:'';opacity:1;z-index:2;border:none;box-shadow:0 1px 2px 0 rgba(0,0,0,.05),0 0 0 1px rgba(39,41,43,.15)inset;width:1.5rem;height:1.5rem;top:0;left:0;border-radius:500rem;-webkit-transition:background .3s ease 0s,left .3s ease 0s;transition:background .3s ease 0s,left .3s ease 0s}.ui.toggle.checkbox input[type=checkbox]~.box:after,.ui.toggle.checkbox input[type=checkbox]~label:after,.ui.toggle.checkbox input[type=radio]~.box:after,.ui.toggle.checkbox input[type=radio]~label:after{left:-.05rem}.ui.toggle.checkbox .box:hover::before,.ui.toggle.checkbox input[type=checkbox]:focus~.box:before,.ui.toggle.checkbox input[type=checkbox]:focus~label:before,.ui.toggle.checkbox input[type=radio]:focus~.box:before,.ui.toggle.checkbox input[type=radio]:focus~label:before,.ui.toggle.checkbox label:hover::before{background-color:rgba(0,0,0,.1);border:none}.ui.toggle.checkbox input[type=checkbox]:checked~.box,.ui.toggle.checkbox input[type=checkbox]:checked~label,.ui.toggle.checkbox input[type=radio]:checked~.box,.ui.toggle.checkbox input[type=radio]:checked~label{color:#5bbd72}.ui.toggle.checkbox input[type=checkbox]:checked~.box:before,.ui.toggle.checkbox input[type=checkbox]:checked~label:before,.ui.toggle.checkbox input[type=radio]:checked~.box:before,.ui.toggle.checkbox input[type=radio]:checked~label:before{background-color:#5bbd72}.ui.toggle.checkbox input[type=checkbox]:checked~.box:after,.ui.toggle.checkbox input[type=checkbox]:checked~label:after,.ui.toggle.checkbox input[type=radio]:checked~.box:after,.ui.toggle.checkbox input[type=radio]:checked~label:after{left:2.05rem}.ui.fitted.checkbox .box,.ui.fitted.checkbox label{padding-left:0!important}.ui.fitted.slider.checkbox,.ui.fitted.toggle.checkbox{width:3.5rem}@font-face{font-family:Checkbox;src:url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAAOAIAAAwBgT1MvMj3hSQEAAADsAAAAVmNtYXDQEhm3AAABRAAAAUpjdnQgBkn/lAAABuwAAAAcZnBnbYoKeDsAAAcIAAAJkWdhc3AAAAAQAAAG5AAAAAhnbHlm32cEdgAAApAAAAC2aGVhZAErPHsAAANIAAAANmhoZWEHUwNNAAADgAAAACRobXR4CykAAAAAA6QAAAAMbG9jYQA4AFsAAAOwAAAACG1heHAApgm8AAADuAAAACBuYW1lzJ0aHAAAA9gAAALNcG9zdK69QJgAAAaoAAAAO3ByZXCSoZr/AAAQnAAAAFYAAQO4AZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6ADoAQNS/2oAWgMLAE8AAAABAAAAAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADoAf//AAAAAOgA//8AABgBAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADpAKYABUAHEAZDwEAAQFCAAIBAmoAAQABagAAAGEUFxQDEisBFAcBBiInASY0PwE2Mh8BATYyHwEWA6QP/iAQLBD+6g8PTBAsEKQBbhAsEEwPAhYWEP4gDw8BFhAsEEwQEKUBbxAQTBAAAAH//f+xA18DCwAMABJADwABAQpDAAAACwBEFRMCESsBFA4BIi4CPgEyHgEDWXLG6MhuBnq89Lp+AV51xHR0xOrEdHTEAAAAAAEAAAABAADDeRpdXw889QALA+gAAAAAzzWYjQAAAADPNWBN//3/sQOkAwsAAAAIAAIAAAAAAAAAAQAAA1L/agBaA+gAAP/3A6QAAQAAAAAAAAAAAAAAAAAAAAMD6AAAA+gAAANZAAAAAAAAADgAWwABAAAAAwAWAAEAAAAAAAIABgATAG4AAAAtCZEAAAAAAAAAEgDeAAEAAAAAAAAANQAAAAEAAAAAAAEACAA1AAEAAAAAAAIABwA9AAEAAAAAAAMACABEAAEAAAAAAAQACABMAAEAAAAAAAUACwBUAAEAAAAAAAYACABfAAEAAAAAAAoAKwBnAAEAAAAAAAsAEwCSAAMAAQQJAAAAagClAAMAAQQJAAEAEAEPAAMAAQQJAAIADgEfAAMAAQQJAAMAEAEtAAMAAQQJAAQAEAE9AAMAAQQJAAUAFgFNAAMAAQQJAAYAEAFjAAMAAQQJAAoAVgFzAAMAAQQJAAsAJgHJQ29weXJpZ2h0IChDKSAyMDE0IGJ5IG9yaWdpbmFsIGF1dGhvcnMgQCBmb250ZWxsby5jb21mb250ZWxsb1JlZ3VsYXJmb250ZWxsb2ZvbnRlbGxvVmVyc2lvbiAxLjBmb250ZWxsb0dlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAEMAbwBwAHkAcgBpAGcAaAB0ACAAKABDACkAIAAyADAAMQA0ACAAYgB5ACAAbwByAGkAZwBpAG4AYQBsACAAYQB1AHQAaABvAHIAcwAgAEAAIABmAG8AbgB0AGUAbABsAG8ALgBjAG8AbQBmAG8AbgB0AGUAbABsAG8AUgBlAGcAdQBsAGEAcgBmAG8AbgB0AGUAbABsAG8AZgBvAG4AdABlAGwAbABvAFYAZQByAHMAaQBvAG4AIAAxAC4AMABmAG8AbgB0AGUAbABsAG8ARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAAAAAIAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAQIBAwljaGVja21hcmsGY2lyY2xlAAAAAAEAAf//AA8AAAAAAAAAAAAAAAAAAAAAADIAMgML/7EDC/+xsAAssCBgZi2wASwgZCCwwFCwBCZasARFW1ghIyEbilggsFBQWCGwQFkbILA4UFghsDhZWSCwCkVhZLAoUFghsApFILAwUFghsDBZGyCwwFBYIGYgiophILAKUFhgGyCwIFBYIbAKYBsgsDZQWCGwNmAbYFlZWRuwACtZWSOwAFBYZVlZLbACLCBFILAEJWFkILAFQ1BYsAUjQrAGI0IbISFZsAFgLbADLCMhIyEgZLEFYkIgsAYjQrIKAAIqISCwBkMgiiCKsAArsTAFJYpRWGBQG2FSWVgjWSEgsEBTWLAAKxshsEBZI7AAUFhlWS2wBCywB0MrsgACAENgQi2wBSywByNCIyCwACNCYbCAYrABYLAEKi2wBiwgIEUgsAJFY7ABRWJgRLABYC2wBywgIEUgsAArI7ECBCVgIEWKI2EgZCCwIFBYIbAAG7AwUFiwIBuwQFlZI7AAUFhlWbADJSNhRESwAWAtsAgssQUFRbABYUQtsAkssAFgICCwCUNKsABQWCCwCSNCWbAKQ0qwAFJYILAKI0JZLbAKLCC4BABiILgEAGOKI2GwC0NgIIpgILALI0IjLbALLEtUWLEHAURZJLANZSN4LbAMLEtRWEtTWLEHAURZGyFZJLATZSN4LbANLLEADENVWLEMDEOwAWFCsAorWbAAQ7ACJUKxCQIlQrEKAiVCsAEWIyCwAyVQWLEBAENgsAQlQoqKIIojYbAJKiEjsAFhIIojYbAJKiEbsQEAQ2CwAiVCsAIlYbAJKiFZsAlDR7AKQ0dgsIBiILACRWOwAUViYLEAABMjRLABQ7AAPrIBAQFDYEItsA4ssQAFRVRYALAMI0IgYLABYbUNDQEACwBCQopgsQ0FK7BtKxsiWS2wDyyxAA4rLbAQLLEBDistsBEssQIOKy2wEiyxAw4rLbATLLEEDistsBQssQUOKy2wFSyxBg4rLbAWLLEHDistsBcssQgOKy2wGCyxCQ4rLbAZLLAIK7EABUVUWACwDCNCIGCwAWG1DQ0BAAsAQkKKYLENBSuwbSsbIlktsBossQAZKy2wGyyxARkrLbAcLLECGSstsB0ssQMZKy2wHiyxBBkrLbAfLLEFGSstsCAssQYZKy2wISyxBxkrLbAiLLEIGSstsCMssQkZKy2wJCwgPLABYC2wJSwgYLANYCBDI7ABYEOwAiVhsAFgsCQqIS2wJiywJSuwJSotsCcsICBHICCwAkVjsAFFYmAjYTgjIIpVWCBHICCwAkVjsAFFYmAjYTgbIVktsCgssQAFRVRYALABFrAnKrABFTAbIlktsCkssAgrsQAFRVRYALABFrAnKrABFTAbIlktsCosIDWwAWAtsCssALADRWOwAUVisAArsAJFY7ABRWKwACuwABa0AAAAAABEPiM4sSoBFSotsCwsIDwgRyCwAkVjsAFFYmCwAENhOC2wLSwuFzwtsC4sIDwgRyCwAkVjsAFFYmCwAENhsAFDYzgtsC8ssQIAFiUgLiBHsAAjQrACJUmKikcjRyNhIFhiGyFZsAEjQrIuAQEVFCotsDAssAAWsAQlsAQlRyNHI2GwBkUrZYouIyAgPIo4LbAxLLAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjILAIQyCKI0cjRyNhI0ZgsARDsIBiYCCwACsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsIBiYSMgILAEJiNGYTgbI7AIQ0awAiWwCENHI0cjYWAgsARDsIBiYCMgsAArI7AEQ2CwACuwBSVhsAUlsIBisAQmYSCwBCVgZCOwAyVgZFBYIRsjIVkjICCwBCYjRmE4WS2wMiywABYgICCwBSYgLkcjRyNhIzw4LbAzLLAAFiCwCCNCICAgRiNHsAArI2E4LbA0LLAAFrADJbACJUcjRyNhsABUWC4gPCMhG7ACJbACJUcjRyNhILAFJbAEJUcjRyNhsAYlsAUlSbACJWGwAUVjIyBYYhshWWOwAUViYCMuIyAgPIo4IyFZLbA1LLAAFiCwCEMgLkcjRyNhIGCwIGBmsIBiIyAgPIo4LbA2LCMgLkawAiVGUlggPFkusSYBFCstsDcsIyAuRrACJUZQWCA8WS6xJgEUKy2wOCwjIC5GsAIlRlJYIDxZIyAuRrACJUZQWCA8WS6xJgEUKy2wOSywMCsjIC5GsAIlRlJYIDxZLrEmARQrLbA6LLAxK4ogIDywBCNCijgjIC5GsAIlRlJYIDxZLrEmARQrsARDLrAmKy2wOyywABawBCWwBCYgLkcjRyNhsAZFKyMgPCAuIzixJgEUKy2wPCyxCAQlQrAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjIEewBEOwgGJgILAAKyCKimEgsAJDYGQjsANDYWRQWLACQ2EbsANDYFmwAyWwgGJhsAIlRmE4IyA8IzgbISAgRiNHsAArI2E4IVmxJgEUKy2wPSywMCsusSYBFCstsD4ssDErISMgIDywBCNCIzixJgEUK7AEQy6wJistsD8ssAAVIEewACNCsgABARUUEy6wLCotsEAssAAVIEewACNCsgABARUUEy6wLCotsEEssQABFBOwLSotsEIssC8qLbBDLLAAFkUjIC4gRoojYTixJgEUKy2wRCywCCNCsEMrLbBFLLIAADwrLbBGLLIAATwrLbBHLLIBADwrLbBILLIBATwrLbBJLLIAAD0rLbBKLLIAAT0rLbBLLLIBAD0rLbBMLLIBAT0rLbBNLLIAADkrLbBOLLIAATkrLbBPLLIBADkrLbBQLLIBATkrLbBRLLIAADsrLbBSLLIAATsrLbBTLLIBADsrLbBULLIBATsrLbBVLLIAAD4rLbBWLLIAAT4rLbBXLLIBAD4rLbBYLLIBAT4rLbBZLLIAADorLbBaLLIAATorLbBbLLIBADorLbBcLLIBATorLbBdLLAyKy6xJgEUKy2wXiywMiuwNistsF8ssDIrsDcrLbBgLLAAFrAyK7A4Ky2wYSywMysusSYBFCstsGIssDMrsDYrLbBjLLAzK7A3Ky2wZCywMyuwOCstsGUssDQrLrEmARQrLbBmLLA0K7A2Ky2wZyywNCuwNystsGgssDQrsDgrLbBpLLA1Ky6xJgEUKy2waiywNSuwNistsGsssDUrsDcrLbBsLLA1K7A4Ky2wbSwrsAhlsAMkUHiwARUwLQAAAEu4AMhSWLEBAY5ZuQgACABjILABI0SwAyNwsgQoCUVSRLIKAgcqsQYBRLEkAYhRWLBAiFixBgNEsSYBiFFYuAQAiFixBgFEWVlZWbgB/4WwBI2xBQBEAAA=")format('truetype'),url("data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAoUAA4AAAAAEPQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPeFJAWNtYXAAAAGIAAAAOgAAAUrQEhm3Y3Z0IAAAAcQAAAAUAAAAHAZJ/5RmcGdtAAAB2AAABPkAAAmRigp4O2dhc3AAAAbUAAAACAAAAAgAAAAQZ2x5ZgAABtwAAACuAAAAtt9nBHZoZWFkAAAHjAAAADUAAAA2ASs8e2hoZWEAAAfEAAAAIAAAACQHUwNNaG10eAAAB+QAAAAMAAAADAspAABsb2NhAAAH8AAAAAgAAAAIADgAW21heHAAAAf4AAAAIAAAACAApgm8bmFtZQAACBgAAAF3AAACzcydGhxwb3N0AAAJkAAAACoAAAA7rr1AmHByZXAAAAm8AAAAVgAAAFaSoZr/eJxjYGTewTiBgZWBg6mKaQ8DA0MPhGZ8wGDIyMTAwMTAysyAFQSkuaYwOLxgeMHIHPQ/iyGKmZvBHyjMCJIDAPe9C2B4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF4w/v8PUvCCAURLMELVAwEjG8OIBwBk5AavAAB4nGNgQANGDEbM3P83gjAAELQD4XicnVXZdtNWFJU8ZHASOmSgoA7X3DhQ68qEKRgwaSrFdiEdHAitBB2kDHTkncc+62uOQrtWH/m07n09JLR0rbYsls++R1tn2DrnRhwjKn0aiGvUoZKXA6msPZZK90lc13Uvj5UMBnFdthJPSZuonSRKat3sUC7xWOsqWSdYJ+PlIFZPVZ5noAziFB5lSUQbRBuplyZJ4onjJ4kWZxAfJUkgJaMQp9LIUEI1GsRS1aFM6dCr1xNx00DKRqMedVhU90PFJ8c1p9SsA0YqVznCFevVRr4bpwMve5DEOsGzrYcxHnisfpQqkIqR6cg/dkpOlIaBVHHUoVbi6DCTX/eRTCrNQKaMYkWl7oG43f102xYxPXQ6vi5KlUaqurnOKJrt0fGogygP2cbppNzQ2fbw5RlTVKtdcbPtQGYNXErJbHSfRAAdJlLj6QFONZwCqRn1R8XZ588BEslclKo8VTKHegOZMzt7cTHtbiersnCknwcyb3Z2452HQ6dXh3/R+hdM4cxHj+Jifj5C+lBqfiJOJKVGWMzyp4YfcVcgQrkxiAsXyuBThDl0RdrZZl3jtTH2hs/5SqlhPQna6KP4fgr9TiQrHGdRo/VInM1j13Wt3GdQS7W7Fzsyr0OVIu7vCwuuM+eEYZ4WC1VfnvneBTT/Bohn/EDeNIVL+5YpSrRvm6JMu2iKCu0SVKVdNsUU7YoppmnPmmKG9h1TzNKeMzLj/8vc55H7HN7xkJv2XeSmfQ+5ad9HbtoPkJtWITdtHblpLyA3rUZu2lWjOnYEGgZpF1IVQdA0svph3Fab9UDWjDR8aWDyLmLI+upER521tcofxX914gsHcmmip7siF5viLq/bFj483e6rj5pG3bDV+MaR8jAeRnocmtBZ+c3hv+1N3S6a7jKqMugBFUwKwABl7UAC0zrbCaT1mqf48gdgXIZ4zkpDtVSfO4am7+V5X/exOfG+x+3GLrdcd3kJWdYNcmP28N9SZKrrH+UtrVQnR6wrJ49VaxhDKrwour6SlHu0tRu/KKmy8l6U1srnk5CbPYMbQlu27mGwI0xpyiUeXlOlKD3UUo6yQyxvKco84JSLC1qGxLgOdQ9qa8TpoXoYGwshhqG0vRBwSCldFd+0ynfxHqtr2Oj4xRXh6XpyEhGf4ir7UfBU10b96A7avGbdMoMpVaqn+4xPsa/b9lFZaaSOsxe3VAfXNOsaORXTT+Rr4HRvOGjdAz1UfDRBI1U1x+jGKGM0ljXl3wR0MVZ+w2jVYvs93E+dpFWsuUuY7JsT9+C0u/0q+7WcW0bW/dcGvW3kip8jMb8tCvw7B2K3ZA3UO5OBGAvIWdAYxhYmdxiug23EbfY/Jqf/34aFRXJXOxq7eerD1ZNRJXfZ8rjLTXZZ16M2R9VOGvsIjS0PN+bY4XIstsRgQbb+wf8x7gF3aVEC4NDIZZiI2nShnurh6h6rsW04VxIBds2x43QAegAuQd8cu9bzCYD13CPnLsB9cgh2yCH4lByCz8i5BfA5OQRfkEMwIIdgl5w7AA/IIXhIDsEeOQSPyNkE+JIcgq/IIYjJIUjIuQ3wmByCJ+QQfE0OwTdGrk5k/pYH2QD6zqKbQKmdGhzaOGRGrk3Y+zxY9oFFZB9aROqRkesT6lMeLPV7i0j9wSJSfzRyY0L9iQdL/dkiUn+xiNRnxpeZIymvDp7zjg7+BJfqrV4AAAAAAQAB//8AD3icY2BkAALmJUwzGEQZZBwk+RkZGBmdGJgYmbIYgMwsoGSiiLgIs5A2owg7I5uSOqOaiT2jmZE8I5gQY17C/09BQEfg3yt+fh8gvYQxD0j68DOJiQn8U+DnZxQDcQUEljLmCwBpBgbG/3//b2SOZ+Zm4GEQcuAH2sblDLSEm8FFVJhJEGgLH6OSHpMdo5EcI3Nk0bEXJ/LYqvZ82VXHGFd6pKTkyCsQwQAAq+QkqAAAeJxjYGRgYADiw5VSsfH8Nl8ZuJlfAEUYzpvO6IXQCb7///7fyLyEmRvI5WBgAokCAFb/DJAAAAB4nGNgZGBgDvqfxRDF/IKB4f935iUMQBEUwAwAi5YFpgPoAAAD6AAAA1kAAAAAAAAAOABbAAEAAAADABYAAQAAAAAAAgAGABMAbgAAAC0JkQAAAAB4nHWQy2rCQBSG//HSi0JbWui2sypKabxgN4IgWHTTbqS4LTHGJBIzMhkFX6Pv0IfpS/RZ+puMpShNmMx3vjlz5mQAXOMbAvnzxJGzwBmjnAs4Rc9ykf7Zcon8YrmMKt4sn9C/W67gAYHlKm7wwQqidM5ogU/LAlfi0nIBF+LOcpH+0XKJ3LNcxq14tXxC71muYCJSy1Xci6+BWm11FIRG1gZ12W62OnK6lYoqStxYumsTKp3KvpyrxPhxrBxPLfc89oN17Op9uJ8nvk4jlciW09yrkZ/42jX+bFc93QRtY+ZyrtVSDm2GXGm18D3jhMasuo3G3/MwgMIKW2hEvKoQBhI12jrnNppooUOaMkMyM8+KkMBFTONizR1htpIy7nPMGSW0PjNisgOP3+WRH5MC7o9ZRR+tHsYT0u6MKPOSfTns7jBrREqyTDezs9/eU2x4WpvWcNeuS511JTE8qCF5H7u1BY1H72S3Ymi7aPD95/9+AN1fhEsAeJxjYGKAAC4G7ICZgYGRiZGZMzkjNTk7N7Eomy05syg5J5WBAQBE1QZBAABLuADIUlixAQGOWbkIAAgAYyCwASNEsAMjcLIEKAlFUkSyCgIHKrEGAUSxJAGIUViwQIhYsQYDRLEmAYhRWLgEAIhYsQYBRFlZWVm4Af+FsASNsQUARAAA")format('woff')}.ui.checkbox .box:after,.ui.checkbox .box:before,.ui.checkbox label:after,.ui.checkbox label:before{font-family:Checkbox}.ui.checkbox .box:after,.ui.checkbox label:after{content:'\e800'}.dimmable{position:relative}.ui.dimmer{display:none;position:absolute;top:0!important;left:0!important;width:100%;height:100%;text-align:center;vertical-align:middle;background:rgba(0,0,0,.85);opacity:0;line-height:1;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-transition:background-color .5s linear;transition:background-color .5s linear;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;will-change:opacity;z-index:1000}.ui.dimmer>.content{width:100%;height:100%;display:table;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.dimmer>.content>div{display:table-cell;vertical-align:middle;color:#fff}.ui.segment>.ui.dimmer{border-radius:inherit!important}.animating.dimmable:not(body),.dimmed.dimmable:not(body){overflow:hidden}.dimmed.dimmable>.ui.animating.dimmer,.dimmed.dimmable>.ui.visible.dimmer,.ui.active.dimmer{display:block;opacity:1}.ui.disabled.dimmer{width:0!important;height:0!important}.ui.page.dimmer{position:fixed;-webkit-transform-style:'';transform-style:'';-webkit-perspective:2000px;perspective:2000px;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center}body.animating.in.dimmable,body.dimmed.dimmable{overflow:hidden}body.dimmable>.dimmer{position:fixed}.ui.dimmer>.top.aligned.content>*{vertical-align:top}.ui.dimmer>.bottom.aligned.content>*{vertical-align:bottom}.ui.inverted.dimmer{background:rgba(255,255,255,.85)}.ui.inverted.dimmer>.content>*{color:#fff}.ui.simple.dimmer{display:block;overflow:hidden;opacity:1;width:0;height:0;z-index:-100;background-color:transparent}.dimmed.dimmable>.ui.simple.dimmer{overflow:visible;opacity:1;width:100%;height:100%;background:rgba(0,0,0,.85);z-index:1}.ui.simple.inverted.dimmer{background:rgba(255,255,255,0)}.dimmed.dimmable>.ui.simple.inverted.dimmer{background:rgba(255,255,255,.85)}.ui.dropdown{cursor:pointer;position:relative;display:inline-block;line-height:1em;tap-highlight-color:transparent;outline:0;text-align:left;-webkit-transition:border-radius .1s ease,width .2s ease;transition:border-radius .1s ease,width .2s ease}.ui.dropdown .menu{cursor:auto;position:absolute;display:none;outline:0;top:100%;margin:0;padding:0;background:#fff;min-width:100%;white-space:nowrap;font-size:1rem;text-shadow:none;text-align:left;box-shadow:0 1px 4px 0 rgba(39,41,43,.15);border:1px solid rgba(39,41,43,.15);border-radius:0 0 .2857rem .2857rem;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;z-index:11;will-change:transform,opacity}.ui.dropdown>input:not(.search):first-child,.ui.dropdown>select{display:none!important}.ui.dropdown>.dropdown.icon{margin:0 0 0 1em}.ui.dropdown .menu>.item .dropdown.icon{width:auto;float:right;margin:0 0 0 1em}.ui.dropdown .menu>.item .dropdown.icon+.text{margin-right:1em}.ui.dropdown>.text{display:inline-block;-webkit-transition:color .2s ease;transition:color .2s ease}.ui.dropdown .menu>.item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.ui.dropdown .menu>.item:first-child{border-top-width:0}.ui.dropdown .menu .item>[class*="right floated"],.ui.dropdown>.text>[class*="right floated"]{float:right!important;margin-right:0!important;margin-left:1em!important}.ui.dropdown .menu .item>[class*="left floated"],.ui.dropdown>.text>[class*="left floated"]{float:left!important;margin-left:0!important;margin-right:1em!important}.ui.dropdown .menu .item>.flag.floated,.ui.dropdown .menu .item>.icon.floated,.ui.dropdown .menu .item>.image.floated,.ui.dropdown .menu .item>img.floated{margin-top:0}.ui.dropdown .menu>.header{margin:1rem 0 .75rem;padding:0 1.14285714em;color:rgba(0,0,0,.85);font-size:.7857rem;font-weight:700;text-transform:uppercase}.ui.dropdown .menu>.divider{border-top:1px solid rgba(0,0,0,.05);height:0;margin:.5em 0}.ui.dropdown .menu>.input{margin:.75rem 1.14285714em;min-width:200px}.ui.dropdown .menu>.header+.input{margin-top:0}.ui.dropdown .menu>.input:not(.transparent) input{padding:.5em 1em}.ui.dropdown .menu>.input:not(.transparent) .button,.ui.dropdown .menu>.input:not(.transparent) .icon,.ui.dropdown .menu>.input:not(.transparent) .label{padding-top:.5em;padding-bottom:.5em}.ui.dropdown .menu>.item>.description,.ui.dropdown>.text>.description{margin:0 0 0 1em;color:rgba(0,0,0,.4)}.ui.dropdown .menu .menu{top:0!important;left:100%!important;right:auto!important;margin:0 0 0 -.5em!important;border-radius:0 .2857rem .2857rem 0!important;z-index:21!important}.ui.dropdown .menu .menu:after{display:none}.ui.dropdown .menu>.item>.flag,.ui.dropdown .menu>.item>.icon,.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>.label,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.flag,.ui.dropdown>.text>.icon,.ui.dropdown>.text>.image,.ui.dropdown>.text>.label,.ui.dropdown>.text>img{margin-top:0;margin-left:0;float:none;margin-right:.75em}.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.image,.ui.dropdown>.text>img{display:inline-block;vertical-align:middle;width:auto;max-height:2.5em}.ui.dropdown .ui.menu>.item:before,.ui.menu .ui.dropdown .menu>.item:before{display:none}.ui.menu .ui.dropdown .menu .active.item{border-left:none}.ui.buttons>.ui.dropdown:last-child .menu,.ui.menu .right.dropdown.item .menu,.ui.menu .right.menu .dropdown:last-child .menu{left:auto;right:0}.ui.dropdown.icon.button>.dropdown.icon{margin:0}.ui.dropdown.button:not(.pointing):not(.floating).active,.ui.dropdown.button:not(.pointing):not(.floating).visible{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.selection.dropdown{cursor:pointer;word-wrap:break-word;white-space:normal;outline:0;-webkit-transform:rotateZ(0);transform:rotateZ(0);min-width:180px;background:#fff;display:inline-block;padding:.8em 1.1em;color:rgba(0,0,0,.8);box-shadow:none;border:1px solid rgba(39,41,43,.15);border-radius:.2857rem;-webkit-transition:border-radius .1s ease,width .2s ease,box-shadow .2s ease,border .2s ease;transition:border-radius .1s ease,width .2s ease,box-shadow .2s ease,border .2s ease}.ui.selection.dropdown.active,.ui.selection.dropdown.visible{z-index:10}select.ui.dropdown{height:38px;padding:.5em;border:1px solid rgba(39,41,43,.15);visibility:visible}.ui.selection.dropdown>.text{margin-right:2em}.ui.selection.dropdown>.delete.icon,.ui.selection.dropdown>.dropdown.icon,.ui.selection.dropdown>.search.icon{cursor:pointer;position:absolute;top:auto;width:auto;margin:-.8em;padding:.8em;right:1.1em;opacity:.8;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}.ui.compact.selection.dropdown{min-width:0}.ui.selection.dropdown .menu{overflow-x:hidden;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch;border-top-width:0!important;width:auto;margin:0 -1px;min-width:-webkit-calc(100% + 2px);min-width:calc(100% + 2px);outline:0;box-shadow:0 2px 4px 0 rgba(0,0,0,.08);-webkit-transition:box-shadow .2s ease,border .2s ease;transition:box-shadow .2s ease,border .2s ease}.ui.selection.dropdown .menu:after,.ui.selection.dropdown .menu:before{display:none}@media all and (-ms-high-contrast:none){.ui.selection.dropdown .menu{min-width:-webkit-calc(100% - 15px);min-width:calc(100% - 15px)}}@media only screen and (max-width:767px){.ui.selection.dropdown .menu{max-height:7.49991429em}}@media only screen and (min-width:768px){.ui.selection.dropdown .menu{max-height:9.99988571em}}@media only screen and (min-width:992px){.ui.selection.dropdown .menu{max-height:14.99982857em}}@media only screen and (min-width:1920px){.ui.selection.dropdown .menu{max-height:19.99977143em}}.ui.selection.dropdown .menu>.item{border-top:1px solid rgba(0,0,0,.05);padding:.71428571em 1.14285714em!important;white-space:normal;word-wrap:normal}.ui.selection.dropdown:hover{border-color:rgba(39,41,43,.3);box-shadow:0 0 2px 0 rgba(0,0,0,.05)}.ui.selection.dropdown.disabled,.ui.selection.dropdown.disabled:hover{cursor:default;box-shadow:none;color:rgba(0,0,0,.8);border:1px solid rgba(39,41,43,.15);opacity:.3!important}.ui.selection.dropdown.visible{border-color:rgba(39,41,43,.3);box-shadow:0 0 4px 0 rgba(0,0,0,.08)}.ui.selection.visible.dropdown:hover{border-color:rgba(39,41,43,.3);box-shadow:0 0 4px 0 rgba(0,0,0,.08)}.ui.selection.visible.dropdown .menu{border-color:rgba(39,41,43,.3);box-shadow:0 2px 6px 0 rgba(39,41,43,.15)}.ui.selection.active.dropdown>.text:not(.default),.ui.selection.visible.dropdown>.text:not(.default){font-weight:400;color:rgba(0,0,0,.8)}.ui.active.selection.dropdown>.dropdown.icon,.ui.visible.selection.dropdown>.dropdown.icon{opacity:1;z-index:3}.ui.active.selection.dropdown,.ui.visible.selection.dropdown{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.ui.search.dropdown{min-width:''}.ui.search.dropdown>input.search{background:none!important;border:none!important;box-shadow:none!important;border-radius:0!important;cursor:pointer;top:0;left:0;width:100%;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0);padding:inherit;position:absolute;z-index:2}.ui.search.dropdown>.text{cursor:text;position:relative;z-index:3}.ui.search.selection.dropdown>input.search{line-height:1.2142em;padding:.6929em 1.1em}.ui.search.dropdown.active>input.search,.ui.search.dropdown.visible>input.search{cursor:auto}.ui.search.dropdown.active>.text,.ui.search.dropdown.visible>.text{pointer-events:none}.ui.active.search.dropdown>input.search:focus+.text{color:rgba(0,0,0,.4)!important}.ui.search.dropdown .menu{overflow-x:hidden;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch}@media only screen and (max-width:767px){.ui.search.dropdown .menu{max-height:7.49991429em}}.ui.inline.dropdown{cursor:pointer;display:inline-block;color:inherit}.ui.inline.dropdown .dropdown.icon{margin:0 .5em 0 .25em;vertical-align:top}.ui.inline.dropdown>.text{font-weight:700}.ui.inline.dropdown .menu{cursor:auto;margin-top:.25em;border-radius:.2857rem}.ui.dropdown .menu>.item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.ui.dropdown .menu .active.item{background:0 0;font-weight:700;color:rgba(0,0,0,.8);box-shadow:none;z-index:12}.ui.default.dropdown>.text,.ui.dropdown>.default.text{color:rgba(179,179,179,.7)}.ui.default.dropdown:hover>.text,.ui.dropdown:hover>.default.text{color:rgba(140,140,140,.7)}.ui.loading.dropdown>.text{-webkit-transition:none;transition:none}.ui.dropdown>.loading.menu{display:block;visibility:hidden;z-index:-1}.ui.dropdown .menu .selected.item,.ui.dropdown.selected{background:rgba(0,0,0,.03);color:rgba(0,0,0,.8)}.ui.dropdown>.filtered.text{visibility:hidden}.ui.dropdown .filtered.item{display:none!important}.ui.dropdown.error,.ui.dropdown.error>.default.text,.ui.dropdown.error>.text{color:#a94442}.ui.selection.dropdown.error{background:#fff0f0;border-color:#dbb1b1}.ui.dropdown.error>.menu,.ui.dropdown.error>.menu .menu,.ui.selection.dropdown.error:hover{border-color:#dbb1b1}.ui.dropdown.error>.menu>.item{color:#d95c5c}.ui.dropdown.error>.menu>.item:hover{background-color:#fff2f2}.ui.dropdown.error>.menu .active.item{background-color:#fdcfcf}.ui.disabled.dropdown{cursor:default;pointer-events:none;opacity:.3}.ui.dropdown .menu{left:0}.ui.dropdown .menu .right.menu,.ui.dropdown .right.menu>.menu{left:100%!important;right:auto!important}.ui.dropdown .menu .left.menu,.ui.dropdown>.left.menu .menu{left:auto!important;right:100%!important}.ui.dropdown .item .left.dropdown.icon,.ui.dropdown .left.menu .item .dropdown.icon{width:auto;float:left;margin:0 .75em 0 0}.ui.dropdown .item .left.dropdown.icon+.text,.ui.dropdown .left.menu .item .dropdown.icon+.text{margin-left:1em}.ui.upward.dropdown>.menu{top:auto;bottom:100%;box-shadow:0 0 4px 0 rgba(39,41,43,.15);border-radius:.2857rem .2857rem 0 0}.ui.simple.upward.active.dropdown,.ui.simple.upward.dropdown:hover{border-radius:.2857rem .2857rem 0 0!important}.ui.upward.dropdown.button:not(.pointing):not(.floating).active,.ui.upward.dropdown.button:not(.pointing):not(.floating).visible{border-radius:.2857rem .2857rem 0 0}.ui.upward.selection.dropdown .menu{border-top-width:1px!important;border-bottom-width:0!important}.ui.upward.selection.dropdown:hover{box-shadow:0 0 2px 0 rgba(0,0,0,.05)}.ui.upward.selection.visible.dropdown:hover{box-shadow:0 0 4px 0 rgba(0,0,0,.05)}.ui.active.upward.selection.dropdown,.ui.visible.upward.selection.dropdown{border-radius:0 0 .2857rem .2857rem!important}.ui.upward.selection.dropdown.visible,.ui.upward.selection.visible.dropdown:hover .menu{box-shadow:0 0 4px 0 rgba(0,0,0,.08)}.ui.simple.dropdown .menu:after,.ui.simple.dropdown .menu:before{display:none}.ui.simple.dropdown .menu{position:absolute;display:block;overflow:hidden;top:-9999px!important;opacity:0;width:0;height:0;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}.ui.simple.active.dropdown,.ui.simple.dropdown:hover{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.ui.simple.active.dropdown>.menu,.ui.simple.dropdown:hover>.menu{overflow:visible;width:auto;height:auto;top:100%!important;opacity:1}.ui.simple.dropdown:hover>.menu>.item:hover>.menu,.ui.simple.dropdown>.menu>.item:active>.menu{overflow:visible;width:auto;height:auto;top:0!important;left:100%!important;opacity:1}.ui.simple.disabled.dropdown:hover .menu{display:none;height:0;width:0;overflow:hidden}.ui.simple.visible.dropdown>.menu{display:block}.ui.fluid.dropdown{display:block;width:100%;min-width:0}.ui.fluid.dropdown>.dropdown.icon{float:right}.ui.floating.dropdown .menu{left:0;right:auto;box-shadow:0 2px 5px 0 rgba(0,0,0,.15);border-radius:.2857rem}.ui.floating.dropdown>.menu{margin-top:.5em!important}.ui.pointing.dropdown>.menu{top:100%;margin-top:.75em;border-radius:.2857rem}.ui.pointing.dropdown>.menu:after{display:block;position:absolute;pointer-events:none;content:'';visibility:visible;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);width:.5em;height:.5em;box-shadow:-1px -1px 0 1px rgba(0,0,0,.1);background:#fff;z-index:2;top:-.25em;left:50%;margin:0 0 0 -.25em}.ui.top.left.pointing.dropdown>.menu{top:100%;bottom:auto;left:0;right:auto;margin:1em 0 0}.ui.top.left.pointing.dropdown>.menu:after{top:-.25em;left:1em;right:auto;margin:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.ui.top.right.pointing.dropdown>.menu{top:100%;bottom:auto;right:0;left:auto;margin:1em 0 0}.ui.top.right.pointing.dropdown>.menu:after{top:-.25em;left:auto;right:1em;margin:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.ui.left.pointing.dropdown>.menu{top:0;left:100%;right:auto;margin:0 0 0 1em}.ui.left.pointing.dropdown>.menu:after{top:1em;left:-.25em;margin:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.ui.right.pointing.dropdown>.menu{top:0;left:auto;right:100%;margin:0 1em 0 0}.ui.right.pointing.dropdown>.menu:after{top:1em;left:auto;right:-.25em;margin:0;-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.ui.bottom.pointing.dropdown>.menu{top:auto;bottom:100%;left:0;right:auto;margin:0 0 1em}.ui.bottom.pointing.dropdown>.menu:after{top:auto;bottom:-.25em;right:auto;margin:0;-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.ui.bottom.pointing.dropdown>.menu .menu{top:auto!important;bottom:0!important}.ui.bottom.left.pointing.dropdown>.menu{left:0;right:auto}.ui.bottom.left.pointing.dropdown>.menu:after{left:1em;right:auto}.ui.bottom.right.pointing.dropdown>.menu{right:0;left:auto}.ui.bottom.right.pointing.dropdown>.menu:after{left:auto;right:1em}@font-face{font-family:Dropdown;src:url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfuIIAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zjo82LgAAAFwAAABVGhlYWQAQ88bAAACxAAAADZoaGVhAwcB6QAAAvwAAAAkaG10eAS4ABIAAAMgAAAAIGxvY2EBNgDeAAADQAAAABJtYXhwAAoAFgAAA1QAAAAgbmFtZVcZpu4AAAN0AAABRXBvc3QAAwAAAAAEvAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDX//3//wAB/+MPLQADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAIABJQElABMAABM0NzY3BTYXFhUUDwEGJwYvASY1AAUGBwEACAUGBoAFCAcGgAUBEgcGBQEBAQcECQYHfwYBAQZ/BwYAAQAAAG4BJQESABMAADc0PwE2MzIfARYVFAcGIyEiJyY1AAWABgcIBYAGBgUI/wAHBgWABwaABQWABgcHBgUFBgcAAAABABIASQC3AW4AEwAANzQ/ATYXNhcWHQEUBwYnBi8BJjUSBoAFCAcFBgYFBwgFgAbbBwZ/BwEBBwQJ/wgEBwEBB38GBgAAAAABAAAASQClAW4AEwAANxE0NzYzMh8BFhUUDwEGIyInJjUABQYHCAWABgaABQgHBgVbAQAIBQYGgAUIBwWABgYFBwAAAAEAAAABAADZuaKOXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAAAAACgAUAB4AQgBkAIgAqgAAAAEAAAAIABQAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgA0AGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgA0AGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=")format('truetype'),url("data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVwAAoAAAAABSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAdkAAAHZLDXE/09TLzIAAALQAAAAYAAAAGAIIweQY21hcAAAAzAAAABMAAAATA9+4ghnYXNwAAADfAAAAAgAAAAIAAAAEGhlYWQAAAOEAAAANgAAADYAQ88baGhlYQAAA7wAAAAkAAAAJAMHAelobXR4AAAD4AAAACAAAAAgBLgAEm1heHAAAAQAAAAABgAAAAYACFAAbmFtZQAABAgAAAFFAAABRVcZpu5wb3N0AAAFUAAAACAAAAAgAAMAAAEABAQAAQEBCGljb21vb24AAQIAAQA6+BwC+BsD+BgEHgoAGVP/i4seCgAZU/+LiwwHi2v4lPh0BR0AAACIDx0AAACNER0AAAAJHQAAAdASAAkBAQgPERMWGyAlKmljb21vb25pY29tb29udTB1MXUyMHVGMEQ3dUYwRDh1RjBEOXVGMERBAAACAYkABgAIAgABAAQABwAKAA0AVgCfAOgBL/yUDvyUDvyUDvuUDvtvi/emFYuQjZCOjo+Pj42Qiwj3lIsFkIuQiY6Hj4iNhouGi4aJh4eHCPsU+xQFiIiGiYaLhouHjYeOCPsU9xQFiI+Jj4uQCA77b4v3FBWLkI2Pjo8I9xT3FAWPjo+NkIuQi5CJjogI9xT7FAWPh42Hi4aLhomHh4eIiIaJhosI+5SLBYaLh42HjoiPiY+LkAgO+92d928Vi5CNkI+OCPcU9xQFjo+QjZCLkIuPiY6Hj4iNhouGCIv7lAWLhomHh4iIh4eJhouGi4aNiI8I+xT3FAWHjomPi5AIDvvdi+YVi/eUBYuQjZCOjo+Pj42Qi5CLkImOhwj3FPsUBY+IjYaLhouGiYeHiAj7FPsUBYiHhomGi4aLh42Hj4iOiY+LkAgO+JQU+JQViwwKAAAAAAMCAAGQAAUAAAFMAWYAAABHAUwBZgAAAPUAGQCEAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8NoB4P/g/+AB4AAgAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDw2v/9//8AAAAAACDw1//9//8AAf/jDy0AAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAA5emozXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAUAAACAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoANABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoANABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")format('woff');font-weight:400;font-style:normal}.ui.dropdown>.dropdown.icon{font-family:Dropdown;line-height:1;height:1em;-webkit-backface-visibility:hidden;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center;width:auto}.ui.dropdown>.dropdown.icon:before{content:'\f0d7'}.ui.dropdown .menu .item .dropdown.icon:before{content:'\f0da'}.ui.dropdown .item .left.dropdown.icon:before,.ui.dropdown .left.menu .item .dropdown.icon:before{content:"\f0d9"}.ui.upward.dropdown>.dropdown.icon:before{content:"\f0d8"}.ui.vertical.menu .dropdown.item>.dropdown.icon:before{content:"\f0da"}.ui.modal{display:none;position:fixed;z-index:1001;top:50%;left:50%;text-align:left;width:90%;margin-left:-45%;background:#fff;border:none;box-shadow:0 1px 4px 1px rgba(0,0,0,.3);border-radius:.2857rem;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;will-change:top,left,margin,transform,opacity}.ui.modal>.icon:first-child+*,.ui.modal>:first-child:not(.icon){border-top-left-radius:.2857rem;border-top-right-radius:.2857rem}.ui.modal>:last-child{border-bottom-left-radius:.2857rem;border-bottom-right-radius:.2857rem}.ui.modal>.close{cursor:pointer;position:absolute;top:-2.5rem;right:-2.5rem;z-index:1;opacity:.8;font-size:1.25em;color:#fff;width:2.25rem;height:2.25rem;padding:.625rem 0 0}.ui.modal>.close:hover{opacity:1}.ui.modal>.header{display:block;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05))#fff;background:linear-gradient(transparent,rgba(0,0,0,.05))#fff;margin:0;padding:1.2rem 2rem;box-shadow:0 1px 2px 0 rgba(0,0,0,.05);font-size:1.6em;line-height:1.3em;font-weight:700;color:rgba(0,0,0,.85);border-bottom:1px solid rgba(39,41,43,.15)}.ui.modal>.content{display:table;table-layout:fixed;width:100%;font-size:1em;line-height:1.4;padding:2rem;background:#fff}.ui.modal>.content>.image{display:table-cell;width:'';vertical-align:top}.ui.modal>.content>.image[class*="top aligned"]{vertical-align:top}.ui.modal>.content>.image[class*="middle aligned"]{vertical-align:middle}.ui.modal>.content>.description{display:table-cell;vertical-align:top}.ui.modal>.content>.icon+.description,.ui.modal>.content>.image+.description{min-width:'';width:80%;padding-left:2em}.ui.modal>.content>.image>i.icon{font-size:8rem;margin:0;opacity:1;width:auto}.ui.modal .actions{background:#efefef;padding:1rem 2rem;border-top:1px solid rgba(39,41,43,.15);text-align:right}.ui.modal .actions>.button{margin-left:.75em}@media only screen and (max-width:767px){.ui.modal{width:95%;margin:0 0 0 -47.5%}}@media only screen and (min-width:768px){.ui.search.dropdown .menu{max-height:9.99988571em}.ui.modal{width:88%;margin:0 0 0 -44%}}@media only screen and (min-width:992px){.ui.search.dropdown .menu{max-height:14.99982857em}.ui.modal{width:74%;margin:0 0 0 -37%}}@media only screen and (min-width:1400px){.ui.modal{width:56%;margin:0 0 0 -28%}}@media only screen and (min-width:1920px){.ui.search.dropdown .menu{max-height:19.99977143em}.ui.modal{width:42%;margin:0 0 0 -21%}}@media only screen and (max-width:992px){.ui.modal>.header{padding-right:2.25rem}.ui.modal>.close{top:.905rem;right:1rem;color:rgba(0,0,0,.8)}}@media only screen and (max-width:767px){.ui.modal>.header{padding:.75rem 2.25rem .75rem 1rem!important}.ui.modal>.content{display:block;padding:1rem!important}.ui.modal>.close{top:.5rem!important;right:.5rem!important}.ui.modal .content>.image{display:block;max-width:100%;margin:0 auto!important;text-align:center;padding:0 0 1rem!important}.ui.modal>.content>.image>i.icon{font-size:5rem;text-align:center}.ui.modal .content>.description{display:block;width:100%!important;margin:0!important;padding:1rem 0!important;box-shadow:none}.ui.modal>.actions{padding:1rem 1rem 0!important}.ui.modal .actions>.button,.ui.modal .actions>.buttons{margin-bottom:1rem}}.ui.basic.modal{background-color:transparent;border:none;border-radius:0;box-shadow:0 0;color:#fff}.ui.basic.modal>.actions,.ui.basic.modal>.content,.ui.basic.modal>.header{background-color:transparent}.ui.basic.modal>.header{color:#fff}.ui.basic.modal>.close{top:1rem;right:1.5rem}.scrolling.dimmable.dimmed{overflow:hidden}.scrolling.dimmable.dimmed>.dimmer{overflow:auto;-webkit-overflow-scrolling:touch}.scrolling.dimmable>.dimmer{position:fixed}.ui.scrolling.modal{position:static;margin:3.5rem auto!important}@media only screen and (max-width:992px){.ui.basic.modal>.close{color:#fff}.ui.scrolling.modal{margin-top:1rem;margin-bottom:1rem}}.ui.active.modal{display:block}.ui.fullscreen.modal{width:95%!important;left:2.5%!important;margin:1em auto}.ui.fullscreen.scrolling.modal{left:0!important}.ui.fullscreen.modal>.header{padding-right:2.25rem}.ui.fullscreen.modal>.close{top:.905rem;right:1rem;color:rgba(0,0,0,.8)}.ui.modal{font-size:1rem}.ui.small.modal>.header{font-size:1.3em}@media only screen and (max-width:767px){.ui.small.modal{width:95%;margin:0 0 0 -47.5%}}@media only screen and (min-width:768px){.ui.small.modal{width:52.8%;margin:0 0 0 -26.4%}}@media only screen and (min-width:992px){.ui.small.modal{width:44.4%;margin:0 0 0 -22.2%}}@media only screen and (min-width:1400px){.ui.small.modal{width:33.6%;margin:0 0 0 -16.8%}}@media only screen and (min-width:1920px){.ui.small.modal{width:25.2%;margin:0 0 0 -12.6%}}.ui.large.modal>.header{font-size:1.6em}@media only screen and (max-width:767px){.ui.large.modal{width:95%;margin:0 0 0 -47.5%}}@media only screen and (min-width:768px){.ui.large.modal{width:88%;margin:0 0 0 -44%}}@media only screen and (min-width:992px){.ui.large.modal{width:88.8%;margin:0 0 0 -44.4%}}@media only screen and (min-width:1400px){.ui.large.modal{width:67.2%;margin:0 0 0 -33.6%}}@media only screen and (min-width:1920px){.ui.large.modal{width:50.4%;margin:0 0 0 -25.2%}}.ui.nag{display:none;opacity:.95;position:relative;top:0;left:0;z-index:999;min-height:0;width:100%;margin:0;padding:.75em 1em;background:#555;box-shadow:0 1px 2px 0 rgba(0,0,0,.2);font-size:1rem;text-align:center;color:rgba(0,0,0,.8);border-radius:0 0 .2857rem .2857rem;-webkit-transition:.2s background ease;transition:.2s background ease}a.ui.nag{cursor:pointer}.ui.nag>.title{display:inline-block;margin:0 .5em;color:#fff}.ui.nag>.close.icon{cursor:pointer;opacity:.4;position:absolute;top:50%;right:1em;font-size:1em;margin:-.5em 0 0;color:#fff;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}.ui.nag:hover{background:#555;opacity:1}.ui.nag .close:hover{opacity:1}.ui.overlay.nag{position:absolute;display:block}.ui.fixed.nag{position:fixed}.ui.bottom.nag,.ui.bottom.nags{border-radius:.2857rem .2857rem 0 0;top:auto;bottom:0}.ui.inverted.nag,.ui.inverted.nags .nag{background-color:#f0f0f0;color:rgba(0,0,0,.85)}.ui.inverted.nag .close,.ui.inverted.nag .title,.ui.inverted.nags .nag .close,.ui.inverted.nags .nag .title{color:rgba(0,0,0,.4)}.ui.nags .nag{border-radius:0!important}.ui.nags .nag:last-child{border-radius:0 0 .2857rem .2857rem}.ui.bottom.nags .nag:last-child{border-radius:.2857rem .2857rem 0 0}.ui.popup{display:none;position:absolute;top:0;right:0;z-index:1900;border:1px solid #ccc;max-width:250px;background-color:#fff;padding:.833em 1em;font-weight:400;font-style:normal;color:rgba(0,0,0,.8);border-radius:.2857rem;box-shadow:0 2px 4px rgba(0,0,0,.1);margin:0}.ui.popup>.header{padding:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.125em;line-height:1.2;font-weight:700}.ui.popup>.header+.content{padding-top:.5em}.ui.popup:before{position:absolute;content:'';width:.75em;height:.75em;background:#fff;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:2;box-shadow:1px 1px 0 0 #b3b3b3}.ui.popup.bottom{margin:.75em 0 0}.ui.popup.top{margin:0 0 .75em}.ui.popup.left.center{margin:0 .75em 0 0}.ui.popup.right.center{margin:0 0 0 .75em}.ui.bottom.center.popup:before{margin-left:-.325em;top:-.325em;left:50%;right:auto;bottom:auto;box-shadow:-1px -1px 0 0 #b3b3b3}.ui.bottom.left.popup{margin-left:0}.ui.bottom.left.popup:before{top:-.325em;left:1em;right:auto;bottom:auto;margin-left:0;box-shadow:-1px -1px 0 0 #b3b3b3}.ui.bottom.right.popup{margin-right:0}.ui.bottom.right.popup:before{top:-.325em;right:1em;bottom:auto;left:auto;margin-left:0;box-shadow:-1px -1px 0 0 #b3b3b3}.ui.top.center.popup:before{top:auto;right:auto;bottom:-.325em;left:50%;margin-left:-.325em}.ui.top.left.popup{margin-left:0}.ui.top.left.popup:before{bottom:-.325em;left:1em;top:auto;right:auto;margin-left:0}.ui.top.right.popup{margin-right:0}.ui.top.right.popup:before{bottom:-.325em;right:1em;top:auto;left:auto;margin-left:0}.ui.left.center.popup:before{top:50%;right:-.325em;bottom:auto;left:auto;margin-top:-.325em;box-shadow:1px -1px 0 0 #b3b3b3}.ui.right.center.popup:before{top:50%;left:-.325em;bottom:auto;right:auto;margin-top:-.325em;box-shadow:-1px 1px 0 0 #b3b3b3}.ui.popup>.ui.grid:not(.padded){width:-webkit-calc(100% + 1.75rem);width:calc(100% + 1.75rem);margin:-.7rem -.875rem}.ui.loading.popup{display:block;visibility:hidden;z-index:-1}.ui.animating.popup,.ui.visible.popup{display:block}.ui.basic.popup:before{display:none}.ui.wide.popup{max-width:350px}.ui[class*="very wide"].popup{max-width:550px}.ui.fluid.popup{width:100%;max-width:none}.ui.inverted.popup{background:#1b1c1d;color:#fff;border:none;box-shadow:none}.ui.inverted.popup .header{background-color:none;color:#fff}.ui.inverted.popup:before{background-color:#1b1c1d;box-shadow:none!important}.ui.flowing.popup{max-width:none}.ui.small.popup{font-size:.785714rem}.ui.popup{font-size:.85714rem}.ui.large.popup{font-size:1rem}.ui.huge.popup{font-size:1.14285rem}.ui.progress{position:relative;display:block;max-width:100%;border:1px solid rgba(39,41,43,.15);margin:1em 0 2.5em;box-shadow:none;background:rgba(0,0,0,.03);padding:.2857em;border-radius:.2857rem}.ui.progress:first-child{margin:0 0 2.5em}.ui.progress:last-child{margin:0 0 1.5em}.ui.indicating.progress .bar[style*="width: 1"],.ui.indicating.progress .bar[style*="width: 2"]{background-color:#d95c5c}.ui.indicating.progress .bar[style*="width: 3"]{background-color:#d9a65c}.ui.indicating.progress .bar[style*="width: 4"],.ui.indicating.progress .bar[style*="width: 5"]{background-color:#e6bb48}.ui.indicating.progress .bar[style*="width: 6"]{background-color:#ddc928}.ui.indicating.progress .bar[style*="width: 7"],.ui.indicating.progress .bar[style*="width: 8"]{background-color:#b4d95c}.ui.indicating.progress .bar[style*="width: 9"],.ui.indicating.progress .bar[style*="width: 100"]{background-color:#66da81}.ui.indicating.progress[data-percent^="1"] .label,.ui.indicating.progress[data-percent^="2"] .label{color:#d95c5c}.ui.indicating.progress[data-percent^="3"] .label{color:#d9a65c}.ui.indicating.progress[data-percent^="4"] .label,.ui.indicating.progress[data-percent^="5"] .label{color:#e6bb48}.ui.indicating.progress[data-percent^="6"] .label{color:#ddc928}.ui.indicating.progress[data-percent^="7"] .label,.ui.indicating.progress[data-percent^="8"] .label{color:#b4d95c}.ui.indicating.progress[data-percent^="9"] .label,.ui.indicating.progress[data-percent^="100"] .label{color:#66da81}.ui.indicating.progress .bar[style^="width: 1%"],.ui.indicating.progress .bar[style^="width: 2%"],.ui.indicating.progress .bar[style^="width: 3%"],.ui.indicating.progress .bar[style^="width: 4%"],.ui.indicating.progress .bar[style^="width: 5%"],.ui.indicating.progress .bar[style^="width: 6%"],.ui.indicating.progress .bar[style^="width: 7%"],.ui.indicating.progress .bar[style^="width: 8%"],.ui.indicating.progress .bar[style^="width: 9%"]{background-color:#d95c5c}.ui.indicating.progress[data-percent="1"] .label,.ui.indicating.progress[data-percent="2"] .label,.ui.indicating.progress[data-percent="3"] .label,.ui.indicating.progress[data-percent="4"] .label,.ui.indicating.progress[data-percent="5"] .label,.ui.indicating.progress[data-percent="6"] .label,.ui.indicating.progress[data-percent="7"] .label,.ui.indicating.progress[data-percent="8"] .label,.ui.indicating.progress[data-percent="9"] .label{color:#d95c5c}.ui.indicating.progress.success .label{color:#356e36}.ui.progress .bar{display:block;line-height:1;position:relative;width:0;min-width:2em;background:#888;border-radius:.2857rem;-webkit-transition:width .3s ease,background-color .3s ease;transition:width .3s ease,background-color .3s ease}.ui.progress .bar>.progress{white-space:nowrap;position:absolute;width:auto;font-size:.9em;top:50%;right:.5em;left:auto;bottom:auto;color:rgba(255,255,255,.8);text-shadow:none;margin-top:-.5em;font-weight:700;text-align:left}.ui.progress>.label{position:absolute;width:100%;font-size:1em;top:100%;right:auto;left:0;bottom:auto;color:rgba(0,0,0,.8);font-weight:700;text-shadow:none;margin-top:.2em;text-align:center;-webkit-transition:color .4s ease;transition:color .4s ease}.ui.progress.success .bar{background-color:#5bbd72!important}.ui.progress.success .bar,.ui.progress.success .bar::after{-webkit-animation:none!important;animation:none!important}.ui.progress.success>.label{color:#356e36}.ui.progress.warning .bar{background-color:#f2c037!important}.ui.progress.warning .bar,.ui.progress.warning .bar::after{-webkit-animation:none!important;animation:none!important}.ui.progress.warning>.label{color:#825c01}.ui.progress.error .bar{background-color:#d95c5c!important}.ui.progress.error .bar,.ui.progress.error .bar::after{-webkit-animation:none!important;animation:none!important}.ui.progress.error>.label{color:#912d2b}.ui.active.progress .bar{position:relative;min-width:2em}.ui.active.progress .bar::after{content:'';opacity:0;position:absolute;top:0;left:0;right:0;bottom:0;background:#fff;border-radius:.2857rem;-webkit-animation:progress-active 2s ease infinite;animation:progress-active 2s ease infinite}@-webkit-keyframes progress-active{0%{opacity:.3;width:0}100%{opacity:0;width:100%}}@keyframes progress-active{0%{opacity:.3;width:0}100%{opacity:0;width:100%}}.ui.disabled.progress{opacity:.35}.ui.disabled.progress .bar,.ui.disabled.progress .bar::after{-webkit-animation:none!important;animation:none!important}.ui.inverted.progress{background:rgba(255,255,255,.05);border:none}.ui.inverted.progress .bar{background:#888}.ui.inverted.progress .bar>.progress{color:#fafafa}.ui.inverted.progress>.label{color:#fff}.ui.inverted.progress.success>.label{color:#5bbd72}.ui.inverted.progress.warning>.label{color:#f2c037}.ui.inverted.progress.error>.label{color:#d95c5c}.ui.progress.attached{background:0 0;position:relative;border:none;margin:0}.ui.progress.attached,.ui.progress.attached .bar{display:block;height:.2rem;padding:0;overflow:hidden;border-radius:0 0 .2857rem .2857rem}.ui.progress.attached .bar{border-radius:0}.ui.progress.top.attached,.ui.progress.top.attached .bar{top:0;border-radius:.2857rem .2857rem 0 0}.ui.progress.top.attached .bar{border-radius:0}.ui.card>.ui.attached.progress,.ui.segment>.ui.attached.progress{position:absolute;top:auto;left:0;bottom:100%;width:100%}.ui.card>.ui.bottom.attached.progress,.ui.segment>.ui.bottom.attached.progress{top:100%;bottom:auto}.ui.black.progress .bar{background-color:#1b1c1d}.ui.blue.progress .bar{background-color:#3b83c0}.ui.green.progress .bar{background-color:#5bbd72}.ui.orange.progress .bar{background-color:#e07b53}.ui.pink.progress .bar{background-color:#d9499a}.ui.purple.progress .bar{background-color:#564f8a}.ui.red.progress .bar{background-color:#d95c5c}.ui.teal.progress .bar{background-color:#00b5ad}.ui.yellow.progress .bar{background-color:#f2c61f}.ui.black.inverted.progress .bar{background-color:#333}.ui.blue.inverted.progress .bar{background-color:#54c8ff}.ui.green.inverted.progress .bar{background-color:#2ecc40}.ui.orange.inverted.progress .bar{background-color:#ff851b}.ui.pink.inverted.progress .bar{background-color:#ff8edf}.ui.purple.inverted.progress .bar{background-color:#cdc6ff}.ui.red.inverted.progress .bar{background-color:#ff695e}.ui.teal.inverted.progress .bar{background-color:#6dffff}.ui.yellow.inverted.progress .bar{background-color:#ffe21f}.ui.tiny.progress{font-size:.85714286rem}.ui.tiny.progress .bar{height:.5em}.ui.small.progress{font-size:.92857143rem}.ui.small.progress .bar{height:1em}.ui.progress{font-size:1rem}.ui.progress .bar{height:1.75em}.ui.large.progress{font-size:1.14285714rem}.ui.large.progress .bar{height:2.5em}.ui.big.progress{font-size:1.28571429rem}.ui.big.progress .bar{height:3.5em}.ui.rating{display:inline-block;vertical-align:middle}.ui.rating:last-child{margin-right:0}.ui.rating:before{display:block;content:'';visibility:hidden;clear:both;height:0}.ui.rating .icon{cursor:pointer;margin:0;width:1.1em;height:auto;padding:0}.ui.star.rating .icon{width:1.1em;color:rgba(0,0,0,.15)}.ui.star.rating .active.icon{color:#ffe623!important;text-shadow:0 -1px 0 #cfa300,-1px 0 0 #cfa300,0 1px 0 #cfa300,1px 0 0 #cfa300}.ui.star.rating .icon.selected,.ui.star.rating .icon.selected.active{color:#ffb70a!important}.ui.star.rating.partial{position:relative;z-index:1}.ui.star.rating.partial:before{position:absolute;z-index:-1}.ui.heart.rating .icon{width:1.25em;color:rgba(0,0,0,.15)}.ui.heart.rating .active.icon{color:#ff2733!important;text-shadow:0 -1px 0 #9e0000,-1px 0 0 #9e0000,0 1px 0 #9e0000,1px 0 0 #9e0000}.ui.heart.rating .icon.selected,.ui.heart.rating .icon.selected.active{color:#ff2733!important}.ui.rating .icon{color:rgba(0,0,0,.15)}.ui.rating .active.icon{color:rgba(0,0,0,.85)}.ui.rating .icon.selected,.ui.rating .icon.selected.active{color:rgba(0,0,0,.8)}.ui.disabled.rating .icon{cursor:default}.ui.rating.selected .active.icon{opacity:.5}.ui.rating .icon.selected,.ui.rating.selected .icon.selected{opacity:1}.ui.mini.rating .icon{font-size:.7rem}.ui.tiny.rating .icon{font-size:.8rem}.ui.small.rating .icon{font-size:.875rem}.ui.rating .icon{font-size:1rem;font-family:Rating;line-height:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center}.ui.large.rating .icon{font-size:1.1rem}.ui.huge.rating .icon{font-size:1.5rem}.ui.massive.rating .icon{font-size:2rem}@font-face{font-family:Rating;src:url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjCBsAAAC8AAAAYGNtYXCj2pm8AAABHAAAAKRnYXNwAAAAEAAAAcAAAAAIZ2x5ZlJbXMYAAAHIAAARnGhlYWQBGAe5AAATZAAAADZoaGVhA+IB/QAAE5wAAAAkaG10eCzgAEMAABPAAAAAcGxvY2EwXCxOAAAUMAAAADptYXhwACIAnAAAFGwAAAAgbmFtZfC1n04AABSMAAABPHBvc3QAAwAAAAAVyAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADxZQHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEAJAAAAAgACAABAAAAAEAIOYF8AbwDfAj8C7wbvBw8Irwl/Cc8SPxZf/9//8AAAAAACDmAPAE8AzwI/Au8G7wcPCH8JfwnPEj8WT//f//AAH/4xoEEAYQAQ/sD+IPow+iD4wPgA98DvYOtgADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAIAAP/tAgAB0wAKABUAAAEvAQ8BFwc3Fyc3BQc3Jz8BHwEHFycCALFPT7GAHp6eHoD/AHAWW304OH1bFnABGRqgoBp8sFNTsHyyOnxYEnFxElh8OgAAAAACAAD/7QIAAdMACgASAAABLwEPARcHNxcnNwUxER8BBxcnAgCxT0+xgB6enh6A/wA4fVsWcAEZGqCgGnywU1OwfLIBHXESWHw6AAAAAQAA/+0CAAHTAAoAAAEvAQ8BFwc3Fyc3AgCxT0+xgB6enh6AARkaoKAafLBTU7B8AAAAAAEAAAAAAgABwAArAAABFA4CBzEHDgMjIi4CLwEuAzU0PgIzMh4CFz4DMzIeAhUCAAcMEgugBgwMDAYGDAwMBqALEgwHFyg2HhAfGxkKChkbHxAeNigXAS0QHxsZCqAGCwkGBQkLBqAKGRsfEB42KBcHDBILCxIMBxcoNh4AAAAAAgAAAAACAAHAACsAWAAAATQuAiMiDgIHLgMjIg4CFRQeAhcxFx4DMzI+Aj8BPgM1DwEiFCIGMTAmIjQjJy4DNTQ+AjMyHgIfATc+AzMyHgIVFA4CBwIAFyg2HhAfGxkKChkbHxAeNigXBwwSC6AGDAwMBgYMDAwGoAsSDAdbogEBAQEBAaIGCgcEDRceEQkREA4GLy8GDhARCREeFw0EBwoGAS0eNigXBwwSCwsSDAcXKDYeEB8bGQqgBgsJBgUJCwagChkbHxA+ogEBAQGiBg4QEQkRHhcNBAcKBjQ0BgoHBA0XHhEJERAOBgABAAAAAAIAAcAAMQAAARQOAgcxBw4DIyIuAi8BLgM1ND4CMzIeAhcHFwc3Jzc+AzMyHgIVAgAHDBILoAYMDAwGBgwMDAagCxIMBxcoNh4KFRMSCC9wQLBwJwUJCgkFHjYoFwEtEB8bGQqgBgsJBgUJCwagChkbHxAeNigXAwUIBUtAoMBAOwECAQEXKDYeAAABAAAAAAIAAbcAKgAAEzQ3NjMyFxYXFhcWFzY3Njc2NzYzMhcWFRQPAQYjIi8BJicmJyYnJicmNQAkJUARExIQEAsMCgoMCxAQEhMRQCUkQbIGBwcGsgMFBQsKCQkGBwExPyMkBgYLCgkKCgoKCQoLBgYkIz8/QawFBawCBgUNDg4OFRQTAAAAAQAAAA0B2wHSACYAABM0PwI2FzYfAhYVFA8BFxQVFAcGByYvAQcGByYnJjU0PwEnJjUAEI9BBQkIBkCPEAdoGQMDBgUGgIEGBQYDAwEYaAcBIwsCFoEMAQEMgRYCCwYIZJABBQUFAwEBAkVFAgEBAwUFAwOQZAkFAAAAAAIAAAANAdsB0gAkAC4AABM0PwI2FzYfAhYVFA8BFxQVFAcmLwEHBgcmJyY1ND8BJyY1HwEHNxcnNy8BBwAQj0EFCQgGQI8QB2gZDAUGgIEGBQYDAwEYaAc/WBVsaxRXeDY2ASMLAhaBDAEBDIEWAgsGCGSQAQUNAQECRUUCAQEDBQUDA5BkCQURVXg4OHhVEW5uAAABACMAKQHdAXwAGgAANzQ/ATYXNh8BNzYXNh8BFhUUDwEGByYvASY1IwgmCAwLCFS8CAsMCCYICPUIDAsIjgjSCwkmCQEBCVS7CQEBCSYJCg0H9gcBAQePBwwAAAEAHwAfAXMBcwAsAAA3ND8BJyY1ND8BNjMyHwE3NjMyHwEWFRQPARcWFRQPAQYjIi8BBwYjIi8BJjUfCFRUCAgnCAwLCFRUCAwLCCcICFRUCAgnCAsMCFRUCAsMCCcIYgsIVFQIDAsIJwgIVFQICCcICwwIVFQICwwIJwgIVFQICCcIDAAAAAACAAAAJQFJAbcAHwArAAA3NTQ3NjsBNTQ3NjMyFxYdATMyFxYdARQHBiMhIicmNTczNTQnJiMiBwYdAQAICAsKJSY1NCYmCQsICAgIC/7tCwgIW5MWFR4fFRZApQsICDc0JiYmJjQ3CAgLpQsICAgIC8A3HhYVFRYeNwAAAQAAAAcBbgG3ACEAADcRNDc2NzYzITIXFhcWFREUBwYHBiMiLwEHBiMiJyYnJjUABgUKBgYBLAYGCgUGBgUKBQcOCn5+Cg4GBgoFBicBcAoICAMDAwMICAr+kAoICAQCCXl5CQIECAgKAAAAAwAAACUCAAFuABgAMQBKAAA3NDc2NzYzMhcWFxYVFAcGBwYjIicmJyY1MxYXFjMyNzY3JicWFRQHBiMiJyY1NDcGBzcUFxYzMjc2NTQ3NjMyNzY1NCcmIyIHBhUABihDREtLREMoBgYoQ0RLS0RDKAYlJjk5Q0M5OSYrQREmJTU1JSYRQSuEBAQGBgQEEREZBgQEBAQGJBkayQoKQSgoKChBCgoKCkEoJycoQQoKOiMjIyM6RCEeIjUmJSUmNSIeIUQlBgQEBAQGGBIRBAQGBgQEGhojAAAABQAAAAkCAAGJACwAOABRAGgAcAAANzQ3Njc2MzIXNzYzMhcWFxYXFhcWFxYVFDEGBwYPAQYjIicmNTQ3JicmJyY1MxYXNyYnJjU0NwYHNxQXFjMyNzY1NDc2MzI3NjU0JyYjIgcGFRc3Njc2NyYnNxYXFhcWFRQHBgcGBwYjPwEWFRQHBgcABitBQU0ZGhADBQEEBAUFBAUEBQEEHjw8Hg4DBQQiBQ0pIyIZBiUvSxYZDg4RQSuEBAQGBgQEEREZBgQEBAQGJBkaVxU9MzQiIDASGxkZEAYGCxQrODk/LlACFxYlyQsJQycnBRwEAgEDAwIDAwIBAwUCNmxsNhkFFAMFBBUTHh8nCQtKISgSHBsfIh4hRCUGBAQEBAYYEhEEBAYGBAQaGiPJJQUiIjYzISASGhkbCgoKChIXMRsbUZANCyghIA8AAAMAAAAAAbcB2wA5AEoAlAAANzU0NzY7ATY3Njc2NzY3Njc2MzIXFhcWFRQHMzIXFhUUBxYVFAcUFRQHFgcGKwEiJyYnJisBIicmNTcUFxYzMjc2NTQnJiMiBwYVFzMyFxYXFhcWFxYXFhcWOwEyNTQnNjc2NTQnNjU0JyYnNjc2NTQnJisBNDc2NTQnJiMGBwYHBgcGBwYHBgcGBwYHBgcGBwYrARUACwoQTgodEQ4GBAMFBgwLDxgTEwoKDjMdFhYOAgoRARkZKCUbGxsjIQZSEAoLJQUFCAcGBQUGBwgFBUkJBAUFBAQHBwMDBwcCPCUjNwIJBQUFDwMDBAkGBgsLDmUODgoJGwgDAwYFDAYQAQUGAwQGBgYFBgUGBgQJSbcPCwsGJhUPCBERExMMCgkJFBQhGxwWFR4ZFQoKFhMGBh0WKBcXBgcMDAoLDxIHBQYGBQcIBQYGBQgSAQEBAQICAQEDAgEULwgIBQoLCgsJDhQHCQkEAQ0NCg8LCxAdHREcDQ4IEBETEw0GFAEHBwUECAgFBQUFAgO3AAADAAD/2wG3AbcAPABNAJkAADc1NDc2OwEyNzY3NjsBMhcWBxUWFRQVFhUUBxYVFAcGKwEWFRQHBgcGIyInJicmJyYnJicmJyYnIyInJjU3FBcWMzI3NjU0JyYjIgcGFRczMhcWFxYXFhcWFxYXFhcWFxYXFhcWFzI3NjU0JyY1MzI3NjU0JyYjNjc2NTQnNjU0JyYnNjU0JyYrASIHIgcGBwYHBgcGIwYrARUACwoQUgYhJRsbHiAoGRkBEQoCDhYWHTMOCgoTExgPCwoFBgIBBAMFDhEdCk4QCgslBQUIBwYFBQYHCAUFSQkEBgYFBgUGBgYEAwYFARAGDAUGAwMIGwkKDg5lDgsLBgYJBAMDDwUFBQkCDg4ZJSU8AgcHAwMHBwQEBQUECbe3DwsKDAwHBhcWJwIWHQYGExYKChUZHhYVHRoiExQJCgsJDg4MDAwNBg4WJQcLCw+kBwUGBgUHCAUGBgUIpAMCBQYFBQcIBAUHBwITBwwTExERBw0OHBEdHRALCw8KDQ0FCQkHFA4JCwoLCgUICBgMCxUDAgEBAgMBAQG3AAAAAQAAAA0A7gHSABQAABM0PwI2FxEHBgcmJyY1ND8BJyY1ABCPQQUJgQYFBgMDARhoBwEjCwIWgQwB/oNFAgEBAwUFAwOQZAkFAAAAAAIAAAAAAgABtwAqAFkAABM0NzYzMhcWFxYXFhc2NzY3Njc2MzIXFhUUDwEGIyIvASYnJicmJyYnJjUzFB8BNzY1NCcmJyYnJicmIyIHBgcGBwYHBiMiJyYnJicmJyYjIgcGBwYHBgcGFQAkJUARExIQEAsMCgoMCxAQEhMRQCUkQbIGBwcGsgMFBQsKCQkGByU1pqY1BgYJCg4NDg0PDhIRDg8KCgcFCQkFBwoKDw4REg4PDQ4NDgoJBgYBMT8jJAYGCwoJCgoKCgkKCwYGJCM/P0GsBQWsAgYFDQ4ODhUUEzA1oJ82MBcSEgoLBgcCAgcHCwsKCQgHBwgJCgsLBwcCAgcGCwoSEhcAAAACAAAABwFuAbcAIQAoAAA3ETQ3Njc2MyEyFxYXFhURFAcGBwYjIi8BBwYjIicmJyY1PwEfAREhEQAGBQoGBgEsBgYKBQYGBQoFBw4Kfn4KDgYGCgUGJZIZef7cJwFwCggIAwMDAwgICv6QCggIBAIJeXkJAgQICAoIjRl0AWP+nQAAAAABAAAAJQHbAbcAMgAANzU0NzY7ATU0NzYzMhcWHQEUBwYrASInJj0BNCcmIyIHBh0BMzIXFh0BFAcGIyEiJyY1AAgIC8AmJjQ1JiUFBQgSCAUFFhUfHhUWHAsICAgIC/7tCwgIQKULCAg3NSUmJiU1SQgFBgYFCEkeFhUVFh43CAgLpQsICAgICwAAAAIAAQANAdsB0gAiAC0AABM2PwI2MzIfAhYXFg8BFxYHBiMiLwEHBiMiJyY/AScmNx8CLwE/AS8CEwEDDJBABggJBUGODgIDCmcYAgQCCAMIf4IFBgYEAgEZaQgC7hBbEgINSnkILgEBJggCFYILC4IVAggICWWPCgUFA0REAwUFCo9lCQipCTBmEw1HEhFc/u0AAAADAAAAAAHJAbcAFAAlAHkAADc1NDc2OwEyFxYdARQHBisBIicmNTcUFxYzMjc2NTQnJiMiBwYVFzU0NzYzNjc2NzY3Njc2NzY3Njc2NzY3NjMyFxYXFhcWFxYXFhUUFRQHBgcGBxQHBgcGBzMyFxYVFAcWFRYHFgcGBxYHBgcjIicmJyYnJiciJyY1AAUGB1MHBQYGBQdTBwYFJQUFCAcGBQUGBwgFBWQFBQgGDw8OFAkFBAQBAQMCAQIEBAYFBw4KCgcHBQQCAwEBAgMDAgYCAgIBAU8XEBAQBQEOBQUECwMREiYlExYXDAwWJAoHBQY3twcGBQUGB7cIBQUFBQgkBwYFBQYHCAUGBgUIJLcHBQYBEBATGQkFCQgGBQwLBgcICQUGAwMFBAcHBgYICQQEBwsLCwYGCgIDBAMCBBEQFhkSDAoVEhAREAsgFBUBBAUEBAcMAQUFCAAAAAADAAD/2wHJAZIAFAAlAHkAADcUFxYXNxY3Nj0BNCcmBycGBwYdATc0NzY3FhcWFRQHBicGJyY1FzU0NzY3Fjc2NzY3NjcXNhcWBxYXFgcWBxQHFhUUBwYHJxYXFhcWFRYXFhcWFRQVFAcGBwYHBgcGBwYnBicmJyYnJicmJyYnJicmJyYnJiciJyY1AAUGB1MHBQYGBQdTBwYFJQUFCAcGBQUGBwgFBWQGBQcKJBYMDBcWEyUmEhEDCwQFBQ4BBRAQEBdPAQECAgIGAgMDAgEBAwIEBQcHCgoOBwUGBAQCAQIDAQEEBAUJFA4PDwYIBQWlBwYFAQEBBwQJtQkEBwEBAQUGB7eTBwYEAQEEBgcJBAYBAQYECZS4BwYEAgENBwUCBgMBAQEXEyEJEhAREBcIDhAaFhEPAQEFAgQCBQELBQcKDAkIBAUHCgUGBwgDBgIEAQEHBQkIBwUMCwcECgcGCRoREQ8CBgQIAAAAAQAAAAEAAJth57dfDzz1AAsCAAAAAADP/GODAAAAAM/8Y4MAAP/bAgAB2wAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAACAAABAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAEAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAdwAAAHcAAACAAAjAZMAHwFJAAABbgAAAgAAAAIAAAACAAAAAgAAAAEAAAACAAAAAW4AAAHcAAAB3AABAdwAAAHcAAAAAAAAAAoAFAAeAEoAcACKAMoBQAGIAcwCCgJUAoICxgMEAzoDpgRKBRgF7AYSBpgG2gcgB2oIGAjOAAAAAQAAABwAmgAFAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAwAAAABAAAAAAACAA4AQAABAAAAAAADAAwAIgABAAAAAAAEAAwATgABAAAAAAAFABYADAABAAAAAAAGAAYALgABAAAAAAAKADQAWgADAAEECQABAAwAAAADAAEECQACAA4AQAADAAEECQADAAwAIgADAAEECQAEAAwATgADAAEECQAFABYADAADAAEECQAGAAwANAADAAEECQAKADQAWgByAGEAdABpAG4AZwBWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBhAHQAaQBuAGdyYXRpbmcAcgBhAHQAaQBuAGcAUgBlAGcAdQBsAGEAcgByAGEAdABpAG4AZwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==")format('truetype'),url("data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AABcUAAoAAAAAFswAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAEuEAABLho6TvIE9TLzIAABPYAAAAYAAAAGAIIwgbY21hcAAAFDgAAACkAAAApKPambxnYXNwAAAU3AAAAAgAAAAIAAAAEGhlYWQAABTkAAAANgAAADYBGAe5aGhlYQAAFRwAAAAkAAAAJAPiAf1obXR4AAAVQAAAAHAAAABwLOAAQ21heHAAABWwAAAABgAAAAYAHFAAbmFtZQAAFbgAAAE8AAABPPC1n05wb3N0AAAW9AAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLZviU+HQFHQAAAP0PHQAAAQIRHQAAAAkdAAAS2BIAHQEBBw0PERQZHiMoLTI3PEFGS1BVWl9kaW5zeH2Ch4xyYXRpbmdyYXRpbmd1MHUxdTIwdUU2MDB1RTYwMXVFNjAydUU2MDN1RTYwNHVFNjA1dUYwMDR1RjAwNXVGMDA2dUYwMEN1RjAwRHVGMDIzdUYwMkV1RjA2RXVGMDcwdUYwODd1RjA4OHVGMDg5dUYwOEF1RjA5N3VGMDlDdUYxMjN1RjE2NHVGMTY1AAACAYkAGgAcAgABAAQABwAKAA0AVgCWAL0BAgGMAeQCbwLwA4cD5QR0BQMFdgZgB8MJkQtxC7oM2Q1jDggOmRAYEZr8lA78lA78lA77lA74lPetFftFpTz3NDz7NPtFcfcU+xBt+0T3Mt73Mjht90T3FPcQBfuU+0YV+wRRofcQMOP3EZ3D9wXD+wX3EXkwM6H7EPsExQUO+JT3rRX7RaU89zQ8+zT7RXH3FPsQbftE9zLe9zI4bfdE9xT3EAX7lPtGFYuLi/exw/sF9xF5MDOh+xD7BMUFDviU960V+0WlPPc0PPs0+0Vx9xT7EG37RPcy3vcyOG33RPcU9xAFDviU98EVi2B4ZG5wCIuL+zT7NAV7e3t7e4t7i3ube5sI+zT3NAVupniyi7aL3M3N3Iu2i7J4pm6mqLKetovci81JizoIDviU98EVi9xJzTqLYItkeHBucKhknmCLOotJSYs6i2CeZKhwCIuL9zT7NAWbe5t7m4ubi5ubm5sI9zT3NAWopp6yi7YIME0V+zb7NgWKioqKiouKi4qMiowI+zb3NgV6m4Ghi6OLubCwuYuji6GBm3oIule6vwWbnKGVo4u5i7Bmi12Lc4F1ensIDviU98EVi2B4ZG5wCIuL+zT7NAV7e3t7e4t7i3ube5sI+zT3NAVupniyi7aL3M3N3Iuni6WDoX4IXED3BEtL+zT3RPdU+wTLssYFl46YjZiL3IvNSYs6CA6L98UVi7WXrKOio6Otl7aLlouXiZiHl4eWhZaEloSUhZKFk4SShZKEkpKSkZOSkpGUkZaSCJaSlpGXj5iPl42Wi7aLrX+jc6N0l2qLYYthdWBgYAj7RvtABYeIh4mGi4aLh42Hjgj7RvdABYmNiY2Hj4iOhpGDlISUhZWFlIWVhpaHmYaYiZiLmAgOZ4v3txWLkpCPlo0I9yOgzPcWBY6SkI+Ri5CLkIePhAjL+xb3I3YFlomQh4uEi4aJh4aGCCMmpPsjBYuKi4mLiIuHioiJiImIiIqHi4iLh4yHjQj7FM/7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOZ4v3txWLkpCPlo0I9yOgzPcWBY6SkI+Ri5CLkIePhAjL+xb3I3YFlomQh4uEi4aJh4aGCCMmpPsjBYuKi4mLiIuCh4aDi4iLh4yHjQj7FM/7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwjKeRXjN3b7DfcAxPZSd/cN4t/7DJ1V9wFV+wEFDq73ZhWLk42RkZEIsbIFkZCRjpOLkouSiJCGCN8291D3UAWQkJKOkouTi5GIkYYIsWQFkYaNhIuEi4OJhYWFCPuJ+4kFhYWFiYOLhIuEjYaRCPsi9yIFhZCJkouSCA77AartFYuSjpKQkAjf3zffBYaQiJKLk4uSjpKQkAiysgWRkJGOk4uSi5KIkIYI3zff3wWQkJKOk4uSi5KIkIYIsmQFkIaOhIuEi4OIhIaGCDc33zcFkIaOhIuEi4OIhYaFCGRkBYaGhIiEi4OLhI6GkAg33zc3BYaGhIiEi4OLhY6FkAhksgWGkYiRi5MIDvtLi8sVi/c5BYuSjpKQkJCQko6SiwiVi4vCBYuul6mkpKSkqpiui66LqX6kcqRymG2LaAiLVJSLBZKLkoiQhpCGjoSLhAiL+zkFi4OIhYaGhoWEiYSLCPuniwWEi4SNhpGGkIiRi5MI5vdUFfcni4vCBYufhJx8mn2ZepJ3i3aLeoR9fX18g3qLdwiLVAUO+yaLshWL+AQFi5GNkY+RjpCQj5KNj42PjI+LCPfAiwWPi4+Kj4mRiZCHj4aPhY2Fi4UIi/wEBYuEiYWHhoeGhoeFiIiKhoqHi4GLhI6EkQj7EvcN+xL7DQWEhYOIgouHi4eLh42EjoaPiJCHkImRi5IIDov3XRWLko2Rj5Kltq+vuKW4pbuZvYu9i7t9uHG4ca9npWCPhI2Fi4SLhYmEh4RxYGdoXnAIXnFbflmLWYtbmF6lXqZnrnG2h5KJkouRCLCLFaRkq2yxdLF0tH+4i7iLtJexorGiq6qksm64Z61goZZ3kXaLdItnfm1ycnJybX9oiwhoi22XcqRypH6pi6+LopGglp9gdWdpbl4I9xiwFYuHjIiOiI6IjoqPi4+LjoyOjo2OjY6Lj4ubkJmXl5eWmZGbi4+LjoyOjo2OjY6LjwiLj4mOiY6IjYiNh4tzi3eCenp6eoJ3i3MIDov3XRWLko2Sj5GouK+utqW3pbqYvouci5yJnIgIm6cFjY6NjI+LjIuNi42JjYqOio+JjomOiY6KjomOiY6JjoqNioyKjomMiYuHi4qLiouLCHdnbVVjQ2NDbVV3Zwh9cgWJiIiJiIuJi36SdJiIjYmOi46LjY+UlJlvl3KcdJ90oHeie6WHkYmSi5IIsIsVqlq0Z711CKGzBXqXfpqCnoKdhp6LoIuikaCWn2B1Z2luXgj3GLAVi4eMiI6IjoiOio+Lj4uOjI6OjY6NjouPi5uQmZeXl5aZkZuLj4uOjI6OjY6NjouPCIuPiY6JjoiNiI2Hi3OLd4J6enp6gneLcwji+10VoLAFtI+wmK2hrqKnqKKvdq1wp2uhCJ2rBZ1/nHycepx6mHqWeY+EjYWLhIuEiYWHhIR/gH1+fG9qaXJmeWV5Y4Jhiwi53BXb9yQFjIKMg4uEi3CDc3x1fHV3fHOBCA6L1BWL90sFi5WPlJKSkpKTj5aLCNmLBZKPmJqepJaZlZeVlY+Qj5ONl42WjpeOmI+YkZWTk5OSk46Vi5uLmYiYhZiFlIGSfgiSfo55i3WLeYd5gXgIvosFn4uchJl8mn2Seot3i3qGfIJ9jYSLhYuEi3yIfoR+i4eLh4uHi3eGen99i3CDdnt8CHt8dYNwiwhmiwV5i3mNeY95kHeRc5N1k36Ph4sIOYsFgIuDjoSShJKHlIuVCLCdFYuGjIePiI+Hj4mQi5CLj42Pj46OjY+LkIuQiZCIjoePh42Gi4aLh4mHh4eIioaLhgjUeRWUiwWNi46Lj4qOi4+KjYqOi4+Kj4mQio6KjYqNio+Kj4mQio6KjIqzfquEpIsIrosFr4uemouri5CKkYqQkY6QkI6SjpKNkouSi5KJkoiRlZWQlouYi5CKkImRiZGJj4iOCJGMkI+PlI+UjZKLkouViJODk4SSgo+CiwgmiwWLlpCalJ6UnpCbi5aLnoiYhJSFlH+QeYuGhoeDiYCJf4h/h3+IfoWBg4KHh4SCgH4Ii4qIiYiGh4aIh4mIiIiIh4eGh4aHh4eHiIiHiIeHiIiHiIeKh4mIioiLCIKLi/tLBQ6L90sVi/dLBYuVj5OSk5KSk46WiwjdiwWPi5iPoZOkk6CRnZCdj56Nn4sIq4sFpougg5x8m3yTd4txCIuJBZd8kHuLd4uHi4eLh5J+jn6LfIuEi4SJhZR9kHyLeot3hHp8fH19eoR3iwhYiwWVeI95i3mLdIh6hH6EfoKBfoV+hX2He4uBi4OPg5KFkYaTh5SHlYiTipOKk4qTiJMIiZSIkYiPgZSBl4CaeKR+moSPCD2LBYCLg4+EkoSSh5SLlQiw9zgVi4aMh4+Ij4ePiZCLkIuPjY+Pjo6Nj4uQi5CJkIiOh4+HjYaLhouHiYeHh4iKhouGCNT7OBWUiwWOi46Kj4mPio+IjoiPh4+IjoePiI+Hj4aPho6HjoiNiI6Hj4aOho6Ii4qWfpKDj4YIk4ORgY5+j36OgI1/jYCPg5CGnYuXj5GUkpSOmYuei5aGmoKfgp6GmouWCPCLBZSLlI+SkpOTjpOLlYuSiZKHlIeUho+Fi46PjY+NkY2RjJCLkIuYhpaBlY6RjZKLkgiLkomSiJKIkoaQhY6MkIyRi5CLm4aXgpOBkn6Pe4sIZosFcotrhGN9iouIioaJh4qHiomKiYqIioaKh4mHioiKiYuHioiLh4qIi4mLCIKLi/tLBQ77lIv3txWLkpCPlo0I9yOgzPcWBY6SkI+RiwiL/BL7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOi/fFFYu1l6yjoqOjrZe2i5aLl4mYh5eHloWWhJaElIWShZOEkoWShJKSkpGTkpKRlJGWkgiWkpaRl4+Yj5eNlou2i61/o3OjdJdqi2GLYXVgYGAI+0b7QAWHiIeJhouGi4eNh44I+0b3QAWJjYmNh4+IjoaRg5SElIWVhZSFlYaWh5mGmImYi5gIsIsVi2ucaa9oCPc6+zT3OvczBa+vnK2Lq4ubiZiHl4eXhpSFkoSSg5GCj4KQgo2CjYONgYuBi4KLgIl/hoCGgIWChAiBg4OFhISEhYaFhoaIhoaJhYuFi4aNiJCGkIaRhJGEkoORgZOCkoCRgJB/kICNgosIgYuBi4OJgomCiYKGgoeDhYSEhYSGgod/h3+Jfot7CA77JouyFYv4BAWLkY2Rj5GOkJCPko2PjY+Mj4sI98CLBY+Lj4qPiZGJkIePho+FjYWLhQiL/AQFi4SJhYeGh4aGh4WIiIqGioeLgYuEjoSRCPsS9w37EvsNBYSFg4iCi4eLh4uHjYSOho+IkIeQiZGLkgiwkxX3JvchpHL3DfsIi/f3+7iLi/v3BQ5ni8sVi/c5BYuSjpKQkJCQko6Siwj3VIuLwgWLrpippKSkpKmYrouvi6l+pHKkcpdti2gIi0IFi4aKhoeIh4eHiYaLCHmLBYaLh42Hj4eOipCLkAiL1AWLn4OcfZp9mXqSdot3i3qEfX18fIR6i3cIi1SniwWSi5KIkIaQho6Ei4QIi/s5BYuDiIWGhoaFhImEiwj7p4sFhIuEjYaRhpCIkYuTCA5njPe6FYyQkI6UjQj3I6DM9xYFj5KPj5GLkIuQh4+ECMv7FvcjdgWUiZCIjYaNhoiFhYUIIyak+yMFjIWKhomHiYiIiYaLiIuHjIeNCPsUz/sVRwWHiYeKiIuHi4eNiY6Jj4uQjJEIo/cjI/AFhZGJkY2QCPeB+z0VnILlW3rxiJ6ZmNTS+wydgpxe54v7pwUOZ4vCFYv3SwWLkI2Pjo+Pjo+NkIsI3osFkIuPiY6Ij4eNh4uGCIv7SwWLhomHh4eIh4eKhosIOIsFhouHjIePiI+Jj4uQCLCvFYuGjIePh46IkImQi5CLj42Pjo6PjY+LkIuQiZCIjoePh42Gi4aLhomIh4eIioaLhgjvZxWL90sFi5CNj46Oj4+PjZCLj4ySkJWWlZaVl5SXmJuVl5GRjo6OkI6RjZCNkIyPjI6MkY2TCIySjJGMj4yPjZCOkY6RjpCPjo6Pj42Qi5SLk4qSiZKJkYiPiJCIjoiPho6GjYeMhwiNh4yGjIaMhYuHi4iLiIuHi4eLg4uEiYSJhImFiYeJh4mFh4WLioqJiomJiIqJiokIi4qKiIqJCNqLBZqLmIWWgJaAkH+LfIt6hn2Af46DjYSLhIt9h36Cf4+Bi3+HgImAhYKEhI12hnmAfgh/fXiDcosIZosFfot+jHyOfI5/joOOg41/j32Qc5N8j4SMhouHjYiOh4+Jj4uQCA5ni/c5FYuGjYaOiI+Hj4mQiwjeiwWQi4+Njo+Pjo2Qi5AIi/dKBYuQiZCHjoiPh42Giwg4iwWGi4eJh4eIiImGi4YIi/tKBbD3JhWLkIyPj4+OjpCNkIuQi4+Jj4iOh42Hi4aLhomHiIeHh4eKhouGi4aMiI+Hj4qPi5AI7/snFYv3SwWLkI2Qj46Oj4+NkIuSi5qPo5OZkJePk46TjZeOmo6ajpiMmIsIsIsFpIueg5d9ln6Qeol1koSRgo2Aj4CLgIeAlH+Pfot9i4WJhIiCloCQfIt7i3yFfoGACICAfoZ8iwg8iwWMiIyJi4mMiYyJjYmMiIyKi4mPhI2GjYeNh42GjYOMhIyEi4SLhouHi4iLiYuGioYIioWKhomHioeJh4iGh4eIh4aIh4iFiISJhImDioKLhouHjYiPh4+Ij4iRiJGJkIqPCIqPipGKkomTipGKj4qOiZCJkYiQiJCIjoWSgZZ+nIKXgZaBloGWhJGHi4aLh42HjwiIjomQi48IDviUFPiUFYsMCgAAAAADAgABkAAFAAABTAFmAAAARwFMAWYAAAD1ABkAhAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAPFlAeD/4P/gAeAAIAAAAAEAAAAAAAAAAAAAACAAAAAAAAIAAAADAAAAFAADAAEAAAAUAAQAkAAAACAAIAAEAAAAAQAg5gXwBvAN8CPwLvBu8HDwivCX8JzxI/Fl//3//wAAAAAAIOYA8ATwDPAj8C7wbvBw8Ifwl/Cc8SPxZP/9//8AAf/jGgQQBhABD+wP4g+jD6IPjA+AD3wO9g62AAMAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAAJrVlLJfDzz1AAsCAAAAAADP/GODAAAAAM/8Y4MAAP/bAgAB2wAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAACAAABAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAEAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAdwAAAHcAAACAAAjAZMAHwFJAAABbgAAAgAAAAIAAAACAAAAAgAAAAEAAAACAAAAAW4AAAHcAAAB3AABAdwAAAHcAAAAAFAAABwAAAAAAA4ArgABAAAAAAABAAwAAAABAAAAAAACAA4AQAABAAAAAAADAAwAIgABAAAAAAAEAAwATgABAAAAAAAFABYADAABAAAAAAAGAAYALgABAAAAAAAKADQAWgADAAEECQABAAwAAAADAAEECQACAA4AQAADAAEECQADAAwAIgADAAEECQAEAAwATgADAAEECQAFABYADAADAAEECQAGAAwANAADAAEECQAKADQAWgByAGEAdABpAG4AZwBWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBhAHQAaQBuAGdyYXRpbmcAcgBhAHQAaQBuAGcAUgBlAGcAdQBsAGEAcgByAGEAdABpAG4AZwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==")format('woff');font-weight:400;font-style:normal}.ui.rating .icon:before{content:'\f006'}.ui.rating .active.icon:before,.ui.star.rating .active.icon:before,.ui.star.rating .icon:before{content:'\f005'}.ui.star.rating .partial.icon:before{content:'\f006'}.ui.star.rating .partial.icon{content:'\f005'}.ui.heart.rating .active.icon:before,.ui.heart.rating .icon:before{content:'\f004'}.ui.search{position:relative}.ui.search>.prompt{margin:0;outline:0;-webkit-appearance:none;-webkit-tap-highlight-color:rgba(255,255,255,0);text-shadow:none;font-style:normal;font-weight:400;line-height:1.2;padding:.68571em 1em;font-size:1em;background:#fff;border:1px solid rgba(39,41,43,.15);color:rgba(0,0,0,.8);box-shadow:0 0 0 0 transparent inset;-webkit-transition:background-color .2s ease,color .2s ease,box-shadow .2s ease,border-color .2s ease;transition:background-color .2s ease,color .2s ease,box-shadow .2s ease,border-color .2s ease}.ui.search .prompt{border-radius:500rem}.ui.search .prompt~.search.icon{cursor:pointer}.ui.search>.results{display:none;position:absolute;top:100%;left:0;background:#fff;margin-top:.5em;width:16em;border-radius:.25em;box-shadow:0 1px 3px 1px rgba(0,0,0,.2);z-index:998}.ui.search>.results .result{cursor:pointer;display:block;overflow:hidden;font-size:1em;padding:.5em 1em;color:rgba(0,0,0,.8);line-height:1.33;border-bottom:1px solid rgba(39,41,43,.15)}.ui.search>.results .result:last-child{border-bottom:none}.ui.search>.results .result .image{float:right;overflow:hidden;background:0 0;width:5em;height:3em;border-radius:.25em}.ui.search>.results .result .image img{display:block;width:auto;height:100%}.ui.search>.results .result .image+.content{margin:0 6em 0 0}.ui.search>.results .result .title{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;font-size:1em;color:rgba(0,0,0,.85)}.ui.search>.results .result .description{margin-top:0;font-size:.9285em;color:rgba(0,0,0,.4)}.ui.search>.results .result .price{float:right;color:#5bbd72}.ui.search>.results>.message{padding:1em}.ui.search>.results>.message .header{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.1428em;font-weight:700;color:rgba(0,0,0,.8)}.ui.search>.results>.message .description{margin-top:.25rem;font-size:1em;color:rgba(0,0,0,.8)}.ui.search>.results>.action{display:block;border-top:none;background:#f0f0f0;padding:.5em 1em;color:rgba(0,0,0,.8);font-weight:700;text-align:center}.ui.loading.search .input>.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285em 0 0 -.64285em;width:1.2857em;height:1.2857em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.search .input>.icon:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285em 0 0 -.64285em;width:1.2857em;height:1.2857em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#aaa transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.category.search>.results .category .result:hover,.ui.search>.results .result:hover{background:#fafafa}.ui.search .action:hover{background:#e0e0e0}.ui.search>.results .category.active{background:#f0f0f0}.ui.search>.results .category.active>.name{color:rgba(0,0,0,.8)}.ui.category.search>.results .category .result.active,.ui.search>.results .result.active{position:relative;border-left-color:transparent;background:#f0f0f0;box-shadow:3px 0 3px 0 rgba(39,41,43,.15)}.ui.search>.results .result.active .description,.ui.search>.results .result.active .title{color:rgba(0,0,0,.85)}.ui.category.search .results{width:28em}.ui.category.search>.results .category{background:#f0f0f0;box-shadow:none;border-bottom:1px solid rgba(39,41,43,.15);-webkit-transition:background .2s ease,border-color .2s ease;transition:background .2s ease,border-color .2s ease}.ui.category.search>.results .category:last-child{border-bottom:none}.ui.category.search>.results .category .result{background:#fff;margin-left:100px;border-left:1px solid rgba(39,41,43,.15);border-bottom:1px solid rgba(39,41,43,.15);-webkit-transition:background .2s ease,border-color .2s ease;transition:background .2s ease,border-color .2s ease}.ui.category.search>.results .category .result:last-child{border-bottom:none}.ui.category.search>.results .category>.name{width:100px;background:#f0f0f0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1em;float:1em;float:left;padding:.4em 1em;font-weight:700;color:rgba(0,0,0,.4)}.ui[class*="left aligned"].search>.results{right:auto;left:0}.ui[class*="right aligned"].search>.results{right:0;left:auto}.ui.fluid.search .results{width:100%}.ui.search{font-size:1em}.ui.large.search{font-size:1.1em}.ui.shape{position:relative;display:inline-block;-webkit-perspective:2000px;perspective:2000px}.ui.shape .sides{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.ui.shape .side{opacity:1;width:100%;margin:0!important;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none}.ui.shape .side>*{-webkit-backface-visibility:visible!important;backface-visibility:visible!important}.ui.cube.shape .side{min-width:15em;height:15em;padding:2em;background-color:#e6e6e6;color:rgba(0,0,0,.8);box-shadow:0 0 2px rgba(0,0,0,.3)}.ui.cube.shape .side>.content{width:100%;height:100%;display:table;text-align:center;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.cube.shape .side>.content>div{display:table-cell;vertical-align:middle;font-size:2em}.ui.text.shape.animating .sides{position:static}.ui.text.shape .side{white-space:nowrap}.ui.text.shape .side>*{white-space:normal}.ui.loading.shape{position:absolute;top:-9999px;left:-9999px}.ui.shape .animating.side{position:absolute;top:0;left:0;z-index:100}.ui.shape .hidden.side{opacity:.4}.ui.shape.animating{-webkit-transition:all .6s ease-in-out;transition:all .6s ease-in-out}.ui.shape.animating .sides{position:absolute;-webkit-transition:all .6s ease-in-out;transition:all .6s ease-in-out}.ui.shape.animating .side{-webkit-transition:opacity .6s ease-in-out;transition:opacity .6s ease-in-out}.ui.shape .active.side{display:block}.ui.sidebar{position:fixed;top:0;left:0;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:none;transition:none;will-change:transform;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);visibility:hidden;-webkit-overflow-scrolling:touch;height:100%!important;border-radius:0!important;margin:0!important;overflow-y:auto!important;z-index:102}.ui.sidebar>*{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:rotateZ(0);transform:rotateZ(0)}.ui.left.sidebar{right:auto;left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.sidebar{right:0!important;left:auto!important;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.bottom.sidebar,.ui.top.sidebar{width:100%!important;height:auto!important;overflow-y:visible!important}.ui.top.sidebar{top:0!important;bottom:auto!important;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.sidebar{top:auto!important;bottom:0!important;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.pushable{height:100%;overflow-x:hidden;padding:0!important}body.pushable{background:#333!important}.pushable:not(body){-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.pushable:not(body)>.fixed,.pushable:not(body)>.pusher:after,.pushable:not(body)>.ui.sidebar{position:absolute}.pushable>.fixed{position:fixed;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease;will-change:transform;z-index:101}body.pushable>.pusher{background:#f7f7f7}.pushable>.pusher{position:relative;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;min-height:100%;-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease;z-index:2;background:inherit inherit/inherit inherit inherit inherit}.pushable>.pusher:after{position:fixed;top:0;right:0;content:'';background-color:rgba(0,0,0,.4);width:0;height:0;overflow:hidden;opacity:0;-webkit-transition:-webkit-transform 500ms,opacity 500ms;transition:transform 500ms,opacity 500ms;will-change:opacity;z-index:1000}.ui.sidebar.menu .item{border-radius:0!important}.pushable>.pusher.dimmed:after{width:100%!important;height:100%!important;opacity:1!important}.ui.animating.sidebar{visibility:visible}.ui.visible.sidebar{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.bottom.visible.sidebar,.ui.left.visible.sidebar,.ui.right.visible.sidebar,.ui.top.visible.sidebar{box-shadow:0 0 20px rgba(39,41,43,.15)}.ui.visible.left.sidebar~.fixed,.ui.visible.left.sidebar~.pusher{-webkit-transform:translate3d(260px,0,0);transform:translate3d(260px,0,0)}.ui.visible.right.sidebar~.fixed,.ui.visible.right.sidebar~.pusher{-webkit-transform:translate3d(-260px,0,0);transform:translate3d(-260px,0,0)}.ui.visible.top.sidebar~.fixed,.ui.visible.top.sidebar~.pusher{-webkit-transform:translate3d(0,36px,0);transform:translate3d(0,36px,0)}.ui.visible.bottom.sidebar~.fixed,.ui.visible.bottom.sidebar~.pusher{-webkit-transform:translate3d(0,-36px,0);transform:translate3d(0,-36px,0)}.ui.visible.left.sidebar~.ui.visible.right.sidebar~.fixed,.ui.visible.left.sidebar~.ui.visible.right.sidebar~.pusher,.ui.visible.right.sidebar~.ui.visible.left.sidebar~.fixed,.ui.visible.right.sidebar~.ui.visible.left.sidebar~.pusher{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}html.ios{overflow-x:hidden;-webkit-overflow-scrolling:touch}.ui[class*="very thin"].left.sidebar,.ui[class*="very thin"].right.sidebar{width:60px}.ui.thin.left.sidebar,.ui.thin.right.sidebar{width:150px}.ui.left.sidebar,.ui.right.sidebar{width:260px}.ui.wide.left.sidebar,.ui.wide.right.sidebar{width:350px}.ui[class*="very wide"].left.sidebar,.ui[class*="very wide"].right.sidebar{width:475px}.ui.visible[class*="very thin"].left.sidebar~.fixed,.ui.visible[class*="very thin"].left.sidebar~.pusher{-webkit-transform:translate3d(60px,0,0);transform:translate3d(60px,0,0)}.ui.visible.thin.left.sidebar~.fixed,.ui.visible.thin.left.sidebar~.pusher{-webkit-transform:translate3d(150px,0,0);transform:translate3d(150px,0,0)}.ui.visible.wide.left.sidebar~.fixed,.ui.visible.wide.left.sidebar~.pusher{-webkit-transform:translate3d(350px,0,0);transform:translate3d(350px,0,0)}.ui.visible[class*="very wide"].left.sidebar~.fixed,.ui.visible[class*="very wide"].left.sidebar~.pusher{-webkit-transform:translate3d(475px,0,0);transform:translate3d(475px,0,0)}.ui.visible[class*="very thin"].right.sidebar~.fixed,.ui.visible[class*="very thin"].right.sidebar~.pusher{-webkit-transform:translate3d(-60px,0,0);transform:translate3d(-60px,0,0)}.ui.visible.thin.right.sidebar~.fixed,.ui.visible.thin.right.sidebar~.pusher{-webkit-transform:translate3d(-150px,0,0);transform:translate3d(-150px,0,0)}.ui.visible.wide.right.sidebar~.fixed,.ui.visible.wide.right.sidebar~.pusher{-webkit-transform:translate3d(-350px,0,0);transform:translate3d(-350px,0,0)}.ui.visible[class*="very wide"].right.sidebar~.fixed,.ui.visible[class*="very wide"].right.sidebar~.pusher{-webkit-transform:translate3d(-475px,0,0);transform:translate3d(-475px,0,0)}.ui.overlay.sidebar{z-index:102}.ui.left.overlay.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.overlay.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.overlay.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.overlay.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.animating.ui.overlay.sidebar,.ui.visible.overlay.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.visible.bottom.overlay.sidebar,.ui.visible.left.overlay.sidebar,.ui.visible.right.overlay.sidebar,.ui.visible.top.overlay.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.visible.overlay.sidebar~.fixed,.ui.visible.overlay.sidebar~.pusher{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.ui.push.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease;z-index:102}.ui.left.push.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.push.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.push.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.push.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.ui.visible.push.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.uncover.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:1}.ui.visible.uncover.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.slide.along.sidebar{z-index:1}.ui.left.slide.along.sidebar{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.ui.right.slide.along.sidebar{-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0)}.ui.top.slide.along.sidebar{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.ui.bottom.slide.along.sidebar{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.ui.animating.slide.along.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.visible.slide.along.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.slide.out.sidebar{z-index:1}.ui.left.slide.out.sidebar{-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0)}.ui.right.slide.out.sidebar{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.ui.top.slide.out.sidebar{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.ui.bottom.slide.out.sidebar{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.ui.animating.slide.out.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.visible.slide.out.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.scale.down.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease;z-index:102}.ui.left.scale.down.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.scale.down.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.scale.down.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.scale.down.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.ui.scale.down.left.sidebar~.pusher{-webkit-transform-origin:75% 50%;-ms-transform-origin:75% 50%;transform-origin:75% 50%}.ui.scale.down.right.sidebar~.pusher{-webkit-transform-origin:25% 50%;-ms-transform-origin:25% 50%;transform-origin:25% 50%}.ui.scale.down.top.sidebar~.pusher{-webkit-transform-origin:50% 75%;-ms-transform-origin:50% 75%;transform-origin:50% 75%}.ui.scale.down.bottom.sidebar~.pusher{-webkit-transform-origin:50% 25%;-ms-transform-origin:50% 25%;transform-origin:50% 25%}.ui.animating.scale.down>.visible.ui.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.animating.scale.down.sidebar~.pusher,.ui.visible.scale.down.sidebar~.pusher{display:block!important;width:100%;height:100%;overflow:hidden}.ui.visible.scale.down.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.visible.scale.down.sidebar~.pusher{-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.ui.sticky{position:static;-webkit-transition:width .2s ease,height .2s ease,top .2s ease,bottom .2s ease;transition:width .2s ease,height .2s ease,top .2s ease,bottom .2s ease;z-index:800}.ui.sticky.bound{position:absolute;left:auto;right:auto}.ui.sticky.fixed{position:fixed;left:auto;right:auto}.ui.sticky.bound.top,.ui.sticky.fixed.top{top:0;bottom:auto}.ui.sticky.bound.bottom,.ui.sticky.fixed.bottom{top:auto;bottom:0}.ui.native.sticky{position:-webkit-sticky;position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky}.ui.tab{display:none}.ui.tab.active,.ui.tab.open{display:block}.ui.tab.loading{position:relative;overflow:hidden;display:block;min-height:250px}.ui.tab.loading *{position:relative!important;left:-10000px!important}.ui.tab.loading.segment:before,.ui.tab.loading:before{position:absolute;content:'';top:100px;left:50%;margin:-1.25em 0 0 -1.25em;width:2.5em;height:2.5em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.tab.loading.segment:after,.ui.tab.loading:after{position:absolute;content:'';top:100px;left:50%;margin:-1.25em 0 0 -1.25em;width:2.5em;height:2.5em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#aaa transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.table{width:100%;background:#fff;margin:1em 0;border:1px solid #d0d0d0;box-shadow:none;border-radius:.25rem;color:rgba(0,0,0,.8);border-collapse:separate;border-spacing:0}.ui.table:first-child{margin-top:0}.ui.table:last-child{margin-bottom:0}.ui.table td,.ui.table th{-webkit-transition:background .2s ease,border-color .2s ease,color .2s ease;transition:background .2s ease,border-color .2s ease,color .2s ease}.ui.table thead{box-shadow:none}.ui.table thead th{cursor:auto;background:#f0f0f0;text-align:left;color:rgba(0,0,0,.8);padding:.7em .8em;vertical-align:middle;font-style:none;font-weight:700;text-transform:none;border-bottom:1px solid #d4d4d5;border-left:none}.ui.table thead tr>th:first-child{border-left:none}.ui.table thead tr:first-child>th:first-child{border-radius:.25rem 0 0}.ui.table thead tr:first-child>th:last-child{border-radius:0 .25rem 0 0}.ui.table thead tr:first-child>th:only-child{border-radius:.25rem .25rem 0 0}.ui.table tfoot{box-shadow:none}.ui.table tfoot th{cursor:auto;border-top:1px solid #d4d4d5;background:#fff;text-align:left;color:rgba(0,0,0,.8);padding:.7em .8em;vertical-align:middle;font-style:normal;font-weight:400;text-transform:none}.ui.table tfoot tr>th:first-child{border-left:none}.ui.table tfoot tr:first-child>th:first-child{border-radius:0 0 0 .25rem}.ui.table tfoot tr:first-child>th:last-child{border-radius:0 0 .25rem}.ui.table tfoot tr:first-child>th:only-child{border-radius:0 0 .25rem .25rem}.ui.table tr td{border-top:1px solid #d4d4d5}.ui.table tr:first-child td{border-top:none}.ui.table td{padding:.7em .8em;text-align:left;vertical-align:middle}.ui.table>.icon{vertical-align:baseline}.ui.table>.icon:only-child{margin:0}.ui.table.segment{padding:0}.ui.table.segment:after{display:none}.ui.table.segment.stacked:after{display:block}@media only screen and (max-width:767px){.ui.table:not(.unstackable){width:100%;padding:0}.ui.table:not(.unstackable) tbody,.ui.table:not(.unstackable) tr,.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{width:auto!important;display:block!important}.ui.table:not(.unstackable) tfoot,.ui.table:not(.unstackable) thead{display:block}.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{background:0 0;border:none!important;padding:.25em .75em;box-shadow:none!important}.ui.table:not(.unstackable) td:first-child,.ui.table:not(.unstackable) th:first-child{font-weight:700;padding-top:1em}.ui.table:not(.unstackable) td:last-child,.ui.table:not(.unstackable) th:last-child{box-shadow:0 -1px 0 0 rgba(0,0,0,.1)inset!important;padding-bottom:1em}.ui.table:not(.unstackable) tr>td.active,.ui.table:not(.unstackable) tr>td.error,.ui.table:not(.unstackable) tr>td.negative,.ui.table:not(.unstackable) tr>td.positive,.ui.table:not(.unstackable) tr>td.warning{background-color:transparent!important}.ui.definition.table:not(.unstackable) thead th:first-child{box-shadow:none!important}.ui.definition.table:not(.unstackable) tr td:first-child{padding-bottom:1em}.ui.definition.table:not(.unstackable) tr td:nth-child(n+2){padding-top:1em}}.ui.table td .image,.ui.table td .image img,.ui.table th .image,.ui.table th .image img{max-width:none}.ui.structured.table{border-collapse:collapse}.ui.structured.table thead th{border-left:none;border-right:none}.ui.structured.sortable.table thead th{border-left:1px solid #d0d0d0;border-right:1px solid #d0d0d0}.ui.structured.basic.table th{border-left:none;border-right:none}.ui.structured.celled.table tr td,.ui.structured.celled.table tr th{border-left:1px solid #d4d4d5;border-right:1px solid #d4d4d5}.ui.definition.table thead:not(.full-width) th:first-child{pointer-events:none;background:0 0;font-weight:400;color:rgba(0,0,0,.4);box-shadow:-1px -1px 0 1px #fff}.ui.definition.table tfoot:not(.full-width) th:first-child{pointer-events:none;background:0 0;font-weight:rgba(0,0,0,.4);color:normal;box-shadow:1px 1px 0 1px #fff}.ui.celled.definition.table thead:not(.full-width) th:first-child{box-shadow:0 -1px 0 1px #fff}.ui.celled.definition.table tfoot:not(.full-width) th:first-child{box-shadow:0 1px 0 1px #fff}.ui.definition.table tr td:first-child{background:rgba(0,0,0,.03);font-weight:700;color:rgba(0,0,0,.8)}.ui.definition.table td:nth-child(2),.ui.definition.table tfoot:not(.full-width) th:nth-child(2),.ui.definition.table thead:not(.full-width) th:nth-child(2){border-left:1px solid #d0d0d0}.ui.table td.positive,.ui.table tr.positive{box-shadow:0 0 0 #b7caa7 inset}.ui.table td.positive,.ui.table tr.positive td{background:#eeffe7!important;color:#3c763d!important}.ui.celled.table tr.positive:hover td,.ui.celled.table tr:hover td.positive{background:#e3ffd8!important;color:#376c38!important}.ui.table td.negative,.ui.table tr.negative{box-shadow:0 0 0 #dbb1b1 inset}.ui.table td.negative,.ui.table tr.negative td{background:#fff0f0!important;color:#cd2929!important}.ui.celled.table tr.negative:hover td,.ui.celled.table tr:hover td.negative{background:#ffe1e1!important;color:#c02626!important}.ui.table td.error,.ui.table tr.error{box-shadow:0 0 0 #dbb1b1 inset}.ui.table td.error,.ui.table tr.error td{background:#fff0f0!important;color:#cd2929!important}.ui.celled.table tr.error:hover td,.ui.celled.table tr:hover td.error{background:#ffe1e1!important;color:#c02626!important}.ui.table td.warning,.ui.table tr.warning{box-shadow:0 0 0 #d9caab inset}.ui.table td.warning,.ui.table tr.warning td{background:#fffbe6!important;color:#7d6c00!important}.ui.celled.table tr.warning:hover td,.ui.celled.table tr:hover td.warning{background:#fff9d7!important;color:#6e5f00!important}.ui.table td.active,.ui.table tr.active{box-shadow:0 0 0 rgba(50,50,50,.9)inset}.ui.celled.table tr.active:hover td,.ui.celled.table tr:hover td.active,.ui.table td.active,.ui.table tr.active td{background:#e0e0e0!important;color:rgba(50,50,50,.9)!important}.ui.table tr td.disabled,.ui.table tr.disabled td,.ui.table tr.disabled:hover td,.ui.table tr:hover td.disabled{pointer-events:none;color:rgba(40,40,40,.3)}@media only screen and (max-width:991px){.ui[class*="tablet stackable"].table,.ui[class*="tablet stackable"].table tbody,.ui[class*="tablet stackable"].table tr,.ui[class*="tablet stackable"].table tr>td,.ui[class*="tablet stackable"].table tr>th{width:100%!important;display:block!important}.ui[class*="tablet stackable"].table{padding:0}.ui[class*="tablet stackable"].table tfoot,.ui[class*="tablet stackable"].table thead{display:block}.ui[class*="tablet stackable"].table tr>td,.ui[class*="tablet stackable"].table tr>th{background:0 0;border:none!important;padding:.25em .75em;box-shadow:none!important}.ui[class*="tablet stackable"].table td:first-child,.ui[class*="tablet stackable"].table th:first-child{font-weight:700;padding-top:1em}.ui[class*="tablet stackable"].table td:last-child,.ui[class*="tablet stackable"].table th:last-child{box-shadow:0 -1px 0 0 rgba(0,0,0,.1)inset!important;padding-bottom:1em}.ui[class*="tablet stackable"].table tr>td.active,.ui[class*="tablet stackable"].table tr>td.error,.ui[class*="tablet stackable"].table tr>td.negative,.ui[class*="tablet stackable"].table tr>td.positive,.ui[class*="tablet stackable"].table tr>td.warning{background-color:transparent!important}.ui.definition[class*="tablet stackable"].table thead th:first-child{box-shadow:none!important}.ui.definition[class*="tablet stackable"].table tr td:first-child{padding-bottom:1em}.ui.definition[class*="tablet stackable"].table tr td:nth-child(n+2){padding-top:1em}}.ui.table [class*="left aligned"],.ui.table[class*="left aligned"]{text-align:left}.ui.table [class*="center aligned"],.ui.table[class*="center aligned"]{text-align:center}.ui.table [class*="right aligned"],.ui.table[class*="right aligned"]{text-align:right}.ui.table td.collapsing,.ui.table th.collapsing{width:1px;white-space:nowrap}.ui.attached.table{width:-webkit-calc(100% + 2px);width:calc(100% + 2px);margin:0 -1px;border-radius:0;box-shadow:none}.ui[class*="top attached"].table{margin-top:1em 0;border-radius:.25rem .25rem 0 0}.ui.table[class*="top attached"]:first-child{margin-top:0}.ui.table[class*="bottom attached"]{margin-top:0;margin-bottom:1em 0;border-radius:0 0 .25rem .25rem}.ui.table[class*="bottom attached"]:last-child{margin-bottom:0}.ui.striped.table tbody tr:nth-child(2n),.ui.striped.table>tr:nth-child(2n){background-color:rgba(0,0,50,.03)}.ui.inverted.striped.table tbody tr:nth-child(2n),.ui.inverted.striped.table>tr:nth-child(2n){background-color:rgba(255,255,255,.06)}.ui.black.table{border-top:.2em solid #1b1c1d}.ui.blue.table{border-top:.2em solid #3b83c0}.ui.green.table{border-top:.2em solid #5bbd72}.ui.orange.table{border-top:.2em solid #e07b53}.ui.pink.table{border-top:.2em solid #d9499a}.ui.purple.table{border-top:.2em solid #564f8a}.ui.red.table{border-top:.2em solid #d95c5c}.ui.teal.table{border-top:.2em solid #00b5ad}.ui.yellow.table{border-top:.2em solid #f2c61f}.ui.inverted.black.table,.ui.inverted.table{background-color:#1b1c1d!important;color:#fff!important}.ui.inverted.blue.table{background-color:#3b83c0!important;color:#fff!important}.ui.inverted.green.table{background-color:#5bbd72!important;color:#fff!important}.ui.inverted.orange.table{background-color:#e07b53!important;color:#fff!important}.ui.inverted.pink.table{background-color:#d9499a!important;color:#fff!important}.ui.inverted.purple.table{background-color:#564f8a!important;color:#fff!important}.ui.inverted.red.table{background-color:#d95c5c!important;color:#fff!important}.ui.inverted.teal.table{background-color:#00b5ad!important;color:#fff!important}.ui.inverted.yellow.table{background-color:#f2c61f!important;color:#fff!important}.ui.one.column.table td{width:100%}.ui.two.column.table td{width:50%}.ui.three.column.table td{width:33.33333333%}.ui.four.column.table td{width:25%}.ui.five.column.table td{width:20%}.ui.six.column.table td{width:16.66666667%}.ui.seven.column.table td{width:14.28571429%}.ui.eight.column.table td{width:12.5%}.ui.nine.column.table td{width:11.11111111%}.ui.ten.column.table td{width:10%}.ui.eleven.column.table td{width:9.09090909%}.ui.twelve.column.table td{width:8.33333333%}.ui.thirteen.column.table td{width:7.69230769%}.ui.fourteen.column.table td{width:7.14285714%}.ui.fifteen.column.table td{width:6.66666667%}.ui.sixteen.column.table td,.ui.table td.one.wide,.ui.table th.one.wide{width:6.25%}.ui.table td.two.wide,.ui.table th.two.wide{width:12.5%}.ui.table td.three.wide,.ui.table th.three.wide{width:18.75%}.ui.table td.four.wide,.ui.table th.four.wide{width:25%}.ui.table td.five.wide,.ui.table th.five.wide{width:31.25%}.ui.table td.six.wide,.ui.table th.six.wide{width:37.5%}.ui.table td.seven.wide,.ui.table th.seven.wide{width:43.75%}.ui.table td.eight.wide,.ui.table th.eight.wide{width:50%}.ui.table td.nine.wide,.ui.table th.nine.wide{width:56.25%}.ui.table td.ten.wide,.ui.table th.ten.wide{width:62.5%}.ui.table td.eleven.wide,.ui.table th.eleven.wide{width:68.75%}.ui.table td.twelve.wide,.ui.table th.twelve.wide{width:75%}.ui.table td.thirteen.wide,.ui.table th.thirteen.wide{width:81.25%}.ui.table td.fourteen.wide,.ui.table th.fourteen.wide{width:87.5%}.ui.table td.fifteen.wide,.ui.table th.fifteen.wide{width:93.75%}.ui.table td.sixteen.wide,.ui.table th.sixteen.wide{width:100%}.ui.sortable.table thead th{cursor:pointer;white-space:nowrap;border-left:1px solid #d0d0d0;color:rgba(0,0,0,.8)}.ui.sortable.table thead th:first-child{border-left:none}.ui.sortable.table thead th.sorted,.ui.sortable.table thead th.sorted:hover{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ui.sortable.table thead th:after{display:inline-block;content:'';width:1em;height:1em;opacity:.8;margin:0 0 0 .5em;font-family:Icons;font-style:normal;font-weight:400;text-decoration:inherit}.ui.sortable.table thead th.ascending:after{content:'\f0d7'}.ui.sortable.table thead th.descending:after{content:'\f0d8'}.ui.sortable.table th.disabled:hover{cursor:auto;color:rgba(40,40,40,.3)}.ui.sortable.table thead th.sorted,.ui.sortable.table thead th.sorted:hover,.ui.sortable.table thead th:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8)}.ui.inverted.sortable.table thead th.sorted{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05))rgba(255,255,255,.07);background:linear-gradient(transparent,rgba(0,0,0,.05))rgba(255,255,255,.07);color:#fff}.ui.inverted.sortable.table thead th:hover{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05))rgba(255,255,255,.05);background:linear-gradient(transparent,rgba(0,0,0,.05))rgba(255,255,255,.05);color:#fff}.ui.inverted.sortable.table thead th{border-left-color:transparent;border-right-color:transparent}.ui.inverted.table{background:#333;color:#fff;border:none}.ui.inverted.table th{background-color:rgba(0,0,0,.15);border-color:rgba(0,0,0,.2)!important;color:rgba(255,255,255,.9)}.ui.inverted.table tr td{border-color:rgba(0,0,0,.2)!important}.ui.inverted.table tr td.disabled,.ui.inverted.table tr.disabled td,.ui.inverted.table tr.disabled:hover td,.ui.inverted.table tr:hover td.disabled{pointer-events:none;color:rgba(225,225,225,.3)}.ui.inverted.definition.table tfoot:not(.full-width) th:first-child,.ui.inverted.definition.table thead:not(.full-width) th:first-child{background:#fff}.ui.inverted.definition.table tr td:first-child{background:rgba(255,255,255,.02);color:#fff}.ui.collapsing.table{width:auto}.ui.basic.table{background:0 0;border:1px solid #d0d0d0;box-shadow:none}.ui.basic.table tfoot,.ui.basic.table thead{box-shadow:none}.ui.basic.table th{background:0 0;border-left:none}.ui.basic.table tbody tr{border-bottom:1px solid rgba(0,0,0,.1)}.ui.basic.table td{background:0 0}.ui.basic.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,0,.05)!important}.ui[class*="very basic"].table{border:none}.ui[class*="very basic"].table:not(.sortable):not(.striped) td,.ui[class*="very basic"].table:not(.sortable):not(.striped) th{padding:.7em .8em}.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child{padding-left:0}.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child{padding-right:0}.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th{padding-top:0}.ui.celled.table tr td,.ui.celled.table tr th{border-left:1px solid #d4d4d5}.ui.celled.table tr td:first-child,.ui.celled.table tr th:first-child{border-left:none}.ui.padded.table th{padding-left:1em;padding-right:1em}.ui.padded.table td,.ui.padded.table th{padding:1em}.ui[class*="very padded"].table th{padding-left:1.5em;padding-right:1.5em}.ui[class*="very padded"].table td{padding:1.5em}.ui.compact.table th{padding-left:.7em;padding-right:.7em}.ui.compact.table td{padding:.5em .7em}.ui[class*="very compact"].table th{padding-left:.6em;padding-right:.6em}.ui[class*="very compact"].table td{padding:.4em .6em}.ui.small.table{font-size:.9em}.ui.table{font-size:1em}.ui.large.table{font-size:1.1em}.transition{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:300ms;animation-duration:300ms;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animating.transition{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0);visibility:visible!important}.loading.transition{position:absolute;top:-99999px;left:-99999px}.hidden.transition{display:none;visibility:hidden}.visible.transition{display:block!important;visibility:visible!important;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}.disabled.transition{-webkit-animation-play-state:paused;animation-play-state:paused}.looping.transition{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.transition.browse{-webkit-animation-duration:500ms;animation-duration:500ms}.transition.browse.in{-webkit-animation-name:browseIn;animation-name:browseIn}.transition.browse.left.out,.transition.browse.out{-webkit-animation-name:browseOutLeft;animation-name:browseOutLeft}.transition.browse.right.out{-webkit-animation-name:browseOutRight;animation-name:browseOutRight}@-webkit-keyframes browseIn{0%{-webkit-transform:scale(.8)translateZ(0);transform:scale(.8)translateZ(0);z-index:-1}10%{-webkit-transform:scale(.8)translateZ(0);transform:scale(.8)translateZ(0);z-index:-1;opacity:.7}80%{-webkit-transform:scale(1.05)translateZ(0);transform:scale(1.05)translateZ(0);opacity:1;z-index:999}100%{-webkit-transform:scale(1)translateZ(0);transform:scale(1)translateZ(0);z-index:999}}@keyframes browseIn{0%{-webkit-transform:scale(.8)translateZ(0);transform:scale(.8)translateZ(0);z-index:-1}10%{-webkit-transform:scale(.8)translateZ(0);transform:scale(.8)translateZ(0);z-index:-1;opacity:.7}80%{-webkit-transform:scale(1.05)translateZ(0);transform:scale(1.05)translateZ(0);opacity:1;z-index:999}100%{-webkit-transform:scale(1)translateZ(0);transform:scale(1)translateZ(0);z-index:999}}@-webkit-keyframes browseOutLeft{0%{z-index:999;-webkit-transform:translateX(0)rotateY(0)rotateX(0);transform:translateX(0)rotateY(0)rotateX(0)}50%{z-index:-1;-webkit-transform:translateX(-105%)rotateY(35deg)rotateX(10deg)translateZ(-10px);transform:translateX(-105%)rotateY(35deg)rotateX(10deg)translateZ(-10px)}80%{opacity:1}100%{z-index:-1;-webkit-transform:translateX(0)rotateY(0)rotateX(0)translateZ(-10px);transform:translateX(0)rotateY(0)rotateX(0)translateZ(-10px);opacity:0}}@keyframes browseOutLeft{0%{z-index:999;-webkit-transform:translateX(0)rotateY(0)rotateX(0);transform:translateX(0)rotateY(0)rotateX(0)}50%{z-index:-1;-webkit-transform:translateX(-105%)rotateY(35deg)rotateX(10deg)translateZ(-10px);transform:translateX(-105%)rotateY(35deg)rotateX(10deg)translateZ(-10px)}80%{opacity:1}100%{z-index:-1;-webkit-transform:translateX(0)rotateY(0)rotateX(0)translateZ(-10px);transform:translateX(0)rotateY(0)rotateX(0)translateZ(-10px);opacity:0}}@-webkit-keyframes browseOutRight{0%{z-index:999;-webkit-transform:translateX(0)rotateY(0)rotateX(0);transform:translateX(0)rotateY(0)rotateX(0)}50%{z-index:1;-webkit-transform:translateX(105%)rotateY(35deg)rotateX(10deg)translateZ(-10px);transform:translateX(105%)rotateY(35deg)rotateX(10deg)translateZ(-10px)}80%{opacity:1}100%{z-index:1;-webkit-transform:translateX(0)rotateY(0)rotateX(0)translateZ(-10px);transform:translateX(0)rotateY(0)rotateX(0)translateZ(-10px);opacity:0}}@keyframes browseOutRight{0%{z-index:999;-webkit-transform:translateX(0)rotateY(0)rotateX(0);transform:translateX(0)rotateY(0)rotateX(0)}50%{z-index:1;-webkit-transform:translateX(105%)rotateY(35deg)rotateX(10deg)translateZ(-10px);transform:translateX(105%)rotateY(35deg)rotateX(10deg)translateZ(-10px)}80%{opacity:1}100%{z-index:1;-webkit-transform:translateX(0)rotateY(0)rotateX(0)translateZ(-10px);transform:translateX(0)rotateY(0)rotateX(0)translateZ(-10px);opacity:0}}.drop.transition{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-duration:500ms;animation-duration:500ms;-webkit-animation-timing-function:cubic-bezier(.34,1.61,.7,1);animation-timing-function:cubic-bezier(.34,1.61,.7,1)}.drop.transition.in{-webkit-animation-name:dropIn;animation-name:dropIn}.drop.transition.out{-webkit-animation-name:dropOut;animation-name:dropOut}@-webkit-keyframes dropIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes dropIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes dropOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}@keyframes dropOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}.transition.fade.in{-webkit-animation-name:fadeIn;animation-name:fadeIn}.transition[class*="fade up"].in{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.transition[class*="fade down"].in{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.transition[class*="fade left"].in{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}.transition[class*="fade right"].in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.transition.fade.out{-webkit-animation-name:fadeOut;animation-name:fadeOut}.transition[class*="fade up"].out{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}.transition[class*="fade down"].out{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}.transition[class*="fade left"].out{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}.transition[class*="fade right"].out{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}}.flip.transition.in,.flip.transition.out{-webkit-animation-duration:600ms;animation-duration:600ms;-webkit-perspective:2000px;perspective:2000px}.horizontal.flip.transition.in{-webkit-animation-name:horizontalFlipIn;animation-name:horizontalFlipIn}.horizontal.flip.transition.out{-webkit-animation-name:horizontalFlipOut;animation-name:horizontalFlipOut}.vertical.flip.transition.in{-webkit-animation-name:verticalFlipIn;animation-name:verticalFlipIn}.vertical.flip.transition.out{-webkit-animation-name:verticalFlipOut;animation-name:verticalFlipOut}@-webkit-keyframes horizontalFlipIn{0%{-webkit-transform:perspective(2000px)rotateY(-90deg);transform:perspective(2000px)rotateY(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px)rotateY(0);transform:perspective(2000px)rotateY(0);opacity:1}}@keyframes horizontalFlipIn{0%{-webkit-transform:perspective(2000px)rotateY(-90deg);transform:perspective(2000px)rotateY(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px)rotateY(0);transform:perspective(2000px)rotateY(0);opacity:1}}@-webkit-keyframes verticalFlipIn{0%{-webkit-transform:perspective(2000px)rotateX(-90deg);transform:perspective(2000px)rotateX(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px)rotateX(0);transform:perspective(2000px)rotateX(0);opacity:1}}@keyframes verticalFlipIn{0%{-webkit-transform:perspective(2000px)rotateX(-90deg);transform:perspective(2000px)rotateX(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px)rotateX(0);transform:perspective(2000px)rotateX(0);opacity:1}}@-webkit-keyframes horizontalFlipOut{0%{-webkit-transform:perspective(2000px)rotateY(0);transform:perspective(2000px)rotateY(0);opacity:1}100%{-webkit-transform:perspective(2000px)rotateY(90deg);transform:perspective(2000px)rotateY(90deg);opacity:0}}@keyframes horizontalFlipOut{0%{-webkit-transform:perspective(2000px)rotateY(0);transform:perspective(2000px)rotateY(0);opacity:1}100%{-webkit-transform:perspective(2000px)rotateY(90deg);transform:perspective(2000px)rotateY(90deg);opacity:0}}@-webkit-keyframes verticalFlipOut{0%{-webkit-transform:perspective(2000px)rotateX(0);transform:perspective(2000px)rotateX(0);opacity:1}100%{-webkit-transform:perspective(2000px)rotateX(-90deg);transform:perspective(2000px)rotateX(-90deg);opacity:0}}@keyframes verticalFlipOut{0%{-webkit-transform:perspective(2000px)rotateX(0);transform:perspective(2000px)rotateX(0);opacity:1}100%{-webkit-transform:perspective(2000px)rotateX(-90deg);transform:perspective(2000px)rotateX(-90deg);opacity:0}}.scale.transition.in{-webkit-animation-name:scaleIn;animation-name:scaleIn}.scale.transition.out{-webkit-animation-name:scaleOut;animation-name:scaleOut}@-webkit-keyframes scaleIn{0%{opacity:0;-webkit-transform:scale(.7);transform:scale(.7)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes scaleIn{0%{opacity:0;-webkit-transform:scale(.7);transform:scale(.7)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes scaleOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.7);transform:scale(.7)}}@keyframes scaleOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.7);transform:scale(.7)}}.transition.fly{-webkit-animation-duration:.6s;animation-duration:.6s;-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}.transition.fly.in{-webkit-animation-name:flyIn;animation-name:flyIn}.transition[class*="fly up"].in{-webkit-animation-name:flyInUp;animation-name:flyInUp}.transition[class*="fly down"].in{-webkit-animation-name:flyInDown;animation-name:flyInDown}.transition[class*="fly left"].in{-webkit-animation-name:flyInLeft;animation-name:flyInLeft}.transition[class*="fly right"].in{-webkit-animation-name:flyInRight;animation-name:flyInRight}.transition.fly.out{-webkit-animation-name:flyOut;animation-name:flyOut}.transition[class*="fly up"].out{-webkit-animation-name:flyOutUp;animation-name:flyOutUp}.transition[class*="fly down"].out{-webkit-animation-name:flyOutDown;animation-name:flyOutDown}.transition[class*="fly left"].out{-webkit-animation-name:flyOutLeft;animation-name:flyOutLeft}.transition[class*="fly right"].out{-webkit-animation-name:flyOutRight;animation-name:flyOutRight}@-webkit-keyframes flyIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}100%{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes flyIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}100%{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@-webkit-keyframes flyInUp{0%{opacity:0;-webkit-transform:translate3d(0,1500px,0);transform:translate3d(0,1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes flyInUp{0%{opacity:0;-webkit-transform:translate3d(0,1500px,0);transform:translate3d(0,1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes flyInDown{0%{opacity:0;-webkit-transform:translate3d(0,-1500px,0);transform:translate3d(0,-1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInDown{0%{opacity:0;-webkit-transform:translate3d(0,-1500px,0);transform:translate3d(0,-1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyInLeft{0%{opacity:0;-webkit-transform:translate3d(1500px,0,0);transform:translate3d(1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInLeft{0%{opacity:0;-webkit-transform:translate3d(1500px,0,0);transform:translate3d(1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyInRight{0%{opacity:0;-webkit-transform:translate3d(-1500px,0,0);transform:translate3d(-1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInRight{0%{opacity:0;-webkit-transform:translate3d(-1500px,0,0);transform:translate3d(-1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes flyOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@-webkit-keyframes flyOutUp{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes flyOutUp{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@-webkit-keyframes flyOutDown{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes flyOutDown{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@-webkit-keyframes flyOutRight{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes flyOutRight{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@-webkit-keyframes flyOutLeft{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes flyOutLeft{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.transition.slide.in,.transition[class*="slide down"].in{-webkit-animation-name:slideInY;animation-name:slideInY;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="slide up"].in{-webkit-animation-name:slideInY;animation-name:slideInY;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="slide left"].in{-webkit-animation-name:slideInX;animation-name:slideInX;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="slide right"].in{-webkit-animation-name:slideInX;animation-name:slideInX;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}.transition.slide.out,.transition[class*="slide down"].out{-webkit-animation-name:slideOutY;animation-name:slideOutY;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="slide up"].out{-webkit-animation-name:slideOutY;animation-name:slideOutY;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="slide left"].out{-webkit-animation-name:slideOutX;animation-name:slideOutX;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="slide right"].out{-webkit-animation-name:slideOutX;animation-name:slideOutX;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}@-webkit-keyframes slideInY{0%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}100%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes slideInY{0%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}100%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}}@-webkit-keyframes slideInX{0%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}100%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes slideInX{0%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}100%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@-webkit-keyframes slideOutY{0%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}100%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@keyframes slideOutY{0%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}100%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@-webkit-keyframes slideOutX{0%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}100%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}}@keyframes slideOutX{0%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}100%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}}.transition.swing{-webkit-animation-duration:800ms;animation-duration:800ms}.transition[class*="swing down"].in{-webkit-animation-name:swingInX;animation-name:swingInX;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="swing up"].in{-webkit-animation-name:swingInX;animation-name:swingInX;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="swing left"].in{-webkit-animation-name:swingInY;animation-name:swingInY;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="swing right"].in{-webkit-animation-name:swingInY;animation-name:swingInY;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}.transition.swing.out,.transition[class*="swing down"].out{-webkit-animation-name:swingOutX;animation-name:swingOutX;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="swing up"].out{-webkit-animation-name:swingOutX;animation-name:swingOutX;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="swing left"].out{-webkit-animation-name:swingOutY;animation-name:swingOutY;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="swing right"].out{-webkit-animation-name:swingOutY;animation-name:swingOutY;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}@-webkit-keyframes swingInX{0%{-webkit-transform:perspective(1000px)rotateX(90deg);transform:perspective(1000px)rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(1000px)rotateX(-30deg);transform:perspective(1000px)rotateX(-30deg);opacity:1}60%{-webkit-transform:perspective(1000px)rotateX(15deg);transform:perspective(1000px)rotateX(15deg)}80%{-webkit-transform:perspective(1000px)rotateX(-7.5deg);transform:perspective(1000px)rotateX(-7.5deg)}100%{-webkit-transform:perspective(1000px)rotateX(0);transform:perspective(1000px)rotateX(0)}}@keyframes swingInX{0%{-webkit-transform:perspective(1000px)rotateX(90deg);transform:perspective(1000px)rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(1000px)rotateX(-30deg);transform:perspective(1000px)rotateX(-30deg);opacity:1}60%{-webkit-transform:perspective(1000px)rotateX(15deg);transform:perspective(1000px)rotateX(15deg)}80%{-webkit-transform:perspective(1000px)rotateX(-7.5deg);transform:perspective(1000px)rotateX(-7.5deg)}100%{-webkit-transform:perspective(1000px)rotateX(0);transform:perspective(1000px)rotateX(0)}}@-webkit-keyframes swingInY{0%{-webkit-transform:perspective(1000px)rotateY(-90deg);transform:perspective(1000px)rotateY(-90deg);opacity:0}40%{-webkit-transform:perspective(1000px)rotateY(30deg);transform:perspective(1000px)rotateY(30deg);opacity:1}60%{-webkit-transform:perspective(1000px)rotateY(-17.5deg);transform:perspective(1000px)rotateY(-17.5deg)}80%{-webkit-transform:perspective(1000px)rotateY(7.5deg);transform:perspective(1000px)rotateY(7.5deg)}100%{-webkit-transform:perspective(1000px)rotateY(0);transform:perspective(1000px)rotateY(0)}}@keyframes swingInY{0%{-webkit-transform:perspective(1000px)rotateY(-90deg);transform:perspective(1000px)rotateY(-90deg);opacity:0}40%{-webkit-transform:perspective(1000px)rotateY(30deg);transform:perspective(1000px)rotateY(30deg);opacity:1}60%{-webkit-transform:perspective(1000px)rotateY(-17.5deg);transform:perspective(1000px)rotateY(-17.5deg)}80%{-webkit-transform:perspective(1000px)rotateY(7.5deg);transform:perspective(1000px)rotateY(7.5deg)}100%{-webkit-transform:perspective(1000px)rotateY(0);transform:perspective(1000px)rotateY(0)}}@-webkit-keyframes swingOutX{0%{-webkit-transform:perspective(1000px)rotateX(0);transform:perspective(1000px)rotateX(0)}40%{-webkit-transform:perspective(1000px)rotateX(-7.5deg);transform:perspective(1000px)rotateX(-7.5deg)}60%{-webkit-transform:perspective(1000px)rotateX(17.5deg);transform:perspective(1000px)rotateX(17.5deg)}80%{-webkit-transform:perspective(1000px)rotateX(-30deg);transform:perspective(1000px)rotateX(-30deg);opacity:1}100%{-webkit-transform:perspective(1000px)rotateX(90deg);transform:perspective(1000px)rotateX(90deg);opacity:0}}@keyframes swingOutX{0%{-webkit-transform:perspective(1000px)rotateX(0);transform:perspective(1000px)rotateX(0)}40%{-webkit-transform:perspective(1000px)rotateX(-7.5deg);transform:perspective(1000px)rotateX(-7.5deg)}60%{-webkit-transform:perspective(1000px)rotateX(17.5deg);transform:perspective(1000px)rotateX(17.5deg)}80%{-webkit-transform:perspective(1000px)rotateX(-30deg);transform:perspective(1000px)rotateX(-30deg);opacity:1}100%{-webkit-transform:perspective(1000px)rotateX(90deg);transform:perspective(1000px)rotateX(90deg);opacity:0}}@-webkit-keyframes swingOutY{0%{-webkit-transform:perspective(1000px)rotateY(0);transform:perspective(1000px)rotateY(0)}40%{-webkit-transform:perspective(1000px)rotateY(7.5deg);transform:perspective(1000px)rotateY(7.5deg)}60%{-webkit-transform:perspective(1000px)rotateY(-10deg);transform:perspective(1000px)rotateY(-10deg)}80%{-webkit-transform:perspective(1000px)rotateY(30deg);transform:perspective(1000px)rotateY(30deg);opacity:1}100%{-webkit-transform:perspective(1000px)rotateY(-90deg);transform:perspective(1000px)rotateY(-90deg);opacity:0}}@keyframes swingOutY{0%{-webkit-transform:perspective(1000px)rotateY(0);transform:perspective(1000px)rotateY(0)}40%{-webkit-transform:perspective(1000px)rotateY(7.5deg);transform:perspective(1000px)rotateY(7.5deg)}60%{-webkit-transform:perspective(1000px)rotateY(-10deg);transform:perspective(1000px)rotateY(-10deg)}80%{-webkit-transform:perspective(1000px)rotateY(30deg);transform:perspective(1000px)rotateY(30deg);opacity:1}100%{-webkit-transform:perspective(1000px)rotateY(-90deg);transform:perspective(1000px)rotateY(-90deg);opacity:0}}.flash.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:flash;animation-name:flash}.shake.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:shake;animation-name:shake}.bounce.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:bounce;animation-name:bounce}.tada.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:tada;animation-name:tada}.pulse.transition{-webkit-animation-duration:500ms;animation-duration:500ms;-webkit-animation-name:pulse;animation-name:pulse}.jiggle.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:jiggle;animation-name:jiggle}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@-webkit-keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9)rotate(-3deg);transform:scale(.9)rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1)rotate(3deg);transform:scale(1.1)rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1)rotate(-3deg);transform:scale(1.1)rotate(-3deg)}100%{-webkit-transform:scale(1)rotate(0);transform:scale(1)rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9)rotate(-3deg);transform:scale(.9)rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1)rotate(3deg);transform:scale(1.1)rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1)rotate(-3deg);transform:scale(1.1)rotate(-3deg)}100%{-webkit-transform:scale(1)rotate(0);transform:scale(1)rotate(0)}}@-webkit-keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.9);transform:scale(.9);opacity:.7}}@keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.9);transform:scale(.9);opacity:.7}}@-webkit-keyframes jiggle{0%,100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}@keyframes jiggle{0%,100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}.ui.video{background-color:#ddd;position:relative;max-width:100%;padding-bottom:56.25%;height:0;overflow:hidden}.ui.video .placeholder{background-color:#333}.ui.video .play{cursor:pointer;position:absolute;top:0;left:0;z-index:10;width:100%;height:100%;opacity:.8;-webkit-transition:opacity .3s;transition:opacity .3s}.ui.video .play.icon:before{position:absolute;top:50%;left:50%;z-index:11;background:rgba(0,0,0,.3);width:8rem;height:8rem;line-height:8rem;border-radius:500rem;color:#fff;font-size:8rem;text-shadow:none;-webkit-transform:translateX(-50%)translateY(-50%);-ms-transform:translateX(-50%)translateY(-50%);transform:translateX(-50%)translateY(-50%)}.ui.video .placeholder{position:absolute;top:0;left:0;display:block;width:100%;height:100%}.ui.video .embed embed,.ui.video .embed iframe,.ui.video .embed object{position:absolute;border:none;width:100%;height:100%;top:0;left:0;margin:0;padding:0}.ui.video .play:hover{opacity:1}.ui.video.active .placeholder,.ui.video.active .play{display:none}.ui.video.active .embed{display:inline} \ No newline at end of file +*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;font-size:14px}input[type=text],input[type=email],input[type=search],input[type=password]{-webkit-appearance:none;-moz-appearance:none}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0;color:#4183c4;text-decoration:none}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}body,html{height:100%}body{margin:0;padding:0;overflow-x:hidden;min-width:320px;background:#fff;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:14px;line-height:1.4285em;color:rgba(0,0,0,.87);font-smoothing:antialiased}h1,h2,h3,h4,h5{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;line-height:1.2857em;margin:calc(2rem - .14285em) 0 1rem;font-weight:700;padding:0}h1{min-height:1rem;font-size:2rem}h2{font-size:1.714rem}h3{font-size:1.28rem}h4{font-size:1.071rem}h5{font-size:1rem}h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,p:first-child{margin-top:0}h1:last-child,h2:last-child,h3:last-child,h4:last-child,h5:last-child,p:last-child{margin-bottom:0}p{margin:0 0 1em;line-height:1.4285em}a:hover{color:#1e70bf;text-decoration:none}::-webkit-selection{background-color:#cce2ff;color:rgba(0,0,0,.87)}::-moz-selection{background-color:#cce2ff;color:rgba(0,0,0,.87)}::selection{background-color:#cce2ff;color:rgba(0,0,0,.87)}input::-webkit-selection,textarea::-webkit-selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.87)}input::-moz-selection,textarea::-moz-selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.87)}input::selection,textarea::selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.87)}.ui.button{cursor:pointer;display:inline-block;min-height:1em;outline:0;border:none;vertical-align:baseline;background:#e0e1e2;color:rgba(0,0,0,.6);font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;margin:0 .25em 0 0;padding:.78571429em 1.5em;text-transform:none;text-shadow:none;font-weight:700;line-height:1em;font-style:normal;text-align:center;text-decoration:none;border-radius:.28571429rem;box-shadow:0 0 0 1px transparent inset,0 0 0 0 rgba(34,36,38,.15) inset;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;will-change:'';-webkit-tap-highlight-color:transparent}.ui.button:hover{background-color:#cacbcd;background-image:none;box-shadow:0 0 0 1px transparent inset,0 0 0 0 rgba(34,36,38,.15) inset;color:rgba(0,0,0,.8)}.ui.button:hover .icon{opacity:.85}.ui.button:focus{background-color:#cacbcd;color:rgba(0,0,0,.8);background-image:''!important;box-shadow:''!important}.ui.button:focus .icon{opacity:.85}.ui.active.button:active,.ui.button:active{background-color:#babbbc;background-image:'';color:rgba(0,0,0,.9);box-shadow:0 0 0 1px transparent inset,none}.ui.active.button{background-color:#c0c1c2;background-image:none;box-shadow:0 0 0 1px transparent inset;color:rgba(0,0,0,.95)}.ui.active.button:hover{background-color:#c0c1c2;background-image:none;color:rgba(0,0,0,.95)}.ui.active.button:active{background-color:#c0c1c2;background-image:none}.ui.loading.loading.loading.loading.loading.loading.button{position:relative;cursor:default;text-shadow:none!important;color:transparent!important;opacity:1;pointer-events:auto;-webkit-transition:all 0s linear,opacity .1s ease;transition:all 0s linear,opacity .1s ease}.ui.loading.button:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.15)}.ui.loading.button:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#fff transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.labeled.icon.loading.button .icon{background-color:transparent;box-shadow:none}@-webkit-keyframes button-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes button-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.basic.loading.button:not(.inverted):before{border-color:rgba(0,0,0,.1)}.ui.basic.loading.button:not(.inverted):after{border-top-color:#767676}.ui.button:disabled,.ui.buttons .disabled.button,.ui.disabled.active.button,.ui.disabled.button,.ui.disabled.button:hover{cursor:default;opacity:.45!important;background-image:none!important;box-shadow:none!important;pointer-events:none}.ui.basic.buttons .ui.disabled.button{border-color:rgba(34,36,38,.5)}.ui.animated.button{position:relative;overflow:hidden;padding-right:0!important;vertical-align:middle;z-index:1}.ui.animated.button .content{will-change:transform,opacity}.ui.animated.button .visible.content{position:relative;margin-right:1.5em;left:auto;right:0}.ui.animated.button .hidden.content{position:absolute;width:100%;top:50%;left:auto;right:-100%;margin-top:-.5em}.ui.animated.button .hidden.content,.ui.animated.button .visible.content{-webkit-transition:right .3s ease 0s;transition:right .3s ease 0s}.ui.animated.button:focus .visible.content,.ui.animated.button:hover .visible.content{left:auto;right:200%}.ui.animated.button:focus .hidden.content,.ui.animated.button:hover .hidden.content{left:auto;right:0}.ui.vertical.animated.button .hidden.content,.ui.vertical.animated.button .visible.content{-webkit-transition:top .3s ease,-webkit-transform .3s ease;transition:top .3s ease,transform .3s ease}.ui.vertical.animated.button .visible.content{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);right:auto}.ui.vertical.animated.button .hidden.content{top:-50%;left:0;right:auto}.ui.vertical.animated.button:focus .visible.content,.ui.vertical.animated.button:hover .visible.content{-webkit-transform:translateY(200%);-ms-transform:translateY(200%);transform:translateY(200%);right:auto}.ui.vertical.animated.button:focus .hidden.content,.ui.vertical.animated.button:hover .hidden.content{top:50%;right:auto}.ui.fade.animated.button .hidden.content,.ui.fade.animated.button .visible.content{-webkit-transition:opacity .3s ease,-webkit-transform .3s ease;transition:opacity .3s ease,transform .3s ease}.ui.fade.animated.button .visible.content{left:auto;right:auto;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.ui.fade.animated.button .hidden.content{opacity:0;left:0;right:auto;-webkit-transform:scale(1.5);-ms-transform:scale(1.5);transform:scale(1.5)}.ui.fade.animated.button:focus .visible.content,.ui.fade.animated.button:hover .visible.content{left:auto;right:auto;opacity:0;-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.ui.fade.animated.button:focus .hidden.content,.ui.fade.animated.button:hover .hidden.content{left:0;right:auto;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.ui.inverted.button{box-shadow:0 0 0 2px #fff inset!important;background:0 0;color:#fff;text-shadow:none!important}.ui.inverted.buttons .button{margin:0 0 0 -2px}.ui.inverted.buttons .button:first-child{margin-left:0}.ui.inverted.vertical.buttons .button{margin:0 0 -2px}.ui.inverted.vertical.buttons .button:first-child{margin-top:0}.ui.inverted.button:focus,.ui.inverted.button:hover{background:#fff;box-shadow:0 0 0 2px #fff inset!important;color:rgba(0,0,0,.8)}.ui.facebook.button{background-color:#3b5998;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.facebook.button:hover{background-color:#304d8a;color:#fff;text-shadow:none}.ui.facebook.button:active{background-color:#2d4373;color:#fff;text-shadow:none}.ui.twitter.button{background-color:#0084b4;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.twitter.button:hover{background-color:#00719b;color:#fff;text-shadow:none}.ui.twitter.button:active{background-color:#005f81;color:#fff;text-shadow:none}.ui.google.plus.button{background-color:#dc4a38;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.google.plus.button:hover{background-color:#de321d;color:#fff;text-shadow:none}.ui.google.plus.button:active{background-color:#bf3322;color:#fff;text-shadow:none}.ui.linkedin.button{background-color:#1f88be;color:#fff;text-shadow:none}.ui.linkedin.button:hover{background-color:#147baf;color:#fff;text-shadow:none}.ui.linkedin.button:active{background-color:#186992;color:#fff;text-shadow:none}.ui.youtube.button{background-color:#cc181e;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.youtube.button:hover{background-color:#bd0d13;color:#fff;text-shadow:none}.ui.youtube.button:active{background-color:#9e1317;color:#fff;text-shadow:none}.ui.instagram.button{background-color:#49769c;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.instagram.button:hover{background-color:#3d698e;color:#fff;text-shadow:none}.ui.instagram.button:active{background-color:#395c79;color:#fff;text-shadow:none}.ui.pinterest.button{background-color:#00aced;color:#fff;text-shadow:none;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.pinterest.button:hover{background-color:#0099d4;color:#fff;text-shadow:none}.ui.pinterest.button:active{background-color:#0087ba;color:#fff;text-shadow:none}.ui.vk.button{background-color:#4D7198;color:#fff;background-image:none;box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.vk.button:hover{background-color:#41648a;color:#fff}.ui.vk.button:active{background-color:#3c5876;color:#fff}.ui.button>.icon{height:.92857143em;opacity:.8;margin:0 .42857143em 0 -.21428571em;-webkit-transition:opacity .1s ease;transition:opacity .1s ease;vertical-align:'';color:''}.ui.button>.right.icon{margin:0 -.21428571em 0 .42857143em}.ui[class*="left floated"].button,.ui[class*="left floated"].buttons{float:left;margin-left:0;margin-right:.25em}.ui[class*="right floated"].button,.ui[class*="right floated"].buttons{float:right;margin-right:0;margin-left:.25em}.ui.compact.button,.ui.compact.buttons .button{padding:.58928571em 1.125em}.ui.compact.icon.button,.ui.compact.icon.buttons .button{padding:.58928571em}.ui.compact.labeled.icon.button,.ui.compact.labeled.icon.buttons .button{padding:.58928571em 3.69642857em}.ui.mini.button,.ui.mini.buttons .button,.ui.mini.buttons .or{font-size:.71428571rem}.ui.tiny.button,.ui.tiny.buttons .button,.ui.tiny.buttons .or{font-size:.85714286rem}.ui.small.button,.ui.small.buttons .button,.ui.small.buttons .or{font-size:.92857143rem}.ui.button,.ui.buttons .button,.ui.buttons .or{font-size:1rem}.ui.large.button,.ui.large.buttons .button,.ui.large.buttons .or{font-size:1.14285714rem}.ui.big.button,.ui.big.buttons .button,.ui.big.buttons .or{font-size:1.28571429rem}.ui.huge.button,.ui.huge.buttons .button,.ui.huge.buttons .or{font-size:1.42857143rem}.ui.massive.button,.ui.massive.buttons .button,.ui.massive.buttons .or{font-size:1.71428571rem}.ui.icon.button,.ui.icon.buttons .button{padding:.78571429em}.ui.icon.button>.icon,.ui.icon.buttons .button>.icon{opacity:.9;margin:0;vertical-align:top}.ui.basic.button,.ui.basic.buttons .button{background:0 0!important;color:rgba(0,0,0,.6)!important;font-weight:400;border-radius:.28571429rem;text-transform:none;text-shadow:none!important;box-shadow:0 0 0 1px rgba(34,36,38,.15) inset}.ui.basic.buttons{box-shadow:none;border:1px solid rgba(34,36,38,.15);border-radius:.28571429rem}.ui.basic.button:focus,.ui.basic.button:hover,.ui.basic.buttons .button:focus,.ui.basic.buttons .button:hover{background:#fff!important;color:rgba(0,0,0,.8)!important;box-shadow:0 0 0 1px rgba(34,36,38,.35) inset,0 0 0 0 rgba(34,36,38,.15) inset}.ui.basic.button:active,.ui.basic.buttons .button:active{background:#f8f8f8!important;color:rgba(0,0,0,.9)!important;box-shadow:0 0 0 1px rgba(0,0,0,.15) inset,0 1px 4px 0 rgba(34,36,38,.15) inset}.ui.basic.active.button,.ui.basic.buttons .active.button{background:rgba(0,0,0,.05)!important;box-shadow:''!important;color:rgba(0,0,0,.95)}.ui.basic.active.button:hover,.ui.basic.buttons .active.button:hover{background-color:rgba(0,0,0,.05)}.ui.basic.buttons .button:hover{box-shadow:0 0 0 1px rgba(34,36,38,.35) inset,0 0 0 0 rgba(34,36,38,.15) inset inset}.ui.basic.buttons .button:active{box-shadow:0 0 0 1px rgba(0,0,0,.15) inset,0 1px 4px 0 rgba(34,36,38,.15) inset inset}.ui.basic.buttons .active.button{box-shadow:rgba(34,36,38,.35) inset}.ui.basic.inverted.button,.ui.basic.inverted.buttons .button{background-color:transparent!important;color:#f9fafb!important;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important}.ui.basic.inverted.button:focus,.ui.basic.inverted.button:hover,.ui.basic.inverted.buttons .button:focus,.ui.basic.inverted.buttons .button:hover{color:#fff!important;box-shadow:0 0 0 2px #fff inset!important}.ui.basic.inverted.button:active,.ui.basic.inverted.buttons .button:active{background-color:rgba(255,255,255,.08)!important;color:#fff!important;box-shadow:0 0 0 2px rgba(255,255,255,.9) inset!important}.ui.basic.inverted.active.button,.ui.basic.inverted.buttons .active.button{background-color:rgba(255,255,255,.08);color:#fff;text-shadow:none;box-shadow:0 0 0 2px rgba(255,255,255,.7) inset}.ui.basic.inverted.active.button:hover,.ui.basic.inverted.buttons .active.button:hover{background-color:rgba(255,255,255,.15);box-shadow:0 0 0 2px #fff inset!important}.ui.basic.buttons .button{border-radius:0;border-left:1px solid rgba(34,36,38,.15);box-shadow:none}.ui.basic.vertical.buttons .button{border-left:none;border-left-width:0;border-top:1px solid rgba(34,36,38,.15)}.ui.basic.vertical.buttons .button:first-child{border-top-width:0}.ui.labeled.icon.button,.ui.labeled.icon.buttons .button{position:relative;padding-left:4.07142857em!important;padding-right:1.5em!important}.ui.labeled.icon.button>.icon,.ui.labeled.icon.buttons>.button>.icon{position:absolute;height:100%;line-height:1;width:2.57142857em;background-color:rgba(0,0,0,.05);text-align:center;color:'';border-radius:.28571429rem 0 0 .28571429rem;box-shadow:-1px 0 0 0 transparent inset;top:0;left:0}.ui[class*="right labeled"].icon.button{padding-right:4.07142857em!important;padding-left:1.5em!important}.ui[class*="right labeled"].icon.button>.icon{left:auto;right:0;border-radius:0 .28571429rem .28571429rem 0;box-shadow:1px 0 0 0 transparent inset}.ui.labeled.icon.button>.icon:after,.ui.labeled.icon.button>.icon:before,.ui.labeled.icon.buttons>.button>.icon:after,.ui.labeled.icon.buttons>.button>.icon:before{display:block;position:absolute;width:100%;top:50%;text-align:center;margin-top:-.5em}.ui.labeled.icon.buttons .button>.icon{border-radius:0}.ui.labeled.icon.buttons .button:first-child>.icon{border-top-left-radius:.28571429rem;border-bottom-left-radius:.28571429rem}.ui.labeled.icon.buttons .button:last-child>.icon{border-top-right-radius:.28571429rem;border-bottom-right-radius:.28571429rem}.ui.vertical.labeled.icon.buttons .button:first-child>.icon{border-radius:.28571429rem 0 0}.ui.vertical.labeled.icon.buttons .button:last-child>.icon{border-radius:0 0 0 .28571429rem}.ui.fluid[class*="right labeled"].icon.button,.ui.fluid[class*="left labeled"].icon.button{padding-left:1.5em!important;padding-right:1.5em!important}.ui.button.toggle.active,.ui.buttons .button.toggle.active,.ui.toggle.buttons .active.button{background-color:#21ba45!important;box-shadow:none!important;text-shadow:none;color:#fff!important}.ui.button.toggle.active:hover{background-color:#16ab39!important;text-shadow:none;color:#fff!important}.ui.circular.button{border-radius:10em}.ui.circular.button>.icon{width:1em;vertical-align:baseline}.ui.buttons .or{position:relative;width:.3em;height:2.57142857em;z-index:3}.ui.buttons .or:before{position:absolute;text-align:center;border-radius:500rem;content:'or';top:50%;left:50%;background-color:#fff;text-shadow:none;margin-top:-.89285714em;margin-left:-.89285714em;width:1.78571429em;height:1.78571429em;line-height:1.78571429em;color:rgba(0,0,0,.4);font-style:normal;font-weight:700;box-shadow:0 0 0 1px transparent inset}.ui.buttons .or[data-text]:before{content:attr(data-text)}.ui.fluid.buttons .or{width:0!important}.ui.fluid.buttons .or:after{display:none}.ui.attached.button{position:relative;display:block;margin:0;border-radius:0;box-shadow:0 0 0 1px rgba(34,36,38,.15)!important}.ui.attached.top.button{border-radius:.28571429rem .28571429rem 0 0}.ui.attached.bottom.button{border-radius:0 0 .28571429rem .28571429rem}.ui.left.attached.button{display:inline-block;border-left:none;text-align:right;padding-right:.75em;border-radius:.28571429rem 0 0 .28571429rem}.ui.right.attached.button{display:inline-block;text-align:left;padding-left:.75em;border-radius:0 .28571429rem .28571429rem 0}.ui.attached.buttons{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border-radius:0;width:auto!important;z-index:2;margin-left:-1px;margin-right:-1px}.ui.attached.buttons .button{margin:0}.ui.attached.buttons .button:first-child,.ui.attached.buttons .button:last-child{border-radius:0}.ui[class*="top attached"].buttons{margin-bottom:-1px;border-radius:.28571429rem .28571429rem 0 0}.ui[class*="top attached"].buttons .button:first-child{border-radius:.28571429rem 0 0}.ui[class*="top attached"].buttons .button:last-child{border-radius:0 .28571429rem 0 0}.ui[class*="bottom attached"].buttons{margin-top:-1px;border-radius:0 0 .28571429rem .28571429rem}.ui[class*="bottom attached"].buttons .button:first-child{border-radius:0 0 0 .28571429rem}.ui[class*="bottom attached"].buttons .button:last-child{border-radius:0 0 .28571429rem}.ui[class*="left attached"].buttons{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;margin-right:0;margin-left:-1px;border-radius:0 .28571429rem .28571429rem 0}.ui[class*="left attached"].buttons .button:first-child{margin-left:-1px;border-radius:0 .28571429rem 0 0}.ui[class*="left attached"].buttons .button:last-child{margin-left:-1px;border-radius:0 0 .28571429rem}.ui[class*="right attached"].buttons{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;margin-left:0;margin-right:-1px;border-radius:.28571429rem 0 0 .28571429rem}.ui[class*="right attached"].buttons .button:first-child{margin-left:-1px;border-radius:.28571429rem 0 0}.ui[class*="right attached"].buttons .button:last-child{margin-left:-1px;border-radius:0 0 0 .28571429rem}.ui.button.fluid,.ui.fluid.buttons{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;width:100%}.ui.two.buttons{width:100%}.ui.two.buttons>.button{width:50%}.ui.three.buttons{width:100%}.ui.three.buttons>.button{width:33.333%}.ui.four.buttons{width:100%}.ui.four.buttons>.button{width:25%}.ui.five.buttons{width:100%}.ui.five.buttons>.button{width:20%}.ui.six.buttons{width:100%}.ui.six.buttons>.button{width:16.666%}.ui.seven.buttons{width:100%}.ui.seven.buttons>.button{width:14.285%}.ui.eight.buttons{width:100%}.ui.eight.buttons>.button{width:12.5%}.ui.nine.buttons{width:100%}.ui.nine.buttons>.button{width:11.11%}.ui.ten.buttons{width:100%}.ui.ten.buttons>.button{width:10%}.ui.eleven.buttons{width:100%}.ui.eleven.buttons>.button{width:9.09%}.ui.twelve.buttons{width:100%}.ui.twelve.buttons>.button{width:8.3333%}.ui.fluid.vertical.buttons,.ui.fluid.vertical.buttons>.button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:auto}.ui.two.vertical.buttons>.button{height:50%}.ui.three.vertical.buttons>.button{height:33.333%}.ui.four.vertical.buttons>.button{height:25%}.ui.five.vertical.buttons>.button{height:20%}.ui.six.vertical.buttons>.button{height:16.666%}.ui.seven.vertical.buttons>.button{height:14.285%}.ui.eight.vertical.buttons>.button{height:12.5%}.ui.nine.vertical.buttons>.button{height:11.11%}.ui.ten.vertical.buttons>.button{height:10%}.ui.eleven.vertical.buttons>.button{height:9.09%}.ui.twelve.vertical.buttons>.button{height:8.3333%}.ui.black.button,.ui.black.buttons .button{background-color:#1b1c1d;color:#fff;text-shadow:none;background-image:none}.ui.black.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.black.button:hover,.ui.black.buttons .button:hover{background-color:#27292a;color:#fff;text-shadow:none}.ui.black.button:focus,.ui.black.buttons .button:focus{background-color:#2f3032;color:#fff;text-shadow:none}.ui.black.button:active,.ui.black.buttons .button:active{background-color:#343637;color:#fff;text-shadow:none}.ui.black.active.button,.ui.black.button .active.button:active,.ui.black.buttons .active.button,.ui.black.buttons .active.button:active{background-color:#0f0f10;color:#fff;text-shadow:none}.ui.basic.black.button,.ui.basic.black.buttons .button{box-shadow:0 0 0 1px rgba(34,36,38,.15) inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.black.button:hover,.ui.basic.black.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #27292a inset!important;color:#27292a!important}.ui.basic.black.button:focus,.ui.basic.black.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 2px #2f3032 inset!important}.ui.basic.black.active.button,.ui.basic.black.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #0f0f10 inset!important;color:#343637!important}.ui.basic.black.button:active,.ui.basic.black.buttons .button:active{box-shadow:0 0 0 2px #343637 inset!important;color:#343637!important}.ui.buttons>.basic.black.button:not(:first-child){margin-left:-2px}.ui.inverted.black.button,.ui.inverted.black.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #d4d4d5 inset!important;color:#fff}.ui.inverted.black.button.active,.ui.inverted.black.button:active,.ui.inverted.black.button:focus,.ui.inverted.black.button:hover,.ui.inverted.black.buttons .button.active,.ui.inverted.black.buttons .button:active,.ui.inverted.black.buttons .button:focus,.ui.inverted.black.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.black.active.button,.ui.inverted.black.button:active,.ui.inverted.black.button:focus,.ui.inverted.black.button:hover,.ui.inverted.black.buttons .active.button,.ui.inverted.black.buttons .button:active,.ui.inverted.black.buttons .button:focus,.ui.inverted.black.buttons .button:hover{background-color:#000}.ui.inverted.black.basic.button,.ui.inverted.black.basic.buttons .button,.ui.inverted.black.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.black.basic.button:hover,.ui.inverted.black.basic.buttons .button:hover,.ui.inverted.black.buttons .basic.button:hover{box-shadow:0 0 0 2px #000 inset!important;color:#fff!important}.ui.inverted.black.basic.button:focus,.ui.inverted.black.basic.buttons .button:focus{box-shadow:0 0 0 2px #000 inset!important;color:#545454!important}.ui.inverted.black.basic.active.button,.ui.inverted.black.basic.button:active,.ui.inverted.black.basic.buttons .active.button,.ui.inverted.black.basic.buttons .button:active,.ui.inverted.black.buttons .basic.active.button,.ui.inverted.black.buttons .basic.button:active{box-shadow:0 0 0 2px #000 inset!important;color:#fff!important}.ui.grey.button,.ui.grey.buttons .button{background-color:#767676;color:#fff;text-shadow:none;background-image:none}.ui.grey.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.grey.button:hover,.ui.grey.buttons .button:hover{background-color:#838383;color:#fff;text-shadow:none}.ui.grey.button:focus,.ui.grey.buttons .button:focus{background-color:#8a8a8a;color:#fff;text-shadow:none}.ui.grey.button:active,.ui.grey.buttons .button:active{background-color:#909090;color:#fff;text-shadow:none}.ui.grey.active.button,.ui.grey.button .active.button:active,.ui.grey.buttons .active.button,.ui.grey.buttons .active.button:active{background-color:#696969;color:#fff;text-shadow:none}.ui.basic.grey.button,.ui.basic.grey.buttons .button{box-shadow:0 0 0 1px rgba(34,36,38,.15) inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.grey.button:hover,.ui.basic.grey.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #838383 inset!important;color:#838383!important}.ui.basic.grey.button:focus,.ui.basic.grey.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 2px #8a8a8a inset!important}.ui.basic.grey.active.button,.ui.basic.grey.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #696969 inset!important;color:#909090!important}.ui.basic.grey.button:active,.ui.basic.grey.buttons .button:active{box-shadow:0 0 0 2px #909090 inset!important;color:#909090!important}.ui.buttons>.basic.grey.button:not(:first-child){margin-left:-2px}.ui.inverted.grey.button,.ui.inverted.grey.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #d4d4d5 inset!important;color:#fff}.ui.inverted.grey.button.active,.ui.inverted.grey.button:active,.ui.inverted.grey.button:focus,.ui.inverted.grey.button:hover,.ui.inverted.grey.buttons .button.active,.ui.inverted.grey.buttons .button:active,.ui.inverted.grey.buttons .button:focus,.ui.inverted.grey.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.grey.button:hover,.ui.inverted.grey.buttons .button:hover{background-color:#cfd0d2}.ui.inverted.grey.button:focus,.ui.inverted.grey.buttons .button:focus{background-color:#c7c9cb}.ui.inverted.grey.active.button,.ui.inverted.grey.buttons .active.button{background-color:#cfd0d2}.ui.inverted.grey.button:active,.ui.inverted.grey.buttons .button:active{background-color:#c2c4c5}.ui.inverted.grey.basic.button,.ui.inverted.grey.basic.buttons .button,.ui.inverted.grey.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.grey.basic.button:hover,.ui.inverted.grey.basic.buttons .button:hover,.ui.inverted.grey.buttons .basic.button:hover{box-shadow:0 0 0 2px #cfd0d2 inset!important;color:#fff!important}.ui.inverted.grey.basic.button:focus,.ui.inverted.grey.basic.buttons .button:focus{box-shadow:0 0 0 2px #c7c9cb inset!important;color:#dcddde!important}.ui.inverted.grey.basic.active.button,.ui.inverted.grey.basic.buttons .active.button,.ui.inverted.grey.buttons .basic.active.button{box-shadow:0 0 0 2px #cfd0d2 inset!important;color:#fff!important}.ui.inverted.grey.basic.button:active,.ui.inverted.grey.basic.buttons .button:active,.ui.inverted.grey.buttons .basic.button:active{box-shadow:0 0 0 2px #c2c4c5 inset!important;color:#fff!important}.ui.brown.button,.ui.brown.buttons .button{background-color:#a5673f;color:#fff;text-shadow:none;background-image:none}.ui.brown.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.brown.button:hover,.ui.brown.buttons .button:hover{background-color:#975b33;color:#fff;text-shadow:none}.ui.brown.button:focus,.ui.brown.buttons .button:focus{background-color:#90532b;color:#fff;text-shadow:none}.ui.brown.button:active,.ui.brown.buttons .button:active{background-color:#805031;color:#fff;text-shadow:none}.ui.brown.active.button,.ui.brown.button .active.button:active,.ui.brown.buttons .active.button,.ui.brown.buttons .active.button:active{background-color:#995a31;color:#fff;text-shadow:none}.ui.basic.brown.button,.ui.basic.brown.buttons .button{box-shadow:0 0 0 1px rgba(34,36,38,.15) inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.brown.button:hover,.ui.basic.brown.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #975b33 inset!important;color:#975b33!important}.ui.basic.brown.button:focus,.ui.basic.brown.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 2px #90532b inset!important}.ui.basic.brown.active.button,.ui.basic.brown.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #995a31 inset!important;color:#805031!important}.ui.basic.brown.button:active,.ui.basic.brown.buttons .button:active{box-shadow:0 0 0 2px #805031 inset!important;color:#805031!important}.ui.buttons>.basic.brown.button:not(:first-child){margin-left:-2px}.ui.inverted.brown.button,.ui.inverted.brown.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #d67c1c inset!important;color:#d67c1c}.ui.inverted.brown.button.active,.ui.inverted.brown.button:active,.ui.inverted.brown.button:focus,.ui.inverted.brown.button:hover,.ui.inverted.brown.buttons .button.active,.ui.inverted.brown.buttons .button:active,.ui.inverted.brown.buttons .button:focus,.ui.inverted.brown.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.brown.button:hover,.ui.inverted.brown.buttons .button:hover{background-color:#c86f11}.ui.inverted.brown.button:focus,.ui.inverted.brown.buttons .button:focus{background-color:#c16808}.ui.inverted.brown.active.button,.ui.inverted.brown.buttons .active.button{background-color:#cc6f0d}.ui.inverted.brown.button:active,.ui.inverted.brown.buttons .button:active{background-color:#a96216}.ui.inverted.brown.basic.button,.ui.inverted.brown.basic.buttons .button,.ui.inverted.brown.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.brown.basic.button:hover,.ui.inverted.brown.basic.buttons .button:hover,.ui.inverted.brown.buttons .basic.button:hover{box-shadow:0 0 0 2px #c86f11 inset!important;color:#d67c1c!important}.ui.inverted.brown.basic.button:focus,.ui.inverted.brown.basic.buttons .button:focus{box-shadow:0 0 0 2px #c16808 inset!important;color:#d67c1c!important}.ui.inverted.brown.basic.active.button,.ui.inverted.brown.basic.buttons .active.button,.ui.inverted.brown.buttons .basic.active.button{box-shadow:0 0 0 2px #cc6f0d inset!important;color:#d67c1c!important}.ui.inverted.brown.basic.button:active,.ui.inverted.brown.basic.buttons .button:active,.ui.inverted.brown.buttons .basic.button:active{box-shadow:0 0 0 2px #a96216 inset!important;color:#d67c1c!important}.ui.blue.button,.ui.blue.buttons .button{background-color:#2185d0;color:#fff;text-shadow:none;background-image:none}.ui.blue.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.blue.button:hover,.ui.blue.buttons .button:hover{background-color:#1678c2;color:#fff;text-shadow:none}.ui.blue.button:focus,.ui.blue.buttons .button:focus{background-color:#0d71bb;color:#fff;text-shadow:none}.ui.blue.button:active,.ui.blue.buttons .button:active{background-color:#1a69a4;color:#fff;text-shadow:none}.ui.blue.active.button,.ui.blue.button .active.button:active,.ui.blue.buttons .active.button,.ui.blue.buttons .active.button:active{background-color:#1279c6;color:#fff;text-shadow:none}.ui.basic.blue.button,.ui.basic.blue.buttons .button{box-shadow:0 0 0 1px rgba(34,36,38,.15) inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.blue.button:hover,.ui.basic.blue.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #1678c2 inset!important;color:#1678c2!important}.ui.basic.blue.button:focus,.ui.basic.blue.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 2px #0d71bb inset!important}.ui.basic.blue.active.button,.ui.basic.blue.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #1279c6 inset!important;color:#1a69a4!important}.ui.basic.blue.button:active,.ui.basic.blue.buttons .button:active{box-shadow:0 0 0 2px #1a69a4 inset!important;color:#1a69a4!important}.ui.buttons>.basic.blue.button:not(:first-child){margin-left:-2px}.ui.inverted.blue.button,.ui.inverted.blue.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #54c8ff inset!important;color:#54c8ff}.ui.inverted.blue.button.active,.ui.inverted.blue.button:active,.ui.inverted.blue.button:focus,.ui.inverted.blue.button:hover,.ui.inverted.blue.buttons .button.active,.ui.inverted.blue.buttons .button:active,.ui.inverted.blue.buttons .button:focus,.ui.inverted.blue.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.blue.button:hover,.ui.inverted.blue.buttons .button:hover{background-color:#3ac0ff}.ui.inverted.blue.button:focus,.ui.inverted.blue.buttons .button:focus{background-color:#2bbbff}.ui.inverted.blue.active.button,.ui.inverted.blue.buttons .active.button{background-color:#3ac0ff}.ui.inverted.blue.button:active,.ui.inverted.blue.buttons .button:active{background-color:#21b8ff}.ui.inverted.blue.basic.button,.ui.inverted.blue.basic.buttons .button,.ui.inverted.blue.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.blue.basic.button:hover,.ui.inverted.blue.basic.buttons .button:hover,.ui.inverted.blue.buttons .basic.button:hover{box-shadow:0 0 0 2px #3ac0ff inset!important;color:#54c8ff!important}.ui.inverted.blue.basic.button:focus,.ui.inverted.blue.basic.buttons .button:focus{box-shadow:0 0 0 2px #2bbbff inset!important;color:#54c8ff!important}.ui.inverted.blue.basic.active.button,.ui.inverted.blue.basic.buttons .active.button,.ui.inverted.blue.buttons .basic.active.button{box-shadow:0 0 0 2px #3ac0ff inset!important;color:#54c8ff!important}.ui.inverted.blue.basic.button:active,.ui.inverted.blue.basic.buttons .button:active,.ui.inverted.blue.buttons .basic.button:active{box-shadow:0 0 0 2px #21b8ff inset!important;color:#54c8ff!important}.ui.green.button,.ui.green.buttons .button{background-color:#21ba45;color:#fff;text-shadow:none;background-image:none}.ui.green.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.green.button:hover,.ui.green.buttons .button:hover{background-color:#16ab39;color:#fff;text-shadow:none}.ui.green.button:focus,.ui.green.buttons .button:focus{background-color:#0ea432;color:#fff;text-shadow:none}.ui.green.button:active,.ui.green.buttons .button:active{background-color:#198f35;color:#fff;text-shadow:none}.ui.green.active.button,.ui.green.button .active.button:active,.ui.green.buttons .active.button,.ui.green.buttons .active.button:active{background-color:#13ae38;color:#fff;text-shadow:none}.ui.basic.green.button,.ui.basic.green.buttons .button{box-shadow:0 0 0 1px rgba(34,36,38,.15) inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.green.button:hover,.ui.basic.green.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #16ab39 inset!important;color:#16ab39!important}.ui.basic.green.button:focus,.ui.basic.green.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 2px #0ea432 inset!important}.ui.basic.green.active.button,.ui.basic.green.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #13ae38 inset!important;color:#198f35!important}.ui.basic.green.button:active,.ui.basic.green.buttons .button:active{box-shadow:0 0 0 2px #198f35 inset!important;color:#198f35!important}.ui.buttons>.basic.green.button:not(:first-child){margin-left:-2px}.ui.inverted.green.button,.ui.inverted.green.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #2ecc40 inset!important;color:#2ecc40}.ui.inverted.green.button.active,.ui.inverted.green.button:active,.ui.inverted.green.button:focus,.ui.inverted.green.button:hover,.ui.inverted.green.buttons .button.active,.ui.inverted.green.buttons .button:active,.ui.inverted.green.buttons .button:focus,.ui.inverted.green.buttons .button:hover{box-shadlightOw:none!important;color:#fff}.ui.inverted.green.button:hover,.ui.inverted.green.buttons .button:hover{background-color:#22be34}.ui.inverted.green.button:focus,.ui.inverted.green.buttons .button:focus{background-color:#19b82b}.ui.inverted.green.active.button,.ui.inverted.green.buttons .active.button{background-color:#1fc231}.ui.inverted.green.button:active,.ui.inverted.green.buttons .button:active{background-color:#25a233}.ui.inverted.green.basic.button,.ui.inverted.green.basic.buttons .button,.ui.inverted.green.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.green.basic.button:hover,.ui.inverted.green.basic.buttons .button:hover,.ui.inverted.green.buttons .basic.button:hover{box-shadow:0 0 0 2px #22be34 inset!important;color:#2ecc40!important}.ui.inverted.green.basic.button:focus,.ui.inverted.green.basic.buttons .button:focus{box-shadow:0 0 0 2px #19b82b inset!important;color:#2ecc40!important}.ui.inverted.green.basic.active.button,.ui.inverted.green.basic.buttons .active.button,.ui.inverted.green.buttons .basic.active.button{box-shadow:0 0 0 2px #1fc231 inset!important;color:#2ecc40!important}.ui.inverted.green.basic.button:active,.ui.inverted.green.basic.buttons .button:active,.ui.inverted.green.buttons .basic.button:active{box-shadow:0 0 0 2px #25a233 inset!important;color:#2ecc40!important}.ui.orange.button,.ui.orange.buttons .button{background-color:#f2711c;color:#fff;text-shadow:none;background-image:none}.ui.orange.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.orange.button:hover,.ui.orange.buttons .button:hover{background-color:#f26202;color:#fff;text-shadow:none}.ui.orange.button:focus,.ui.orange.buttons .button:focus{background-color:#e55b00;color:#fff;text-shadow:none}.ui.orange.button:active,.ui.orange.buttons .button:active{background-color:#cf590c;color:#fff;text-shadow:none}.ui.orange.active.button,.ui.orange.button .active.button:active,.ui.orange.buttons .active.button,.ui.orange.buttons .active.button:active{background-color:#f56100;color:#fff;text-shadow:none}.ui.basic.orange.button,.ui.basic.orange.buttons .button{box-shadow:0 0 0 1px rgba(34,36,38,.15) inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.orange.button:hover,.ui.basic.orange.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #f26202 inset!important;color:#f26202!important}.ui.basic.orange.button:focus,.ui.basic.orange.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 2px #e55b00 inset!important}.ui.basic.orange.active.button,.ui.basic.orange.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #f56100 inset!important;color:#cf590c!important}.ui.basic.orange.button:active,.ui.basic.orange.buttons .button:active{box-shadow:0 0 0 2px #cf590c inset!important;color:#cf590c!important}.ui.buttons>.basic.orange.button:not(:first-child){margin-left:-2px}.ui.inverted.orange.button,.ui.inverted.orange.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ff851b inset!important;color:#ff851b}.ui.inverted.orange.button.active,.ui.inverted.orange.button:active,.ui.inverted.orange.button:focus,.ui.inverted.orange.button:hover,.ui.inverted.orange.buttons .button.active,.ui.inverted.orange.buttons .button:active,.ui.inverted.orange.buttons .button:focus,.ui.inverted.orange.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.orange.button:hover,.ui.inverted.orange.buttons .button:hover{background-color:#ff7701}.ui.inverted.orange.button:focus,.ui.inverted.orange.buttons .button:focus{background-color:#f17000}.ui.inverted.orange.active.button,.ui.inverted.orange.buttons .active.button{background-color:#ff7701}.ui.inverted.orange.button:active,.ui.inverted.orange.buttons .button:active{background-color:#e76b00}.ui.inverted.orange.basic.button,.ui.inverted.orange.basic.buttons .button,.ui.inverted.orange.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.orange.basic.button:hover,.ui.inverted.orange.basic.buttons .button:hover,.ui.inverted.orange.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff7701 inset!important;color:#ff851b!important}.ui.inverted.orange.basic.button:focus,.ui.inverted.orange.basic.buttons .button:focus{box-shadow:0 0 0 2px #f17000 inset!important;color:#ff851b!important}.ui.inverted.orange.basic.active.button,.ui.inverted.orange.basic.buttons .active.button,.ui.inverted.orange.buttons .basic.active.button{box-shadow:0 0 0 2px #ff7701 inset!important;color:#ff851b!important}.ui.inverted.orange.basic.button:active,.ui.inverted.orange.basic.buttons .button:active,.ui.inverted.orange.buttons .basic.button:active{box-shadow:0 0 0 2px #e76b00 inset!important;color:#ff851b!important}.ui.pink.button,.ui.pink.buttons .button{background-color:#e03997;color:#fff;text-shadow:none;background-image:none}.ui.pink.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.pink.button:hover,.ui.pink.buttons .button:hover{background-color:#e61a8d;color:#fff;text-shadow:none}.ui.pink.button:focus,.ui.pink.buttons .button:focus{background-color:#e10f85;color:#fff;text-shadow:none}.ui.pink.button:active,.ui.pink.buttons .button:active{background-color:#c71f7e;color:#fff;text-shadow:none}.ui.pink.active.button,.ui.pink.button .active.button:active,.ui.pink.buttons .active.button,.ui.pink.buttons .active.button:active{background-color:#ea158d;color:#fff;text-shadow:none}.ui.basic.pink.button,.ui.basic.pink.buttons .button{box-shadow:0 0 0 1px rgba(34,36,38,.15) inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.pink.button:hover,.ui.basic.pink.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #e61a8d inset!important;color:#e61a8d!important}.ui.basic.pink.button:focus,.ui.basic.pink.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 2px #e10f85 inset!important}.ui.basic.pink.active.button,.ui.basic.pink.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #ea158d inset!important;color:#c71f7e!important}.ui.basic.pink.button:active,.ui.basic.pink.buttons .button:active{box-shadow:0 0 0 2px #c71f7e inset!important;color:#c71f7e!important}.ui.buttons>.basic.pink.button:not(:first-child){margin-left:-2px}.ui.inverted.pink.button,.ui.inverted.pink.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ff8edf inset!important;color:#ff8edf}.ui.inverted.pink.button.active,.ui.inverted.pink.button:active,.ui.inverted.pink.button:focus,.ui.inverted.pink.button:hover,.ui.inverted.pink.buttons .button.active,.ui.inverted.pink.buttons .button:active,.ui.inverted.pink.buttons .button:focus,.ui.inverted.pink.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.pink.button:hover,.ui.inverted.pink.buttons .button:hover{background-color:#ff74d8}.ui.inverted.pink.button:focus,.ui.inverted.pink.buttons .button:focus{background-color:#ff65d3}.ui.inverted.pink.active.button,.ui.inverted.pink.buttons .active.button{background-color:#ff74d8}.ui.inverted.pink.button:active,.ui.inverted.pink.buttons .button:active{background-color:#ff5bd1}.ui.inverted.pink.basic.button,.ui.inverted.pink.basic.buttons .button,.ui.inverted.pink.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.pink.basic.button:hover,.ui.inverted.pink.basic.buttons .button:hover,.ui.inverted.pink.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff74d8 inset!important;color:#ff8edf!important}.ui.inverted.pink.basic.button:focus,.ui.inverted.pink.basic.buttons .button:focus{box-shadow:0 0 0 2px #ff65d3 inset!important;color:#ff8edf!important}.ui.inverted.pink.basic.active.button,.ui.inverted.pink.basic.buttons .active.button,.ui.inverted.pink.buttons .basic.active.button{box-shadow:0 0 0 2px #ff74d8 inset!important;color:#ff8edf!important}.ui.inverted.pink.basic.button:active,.ui.inverted.pink.basic.buttons .button:active,.ui.inverted.pink.buttons .basic.button:active{box-shadow:0 0 0 2px #ff5bd1 inset!important;color:#ff8edf!important}.ui.violet.button,.ui.violet.buttons .button{background-color:#6435c9;color:#fff;text-shadow:none;background-image:none}.ui.violet.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.violet.button:hover,.ui.violet.buttons .button:hover{background-color:#5829bb;color:#fff;text-shadow:none}.ui.violet.button:focus,.ui.violet.buttons .button:focus{background-color:#4f20b5;color:#fff;text-shadow:none}.ui.violet.button:active,.ui.violet.buttons .button:active{background-color:#502aa1;color:#fff;text-shadow:none}.ui.violet.active.button,.ui.violet.button .active.button:active,.ui.violet.buttons .active.button,.ui.violet.buttons .active.button:active{background-color:#5626bf;color:#fff;text-shadow:none}.ui.basic.violet.button,.ui.basic.violet.buttons .button{box-shadow:0 0 0 1px rgba(34,36,38,.15) inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.violet.button:hover,.ui.basic.violet.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #5829bb inset!important;color:#5829bb!important}.ui.basic.violet.button:focus,.ui.basic.violet.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 2px #4f20b5 inset!important}.ui.basic.violet.active.button,.ui.basic.violet.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #5626bf inset!important;color:#502aa1!important}.ui.basic.violet.button:active,.ui.basic.violet.buttons .button:active{box-shadow:0 0 0 2px #502aa1 inset!important;color:#502aa1!important}.ui.buttons>.basic.violet.button:not(:first-child){margin-left:-2px}.ui.inverted.violet.button,.ui.inverted.violet.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #a291fb inset!important;color:#a291fb}.ui.inverted.violet.button.active,.ui.inverted.violet.button:active,.ui.inverted.violet.button:focus,.ui.inverted.violet.button:hover,.ui.inverted.violet.buttons .button.active,.ui.inverted.violet.buttons .button:active,.ui.inverted.violet.buttons .button:focus,.ui.inverted.violet.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.violet.button:hover,.ui.inverted.violet.buttons .button:hover{background-color:#8a73ff}.ui.inverted.violet.button:focus,.ui.inverted.violet.buttons .button:focus{background-color:#7d64ff}.ui.inverted.violet.active.button,.ui.inverted.violet.buttons .active.button{background-color:#8a73ff}.ui.inverted.violet.button:active,.ui.inverted.violet.buttons .button:active{background-color:#7860f9}.ui.inverted.violet.basic.button,.ui.inverted.violet.basic.buttons .button,.ui.inverted.violet.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.violet.basic.button:hover,.ui.inverted.violet.basic.buttons .button:hover,.ui.inverted.violet.buttons .basic.button:hover{box-shadow:0 0 0 2px #8a73ff inset!important;color:#a291fb!important}.ui.inverted.violet.basic.button:focus,.ui.inverted.violet.basic.buttons .button:focus{box-shadow:0 0 0 2px #7d64ff inset!important;color:#a291fb!important}.ui.inverted.violet.basic.active.button,.ui.inverted.violet.basic.buttons .active.button,.ui.inverted.violet.buttons .basic.active.button{box-shadow:0 0 0 2px #8a73ff inset!important;color:#a291fb!important}.ui.inverted.violet.basic.button:active,.ui.inverted.violet.basic.buttons .button:active,.ui.inverted.violet.buttons .basic.button:active{box-shadow:0 0 0 2px #7860f9 inset!important;color:#a291fb!important}.ui.purple.button,.ui.purple.buttons .button{background-color:#a333c8;color:#fff;text-shadow:none;background-image:none}.ui.purple.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.purple.button:hover,.ui.purple.buttons .button:hover{background-color:#9627ba;color:#fff;text-shadow:none}.ui.purple.button:focus,.ui.purple.buttons .button:focus{background-color:#8f1eb4;color:#fff;text-shadow:none}.ui.purple.button:active,.ui.purple.buttons .button:active{background-color:#82299f;color:#fff;text-shadow:none}.ui.purple.active.button,.ui.purple.button .active.button:active,.ui.purple.buttons .active.button,.ui.purple.buttons .active.button:active{background-color:#9724be;color:#fff;text-shadow:none}.ui.basic.purple.button,.ui.basic.purple.buttons .button{box-shadow:0 0 0 1px rgba(34,36,38,.15) inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.purple.button:hover,.ui.basic.purple.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #9627ba inset!important;color:#9627ba!important}.ui.basic.purple.button:focus,.ui.basic.purple.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 2px #8f1eb4 inset!important}.ui.basic.purple.active.button,.ui.basic.purple.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #9724be inset!important;color:#82299f!important}.ui.basic.purple.button:active,.ui.basic.purple.buttons .button:active{box-shadow:0 0 0 2px #82299f inset!important;color:#82299f!important}.ui.buttons>.basic.purple.button:not(:first-child){margin-left:-2px}.ui.inverted.purple.button,.ui.inverted.purple.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #dc73ff inset!important;color:#dc73ff}.ui.inverted.purple.button.active,.ui.inverted.purple.button:active,.ui.inverted.purple.button:focus,.ui.inverted.purple.button:hover,.ui.inverted.purple.buttons .button.active,.ui.inverted.purple.buttons .button:active,.ui.inverted.purple.buttons .button:focus,.ui.inverted.purple.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.purple.button:hover,.ui.inverted.purple.buttons .button:hover{background-color:#d65aff}.ui.inverted.purple.button:focus,.ui.inverted.purple.buttons .button:focus{background-color:#d24aff}.ui.inverted.purple.active.button,.ui.inverted.purple.buttons .active.button{background-color:#d65aff}.ui.inverted.purple.button:active,.ui.inverted.purple.buttons .button:active{background-color:#cf40ff}.ui.inverted.purple.basic.button,.ui.inverted.purple.basic.buttons .button,.ui.inverted.purple.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.purple.basic.button:hover,.ui.inverted.purple.basic.buttons .button:hover,.ui.inverted.purple.buttons .basic.button:hover{box-shadow:0 0 0 2px #d65aff inset!important;color:#dc73ff!important}.ui.inverted.purple.basic.button:focus,.ui.inverted.purple.basic.buttons .button:focus{box-shadow:0 0 0 2px #d24aff inset!important;color:#dc73ff!important}.ui.inverted.purple.basic.active.button,.ui.inverted.purple.basic.buttons .active.button,.ui.inverted.purple.buttons .basic.active.button{box-shadow:0 0 0 2px #d65aff inset!important;color:#dc73ff!important}.ui.inverted.purple.basic.button:active,.ui.inverted.purple.basic.buttons .button:active,.ui.inverted.purple.buttons .basic.button:active{box-shadow:0 0 0 2px #cf40ff inset!important;color:#dc73ff!important}.ui.red.button,.ui.red.buttons .button{background-color:#db2828;color:#fff;text-shadow:none;background-image:none}.ui.red.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.red.button:hover,.ui.red.buttons .button:hover{background-color:#d01919;color:#fff;text-shadow:none}.ui.red.button:focus,.ui.red.buttons .button:focus{background-color:#ca1010;color:#fff;text-shadow:none}.ui.red.button:active,.ui.red.buttons .button:active{background-color:#b21e1e;color:#fff;text-shadow:none}.ui.red.active.button,.ui.red.button .active.button:active,.ui.red.buttons .active.button,.ui.red.buttons .active.button:active{background-color:#d41515;color:#fff;text-shadow:none}.ui.basic.red.button,.ui.basic.red.buttons .button{box-shadow:0 0 0 1px rgba(34,36,38,.15) inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.red.button:hover,.ui.basic.red.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #d01919 inset!important;color:#d01919!important}.ui.basic.red.button:focus,.ui.basic.red.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 2px #ca1010 inset!important}.ui.basic.red.active.button,.ui.basic.red.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #d41515 inset!important;color:#b21e1e!important}.ui.basic.red.button:active,.ui.basic.red.buttons .button:active{box-shadow:0 0 0 2px #b21e1e inset!important;color:#b21e1e!important}.ui.buttons>.basic.red.button:not(:first-child){margin-left:-2px}.ui.inverted.red.button,.ui.inverted.red.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ff695e inset!important;color:#ff695e}.ui.inverted.red.button.active,.ui.inverted.red.button:active,.ui.inverted.red.button:focus,.ui.inverted.red.button:hover,.ui.inverted.red.buttons .button.active,.ui.inverted.red.buttons .button:active,.ui.inverted.red.buttons .button:focus,.ui.inverted.red.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.red.button:hover,.ui.inverted.red.buttons .button:hover{background-color:#ff5144}.ui.inverted.red.button:focus,.ui.inverted.red.buttons .button:focus{background-color:#ff4335}.ui.inverted.red.active.button,.ui.inverted.red.buttons .active.button{background-color:#ff5144}.ui.inverted.red.button:active,.ui.inverted.red.buttons .button:active{background-color:#ff392b}.ui.inverted.red.basic.button,.ui.inverted.red.basic.buttons .button,.ui.inverted.red.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.red.basic.button:hover,.ui.inverted.red.basic.buttons .button:hover,.ui.inverted.red.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff5144 inset!important;color:#ff695e!important}.ui.inverted.red.basic.button:focus,.ui.inverted.red.basic.buttons .button:focus{box-shadow:0 0 0 2px #ff4335 inset!important;color:#ff695e!important}.ui.inverted.red.basic.active.button,.ui.inverted.red.basic.buttons .active.button,.ui.inverted.red.buttons .basic.active.button{box-shadow:0 0 0 2px #ff5144 inset!important;color:#ff695e!important}.ui.inverted.red.basic.button:active,.ui.inverted.red.basic.buttons .button:active,.ui.inverted.red.buttons .basic.button:active{box-shadow:0 0 0 2px #ff392b inset!important;color:#ff695e!important}.ui.teal.button,.ui.teal.buttons .button{background-color:#00b5ad;color:#fff;text-shadow:none;background-image:none}.ui.teal.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.teal.button:hover,.ui.teal.buttons .button:hover{background-color:#009c95;color:#fff;text-shadow:none}.ui.teal.button:focus,.ui.teal.buttons .button:focus{background-color:#008c86;color:#fff;text-shadow:none}.ui.teal.button:active,.ui.teal.buttons .button:active{background-color:#00827c;color:#fff;text-shadow:none}.ui.teal.active.button,.ui.teal.button .active.button:active,.ui.teal.buttons .active.button,.ui.teal.buttons .active.button:active{background-color:#009c95;color:#fff;text-shadow:none}.ui.basic.teal.button,.ui.basic.teal.buttons .button{box-shadow:0 0 0 1px rgba(34,36,38,.15) inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.teal.button:hover,.ui.basic.teal.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #009c95 inset!important;color:#009c95!important}.ui.basic.teal.button:focus,.ui.basic.teal.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 2px #008c86 inset!important}.ui.basic.teal.active.button,.ui.basic.teal.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #009c95 inset!important;color:#00827c!important}.ui.basic.teal.button:active,.ui.basic.teal.buttons .button:active{box-shadow:0 0 0 2px #00827c inset!important;color:#00827c!important}.ui.buttons>.basic.teal.button:not(:first-child){margin-left:-2px}.ui.inverted.teal.button,.ui.inverted.teal.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #6dffff inset!important;color:#6dffff}.ui.inverted.teal.button.active,.ui.inverted.teal.button:active,.ui.inverted.teal.button:focus,.ui.inverted.teal.button:hover,.ui.inverted.teal.buttons .button.active,.ui.inverted.teal.buttons .button:active,.ui.inverted.teal.buttons .button:focus,.ui.inverted.teal.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.teal.button:hover,.ui.inverted.teal.buttons .button:hover{background-color:#54ffff}.ui.inverted.teal.button:focus,.ui.inverted.teal.buttons .button:focus{background-color:#4ff}.ui.inverted.teal.active.button,.ui.inverted.teal.buttons .active.button{background-color:#54ffff}.ui.inverted.teal.button:active,.ui.inverted.teal.buttons .button:active{background-color:#3affff}.ui.inverted.teal.basic.button,.ui.inverted.teal.basic.buttons .button,.ui.inverted.teal.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.teal.basic.button:hover,.ui.inverted.teal.basic.buttons .button:hover,.ui.inverted.teal.buttons .basic.button:hover{box-shadow:0 0 0 2px #54ffff inset!important;color:#6dffff!important}.ui.inverted.teal.basic.button:focus,.ui.inverted.teal.basic.buttons .button:focus{box-shadow:0 0 0 2px #4ff inset!important;color:#6dffff!important}.ui.inverted.teal.basic.active.button,.ui.inverted.teal.basic.buttons .active.button,.ui.inverted.teal.buttons .basic.active.button{box-shadow:0 0 0 2px #54ffff inset!important;color:#6dffff!important}.ui.inverted.teal.basic.button:active,.ui.inverted.teal.basic.buttons .button:active,.ui.inverted.teal.buttons .basic.button:active{box-shadow:0 0 0 2px #3affff inset!important;color:#6dffff!important}.ui.olive.button,.ui.olive.buttons .button{background-color:#b5cc18;color:#fff;text-shadow:none;background-image:none}.ui.olive.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.olive.button:hover,.ui.olive.buttons .button:hover{background-color:#a7bd0d;color:#fff;text-shadow:none}.ui.olive.button:focus,.ui.olive.buttons .button:focus{background-color:#a0b605;color:#fff;text-shadow:none}.ui.olive.button:active,.ui.olive.buttons .button:active{background-color:#8d9e13;color:#fff;text-shadow:none}.ui.olive.active.button,.ui.olive.button .active.button:active,.ui.olive.buttons .active.button,.ui.olive.buttons .active.button:active{background-color:#aac109;color:#fff;text-shadow:none}.ui.basic.olive.button,.ui.basic.olive.buttons .button{box-shadow:0 0 0 1px rgba(34,36,38,.15) inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.olive.button:hover,.ui.basic.olive.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #a7bd0d inset!important;color:#a7bd0d!important}.ui.basic.olive.button:focus,.ui.basic.olive.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 2px #a0b605 inset!important}.ui.basic.olive.active.button,.ui.basic.olive.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #aac109 inset!important;color:#8d9e13!important}.ui.basic.olive.button:active,.ui.basic.olive.buttons .button:active{box-shadow:0 0 0 2px #8d9e13 inset!important;color:#8d9e13!important}.ui.buttons>.basic.olive.button:not(:first-child){margin-left:-2px}.ui.inverted.olive.button,.ui.inverted.olive.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #d9e778 inset!important;color:#d9e778}.ui.inverted.olive.button.active,.ui.inverted.olive.button:active,.ui.inverted.olive.button:focus,.ui.inverted.olive.button:hover,.ui.inverted.olive.buttons .button.active,.ui.inverted.olive.buttons .button:active,.ui.inverted.olive.buttons .button:focus,.ui.inverted.olive.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.olive.button:hover,.ui.inverted.olive.buttons .button:hover{background-color:#d8ea5c}.ui.inverted.olive.button:focus,.ui.inverted.olive.buttons .button:focus{background-color:#daef47}.ui.inverted.olive.active.button,.ui.inverted.olive.buttons .active.button{background-color:#daed59}.ui.inverted.olive.button:active,.ui.inverted.olive.buttons .button:active{background-color:#cddf4d}.ui.inverted.olive.basic.button,.ui.inverted.olive.basic.buttons .button,.ui.inverted.olive.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.olive.basic.button:hover,.ui.inverted.olive.basic.buttons .button:hover,.ui.inverted.olive.buttons .basic.button:hover{box-shadow:0 0 0 2px #d8ea5c inset!important;color:#d9e778!important}.ui.inverted.olive.basic.button:focus,.ui.inverted.olive.basic.buttons .button:focus{box-shadow:0 0 0 2px #daef47 inset!important;color:#d9e778!important}.ui.inverted.olive.basic.active.button,.ui.inverted.olive.basic.buttons .active.button,.ui.inverted.olive.buttons .basic.active.button{box-shadow:0 0 0 2px #daed59 inset!important;color:#d9e778!important}.ui.inverted.olive.basic.button:active,.ui.inverted.olive.basic.buttons .button:active,.ui.inverted.olive.buttons .basic.button:active{box-shadow:0 0 0 2px #cddf4d inset!important;color:#d9e778!important}.ui.yellow.button,.ui.yellow.buttons .button{background-color:#fbbd08;color:#fff;text-shadow:none;background-image:none}.ui.yellow.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.yellow.button:hover,.ui.yellow.buttons .button:hover{background-color:#eaae00;color:#fff;text-shadow:none}.ui.yellow.button:focus,.ui.yellow.buttons .button:focus{background-color:#daa300;color:#fff;text-shadow:none}.ui.yellow.button:active,.ui.yellow.buttons .button:active{background-color:#cd9903;color:#fff;text-shadow:none}.ui.yellow.active.button,.ui.yellow.button .active.button:active,.ui.yellow.buttons .active.button,.ui.yellow.buttons .active.button:active{background-color:#eaae00;color:#fff;text-shadow:none}.ui.basic.yellow.button,.ui.basic.yellow.buttons .button{box-shadow:0 0 0 1px rgba(34,36,38,.15) inset!important;color:rgba(0,0,0,.6)!important}.ui.basic.yellow.button:hover,.ui.basic.yellow.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 2px #eaae00 inset!important;color:#eaae00!important}.ui.basic.yellow.button:focus,.ui.basic.yellow.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 2px #daa300 inset!important}.ui.basic.yellow.active.button,.ui.basic.yellow.buttons .active.button{background:0 0!important;box-shadow:0 0 0 2px #eaae00 inset!important;color:#cd9903!important}.ui.basic.yellow.button:active,.ui.basic.yellow.buttons .button:active{box-shadow:0 0 0 2px #cd9903 inset!important;color:#cd9903!important}.ui.buttons>.basic.yellow.button:not(:first-child){margin-left:-2px}.ui.inverted.yellow.button,.ui.inverted.yellow.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ffe21f inset!important;color:#ffe21f}.ui.inverted.yellow.button.active,.ui.inverted.yellow.button:active,.ui.inverted.yellow.button:focus,.ui.inverted.yellow.button:hover,.ui.inverted.yellow.buttons .button.active,.ui.inverted.yellow.buttons .button:active,.ui.inverted.yellow.buttons .button:focus,.ui.inverted.yellow.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.yellow.button:hover,.ui.inverted.yellow.buttons .button:hover{background-color:#ffdf05}.ui.inverted.yellow.button:focus,.ui.inverted.yellow.buttons .button:focus{background-color:#f5d500}.ui.inverted.yellow.active.button,.ui.inverted.yellow.buttons .active.button{background-color:#ffdf05}.ui.inverted.yellow.button:active,.ui.inverted.yellow.buttons .button:active{background-color:#ebcd00}.ui.inverted.yellow.basic.button,.ui.inverted.yellow.basic.buttons .button,.ui.inverted.yellow.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#fff!important}.ui.inverted.yellow.basic.button:hover,.ui.inverted.yellow.basic.buttons .button:hover,.ui.inverted.yellow.buttons .basic.button:hover{box-shadow:0 0 0 2px #ffdf05 inset!important;color:#ffe21f!important}.ui.inverted.yellow.basic.button:focus,.ui.inverted.yellow.basic.buttons .button:focus{box-shadow:0 0 0 2px #f5d500 inset!important;color:#ffe21f!important}.ui.inverted.yellow.basic.active.button,.ui.inverted.yellow.basic.buttons .active.button,.ui.inverted.yellow.buttons .basic.active.button{box-shadow:0 0 0 2px #ffdf05 inset!important;color:#ffe21f!important}.ui.inverted.yellow.basic.button:active,.ui.inverted.yellow.basic.buttons .button:active,.ui.inverted.yellow.buttons .basic.button:active{box-shadow:0 0 0 2px #ebcd00 inset!important;color:#ffe21f!important}.ui.primary.button,.ui.primary.buttons .button{background-color:#2185d0;color:#fff;text-shadow:none;background-image:none}.ui.primary.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.primary.button:hover,.ui.primary.buttons .button:hover{background-color:#1678c2;color:#fff;text-shadow:none}.ui.primary.button:focus,.ui.primary.buttons .button:focus{background-color:#0d71bb;color:#fff;text-shadow:none}.ui.primary.button:active,.ui.primary.buttons .button:active{background-color:#1a69a4;color:#fff;text-shadow:none}.ui.primary.active.button,.ui.primary.buttons .active.button{background-color:#1279c6;color:#fff;text-shadow:none}.ui.secondary.button,.ui.secondary.buttons .button{background-color:#1b1c1d;color:#fff;text-shadow:none;background-image:none}.ui.secondary.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.secondary.button:hover,.ui.secondary.buttons .button:hover{background-color:#27292a;color:#fff;text-shadow:none}.ui.secondary.button:focus,.ui.secondary.buttons .button:focus{background-color:#2e3032;color:#fff;text-shadow:none}.ui.secondary.button:active,.ui.secondary.buttons .button:active{background-color:#343637;color:#fff;text-shadow:none}.ui.secondary.active.button,.ui.secondary.buttons .active.button{background-color:#27292a;color:#fff;text-shadow:none}.ui.positive.button,.ui.positive.buttons .button{background-color:#21ba45!important;color:#fff;text-shadow:none;background-image:none}.ui.positive.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.positive.button:hover,.ui.positive.buttons .button:hover{background-color:#16ab39!important;color:#fff;text-shadow:none}.ui.positive.button:focus,.ui.positive.buttons .button:focus{background-color:#0ea432!important;color:#fff;text-shadow:none}.ui.positive.button:active,.ui.positive.buttons .button:active{background-color:#198f35!important;color:#fff;text-shadow:none}.ui.positive.active.button,.ui.positive.buttons .active.button,.ui.positive.buttons .active.button:active{background-color:#13ae38;color:#fff;text-shadow:none}.ui.negative.button,.ui.negative.buttons .button{background-color:#db2828!important;color:#fff;text-shadow:none;background-image:none}.ui.negative.button{box-shadow:0 0 0 0 rgba(34,36,38,.15) inset}.ui.negative.button:hover,.ui.negative.buttons .button:hover{background-color:#d01919!important;color:#fff;text-shadow:none}.ui.negative.button:focus,.ui.negative.buttons .button:focus{background-color:#ca1010!important;color:#fff;text-shadow:none}.ui.negative.button:active,.ui.negative.buttons .button:active{background-color:#b21e1e!important;color:#fff;text-shadow:none}.ui.negative.active.button,.ui.negative.buttons .active.button,.ui.negative.buttons .active.button:active{background-color:#d41515;color:#fff;text-shadow:none}.ui.buttons{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;font-size:0;vertical-align:baseline;margin:0 .25em 0 0}.ui.buttons:not(.basic):not(.inverted){box-shadow:none}.ui.buttons:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui.buttons .button{-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;border-radius:0;margin:0}.ui.buttons:not(.basic):not(.inverted)>.button,.ui.buttons>.ui.button:not(.basic):not(.inverted){box-shadow:0 0 0 1px transparent inset,0 0 0 0 rgba(34,36,38,.15) inset}.ui.buttons .button:first-child{border-left:none;margin-left:0;border-top-left-radius:.28571429rem;border-bottom-left-radius:.28571429rem}.ui.buttons .button:last-child{border-top-right-radius:.28571429rem;border-bottom-right-radius:.28571429rem}.ui.vertical.buttons{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.vertical.buttons .button{display:block;float:none;width:100%;margin:0;box-shadow:none}.ui.vertical.buttons .button:first-child,.ui.vertical.buttons .huge.button:first-child,.ui.vertical.buttons .massive.button:first-child,.ui.vertical.buttons .mini.button:first-child,.ui.vertical.buttons .small.button:first-child,.ui.vertical.buttons .tiny.button:first-child{border-radius:.28571429rem .28571429rem 0 0}.ui.vertical.buttons .button:last-child,.ui.vertical.buttons .gigantic.button:last-child,.ui.vertical.buttons .huge.button:last-child,.ui.vertical.buttons .massive.button:last-child,.ui.vertical.buttons .mini.button:last-child,.ui.vertical.buttons .small.button:last-child,.ui.vertical.buttons .tiny.button:last-child{margin-bottom:0;border-radius:0 0 .28571429rem .28571429rem}.ui.container{display:block;max-width:100%!important}@media only screen and (max-width:767px){.ui.container{width:auto;margin-left:1em!important;margin-right:1em!important}.ui.grid.container{width:auto!important}}@media only screen and (min-width:768px) and (max-width:991px){.ui.container{width:723px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{width:calc(723px + 2em)!important}}@media only screen and (min-width:992px) and (max-width:1199px){.ui.container{width:933px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{width:calc(933px + 2em)!important}}@media only screen and (min-width:1200px){.ui.container{width:1127px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{width:calc(1127px + 2em)!important}}.ui.text.container{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;max-width:700px!important;line-height:1.5;font-size:1.14285714rem}.ui.fluid.container{width:100%}.ui[class*="left aligned"].container{text-align:left}.ui[class*="center aligned"].container{text-align:center}.ui[class*="right aligned"].container{text-align:right}.ui.justified.container{text-align:justify;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.ui.divider{margin:1rem 0;line-height:1;height:0;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:rgba(0,0,0,.85);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;font-size:1rem}.ui.divider:not(.vertical):not(.horizontal){border-top:1px solid rgba(34,36,38,.15);border-bottom:1px solid rgba(255,255,255,.1)}.ui.grid>.ui.divider{font-size:1rem}.ui.horizontal.divider{display:table;white-space:nowrap;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center}.ui.horizontal.divider:after,.ui.horizontal.divider:before{content:'';display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC)}.ui.horizontal.divider:before{background-position:right 1em top 50%}.ui.horizontal.divider:after{background-position:left 1em top 50%}.ui.vertical.divider{position:absolute;z-index:2;top:50%;left:50%;margin:0;padding:0;width:auto;height:50%;line-height:0;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.ui.vertical.divider:after,.ui.vertical.divider:before{position:absolute;left:50%;content:'';z-index:3;border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(255,255,255,.1);width:0;height:calc(100% - 1rem)}.ui.vertical.divider:before{top:-100%}.ui.vertical.divider:after{top:auto;bottom:0}@media only screen and (max-width:767px){.ui.grid .stackable.row .ui.vertical.divider,.ui.stackable.grid .ui.vertical.divider{display:table;white-space:nowrap;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center;position:static;top:0;left:0;-webkit-transform:none;-ms-transform:none;transform:none}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:before{left:0;border-left:none;border-right:none;content:'';display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat}.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:before{background-position:right 1em top 50%}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:after{background-position:left 1em top 50%}}.ui.divider>.icon{margin:0;font-size:1rem;height:1em;vertical-align:middle}.ui.hidden.divider{border-color:transparent!important}.ui.hidden.divider:after,.ui.hidden.divider:before{display:none}.ui.divider.inverted,.ui.horizontal.inverted.divider,.ui.vertical.inverted.divider{color:#fff}.ui.divider.inverted,.ui.divider.inverted:after,.ui.divider.inverted:before{border-top-color:rgba(34,36,38,.15)!important;border-left-color:rgba(34,36,38,.15)!important;border-bottom-color:rgba(255,255,255,.15)!important;border-right-color:rgba(255,255,255,.15)!important}.ui.fitted.divider{margin:0}.ui.clearing.divider{clear:both}.ui.section.divider{margin-top:2rem;margin-bottom:2rem}@media only screen and (max-width:767px){.ui.grid .stackable.row .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC)}}i.flag:not(.icon){display:inline-block;width:16px;height:11px;line-height:11px;vertical-align:baseline;margin:0 .5em 0 0;text-decoration:inherit;speak:none;font-smoothing:antialiased;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag:not(.icon):before{display:inline-block;content:'';background:url(themes/default/assets/images/flags.png) no-repeat;width:16px;height:11px}i.flag.ad:before,i.flag.andorra:before{background-position:0 0}i.flag.ae:before,i.flag.uae:before,i.flag.united.arab.emirates:before{background-position:0 -26px}i.flag.af:before,i.flag.afghanistan:before{background-position:0 -52px}i.flag.ag:before,i.flag.antigua:before{background-position:0 -78px}i.flag.ai:before,i.flag.anguilla:before{background-position:0 -104px}i.flag.al:before,i.flag.albania:before{background-position:0 -130px}i.flag.am:before,i.flag.armenia:before{background-position:0 -156px}i.flag.an:before,i.flag.netherlands.antilles:before{background-position:0 -182px}i.flag.angola:before,i.flag.ao:before{background-position:0 -208px}i.flag.ar:before,i.flag.argentina:before{background-position:0 -234px}i.flag.american.samoa:before,i.flag.as:before{background-position:0 -260px}i.flag.at:before,i.flag.austria:before{background-position:0 -286px}i.flag.au:before,i.flag.australia:before{background-position:0 -312px}i.flag.aruba:before,i.flag.aw:before{background-position:0 -338px}i.flag.aland.islands:before,i.flag.ax:before{background-position:0 -364px}i.flag.az:before,i.flag.azerbaijan:before{background-position:0 -390px}i.flag.ba:before,i.flag.bosnia:before{background-position:0 -416px}i.flag.barbados:before,i.flag.bb:before{background-position:0 -442px}i.flag.bangladesh:before,i.flag.bd:before{background-position:0 -468px}i.flag.be:before,i.flag.belgium:before{background-position:0 -494px}i.flag.bf:before,i.flag.burkina.faso:before{background-position:0 -520px}i.flag.bg:before,i.flag.bulgaria:before{background-position:0 -546px}i.flag.bahrain:before,i.flag.bh:before{background-position:0 -572px}i.flag.bi:before,i.flag.burundi:before{background-position:0 -598px}i.flag.benin:before,i.flag.bj:before{background-position:0 -624px}i.flag.bermuda:before,i.flag.bm:before{background-position:0 -650px}i.flag.bn:before,i.flag.brunei:before{background-position:0 -676px}i.flag.bo:before,i.flag.bolivia:before{background-position:0 -702px}i.flag.br:before,i.flag.brazil:before{background-position:0 -728px}i.flag.bahamas:before,i.flag.bs:before{background-position:0 -754px}i.flag.bhutan:before,i.flag.bt:before{background-position:0 -780px}i.flag.bouvet.island:before,i.flag.bv:before{background-position:0 -806px}i.flag.botswana:before,i.flag.bw:before{background-position:0 -832px}i.flag.belarus:before,i.flag.by:before{background-position:0 -858px}i.flag.belize:before,i.flag.bz:before{background-position:0 -884px}i.flag.ca:before,i.flag.canada:before{background-position:0 -910px}i.flag.cc:before,i.flag.cocos.islands:before{background-position:0 -962px}i.flag.cd:before,i.flag.congo:before{background-position:0 -988px}i.flag.central.african.republic:before,i.flag.cf:before{background-position:0 -1014px}i.flag.cg:before,i.flag.congo.brazzaville:before{background-position:0 -1040px}i.flag.ch:before,i.flag.switzerland:before{background-position:0 -1066px}i.flag.ci:before,i.flag.cote.divoire:before{background-position:0 -1092px}i.flag.ck:before,i.flag.cook.islands:before{background-position:0 -1118px}i.flag.chile:before,i.flag.cl:before{background-position:0 -1144px}i.flag.cameroon:before,i.flag.cm:before{background-position:0 -1170px}i.flag.china:before,i.flag.cn:before{background-position:0 -1196px}i.flag.co:before,i.flag.colombia:before{background-position:0 -1222px}i.flag.costa.rica:before,i.flag.cr:before{background-position:0 -1248px}i.flag.cs:before,i.flag.serbia:before{background-position:0 -1274px}i.flag.cu:before,i.flag.cuba:before{background-position:0 -1300px}i.flag.cape.verde:before,i.flag.cv:before{background-position:0 -1326px}i.flag.christmas.island:before,i.flag.cx:before{background-position:0 -1352px}i.flag.cy:before,i.flag.cyprus:before{background-position:0 -1378px}i.flag.cz:before,i.flag.czech.republic:before{background-position:0 -1404px}i.flag.de:before,i.flag.germany:before{background-position:0 -1430px}i.flag.dj:before,i.flag.djibouti:before{background-position:0 -1456px}i.flag.denmark:before,i.flag.dk:before{background-position:0 -1482px}i.flag.dm:before,i.flag.dominica:before{background-position:0 -1508px}i.flag.do:before,i.flag.dominican.republic:before{background-position:0 -1534px}i.flag.algeria:before,i.flag.dz:before{background-position:0 -1560px}i.flag.ec:before,i.flag.ecuador:before{background-position:0 -1586px}i.flag.ee:before,i.flag.estonia:before{background-position:0 -1612px}i.flag.eg:before,i.flag.egypt:before{background-position:0 -1638px}i.flag.eh:before,i.flag.western.sahara:before{background-position:0 -1664px}i.flag.er:before,i.flag.eritrea:before{background-position:0 -1716px}i.flag.es:before,i.flag.spain:before{background-position:0 -1742px}i.flag.et:before,i.flag.ethiopia:before{background-position:0 -1768px}i.flag.eu:before,i.flag.european.union:before{background-position:0 -1794px}i.flag.fi:before,i.flag.finland:before{background-position:0 -1846px}i.flag.fiji:before,i.flag.fj:before{background-position:0 -1872px}i.flag.falkland.islands:before,i.flag.fk:before{background-position:0 -1898px}i.flag.fm:before,i.flag.micronesia:before{background-position:0 -1924px}i.flag.faroe.islands:before,i.flag.fo:before{background-position:0 -1950px}i.flag.fr:before,i.flag.france:before{background-position:0 -1976px}i.flag.ga:before,i.flag.gabon:before{background-position:-36px 0}i.flag.gb:before,i.flag.united.kingdom:before{background-position:-36px -26px}i.flag.gd:before,i.flag.grenada:before{background-position:-36px -52px}i.flag.ge:before,i.flag.georgia:before{background-position:-36px -78px}i.flag.french.guiana:before,i.flag.gf:before{background-position:-36px -104px}i.flag.gh:before,i.flag.ghana:before{background-position:-36px -130px}i.flag.gi:before,i.flag.gibraltar:before{background-position:-36px -156px}i.flag.gl:before,i.flag.greenland:before{background-position:-36px -182px}i.flag.gambia:before,i.flag.gm:before{background-position:-36px -208px}i.flag.gn:before,i.flag.guinea:before{background-position:-36px -234px}i.flag.gp:before,i.flag.guadeloupe:before{background-position:-36px -260px}i.flag.equatorial.guinea:before,i.flag.gq:before{background-position:-36px -286px}i.flag.gr:before,i.flag.greece:before{background-position:-36px -312px}i.flag.gs:before,i.flag.sandwich.islands:before{background-position:-36px -338px}i.flag.gt:before,i.flag.guatemala:before{background-position:-36px -364px}i.flag.gu:before,i.flag.guam:before{background-position:-36px -390px}i.flag.guinea-bissau:before,i.flag.gw:before{background-position:-36px -416px}i.flag.guyana:before,i.flag.gy:before{background-position:-36px -442px}i.flag.hk:before,i.flag.hong.kong:before{background-position:-36px -468px}i.flag.heard.island:before,i.flag.hm:before{background-position:-36px -494px}i.flag.hn:before,i.flag.honduras:before{background-position:-36px -520px}i.flag.croatia:before,i.flag.hr:before{background-position:-36px -546px}i.flag.haiti:before,i.flag.ht:before{background-position:-36px -572px}i.flag.hu:before,i.flag.hungary:before{background-position:-36px -598px}i.flag.id:before,i.flag.indonesia:before{background-position:-36px -624px}i.flag.ie:before,i.flag.ireland:before{background-position:-36px -650px}i.flag.il:before,i.flag.israel:before{background-position:-36px -676px}i.flag.in:before,i.flag.india:before{background-position:-36px -702px}i.flag.indian.ocean.territory:before,i.flag.io:before{background-position:-36px -728px}i.flag.iq:before,i.flag.iraq:before{background-position:-36px -754px}i.flag.ir:before,i.flag.iran:before{background-position:-36px -780px}i.flag.iceland:before,i.flag.is:before{background-position:-36px -806px}i.flag.it:before,i.flag.italy:before{background-position:-36px -832px}i.flag.jamaica:before,i.flag.jm:before{background-position:-36px -858px}i.flag.jo:before,i.flag.jordan:before{background-position:-36px -884px}i.flag.japan:before,i.flag.jp:before{background-position:-36px -910px}i.flag.ke:before,i.flag.kenya:before{background-position:-36px -936px}i.flag.kg:before,i.flag.kyrgyzstan:before{background-position:-36px -962px}i.flag.cambodia:before,i.flag.kh:before{background-position:-36px -988px}i.flag.ki:before,i.flag.kiribati:before{background-position:-36px -1014px}i.flag.comoros:before,i.flag.km:before{background-position:-36px -1040px}i.flag.kn:before,i.flag.saint.kitts.and.nevis:before{background-position:-36px -1066px}i.flag.kp:before,i.flag.north.korea:before{background-position:-36px -1092px}i.flag.kr:before,i.flag.south.korea:before{background-position:-36px -1118px}i.flag.kuwait:before,i.flag.kw:before{background-position:-36px -1144px}i.flag.cayman.islands:before,i.flag.ky:before{background-position:-36px -1170px}i.flag.kazakhstan:before,i.flag.kz:before{background-position:-36px -1196px}i.flag.la:before,i.flag.laos:before{background-position:-36px -1222px}i.flag.lb:before,i.flag.lebanon:before{background-position:-36px -1248px}i.flag.lc:before,i.flag.saint.lucia:before{background-position:-36px -1274px}i.flag.li:before,i.flag.liechtenstein:before{background-position:-36px -1300px}i.flag.lk:before,i.flag.sri.lanka:before{background-position:-36px -1326px}i.flag.liberia:before,i.flag.lr:before{background-position:-36px -1352px}i.flag.lesotho:before,i.flag.ls:before{background-position:-36px -1378px}i.flag.lithuania:before,i.flag.lt:before{background-position:-36px -1404px}i.flag.lu:before,i.flag.luxembourg:before{background-position:-36px -1430px}i.flag.latvia:before,i.flag.lv:before{background-position:-36px -1456px}i.flag.libya:before,i.flag.ly:before{background-position:-36px -1482px}i.flag.ma:before,i.flag.morocco:before{background-position:-36px -1508px}i.flag.mc:before,i.flag.monaco:before{background-position:-36px -1534px}i.flag.md:before,i.flag.moldova:before{background-position:-36px -1560px}i.flag.me:before,i.flag.montenegro:before{background-position:-36px -1586px}i.flag.madagascar:before,i.flag.mg:before{background-position:-36px -1613px}i.flag.marshall.islands:before,i.flag.mh:before{background-position:-36px -1639px}i.flag.macedonia:before,i.flag.mk:before{background-position:-36px -1665px}i.flag.mali:before,i.flag.ml:before{background-position:-36px -1691px}i.flag.burma:before,i.flag.mm:before,i.flag.myanmar:before{background-position:-36px -1717px}i.flag.mn:before,i.flag.mongolia:before{background-position:-36px -1743px}i.flag.macau:before,i.flag.mo:before{background-position:-36px -1769px}i.flag.mp:before,i.flag.northern.mariana.islands:before{background-position:-36px -1795px}i.flag.martinique:before,i.flag.mq:before{background-position:-36px -1821px}i.flag.mauritania:before,i.flag.mr:before{background-position:-36px -1847px}i.flag.montserrat:before,i.flag.ms:before{background-position:-36px -1873px}i.flag.malta:before,i.flag.mt:before{background-position:-36px -1899px}i.flag.mauritius:before,i.flag.mu:before{background-position:-36px -1925px}i.flag.maldives:before,i.flag.mv:before{background-position:-36px -1951px}i.flag.malawi:before,i.flag.mw:before{background-position:-36px -1977px}i.flag.mexico:before,i.flag.mx:before{background-position:-72px 0}i.flag.malaysia:before,i.flag.my:before{background-position:-72px -26px}i.flag.mozambique:before,i.flag.mz:before{background-position:-72px -52px}i.flag.na:before,i.flag.namibia:before{background-position:-72px -78px}i.flag.nc:before,i.flag.new.caledonia:before{background-position:-72px -104px}i.flag.ne:before,i.flag.niger:before{background-position:-72px -130px}i.flag.nf:before,i.flag.norfolk.island:before{background-position:-72px -156px}i.flag.ng:before,i.flag.nigeria:before{background-position:-72px -182px}i.flag.ni:before,i.flag.nicaragua:before{background-position:-72px -208px}i.flag.netherlands:before,i.flag.nl:before{background-position:-72px -234px}i.flag.no:before,i.flag.norway:before{background-position:-72px -260px}i.flag.nepal:before,i.flag.np:before{background-position:-72px -286px}i.flag.nauru:before,i.flag.nr:before{background-position:-72px -312px}i.flag.niue:before,i.flag.nu:before{background-position:-72px -338px}i.flag.new.zealand:before,i.flag.nz:before{background-position:-72px -364px}i.flag.om:before,i.flag.oman:before{background-position:-72px -390px}i.flag.pa:before,i.flag.panama:before{background-position:-72px -416px}i.flag.pe:before,i.flag.peru:before{background-position:-72px -442px}i.flag.french.polynesia:before,i.flag.pf:before{background-position:-72px -468px}i.flag.new.guinea:before,i.flag.pg:before{background-position:-72px -494px}i.flag.ph:before,i.flag.philippines:before{background-position:-72px -520px}i.flag.pakistan:before,i.flag.pk:before{background-position:-72px -546px}i.flag.pl:before,i.flag.poland:before{background-position:-72px -572px}i.flag.pm:before,i.flag.saint.pierre:before{background-position:-72px -598px}i.flag.pitcairn.islands:before,i.flag.pn:before{background-position:-72px -624px}i.flag.pr:before,i.flag.puerto.rico:before{background-position:-72px -650px}i.flag.palestine:before,i.flag.ps:before{background-position:-72px -676px}i.flag.portugal:before,i.flag.pt:before{background-position:-72px -702px}i.flag.palau:before,i.flag.pw:before{background-position:-72px -728px}i.flag.paraguay:before,i.flag.py:before{background-position:-72px -754px}i.flag.qa:before,i.flag.qatar:before{background-position:-72px -780px}i.flag.re:before,i.flag.reunion:before{background-position:-72px -806px}i.flag.ro:before,i.flag.romania:before{background-position:-72px -832px}i.flag.rs:before,i.flag.serbia:before{background-position:-72px -858px}i.flag.ru:before,i.flag.russia:before{background-position:-72px -884px}i.flag.rw:before,i.flag.rwanda:before{background-position:-72px -910px}i.flag.sa:before,i.flag.saudi.arabia:before{background-position:-72px -936px}i.flag.sb:before,i.flag.solomon.islands:before{background-position:-72px -962px}i.flag.sc:before,i.flag.seychelles:before{background-position:-72px -988px}i.flag.sd:before,i.flag.sudan:before{background-position:-72px -1040px}i.flag.se:before,i.flag.sweden:before{background-position:-72px -1066px}i.flag.sg:before,i.flag.singapore:before{background-position:-72px -1092px}i.flag.saint.helena:before,i.flag.sh:before{background-position:-72px -1118px}i.flag.si:before,i.flag.slovenia:before{background-position:-72px -1144px}i.flag.jan.mayen:before,i.flag.sj:before,i.flag.svalbard:before{background-position:-72px -1170px}i.flag.sk:before,i.flag.slovakia:before{background-position:-72px -1196px}i.flag.sierra.leone:before,i.flag.sl:before{background-position:-72px -1222px}i.flag.san.marino:before,i.flag.sm:before{background-position:-72px -1248px}i.flag.senegal:before,i.flag.sn:before{background-position:-72px -1274px}i.flag.so:before,i.flag.somalia:before{background-position:-72px -1300px}i.flag.sr:before,i.flag.suriname:before{background-position:-72px -1326px}i.flag.sao.tome:before,i.flag.st:before{background-position:-72px -1352px}i.flag.el.salvador:before,i.flag.sv:before{background-position:-72px -1378px}i.flag.sy:before,i.flag.syria:before{background-position:-72px -1404px}i.flag.swaziland:before,i.flag.sz:before{background-position:-72px -1430px}i.flag.caicos.islands:before,i.flag.tc:before{background-position:-72px -1456px}i.flag.chad:before,i.flag.td:before{background-position:-72px -1482px}i.flag.french.territories:before,i.flag.tf:before{background-position:-72px -1508px}i.flag.tg:before,i.flag.togo:before{background-position:-72px -1534px}i.flag.th:before,i.flag.thailand:before{background-position:-72px -1560px}i.flag.tajikistan:before,i.flag.tj:before{background-position:-72px -1586px}i.flag.tk:before,i.flag.tokelau:before{background-position:-72px -1612px}i.flag.timorleste:before,i.flag.tl:before{background-position:-72px -1638px}i.flag.tm:before,i.flag.turkmenistan:before{background-position:-72px -1664px}i.flag.tn:before,i.flag.tunisia:before{background-position:-72px -1690px}i.flag.to:before,i.flag.tonga:before{background-position:-72px -1716px}i.flag.tr:before,i.flag.turkey:before{background-position:-72px -1742px}i.flag.trinidad:before,i.flag.tt:before{background-position:-72px -1768px}i.flag.tuvalu:before,i.flag.tv:before{background-position:-72px -1794px}i.flag.taiwan:before,i.flag.tw:before{background-position:-72px -1820px}i.flag.tanzania:before,i.flag.tz:before{background-position:-72px -1846px}i.flag.ua:before,i.flag.ukraine:before{background-position:-72px -1872px}i.flag.ug:before,i.flag.uganda:before{background-position:-72px -1898px}i.flag.um:before,i.flag.us.minor.islands:before{background-position:-72px -1924px}i.flag.america:before,i.flag.united.states:before,i.flag.us:before{background-position:-72px -1950px}i.flag.uruguay:before,i.flag.uy:before{background-position:-72px -1976px}i.flag.uz:before,i.flag.uzbekistan:before{background-position:-108px 0}i.flag.va:before,i.flag.vatican.city:before{background-position:-108px -26px}i.flag.saint.vincent:before,i.flag.vc:before{background-position:-108px -52px}i.flag.ve:before,i.flag.venezuela:before{background-position:-108px -78px}i.flag.british.virgin.islands:before,i.flag.vg:before{background-position:-108px -104px}i.flag.us.virgin.islands:before,i.flag.vi:before{background-position:-108px -130px}i.flag.vietnam:before,i.flag.vn:before{background-position:-108px -156px}i.flag.vanuatu:before,i.flag.vu:before{background-position:-108px -182px}i.flag.wallis.and.futuna:before,i.flag.wf:before{background-position:-108px -234px}i.flag.samoa:before,i.flag.ws:before{background-position:-108px -260px}i.flag.ye:before,i.flag.yemen:before{background-position:-108px -286px}i.flag.mayotte:before,i.flag.yt:before{background-position:-108px -312px}i.flag.south.africa:before,i.flag.za:before{background-position:-108px -338px}i.flag.zambia:before,i.flag.zm:before{background-position:-108px -364px}i.flag.zimbabwe:before,i.flag.zw:before{background-position:-108px -390px}.ui.header{border:none;margin:calc(2rem - .14285em) 0 1rem;padding:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;line-height:1.2857em;text-transform:none;color:rgba(0,0,0,.87)}.ui.header:first-child{margin-top:-.14285em}.ui.header:last-child{margin-bottom:0}.ui.header .sub.header{font-weight:400;padding:0;margin:0;line-height:1.2em;color:rgba(0,0,0,.6)}.ui.header>.icon{display:table-cell;opacity:1;font-size:1.5em;padding-top:.14285em;vertical-align:middle}.ui.header .icon:only-child{display:inline-block;padding:0;margin-right:.75rem}.ui.header>.image,.ui.header>img{display:inline-block;margin-top:.14285em;width:2.5em;height:auto;vertical-align:middle}.ui.header>.image:only-child,.ui.header>img:only-child{margin-right:.75rem}.ui.header .content{display:inline-block;vertical-align:top}.ui.header>.image+.content,.ui.header>img+.content{padding-left:.75rem;vertical-align:middle}.ui.header>.icon+.content{padding-left:.75rem;display:table-cell;vertical-align:middle}.ui.header .ui.label{font-size:'';margin-left:.5rem;vertical-align:middle}.ui.header+p{margin-top:0}h1.ui.header{font-size:2rem}h2.ui.header{font-size:1.714rem}h3.ui.header{font-size:1.28rem}h4.ui.header{font-size:1.071rem}h5.ui.header{font-size:1rem}h1.ui.header .sub.header,h2.ui.header .sub.header{font-size:1.14285714rem}h3.ui.header .sub.header,h4.ui.header .sub.header{font-size:1rem}h5.ui.header .sub.header{font-size:.92857143rem}.ui.huge.header{min-height:1em;font-size:2em}.ui.large.header{font-size:1.714em}.ui.medium.header{font-size:1.28em}.ui.small.header{font-size:1.071em}.ui.tiny.header{font-size:1em}.ui.huge.header .sub.header,.ui.large.header .sub.header{font-size:1.14285714rem}.ui.header .sub.header,.ui.small.header .sub.header{font-size:1rem}.ui.tiny.header .sub.header{font-size:.92857143rem}.ui.small.sub.header{font-size:.71428571em}.ui.sub.header{padding:0;margin-bottom:.14285714rem;font-weight:700;text-transform:uppercase;color:'';font-size:.85714286em}.ui.large.sub.header{font-size:.92857143em}.ui.huge.sub.header{font-size:1em}.ui.icon.header{display:inline-block;text-align:center;margin:2rem 0 1rem}.ui.icon.header:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.icon.header:first-child{margin-top:0}.ui.icon.header .icon{float:none;display:block;width:auto;height:auto;line-height:1;padding:0;font-size:3em;margin:0 auto .5rem;opacity:1}.ui.icon.header .content{display:block}.ui.icon.header .circular.icon,.ui.icon.header .square.icon{font-size:2em}.ui.block.icon.header .icon{margin-bottom:0}.ui.icon.header.aligned{margin-left:auto;margin-right:auto;display:block}.ui.disabled.header{opacity:.45}.ui.inverted.header{color:#fff}.ui.inverted.header .sub.header{color:rgba(255,255,255,.8)}.ui.inverted.attached.header{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) #545454;background:linear-gradient(transparent,rgba(0,0,0,.05)) #545454;box-shadow:none;border-color:transparent}.ui.inverted.block.header{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) #545454;background:linear-gradient(transparent,rgba(0,0,0,.05)) #545454;box-shadow:none;border-bottom:none}.ui.red.header{color:#db2828!important}a.ui.red.header:hover{color:#d01919!important}.ui.red.dividing.header{border-bottom:2px solid #db2828}.ui.inverted.red.header{color:#ff695e!important}a.ui.inverted.red.header:hover{color:#ff5144!important}.ui.orange.header{color:#f2711c!important}a.ui.orange.header:hover{color:#f26202!important}.ui.orange.dividing.header{border-bottom:2px solid #f2711c}.ui.inverted.orange.header{color:#ff851b!important}a.ui.inverted.orange.header:hover{color:#ff7701!important}.ui.olive.header{color:#b5cc18!important}a.ui.olive.header:hover{color:#a7bd0d!important}.ui.olive.dividing.header{border-bottom:2px solid #b5cc18}.ui.inverted.olive.header{color:#d9e778!important}a.ui.inverted.olive.header:hover{color:#d8ea5c!important}.ui.yellow.header{color:#fbbd08!important}a.ui.yellow.header:hover{color:#eaae00!important}.ui.yellow.dividing.header{border-bottom:2px solid #fbbd08}.ui.inverted.yellow.header{color:#ffe21f!important}a.ui.inverted.yellow.header:hover{color:#ffdf05!important}.ui.green.header{color:#21ba45!important}a.ui.green.header:hover{color:#16ab39!important}.ui.green.dividing.header{border-bottom:2px solid #21ba45}.ui.inverted.green.header{color:#2ecc40!important}a.ui.inverted.green.header:hover{color:#22be34!important}.ui.teal.header{color:#00b5ad!important}a.ui.teal.header:hover{color:#009c95!important}.ui.teal.dividing.header{border-bottom:2px solid #00b5ad}.ui.inverted.teal.header{color:#6dffff!important}a.ui.inverted.teal.header:hover{color:#54ffff!important}.ui.blue.header{color:#2185d0!important}a.ui.blue.header:hover{color:#1678c2!important}.ui.blue.dividing.header{border-bottom:2px solid #2185d0}.ui.inverted.blue.header{color:#54c8ff!important}a.ui.inverted.blue.header:hover{color:#3ac0ff!important}.ui.violet.header{color:#6435c9!important}a.ui.violet.header:hover{color:#5829bb!important}.ui.violet.dividing.header{border-bottom:2px solid #6435c9}.ui.inverted.violet.header{color:#a291fb!important}a.ui.inverted.violet.header:hover{color:#8a73ff!important}.ui.purple.header{color:#a333c8!important}a.ui.purple.header:hover{color:#9627ba!important}.ui.purple.dividing.header{border-bottom:2px solid #a333c8}.ui.inverted.purple.header{color:#dc73ff!important}a.ui.inverted.purple.header:hover{color:#d65aff!important}.ui.pink.header{color:#e03997!important}a.ui.pink.header:hover{color:#e61a8d!important}.ui.pink.dividing.header{border-bottom:2px solid #e03997}.ui.inverted.pink.header{color:#ff8edf!important}a.ui.inverted.pink.header:hover{color:#ff74d8!important}.ui.brown.header{color:#a5673f!important}a.ui.brown.header:hover{color:#975b33!important}.ui.brown.dividing.header{border-bottom:2px solid #a5673f}.ui.inverted.brown.header{color:#d67c1c!important}a.ui.inverted.brown.header:hover{color:#c86f11!important}.ui.grey.header{color:#767676!important}a.ui.grey.header:hover{color:#838383!important}.ui.grey.dividing.header{border-bottom:2px solid #767676}.ui.inverted.grey.header{color:#dcddde!important}a.ui.inverted.grey.header:hover{color:#cfd0d2!important}.ui.left.aligned.header{text-align:left}.ui.right.aligned.header{text-align:right}.ui.center.aligned.header,.ui.centered.header{text-align:center}.ui.justified.header{text-align:justify}.ui.justified.header:after{display:inline-block;content:'';width:100%}.ui.floated.header,.ui[class*="left floated"].header{float:left;margin-top:0;margin-right:.5em}.ui[class*="right floated"].header{float:right;margin-top:0;margin-left:.5em}.ui.fitted.header{padding:0}.ui.dividing.header{padding-bottom:.21428571rem;border-bottom:1px solid rgba(34,36,38,.15)}.ui.dividing.header .sub.header{padding-bottom:.21428571rem}.ui.dividing.header .icon{margin-bottom:0}.ui.inverted.dividing.header{border-bottom-color:rgba(255,255,255,.1)}.ui.block.header{background:#f3f4f5;padding:.71428571rem 1rem;box-shadow:none;border:1px solid #d4d4d5;border-radius:.28571429rem}.ui.tiny.block.header{font-size:.85714286rem}.ui.small.block.header{font-size:.92857143rem}.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1rem}.ui.large.block.header{font-size:1.14285714rem}.ui.huge.block.header{font-size:1.42857143rem}.ui.attached.header{background:#fff;padding:.71428571rem 1rem;margin-left:-1px;margin-right:-1px;box-shadow:none;border:1px solid #d4d4d5}.ui.attached.block.header{background:#f3f4f5}.ui.attached:not(.top):not(.bottom).header{margin-top:0;margin-bottom:0;border-top:none;border-bottom:none;border-radius:0}.ui.top.attached.header{margin-bottom:0;border-bottom:none;border-radius:.28571429rem .28571429rem 0 0}.ui.bottom.attached.header{margin-top:0;border-top:none;border-radius:0 0 .28571429rem .28571429rem}.ui.tiny.attached.header{font-size:.85714286em}.ui.small.attached.header{font-size:.92857143em}.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1em}.ui.large.attached.header{font-size:1.14285714em}.ui.huge.attached.header{font-size:1.42857143em}.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1.28em}@font-face{font-family:Icons;src:url(themes/default/assets/fonts/icons.eot);src:url(themes/default/assets/fonts/icons.eot?#iefix) format('embedded-opentype'),url(themes/default/assets/fonts/icons.woff2) format('woff2'),url(themes/default/assets/fonts/icons.woff) format('woff'),url(themes/default/assets/fonts/icons.ttf) format('truetype'),url(themes/default/assets/fonts/icons.svg#icons) format('svg');font-style:normal;font-weight:400;font-variant:normal;text-decoration:inherit;text-transform:none}i.icon{display:inline-block;opacity:1;margin:0 .25rem 0 0;width:1.18em;height:1em;font-family:Icons;font-style:normal;font-weight:400;text-decoration:inherit;text-align:center;speak:none;font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.icon:before{background:0 0!important}i.icon.loading{height:1em;line-height:1;-webkit-animation:icon-loading 2s linear infinite;animation:icon-loading 2s linear infinite}@-webkit-keyframes icon-loading{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes icon-loading{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}i.emphasized.icon,i.icon.active,i.icon.hover{opacity:1}i.disabled.icon{opacity:.45!important}i.link.icon{cursor:pointer;opacity:.8;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}i.link.icon:hover{opacity:1!important}i.circular.icon{border-radius:500em!important;line-height:1!important;padding:.5em!important;box-shadow:0 0 0 .1em rgba(0,0,0,.1) inset;width:2em!important;height:2em!important}i.circular.inverted.icon{border:none;box-shadow:none}i.flipped.icon,i.horizontally.flipped.icon{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}i.vertically.flipped.icon{-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}i.clockwise.rotated.icon,i.right.rotated.icon,i.rotated.icon{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}i.counterclockwise.rotated.icon,i.left.rotated.icon{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}i.bordered.icon{line-height:1;vertical-align:baseline;width:2em;height:2em;padding:.5em .41em!important;box-shadow:0 0 0 .1em rgba(0,0,0,.1) inset}i.bordered.inverted.icon{border:none;box-shadow:none}i.inverted.bordered.icon,i.inverted.circular.icon{background-color:#1b1c1d!important;color:#fff!important}i.inverted.icon{color:#fff}i.red.icon{color:#db2828!important}i.inverted.red.icon{color:#ff695e!important}i.inverted.bordered.red.icon,i.inverted.circular.red.icon{background-color:#db2828!important;color:#fff!important}i.orange.icon{color:#f2711c!important}i.inverted.orange.icon{color:#ff851b!important}i.inverted.bordered.orange.icon,i.inverted.circular.orange.icon{background-color:#f2711c!important;color:#fff!important}i.yellow.icon{color:#fbbd08!important}i.inverted.yellow.icon{color:#ffe21f!important}i.inverted.bordered.yellow.icon,i.inverted.circular.yellow.icon{background-color:#fbbd08!important;color:#fff!important}i.olive.icon{color:#b5cc18!important}i.inverted.olive.icon{color:#d9e778!important}i.inverted.bordered.olive.icon,i.inverted.circular.olive.icon{background-color:#b5cc18!important;color:#fff!important}i.green.icon{color:#21ba45!important}i.inverted.green.icon{color:#2ecc40!important}i.inverted.bordered.green.icon,i.inverted.circular.green.icon{background-color:#21ba45!important;color:#fff!important}i.teal.icon{color:#00b5ad!important}i.inverted.teal.icon{color:#6dffff!important}i.inverted.bordered.teal.icon,i.inverted.circular.teal.icon{background-color:#00b5ad!important;color:#fff!important}i.blue.icon{color:#2185d0!important}i.inverted.blue.icon{color:#54c8ff!important}i.inverted.bordered.blue.icon,i.inverted.circular.blue.icon{background-color:#2185d0!important;color:#fff!important}i.violet.icon{color:#6435c9!important}i.inverted.violet.icon{color:#a291fb!important}i.inverted.bordered.violet.icon,i.inverted.circular.violet.icon{background-color:#6435c9!important;color:#fff!important}i.purple.icon{color:#a333c8!important}i.inverted.purple.icon{color:#dc73ff!important}i.inverted.bordered.purple.icon,i.inverted.circular.purple.icon{background-color:#a333c8!important;color:#fff!important}i.pink.icon{color:#e03997!important}i.inverted.pink.icon{color:#ff8edf!important}i.inverted.bordered.pink.icon,i.inverted.circular.pink.icon{background-color:#e03997!important;color:#fff!important}i.brown.icon{color:#a5673f!important}i.inverted.brown.icon{color:#d67c1c!important}i.inverted.bordered.brown.icon,i.inverted.circular.brown.icon{background-color:#a5673f!important;color:#fff!important}i.grey.icon{color:#767676!important}i.inverted.grey.icon{color:#dcddde!important}i.inverted.bordered.grey.icon,i.inverted.circular.grey.icon{background-color:#767676!important;color:#fff!important}i.black.icon{color:#1b1c1d!important}i.inverted.black.icon{color:#545454!important}i.inverted.bordeblack.black.icon,i.inverted.circular.black.icon{background-color:#1b1c1d!important;color:#fff!important}i.small.icon,i.small.icons{line-height:1;font-size:.92857143em}i.icon,i.icons{font-size:1em}i.large.icon,i.large.icons{line-height:1;vertical-align:middle;font-size:1.5em}i.big.icon,i.big.icons{line-height:1;vertical-align:middle;font-size:2em}i.huge.icon,i.huge.icons{line-height:1;vertical-align:middle;font-size:4em}i.massive.icon,i.massive.icons{line-height:1;vertical-align:middle;font-size:8em}i.icons{display:inline-block;position:relative;line-height:1}i.icons .icon{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);margin:0}i.icons .icon:first-child{position:static;width:auto;height:auto;vertical-align:top;-webkit-transform:none;-ms-transform:none;transform:none;margin-right:.25rem}i.icons .corner.icon{top:auto;left:auto;right:0;bottom:0;-webkit-transform:none;-ms-transform:none;transform:none;font-size:.45em;text-shadow:-1px -1px 0 #fff,1px -1px 0 #fff,-1px 1px 0 #fff,1px 1px 0 #fff}i.icons .inverted.corner.icon{text-shadow:-1px -1px 0 #1b1c1d,1px -1px 0 #1b1c1d,-1px 1px 0 #1b1c1d,1px 1px 0 #1b1c1d}i.icon.search:before{content:"\f002"}i.icon.mail.outline:before{content:"\f003"}i.icon.external:before{content:"\f08e"}i.icon.signal:before{content:"\f012"}i.icon.setting:before{content:"\f013"}i.icon.home:before{content:"\f015"}i.icon.inbox:before{content:"\f01c"}i.icon.browser:before{content:"\f022"}i.icon.tag:before{content:"\f02b"}i.icon.tags:before{content:"\f02c"}i.icon.calendar:before{content:"\f073"}i.icon.comment:before{content:"\f075"}i.icon.comments:before{content:"\f086"}i.icon.shop:before{content:"\f07a"}i.icon.settings:before{content:"\f085"}i.icon.trophy:before{content:"\f091"}i.icon.payment:before{content:"\f09d"}i.icon.feed:before{content:"\f09e"}i.icon.alarm.outline:before{content:"\f0a2"}i.icon.tasks:before{content:"\f0ae"}i.icon.cloud:before{content:"\f0c2"}i.icon.lab:before{content:"\f0c3"}i.icon.mail:before{content:"\f0e0"}i.icon.idea:before{content:"\f0eb"}i.icon.dashboard:before{content:"\f0e4"}i.icon.sitemap:before{content:"\f0e8"}i.icon.alarm:before{content:"\f0f3"}i.icon.terminal:before{content:"\f120"}i.icon.code:before{content:"\f121"}i.icon.protect:before{content:"\f132"}i.icon.calendar.outline:before{content:"\f133"}i.icon.ticket:before{content:"\f145"}i.icon.external.square:before{content:"\f14c"}i.icon.map:before{content:"\f14e"}i.icon.bug:before{content:"\f188"}i.icon.mail.square:before{content:"\f199"}i.icon.history:before{content:"\f1da"}i.icon.options:before{content:"\f1de"}i.icon.comment.outline:before{content:"\f0e5"}i.icon.comments.outline:before{content:"\f0e6"}i.icon.text.telephone:before{content:"\f1e4"}i.icon.find:before{content:"\f1e5"}i.icon.wifi:before{content:"\f1eb"}i.icon.alarm.slash:before{content:"\f1f6"}i.icon.alarm.slash.outline:before{content:"\f1f7"}i.icon.copyright:before{content:"\f1f9"}i.icon.at:before{content:"\f1fa"}i.icon.eyedropper:before{content:"\f1fb"}i.icon.paint.brush:before{content:"\f1fc"}i.icon.heartbeat:before{content:"\f21e"}i.icon.download:before{content:"\f019"}i.icon.repeat:before{content:"\f01e"}i.icon.refresh:before{content:"\f021"}i.icon.lock:before{content:"\f023"}i.icon.bookmark:before{content:"\f02e"}i.icon.print:before{content:"\f02f"}i.icon.write:before{content:"\f040"}i.icon.theme:before{content:"\f043"}i.icon.adjust:before{content:"\f042"}i.icon.edit:before{content:"\f044"}i.icon.external.share:before{content:"\f045"}i.icon.ban:before{content:"\f05e"}i.icon.mail.forward:before,i.icon.share:before{content:"\f064"}i.icon.expand:before{content:"\f065"}i.icon.compress:before{content:"\f066"}i.icon.unhide:before{content:"\f06e"}i.icon.hide:before{content:"\f070"}i.icon.random:before{content:"\f074"}i.icon.retweet:before{content:"\f079"}i.icon.sign.out:before{content:"\f08b"}i.icon.pin:before{content:"\f08d"}i.icon.sign.in:before{content:"\f090"}i.icon.upload:before{content:"\f093"}i.icon.call:before{content:"\f095"}i.icon.call.square:before{content:"\f098"}i.icon.remove.bookmark:before{content:"\f097"}i.icon.unlock:before{content:"\f09c"}i.icon.configure:before{content:"\f0ad"}i.icon.filter:before{content:"\f0b0"}i.icon.wizard:before{content:"\f0d0"}i.icon.undo:before{content:"\f0e2"}i.icon.exchange:before{content:"\f0ec"}i.icon.cloud.download:before{content:"\f0ed"}i.icon.cloud.upload:before{content:"\f0ee"}i.icon.reply:before{content:"\f112"}i.icon.reply.all:before{content:"\f122"}i.icon.erase:before{content:"\f12d"}i.icon.unlock.alternate:before{content:"\f13e"}i.icon.archive:before{content:"\f187"}i.icon.translate:before{content:"\f1ab"}i.icon.recycle:before{content:"\f1b8"}i.icon.send:before{content:"\f1d8"}i.icon.send.outline:before{content:"\f1d9"}i.icon.share.alternate:before{content:"\f1e0"}i.icon.share.alternate.square:before{content:"\f1e1"}i.icon.wait:before{content:"\f017"}i.icon.write.square:before{content:"\f14b"}i.icon.share.square:before{content:"\f14d"}i.icon.add.to.cart:before{content:"\f217"}i.icon.in.cart:before{content:"\f218"}i.icon.add.user:before{content:"\f234"}i.icon.remove.user:before{content:"\f235"}i.icon.help.circle:before{content:"\f059"}i.icon.info.circle:before{content:"\f05a"}i.icon.warning:before{content:"\f12a"}i.icon.warning.circle:before{content:"\f06a"}i.icon.warning.sign:before{content:"\f071"}i.icon.help:before{content:"\f128"}i.icon.info:before{content:"\f129"}i.icon.announcement:before{content:"\f0a1"}i.icon.birthday:before{content:"\f1fd"}i.icon.users:before{content:"\f0c0"}i.icon.doctor:before{content:"\f0f0"}i.icon.child:before{content:"\f1ae"}i.icon.user:before{content:"\f007"}i.icon.handicap:before{content:"\f193"}i.icon.student:before{content:"\f19d"}i.icon.spy:before{content:"\f21b"}i.icon.female:before{content:"\f182"}i.icon.male:before{content:"\f183"}i.icon.woman:before{content:"\f221"}i.icon.man:before{content:"\f222"}i.icon.non.binary.transgender:before{content:"\f223"}i.icon.intergender:before{content:"\f224"}i.icon.transgender:before{content:"\f225"}i.icon.lesbian:before{content:"\f226"}i.icon.gay:before{content:"\f227"}i.icon.heterosexual:before{content:"\f228"}i.icon.other.gender:before{content:"\f229"}i.icon.other.gender.vertical:before{content:"\f22a"}i.icon.other.gender.horizontal:before{content:"\f22b"}i.icon.grid.layout:before{content:"\f00a"}i.icon.list.layout:before{content:"\f00b"}i.icon.block.layout:before{content:"\f009"}i.icon.zoom:before{content:"\f00e"}i.icon.zoom.out:before{content:"\f010"}i.icon.resize.vertical:before{content:"\f07d"}i.icon.resize.horizontal:before{content:"\f07e"}i.icon.maximize:before{content:"\f0b2"}i.icon.crop:before{content:"\f125"}i.icon.cocktail:before{content:"\f000"}i.icon.road:before{content:"\f018"}i.icon.flag:before{content:"\f024"}i.icon.book:before{content:"\f02d"}i.icon.gift:before{content:"\f06b"}i.icon.leaf:before{content:"\f06c"}i.icon.fire:before{content:"\f06d"}i.icon.plane:before{content:"\f072"}i.icon.magnet:before{content:"\f076"}i.icon.legal:before{content:"\f0e3"}i.icon.lemon:before{content:"\f094"}i.icon.world:before{content:"\f0ac"}i.icon.travel:before{content:"\f0b1"}i.icon.shipping:before{content:"\f0d1"}i.icon.money:before{content:"\f0d6"}i.icon.rain:before{content:"\f0e9"}i.icon.treatment:before{content:"\f0f1"}i.icon.bar:before{content:"\f0fc"}i.icon.flag.outline:before{content:"\f11d"}i.icon.flag.checkered:before{content:"\f11e"}i.icon.puzzle:before{content:"\f12e"}i.icon.fire.extinguisher:before{content:"\f134"}i.icon.rocket:before{content:"\f135"}i.icon.anchor:before{content:"\f13d"}i.icon.bullseye:before{content:"\f140"}i.icon.sun:before{content:"\f185"}i.icon.moon:before{content:"\f186"}i.icon.fax:before{content:"\f1ac"}i.icon.life.ring:before{content:"\f1cd"}i.icon.bomb:before{content:"\f1e2"}i.icon.soccer:before{content:"\f1e3"}i.icon.calculator:before{content:"\f1ec"}i.icon.diamond:before{content:"\f219"}i.icon.crosshairs:before{content:"\f05b"}i.icon.asterisk:before{content:"\f069"}i.icon.certificate:before{content:"\f0a3"}i.icon.circle:before{content:"\f111"}i.icon.quote.left:before{content:"\f10d"}i.icon.quote.right:before{content:"\f10e"}i.icon.ellipsis.horizontal:before{content:"\f141"}i.icon.ellipsis.vertical:before{content:"\f142"}i.icon.cube:before{content:"\f1b2"}i.icon.cubes:before{content:"\f1b3"}i.icon.circle.notched:before{content:"\f1ce"}i.icon.circle.thin:before{content:"\f1db"}i.icon.square.outline:before{content:"\f096"}i.icon.square:before{content:"\f0c8"}i.icon.checkmark:before{content:"\f00c"}i.icon.checkmark.box:before{content:"\f046"}i.icon.move:before{content:"\f047"}i.icon.add.circle:before{content:"\f055"}i.icon.remove.circle:before{content:"\f057"}i.icon.check.circle:before{content:"\f058"}i.icon.remove.circle.outline:before{content:"\f05c"}i.icon.check.circle.outline:before{content:"\f05d"}i.icon.plus:before{content:"\f067"}i.icon.minus:before{content:"\f068"}i.icon.add.square:before{content:"\f0fe"}i.icon.radio:before{content:"\f10c"}i.icon.selected.radio:before{content:"\f192"}i.icon.minus.square:before{content:"\f146"}i.icon.minus.square.outline:before{content:"\f147"}i.icon.check.square:before{content:"\f14a"}i.icon.plus.square.outline:before{content:"\f196"}i.icon.toggle.off:before{content:"\f204"}i.icon.toggle.on:before{content:"\f205"}i.icon.film:before{content:"\f008"}i.icon.sound:before{content:"\f025"}i.icon.photo:before{content:"\f030"}i.icon.bar.chart:before{content:"\f080"}i.icon.camera.retro:before{content:"\f083"}i.icon.newspaper:before{content:"\f1ea"}i.icon.area.chart:before{content:"\f1fe"}i.icon.pie.chart:before{content:"\f200"}i.icon.line.chart:before{content:"\f201"}i.icon.arrow.circle.outline.down:before{content:"\f01a"}i.icon.arrow.circle.outline.up:before{content:"\f01b"}i.icon.chevron.left:before{content:"\f053"}i.icon.chevron.right:before{content:"\f054"}i.icon.arrow.left:before{content:"\f060"}i.icon.arrow.right:before{content:"\f061"}i.icon.arrow.up:before{content:"\f062"}i.icon.arrow.down:before{content:"\f063"}i.icon.chevron.up:before{content:"\f077"}i.icon.chevron.down:before{content:"\f078"}i.icon.pointing.right:before{content:"\f0a4"}i.icon.pointing.left:before{content:"\f0a5"}i.icon.pointing.up:before{content:"\f0a6"}i.icon.pointing.down:before{content:"\f0a7"}i.icon.arrow.circle.left:before{content:"\f0a8"}i.icon.arrow.circle.right:before{content:"\f0a9"}i.icon.arrow.circle.up:before{content:"\f0aa"}i.icon.arrow.circle.down:before{content:"\f0ab"}i.icon.caret.down:before{content:"\f0d7"}i.icon.caret.up:before{content:"\f0d8"}i.icon.caret.left:before{content:"\f0d9"}i.icon.caret.right:before{content:"\f0da"}i.icon.angle.double.left:before{content:"\f100"}i.icon.angle.double.right:before{content:"\f101"}i.icon.angle.double.up:before{content:"\f102"}i.icon.angle.double.down:before{content:"\f103"}i.icon.angle.left:before{content:"\f104"}i.icon.angle.right:before{content:"\f105"}i.icon.angle.up:before{content:"\f106"}i.icon.angle.down:before{content:"\f107"}i.icon.chevron.circle.left:before{content:"\f137"}i.icon.chevron.circle.right:before{content:"\f138"}i.icon.chevron.circle.up:before{content:"\f139"}i.icon.chevron.circle.down:before{content:"\f13a"}i.icon.toggle.down:before{content:"\f150"}i.icon.toggle.up:before{content:"\f151"}i.icon.toggle.right:before{content:"\f152"}i.icon.long.arrow.down:before{content:"\f175"}i.icon.long.arrow.up:before{content:"\f176"}i.icon.long.arrow.left:before{content:"\f177"}i.icon.long.arrow.right:before{content:"\f178"}i.icon.arrow.circle.outline.right:before{content:"\f18e"}i.icon.arrow.circle.outline.left:before{content:"\f190"}i.icon.toggle.left:before{content:"\f191"}i.icon.power:before{content:"\f011"}i.icon.trash:before{content:"\f1f8"}i.icon.trash.outline:before{content:"\f014"}i.icon.disk.outline:before{content:"\f0a0"}i.icon.desktop:before{content:"\f108"}i.icon.laptop:before{content:"\f109"}i.icon.tablet:before{content:"\f10a"}i.icon.mobile:before{content:"\f10b"}i.icon.game:before{content:"\f11b"}i.icon.keyboard:before{content:"\f11c"}i.icon.plug:before{content:"\f1e6"}i.icon.folder:before{content:"\f07b"}i.icon.folder.open:before{content:"\f07c"}i.icon.level.up:before{content:"\f148"}i.icon.level.down:before{content:"\f149"}i.icon.file:before{content:"\f15b"}i.icon.file.outline:before{content:"\f016"}i.icon.file.text:before{content:"\f15c"}i.icon.file.text.outline:before{content:"\f0f6"}i.icon.folder.outline:before{content:"\f114"}i.icon.folder.open.outline:before{content:"\f115"}i.icon.file.pdf.outline:before{content:"\f1c1"}i.icon.file.word.outline:before{content:"\f1c2"}i.icon.file.excel.outline:before{content:"\f1c3"}i.icon.file.powerpoint.outline:before{content:"\f1c4"}i.icon.file.image.outline:before{content:"\f1c5"}i.icon.file.archive.outline:before{content:"\f1c6"}i.icon.file.audio.outline:before{content:"\f1c7"}i.icon.file.video.outline:before{content:"\f1c8"}i.icon.file.code.outline:before{content:"\f1c9"}i.icon.barcode:before{content:"\f02a"}i.icon.qrcode:before{content:"\f029"}i.icon.fork:before{content:"\f126"}i.icon.html5:before{content:"\f13b"}i.icon.css3:before{content:"\f13c"}i.icon.rss:before{content:"\f09e"}i.icon.rss.square:before{content:"\f143"}i.icon.openid:before{content:"\f19b"}i.icon.database:before{content:"\f1c0"}i.icon.server:before{content:"\f233"}i.icon.heart:before{content:"\f004"}i.icon.star:before{content:"\f005"}i.icon.empty.star:before{content:"\f006"}i.icon.thumbs.outline.up:before{content:"\f087"}i.icon.thumbs.outline.down:before{content:"\f088"}i.icon.star.half:before{content:"\f089"}i.icon.empty.heart:before{content:"\f08a"}i.icon.smile:before{content:"\f118"}i.icon.frown:before{content:"\f119"}i.icon.meh:before{content:"\f11a"}i.icon.star.half.empty:before{content:"\f123"}i.icon.thumbs.up:before{content:"\f164"}i.icon.thumbs.down:before{content:"\f165"}i.icon.music:before{content:"\f001"}i.icon.video.play.outline:before{content:"\f01d"}i.icon.volume.down:before{content:"\f027"}i.icon.volume.up:before{content:"\f028"}i.icon.record:before{content:"\f03d"}i.icon.step.backward:before{content:"\f048"}i.icon.fast.backward:before{content:"\f049"}i.icon.backward:before{content:"\f04a"}i.icon.play:before{content:"\f04b"}i.icon.pause:before{content:"\f04c"}i.icon.stop:before{content:"\f04d"}i.icon.forward:before{content:"\f04e"}i.icon.fast.forward:before{content:"\f050"}i.icon.step.forward:before{content:"\f051"}i.icon.eject:before{content:"\f052"}i.icon.unmute:before{content:"\f130"}i.icon.mute:before{content:"\f131"}i.icon.video.play:before{content:"\f144"}i.icon.closed.captioning:before{content:"\f20a"}i.icon.marker:before{content:"\f041"}i.icon.coffee:before{content:"\f0f4"}i.icon.food:before{content:"\f0f5"}i.icon.building.outline:before{content:"\f0f7"}i.icon.hospital:before{content:"\f0f8"}i.icon.emergency:before{content:"\f0f9"}i.icon.first.aid:before{content:"\f0fa"}i.icon.military:before{content:"\f0fb"}i.icon.h:before{content:"\f0fd"}i.icon.location.arrow:before{content:"\f124"}i.icon.space.shuttle:before{content:"\f197"}i.icon.university:before{content:"\f19c"}i.icon.building:before{content:"\f1ad"}i.icon.paw:before{content:"\f1b0"}i.icon.spoon:before{content:"\f1b1"}i.icon.car:before{content:"\f1b9"}i.icon.taxi:before{content:"\f1ba"}i.icon.tree:before{content:"\f1bb"}i.icon.bicycle:before{content:"\f206"}i.icon.bus:before{content:"\f207"}i.icon.ship:before{content:"\f21a"}i.icon.motorcycle:before{content:"\f21c"}i.icon.street.view:before{content:"\f21d"}i.icon.hotel:before{content:"\f236"}i.icon.train:before{content:"\f238"}i.icon.subway:before{content:"\f239"}i.icon.table:before{content:"\f0ce"}i.icon.columns:before{content:"\f0db"}i.icon.sort:before{content:"\f0dc"}i.icon.sort.ascending:before{content:"\f0de"}i.icon.sort.descending:before{content:"\f0dd"}i.icon.sort.alphabet.ascending:before{content:"\f15d"}i.icon.sort.alphabet.descending:before{content:"\f15e"}i.icon.sort.content.ascending:before{content:"\f160"}i.icon.sort.content.descending:before{content:"\f161"}i.icon.sort.numeric.ascending:before{content:"\f162"}i.icon.sort.numeric.descending:before{content:"\f163"}i.icon.font:before{content:"\f031"}i.icon.bold:before{content:"\f032"}i.icon.italic:before{content:"\f033"}i.icon.text.height:before{content:"\f034"}i.icon.text.width:before{content:"\f035"}i.icon.align.left:before{content:"\f036"}i.icon.align.center:before{content:"\f037"}i.icon.align.right:before{content:"\f038"}i.icon.align.justify:before{content:"\f039"}i.icon.list:before{content:"\f03a"}i.icon.outdent:before{content:"\f03b"}i.icon.indent:before{content:"\f03c"}i.icon.linkify:before{content:"\f0c1"}i.icon.cut:before{content:"\f0c4"}i.icon.copy:before{content:"\f0c5"}i.icon.attach:before{content:"\f0c6"}i.icon.save:before{content:"\f0c7"}i.icon.content:before{content:"\f0c9"}i.icon.unordered.list:before{content:"\f0ca"}i.icon.ordered.list:before{content:"\f0cb"}i.icon.strikethrough:before{content:"\f0cc"}i.icon.underline:before{content:"\f0cd"}i.icon.paste:before{content:"\f0ea"}i.icon.unlink:before{content:"\f127"}i.icon.superscript:before{content:"\f12b"}i.icon.subscript:before{content:"\f12c"}i.icon.header:before{content:"\f1dc"}i.icon.paragraph:before{content:"\f1dd"}i.icon.euro:before{content:"\f153"}i.icon.pound:before{content:"\f154"}i.icon.dollar:before{content:"\f155"}i.icon.rupee:before{content:"\f156"}i.icon.yen:before{content:"\f157"}i.icon.ruble:before{content:"\f158"}i.icon.won:before{content:"\f159"}i.icon.lira:before{content:"\f195"}i.icon.shekel:before{content:"\f20b"}i.icon.paypal:before{content:"\f1ed"}i.icon.paypal.card:before{content:"\f1f4"}i.icon.google.wallet:before{content:"\f1ee"}i.icon.visa:before{content:"\f1f0"}i.icon.mastercard:before{content:"\f1f1"}i.icon.discover:before{content:"\f1f2"}i.icon.american.express:before{content:"\f1f3"}i.icon.stripe:before{content:"\f1f5"}i.icon.twitter.square:before{content:"\f081"}i.icon.facebook.square:before{content:"\f082"}i.icon.linkedin.square:before{content:"\f08c"}i.icon.github.square:before{content:"\f092"}i.icon.twitter:before{content:"\f099"}i.icon.facebook:before{content:"\f09a"}i.icon.github:before{content:"\f09b"}i.icon.pinterest:before{content:"\f0d2"}i.icon.pinterest.square:before{content:"\f0d3"}i.icon.google.plus.square:before{content:"\f0d4"}i.icon.google.plus:before{content:"\f0d5"}i.icon.linkedin:before{content:"\f0e1"}i.icon.github.alternate:before{content:"\f113"}i.icon.maxcdn:before{content:"\f136"}i.icon.bitcoin:before{content:"\f15a"}i.icon.youtube.square:before{content:"\f166"}i.icon.youtube:before{content:"\f167"}i.icon.xing:before{content:"\f168"}i.icon.xing.square:before{content:"\f169"}i.icon.youtube.play:before{content:"\f16a"}i.icon.dropbox:before{content:"\f16b"}i.icon.stack.overflow:before{content:"\f16c"}i.icon.instagram:before{content:"\f16d"}i.icon.flickr:before{content:"\f16e"}i.icon.adn:before{content:"\f170"}i.icon.bitbucket:before{content:"\f171"}i.icon.bitbucket.square:before{content:"\f172"}i.icon.tumblr:before{content:"\f173"}i.icon.tumblr.square:before{content:"\f174"}i.icon.apple:before{content:"\f179"}i.icon.windows:before{content:"\f17a"}i.icon.android:before{content:"\f17b"}i.icon.linux:before{content:"\f17c"}i.icon.dribbble:before{content:"\f17d"}i.icon.skype:before{content:"\f17e"}i.icon.foursquare:before{content:"\f180"}i.icon.trello:before{content:"\f181"}i.icon.gittip:before{content:"\f184"}i.icon.vk:before{content:"\f189"}i.icon.weibo:before{content:"\f18a"}i.icon.renren:before{content:"\f18b"}i.icon.pagelines:before{content:"\f18c"}i.icon.stack.exchange:before{content:"\f18d"}i.icon.vimeo:before{content:"\f194"}i.icon.slack:before{content:"\f198"}i.icon.wordpress:before{content:"\f19a"}i.icon.yahoo:before{content:"\f19e"}i.icon.google:before{content:"\f1a0"}i.icon.reddit:before{content:"\f1a1"}i.icon.reddit.square:before{content:"\f1a2"}i.icon.stumbleupon.circle:before{content:"\f1a3"}i.icon.stumbleupon:before{content:"\f1a4"}i.icon.delicious:before{content:"\f1a5"}i.icon.digg:before{content:"\f1a6"}i.icon.pied.piper:before{content:"\f1a7"}i.icon.pied.piper.alternate:before{content:"\f1a8"}i.icon.drupal:before{content:"\f1a9"}i.icon.joomla:before{content:"\f1aa"}i.icon.behance:before{content:"\f1b4"}i.icon.behance.square:before{content:"\f1b5"}i.icon.steam:before{content:"\f1b6"}i.icon.steam.square:before{content:"\f1b7"}i.icon.spotify:before{content:"\f1bc"}i.icon.deviantart:before{content:"\f1bd"}i.icon.soundcloud:before{content:"\f1be"}i.icon.vine:before{content:"\f1ca"}i.icon.codepen:before{content:"\f1cb"}i.icon.jsfiddle:before{content:"\f1cc"}i.icon.rebel:before{content:"\f1d0"}i.icon.empire:before{content:"\f1d1"}i.icon.git.square:before{content:"\f1d2"}i.icon.git:before{content:"\f1d3"}i.icon.hacker.news:before{content:"\f1d4"}i.icon.tencent.weibo:before{content:"\f1d5"}i.icon.qq:before{content:"\f1d6"}i.icon.wechat:before{content:"\f1d7"}i.icon.slideshare:before{content:"\f1e7"}i.icon.twitch:before{content:"\f1e8"}i.icon.yelp:before{content:"\f1e9"}i.icon.lastfm:before{content:"\f202"}i.icon.lastfm.square:before{content:"\f203"}i.icon.ioxhost:before{content:"\f208"}i.icon.angellist:before{content:"\f209"}i.icon.meanpath:before{content:"\f20c"}i.icon.buysellads:before{content:"\f20d"}i.icon.connectdevelop:before{content:"\f20e"}i.icon.dashcube:before{content:"\f210"}i.icon.forumbee:before{content:"\f211"}i.icon.leanpub:before{content:"\f212"}i.icon.sellsy:before{content:"\f213"}i.icon.shirtsinbulk:before{content:"\f214"}i.icon.simplybuilt:before{content:"\f215"}i.icon.skyatlas:before{content:"\f216"}i.icon.whatsapp:before{content:"\f232"}i.icon.viacoin:before{content:"\f237"}i.icon.medium:before{content:"\f23a"}i.icon.like:before{content:"\f004"}i.icon.favorite:before{content:"\f005"}i.icon.video:before{content:"\f008"}i.icon.check:before{content:"\f00c"}i.icon.cancel:before,i.icon.close:before,i.icon.delete:before,i.icon.remove:before,i.icon.x:before{content:"\f00d"}i.icon.user.cancel:before,i.icon.user.close:before,i.icon.user.delete:before,i.icon.user.times:before,i.icon.user.x:before{content:"\f235"}i.icon.magnify:before,i.icon.zoom.in:before{content:"\f00e"}i.icon.shutdown:before{content:"\f011"}i.icon.clock:before,i.icon.time:before{content:"\f017"}i.icon.play.circle.outline:before{content:"\f01d"}i.icon.headphone:before{content:"\f025"}i.icon.volume.off:before{content:"\f026"}i.icon.camera:before{content:"\f030"}i.icon.video.camera:before{content:"\f03d"}i.icon.picture:before{content:"\f03e"}i.icon.compose:before,i.icon.pencil:before{content:"\f040"}i.icon.point:before{content:"\f041"}i.icon.tint:before{content:"\f043"}i.icon.signup:before{content:"\f044"}i.icon.plus.circle:before{content:"\f055"}i.icon.minus.circle:before{content:"\f056"}i.icon.dont:before{content:"\f05e"}i.icon.minimize:before{content:"\f066"}i.icon.add:before{content:"\f067"}i.icon.eye:before{content:"\f06e"}i.icon.cart:before{content:"\f07a"}i.icon.shuffle:before{content:"\f074"}i.icon.chat:before,i.icon.talk:before{content:"\f075"}i.icon.shopping.cart:before{content:"\f07a"}i.icon.bar.graph:before{content:"\f080"}i.icon.area.graph:before{content:"\f1fe"}i.icon.pie.graph:before{content:"\f200"}i.icon.line.graph:before{content:"\f201"}i.icon.key:before,i.icon.privacy:before{content:"\f084"}i.icon.cogs:before{content:"\f085"}i.icon.discussions:before{content:"\f086"}i.icon.like.outline:before{content:"\f087"}i.icon.dislike.outline:before{content:"\f088"}i.icon.heart.outline:before{content:"\f08a"}i.icon.log.out:before{content:"\f08b"}i.icon.thumb.tack:before{content:"\f08d"}i.icon.winner:before{content:"\f091"}i.icon.bookmark.outline:before{content:"\f097"}i.icon.phone:before{content:"\f095"}i.icon.phone.square:before{content:"\f098"}i.icon.credit.card:before{content:"\f09d"}i.icon.hdd.outline:before{content:"\f0a0"}i.icon.bullhorn:before{content:"\f0a1"}i.icon.bell:before{content:"\f0f3"}i.icon.bell.slash:before{content:"\f1f6"}i.icon.bell.slash.outline:before{content:"\f1f7"}i.icon.hand.outline.right:before{content:"\f0a4"}i.icon.hand.outline.left:before{content:"\f0a5"}i.icon.hand.outline.up:before{content:"\f0a6"}i.icon.hand.outline.down:before{content:"\f0a7"}i.icon.globe:before{content:"\f0ac"}i.icon.wrench:before{content:"\f0ad"}i.icon.briefcase:before{content:"\f0b1"}i.icon.group:before{content:"\f0c0"}i.icon.flask:before{content:"\f0c3"}i.icon.bars:before,i.icon.sidebar:before{content:"\f0c9"}i.icon.list.ul:before{content:"\f0ca"}i.icon.list.ol:before,i.icon.numbered.list:before{content:"\f0cb"}i.icon.magic:before{content:"\f0d0"}i.icon.truck:before{content:"\f0d1"}i.icon.currency:before{content:"\f0d6"}i.icon.dropdown:before,i.icon.triangle.down:before{content:"\f0d7"}i.icon.triangle.up:before{content:"\f0d8"}i.icon.triangle.left:before{content:"\f0d9"}i.icon.triangle.right:before{content:"\f0da"}i.icon.envelope:before{content:"\f0e0"}i.icon.conversation:before{content:"\f0e6"}i.icon.lightning:before{content:"\f0e7"}i.icon.umbrella:before{content:"\f0e9"}i.icon.lightbulb:before{content:"\f0eb"}i.icon.suitcase:before{content:"\f0f2"}i.icon.bell.outline:before{content:"\f0a2"}i.icon.ambulance:before{content:"\f0f9"}i.icon.medkit:before{content:"\f0fa"}i.icon.fighter.jet:before{content:"\f0fb"}i.icon.beer:before{content:"\f0fc"}i.icon.plus.square:before{content:"\f0fe"}i.icon.computer:before{content:"\f108"}i.icon.asexual:before,i.icon.circle.outline:before,i.icon.intersex:before{content:"\f10c"}i.icon.spinner:before{content:"\f110"}i.icon.gamepad:before{content:"\f11b"}i.icon.star.half.full:before{content:"\f123"}i.icon.question:before{content:"\f128"}i.icon.attention:before{content:"\f12a"}i.icon.eraser:before{content:"\f12d"}i.icon.microphone:before{content:"\f130"}i.icon.microphone.slash:before{content:"\f131"}i.icon.shield:before{content:"\f132"}i.icon.target:before{content:"\f140"}i.icon.play.circle:before{content:"\f144"}i.icon.pencil.square:before{content:"\f14b"}i.icon.compass:before{content:"\f14e"}i.icon.amex:before{content:"\f1f3"}i.icon.eur:before{content:"\f153"}i.icon.gbp:before{content:"\f154"}i.icon.usd:before{content:"\f155"}i.icon.inr:before{content:"\f156"}i.icon.cny:before,i.icon.jpy:before,i.icon.rmb:before{content:"\f157"}i.icon.rouble:before,i.icon.rub:before{content:"\f158"}i.icon.krw:before,i.icon.won:before{content:"\f159"}i.icon.btc:before{content:"\f15a"}i.icon.ils:before,i.icon.sheqel:before{content:"\f20b"}i.icon.try:before{content:"\f195"}i.icon.zip:before{content:"\f187"}i.icon.dot.circle.outline:before{content:"\f192"}i.icon.sliders:before{content:"\f1de"}i.icon.wi-fi:before{content:"\f1eb"}i.icon.graduation:before{content:"\f19d"}i.icon.\33d:before{content:"\f1b2"}i.icon.weixin:before{content:"\f1d7"}i.icon.binoculars:before{content:"\f1e5"}i.icon.gratipay:before{content:"\f184"}i.icon.genderless:before{content:"\f1db"}i.icon.teletype:before{content:"\f1e4"}i.icon.power.cord:before{content:"\f1e6"}i.icon.tty:before{content:"\f1e4"}i.icon.cc:before{content:"\f20a"}i.icon.ils:before{content:"\f20b"}i.icon.plus.cart:before{content:"\f217"}i.icon.arrow.down.cart:before{content:"\f218"}i.icon.detective:before{content:"\f21b"}i.icon.venus:before{content:"\f221"}i.icon.mars:before{content:"\f222"}i.icon.mercury:before{content:"\f223"}i.icon.female.homosexual:before,i.icon.venus.double:before{content:"\f226"}i.icon.male.homosexual:before,i.icon.mars.double:before{content:"\f227"}i.icon.venus.mars:before{content:"\f228"}i.icon.mars.alternate:before,i.icon.mars.stroke:before{content:"\f229"}i.icon.mars.vertical:before{content:"\f22a"}i.icon.mars.horizontal:before{content:"\f22b"}i.icon.mars.stroke.vertical:before{content:"\f22a"}i.icon.mars.stroke.horizontal:before{content:"\f22b"}i.icon.neuter:before{content:"\f22c"}i.icon.facebook.official{content:"\f230"}i.icon.pinterest.official{content:"\f231"}i.icon.bed:before{content:"\f236"}.ui.image{position:relative;display:inline-block;vertical-align:middle;max-width:100%;background-color:transparent}img.ui.image{display:block}.ui.image img,.ui.image svg{display:block;max-width:100%;height:auto}.ui.hidden.image,.ui.hidden.images{display:none}.ui.disabled.image,.ui.disabled.images{cursor:default;opacity:.45}.ui.inline.image,.ui.inline.image img,.ui.inline.image svg{display:inline-block}.ui.top.aligned.image,.ui.top.aligned.image img,.ui.top.aligned.image svg,.ui.top.aligned.images .image{display:inline-block;vertical-align:top}.ui.middle.aligned.image,.ui.middle.aligned.image img,.ui.middle.aligned.image svg,.ui.middle.aligned.images .image{display:inline-block;vertical-align:middle}.ui.bottom.aligned.image,.ui.bottom.aligned.image img,.ui.bottom.aligned.image svg,.ui.bottom.aligned.images .image{display:inline-block;vertical-align:bottom}.ui.rounded.image,.ui.rounded.image>*,.ui.rounded.images .image,.ui.rounded.images .image>*{border-radius:.3125em}.ui.bordered.image img,.ui.bordered.image svg,.ui.bordered.images .image,.ui.bordered.images img,.ui.bordered.images svg,img.ui.bordered.image{border:1px solid rgba(0,0,0,.1)}.ui.circular.image,.ui.circular.images{overflow:hidden}.ui.circular.image,.ui.circular.image>*,.ui.circular.images .image,.ui.circular.images .image>*{border-radius:500rem}.ui.fluid.image,.ui.fluid.image img,.ui.fluid.image svg,.ui.fluid.images,.ui.fluid.images img,.ui.fluid.images svg{display:block;width:100%;height:auto}.ui.avatar.image,.ui.avatar.image img,.ui.avatar.image svg,.ui.avatar.images .image,.ui.avatar.images img,.ui.avatar.images svg{margin-right:.25em;display:inline-block;width:2em;height:2em;border-radius:500rem}.ui.spaced.image{display:inline-block!important;margin-left:.5em;margin-right:.5em}.ui[class*="left spaced"].image{margin-left:.5em;margin-right:0}.ui[class*="right spaced"].image{margin-left:0;margin-right:.5em}.ui.floated.image,.ui.floated.images{float:left;margin-right:1em;margin-bottom:1em}.ui.right.floated.image,.ui.right.floated.images{float:right;margin-right:0;margin-bottom:1em;margin-left:1em}.ui.floated.image:last-child,.ui.floated.images:last-child{margin-bottom:0}.ui.centered.image,.ui.centered.images{margin-left:auto;margin-right:auto}.ui.mini.image,.ui.mini.images .image,.ui.mini.images img,.ui.mini.images svg{width:35px;height:auto;font-size:.71428571rem}.ui.tiny.image,.ui.tiny.images .image,.ui.tiny.images img,.ui.tiny.images svg{width:80px;height:auto;font-size:.85714286rem}.ui.small.image,.ui.small.images .image,.ui.small.images img,.ui.small.images svg{width:150px;height:auto;font-size:.92857143rem}.ui.medium.image,.ui.medium.images .image,.ui.medium.images img,.ui.medium.images svg{width:300px;height:auto;font-size:1rem}.ui.large.image,.ui.large.images .image,.ui.large.images img,.ui.large.images svg{width:450px;height:auto;font-size:1.14285714rem}.ui.big.image,.ui.big.images .image,.ui.big.images img,.ui.big.images svg{width:600px;height:auto;font-size:1.28571429rem}.ui.huge.image,.ui.huge.images .image,.ui.huge.images img,.ui.huge.images svg{width:800px;height:auto;font-size:1.42857143rem}.ui.massive.image,.ui.massive.images .image,.ui.massive.images img,.ui.massive.images svg{width:960px;height:auto;font-size:1.71428571rem}.ui.images{font-size:0;margin:0 -.25rem}.ui.images .image,.ui.images img,.ui.images svg{display:inline-block;margin:0 .25rem .5rem}.ui.input{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;color:rgba(0,0,0,.87)}.ui.input input{margin:0;max-width:100%;-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0);text-align:left;line-height:1.2142em;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;padding:.67861429em 1em;background:#fff;border:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87);border-radius:.28571429rem;-webkit-transition:background-color .1s ease,box-shadow .1s ease,border-color .1s ease;transition:background-color .1s ease,box-shadow .1s ease,border-color .1s ease;box-shadow:none}.ui.input input::-webkit-input-placeholder{color:rgba(0,0,0,.4)}.ui.input input::-moz-placeholder{color:rgba(0,0,0,.4)}.ui.input input::-ms-input-placeholder{color:rgba(0,0,0,.4)}.ui.input input:active,.ui.input.down input{border-color:rgba(0,0,0,.3);background:#fafafa;color:rgba(0,0,0,.87);box-shadow:none}.ui.loading.loading.input>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.loading.input>i.icon:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.input input:focus,.ui.input.focus input{border-color:rgba(34,36,38,.35);background:#fff;color:rgba(0,0,0,.8);box-shadow:none}.ui.input input:focus input::-webkit-input-placeholder,.ui.input.focus input::-webkit-input-placeholder{color:rgba(0,0,0,.87)}.ui.input input:focus input::-moz-placeholder,.ui.input.focus input::-moz-placeholder{color:rgba(0,0,0,.87)}.ui.input input:focus input::-ms-input-placeholder,.ui.input.focus input::-ms-input-placeholder{color:rgba(0,0,0,.87)}.ui.input.error input{background-color:#fff6f6;border-color:#e0b4b4;color:#db2828;box-shadow:none}.ui.input.error input ::-webkit-input-placeholder{color:rgba(255,80,80,.4)}.ui.input.error input ::-moz-placeholder{color:rgba(255,80,80,.4)}.ui.input.error input ::-ms-input-placeholder{color:rgba(255,80,80,.4)}.ui.input.error input :focus::-webkit-input-placeholder{color:rgba(255,80,80,.7)}.ui.input.error input :focus::-moz-placeholder{color:rgba(255,80,80,.7)}.ui.input.error input :focus::-ms-input-placeholder{color:rgba(255,80,80,.7)}.ui.transparent.input input{border-color:transparent!important;background-color:transparent!important;padding:0!important;box-shadow:none!important}.ui.transparent.icon.input>i.icon{width:1.1em}.ui.transparent.icon.input>input{padding-left:0!important;padding-right:2em!important}.ui.transparent[class*="left icon"].input>input{padding-left:2em!important;padding-right:0!important}.ui.transparent.inverted.input{color:#fff}.ui.transparent.inverted.input input{color:inherit}.ui.transparent.inverted.input input::-webkit-input-placeholder{color:rgba(255,255,255,.5)}.ui.transparent.inverted.input input::-moz-placeholder{color:rgba(255,255,255,.5)}.ui.transparent.inverted.input input::-ms-input-placeholder{color:rgba(255,255,255,.5)}.ui.icon.input>i.icon{cursor:default;position:absolute;line-height:1;text-align:center;top:0;right:0;margin:0;height:100%;width:2.67142857em;opacity:.5;border-radius:0 .28571429rem .28571429rem 0;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}.ui.icon.input>i.icon:not(.link){pointer-events:none}.ui.icon.input input{padding-right:2.67142857em!important}.ui.icon.input>i.icon:after,.ui.icon.input>i.icon:before{left:0;position:absolute;text-align:center;top:50%;width:100%;margin-top:-.5em}.ui.icon.input>i.link.icon{cursor:pointer}.ui.icon.input>i.circular.icon{top:.35em;right:.5em}.ui[class*="left icon"].input>i.icon{right:auto;left:1px;border-radius:.28571429rem 0 0 .28571429rem}.ui[class*="left icon"].input>i.circular.icon{right:auto;left:.5em}.ui[class*="left icon"].input>input{padding-left:2.67142857em!important;padding-right:1em!important}.ui.icon.input>input:focus~i.icon{opacity:1}.ui.labeled.input>.label{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;margin:0;font-size:1em}.ui.labeled.input>.label:not(.corner){padding-top:.78571429em;padding-bottom:.78571429em}.ui.labeled.input:not([class*="corner labeled"]):not([class*="right labeled"])>input{border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.ui.labeled.input:not([class*="corner labeled"]):not([class*="right labeled"])>.label{border-top-right-radius:0;border-bottom-right-radius:0}.ui[class*="right labeled"].input>input{border-right:none;border-top-right-radius:0!important;border-bottom-right-radius:0!important}.ui[class*="right labeled"].input>.label{border-top-left-radius:0;border-bottom-left-radius:0}.ui.labeled.input .corner.label{top:1px;right:1px;font-size:.64285714em;border-radius:0 .28571429rem 0 0}.ui[class*="corner labeled"]:not(.left).labeled.input input{padding-right:2.5em!important}.ui[class*="corner labeled"].icon.input:not(.left)>input{padding-right:3.25em!important}.ui[class*="corner labeled"].icon.input:not(.left)>.icon{margin-right:1.25em}.ui[class*="corner labeled"].left.labeled.input input{padding-left:2.5em!important}.ui[class*="corner labeled"].icon.input.left>input{padding-left:3.25em!important}.ui[class*="corner labeled"].icon.input.left>.icon{margin-left:1.25em}.ui.input>.ui.corner.label{top:1px;right:1px}.ui.input>.ui.left.corner.label{right:auto;left:1px}.ui.action.input>.button,.ui.action.input>.buttons{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.ui.action.input>.button,.ui.action.input>.buttons>.button{padding-top:.78571429em;padding-bottom:.78571429em;margin:0}.ui.action.input:not([class*="left action"])>input{border-right:none;border-top-right-radius:0!important;border-bottom-right-radius:0!important}.ui.action.input:not([class*="left action"])>.button,.ui.action.input:not([class*="left action"])>.buttons>.button,.ui.action.input:not([class*="left action"])>.dropdown{border-radius:0}.ui.action.input:not([class*="left action"])>.button:last-child,.ui.action.input:not([class*="left action"])>.buttons:last-child>.button,.ui.action.input:not([class*="left action"])>.dropdown:last-child{border-radius:0 .28571429rem .28571429rem 0}.ui[class*="left action"].input>.button,.ui[class*="left action"].input>.buttons>.button,.ui[class*="left action"].input>.dropdown{border-radius:0}.ui[class*="left action"].input>.button:first-child,.ui[class*="left action"].input>.buttons:first-child>.button,.ui[class*="left action"].input>.dropdown:first-child{border-radius:.28571429rem 0 0 .28571429rem}.ui[class*="left action"].input>input{border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.ui.inverted.input input{border:none}.ui.fluid.input{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.fluid.input>input{width:0!important}.ui.mini.input{font-size:.71428571em}.ui.small.input{font-size:.92857143em}.ui.input{font-size:1em}.ui.large.input{font-size:1.14285714em}.ui.big.input{font-size:1.28571429em}.ui.huge.input{font-size:1.42857143em}.ui.massive.input{font-size:1.71428571em}.ui.label{display:inline-block;white-space:nowrap;line-height:1;vertical-align:baseline;margin:0 .14285714em;background-color:#e8e8e8;border-color:#e8e8e8;background-image:none;padding:.5833em .833em;color:rgba(0,0,0,.6);text-transform:none;font-weight:700;border-radius:.28571429rem;-webkit-transition:background .1s ease;transition:background .1s ease}.ui.label:first-child{margin-left:0}.ui.label:last-child{margin-right:0}a.ui.label{cursor:pointer}.ui.label>a{cursor:pointer;color:inherit;opacity:.5;-webkit-transition:.1s opacity ease;transition:.1s opacity ease}.ui.label>a:hover{opacity:1}.ui.label>img{width:auto!important;vertical-align:middle;height:2.1666em!important}.ui.label>.icon{width:auto;margin:0 .75em 0 0}.ui.label>.detail{display:inline-block;vertical-align:top;font-weight:700;margin-left:1em;opacity:.8}.ui.label>.detail .icon{margin:0 .25em 0 0}.ui.label>.close.icon,.ui.label>.delete.icon{cursor:pointer;margin-right:0;margin-left:.5em;font-size:.92857143em;opacity:.5;-webkit-transition:background .1s ease;transition:background .1s ease}.ui.label>.delete.icon:hover{opacity:1}.ui.labels>.label{margin:0 .5em .5em 0}.ui.header>.ui.label{margin-top:-.29165em}.ui.attached.segment>.ui.top.left.attached.label,.ui.bottom.attached.segment>.ui.top.left.attached.label{border-top-left-radius:0}.ui.attached.segment>.ui.top.right.attached.label,.ui.bottom.attached.segment>.ui.top.right.attached.label{border-top-right-radius:0}.ui.top.attached.segment>.ui.bottom.left.attached.label{border-bottom-left-radius:0}.ui.top.attached.segment>.ui.bottom.right.attached.label{border-bottom-right-radius:0}.ui.top.attached.label:first-child+:not(.attached){margin-top:2rem!important}.ui.bottom.attached.label:first-child~:last-child:not(.attached){margin-top:0;margin-bottom:2rem!important}.ui.image.label{width:auto!important;margin-top:0;margin-bottom:0;max-width:9999px;vertical-align:baseline;text-transform:none;background:#e8e8e8;padding:.5833em .833em .5833em .5em;border-radius:.28571429rem;box-shadow:none}.ui.image.label img{display:inline-block;vertical-align:top;height:2.1666em;margin:-.5833em .5em -.5833em -.5em;border-radius:.28571429rem 0 0 .28571429rem}.ui.image.label .detail{background:rgba(0,0,0,.1);margin:-.5833em -.833em -.5833em .5em;padding:.5833em .833em;border-radius:0 .28571429rem .28571429rem 0}.ui.tag.label,.ui.tag.labels .label{margin-left:1em;position:relative;padding-left:1.5em;padding-right:1.5em;border-radius:0 .28571429rem .28571429rem 0}.ui.tag.label:before,.ui.tag.labels .label:before{position:absolute;-webkit-transform:translateY(-50%) translateX(50%) rotate(-45deg);-ms-transform:translateY(-50%) translateX(50%) rotate(-45deg);transform:translateY(-50%) translateX(50%) rotate(-45deg);top:50%;right:100%;content:'';background-color:#e8e8e8;background-image:none;width:1.56em;height:1.56em;-webkit-transition:background .1s ease;transition:background .1s ease}.ui.tag.label:after,.ui.tag.labels .label:after{position:absolute;content:'';top:50%;left:-.25em;margin-top:-.25em;background-color:#fff!important;width:.5em;height:.5em;box-shadow:0 -1px 1px 0 rgba(0,0,0,.3);border-radius:500rem}.ui.corner.label{position:absolute;top:0;right:0;margin:0;padding:0;text-align:center;width:4em;height:4em;z-index:1;-webkit-transition:border-color .1s ease;transition:border-color .1s ease;background-color:transparent!important}.ui.corner.label:after{position:absolute;content:"";right:0;top:0;z-index:-1;width:0;height:0;background-color:transparent!important;border-top:0 solid transparent;border-right:4em solid transparent;border-bottom:4em solid transparent;border-left:0 solid transparent;border-right-color:inherit;-webkit-transition:border-color .1s ease;transition:border-color .1s ease}.ui.corner.label .icon{cursor:default;position:relative;top:.64285714em;left:.78571429em;font-size:1.14285714em;margin:0}.ui.left.corner.label,.ui.left.corner.label:after{right:auto;left:0}.ui.left.corner.label:after{border-top:4em solid transparent;border-right:4em solid transparent;border-bottom:0 solid transparent;border-left:0 solid transparent;border-top-color:inherit}.ui.left.corner.label .icon{left:-.78571429em}.ui.segment>.ui.corner.label{top:-1px;right:-1px}.ui.segment>.ui.left.corner.label{right:auto;left:-1px}.ui.ribbon.label{position:relative;margin:0;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;border-radius:0 .28571429rem .28571429rem 0;border-color:rgba(0,0,0,.15)}.ui.ribbon.label:after{position:absolute;content:'';top:100%;left:0;background-color:transparent!important;border-style:solid;border-width:0 1.2em 1.2em 0;border-color:transparent;border-right-color:inherit;width:0;height:0}.ui.ribbon.label{left:calc(-1rem - 1.2em);margin-right:-1.2em;padding-left:calc(1rem + 1.2em);padding-right:1.2em}.ui[class*="right ribbon"].label{left:calc(100% + 1rem + 1.2em);padding-left:1.2em;padding-right:calc(1rem + 1.2em);text-align:left;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%);border-radius:.28571429rem 0 0 .28571429rem}.ui[class*="right ribbon"].label:after{left:auto;right:0;border-style:solid;border-width:1.2em 1.2em 0 0;border-color:transparent;border-top-color:inherit}.ui.card .image>.ribbon.label,.ui.image>.ribbon.label{position:absolute;top:1rem}.ui.card .image>.ui.ribbon.label,.ui.image>.ui.ribbon.label{left:calc(.05rem - 1.2em)}.ui.card .image>.ui[class*="right ribbon"].label,.ui.image>.ui[class*="right ribbon"].label{left:calc(100% + -.05rem + 1.2em);padding-left:.833em}.ui.attached.label,.ui.top.attached.label{width:100%;position:absolute;margin:0;top:0;left:0;padding:.75em 1em;border-radius:.21428571rem .21428571rem 0 0}.ui.bottom.attached.label{top:auto;bottom:0;border-radius:0 0 .21428571rem .21428571rem}.ui.top.left.attached.label{width:auto;margin-top:0!important;border-radius:.21428571rem 0 .28571429rem}.ui.top.right.attached.label{width:auto;left:auto;right:0;border-radius:0 .21428571rem 0 .28571429rem}.ui.bottom.left.attached.label{width:auto;top:auto;bottom:0;border-radius:0 .28571429rem 0 .21428571rem}.ui.bottom.right.attached.label{top:auto;bottom:0;left:auto;right:0;width:auto;border-radius:.28571429rem 0 .21428571rem}.ui.label.disabled{opacity:.5}a.ui.label:hover,a.ui.labels .label:hover{background-color:#e0e0e0;border-color:#e0e0e0;background-image:none;color:rgba(0,0,0,.8)}.ui.labels a.label:hover:before,a.ui.label:hover:before{background-color:#e0e0e0;background-image:none;color:rgba(0,0,0,.8)}.ui.active.label{background-color:#d0d0d0;border-color:#d0d0d0;background-image:none;color:rgba(0,0,0,.95)}.ui.active.label:before{background-color:#d0d0d0;background-image:none;color:rgba(0,0,0,.95)}a.ui.active.label:hover,a.ui.labels .active.label:hover{background-color:#c8c8c8;border-color:#c8c8c8;background-image:none;color:rgba(0,0,0,.95)}.ui.labels a.active.label:ActiveHover:before,a.ui.active.label:ActiveHover:before{background-color:#c8c8c8;background-image:none;color:rgba(0,0,0,.95)}.ui.label.visible,.ui.labels.visible .label{display:inline-block!important}.ui.label.hidden,.ui.labels.hidden .label{display:none!important}.ui.red.label,.ui.red.labels .label{background-color:#db2828!important;border-color:#db2828!important;color:#fff!important}.ui.labels .red.label:before,.ui.red.label:before,.ui.red.labels .label:before{background-color:#db2828!important}.ui.red.corner.label,.ui.red.corner.label:hover{background-color:transparent!important}a.ui.red.label:hover,a.ui.red.labels .label:hover{background-color:#d01919!important;border-color:#d01919!important;color:#fff!important}.ui.labels a.red.label:hover:before,.ui.red.labels a.label:hover:before,a.ui.red.label:hover:before{background-color:#d01919!important}.ui.red.ribbon.label{border-color:#b21e1e!important}.ui.orange.label,.ui.orange.labels .label{background-color:#f2711c!important;border-color:#f2711c!important;color:#fff!important}.ui.labels .orange.label:before,.ui.orange.label:before,.ui.orange.labels .label:before{background-color:#f2711c!important}.ui.orange.corner.label,.ui.orange.corner.label:hover{background-color:transparent!important}a.ui.orange.label:hover,a.ui.orange.labels .label:hover{background-color:#f26202!important;border-color:#f26202!important;color:#fff!important}.ui.labels a.orange.label:hover:before,.ui.orange.labels a.label:hover:before,a.ui.orange.label:hover:before{background-color:#f26202!important}.ui.orange.ribbon.label{border-color:#cf590c!important}.ui.yellow.label,.ui.yellow.labels .label{background-color:#fbbd08!important;border-color:#fbbd08!important;color:#fff!important}.ui.labels .yellow.label:before,.ui.yellow.label:before,.ui.yellow.labels .label:before{background-color:#fbbd08!important}.ui.yellow.corner.label,.ui.yellow.corner.label:hover{background-color:transparent!important}a.ui.yellow.label:hover,a.ui.yellow.labels .label:hover{background-color:#eaae00!important;border-color:#eaae00!important;color:#fff!important}.ui.labels a.yellow.label:hover:before,.ui.yellow.labels a.label:hover:before,a.ui.yellow.label:hover:before{background-color:#eaae00!important}.ui.yellow.ribbon.label{border-color:#cd9903!important}.ui.olive.label,.ui.olive.labels .label{background-color:#b5cc18!important;border-color:#b5cc18!important;color:#fff!important}.ui.labels .olive.label:before,.ui.olive.label:before,.ui.olive.labels .label:before{background-color:#b5cc18!important}.ui.olive.corner.label,.ui.olive.corner.label:hover{background-color:transparent!important}a.ui.olive.label:hover,a.ui.olive.labels .label:hover{background-color:#a7bd0d!important;border-color:#a7bd0d!important;color:#fff!important}.ui.labels a.olive.label:hover:before,.ui.olive.labels a.label:hover:before,a.ui.olive.label:hover:before{background-color:#a7bd0d!important}.ui.olive.ribbon.label{border-color:#198f35!important}.ui.green.label,.ui.green.labels .label{background-color:#21ba45!important;border-color:#21ba45!important;color:#fff!important}.ui.green.label:before,.ui.green.labels .label:before,.ui.labels .green.label:before{background-color:#21ba45!important}.ui.green.corner.label,.ui.green.corner.label:hover{background-color:transparent!important}a.ui.green.label:hover,a.ui.green.labels .label:hover{background-color:#16ab39!important;border-color:#16ab39!important;color:#fff!important}.ui.green.labels a.label:hover:before,.ui.labels a.green.label:hover:before,a.ui.green.label:hover:before{background-color:#16ab39!important}.ui.green.ribbon.label{border-color:#198f35!important}.ui.teal.label,.ui.teal.labels .label{background-color:#00b5ad!important;border-color:#00b5ad!important;color:#fff!important}.ui.labels .teal.label:before,.ui.teal.label:before,.ui.teal.labels .label:before{background-color:#00b5ad!important}.ui.teal.corner.label,.ui.teal.corner.label:hover{background-color:transparent!important}a.ui.teal.label:hover,a.ui.teal.labels .label:hover{background-color:#009c95!important;border-color:#009c95!important;color:#fff!important}.ui.labels a.teal.label:hover:before,.ui.teal.labels a.label:hover:before,a.ui.teal.label:hover:before{background-color:#009c95!important}.ui.teal.ribbon.label{border-color:#00827c!important}.ui.blue.label,.ui.blue.labels .label{background-color:#2185d0!important;border-color:#2185d0!important;color:#fff!important}.ui.blue.label:before,.ui.blue.labels .label:before,.ui.labels .blue.label:before{background-color:#2185d0!important}.ui.blue.corner.label,.ui.blue.corner.label:hover{background-color:transparent!important}a.ui.blue.label:hover,a.ui.blue.labels .label:hover{background-color:#1678c2!important;border-color:#1678c2!important;color:#fff!important}.ui.blue.labels a.label:hover:before,.ui.labels a.blue.label:hover:before,a.ui.blue.label:hover:before{background-color:#1678c2!important}.ui.blue.ribbon.label{border-color:#1a69a4!important}.ui.violet.label,.ui.violet.labels .label{background-color:#6435c9!important;border-color:#6435c9!important;color:#fff!important}.ui.labels .violet.label:before,.ui.violet.label:before,.ui.violet.labels .label:before{background-color:#6435c9!important}.ui.violet.corner.label,.ui.violet.corner.label:hover{background-color:transparent!important}a.ui.violet.label:hover,a.ui.violet.labels .label:hover{background-color:#5829bb!important;border-color:#5829bb!important;color:#fff!important}.ui.labels a.violet.label:hover:before,.ui.violet.labels a.label:hover:before,a.ui.violet.label:hover:before{background-color:#5829bb!important}.ui.violet.ribbon.label{border-color:#502aa1!important}.ui.purple.label,.ui.purple.labels .label{background-color:#a333c8!important;border-color:#a333c8!important;color:#fff!important}.ui.labels .purple.label:before,.ui.purple.label:before,.ui.purple.labels .label:before{background-color:#a333c8!important}.ui.purple.corner.label,.ui.purple.corner.label:hover{background-color:transparent!important}a.ui.purple.label:hover,a.ui.purple.labels .label:hover{background-color:#9627ba!important;border-color:#9627ba!important;color:#fff!important}.ui.labels a.purple.label:hover:before,.ui.purple.labels a.label:hover:before,a.ui.purple.label:hover:before{background-color:#9627ba!important}.ui.purple.ribbon.label{border-color:#82299f!important}.ui.pink.label,.ui.pink.labels .label{background-color:#e03997!important;border-color:#e03997!important;color:#fff!important}.ui.labels .pink.label:before,.ui.pink.label:before,.ui.pink.labels .label:before{background-color:#e03997!important}.ui.pink.corner.label,.ui.pink.corner.label:hover{background-color:transparent!important}a.ui.pink.label:hover,a.ui.pink.labels .label:hover{background-color:#e61a8d!important;border-color:#e61a8d!important;color:#fff!important}.ui.labels a.pink.label:hover:before,.ui.pink.labels a.label:hover:before,a.ui.pink.label:hover:before{background-color:#e61a8d!important}.ui.pink.ribbon.label{border-color:#c71f7e!important}.ui.brown.label,.ui.brown.labels .label{background-color:#a5673f!important;border-color:#a5673f!important;color:#fff!important}.ui.brown.label:before,.ui.brown.labels .label:before,.ui.labels .brown.label:before{background-color:#a5673f!important}.ui.brown.corner.label,.ui.brown.corner.label:hover{background-color:transparent!important}a.ui.brown.label:hover,a.ui.brown.labels .label:hover{background-color:#975b33!important;border-color:#975b33!important;color:#fff!important}.ui.brown.labels a.label:hover:before,.ui.labels a.brown.label:hover:before,a.ui.brown.label:hover:before{background-color:#975b33!important}.ui.brown.ribbon.label{border-color:#805031!important}.ui.grey.label,.ui.grey.labels .label{background-color:#767676!important;border-color:#767676!important;color:#fff!important}.ui.grey.label:before,.ui.grey.labels .label:before,.ui.labels .grey.label:before{background-color:#767676!important}.ui.grey.corner.label,.ui.grey.corner.label:hover{background-color:transparent!important}a.ui.grey.label:hover,a.ui.grey.labels .label:hover{background-color:#838383!important;border-color:#838383!important;color:#fff!important}.ui.grey.labels a.label:hover:before,.ui.labels a.grey.label:hover:before,a.ui.grey.label:hover:before{background-color:#838383!important}.ui.grey.ribbon.label{border-color:#5d5d5d!important}.ui.black.label,.ui.black.labels .label{background-color:#1b1c1d!important;border-color:#1b1c1d!important;color:#fff!important}.ui.black.label:before,.ui.black.labels .label:before,.ui.labels .black.label:before{background-color:#1b1c1d!important}.ui.black.corner.label,.ui.black.corner.label:hover{background-color:transparent!important}a.ui.black.label:hover,a.ui.black.labels .label:hover{background-color:#27292a!important;border-color:#27292a!important;color:#fff!important}.ui.black.labels a.label:hover:before,.ui.labels a.black.label:hover:before,a.ui.black.label:hover:before{background-color:#27292a!important}.ui.black.ribbon.label{border-color:#5d5d5d!important}.ui.fluid.labels>.label,.ui.label.fluid{width:100%;box-sizing:border-box}.ui.inverted.label,.ui.inverted.labels .label{color:rgba(255,255,255,.9)!important}.ui.horizontal.label,.ui.horizontal.labels .label{margin:0 .5em 0 0;padding:.4em .833em;min-width:3em;text-align:center}.ui.circular.label,.ui.circular.labels .label{min-width:2em;min-height:2em;padding:.5em!important;line-height:1em;text-align:center;border-radius:500rem}.ui.empty.circular.label,.ui.empty.circular.labels .label{min-width:0;min-height:0;overflow:hidden;width:.5em;height:.5em;vertical-align:baseline}.ui.pointing.label{position:relative}.ui.attached.pointing.label{position:absolute}.ui.pointing.label:before{position:absolute;content:'';-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:2;width:.6em;height:.6em;-webkit-transition:background .1s ease;transition:background .1s ease;background-color:#e8e8e8;background-image:none}.ui.pointing.above.label,.ui.pointing.label{margin-top:1em}.ui.pointing.above.label:before,.ui.pointing.label:before{margin-left:-.3em;top:-.3em;left:50%}.ui.pointing.below.label,.ui.pointing.bottom.label{margin-top:0;margin-bottom:1em}.ui.pointing.below.label:before,.ui.pointing.bottom.label:before{margin-left:-.3em;top:auto;right:auto;bottom:-.3em;left:50%}.ui.pointing.left.label{margin-top:0;margin-left:.6em}.ui.pointing.left.label:before{margin-top:-.3em;bottom:auto;right:auto;top:50%;left:0}.ui.pointing.right.label{margin-top:0;margin-right:.6em}.ui.pointing.right.label:before{margin-top:-.3em;right:-.3em;top:50%;bottom:auto;left:auto}.ui.floating.label{position:absolute;z-index:100;top:-1em;left:100%;margin:0 0 0 -1.5em!important}.ui.mini.label,.ui.mini.labels .label{font-size:.64285714rem}.ui.tiny.label,.ui.tiny.labels .label{font-size:.71428571rem}.ui.small.label,.ui.small.labels .label{font-size:.78571429rem}.ui.label,.ui.labels .label{font-size:.85714286rem}.ui.large.label,.ui.large.labels .label{font-size:1rem}.ui.big.label,.ui.big.labels .label{font-size:1.28571429rem}.ui.huge.label,.ui.huge.labels .label{font-size:1.42857143rem}.ui.massive.label,.ui.massive.labels .label{font-size:1.71428571rem}.ui.list,ol.ui.list,ul.ui.list{list-style-type:none;margin:1em 0;padding:0}.ui.list:first-child,ol.ui.list:first-child,ul.ui.list:first-child{margin-top:0;padding-top:0}.ui.list:last-child,ol.ui.list:last-child,ul.ui.list:last-child{margin-bottom:0;padding-bottom:0}.ui.list .list>.item,.ui.list>.item,ol.ui.list li,ul.ui.list li{display:list-item;table-layout:fixed;list-style-type:none;list-style-position:outside;padding:.21428571em 0;line-height:1.14285714em}.ui.list>.item:after,.ui.list>.list>.item,ol.ui.list>li:first-child:after,ul.ui.list>li:first-child:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.list .list>.item:first-child,.ui.list>.item:first-child,ol.ui.list li:first-child,ul.ui.list li:first-child{padding-top:0}.ui.list .list>.item:last-child,.ui.list>.item:last-child,ol.ui.list li:last-child,ul.ui.list li:last-child{padding-bottom:0}.ui.list .list,ol.ui.list ol,ul.ui.list ul{clear:both;margin:0;padding:.75em 0 .25em .5em}.ui.list .list>.item,ol.ui.list ol li,ul.ui.list ul li{padding:.14285714em 0;line-height:inherit}.ui.list .list>.item>i.icon,.ui.list>.item>i.icon{display:table-cell;margin:0;padding-top:.07142857em;padding-right:.28571429em;vertical-align:top;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.list .list>.item>i.icon:only-child,.ui.list>.item>i.icon:only-child{display:inline-block;vertical-align:top}.ui.list .list>.item>.image,.ui.list>.item>.image{display:table-cell;background-color:transparent;margin:0;padding-right:.5em;vertical-align:top}.ui.list .list>.item>.image img,.ui.list>.item>.image img{vertical-align:top}.ui.list .list>.item>.image:only-child,.ui.list .list>.item>img.image,.ui.list>.item>.image:only-child,.ui.list>.item>img.image{display:inline-block;padding-right:0}.ui.list .list>.item>.content,.ui.list>.item>.content{line-height:1.14285714em}.ui.list .list>.item>.icon+.content,.ui.list .list>.item>.image+.content,.ui.list>.item>.icon+.content,.ui.list>.item>.image+.content{display:table-cell;padding:0 0 0 .5em;vertical-align:top}.ui.list .list>.item>img.image+.content,.ui.list>.item>img.image+.content{display:inline-block}.ui.list .list>.item>.content>.list,.ui.list>.item>.content>.list{margin-left:0;padding-left:0}.ui.list .list>.item .header,.ui.list>.item .header{display:block;margin:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;color:rgba(0,0,0,.87)}.ui.list .list>.item .description,.ui.list>.item .description{display:block;color:rgba(0,0,0,.7)}.ui.list .list>.item a,.ui.list>.item a{cursor:pointer}.ui.list .list>a.item,.ui.list>a.item{cursor:pointer;color:#4183c4}.ui.list .list>a.item:hover,.ui.list>a.item:hover{color:#1e70bf}.ui.list .list>a.item i.icon,.ui.list>a.item i.icon{color:rgba(0,0,0,.4)}.ui.list .list>.item a.header,.ui.list>.item a.header{cursor:pointer;color:#4183c4!important}.ui.list .list>.item a.header:hover,.ui.list>.item a.header:hover{color:#1e70bf!important}.ui.list .list>.item [class*="left floated"],.ui.list>.item [class*="left floated"]{float:left;margin:0 1em 0 0}.ui.list .list>.item [class*="right floated"],.ui.list>.item [class*="right floated"]{float:right;margin:0 0 0 1em}.ui.menu .ui.list .list>.item,.ui.menu .ui.list>.item{display:list-item;table-layout:fixed;background-color:transparent;list-style-type:none;list-style-position:outside;padding:.21428571em 0;line-height:1.14285714em}.ui.menu .ui.list .list>.item:before,.ui.menu .ui.list>.item:before{border:none;background:0 0}.ui.menu .ui.list .list>.item:first-child,.ui.menu .ui.list>.item:first-child{padding-top:0}.ui.menu .ui.list .list>.item:last-child,.ui.menu .ui.list>.item:last-child{padding-bottom:0}.ui.horizontal.list{display:inline-block;font-size:0}.ui.horizontal.list>.item{display:inline-block;margin-left:1em;font-size:1rem}.ui.horizontal.list:not(.celled)>.item:first-child{margin-left:0!important;padding-left:0!important}.ui.horizontal.list .list{padding-left:0;padding-bottom:0}.ui.horizontal.list .list>.item>.content,.ui.horizontal.list .list>.item>.icon,.ui.horizontal.list .list>.item>.image,.ui.horizontal.list>.item>.content,.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.image{vertical-align:middle}.ui.horizontal.list>.item:first-child,.ui.horizontal.list>.item:last-child{padding-top:.21428571em;padding-bottom:.21428571em}.ui.horizontal.list>.item>i.icon{margin:0;padding:0 .25em 0 0}.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.icon+.content{float:none;display:inline-block}.ui.list .list>.disabled.item,.ui.list>.disabled.item{pointer-events:none;color:rgba(40,40,40,.3)!important}.ui.inverted.list .list>.disabled.item,.ui.inverted.list>.disabled.item{color:rgba(225,225,225,.3)!important}.ui.list .list>a.item:hover .icon,.ui.list>a.item:hover .icon{color:rgba(0,0,0,.87)}.ui.inverted.list .list>a.item>.icon,.ui.inverted.list>a.item>.icon{color:rgba(255,255,255,.7)}.ui.inverted.list .list>.item .header,.ui.inverted.list>.item .header{color:rgba(255,255,255,.9)}.ui.inverted.list .list>.item .description,.ui.inverted.list>.item .description{color:rgba(255,255,255,.7)}.ui.inverted.list .list>a.item,.ui.inverted.list>a.item{cursor:pointer;color:rgba(255,255,255,.9)}.ui.inverted.list .list>a.item:hover,.ui.inverted.list>a.item:hover{color:#1e70bf}.ui.inverted.list .item a:not(.ui){color:rgba(255,255,255,.9)!important}.ui.inverted.list .item a:not(.ui):hover{color:#1e70bf!important}.ui.list [class*="top aligned"],.ui.list[class*="top aligned"] .content,.ui.list[class*="top aligned"] .image{vertical-align:top!important}.ui.list [class*="middle aligned"],.ui.list[class*="middle aligned"] .content,.ui.list[class*="middle aligned"] .image{vertical-align:middle!important}.ui.list [class*="bottom aligned"],.ui.list[class*="bottom aligned"] .content,.ui.list[class*="bottom aligned"] .image{vertical-align:bottom!important}.ui.link.list .item,.ui.link.list .item a:not(.ui),.ui.link.list a.item{color:rgba(0,0,0,.4);-webkit-transition:.1s color ease;transition:.1s color ease}.ui.link.list .item a:not(.ui):hover,.ui.link.list a.item:hover{color:rgba(0,0,0,.8)}.ui.link.list .item a:not(.ui):active,.ui.link.list a.item:active{color:rgba(0,0,0,.9)}.ui.link.list .active.item,.ui.link.list .active.item a:not(.ui){color:rgba(0,0,0,.95)}.ui.inverted.link.list .item,.ui.inverted.link.list .item a:not(.ui),.ui.inverted.link.list a.item{color:rgba(255,255,255,.5)}.ui.inverted.link.list .active.item a:not(.ui),.ui.inverted.link.list .item a:not(.ui):active,.ui.inverted.link.list .item a:not(.ui):hover,.ui.inverted.link.list a.active.item,.ui.inverted.link.list a.item:active,.ui.inverted.link.list a.item:hover{color:#fff}.ui.selection.list .list>.item,.ui.selection.list>.item{cursor:pointer;background:0 0;padding:.5em;margin:0;color:rgba(0,0,0,.4);border-radius:.5em;-webkit-transition:.1s color ease,.1s padding-left ease,.1s background-color ease;transition:.1s color ease,.1s padding-left ease,.1s background-color ease}.ui.selection.list .list>.item:last-child,.ui.selection.list>.item:last-child{margin-bottom:0}.ui.selection.list.list>.item:hover,.ui.selection.list>.item:hover{background:rgba(0,0,0,.03);color:rgba(0,0,0,.8)}.ui.selection.list .list>.item:active,.ui.selection.list>.item:active{background:rgba(0,0,0,.05);color:rgba(0,0,0,.9)}.ui.selection.list .list>.item.active,.ui.selection.list>.item.active{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.inverted.selection.list>.item{background:0 0;color:rgba(255,255,255,.5)}.ui.inverted.selection.list>.item:hover{background:rgba(255,255,255,.02);color:#fff}.ui.inverted.selection.list>.item.active,.ui.inverted.selection.list>.item:active{background:rgba(255,255,255,.08);color:#fff}.ui.celled.selection.list .list>.item,.ui.celled.selection.list>.item,.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{border-radius:0}.ui.animated.list>.item{-webkit-transition:.25s color ease .1s,.25s padding-left ease .1s,.25s background-color ease .1s;transition:.25s color ease .1s,.25s padding-left ease .1s,.25s background-color ease .1s}.ui.animated.list:not(.horizontal)>.item:hover{padding-left:1em}.ui.fitted.list:not(.selection) .list>.item,.ui.fitted.list:not(.selection)>.item{padding-left:0;padding-right:0}.ui.fitted.selection.list .list>.item,.ui.fitted.selection.list>.item{margin-left:-.5em;margin-right:-.5em}.ui.bulleted.list,ul.ui.list{margin-left:1.25rem}.ui.bulleted.list .list>.item,.ui.bulleted.list>.item,ul.ui.list li{position:relative}.ui.bulleted.list .list>.item:before,.ui.bulleted.list>.item:before,ul.ui.list li:before{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;position:absolute;top:auto;left:auto;margin-left:-1.25rem;content:'•';opacity:1;color:inherit;vertical-align:top}.ui.bulleted.list .list,ul.ui.list ul{padding-left:1.25rem}.ui.horizontal.bulleted.list,ul.ui.horizontal.bulleted.list{margin-left:0}.ui.horizontal.bulleted.list>.item,ul.ui.horizontal.bulleted.list li{margin-left:1.75rem}.ui.horizontal.bulleted.list>.item:first-child,ul.ui.horizontal.bulleted.list li:first-child{margin-left:0}.ui.horizontal.bulleted.list>.item::before,ul.ui.horizontal.bulleted.list li::before{color:rgba(0,0,0,.87)}.ui.horizontal.bulleted.list>.item:first-child::before,ul.ui.horizontal.bulleted.list li:first-child::before{display:none}.ui.ordered.list,.ui.ordered.list .list,ol.ui.list,ol.ui.list ol{counter-reset:ordered;margin-left:1.25rem;list-style-type:none}.ui.ordered.list .list>.item,.ui.ordered.list>.item,ol.ui.list li{list-style-type:none;position:relative}.ui.ordered.list .list>.item:before,.ui.ordered.list>.item:before,ol.ui.list li:before{position:absolute;top:auto;left:auto;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;margin-left:-1.25rem;counter-increment:ordered;content:counters(ordered,".") " ";text-align:right;color:rgba(0,0,0,.87);vertical-align:middle;opacity:.8}.ui.ordered.inverted.list .list>.item:before,.ui.ordered.inverted.list>.item:before,ol.ui.inverted.list li:before{color:rgba(255,255,255,.7)}.ui.ordered.list .list,ol.ui.list ol{margin-left:1em}.ui.ordered.list .list>.item:before,ol.ui.list ol li:before{margin-left:-2em}.ui.ordered.horizontal.list,ol.ui.horizontal.list{margin-left:0}.ui.ordered.horizontal.list .list>.item:before,.ui.ordered.horizontal.list>.item:before,ol.ui.horizontal.list li:before{position:static;margin:0 .5em 0 0}.ui.divided.list>.item{border-top:1px solid rgba(34,36,38,.15)}.ui.divided.list .item .list>.item,.ui.divided.list .list>.item,.ui.divided.list .list>.item:first-child,.ui.divided.list>.item:first-child{border-top:none}.ui.divided.list:not(.horizontal) .list>.item:first-child{border-top-width:1px}.ui.divided.bulleted.list .list,.ui.divided.bulleted.list:not(.horizontal){margin-left:0;padding-left:0}.ui.divided.bulleted.list>.item:not(.horizontal){padding-left:1.25rem}.ui.divided.ordered.list{margin-left:0}.ui.divided.ordered.list .list>.item,.ui.divided.ordered.list>.item{padding-left:1.25rem}.ui.divided.ordered.list .item .list{margin-left:0;margin-right:0;padding-bottom:.21428571em}.ui.divided.ordered.list .item .list>.item{padding-left:1em}.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{margin:0;border-radius:0}.ui.divided.horizontal.list{margin-left:0}.ui.divided.horizontal.list>.item{border-top:none;border-left:1px solid rgba(34,36,38,.15);margin:0;padding-left:.5em;padding-right:.5em;line-height:.6}.ui.horizontal.divided.list>.item:first-child{border-left:none}.ui.divided.inverted.horizontal.list>.item,.ui.divided.inverted.list>.item,.ui.divided.inverted.list>.list{border-color:rgba(255,255,255,.1)}.ui.celled.list>.item,.ui.celled.list>.list{border-top:1px solid rgba(34,36,38,.15);padding-left:.5em;padding-right:.5em}.ui.celled.list>.item:last-child{border-bottom:1px solid rgba(34,36,38,.15)}.ui.celled.list>.item:first-child,.ui.celled.list>.item:last-child{padding-top:.21428571em;padding-bottom:.21428571em}.ui.celled.list .item .list>.item{border-width:0}.ui.celled.list .list>.item:first-child{border-top-width:0}.ui.celled.bulleted.list{margin-left:0}.ui.celled.bulleted.list .list>.item,.ui.celled.bulleted.list>.item{padding-left:1.25rem}.ui.celled.bulleted.list .item .list{margin-left:-1.25rem;margin-right:-1.25rem;padding-bottom:.21428571em}.ui.celled.ordered.list{margin-left:0}.ui.celled.ordered.list .list>.item,.ui.celled.ordered.list>.item{padding-left:1.25rem}.ui.celled.ordered.list .item .list{margin-left:0;margin-right:0;padding-bottom:.21428571em}.ui.celled.ordered.list .list>.item{padding-left:1em}.ui.horizontal.celled.list{margin-left:0}.ui.horizontal.celled.list .list>.item,.ui.horizontal.celled.list>.item{border-top:none;border-left:1px solid rgba(34,36,38,.15);margin:0;padding-left:.5em;padding-right:.5em;line-height:.6}.ui.horizontal.celled.list .list>.item:last-child,.ui.horizontal.celled.list>.item:last-child{border-bottom:none;border-right:1px solid rgba(34,36,38,.15)}.ui.celled.inverted.horizontal.list .list>.item,.ui.celled.inverted.horizontal.list>.item,.ui.celled.inverted.list>.item,.ui.celled.inverted.list>.list{border-color:1px solid rgba(255,255,255,.1)}.ui.relaxed.list:not(.horizontal)>.item{padding-top:.42857143em;padding-bottom:.42857143em}.ui.relaxed.list:not(.horizontal) .list>.item{padding-top:.21428571em;padding-bottom:.21428571em}.ui.horizontal.relaxed.list>.item{padding-left:1rem;padding-right:1rem}.ui[class*="very relaxed"].list:not(.horizontal)>.item{padding-top:.85714286em;padding-bottom:.85714286em}.ui[class*="very relaxed"].list:not(.horizontal) .list>.item{padding-top:.28571429em;padding-bottom:.28571429em}.ui.horizontal[class*="very relaxed"].list .list>.item,.ui.horizontal[class*="very relaxed"].list>.item{padding-left:1.5rem;padding-right:1.5rem}.ui.mini.list{font-size:.71428571em}.ui.tiny.list{font-size:.85714286em}.ui.small.list{font-size:.92857143em}.ui.list{font-size:1em}.ui.large.list{font-size:1.14285714em}.ui.big.list{font-size:1.28571429em}.ui.huge.list{font-size:1.42857143em}.ui.massive.list{font-size:1.71428571em}.ui.mini.horizontal.list .list>.item,.ui.mini.horizontal.list>.item{font-size:.71428571rem}.ui.tiny.horizontal.list .list>.item,.ui.tiny.horizontal.list>.item{font-size:.85714286rem}.ui.small.horizontal.list .list>.item,.ui.small.horizontal.list>.item{font-size:.92857143rem}.ui.horizontal.list .list>.item,.ui.horizontal.list>.item{font-size:1rem}.ui.large.horizontal.list .list>.item,.ui.large.horizontal.list>.item{font-size:1.14285714rem}.ui.big.horizontal.list .list>.item,.ui.big.horizontal.list>.item{font-size:1.28571429rem}.ui.huge.horizontal.list .list>.item,.ui.huge.horizontal.list>.item{font-size:1.42857143rem}.ui.massive.horizontal.list .list>.item,.ui.massive.horizontal.list>.item{font-size:1.71428571rem}.ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0;text-align:center;z-index:1000;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.ui.loader:before{position:absolute;content:'';top:0;left:50%;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loader:after{position:absolute;content:'';top:0;left:50%;-webkit-animation:loader .6s linear;animation:loader .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}@-webkit-keyframes loader{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loader{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.loader:after,.ui.loader:before{width:2.2585em;height:2.2585em;margin:0 0 0 -1.12925em}.ui.mini.loader:after,.ui.mini.loader:before{width:1.2857em;height:1.2857em;margin:0 0 0 -.64285em}.ui.small.loader:after,.ui.small.loader:before{width:1.7142em;height:1.7142em;margin:0 0 0 -.8571em}.ui.large.loader:after,.ui.large.loader:before{width:4.5714em;height:4.5714em;margin:0 0 0 -2.2857em}.ui.dimmer .loader{display:block}.ui.dimmer .ui.loader{color:rgba(255,255,255,.9)}.ui.dimmer .ui.loader:before{border-color:rgba(255,255,255,.15)}.ui.dimmer .ui.loader:after{border-color:#fff transparent transparent}.ui.inverted.dimmer .ui.loader{color:rgba(0,0,0,.87)}.ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,.1)}.ui.inverted.dimmer .ui.loader:after{border-color:#767676 transparent transparent}.ui.text.loader{width:auto!important;height:auto!important;text-align:center;font-style:normal}.ui.indeterminate.loader:after{-webkit-animation-direction:reverse;animation-direction:reverse;-webkit-animation-duration:1.2s;animation-duration:1.2s}.ui.loader.active,.ui.loader.visible{display:block}.ui.loader.disabled,.ui.loader.hidden{display:none}.ui.inverted.dimmer .ui.mini.loader,.ui.mini.loader{width:1.2857em;height:1.2857em;font-size:.71428571em}.ui.inverted.dimmer .ui.small.loader,.ui.small.loader{width:1.7142em;height:1.7142em;font-size:.92857143em}.ui.inverted.dimmer .ui.loader,.ui.loader{width:2.2585em;height:2.2585em;font-size:1em}.ui.inverted.dimmer .ui.loader.large,.ui.loader.large{width:4.5714em;height:4.5714em;font-size:1.14285714em}.ui.mini.text.loader{min-width:1.2857em;padding-top:1.99998571em}.ui.small.text.loader{min-width:1.7142em;padding-top:2.42848571em}.ui.text.loader{min-width:2.2585em;padding-top:2.97278571em}.ui.large.text.loader{min-width:4.5714em;padding-top:5.28568571em}.ui.inverted.loader{color:rgba(255,255,255,.9)}.ui.inverted.loader:before{border-color:rgba(255,255,255,.15)}.ui.inverted.loader:after{border-top-color:#fff}.ui.inline.loader{position:relative;vertical-align:middle;margin:0;left:0;top:0;-webkit-transform:none;-ms-transform:none;transform:none}.ui.inline.loader.active,.ui.inline.loader.visible{display:inline-block}.ui.centered.inline.loader.active,.ui.centered.inline.loader.visible{display:block;margin-left:auto;margin-right:auto}.ui.rail{position:absolute;top:0;width:300px;height:100%;font-size:1rem}.ui.left.rail{left:auto;right:100%;padding:0 2rem 0 0;margin:0 2rem 0 0}.ui.right.rail{left:100%;right:auto;padding:0 0 0 2rem;margin:0 0 0 2rem}.ui.left.internal.rail{left:0;right:auto;padding:0 0 0 2rem;margin:0 0 0 2rem}.ui.right.internal.rail{left:auto;right:0;padding:0 2rem 0 0;margin:0 2rem 0 0}.ui.dividing.rail{width:302.5px}.ui.left.dividing.rail{padding:0 2.5rem 0 0;margin:0 2.5rem 0 0;border-right:1px solid rgba(34,36,38,.15)}.ui.right.dividing.rail{border-left:1px solid rgba(34,36,38,.15);padding:0 0 0 2.5rem;margin:0 0 0 2.5rem}.ui.close.rail{width:301px}.ui.close.left.rail{padding:0 1em 0 0;margin:0 1em 0 0}.ui.close.right.rail{padding:0 0 0 1em;margin:0 0 0 1em}.ui.very.close.rail{width:300.5px}.ui.very.close.left.rail{padding:0 .5em 0 0;margin:0 .5em 0 0}.ui.very.close.right.rail{padding:0 0 0 .5em;margin:0 0 0 .5em}.ui.attached.left.rail,.ui.attached.right.rail{padding:0;margin:0}.ui.reveal{display:inline-block;position:relative!important;font-size:0!important}.ui.reveal>.visible.content{position:absolute!important;top:0!important;left:0!important;z-index:3!important;-webkit-transition:all .5s ease .1s;transition:all .5s ease .1s}.ui.reveal>.hidden.content{position:relative!important;z-index:2!important}.ui.active.reveal .visible.content,.ui.reveal:hover .visible.content{z-index:4!important}.ui.slide.reveal{position:relative!important;overflow:hidden!important;white-space:nowrap}.ui.slide.reveal>.content{display:block;float:left;margin:0;-webkit-transition:-webkit-transform .5s ease .1s;transition:transform .5s ease .1s}.ui.slide.reveal>.visible.content{position:relative!important}.ui.slide.reveal>.hidden.content{position:absolute!important;left:0!important;width:100%!important;-webkit-transform:translateX(100%)!important;-ms-transform:translateX(100%)!important;transform:translateX(100%)!important}.ui.slide.active.reveal>.visible.content,.ui.slide.reveal:hover>.visible.content{-webkit-transform:translateX(-100%)!important;-ms-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.slide.active.reveal>.hidden.content,.ui.slide.reveal:hover>.hidden.content,.ui.slide.right.reveal>.visible.content{-webkit-transform:translateX(0)!important;-ms-transform:translateX(0)!important;transform:translateX(0)!important}.ui.slide.right.reveal>.hidden.content{-webkit-transform:translateX(-100%)!important;-ms-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.slide.right.active.reveal>.visible.content,.ui.slide.right.reveal:hover>.visible.content{-webkit-transform:translateX(100%)!important;-ms-transform:translateX(100%)!important;transform:translateX(100%)!important}.ui.slide.right.active.reveal>.hidden.content,.ui.slide.right.reveal:hover>.hidden.content{-webkit-transform:translateX(0)!important;-ms-transform:translateX(0)!important;transform:translateX(0)!important}.ui.slide.up.reveal>.hidden.content{-webkit-transform:translateY(100%)!important;-ms-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.slide.up.active.reveal>.visible.content,.ui.slide.up.reveal:hover>.visible.content{-webkit-transform:translateY(-100%)!important;-ms-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.slide.up.active.reveal>.hidden.content,.ui.slide.up.reveal:hover>.hidden.content{-webkit-transform:translateY(0)!important;-ms-transform:translateY(0)!important;transform:translateY(0)!important}.ui.slide.down.reveal>.hidden.content{-webkit-transform:translateY(-100%)!important;-ms-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.slide.down.active.reveal>.visible.content,.ui.slide.down.reveal:hover>.visible.content{-webkit-transform:translateY(100%)!important;-ms-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.slide.down.active.reveal>.hidden.content,.ui.slide.down.reveal:hover>.hidden.content{-webkit-transform:translateY(0)!important;-ms-transform:translateY(0)!important;transform:translateY(0)!important}.ui.fade.reveal>.visible.content{opacity:1}.ui.fade.active.reveal>.visible.content,.ui.fade.reveal:hover>.visible.content{opacity:0}.ui.move.reveal{position:relative!important;overflow:hidden!important;white-space:nowrap}.ui.move.reveal>.content{display:block;float:left;margin:0;-webkit-transition:-webkit-transform .5s cubic-bezier(.175,.885,.32,1) .1s;transition:transform .5s cubic-bezier(.175,.885,.32,1) .1s}.ui.move.reveal>.visible.content{position:relative!important}.ui.move.reveal>.hidden.content{position:absolute!important;left:0!important;width:100%!important}.ui.move.active.reveal>.visible.content,.ui.move.reveal:hover>.visible.content{-webkit-transform:translateX(-100%)!important;-ms-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.move.right.active.reveal>.visible.content,.ui.move.right.reveal:hover>.visible.content{-webkit-transform:translateX(100%)!important;-ms-transform:translateX(100%)!important;transform:translateX(100%)!important}.ui.move.up.active.reveal>.visible.content,.ui.move.up.reveal:hover>.visible.content{-webkit-transform:translateY(-100%)!important;-ms-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.move.down.active.reveal>.visible.content,.ui.move.down.reveal:hover>.visible.content{-webkit-transform:translateY(100%)!important;-ms-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.rotate.reveal>.visible.content{-webkit-transition-duration:.5s;transition-duration:.5s;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.ui.rotate.reveal>.visible.content,.ui.rotate.right.reveal>.visible.content{-webkit-transform-origin:bottom right;-ms-transform-origin:bottom right;transform-origin:bottom right}.ui.rotate.active.reveal>.visible.conten,.ui.rotate.reveal:hover>.visible.content,.ui.rotate.right.active.reveal>.visible.content,.ui.rotate.right.reveal:hover>.visible.content{-webkit-transform:rotate(110deg);-ms-transform:rotate(110deg);transform:rotate(110deg)}.ui.rotate.left.reveal>.visible.content{-webkit-transform-origin:bottom left;-ms-transform-origin:bottom left;transform-origin:bottom left}.ui.rotate.left.active.reveal>.visible.content,.ui.rotate.left.reveal:hover>.visible.content{-webkit-transform:rotate(-110deg);-ms-transform:rotate(-110deg);transform:rotate(-110deg)}.ui.disabled.reveal{opacity:1!important}.ui.disabled.reveal>.content{-webkit-transition:none!important;transition:none!important}.ui.disabled.active.reveal>.visible.content,.ui.disabled.reveal:hover>.visible.content{position:static!important;display:block!important;opacity:1!important;top:0!important;left:0!important;right:auto!important;bottom:auto!important;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.ui.disabled.active.reveal>.hidden.content,.ui.disabled.reveal:hover>.hidden.content{display:none!important}.ui.visible.reveal{overflow:visible}.ui.instant.reveal>.content{-webkit-transition-delay:0s!important;transition-delay:0s!important}.ui.reveal>.content{font-size:1rem!important}.ui.segment{position:relative;background-color:#fff;box-shadow:0 1px 2px 0 rgba(34,36,38,.15);margin:1rem 0;padding:1em;border-radius:.28571429rem;border:1px solid rgba(34,36,38,.15)}.ui.segment:first-child{margin-top:0}.ui.segment:last-child{margin-bottom:0}.ui.vertical.segment{margin:0;padding-left:0;padding-right:0;background-color:transparent;border-radius:0;box-shadow:none;border:none;border-bottom:1px solid rgba(34,36,38,.15)}.ui.vertical.segment:last-child{border-bottom:none}.ui.inverted.segment>.ui.header{color:#fff}.ui[class*="bottom attached"].segment>[class*="top attached"].label{border-top-left-radius:0;border-top-right-radius:0}.ui[class*="top attached"].segment>[class*="bottom attached"].label{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.attached.segment:not(.top):not(.bottom)>[class*="top attached"].label{border-top-left-radius:0;border-top-right-radius:0}.ui.attached.segment:not(.top):not(.bottom)>[class*="bottom attached"].label{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.grid .ui.segment.column,.ui.page.grid.segment{padding-top:2em;padding-bottom:2em}.ui.grid.segment{margin:1rem 0;border-radius:.28571429rem}.ui.basic.table.segment{background:#fff;border:1px solid rgba(34,36,38,.15);box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.ui[class*="very basic"].table.segment{padding:1em}.ui.piled.segment,.ui.piled.segments{margin:3em 0;box-shadow:'';z-index:auto}.ui.piled.segment:first-child{margin-top:0}.ui.piled.segment:last-child{margin-bottom:0}.ui.piled.segment:after,.ui.piled.segment:before,.ui.piled.segments:after,.ui.piled.segments:before{background-color:#fff;visibility:visible;content:'';display:block;height:100%;left:0;position:absolute;width:100%;border:1px solid rgba(34,36,38,.15);box-shadow:''}.ui.piled.segment:before,.ui.piled.segments:before{-webkit-transform:rotate(-1.2deg);-ms-transform:rotate(-1.2deg);transform:rotate(-1.2deg);top:0;z-index:-2}.ui.piled.segment:after,.ui.piled.segments:after{-webkit-transform:rotate(1.2deg);-ms-transform:rotate(1.2deg);transform:rotate(1.2deg);top:0;z-index:-1}.ui[class*="top attached"].piled.segment{margin-top:3em;margin-bottom:0}.ui.piled.segment[class*="top attached"]:first-child{margin-top:0}.ui.piled.segment[class*="bottom attached"]{margin-top:0;margin-bottom:3em}.ui.piled.segment[class*="bottom attached"]:last-child{margin-bottom:0}.ui.stacked.segment{padding-bottom:1.4em}.ui.stacked.segment:after,.ui.stacked.segment:before,.ui.stacked.segments:after,.ui.stacked.segments:before{content:'';position:absolute;bottom:-3px;left:0;border-top:1px solid rgba(34,36,38,.15);background-color:rgba(0,0,0,.03);width:100%;height:6px;visibility:visible}.ui.stacked.segment:before,.ui.stacked.segments:before{display:none}.ui.tall.stacked.segment:before,.ui.tall.stacked.segments:before{display:block;bottom:0}.ui.stacked.inverted.segment:after,.ui.stacked.inverted.segment:before,.ui.stacked.inverted.segments:after,.ui.stacked.inverted.segments:before{background-color:rgba(0,0,0,.03);border-top:1px solid rgba(34,36,38,.35)}.ui.padded.segment{padding:1.5em}.ui[class*="very padded"].segment{padding:3em}.ui.compact.segment{display:table}.ui.compact.segments{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}.ui.compact.segments .segment,.ui.segments .compact.segment{display:block;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.ui.circular.segment{display:table-cell;padding:2em;text-align:center;vertical-align:middle;border-radius:500em}.ui.raised.segment,.ui.raised.segments{box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08)}.ui.segments{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;position:relative;margin:1rem 0;border:1px solid rgba(34,36,38,.15);box-shadow:0 1px 2px 0 rgba(34,36,38,.15);border-radius:.28571429rem}.ui.segments:first-child{margin-top:0}.ui.segments:last-child{margin-bottom:0}.ui.segments>.segment{top:0;bottom:0;border-radius:0;margin:0;width:auto;box-shadow:none;border:none;border-top:1px solid rgba(34,36,38,.15)}.ui.segments:not(.horizontal)>.segment:first-child{border-top:none;margin-top:0;bottom:0;margin-bottom:0;top:0;border-radius:.28571429rem .28571429rem 0 0}.ui.segments:not(.horizontal)>.segment:last-child{top:0;bottom:0;margin-top:0;margin-bottom:0;box-shadow:none,0 1px 2px 0 rgba(34,36,38,.15);border-radius:0 0 .28571429rem .28571429rem}.ui.segments>.ui.segments{border-top:1px solid rgba(34,36,38,.15);margin:1rem}.ui.segments>.segments:first-child{border-top:none}.ui.segments>.segment+.segments:not(.horizontal){margin-top:0}.ui.horizontal.segments{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;padding:0;background-color:#fff;box-shadow:0 1px 2px 0 rgba(34,36,38,.15);margin:1rem 0;border-radius:.28571429rem;border:1px solid rgba(34,36,38,.15)}.ui.segments>.horizontal.segments{margin:0;background-color:transparent;border-radius:0;border:none;box-shadow:none;border-top:1px solid rgba(34,36,38,.15)}.ui.horizontal.segments>.segment{-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;margin:0;min-width:0;background-color:transparent;border-radius:0;border:none;box-shadow:none;border-left:1px solid rgba(34,36,38,.15)}.ui.horizontal.segments>.segment:first-child{border-left:none}.ui.disabled.segment{opacity:.45;color:rgba(40,40,40,.3)}.ui.loading.segment{position:relative;cursor:default;point-events:none;text-shadow:none!important;color:transparent!important;-webkit-transition:all 0s linear;transition:all 0s linear}.ui.loading.segment:before{position:absolute;content:'';top:0;left:0;background:rgba(255,255,255,.8);width:100%;height:100%;border-radius:.28571429rem;z-index:100}.ui.loading.segment:after{position:absolute;content:'';top:50%;left:50%;margin:-1.5em 0 0 -1.5em;width:3em;height:3em;-webkit-animation:segment-spin .6s linear;animation:segment-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 rgba(0,0,0,.1) rgba(0,0,0,.1);border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent;visibility:visible;z-index:101}@-webkit-keyframes segment-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes segment-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.basic.segment{background:none;box-shadow:none;border:none;border-radius:0}.ui.clearing.segment:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui.red.segment:not(.inverted){border-top:2px solid #db2828}.ui.inverted.red.segment{background-color:#db2828!important;color:#fff!important}.ui.orange.segment:not(.inverted){border-top:2px solid #f2711c}.ui.inverted.orange.segment{background-color:#f2711c!important;color:#fff!important}.ui.yellow.segment:not(.inverted){border-top:2px solid #fbbd08}.ui.inverted.yellow.segment{background-color:#fbbd08!important;color:#fff!important}.ui.olive.segment:not(.inverted){border-top:2px solid #b5cc18}.ui.inverted.olive.segment{background-color:#b5cc18!important;color:#fff!important}.ui.green.segment:not(.inverted){border-top:2px solid #21ba45}.ui.inverted.green.segment{background-color:#21ba45!important;color:#fff!important}.ui.teal.segment:not(.inverted){border-top:2px solid #00b5ad}.ui.inverted.teal.segment{background-color:#00b5ad!important;color:#fff!important}.ui.blue.segment:not(.inverted){border-top:2px solid #2185d0}.ui.inverted.blue.segment{background-color:#2185d0!important;color:#fff!important}.ui.violet.segment:not(.inverted){border-top:2px solid #6435c9}.ui.inverted.violet.segment{background-color:#6435c9!important;color:#fff!important}.ui.purple.segment:not(.inverted){border-top:2px solid #a333c8}.ui.inverted.purple.segment{background-color:#a333c8!important;color:#fff!important}.ui.pink.segment:not(.inverted){border-top:2px solid #e03997}.ui.inverted.pink.segment{background-color:#e03997!important;color:#fff!important}.ui.brown.segment:not(.inverted){border-top:2px solid #a5673f}.ui.inverted.brown.segment{background-color:#a5673f!important;color:#fff!important}.ui.grey.segment:not(.inverted){border-top:2px solid #767676}.ui.inverted.grey.segment{background-color:#767676!important;color:#fff!important}.ui.black.segment:not(.inverted){border-top:2px solid #1b1c1d}.ui.inverted.black.segment{background-color:#1b1c1d!important;color:#fff!important}.ui[class*="left aligned"].segment{text-align:left}.ui[class*="right aligned"].segment{text-align:right}.ui[class*="center aligned"].segment{text-align:center}.ui.floated.segment,.ui[class*="left floated"].segment{float:left;margin-right:1em}.ui[class*="right floated"].segment{float:right;margin-left:1em}.ui.inverted.segment{border:none;box-shadow:none}.ui.inverted.segment .segment{color:rgba(0,0,0,.87)}.ui.inverted.segment .inverted.segment{color:#fff}.ui.inverted.segment,.ui.primary.inverted.segment{background-color:#1b1c1d;color:#fff}.ui.inverted.attached.segment,.ui.inverted.block.segment{border-color:#555}.ui.secondary.segment{background:#f3f4f5;color:rgba(0,0,0,.6)}.ui.secondary.inverted.segment{background:-webkit-linear-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.2) 100%) #4c4f52;background:linear-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.2) 100%) #4c4f52;color:rgba(255,255,255,.8)}.ui.tertiary.segment{background:#dcddde;color:rgba(0,0,0,.6)}.ui.tertiary.inverted.segment{background:-webkit-linear-gradient(rgba(255,255,255,.35) 0,rgba(255,255,255,.35) 100%) #717579;background:linear-gradient(rgba(255,255,255,.35) 0,rgba(255,255,255,.35) 100%) #717579;color:rgba(255,255,255,.8)}.ui.segment.attached{top:0;bottom:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);border-radius:0;box-shadow:none;border:1px solid #d4d4d5}.ui.segment.attached+.ui.segment.attached:not(.top){border-top:none}.ui[class*="top attached"].segment{top:0;bottom:0;margin-top:1rem;margin-bottom:0;border-radius:.28571429rem .28571429rem 0 0}.ui.segment[class*="top attached"]:first-child{margin-top:0}.ui.segment[class*="bottom attached"]{top:0;bottom:0;margin-top:0;margin-bottom:1rem;box-shadow:none,0 1px 2px 0 rgba(34,36,38,.15);border-radius:0 0 .28571429rem .28571429rem}.ui.segment[class*="bottom attached"]:last-child{margin-bottom:0}.ui.steps{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;margin:1em 0;background:0 0;box-shadow:none;line-height:1.14285714em;border-radius:.28571429rem;border:1px solid rgba(34,36,38,.15)}.ui.steps:first-child{margin-top:0}.ui.steps:last-child{margin-bottom:0}.ui.steps .step{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;vertical-align:middle;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:1.14285714em 2em;background:#fff;color:rgba(0,0,0,.87);box-shadow:none;border-radius:0;border:none;border-right:1px solid rgba(34,36,38,.15);-webkit-transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease;transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease}.ui.steps .step:after{position:absolute;z-index:2;content:'';top:50%;right:0;border:solid;background-color:#fff;width:1.14285714em;height:1.14285714em;border-color:rgba(34,36,38,.15);border-width:0 1px 1px 0;-webkit-transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease;transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease;-webkit-transform:translateY(-50%) translateX(50%) rotate(-45deg);-ms-transform:translateY(-50%) translateX(50%) rotate(-45deg);transform:translateY(-50%) translateX(50%) rotate(-45deg)}.ui.steps .step:first-child{padding-left:2em;border-radius:.28571429rem 0 0 .28571429rem}.ui.steps .step:only-child{border-radius:.28571429rem}.ui.steps .step:last-child{border-radius:0 .28571429rem .28571429rem 0;border-right:none;margin-right:0}.ui.steps .step .title{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.14285714em;font-weight:700}.ui.steps .step>.title{width:100%}.ui.steps .step .description{font-weight:400;font-size:.92857143em;color:rgba(0,0,0,.87)}.ui.steps .step>.description{width:100%}.ui.steps .step .title~.description{margin-top:.25em}.ui.steps .step>.icon{line-height:1;font-size:2.5em;margin:0 1rem 0 0}.ui.steps .step>.icon,.ui.steps .step>.icon~.content{display:block;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle}.ui.steps .step>.icon~.content{-webkit-box-flex:1 0 auto;-webkit-flex-grow:1 0 auto;-ms-flex-positive:1 0 auto;flex-grow:1 0 auto}.ui.steps:not(.vertical) .step>.icon{width:auto}.ui.steps .link.step,.ui.steps a.step{cursor:pointer}.ui.ordered.steps{counter-reset:ordered}.ui.ordered.steps .step:before{display:block;position:static;text-align:center;content:counters(ordered,".");-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle;margin-right:1rem;font-size:2.5em;counter-increment:ordered;font-family:inherit;font-weight:700}.ui.ordered.steps .step>*{display:block;-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle}.ui.vertical.steps{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:visible}.ui.vertical.steps .step{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;border-radius:0;padding:1.14285714em 2em;border-right:none;border-bottom:1px solid rgba(34,36,38,.15)}.ui.vertical.steps .step:first-child{padding:1.14285714em 2em;border-radius:.28571429rem .28571429rem 0 0}.ui.vertical.steps .step:last-child{border-bottom:none;border-radius:0 0 .28571429rem .28571429rem}.ui.vertical.steps .step:after{top:50%;right:0;border-width:0 1px 1px 0;display:none}.ui.vertical.steps .active.step:after{display:block}.ui.vertical.steps .step:last-child:after{display:none}.ui.vertical.steps .active.step:last-child:after{display:block}@media only screen and (max-width:767px){.ui.steps{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;overflow:visible;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.steps .step{width:100%!important;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;border-radius:0;padding:1.14285714em 2em}.ui.steps .step:first-child{padding:1.14285714em 2em;border-radius:.28571429rem .28571429rem 0 0}.ui.steps .step:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui.steps .step:after{display:none!important}.ui.steps .step .content{text-align:center}.ui.ordered.steps .step:before,.ui.steps .step>.icon{margin:0 0 1rem}}.ui.steps .link.step:hover,.ui.steps .link.step:hover::after,.ui.steps a.step:hover,.ui.steps a.step:hover::after{background:#f9fafb;color:rgba(0,0,0,.8)}.ui.steps .link.step:active,.ui.steps .link.step:active::after,.ui.steps a.step:active,.ui.steps a.step:active::after{background:#f3f4f5;color:rgba(0,0,0,.9)}.ui.steps .step.active{cursor:auto;background:#f3f4f5}.ui.steps .step.active:after{background:#f3f4f5}.ui.steps .step.active .title{color:#4183c4}.ui.ordered.steps .step.active:before,.ui.steps .active.step .icon{color:rgba(0,0,0,.85)}.ui.steps .active.step:after,.ui.steps .step:after{display:block}.ui.steps .active.step:last-child:after,.ui.steps .step:last-child:after{display:none}.ui.steps .link.active.step:hover,.ui.steps .link.active.step:hover::after,.ui.steps a.active.step:hover,.ui.steps a.active.step:hover::after{cursor:pointer;background:#dcddde;color:rgba(0,0,0,.87)}.ui.ordered.steps .step.completed:before,.ui.steps .step.completed>.icon:before{color:#21ba45;font-family:Step;content:'\e800'}.ui.steps .disabled.step{cursor:auto;background:#fff;pointer-events:none}.ui.steps .disabled.step,.ui.steps .disabled.step .description,.ui.steps .disabled.step .title{color:rgba(40,40,40,.3)}.ui.steps .disabled.step:after{background:#fff}@media only screen and (max-width:992px){.ui[class*="tablet stackable"].steps{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;overflow:visible;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui[class*="tablet stackable"].steps .step{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;border-radius:0;padding:1.14285714em 2em}.ui[class*="tablet stackable"].steps .step:first-child{padding:1.14285714em 2em;border-radius:.28571429rem .28571429rem 0 0}.ui[class*="tablet stackable"].steps .step:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui[class*="tablet stackable"].steps .step:after{display:none!important}.ui[class*="tablet stackable"].steps .step .content{text-align:center}.ui[class*="tablet stackable"].ordered.steps .step:before,.ui[class*="tablet stackable"].steps .step>.icon{margin:0 0 1rem}}.ui.fluid.steps{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%}.ui.attached.steps{width:calc(100% + 2px)!important;margin:0 -1px -1px;max-width:calc(100% + 2px);border-radius:.28571429rem .28571429rem 0 0}.ui.attached.steps .step:first-child{border-radius:.28571429rem 0 0}.ui.attached.steps .step:last-child{border-radius:0 .28571429rem 0 0}.ui.bottom.attached.steps{margin:-1px -1px 0;border-radius:0 0 .28571429rem .28571429rem}.ui.bottom.attached.steps .step:first-child{border-radius:0 0 0 .28571429rem}.ui.bottom.attached.steps .step:last-child{border-radius:0 0 .28571429rem}.ui.eight.steps,.ui.five.steps,.ui.four.steps,.ui.one.steps,.ui.seven.steps,.ui.six.steps,.ui.three.steps,.ui.two.steps{width:100%}.ui.eight.steps>.step,.ui.five.steps>.step,.ui.four.steps>.step,.ui.one.steps>.step,.ui.seven.steps>.step,.ui.six.steps>.step,.ui.three.steps>.step,.ui.two.steps>.step{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.ui.one.steps>.step{width:100%}.ui.two.steps>.step{width:50%}.ui.three.steps>.step{width:33.333%}.ui.four.steps>.step{width:25%}.ui.five.steps>.step{width:20%}.ui.six.steps>.step{width:16.666%}.ui.seven.steps>.step{width:14.285%}.ui.eight.steps>.step{width:12.5%}.ui.small.step,.ui.small.steps .step{font-size:.92857143rem}.ui.step,.ui.steps .step{font-size:1rem}.ui.large.step,.ui.large.steps .step{font-size:1.14285714rem}@font-face{font-family:Step;src:url(data:application/x-font-ttf;charset=utf-8;;base64,AAEAAAAOAIAAAwBgT1MvMj3hSQEAAADsAAAAVmNtYXDQEhm3AAABRAAAAUpjdnQgBkn/lAAABuwAAAAcZnBnbYoKeDsAAAcIAAAJkWdhc3AAAAAQAAAG5AAAAAhnbHlm32cEdgAAApAAAAC2aGVhZAErPHsAAANIAAAANmhoZWEHUwNNAAADgAAAACRobXR4CykAAAAAA6QAAAAMbG9jYQA4AFsAAAOwAAAACG1heHAApgm8AAADuAAAACBuYW1lzJ0aHAAAA9gAAALNcG9zdK69QJgAAAaoAAAAO3ByZXCSoZr/AAAQnAAAAFYAAQO4AZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6ADoAQNS/2oAWgMLAE8AAAABAAAAAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADoAf//AAAAAOgA//8AABgBAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADpAKYABUAHEAZDwEAAQFCAAIBAmoAAQABagAAAGEUFxQDEisBFAcBBiInASY0PwE2Mh8BATYyHwEWA6QP/iAQLBD+6g8PTBAsEKQBbhAsEEwPAhYWEP4gDw8BFhAsEEwQEKUBbxAQTBAAAAH//f+xA18DCwAMABJADwABAQpDAAAACwBEFRMCESsBFA4BIi4CPgEyHgEDWXLG6MhuBnq89Lp+AV51xHR0xOrEdHTEAAAAAAEAAAABAADDeRpdXw889QALA+gAAAAAzzWYjQAAAADPNWBN//3/sQOkAwsAAAAIAAIAAAAAAAAAAQAAA1L/agBaA+gAAP/3A6QAAQAAAAAAAAAAAAAAAAAAAAMD6AAAA+gAAANZAAAAAAAAADgAWwABAAAAAwAWAAEAAAAAAAIABgATAG4AAAAtCZEAAAAAAAAAEgDeAAEAAAAAAAAANQAAAAEAAAAAAAEACAA1AAEAAAAAAAIABwA9AAEAAAAAAAMACABEAAEAAAAAAAQACABMAAEAAAAAAAUACwBUAAEAAAAAAAYACABfAAEAAAAAAAoAKwBnAAEAAAAAAAsAEwCSAAMAAQQJAAAAagClAAMAAQQJAAEAEAEPAAMAAQQJAAIADgEfAAMAAQQJAAMAEAEtAAMAAQQJAAQAEAE9AAMAAQQJAAUAFgFNAAMAAQQJAAYAEAFjAAMAAQQJAAoAVgFzAAMAAQQJAAsAJgHJQ29weXJpZ2h0IChDKSAyMDE0IGJ5IG9yaWdpbmFsIGF1dGhvcnMgQCBmb250ZWxsby5jb21mb250ZWxsb1JlZ3VsYXJmb250ZWxsb2ZvbnRlbGxvVmVyc2lvbiAxLjBmb250ZWxsb0dlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAEMAbwBwAHkAcgBpAGcAaAB0ACAAKABDACkAIAAyADAAMQA0ACAAYgB5ACAAbwByAGkAZwBpAG4AYQBsACAAYQB1AHQAaABvAHIAcwAgAEAAIABmAG8AbgB0AGUAbABsAG8ALgBjAG8AbQBmAG8AbgB0AGUAbABsAG8AUgBlAGcAdQBsAGEAcgBmAG8AbgB0AGUAbABsAG8AZgBvAG4AdABlAGwAbABvAFYAZQByAHMAaQBvAG4AIAAxAC4AMABmAG8AbgB0AGUAbABsAG8ARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAAAAAIAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAQIBAwljaGVja21hcmsGY2lyY2xlAAAAAAEAAf//AA8AAAAAAAAAAAAAAAAAAAAAADIAMgML/7EDC/+xsAAssCBgZi2wASwgZCCwwFCwBCZasARFW1ghIyEbilggsFBQWCGwQFkbILA4UFghsDhZWSCwCkVhZLAoUFghsApFILAwUFghsDBZGyCwwFBYIGYgiophILAKUFhgGyCwIFBYIbAKYBsgsDZQWCGwNmAbYFlZWRuwACtZWSOwAFBYZVlZLbACLCBFILAEJWFkILAFQ1BYsAUjQrAGI0IbISFZsAFgLbADLCMhIyEgZLEFYkIgsAYjQrIKAAIqISCwBkMgiiCKsAArsTAFJYpRWGBQG2FSWVgjWSEgsEBTWLAAKxshsEBZI7AAUFhlWS2wBCywB0MrsgACAENgQi2wBSywByNCIyCwACNCYbCAYrABYLAEKi2wBiwgIEUgsAJFY7ABRWJgRLABYC2wBywgIEUgsAArI7ECBCVgIEWKI2EgZCCwIFBYIbAAG7AwUFiwIBuwQFlZI7AAUFhlWbADJSNhRESwAWAtsAgssQUFRbABYUQtsAkssAFgICCwCUNKsABQWCCwCSNCWbAKQ0qwAFJYILAKI0JZLbAKLCC4BABiILgEAGOKI2GwC0NgIIpgILALI0IjLbALLEtUWLEHAURZJLANZSN4LbAMLEtRWEtTWLEHAURZGyFZJLATZSN4LbANLLEADENVWLEMDEOwAWFCsAorWbAAQ7ACJUKxCQIlQrEKAiVCsAEWIyCwAyVQWLEBAENgsAQlQoqKIIojYbAJKiEjsAFhIIojYbAJKiEbsQEAQ2CwAiVCsAIlYbAJKiFZsAlDR7AKQ0dgsIBiILACRWOwAUViYLEAABMjRLABQ7AAPrIBAQFDYEItsA4ssQAFRVRYALAMI0IgYLABYbUNDQEACwBCQopgsQ0FK7BtKxsiWS2wDyyxAA4rLbAQLLEBDistsBEssQIOKy2wEiyxAw4rLbATLLEEDistsBQssQUOKy2wFSyxBg4rLbAWLLEHDistsBcssQgOKy2wGCyxCQ4rLbAZLLAIK7EABUVUWACwDCNCIGCwAWG1DQ0BAAsAQkKKYLENBSuwbSsbIlktsBossQAZKy2wGyyxARkrLbAcLLECGSstsB0ssQMZKy2wHiyxBBkrLbAfLLEFGSstsCAssQYZKy2wISyxBxkrLbAiLLEIGSstsCMssQkZKy2wJCwgPLABYC2wJSwgYLANYCBDI7ABYEOwAiVhsAFgsCQqIS2wJiywJSuwJSotsCcsICBHICCwAkVjsAFFYmAjYTgjIIpVWCBHICCwAkVjsAFFYmAjYTgbIVktsCgssQAFRVRYALABFrAnKrABFTAbIlktsCkssAgrsQAFRVRYALABFrAnKrABFTAbIlktsCosIDWwAWAtsCssALADRWOwAUVisAArsAJFY7ABRWKwACuwABa0AAAAAABEPiM4sSoBFSotsCwsIDwgRyCwAkVjsAFFYmCwAENhOC2wLSwuFzwtsC4sIDwgRyCwAkVjsAFFYmCwAENhsAFDYzgtsC8ssQIAFiUgLiBHsAAjQrACJUmKikcjRyNhIFhiGyFZsAEjQrIuAQEVFCotsDAssAAWsAQlsAQlRyNHI2GwBkUrZYouIyAgPIo4LbAxLLAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjILAIQyCKI0cjRyNhI0ZgsARDsIBiYCCwACsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsIBiYSMgILAEJiNGYTgbI7AIQ0awAiWwCENHI0cjYWAgsARDsIBiYCMgsAArI7AEQ2CwACuwBSVhsAUlsIBisAQmYSCwBCVgZCOwAyVgZFBYIRsjIVkjICCwBCYjRmE4WS2wMiywABYgICCwBSYgLkcjRyNhIzw4LbAzLLAAFiCwCCNCICAgRiNHsAArI2E4LbA0LLAAFrADJbACJUcjRyNhsABUWC4gPCMhG7ACJbACJUcjRyNhILAFJbAEJUcjRyNhsAYlsAUlSbACJWGwAUVjIyBYYhshWWOwAUViYCMuIyAgPIo4IyFZLbA1LLAAFiCwCEMgLkcjRyNhIGCwIGBmsIBiIyAgPIo4LbA2LCMgLkawAiVGUlggPFkusSYBFCstsDcsIyAuRrACJUZQWCA8WS6xJgEUKy2wOCwjIC5GsAIlRlJYIDxZIyAuRrACJUZQWCA8WS6xJgEUKy2wOSywMCsjIC5GsAIlRlJYIDxZLrEmARQrLbA6LLAxK4ogIDywBCNCijgjIC5GsAIlRlJYIDxZLrEmARQrsARDLrAmKy2wOyywABawBCWwBCYgLkcjRyNhsAZFKyMgPCAuIzixJgEUKy2wPCyxCAQlQrAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjIEewBEOwgGJgILAAKyCKimEgsAJDYGQjsANDYWRQWLACQ2EbsANDYFmwAyWwgGJhsAIlRmE4IyA8IzgbISAgRiNHsAArI2E4IVmxJgEUKy2wPSywMCsusSYBFCstsD4ssDErISMgIDywBCNCIzixJgEUK7AEQy6wJistsD8ssAAVIEewACNCsgABARUUEy6wLCotsEAssAAVIEewACNCsgABARUUEy6wLCotsEEssQABFBOwLSotsEIssC8qLbBDLLAAFkUjIC4gRoojYTixJgEUKy2wRCywCCNCsEMrLbBFLLIAADwrLbBGLLIAATwrLbBHLLIBADwrLbBILLIBATwrLbBJLLIAAD0rLbBKLLIAAT0rLbBLLLIBAD0rLbBMLLIBAT0rLbBNLLIAADkrLbBOLLIAATkrLbBPLLIBADkrLbBQLLIBATkrLbBRLLIAADsrLbBSLLIAATsrLbBTLLIBADsrLbBULLIBATsrLbBVLLIAAD4rLbBWLLIAAT4rLbBXLLIBAD4rLbBYLLIBAT4rLbBZLLIAADorLbBaLLIAATorLbBbLLIBADorLbBcLLIBATorLbBdLLAyKy6xJgEUKy2wXiywMiuwNistsF8ssDIrsDcrLbBgLLAAFrAyK7A4Ky2wYSywMysusSYBFCstsGIssDMrsDYrLbBjLLAzK7A3Ky2wZCywMyuwOCstsGUssDQrLrEmARQrLbBmLLA0K7A2Ky2wZyywNCuwNystsGgssDQrsDgrLbBpLLA1Ky6xJgEUKy2waiywNSuwNistsGsssDUrsDcrLbBsLLA1K7A4Ky2wbSwrsAhlsAMkUHiwARUwLQAAAEu4AMhSWLEBAY5ZuQgACABjILABI0SwAyNwsgQoCUVSRLIKAgcqsQYBRLEkAYhRWLBAiFixBgNEsSYBiFFYuAQAiFixBgFEWVlZWbgB/4WwBI2xBQBEAAA=) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAoUAA4AAAAAEPQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPeFJAWNtYXAAAAGIAAAAOgAAAUrQEhm3Y3Z0IAAAAcQAAAAUAAAAHAZJ/5RmcGdtAAAB2AAABPkAAAmRigp4O2dhc3AAAAbUAAAACAAAAAgAAAAQZ2x5ZgAABtwAAACuAAAAtt9nBHZoZWFkAAAHjAAAADUAAAA2ASs8e2hoZWEAAAfEAAAAIAAAACQHUwNNaG10eAAAB+QAAAAMAAAADAspAABsb2NhAAAH8AAAAAgAAAAIADgAW21heHAAAAf4AAAAIAAAACAApgm8bmFtZQAACBgAAAF3AAACzcydGhxwb3N0AAAJkAAAACoAAAA7rr1AmHByZXAAAAm8AAAAVgAAAFaSoZr/eJxjYGTewTiBgZWBg6mKaQ8DA0MPhGZ8wGDIyMTAwMTAysyAFQSkuaYwOLxgeMHIHPQ/iyGKmZvBHyjMCJIDAPe9C2B4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF4w/v8PUvCCAURLMELVAwEjG8OIBwBk5AavAAB4nGNgQANGDEbM3P83gjAAELQD4XicnVXZdtNWFJU8ZHASOmSgoA7X3DhQ68qEKRgwaSrFdiEdHAitBB2kDHTkncc+62uOQrtWH/m07n09JLR0rbYsls++R1tn2DrnRhwjKn0aiGvUoZKXA6msPZZK90lc13Uvj5UMBnFdthJPSZuonSRKat3sUC7xWOsqWSdYJ+PlIFZPVZ5noAziFB5lSUQbRBuplyZJ4onjJ4kWZxAfJUkgJaMQp9LIUEI1GsRS1aFM6dCr1xNx00DKRqMedVhU90PFJ8c1p9SsA0YqVznCFevVRr4bpwMve5DEOsGzrYcxHnisfpQqkIqR6cg/dkpOlIaBVHHUoVbi6DCTX/eRTCrNQKaMYkWl7oG43f102xYxPXQ6vi5KlUaqurnOKJrt0fGogygP2cbppNzQ2fbw5RlTVKtdcbPtQGYNXErJbHSfRAAdJlLj6QFONZwCqRn1R8XZ588BEslclKo8VTKHegOZMzt7cTHtbiersnCknwcyb3Z2452HQ6dXh3/R+hdM4cxHj+Jifj5C+lBqfiJOJKVGWMzyp4YfcVcgQrkxiAsXyuBThDl0RdrZZl3jtTH2hs/5SqlhPQna6KP4fgr9TiQrHGdRo/VInM1j13Wt3GdQS7W7Fzsyr0OVIu7vCwuuM+eEYZ4WC1VfnvneBTT/Bohn/EDeNIVL+5YpSrRvm6JMu2iKCu0SVKVdNsUU7YoppmnPmmKG9h1TzNKeMzLj/8vc55H7HN7xkJv2XeSmfQ+5ad9HbtoPkJtWITdtHblpLyA3rUZu2lWjOnYEGgZpF1IVQdA0svph3Fab9UDWjDR8aWDyLmLI+upER521tcofxX914gsHcmmip7siF5viLq/bFj483e6rj5pG3bDV+MaR8jAeRnocmtBZ+c3hv+1N3S6a7jKqMugBFUwKwABl7UAC0zrbCaT1mqf48gdgXIZ4zkpDtVSfO4am7+V5X/exOfG+x+3GLrdcd3kJWdYNcmP28N9SZKrrH+UtrVQnR6wrJ49VaxhDKrwour6SlHu0tRu/KKmy8l6U1srnk5CbPYMbQlu27mGwI0xpyiUeXlOlKD3UUo6yQyxvKco84JSLC1qGxLgOdQ9qa8TpoXoYGwshhqG0vRBwSCldFd+0ynfxHqtr2Oj4xRXh6XpyEhGf4ir7UfBU10b96A7avGbdMoMpVaqn+4xPsa/b9lFZaaSOsxe3VAfXNOsaORXTT+Rr4HRvOGjdAz1UfDRBI1U1x+jGKGM0ljXl3wR0MVZ+w2jVYvs93E+dpFWsuUuY7JsT9+C0u/0q+7WcW0bW/dcGvW3kip8jMb8tCvw7B2K3ZA3UO5OBGAvIWdAYxhYmdxiug23EbfY/Jqf/34aFRXJXOxq7eerD1ZNRJXfZ8rjLTXZZ16M2R9VOGvsIjS0PN+bY4XIstsRgQbb+wf8x7gF3aVEC4NDIZZiI2nShnurh6h6rsW04VxIBds2x43QAegAuQd8cu9bzCYD13CPnLsB9cgh2yCH4lByCz8i5BfA5OQRfkEMwIIdgl5w7AA/IIXhIDsEeOQSPyNkE+JIcgq/IIYjJIUjIuQ3wmByCJ+QQfE0OwTdGrk5k/pYH2QD6zqKbQKmdGhzaOGRGrk3Y+zxY9oFFZB9aROqRkesT6lMeLPV7i0j9wSJSfzRyY0L9iQdL/dkiUn+xiNRnxpeZIymvDp7zjg7+BJfqrV4AAAAAAQAB//8AD3icY2BkAALmJUwzGEQZZBwk+RkZGBmdGJgYmbIYgMwsoGSiiLgIs5A2owg7I5uSOqOaiT2jmZE8I5gQY17C/09BQEfg3yt+fh8gvYQxD0j68DOJiQn8U+DnZxQDcQUEljLmCwBpBgbG/3//b2SOZ+Zm4GEQcuAH2sblDLSEm8FFVJhJEGgLH6OSHpMdo5EcI3Nk0bEXJ/LYqvZ82VXHGFd6pKTkyCsQwQAAq+QkqAAAeJxjYGRgYADiw5VSsfH8Nl8ZuJlfAEUYzpvO6IXQCb7///7fyLyEmRvI5WBgAokCAFb/DJAAAAB4nGNgZGBgDvqfxRDF/IKB4f935iUMQBEUwAwAi5YFpgPoAAAD6AAAA1kAAAAAAAAAOABbAAEAAAADABYAAQAAAAAAAgAGABMAbgAAAC0JkQAAAAB4nHWQy2rCQBSG//HSi0JbWui2sypKabxgN4IgWHTTbqS4LTHGJBIzMhkFX6Pv0IfpS/RZ+puMpShNmMx3vjlz5mQAXOMbAvnzxJGzwBmjnAs4Rc9ykf7Zcon8YrmMKt4sn9C/W67gAYHlKm7wwQqidM5ogU/LAlfi0nIBF+LOcpH+0XKJ3LNcxq14tXxC71muYCJSy1Xci6+BWm11FIRG1gZ12W62OnK6lYoqStxYumsTKp3KvpyrxPhxrBxPLfc89oN17Op9uJ8nvk4jlciW09yrkZ/42jX+bFc93QRtY+ZyrtVSDm2GXGm18D3jhMasuo3G3/MwgMIKW2hEvKoQBhI12jrnNppooUOaMkMyM8+KkMBFTONizR1htpIy7nPMGSW0PjNisgOP3+WRH5MC7o9ZRR+tHsYT0u6MKPOSfTns7jBrREqyTDezs9/eU2x4WpvWcNeuS511JTE8qCF5H7u1BY1H72S3Ymi7aPD95/9+AN1fhEsAeJxjYGKAAC4G7ICZgYGRiZGZMzkjNTk7N7Eomy05syg5J5WBAQBE1QZBAABLuADIUlixAQGOWbkIAAgAYyCwASNEsAMjcLIEKAlFUkSyCgIHKrEGAUSxJAGIUViwQIhYsQYDRLEmAYhRWLgEAIhYsQYBRFlZWVm4Af+FsASNsQUARAAA) format('woff')}.ui.breadcrumb{line-height:1;margin:1em 0;display:inline-block;vertical-align:middle}.ui.breadcrumb:first-child{margin-top:0}.ui.breadcrumb:last-child{margin-bottom:0}.ui.breadcrumb .divider{display:inline-block;opacity:.7;margin:0 .21428571rem;font-size:.92857143em;color:rgba(0,0,0,.4);vertical-align:baseline}.ui.breadcrumb a{color:#4183c4}.ui.breadcrumb a:hover{color:#1e70bf}.ui.breadcrumb .icon.divider{font-size:.85714286em;vertical-align:baseline}.ui.breadcrumb a.section{cursor:pointer}.ui.breadcrumb .section{display:inline-block;margin:0;padding:0}.ui.breadcrumb.segment{display:inline-block;padding:.71428571em 1em}.ui.breadcrumb .active.section{font-weight:700}.ui.mini.breadcrumb{font-size:.71428571rem}.ui.tiny.breadcrumb{font-size:.85714286rem}.ui.small.breadcrumb{font-size:.92857143rem}.ui.breadcrumb{font-size:1rem}.ui.large.breadcrumb{font-size:1.14285714rem}.ui.big.breadcrumb{font-size:1.28571429rem}.ui.huge.breadcrumb{font-size:1.42857143rem}.ui.massive.breadcrumb{font-size:1.71428571rem}.ui.form{position:relative;max-width:100%}.ui.form>p{margin:1em 0}.ui.form .field,.ui.form .fields .field{clear:both;margin:0 0 1em}.ui.form .field:last-child,.ui.form .fields:last-child .field{margin-bottom:0}.ui.form .field>label{display:block;margin:0 0 .28571429rem;color:rgba(0,0,0,.87);font-size:.92857143em;font-weight:700;text-transform:none}.ui.form .ui.input,.ui.form input:not([type]),.ui.form input[type=text],.ui.form input[type=email],.ui.form input[type=search],.ui.form input[type=password],.ui.form input[type=date],.ui.form input[type=datetime-local],.ui.form input[type=tel],.ui.form input[type=time],.ui.form input[type=url],.ui.form input[type=number],.ui.form textarea{width:100%;vertical-align:top}.ui.form input:not([type]),.ui.form input[type=text],.ui.form input[type=email],.ui.form input[type=search],.ui.form input[type=password],.ui.form input[type=date],.ui.form input[type=datetime-local],.ui.form input[type=tel],.ui.form input[type=time],.ui.form input[type=url],.ui.form input[type=number]{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;margin:0;outline:0;-webkit-appearance:none;tap-highlight-color:rgba(255,255,255,0);line-height:1.2142em;padding:.67861429em 1em;font-size:1em;background:#fff;border:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87);border-radius:.28571429rem;box-shadow:0 0 0 0 transparent inset;-webkit-transition:color .1s ease,border-color .1s ease;transition:color .1s ease,border-color .1s ease}.ui.form .ui.input>input{width:0!important}.ui.form textarea{margin:0;-webkit-appearance:none;tap-highlight-color:rgba(255,255,255,0);padding:.78571429em 1em;background:#fff;border:1px solid rgba(34,36,38,.15);outline:0;color:rgba(0,0,0,.87);border-radius:.28571429rem;box-shadow:0 0 0 0 transparent inset;-webkit-transition:color .1s ease,border-color .1s ease;transition:color .1s ease,border-color .1s ease;font-size:1em;line-height:1.2857;resize:vertical}.ui.form textarea:not([rows]){height:12em;min-height:8em;max-height:24em}.ui.form input[type=checkbox],.ui.form textarea{vertical-align:top}.ui.form input.attached{width:auto}.ui.form select{display:block;height:auto;width:100%;background:#fff;border:1px solid rgba(34,36,38,.15);border-radius:.28571429rem;box-shadow:0 0 0 0 transparent inset;padding:.62em 1em;color:rgba(0,0,0,.87);-webkit-transition:color .1s ease,border-color .1s ease;transition:color .1s ease,border-color .1s ease}.ui.form .field>.selection.dropdown{width:100%}.ui.form .field>.selection.dropdown>.dropdown.icon{float:right}.ui.form .inline.field>.selection.dropdown{width:auto}.ui.form .inline.field>.selection.dropdown>.dropdown.icon{float:none}.ui.form .divider{clear:both;margin:1em 0}.ui.form .error.message,.ui.form .success.message,.ui.form .warning.message{display:none}.ui.form .message:first-child{margin-top:0}.ui.form .field .prompt.label{white-space:nowrap}.ui.form .inline.field .prompt{margin:-.5em 0 -.5em 1em}.ui.form .inline.field .prompt:before{margin-top:-.3em;bottom:auto;right:auto;top:50%;left:0}.ui.form .field.field input:-webkit-autofill{box-shadow:0 0 0 100px ivory inset!important;border-color:#e5dfa1!important}.ui.form .field.field input:-webkit-autofill:focus{box-shadow:0 0 0 100px ivory inset!important;border-color:#d5c315!important}.ui.form .error.error input:-webkit-autofill{box-shadow:0 0 0 100px #fffaf0 inset!important;border-color:#e0b4b4!important}.ui.form ::-webkit-input-placeholder{color:rgba(140,140,140,.87)}.ui.form ::-ms-input-placeholder{color:rgba(140,140,140,.87)}.ui.form ::-moz-placeholder{color:rgba(140,140,140,.87)}.ui.form :focus::-webkit-input-placeholder{color:rgba(89,89,89,.87)}.ui.form :focus::-ms-input-placeholder{color:rgba(89,89,89,.87)}.ui.form :focus::-moz-placeholder{color:rgba(89,89,89,.87)}.ui.form .error ::-webkit-input-placeholder{color:#bf4d4b}.ui.form .error ::-ms-input-placeholder{color:#bf4d4b}.ui.form .error ::-moz-placeholder{color:#bf4d4b}.ui.form .error :focus::-webkit-input-placeholder{color:#b2413f}.ui.form .error :focus::-ms-input-placeholder{color:#b2413f}.ui.form .error :focus::-moz-placeholder{color:#b2413f}.ui.form input:not([type]):focus,.ui.form input[type=text]:focus,.ui.form input[type=email]:focus,.ui.form input[type=search]:focus,.ui.form input[type=password]:focus,.ui.form input[type=date]:focus,.ui.form input[type=datetime-local]:focus,.ui.form input[type=tel]:focus,.ui.form input[type=time]:focus,.ui.form input[type=url]:focus,.ui.form input[type=number]:focus{color:rgba(0,0,0,.95);border-color:rgba(34,36,38,.35);border-radius:.28571429rem;background:#fff;box-shadow:0 0 0 0 rgba(34,36,38,.35) inset}.ui.form textarea:focus{color:rgba(0,0,0,.95);border-color:rgba(34,36,38,.35);border-radius:.28571429rem;background:#fff;box-shadow:0 0 0 0 rgba(34,36,38,.35) inset;-webkit-appearance:none}.ui.form.success .success.message{display:block}.ui.form.success .icon.success.message{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.form.warning .warning.message{display:block}.ui.form.warning .icon.warning.message{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.form.error .error.message{display:block}.ui.form.error .icon.error.message{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.form .field.error .input,.ui.form .field.error label,.ui.form .fields.error .field .input,.ui.form .fields.error .field label{color:#9f3a38}.ui.form .field.error .corner.label,.ui.form .fields.error .field .corner.label{border-color:#9f3a38;color:#fff}.ui.form .field.error input:not([type]),.ui.form .field.error input[type=text],.ui.form .field.error input[type=email],.ui.form .field.error input[type=search],.ui.form .field.error input[type=password],.ui.form .field.error input[type=date],.ui.form .field.error input[type=datetime-local],.ui.form .field.error input[type=tel],.ui.form .field.error input[type=time],.ui.form .field.error input[type=url],.ui.form .field.error input[type=number],.ui.form .field.error select,.ui.form .field.error textarea,.ui.form .fields.error .field input:not([type]),.ui.form .fields.error .field input[type=text],.ui.form .fields.error .field input[type=email],.ui.form .fields.error .field input[type=search],.ui.form .fields.error .field input[type=password],.ui.form .fields.error .field input[type=date],.ui.form .fields.error .field input[type=datetime-local],.ui.form .fields.error .field input[type=tel],.ui.form .fields.error .field input[type=time],.ui.form .fields.error .field input[type=url],.ui.form .fields.error .field input[type=number],.ui.form .fields.error .field select,.ui.form .fields.error .field textarea{background:#fff6f6;border-color:#e0b4b4;color:#9f3a38;border-radius:'';box-shadow:none}.ui.form .field.error input:not([type]):focus,.ui.form .field.error input[type=text]:focus,.ui.form .field.error input[type=email]:focus,.ui.form .field.error input[type=search]:focus,.ui.form .field.error input[type=password]:focus,.ui.form .field.error input[type=date]:focus,.ui.form .field.error input[type=datetime-local]:focus,.ui.form .field.error input[type=tel]:focus,.ui.form .field.error input[type=time]:focus,.ui.form .field.error input[type=url]:focus,.ui.form .field.error input[type=number]:focus,.ui.form .field.error select:focus,.ui.form .field.error textarea:focus{background:#fff6f6;border-color:#e0b4b4;color:#9f3a38;-webkit-appearance:none;box-shadow:none}.ui.form .field.error select{-webkit-appearance:menulist-button}.ui.form .field.error .ui.dropdown,.ui.form .field.error .ui.dropdown .item,.ui.form .field.error .ui.dropdown .text,.ui.form .fields.error .field .ui.dropdown,.ui.form .fields.error .field .ui.dropdown .item{background:#fff6f6;color:#9f3a38}.ui.form .field.error .ui.dropdown,.ui.form .field.error .ui.dropdown:hover,.ui.form .fields.error .field .ui.dropdown,.ui.form .fields.error .field .ui.dropdown:hover{border-color:#e0b4b4!important}.ui.form .field.error .ui.dropdown:hover .menu,.ui.form .fields.error .field .ui.dropdown:hover .menu{border-color:#e0b4b4}.ui.form .field.error .ui.multiple.selection.dropdown>.label,.ui.form .fields.error .field .ui.multiple.selection.dropdown>.label{background-color:#eacbcb;color:#9f3a38}.ui.form .field.error .ui.dropdown .menu .item:hover,.ui.form .field.error .ui.dropdown .menu .selected.item,.ui.form .fields.error .field .ui.dropdown .menu .item:hover,.ui.form .fields.error .field .ui.dropdown .menu .selected.item{background-color:#fbe7e7}.ui.form .field.error .ui.dropdown .menu .active.item,.ui.form .fields.error .field .ui.dropdown .menu .active.item{background-color:#fdcfcf!important}.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box,.ui.form .field.error .checkbox:not(.toggle):not(.slider) label,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label{color:#9f3a38}.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box:before,.ui.form .field.error .checkbox:not(.toggle):not(.slider) label:before,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before{background:#fff6f6;border-color:#e0b4b4}.ui.form .field.error .checkbox .box:after,.ui.form .field.error .checkbox label:after,.ui.form .fields.error .field .checkbox .box:after,.ui.form .fields.error .field .checkbox label:after{color:#9f3a38}.ui.form .disabled.field,.ui.form .disabled.fields .field,.ui.form .field :disabled,.ui.form .field.disabled label{opacity:.45}.ui.form .field.disabled :disabled{opacity:1}.ui.loading.form{position:relative;cursor:default;point-events:none;text-shadow:none!important;color:transparent!important;-webkit-transition:all 0s linear;transition:all 0s linear;z-index:100}.ui.loading.form:before{position:absolute;content:'';top:0;left:0;background:rgba(255,255,255,.8);width:100%;height:100%;z-index:100}.ui.loading.form:after{position:absolute;content:'';top:50%;left:50%;margin:-1.5em 0 0 -1.5em;width:3em;height:3em;-webkit-animation:form-spin .6s linear;animation:form-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 rgba(0,0,0,.1) rgba(0,0,0,.1);border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent;visibility:visible;z-index:101}@-webkit-keyframes form-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes form-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.form .required.field>.checkbox:after,.ui.form .required.field>label:after,.ui.form .required.fields.grouped>label:after,.ui.form .required.fields:not(.grouped)>.field>.checkbox:after,.ui.form .required.fields:not(.grouped)>.field>label:after{margin:-.2em 0 0 .2em;content:'*';color:#db2828}.ui.form .required.field>label:after,.ui.form .required.fields.grouped>label:after,.ui.form .required.fields:not(.grouped)>.field>label:after{display:inline-block;vertical-align:top}.ui.form .required.field>.checkbox:after,.ui.form .required.fields:not(.grouped)>.field>.checkbox:after{position:absolute;top:0;left:100%}.ui.form .inverted.segment .ui.checkbox .box,.ui.form .inverted.segment .ui.checkbox label,.ui.form .inverted.segment label,.ui.inverted.form .ui.checkbox .box,.ui.inverted.form .ui.checkbox label,.ui.inverted.form label{color:rgba(255,255,255,.9)}.ui.form .grouped.fields{display:block;margin:0 0 1em}.ui.form .grouped.fields:last-child{margin-bottom:0}.ui.form .grouped.fields>label{margin:0 0 .28571429rem;color:rgba(0,0,0,.87);font-size:.92857143em;font-weight:700;text-transform:none}.ui.form .grouped.fields .field,.ui.form .grouped.inline.fields .field{display:block;margin:.5em 0;padding:0}.ui.form .fields{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.ui.form .fields>.field{-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;padding-left:.5em;padding-right:.5em}.ui.form .fields>.field:first-child{border-left:none;box-shadow:none}.ui.form .two.fields>.field,.ui.form .two.fields>.fields{width:50%}.ui.form .three.fields>.field,.ui.form .three.fields>.fields{width:33.33333333%}.ui.form .four.fields>.field,.ui.form .four.fields>.fields{width:25%}.ui.form .five.fields>.field,.ui.form .five.fields>.fields{width:20%}.ui.form .six.fields>.field,.ui.form .six.fields>.fields{width:16.66666667%}.ui.form .seven.fields>.field,.ui.form .seven.fields>.fields{width:14.28571429%}.ui.form .eight.fields>.field,.ui.form .eight.fields>.fields{width:12.5%}.ui.form .nine.fields>.field,.ui.form .nine.fields>.fields{width:11.11111111%}.ui.form .ten.fields>.field,.ui.form .ten.fields>.fields{width:10%}@media only screen and (max-width:767px){.ui.form .fields{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.form .eight.fields>.field,.ui.form .eight.fields>.fields,.ui.form .five.fields>.field,.ui.form .five.fields>.fields,.ui.form .four.fields>.field,.ui.form .four.fields>.fields,.ui.form .nine.fields>.field,.ui.form .nine.fields>.fields,.ui.form .seven.fields>.field,.ui.form .seven.fields>.fields,.ui.form .six.fields>.field,.ui.form .six.fields>.fields,.ui.form .ten.fields>.field,.ui.form .ten.fields>.fields,.ui.form .three.fields>.field,.ui.form .three.fields>.fields,.ui.form .two.fields>.field,.ui.form .two.fields>.fields{width:100%!important;margin:0 0 1em;padding-left:0;padding-right:0}}.ui.form .fields .field:first-child{padding-left:0}.ui.form .fields .field:last-child{padding-right:0}.ui.form .fields .wide.field{width:6.25%;padding-left:.5em;padding-right:.5em}.ui.form .fields .wide.field:first-child{padding-left:0}.ui.form .fields .wide.field:last-child{padding-right:0}.ui.form .one.wide.field{width:6.25%!important}.ui.form .two.wide.field{width:12.5%!important}.ui.form .three.wide.field{width:18.75%!important}.ui.form .four.wide.field{width:25%!important}.ui.form .five.wide.field{width:31.25%!important}.ui.form .six.wide.field{width:37.5%!important}.ui.form .seven.wide.field{width:43.75%!important}.ui.form .eight.wide.field{width:50%!important}.ui.form .nine.wide.field{width:56.25%!important}.ui.form .ten.wide.field{width:62.5%!important}.ui.form .eleven.wide.field{width:68.75%!important}.ui.form .twelve.wide.field{width:75%!important}.ui.form .thirteen.wide.field{width:81.25%!important}.ui.form .fourteen.wide.field{width:87.5%!important}.ui.form .fifteen.wide.field{width:93.75%!important}.ui.form .sixteen.wide.field{width:100%!important}@media only screen and (max-width:767px){.ui.form .fields>.eight.wide.field,.ui.form .fields>.eleven.wide.field,.ui.form .fields>.fifteen.wide.field,.ui.form .fields>.five.wide.field,.ui.form .fields>.four.wide.field,.ui.form .fields>.fourteen.wide.field,.ui.form .fields>.nine.wide.field,.ui.form .fields>.seven.wide.field,.ui.form .fields>.six.wide.field,.ui.form .fields>.sixteen.wide.field,.ui.form .fields>.ten.wide.field,.ui.form .fields>.thirteen.wide.field,.ui.form .fields>.three.wide.field,.ui.form .fields>.twelve.wide.field,.ui.form .fields>.two.wide.field,.ui.form .five.fields>.field,.ui.form .five.fields>.fields,.ui.form .four.fields>.field,.ui.form .four.fields>.fields,.ui.form .three.fields>.field,.ui.form .three.fields>.fields,.ui.form .two.fields>.field,.ui.form .two.fields>.fields{width:100%!important;margin:0 0 1em;padding-left:0;padding-right:0}}.ui.form .inline.fields{margin:0 0 1em;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.form .inline.fields .field{margin:0;padding:0 1em 0 0}.ui.form .inline.field>label,.ui.form .inline.field>p,.ui.form .inline.fields .field>label,.ui.form .inline.fields .field>p,.ui.form .inline.fields>label{display:inline-block;width:auto;margin-top:0;margin-bottom:0;vertical-align:baseline;font-size:.92857143em;font-weight:700;color:rgba(0,0,0,.87);text-transform:none}.ui.form .inline.fields>label{margin:.035714em 1em 0 0}.ui.form .inline.field>.ui.input,.ui.form .inline.field>input,.ui.form .inline.field>select,.ui.form .inline.fields .field>.ui.input,.ui.form .inline.fields .field>input,.ui.form .inline.fields .field>select{display:inline-block;width:auto;margin-top:0;margin-bottom:0;vertical-align:middle;font-size:1em}.ui.form .inline.field>:first-child,.ui.form .inline.fields .field>:first-child{margin:0 .85714286em 0 0}.ui.form .inline.field>:only-child,.ui.form .inline.fields .field>:only-child{margin:0}.ui.form .inline.fields .wide.field{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.form .inline.fields .wide.field>.ui.input,.ui.form .inline.fields .wide.field>input,.ui.form .inline.fields .wide.field>select{width:100%}.ui.small.form{font-size:.92857143rem}.ui.form{font-size:1rem}.ui.large.form{font-size:1.14285714rem}.ui.huge.form{font-size:1.42857143rem}.ui.grid{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;padding:0;margin:-1rem}.ui.relaxed.grid{margin-left:-1.5rem;margin-right:-1.5rem}.ui[class*="very relaxed"].grid{margin-left:-2.5rem;margin-right:-2.5rem}.ui.grid+.grid{margin-top:1rem}.ui.grid>.column:not(.row),.ui.grid>.row>.column{position:relative;display:inline-block;width:6.25%;padding-left:1rem;padding-right:1rem;vertical-align:top}.ui.grid>*{padding-left:1rem;padding-right:1rem}.ui.grid>.row{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:inherit;-webkit-justify-content:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%!important;padding:1rem 0}.ui.grid>.column:not(.row){padding-top:1rem;padding-bottom:1rem}.ui.grid>.row>.column{margin-top:0;margin-bottom:0}.ui.grid>.row>.column>img,.ui.grid>.row>img{max-width:100%}.ui.grid>.ui.grid:first-child{margin-top:0}.ui.grid>.ui.grid:last-child{margin-bottom:0}.ui.aligned.grid .column>.segment:not(.compact),.ui.grid .aligned.row>.column>.segment:not(.compact){width:100%}.ui.grid .row+.ui.divider{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;margin:1rem}.ui.grid .column+.ui.vertical.divider{height:calc(50% - 1rem)}.ui.grid>.column:last-child>.horizontal.segment,.ui.grid>.row>.column:last-child>.horizontal.segment{box-shadow:none}@media only screen and (max-width:767px){.ui.page.grid{width:auto;padding-left:0;padding-right:0;margin-left:0;margin-right:0}}@media only screen and (min-width:768px) and (max-width:991px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:2em;padding-right:2em}}@media only screen and (min-width:992px) and (max-width:1199px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:3%;padding-right:3%}}@media only screen and (min-width:1200px) and (max-width:1919px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:15%;padding-right:15%}}@media only screen and (min-width:1920px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:23%;padding-right:23%}}.ui.grid>.column:only-child,.ui.grid>.row>.column:only-child,.ui[class*="one column"].grid>.column:not(.row),.ui[class*="one column"].grid>.row>.column{width:100%}.ui[class*="two column"].grid>.column:not(.row),.ui[class*="two column"].grid>.row>.column{width:50%}.ui[class*="three column"].grid>.column:not(.row),.ui[class*="three column"].grid>.row>.column{width:33.33333333%}.ui[class*="four column"].grid>.column:not(.row),.ui[class*="four column"].grid>.row>.column{width:25%}.ui[class*="five column"].grid>.column:not(.row),.ui[class*="five column"].grid>.row>.column{width:20%}.ui[class*="six column"].grid>.column:not(.row),.ui[class*="six column"].grid>.row>.column{width:16.66666667%}.ui[class*="seven column"].grid>.column:not(.row),.ui[class*="seven column"].grid>.row>.column{width:14.28571429%}.ui[class*="eight column"].grid>.column:not(.row),.ui[class*="eight column"].grid>.row>.column{width:12.5%}.ui[class*="nine column"].grid>.column:not(.row),.ui[class*="nine column"].grid>.row>.column{width:11.11111111%}.ui[class*="ten column"].grid>.column:not(.row),.ui[class*="ten column"].grid>.row>.column{width:10%}.ui[class*="eleven column"].grid>.column:not(.row),.ui[class*="eleven column"].grid>.row>.column{width:9.09090909%}.ui[class*="twelve column"].grid>.column:not(.row),.ui[class*="twelve column"].grid>.row>.column{width:8.33333333%}.ui[class*="thirteen column"].grid>.column:not(.row),.ui[class*="thirteen column"].grid>.row>.column{width:7.69230769%}.ui[class*="fourteen column"].grid>.column:not(.row),.ui[class*="fourteen column"].grid>.row>.column{width:7.14285714%}.ui[class*="fifteen column"].grid>.column:not(.row),.ui[class*="fifteen column"].grid>.row>.column{width:6.66666667%}.ui[class*="sixteen column"].grid>.column:not(.row),.ui[class*="sixteen column"].grid>.row>.column{width:6.25%}.ui.grid>[class*="one column"].row>.column{width:100%!important}.ui.grid>[class*="two column"].row>.column{width:50%!important}.ui.grid>[class*="three column"].row>.column{width:33.33333333%!important}.ui.grid>[class*="four column"].row>.column{width:25%!important}.ui.grid>[class*="five column"].row>.column{width:20%!important}.ui.grid>[class*="six column"].row>.column{width:16.66666667%!important}.ui.grid>[class*="seven column"].row>.column{width:14.28571429%!important}.ui.grid>[class*="eight column"].row>.column{width:12.5%!important}.ui.grid>[class*="nine column"].row>.column{width:11.11111111%!important}.ui.grid>[class*="ten column"].row>.column{width:10%!important}.ui.grid>[class*="eleven column"].row>.column{width:9.09090909%!important}.ui.grid>[class*="twelve column"].row>.column{width:8.33333333%!important}.ui.grid>[class*="thirteen column"].row>.column{width:7.69230769%!important}.ui.grid>[class*="fourteen column"].row>.column{width:7.14285714%!important}.ui.grid>[class*="fifteen column"].row>.column{width:6.66666667%!important}.ui.column.grid>[class*="one wide"].column,.ui.grid>.column.row>[class*="one wide"].column,.ui.grid>.row>[class*="one wide"].column,.ui.grid>[class*="sixteen column"].row>.column,.ui.grid>[class*="one wide"].column{width:6.25%!important}.ui.column.grid>[class*="two wide"].column,.ui.grid>.column.row>[class*="two wide"].column,.ui.grid>.row>[class*="two wide"].column,.ui.grid>[class*="two wide"].column{width:12.5%!important}.ui.column.grid>[class*="three wide"].column,.ui.grid>.column.row>[class*="three wide"].column,.ui.grid>.row>[class*="three wide"].column,.ui.grid>[class*="three wide"].column{width:18.75%!important}.ui.column.grid>[class*="four wide"].column,.ui.grid>.column.row>[class*="four wide"].column,.ui.grid>.row>[class*="four wide"].column,.ui.grid>[class*="four wide"].column{width:25%!important}.ui.column.grid>[class*="five wide"].column,.ui.grid>.column.row>[class*="five wide"].column,.ui.grid>.row>[class*="five wide"].column,.ui.grid>[class*="five wide"].column{width:31.25%!important}.ui.column.grid>[class*="six wide"].column,.ui.grid>.column.row>[class*="six wide"].column,.ui.grid>.row>[class*="six wide"].column,.ui.grid>[class*="six wide"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide"].column,.ui.grid>.column.row>[class*="seven wide"].column,.ui.grid>.row>[class*="seven wide"].column,.ui.grid>[class*="seven wide"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide"].column,.ui.grid>.column.row>[class*="eight wide"].column,.ui.grid>.row>[class*="eight wide"].column,.ui.grid>[class*="eight wide"].column{width:50%!important}.ui.column.grid>[class*="nine wide"].column,.ui.grid>.column.row>[class*="nine wide"].column,.ui.grid>.row>[class*="nine wide"].column,.ui.grid>[class*="nine wide"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide"].column,.ui.grid>.column.row>[class*="ten wide"].column,.ui.grid>.row>[class*="ten wide"].column,.ui.grid>[class*="ten wide"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide"].column,.ui.grid>.column.row>[class*="eleven wide"].column,.ui.grid>.row>[class*="eleven wide"].column,.ui.grid>[class*="eleven wide"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide"].column,.ui.grid>.column.row>[class*="twelve wide"].column,.ui.grid>.row>[class*="twelve wide"].column,.ui.grid>[class*="twelve wide"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide"].column,.ui.grid>.column.row>[class*="thirteen wide"].column,.ui.grid>.row>[class*="thirteen wide"].column,.ui.grid>[class*="thirteen wide"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide"].column,.ui.grid>.column.row>[class*="fourteen wide"].column,.ui.grid>.row>[class*="fourteen wide"].column,.ui.grid>[class*="fourteen wide"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide"].column,.ui.grid>.column.row>[class*="fifteen wide"].column,.ui.grid>.row>[class*="fifteen wide"].column,.ui.grid>[class*="fifteen wide"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide"].column,.ui.grid>.column.row>[class*="sixteen wide"].column,.ui.grid>.row>[class*="sixteen wide"].column,.ui.grid>[class*="sixteen wide"].column{width:100%!important}@media only screen and (min-width:320px) and (max-width:767px){.ui.column.grid>[class*="one wide mobile"].column,.ui.grid>.column.row>[class*="one wide mobile"].column,.ui.grid>.row>[class*="one wide mobile"].column,.ui.grid>[class*="one wide mobile"].column{width:6.25%!important}.ui.column.grid>[class*="two wide mobile"].column,.ui.grid>.column.row>[class*="two wide mobile"].column,.ui.grid>.row>[class*="two wide mobile"].column,.ui.grid>[class*="two wide mobile"].column{width:12.5%!important}.ui.column.grid>[class*="three wide mobile"].column,.ui.grid>.column.row>[class*="three wide mobile"].column,.ui.grid>.row>[class*="three wide mobile"].column,.ui.grid>[class*="three wide mobile"].column{width:18.75%!important}.ui.column.grid>[class*="four wide mobile"].column,.ui.grid>.column.row>[class*="four wide mobile"].column,.ui.grid>.row>[class*="four wide mobile"].column,.ui.grid>[class*="four wide mobile"].column{width:25%!important}.ui.column.grid>[class*="five wide mobile"].column,.ui.grid>.column.row>[class*="five wide mobile"].column,.ui.grid>.row>[class*="five wide mobile"].column,.ui.grid>[class*="five wide mobile"].column{width:31.25%!important}.ui.column.grid>[class*="six wide mobile"].column,.ui.grid>.column.row>[class*="six wide mobile"].column,.ui.grid>.row>[class*="six wide mobile"].column,.ui.grid>[class*="six wide mobile"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide mobile"].column,.ui.grid>.column.row>[class*="seven wide mobile"].column,.ui.grid>.row>[class*="seven wide mobile"].column,.ui.grid>[class*="seven wide mobile"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide mobile"].column,.ui.grid>.column.row>[class*="eight wide mobile"].column,.ui.grid>.row>[class*="eight wide mobile"].column,.ui.grid>[class*="eight wide mobile"].column{width:50%!important}.ui.column.grid>[class*="nine wide mobile"].column,.ui.grid>.column.row>[class*="nine wide mobile"].column,.ui.grid>.row>[class*="nine wide mobile"].column,.ui.grid>[class*="nine wide mobile"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide mobile"].column,.ui.grid>.column.row>[class*="ten wide mobile"].column,.ui.grid>.row>[class*="ten wide mobile"].column,.ui.grid>[class*="ten wide mobile"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide mobile"].column,.ui.grid>.column.row>[class*="eleven wide mobile"].column,.ui.grid>.row>[class*="eleven wide mobile"].column,.ui.grid>[class*="eleven wide mobile"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide mobile"].column,.ui.grid>.column.row>[class*="twelve wide mobile"].column,.ui.grid>.row>[class*="twelve wide mobile"].column,.ui.grid>[class*="twelve wide mobile"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide mobile"].column,.ui.grid>.column.row>[class*="thirteen wide mobile"].column,.ui.grid>.row>[class*="thirteen wide mobile"].column,.ui.grid>[class*="thirteen wide mobile"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide mobile"].column,.ui.grid>.column.row>[class*="fourteen wide mobile"].column,.ui.grid>.row>[class*="fourteen wide mobile"].column,.ui.grid>[class*="fourteen wide mobile"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide mobile"].column,.ui.grid>.column.row>[class*="fifteen wide mobile"].column,.ui.grid>.row>[class*="fifteen wide mobile"].column,.ui.grid>[class*="fifteen wide mobile"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide mobile"].column,.ui.grid>.column.row>[class*="sixteen wide mobile"].column,.ui.grid>.row>[class*="sixteen wide mobile"].column,.ui.grid>[class*="sixteen wide mobile"].column{width:100%!important}}@media only screen and (min-width:768px) and (max-width:991px){.ui.column.grid>[class*="one wide tablet"].column,.ui.grid>.column.row>[class*="one wide tablet"].column,.ui.grid>.row>[class*="one wide tablet"].column,.ui.grid>[class*="one wide tablet"].column{width:6.25%!important}.ui.column.grid>[class*="two wide tablet"].column,.ui.grid>.column.row>[class*="two wide tablet"].column,.ui.grid>.row>[class*="two wide tablet"].column,.ui.grid>[class*="two wide tablet"].column{width:12.5%!important}.ui.column.grid>[class*="three wide tablet"].column,.ui.grid>.column.row>[class*="three wide tablet"].column,.ui.grid>.row>[class*="three wide tablet"].column,.ui.grid>[class*="three wide tablet"].column{width:18.75%!important}.ui.column.grid>[class*="four wide tablet"].column,.ui.grid>.column.row>[class*="four wide tablet"].column,.ui.grid>.row>[class*="four wide tablet"].column,.ui.grid>[class*="four wide tablet"].column{width:25%!important}.ui.column.grid>[class*="five wide tablet"].column,.ui.grid>.column.row>[class*="five wide tablet"].column,.ui.grid>.row>[class*="five wide tablet"].column,.ui.grid>[class*="five wide tablet"].column{width:31.25%!important}.ui.column.grid>[class*="six wide tablet"].column,.ui.grid>.column.row>[class*="six wide tablet"].column,.ui.grid>.row>[class*="six wide tablet"].column,.ui.grid>[class*="six wide tablet"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide tablet"].column,.ui.grid>.column.row>[class*="seven wide tablet"].column,.ui.grid>.row>[class*="seven wide tablet"].column,.ui.grid>[class*="seven wide tablet"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide tablet"].column,.ui.grid>.column.row>[class*="eight wide tablet"].column,.ui.grid>.row>[class*="eight wide tablet"].column,.ui.grid>[class*="eight wide tablet"].column{width:50%!important}.ui.column.grid>[class*="nine wide tablet"].column,.ui.grid>.column.row>[class*="nine wide tablet"].column,.ui.grid>.row>[class*="nine wide tablet"].column,.ui.grid>[class*="nine wide tablet"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide tablet"].column,.ui.grid>.column.row>[class*="ten wide tablet"].column,.ui.grid>.row>[class*="ten wide tablet"].column,.ui.grid>[class*="ten wide tablet"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide tablet"].column,.ui.grid>.column.row>[class*="eleven wide tablet"].column,.ui.grid>.row>[class*="eleven wide tablet"].column,.ui.grid>[class*="eleven wide tablet"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide tablet"].column,.ui.grid>.column.row>[class*="twelve wide tablet"].column,.ui.grid>.row>[class*="twelve wide tablet"].column,.ui.grid>[class*="twelve wide tablet"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide tablet"].column,.ui.grid>.column.row>[class*="thirteen wide tablet"].column,.ui.grid>.row>[class*="thirteen wide tablet"].column,.ui.grid>[class*="thirteen wide tablet"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide tablet"].column,.ui.grid>.column.row>[class*="fourteen wide tablet"].column,.ui.grid>.row>[class*="fourteen wide tablet"].column,.ui.grid>[class*="fourteen wide tablet"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide tablet"].column,.ui.grid>.column.row>[class*="fifteen wide tablet"].column,.ui.grid>.row>[class*="fifteen wide tablet"].column,.ui.grid>[class*="fifteen wide tablet"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide tablet"].column,.ui.grid>.column.row>[class*="sixteen wide tablet"].column,.ui.grid>.row>[class*="sixteen wide tablet"].column,.ui.grid>[class*="sixteen wide tablet"].column{width:100%!important}}@media only screen and (min-width:992px){.ui.column.grid>[class*="one wide computer"].column,.ui.grid>.column.row>[class*="one wide computer"].column,.ui.grid>.row>[class*="one wide computer"].column,.ui.grid>[class*="one wide computer"].column{width:6.25%!important}.ui.column.grid>[class*="two wide computer"].column,.ui.grid>.column.row>[class*="two wide computer"].column,.ui.grid>.row>[class*="two wide computer"].column,.ui.grid>[class*="two wide computer"].column{width:12.5%!important}.ui.column.grid>[class*="three wide computer"].column,.ui.grid>.column.row>[class*="three wide computer"].column,.ui.grid>.row>[class*="three wide computer"].column,.ui.grid>[class*="three wide computer"].column{width:18.75%!important}.ui.column.grid>[class*="four wide computer"].column,.ui.grid>.column.row>[class*="four wide computer"].column,.ui.grid>.row>[class*="four wide computer"].column,.ui.grid>[class*="four wide computer"].column{width:25%!important}.ui.column.grid>[class*="five wide computer"].column,.ui.grid>.column.row>[class*="five wide computer"].column,.ui.grid>.row>[class*="five wide computer"].column,.ui.grid>[class*="five wide computer"].column{width:31.25%!important}.ui.column.grid>[class*="six wide computer"].column,.ui.grid>.column.row>[class*="six wide computer"].column,.ui.grid>.row>[class*="six wide computer"].column,.ui.grid>[class*="six wide computer"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide computer"].column,.ui.grid>.column.row>[class*="seven wide computer"].column,.ui.grid>.row>[class*="seven wide computer"].column,.ui.grid>[class*="seven wide computer"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide computer"].column,.ui.grid>.column.row>[class*="eight wide computer"].column,.ui.grid>.row>[class*="eight wide computer"].column,.ui.grid>[class*="eight wide computer"].column{width:50%!important}.ui.column.grid>[class*="nine wide computer"].column,.ui.grid>.column.row>[class*="nine wide computer"].column,.ui.grid>.row>[class*="nine wide computer"].column,.ui.grid>[class*="nine wide computer"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide computer"].column,.ui.grid>.column.row>[class*="ten wide computer"].column,.ui.grid>.row>[class*="ten wide computer"].column,.ui.grid>[class*="ten wide computer"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide computer"].column,.ui.grid>.column.row>[class*="eleven wide computer"].column,.ui.grid>.row>[class*="eleven wide computer"].column,.ui.grid>[class*="eleven wide computer"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide computer"].column,.ui.grid>.column.row>[class*="twelve wide computer"].column,.ui.grid>.row>[class*="twelve wide computer"].column,.ui.grid>[class*="twelve wide computer"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide computer"].column,.ui.grid>.column.row>[class*="thirteen wide computer"].column,.ui.grid>.row>[class*="thirteen wide computer"].column,.ui.grid>[class*="thirteen wide computer"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide computer"].column,.ui.grid>.column.row>[class*="fourteen wide computer"].column,.ui.grid>.row>[class*="fourteen wide computer"].column,.ui.grid>[class*="fourteen wide computer"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide computer"].column,.ui.grid>.column.row>[class*="fifteen wide computer"].column,.ui.grid>.row>[class*="fifteen wide computer"].column,.ui.grid>[class*="fifteen wide computer"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide computer"].column,.ui.grid>.column.row>[class*="sixteen wide computer"].column,.ui.grid>.row>[class*="sixteen wide computer"].column,.ui.grid>[class*="sixteen wide computer"].column{width:100%!important}}@media only screen and (min-width:1200px) and (max-width:1919px){.ui.column.grid>[class*="one wide large screen"].column,.ui.grid>.column.row>[class*="one wide large screen"].column,.ui.grid>.row>[class*="one wide large screen"].column,.ui.grid>[class*="one wide large screen"].column{width:6.25%!important}.ui.column.grid>[class*="two wide large screen"].column,.ui.grid>.column.row>[class*="two wide large screen"].column,.ui.grid>.row>[class*="two wide large screen"].column,.ui.grid>[class*="two wide large screen"].column{width:12.5%!important}.ui.column.grid>[class*="three wide large screen"].column,.ui.grid>.column.row>[class*="three wide large screen"].column,.ui.grid>.row>[class*="three wide large screen"].column,.ui.grid>[class*="three wide large screen"].column{width:18.75%!important}.ui.column.grid>[class*="four wide large screen"].column,.ui.grid>.column.row>[class*="four wide large screen"].column,.ui.grid>.row>[class*="four wide large screen"].column,.ui.grid>[class*="four wide large screen"].column{width:25%!important}.ui.column.grid>[class*="five wide large screen"].column,.ui.grid>.column.row>[class*="five wide large screen"].column,.ui.grid>.row>[class*="five wide large screen"].column,.ui.grid>[class*="five wide large screen"].column{width:31.25%!important}.ui.column.grid>[class*="six wide large screen"].column,.ui.grid>.column.row>[class*="six wide large screen"].column,.ui.grid>.row>[class*="six wide large screen"].column,.ui.grid>[class*="six wide large screen"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide large screen"].column,.ui.grid>.column.row>[class*="seven wide large screen"].column,.ui.grid>.row>[class*="seven wide large screen"].column,.ui.grid>[class*="seven wide large screen"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide large screen"].column,.ui.grid>.column.row>[class*="eight wide large screen"].column,.ui.grid>.row>[class*="eight wide large screen"].column,.ui.grid>[class*="eight wide large screen"].column{width:50%!important}.ui.column.grid>[class*="nine wide large screen"].column,.ui.grid>.column.row>[class*="nine wide large screen"].column,.ui.grid>.row>[class*="nine wide large screen"].column,.ui.grid>[class*="nine wide large screen"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide large screen"].column,.ui.grid>.column.row>[class*="ten wide large screen"].column,.ui.grid>.row>[class*="ten wide large screen"].column,.ui.grid>[class*="ten wide large screen"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide large screen"].column,.ui.grid>.column.row>[class*="eleven wide large screen"].column,.ui.grid>.row>[class*="eleven wide large screen"].column,.ui.grid>[class*="eleven wide large screen"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide large screen"].column,.ui.grid>.column.row>[class*="twelve wide large screen"].column,.ui.grid>.row>[class*="twelve wide large screen"].column,.ui.grid>[class*="twelve wide large screen"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide large screen"].column,.ui.grid>.column.row>[class*="thirteen wide large screen"].column,.ui.grid>.row>[class*="thirteen wide large screen"].column,.ui.grid>[class*="thirteen wide large screen"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide large screen"].column,.ui.grid>.column.row>[class*="fourteen wide large screen"].column,.ui.grid>.row>[class*="fourteen wide large screen"].column,.ui.grid>[class*="fourteen wide large screen"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide large screen"].column,.ui.grid>.column.row>[class*="fifteen wide large screen"].column,.ui.grid>.row>[class*="fifteen wide large screen"].column,.ui.grid>[class*="fifteen wide large screen"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide large screen"].column,.ui.grid>.column.row>[class*="sixteen wide large screen"].column,.ui.grid>.row>[class*="sixteen wide large screen"].column,.ui.grid>[class*="sixteen wide large screen"].column{width:100%!important}}@media only screen and (min-width:1920px){.ui.column.grid>[class*="one wide widescreen"].column,.ui.grid>.column.row>[class*="one wide widescreen"].column,.ui.grid>.row>[class*="one wide widescreen"].column,.ui.grid>[class*="one wide widescreen"].column{width:6.25%!important}.ui.column.grid>[class*="two wide widescreen"].column,.ui.grid>.column.row>[class*="two wide widescreen"].column,.ui.grid>.row>[class*="two wide widescreen"].column,.ui.grid>[class*="two wide widescreen"].column{width:12.5%!important}.ui.column.grid>[class*="three wide widescreen"].column,.ui.grid>.column.row>[class*="three wide widescreen"].column,.ui.grid>.row>[class*="three wide widescreen"].column,.ui.grid>[class*="three wide widescreen"].column{width:18.75%!important}.ui.column.grid>[class*="four wide widescreen"].column,.ui.grid>.column.row>[class*="four wide widescreen"].column,.ui.grid>.row>[class*="four wide widescreen"].column,.ui.grid>[class*="four wide widescreen"].column{width:25%!important}.ui.column.grid>[class*="five wide widescreen"].column,.ui.grid>.column.row>[class*="five wide widescreen"].column,.ui.grid>.row>[class*="five wide widescreen"].column,.ui.grid>[class*="five wide widescreen"].column{width:31.25%!important}.ui.column.grid>[class*="six wide widescreen"].column,.ui.grid>.column.row>[class*="six wide widescreen"].column,.ui.grid>.row>[class*="six wide widescreen"].column,.ui.grid>[class*="six wide widescreen"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide widescreen"].column,.ui.grid>.column.row>[class*="seven wide widescreen"].column,.ui.grid>.row>[class*="seven wide widescreen"].column,.ui.grid>[class*="seven wide widescreen"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide widescreen"].column,.ui.grid>.column.row>[class*="eight wide widescreen"].column,.ui.grid>.row>[class*="eight wide widescreen"].column,.ui.grid>[class*="eight wide widescreen"].column{width:50%!important}.ui.column.grid>[class*="nine wide widescreen"].column,.ui.grid>.column.row>[class*="nine wide widescreen"].column,.ui.grid>.row>[class*="nine wide widescreen"].column,.ui.grid>[class*="nine wide widescreen"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide widescreen"].column,.ui.grid>.column.row>[class*="ten wide widescreen"].column,.ui.grid>.row>[class*="ten wide widescreen"].column,.ui.grid>[class*="ten wide widescreen"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide widescreen"].column,.ui.grid>.column.row>[class*="eleven wide widescreen"].column,.ui.grid>.row>[class*="eleven wide widescreen"].column,.ui.grid>[class*="eleven wide widescreen"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide widescreen"].column,.ui.grid>.column.row>[class*="twelve wide widescreen"].column,.ui.grid>.row>[class*="twelve wide widescreen"].column,.ui.grid>[class*="twelve wide widescreen"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide widescreen"].column,.ui.grid>.column.row>[class*="thirteen wide widescreen"].column,.ui.grid>.row>[class*="thirteen wide widescreen"].column,.ui.grid>[class*="thirteen wide widescreen"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide widescreen"].column,.ui.grid>.column.row>[class*="fourteen wide widescreen"].column,.ui.grid>.row>[class*="fourteen wide widescreen"].column,.ui.grid>[class*="fourteen wide widescreen"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide widescreen"].column,.ui.grid>.column.row>[class*="fifteen wide widescreen"].column,.ui.grid>.row>[class*="fifteen wide widescreen"].column,.ui.grid>[class*="fifteen wide widescreen"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide widescreen"].column,.ui.grid>.column.row>[class*="sixteen wide widescreen"].column,.ui.grid>.row>[class*="sixteen wide widescreen"].column,.ui.grid>[class*="sixteen wide widescreen"].column{width:100%!important}}.ui.centered.grid,.ui.centered.grid>.row,.ui.grid>.centered.row{text-align:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.ui.centered.grid>.column:not(.aligned):not(.row),.ui.centered.grid>.row>.column:not(.aligned),.ui.grid .centered.row>.column:not(.aligned){text-align:left}.ui.grid>.centered.column,.ui.grid>.row>.centered.column{display:block;margin-left:auto;margin-right:auto}.ui.grid>.relaxed.row>.column,.ui.relaxed.grid>.column:not(.row),.ui.relaxed.grid>.row>.column{padding-left:1.5rem;padding-right:1.5rem}.ui.grid>[class*="very relaxed"].row>.column,.ui[class*="very relaxed"].grid>.column:not(.row),.ui[class*="very relaxed"].grid>.row>.column{padding-left:2.5rem;padding-right:2.5rem}.ui.grid .relaxed.row+.ui.divider,.ui.relaxed.grid .row+.ui.divider{margin-left:1.5rem;margin-right:1.5rem}.ui.grid [class*="very relaxed"].row+.ui.divider,.ui[class*="very relaxed"].grid .row+.ui.divider{margin-left:2.5rem;margin-right:2.5rem}.ui.padded.grid:not(.vertically):not(.horizontally){margin:0!important}[class*="horizontally padded"].ui.grid{margin-left:0!important;margin-right:0!important}[class*="vertically padded"].ui.grid{margin-top:0!important;margin-bottom:0!important}.ui.grid [class*="left floated"].column{margin-right:auto}.ui.grid [class*="right floated"].column{margin-left:auto}.ui.divided.grid:not([class*="vertically divided"])>.column:not(.row),.ui.divided.grid:not([class*="vertically divided"])>.row>.column{box-shadow:-1px 0 0 0 rgba(34,36,38,.15)}.ui[class*="vertically divided"].grid>.column:not(.row),.ui[class*="vertically divided"].grid>.row>.column{margin-top:1rem;margin-bottom:1rem;padding-top:0;padding-bottom:0}.ui[class*="vertically divided"].grid>.row{margin-top:0;margin-bottom:0;position:relative}.ui.divided.grid:not([class*="vertically divided"])>.column:first-child,.ui.divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:none}.ui.grid>.divided.row>.column{box-shadow:-1px 0 0 0 rgba(34,36,38,.15)}.ui.grid>.divided.row>.column:first-child{box-shadow:none}.ui[class*="vertically divided"].grid>.row:before{position:absolute;content:"";top:0;left:0;width:calc(100% - 2rem);height:1px;margin:0 1rem;box-shadow:0 -1px 0 0 rgba(34,36,38,.15)}.ui.padded.divided.grid:not(.vertically):not(.horizontally),[class*="horizontally padded"].ui.divided.grid{width:100%}.ui[class*="vertically divided"].grid>.row:first-child:before{box-shadow:none}.ui.inverted.divided.grid:not([class*="vertically divided"])>.column:not(.row),.ui.inverted.divided.grid:not([class*="vertically divided"])>.row>.column{box-shadow:-1px 0 0 0 rgba(255,255,255,.1)}.ui.inverted.divided.grid:not([class*="vertically divided"])>.column:not(.row):first-child,.ui.inverted.divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:none}.ui.inverted[class*="vertically divided"].grid>.row:before{box-shadow:0 -1px 0 0 rgba(255,255,255,.1)}.ui.relaxed[class*="vertically divided"].grid>.row:before{margin-left:1.5rem;margin-right:1.5rem;width:calc(100% - 3rem)}.ui[class*="very relaxed"][class*="vertically divided"].grid>.row:before{margin-left:5rem;margin-right:5rem;width:calc(100% - 5rem)}.ui.celled.grid{width:100%;margin:1em 0;box-shadow:0 0 0 1px #d4d4d5}.ui.celled.grid>.column.row,.ui.celled.grid>.column.row:first-child,.ui.celled.grid>.row{width:100%!important;margin:0;padding:0;box-shadow:0 -1px 0 0 #d4d4d5}.ui.celled.grid>.column:not(.row),.ui.celled.grid>.row>.column{box-shadow:-1px 0 0 0 #d4d4d5;padding:1em}.ui.celled.grid>.column:first-child,.ui.celled.grid>.row>.column:first-child,.ui.celled.page.grid{box-shadow:none}.ui.relaxed.celled.grid>.column:not(.row),.ui.relaxed.celled.grid>.row>.column{padding:1.5em}.ui[class*="very relaxed"].celled.grid>.column:not(.row),.ui[class*="very relaxed"].celled.grid>.row>.column{padding:2em}.ui[class*="internally celled"].grid{box-shadow:none;margin:0}.ui[class*="internally celled"].grid>.row:first-child,.ui[class*="internally celled"].grid>.row>.column:first-child{box-shadow:none}.ui.grid>.row>[class*="top aligned"].column,.ui.grid>[class*="top aligned"].column:not(.row),.ui.grid>[class*="top aligned"].row>.column,.ui[class*="top aligned"].grid .column:not(.row){-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;vertical-align:top;-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.ui.grid>.row>[class*="middle aligned"].column,.ui.grid>[class*="middle aligned"].column:not(.row),.ui.grid>[class*="middle aligned"].row>.column,.ui[class*="middle aligned"].grid .column:not(.row){-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;vertical-align:middle;-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.ui.grid>.row>[class*="bottom aligned"].column,.ui.grid>[class*="bottom aligned"].column:not(.row),.ui.grid>[class*="bottom aligned"].row>.column,.ui[class*="bottom aligned"].grid .column:not(.row){-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;vertical-align:bottom;-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.ui.grid>.row>.stretched.column,.ui.grid>.stretched.column:not(.row),.ui.grid>.stretched.row>.column,.ui.stretched.grid>.column,.ui.stretched.grid>.row>.column{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.grid>.row>.stretched.column>*,.ui.grid>.stretched.column:not(.row)>*,.ui.grid>.stretched.row>.column>*,.ui.stretched.grid>.column>*,.ui.stretched.grid>.row>.column>*{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.ui.grid>.row>[class*="left aligned"].column,.ui.grid>[class*="left aligned"].column.column,.ui.grid>[class*="left aligned"].row>.column,.ui[class*="left aligned"].grid .column{text-align:left;-webkit-align-self:inherit;-ms-flex-item-align:inherit;align-self:inherit}.ui.grid>.row>[class*="center aligned"].column,.ui.grid>[class*="center aligned"].column.column,.ui.grid>[class*="center aligned"].row>.column,.ui[class*="center aligned"].grid .column{text-align:center;-webkit-align-self:inherit;-ms-flex-item-align:inherit;align-self:inherit}.ui[class*="center aligned"].grid{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.ui.grid>.row>[class*="right aligned"].column,.ui.grid>[class*="right aligned"].column.column,.ui.grid>[class*="right aligned"].row>.column,.ui[class*="right aligned"].grid .column{text-align:right;-webkit-align-self:inherit;-ms-flex-item-align:inherit;align-self:inherit}.ui.grid .justified.column,.ui.grid>.justified.row>.column,.ui.justified.grid,.ui.justified.grid>.column,.ui.justified.grid>.row>.column{text-align:justify;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.ui.grid .justified.column{text-align:justify!important;-webkit-hyphens:auto!important;-moz-hyphens:auto!important;-ms-hyphens:auto!important;hyphens:auto!important}.ui.grid>.row>.black.column,.ui.grid>.row>.blue.column,.ui.grid>.row>.brown.column,.ui.grid>.row>.green.column,.ui.grid>.row>.grey.column,.ui.grid>.row>.olive.column,.ui.grid>.row>.orange.column,.ui.grid>.row>.pink.column,.ui.grid>.row>.purple.column,.ui.grid>.row>.red.column,.ui.grid>.row>.teal.column,.ui.grid>.row>.violet.column,.ui.grid>.row>.yellow.column{margin-top:-1rem;margin-bottom:-1rem;padding-top:1rem;padding-bottom:1rem}.ui.grid>.red.column,.ui.grid>.red.row,.ui.grid>.row>.red.column{background-color:#db2828!important;color:#fff}.ui.grid>.orange.column,.ui.grid>.orange.row,.ui.grid>.row>.orange.column{background-color:#f2711c!important;color:#fff}.ui.grid>.row>.yellow.column,.ui.grid>.yellow.column,.ui.grid>.yellow.row{background-color:#fbbd08!important;color:#fff}.ui.grid>.olive.column,.ui.grid>.olive.row,.ui.grid>.row>.olive.column{background-color:#b5cc18!important;color:#fff}.ui.grid>.green.column,.ui.grid>.green.row,.ui.grid>.row>.green.column{background-color:#21ba45!important;color:#fff}.ui.grid>.row>.teal.column,.ui.grid>.teal.column,.ui.grid>.teal.row{background-color:#00b5ad!important;color:#fff}.ui.grid>.blue.column,.ui.grid>.blue.row,.ui.grid>.row>.blue.column{background-color:#2185d0!important;color:#fff}.ui.grid>.row>.violet.column,.ui.grid>.violet.column,.ui.grid>.violet.row{background-color:#6435c9!important;color:#fff}.ui.grid>.purple.column,.ui.grid>.purple.row,.ui.grid>.row>.purple.column{background-color:#a333c8!important;color:#fff}.ui.grid>.pink.column,.ui.grid>.pink.row,.ui.grid>.row>.pink.column{background-color:#e03997!important;color:#fff}.ui.grid>.brown.column,.ui.grid>.brown.row,.ui.grid>.row>.brown.column{background-color:#a5673f!important;color:#fff}.ui.grid>.grey.column,.ui.grid>.grey.row,.ui.grid>.row>.grey.column{background-color:#767676!important;color:#fff}.ui.grid>.black.column,.ui.grid>.black.row,.ui.grid>.row>.black.column{background-color:#1b1c1d!important;color:#fff}.ui.grid>[class*="equal width"].row>.column,.ui[class*="equal width"].grid>.column:not(.row),.ui[class*="equal width"].grid>.row>.column{display:inline-block;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.ui.grid>[class*="equal width"].row>.wide.column,.ui[class*="equal width"].grid>.row>.wide.column,.ui[class*="equal width"].grid>.wide.column{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0}@media only screen and (min-width:768px) and (max-width:991px){.ui.doubling.grid{width:auto}.ui.doubling.grid>.row,.ui.grid>.doubling.row{margin:0!important;padding:0!important}.ui.doubling.grid>.row>.column,.ui.grid>.doubling.row>.column{display:inline-block!important;padding-top:1rem!important;padding-bottom:1rem!important;box-shadow:none!important;margin:0}.ui.grid>[class*="two column"].doubling.row.row>.column,.ui[class*="two column"].doubling.grid>.column:not(.row),.ui[class*="two column"].doubling.grid>.row>.column{width:100%!important}.ui.grid>[class*="three column"].doubling.row.row>.column,.ui.grid>[class*="four column"].doubling.row.row>.column,.ui[class*="three column"].doubling.grid>.column:not(.row),.ui[class*="three column"].doubling.grid>.row>.column,.ui[class*="four column"].doubling.grid>.column:not(.row),.ui[class*="four column"].doubling.grid>.row>.column{width:50%!important}.ui.grid>[class*="five column"].doubling.row.row>.column,.ui.grid>[class*="six column"].doubling.row.row>.column,.ui.grid>[class*="seven column"].doubling.row.row>.column,.ui[class*="five column"].doubling.grid>.column:not(.row),.ui[class*="five column"].doubling.grid>.row>.column,.ui[class*="six column"].doubling.grid>.column:not(.row),.ui[class*="six column"].doubling.grid>.row>.column,.ui[class*="seven column"].doubling.grid>.column:not(.row),.ui[class*="seven column"].doubling.grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="eight column"].doubling.row.row>.column,.ui.grid>[class*="nine column"].doubling.row.row>.column,.ui[class*="eight column"].doubling.grid>.column:not(.row),.ui[class*="eight column"].doubling.grid>.row>.column,.ui[class*="nine column"].doubling.grid>.column:not(.row),.ui[class*="nine column"].doubling.grid>.row>.column{width:25%!important}.ui.grid>[class*="ten column"].doubling.row.row>.column,.ui.grid>[class*="eleven column"].doubling.row.row>.column,.ui[class*="ten column"].doubling.grid>.column:not(.row),.ui[class*="ten column"].doubling.grid>.row>.column,.ui[class*="eleven column"].doubling.grid>.column:not(.row),.ui[class*="eleven column"].doubling.grid>.row>.column{width:20%!important}.ui.grid>[class*="twelve column"].doubling.row.row>.column,.ui.grid>[class*="thirteen column"].doubling.row.row>.column,.ui[class*="twelve column"].doubling.grid>.column:not(.row),.ui[class*="twelve column"].doubling.grid>.row>.column,.ui[class*="thirteen column"].doubling.grid>.column:not(.row),.ui[class*="thirteen column"].doubling.grid>.row>.column{width:16.66666667%!important}.ui.grid>[class*="fourteen column"].doubling.row.row>.column,.ui.grid>[class*="fifteen column"].doubling.row.row>.column,.ui[class*="fourteen column"].doubling.grid>.column:not(.row),.ui[class*="fourteen column"].doubling.grid>.row>.column,.ui[class*="fifteen column"].doubling.grid>.column:not(.row),.ui[class*="fifteen column"].doubling.grid>.row>.column{width:14.28571429%!important}.ui.grid>[class*="sixteen column"].doubling.row.row>.column,.ui[class*="sixteen column"].doubling.grid>.column:not(.row),.ui[class*="sixteen column"].doubling.grid>.row>.column{width:12.5%!important}}@media only screen and (max-width:767px){.ui.doubling.grid>.row,.ui.grid>.doubling.row{margin:0!important;padding:0!important}.ui.doubling.grid>.row>.column,.ui.grid>.doubling.row>.column{padding-top:1rem!important;padding-bottom:1rem!important;margin:0!important;box-shadow:none!important}.ui.grid>[class*="two column"].doubling:not(.stackable).row.row>.column,.ui[class*="two column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="two column"].doubling:not(.stackable).grid>.row>.column{width:100%!important}.ui.grid>[class*="three column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="four column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="five column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="six column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="seven column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="eight column"].doubling:not(.stackable).row.row>.column,.ui[class*="three column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="three column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="four column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="four column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="five column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="five column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="six column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="six column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="seven column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="seven column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="eight column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="eight column"].doubling:not(.stackable).grid>.row>.column{width:50%!important}.ui.grid>[class*="nine column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="ten column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="eleven column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="twelve column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="thirteen column"].doubling:not(.stackable).row.row>.column,.ui[class*="nine column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="nine column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="ten column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="ten column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="eleven column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="eleven column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="twelve column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="twelve column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="thirteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="thirteen column"].doubling:not(.stackable).grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="fourteen column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="fifteen column"].doubling:not(.stackable).row.row>.column,.ui.grid>[class*="sixteen column"].doubling:not(.stackable).row.row>.column,.ui[class*="fourteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="fourteen column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="fifteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="fifteen column"].doubling:not(.stackable).grid>.row>.column,.ui[class*="sixteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="sixteen column"].doubling:not(.stackable).grid>.row>.column{width:25%!important}.ui.stackable.grid{width:auto}.ui.grid>.stackable.stackable.row>.column,.ui.stackable.grid>.column.grid>.column,.ui.stackable.grid>.column.row>.column,.ui.stackable.grid>.column:not(.row),.ui.stackable.grid>.row>.column,.ui.stackable.grid>.row>.wide.column,.ui.stackable.grid>.wide.column{width:100%!important;margin:0!important;box-shadow:none!important;padding:1rem!important}.ui.stackable.grid:not(.vertically)>.row{margin:0;padding:0}.ui.container>.ui.stackable.grid>.column,.ui.container>.ui.stackable.grid>.row>.column{padding-left:0!important;padding-right:0!important}.ui.grid .ui.stackable.grid,.ui.segment:not(.vertical) .ui.stackable.page.grid{margin-left:-1rem!important;margin-right:-1rem!important}.ui.stackable.celled.grid>.column:not(.row):first-child,.ui.stackable.celled.grid>.row:first-child>.column:first-child,.ui.stackable.divided.grid>.column:not(.row):first-child,.ui.stackable.divided.grid>.row:first-child>.column:first-child{border-top:none!important}.ui.inverted.stackable.celled.grid>.column:not(.row),.ui.inverted.stackable.celled.grid>.row>.column,.ui.inverted.stackable.divided.grid>.column:not(.row),.ui.inverted.stackable.divided.grid>.row>.column{border-top:1px solid rgba(255,255,255,.1)}.ui.stackable.celled.grid>.column:not(.row),.ui.stackable.celled.grid>.row>.column,.ui.stackable.divided:not(.vertically).grid>.column:not(.row),.ui.stackable.divided:not(.vertically).grid>.row>.column{border-top:1px solid rgba(34,36,38,.15);box-shadow:none!important;padding-top:2rem!important;padding-bottom:2rem!important}.ui.stackable.divided:not(.vertically).grid>.column:not(.row),.ui.stackable.divided:not(.vertically).grid>.row>.column{padding-left:0!important;padding-right:0!important}.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="computer only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].row:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].column:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].row:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.tablet:not(.mobile).only.grid.grid.grid,.ui[class*="computer only"].grid.grid.grid:not(.mobile),.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui[class*=widescreen].grid.grid.grid:not(.mobile){display:none!important}}@media only screen and (min-width:768px) and (max-width:991px){.ui.grid.grid.grid>.row>[class*="computer only"].column:not(.tablet),.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.tablet),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].column:not(.tablet),.ui.grid.grid.grid>[class*="computer only"].row:not(.tablet),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="mobile only"].column:not(.tablet),.ui.grid.grid.grid>[class*="mobile only"].row:not(.tablet),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="computer only"].grid.grid.grid:not(.tablet),.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui[class*=widescreen].grid.grid.grid:not(.mobile),.ui[class*="mobile only"].grid.grid.grid:not(.tablet){display:none!important}}@media only screen and (min-width:992px) and (max-width:1199px){.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui[class*=widescreen].grid.grid.grid:not(.mobile),.ui[class*="mobile only"].grid.grid.grid:not(.computer){display:none!important}}@media only screen and (min-width:1200px) and (max-width:1919px){.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui[class*=widescreen].grid.grid.grid:not(.mobile),.ui[class*="mobile only"].grid.grid.grid:not(.computer){display:none!important}}@media only screen and (min-width:1920px){.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui[class*="mobile only"].grid.grid.grid:not(.computer){display:none!important}}.ui.menu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:1em 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;background:#fff;font-weight:400;border:1px solid rgba(34,36,38,.15);box-shadow:0 1px 2px 0 rgba(34,36,38,.15);border-radius:.28571429rem;min-height:2.85714286em}.ui.menu:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.menu:first-child{margin-top:0}.ui.menu:last-child{margin-bottom:0}.ui.menu .menu{margin:0}.ui.menu:not(.vertical)>.menu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.menu:not(.vertical) .item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.menu .item{position:relative;vertical-align:middle;line-height:1;text-decoration:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:0 0;padding:.92857143em 1.14285714em;text-transform:none;color:rgba(0,0,0,.87);font-weight:400;-webkit-transition:background .1s ease,box-shadow .1s ease,color .1s ease;transition:background .1s ease,box-shadow .1s ease,color .1s ease}.ui.menu>.item:first-child{border-radius:.28571429rem 0 0 .28571429rem}.ui.menu .item:before{position:absolute;content:'';top:0;right:0;height:100%;width:1px;background:rgba(34,36,38,.1)}.ui.menu .item>a:not(.ui),.ui.menu .item>p:only-child,.ui.menu .text.item>*{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;line-height:1.3}.ui.menu .item>p:first-child{margin-top:0}.ui.menu .item>p:last-child{margin-bottom:0}.ui.menu .item>i.icon{opacity:.9;float:none;margin:0 .35714286em 0 0}.ui.menu:not(.vertical) .item>.button{position:relative;top:0;margin:-.5em 0;padding-bottom:.71428571em;padding-top:.71428571em;font-size:1em}.ui.menu>.container,.ui.menu>.grid{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:inherit;-webkit-align-items:inherit;-ms-flex-align:inherit;align-items:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:inherit;-ms-flex-direction:inherit;flex-direction:inherit}.ui.menu .item>.input{width:100%}.ui.menu:not(.vertical) .item>.input{position:relative;top:0;margin:-.5em 0}.ui.menu .item>.input input{font-size:1em;padding-top:.57142857em;padding-bottom:.57142857em}.ui.menu .item>.input .button,.ui.menu .item>.input .label{padding-top:.57142857em;padding-bottom:.57142857em}.ui.menu .header.item,.ui.vertical.menu .header.item{margin:0;background:0 0;text-transform:normal;font-weight:700}.ui.vertical.menu .item>.header:not(.ui){margin:0 0 .5em;font-size:1em;font-weight:700}.ui.menu .ui.popup{display:none}.ui.menu .ui.visible.popup{display:block}.ui.menu .item>i.dropdown.icon{padding:0;float:right;margin:0 0 0 1em}.ui.menu .dropdown.item .menu{left:0;min-width:calc(100% - 1px);border-radius:0 0 .28571429rem .28571429rem;background:#fff;margin:0;box-shadow:0 1px 3px 0 rgba(0,0,0,.08)}.ui.menu .ui.dropdown .menu>.item{margin:0;font-size:1em!important;padding:.71428571em 1.14285714em!important;background:0 0!important;color:rgba(0,0,0,.87)!important;text-transform:none!important;font-weight:400!important;box-shadow:none!important;-webkit-transition:none!important;transition:none!important}.ui.menu .ui.dropdown .menu>.item:hover,.ui.menu .ui.dropdown .menu>.selected.item{background:rgba(0,0,0,.05)!important;color:rgba(0,0,0,.95)!important}.ui.menu .ui.dropdown .menu>.active.item{background:rgba(0,0,0,.03)!important;font-weight:700!important;color:rgba(0,0,0,.95)!important}.ui.menu .ui.dropdown.item .menu .item:not(.filtered){display:block}.ui.menu .ui.dropdown .menu>.item .icon:not(.dropdown){display:inline-block;font-size:1em!important;float:none;margin:0 .75em 0 0}.ui.secondary.menu .dropdown.item>.menu,.ui.text.menu .dropdown.item>.menu{border-radius:.28571429rem;margin-top:.35714286em}.ui.menu .pointing.dropdown.item .menu{margin-top:.75em}.ui.inverted.menu .search.dropdown.item>.search,.ui.inverted.menu .search.dropdown.item>.text{color:rgba(255,255,255,.9)}.ui.vertical.menu .dropdown.item>.icon{float:right;content:"\f0da";margin-left:1em}.ui.vertical.menu .dropdown.item .menu{top:0!important;left:100%;min-width:0;margin:0;box-shadow:0 1px 3px 0 rgba(0,0,0,.08);border-radius:0 .28571429rem .28571429rem}.ui.vertical.menu .active.dropdown.item{border-top-right-radius:0;border-bottom-right-radius:0}.ui.vertical.menu .dropdown.active.item{box-shadow:none}.ui.item.menu .dropdown .menu .item{width:100%}.ui.menu .item>.label{background:#999;color:#fff;margin-left:1em;padding:.3em .71428571em}.ui.vertical.menu .item>.label{background:#999;color:#fff;margin-top:-.15em;margin-bottom:-.15em;padding:.3em .71428571em;float:right;text-align:center}.ui.menu .item>.label:before{background-color:#999}.ui.menu .item>.floating.label{padding:.3em .71428571em}.ui.menu .item>img:not(.ui){display:inline-block;vertical-align:middle;margin:-.3em 0;width:2.5em}.ui.vertical.menu .item>img:not(.ui):only-child{display:block;max-width:100%;width:auto}.ui.vertical.sidebar.menu>.item:first-child:before{display:block!important}.ui.vertical.sidebar.menu>.item::before{top:auto;bottom:0}@media only screen and (max-width:767px){.ui.menu>.ui.container{width:100%;margin-left:0!important;margin-right:0!important}}@media only screen and (min-width:768px){.ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless)>.container>.item:not(.right):not(.borderless):first-child{border-left:1px solid rgba(34,36,38,.1)}}.ui.link.menu .item:hover,.ui.menu .dropdown.item:hover,.ui.menu .link.item:hover,.ui.menu a.item:hover{cursor:pointer;background:rgba(0,0,0,.03);color:rgba(0,0,0,.95)}.ui.link.menu .item:active,.ui.menu .link.item:active,.ui.menu a.item:active{background:rgba(0,0,0,.03);color:rgba(0,0,0,.9)}.ui.menu .active.item{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);font-weight:400;box-shadow:none}.ui.menu .active.item>i.icon{opacity:1}.ui.menu .active.item:hover,.ui.vertical.menu .active.item:hover{background-color:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.menu .item.disabled,.ui.menu .item.disabled:hover{cursor:default;background-color:transparent!important;color:rgba(40,40,40,.3)}.ui.menu:not(.vertical) .left.item,.ui.menu:not(.vertical) .left.menu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-right:auto!important}.ui.menu:not(.vertical) .right.item,.ui.menu:not(.vertical) .right.menu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-left:auto!important}.ui.menu .right.item::before,.ui.menu .right.menu>.item::before{right:auto;left:0}.ui.vertical.menu{display:block;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background:#fff;box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.ui.vertical.menu .item{display:block;background:0 0;border-top:none;border-right:none}.ui.vertical.menu>.item:first-child{border-radius:.28571429rem .28571429rem 0 0}.ui.vertical.menu>.item:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui.vertical.menu .item>i.icon{width:1.18em;float:right;margin:0 0 0 .5em}.ui.vertical.menu .item>.label+i.icon{float:none;margin:0 .5em 0 0}.ui.vertical.menu .item:before{position:absolute;content:'';top:0;left:0;width:100%;background:rgba(34,36,38,.1);height:1px}.ui.vertical.menu .item:first-child:before{display:none!important}.ui.vertical.menu .item>.menu{margin:.5em -1.14285714em 0}.ui.vertical.menu .menu .item{background:0 0;padding:.5em 1.33333333em;font-size:.85714286em;color:rgba(0,0,0,.5)}.ui.vertical.menu .item .menu .link.item:hover,.ui.vertical.menu .item .menu a.item:hover{color:rgba(0,0,0,.85)}.ui.vertical.menu .menu .item:before{display:none}.ui.vertical.menu .active.item{background:rgba(0,0,0,.05);border-radius:0;box-shadow:none}.ui.vertical.menu>.active.item:first-child{border-radius:0 .28571429rem 0 0}.ui.vertical.menu>.active.item:last-child{border-radius:0 0 .28571429rem}.ui.vertical.menu>.active.item:only-child{border-radius:0 .28571429rem .28571429rem 0}.ui.vertical.menu .active.item .menu .active.item{border-left:none}.ui.vertical.menu .item .menu .active.item{background-color:transparent;font-weight:700;color:rgba(0,0,0,.95)}.ui.tabular.menu{background-color:transparent;border-radius:0;box-shadow:none!important;border:none;border-bottom:1px solid #d4d4d5}.ui.tabular.fluid.menu{width:calc(100% + 2px)!important}.ui.tabular.menu .item{background-color:transparent;border-left:1px solid transparent;border-right:1px solid transparent;border-top:2px solid transparent;border-bottom:none;padding-left:1.42857143em;padding-right:1.42857143em;color:rgba(0,0,0,.87)}.ui.tabular.menu .item:before{display:none}.ui.tabular.menu .item:hover{background-color:transparent;color:rgba(0,0,0,.8)}.ui.tabular.menu .active.item{background-color:#fff;color:rgba(0,0,0,.95);border-top-width:1px;border-color:#d4d4d5;font-weight:700;margin-bottom:-1px;box-shadow:none;border-radius:.28571429rem .28571429rem 0 0!important}.ui.tabular.menu+.bottom.attached.segment,.ui.tabular.menu~.bottom.attached.segment+.bottom.attached.segment{border-top:none;margin:0;width:100%}.ui.vertical.tabular.menu{background-color:transparent;border-radius:0;box-shadow:none!important;border-bottom:none;border-right:1px solid #d4d4d5}.ui.vertical.tabular.menu .item{background:0 0;border-left:1px solid transparent;border-bottom:1px solid transparent;border-top:1px solid transparent;border-right:none}.ui.vertical.tabular.menu .active.item{background-color:#fff;color:rgba(0,0,0,.95);border-color:#d4d4d5;margin:0 -1px 0 0;border-radius:.28571429rem 0 0 .28571429rem!important}.ui.tabular.menu .active.dropdown.item{margin-bottom:0;border-left:1px solid transparent;border-right:1px solid transparent;border-top:2px solid transparent;border-bottom:none}.ui.pagination.menu{margin:0;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.ui.pagination.menu .item:last-child{border-radius:0 .28571429rem .28571429rem 0}.ui.pagination.menu .item:last-child:before{display:none}.ui.pagination.menu .item{min-width:3em;text-align:center}.ui.pagination.menu .icon.item i.icon{vertical-align:top}.ui.pagination.menu .active.item{border-top:none;padding-top:.92857143em;background-color:rgba(0,0,0,.05);color:rgba(0,0,0,.95);box-shadow:none}.ui.secondary.menu{background:0 0;margin-left:-.35714286em;margin-right:-.35714286em;border-radius:0;border:none;box-shadow:none}.ui.secondary.menu .item{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;box-shadow:none;border:none;padding:.71428571em .92857143em;margin:0 .35714286em;background:0 0;-webkit-transition:color .1s ease;transition:color .1s ease;border-radius:.28571429rem}.ui.secondary.menu .item:before{display:none!important}.ui.secondary.menu .header.item{border-radius:0;border-right:1px solid rgba(34,36,38,.15);background:none}.ui.secondary.menu .item>img:not(.ui){margin:0}.ui.secondary.menu .dropdown.item:hover,.ui.secondary.menu .link.item:hover,.ui.secondary.menu a.item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.secondary.menu .active.item{box-shadow:none;background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);border-radius:.28571429rem}.ui.secondary.menu .active.item:hover{box-shadow:none;background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.secondary.inverted.menu .link.item,.ui.secondary.inverted.menu a.item{color:rgba(255,255,255,.7)!important}.ui.secondary.inverted.menu .dropdown.item:hover,.ui.secondary.inverted.menu .link.item:hover,.ui.secondary.inverted.menu a.item:hover{background:rgba(255,255,255,.08);color:#fff!important}.ui.secondary.inverted.menu .active.item{background:rgba(255,255,255,.15);color:#fff!important}.ui.secondary.item.menu{margin-left:0;margin-right:0}.ui.secondary.item.menu .item:last-child{margin-right:0}.ui.secondary.attached.menu{box-shadow:none}.ui.secondary.vertical.menu>.item{border:none;margin:0 0 .35714286em;border-radius:.28571429rem!important}.ui.secondary.vertical.menu>.header.item{border-radius:0}.ui.secondary.inverted.menu,.ui.vertical.secondary.menu .item>.menu .item{background-color:transparent}.ui.secondary.pointing.menu{margin-left:0;margin-right:0;border-bottom:2px solid rgba(34,36,38,.15)}.ui.secondary.pointing.menu .item{border-bottom-color:transparent;border-bottom-style:solid;border-radius:0;-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end;margin:0 0 -2px;padding:.85714286em 1.14285714em;border-bottom-width:2px;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.secondary.pointing.menu .header.item{color:rgba(0,0,0,.85)!important}.ui.secondary.pointing.menu .text.item{box-shadow:none!important}.ui.secondary.pointing.menu .item:after{display:none}.ui.secondary.pointing.menu .dropdown.item:hover,.ui.secondary.pointing.menu .link.item:hover,.ui.secondary.pointing.menu a.item:hover{background-color:transparent;color:rgba(0,0,0,.87)}.ui.secondary.pointing.menu .dropdown.item:active,.ui.secondary.pointing.menu .link.item:active,.ui.secondary.pointing.menu a.item:active{background-color:transparent;border-color:rgba(34,36,38,.15)}.ui.secondary.pointing.menu .active.item{background-color:transparent;box-shadow:none;border-color:#1b1c1d;font-weight:700;color:rgba(0,0,0,.95)}.ui.secondary.pointing.menu .active.item:hover{border-color:#1b1c1d;color:rgba(0,0,0,.95)}.ui.secondary.pointing.menu .active.dropdown.item{border-color:transparent}.ui.secondary.vertical.pointing.menu{border-bottom-width:0;border-right-width:2px;border-right-style:solid;border-right-color:rgba(34,36,38,.15)}.ui.secondary.vertical.pointing.menu .item{border-bottom:none;border-right-style:solid;border-right-color:transparent;border-radius:0!important;margin:0 -2px 0 0;border-right-width:2px}.ui.secondary.vertical.pointing.menu .active.item{border-color:#1b1c1d}.ui.secondary.inverted.pointing.menu{border-width:2px;border-color:rgba(34,36,38,.15)}.ui.secondary.inverted.pointing.menu .item{color:rgba(255,255,255,.9)}.ui.secondary.inverted.pointing.menu .header.item{color:#fff!important}.ui.secondary.inverted.pointing.menu .item:hover{color:rgba(0,0,0,.95)}.ui.secondary.inverted.pointing.menu .active.item{border-color:#fff;color:#fff}.ui.text.menu{background:none;border-radius:0;box-shadow:none;border:none;margin:1.14285714em -.5em}.ui.text.menu .item{padding:0;border-radius:0;box-shadow:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;margin:0 .5em;font-weight:400;color:rgba(0,0,0,.6);-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.vertical.text.menu>.menu{margin:0}.ui.text.menu .item:before,.ui.text.menu .menu .item:before{display:none!important}.ui.text.menu .header.item{background-color:transparent;padding:0;opacity:1;color:rgba(0,0,0,.85);font-size:.92857143em;text-transform:uppercase;font-weight:700}.ui.text.item.menu .item,.ui.text.menu .item>img:not(.ui){margin:0}.ui.vertical.text.menu{margin:1em 0}.ui.vertical.text.menu:first-child{margin-top:0}.ui.vertical.text.menu:last-child{margin-bottom:0}.ui.vertical.text.menu .item{margin:.57142857em 0}.ui.vertical.text.menu .item>i.icon{float:none;margin:0 .35714286em 0 0}.ui.vertical.text.menu .header.item{margin:.57142857em 0 .71428571em}.ui.text.menu .item:hover{opacity:1;background-color:transparent}.ui.text.menu .active.item{background-color:transparent;padding:0;border:none;box-shadow:none;font-weight:400;color:rgba(0,0,0,.95)}.ui.text.menu .active.item:hover{background-color:transparent}.ui.text.attached.menu,.ui.text.pointing.menu .active.item:after{box-shadow:none}.ui.inverted.text.menu,.ui.inverted.text.menu .active.item,.ui.inverted.text.menu .item,.ui.inverted.text.menu .item:hover{background-color:transparent!important}.ui.fluid.text.menu{margin-left:0;margin-right:0}.ui.icon.menu .item{height:auto;text-align:center;color:#1b1c1d}.ui.icon.menu .item>.icon{margin:0;opacity:1}.ui.vertical.icon.menu .item>.icon:not(.dropdown){display:block;margin:0 auto;float:none}.ui.icon.menu .icon:before{opacity:1}.ui.menu .icon.item>.icon{width:auto;margin:0 auto}.ui.vertical.icon.menu{width:auto}.ui.inverted.icon.menu .item{color:#fff}.ui.labeled.icon.menu{text-align:center}.ui.fluid.labeled.icon.menu .item{min-width:0}.ui.labeled.icon.menu .item{min-width:6em}.ui.labeled.icon.menu:not(.vertical) .item{padding-left:1.71428571em;padding-right:1.71428571em}.ui.labeled.icon.menu .item>.icon:not(.dropdown){height:1em;display:block;font-size:1.42857143em!important;margin:0 .5rem 0 0!important}.ui.vertical.labeled.icon.menu .item>.icon:not(.dropdown){margin:0 auto .5rem!important}@media only screen and (max-width:767px){.ui.stackable.menu{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.stackable.menu .item{width:100%!important}.ui.stackable.menu .item:before{position:absolute;content:'';top:auto;bottom:0;left:0;width:100%;background:rgba(34,36,38,.1);height:1px}}.ui.menu .red.active.item,.ui.red.menu .active.item{border-color:#db2828!important;color:#db2828!important}.ui.menu .orange.active.item,.ui.orange.menu .active.item{border-color:#f2711c!important;color:#f2711c!important}.ui.menu .yellow.active.item,.ui.yellow.menu .active.item{border-color:#fbbd08!important;color:#fbbd08!important}.ui.menu .olive.active.item,.ui.olive.menu .active.item{border-color:#b5cc18!important;color:#b5cc18!important}.ui.green.menu .active.item,.ui.menu .green.active.item{border-color:#21ba45!important;color:#21ba45!important}.ui.menu .teal.active.item,.ui.teal.menu .active.item{border-color:#00b5ad!important;color:#00b5ad!important}.ui.blue.menu .active.item,.ui.menu .blue.active.item{border-color:#2185d0!important;color:#2185d0!important}.ui.menu .violet.active.item,.ui.violet.menu .active.item{border-color:#6435c9!important;color:#6435c9!important}.ui.menu .purple.active.item,.ui.purple.menu .active.item{border-color:#a333c8!important;color:#a333c8!important}.ui.menu .pink.active.item,.ui.pink.menu .active.item{border-color:#e03997!important;color:#e03997!important}.ui.brown.menu .active.item,.ui.menu .brown.active.item{border-color:#a5673f!important;color:#a5673f!important}.ui.grey.menu .active.item,.ui.menu .grey.active.item{border-color:#767676!important;color:#767676!important}.ui.inverted.menu{border:0 solid transparent;background:#1b1c1d;box-shadow:none}.ui.inverted.menu .item,.ui.inverted.menu .item>a:not(.ui){background:0 0;color:rgba(255,255,255,.9)}.ui.inverted.menu .item.menu{background:0 0}.ui.inverted.menu .item:before,.ui.vertical.inverted.menu .item:before{background:rgba(255,255,255,.08)}.ui.vertical.inverted.menu .menu .item,.ui.vertical.inverted.menu .menu .item a:not(.ui){color:rgba(255,255,255,.5)}.ui.inverted.menu .header.item{margin:0;background:0 0;box-shadow:none}.ui.inverted.menu .item.disabled,.ui.inverted.menu .item.disabled:hover{color:rgba(225,225,225,.3)}.ui.inverted.menu .dropdown.item:hover,.ui.inverted.menu .link.item:hover,.ui.inverted.menu a.item:hover,.ui.link.inverted.menu .item:hover{background:rgba(255,255,255,.08);color:#fff}.ui.vertical.inverted.menu .item .menu .link.item:hover,.ui.vertical.inverted.menu .item .menu a.item:hover{background:0 0;color:#fff}.ui.inverted.menu .link.item:active,.ui.inverted.menu a.item:active{background:rgba(255,255,255,.08);color:#fff}.ui.inverted.menu .active.item{background:rgba(255,255,255,.15);color:#fff!important}.ui.inverted.vertical.menu .item .menu .active.item{background:0 0;color:#fff}.ui.inverted.pointing.menu .active.item:after{background:#3d3e3f!important;margin:0!important;box-shadow:none!important;border:none!important}.ui.inverted.menu .active.item:hover{background:rgba(255,255,255,.15);color:#fff!important}.ui.inverted.pointing.menu .active.item:hover:after{background:#3d3e3f!important}.ui.floated.menu{float:left;margin:0 .5rem 0 0}.ui.floated.menu .item:last-child:before{display:none}.ui.right.floated.menu{float:right;margin:0 0 0 .5rem}.ui.inverted.red.menu{background-color:#db2828}.ui.inverted.red.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.red.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.orange.menu{background-color:#f2711c}.ui.inverted.orange.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.orange.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.yellow.menu{background-color:#fbbd08}.ui.inverted.yellow.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.yellow.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.olive.menu{background-color:#b5cc18}.ui.inverted.olive.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.olive.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.green.menu{background-color:#21ba45}.ui.inverted.green.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.green.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.teal.menu{background-color:#00b5ad}.ui.inverted.teal.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.teal.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.blue.menu{background-color:#2185d0}.ui.inverted.blue.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.blue.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.violet.menu{background-color:#6435c9}.ui.inverted.violet.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.violet.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.purple.menu{background-color:#a333c8}.ui.inverted.purple.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.purple.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.pink.menu{background-color:#e03997}.ui.inverted.pink.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.pink.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.brown.menu{background-color:#a5673f}.ui.inverted.brown.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.brown.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.inverted.grey.menu{background-color:#767676}.ui.inverted.grey.menu .item:before{background-color:rgba(34,36,38,.1)}.ui.inverted.grey.menu .active.item{background-color:rgba(0,0,0,.1)!important}.ui.fitted.menu .item,.ui.fitted.menu .item .menu .item,.ui.menu .fitted.item{padding:0}.ui.horizontally.fitted.menu .item,.ui.horizontally.fitted.menu .item .menu .item,.ui.menu .horizontally.fitted.item{padding-top:.92857143em;padding-bottom:.92857143em}.ui.menu .vertically.fitted.item,.ui.vertically.fitted.menu .item,.ui.vertically.fitted.menu .item .menu .item{padding-left:1.14285714em;padding-right:1.14285714em}.ui.borderless.menu .item .menu .item:before,.ui.borderless.menu .item:before,.ui.menu .borderless.item:before{background:0 0!important}.ui.compact.menu{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;margin:0;vertical-align:middle}.ui.compact.vertical.menu{display:inline-block;width:auto!important}.ui.compact.menu .item:last-child{border-radius:0 .28571429rem .28571429rem 0}.ui.compact.menu .item:last-child:before{display:none}.ui.compact.vertical.menu .item:last-child::before{display:block}.ui.menu.fluid,.ui.vertical.menu.fluid{width:100%!important}.ui.item.menu,.ui.item.menu .item{width:100%;padding-left:0!important;padding-right:0!important;text-align:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.ui.item.menu .item:last-child:before{display:none}.ui.menu.two.item .item{width:50%}.ui.menu.three.item .item{width:33.333%}.ui.menu.four.item .item{width:25%}.ui.menu.five.item .item{width:20%}.ui.menu.six.item .item{width:16.666%}.ui.menu.seven.item .item{width:14.285%}.ui.menu.eight.item .item{width:12.5%}.ui.menu.nine.item .item{width:11.11%}.ui.menu.ten.item .item{width:10%}.ui.menu.eleven.item .item{width:9.09%}.ui.menu.twelve.item .item{width:8.333%}.ui.menu.fixed{position:fixed;z-index:101;margin:0;width:100%}.ui.menu.fixed,.ui.menu.fixed .item:first-child,.ui.menu.fixed .item:last-child{border-radius:0!important}.ui.fixed.menu,.ui[class*="top fixed"].menu{top:0;left:0;right:auto;bottom:auto}.ui[class*="top fixed"].menu{border-top:none;border-left:none;border-right:none}.ui[class*="right fixed"].menu{border-top:none;border-bottom:none;border-right:none;top:0;right:0;left:auto;bottom:auto;width:auto;height:100%}.ui[class*="bottom fixed"].menu{border-bottom:none;border-left:none;border-right:none;bottom:0;left:0;top:auto;right:auto}.ui[class*="left fixed"].menu{border-top:none;border-bottom:none;border-left:none;top:0;left:0;right:auto;bottom:auto;width:auto;height:100%}.ui.fixed.menu+.ui.grid{padding-top:2.75rem}.ui.pointing.menu .item:after{visibility:hidden;position:absolute;content:'';top:100%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);background:0 0;margin:.5px 0 0;width:.57142857em;height:.57142857em;border:none;border-bottom:1px solid #d4d4d5;border-right:1px solid #d4d4d5;z-index:2;-webkit-transition:background .1s ease;transition:background .1s ease}.ui.vertical.pointing.menu .item:after{position:absolute;top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateX(50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(50%) translateY(-50%) rotate(45deg);transform:translateX(50%) translateY(-50%) rotate(45deg);margin:0 -.5px 0 0;border:none;border-top:1px solid #d4d4d5;border-right:1px solid #d4d4d5}.ui.pointing.menu .active.item:after{visibility:visible}.ui.pointing.menu .active.dropdown.item:after{visibility:hidden}.ui.pointing.menu .active.item .menu .active.item:after,.ui.pointing.menu .dropdown.active.item:after{display:none}.ui.pointing.menu .active.item:after,.ui.pointing.menu .active.item:hover:after,.ui.vertical.pointing.menu .active.item:after,.ui.vertical.pointing.menu .active.item:hover:after{background-color:#f2f2f2}.ui.vertical.pointing.menu .menu .active.item:after{background-color:#fff}.ui.attached.menu{border-radius:0;margin-left:-1px;margin-right:-1px;width:calc(100% + 2px);box-shadow:none}.ui.attached.menu:not(.top):not(.bottom){margin-top:0;margin-bottom:0}.ui.top.attached.menu{margin-bottom:0;border-radius:.28571429rem .28571429rem 0 0}.ui.top.attached.menu>.item:first-child{border-radius:.28571429rem 0 0}.ui.bottom.attached.menu{margin-top:0;border-top:none;border-radius:0 0 .28571429rem .28571429rem}.ui.bottom.attached.menu>.item:first-child{border-radius:0 0 0 .28571429rem}.ui.top.attached.menu:not(.fixed):not(.tabular){border-bottom:none}.ui.attached.tabular.menu{margin-left:0;margin-right:0;width:100%}.ui.small.menu{font-size:.92857143rem}.ui.small.vertical.menu{width:13rem}.ui.menu{font-size:1rem}.ui.vertical.menu{width:15rem}.ui.large.menu{font-size:1.14285714rem}.ui.large.vertical.menu{width:18rem}.ui.huge.menu{font-size:1.42857143rem}.ui.huge.vertical.menu{width:20rem}.ui.message{position:relative;min-height:1em;margin:1em 0;background:#f8f8f9;padding:1em 1.5em;line-height:1.4285em;color:rgba(0,0,0,.87);-webkit-transition:opacity .1s ease,color .1s ease,background .1s ease,box-shadow .1s ease;transition:opacity .1s ease,color .1s ease,background .1s ease,box-shadow .1s ease;border-radius:.28571429rem;box-shadow:0 0 0 1px rgba(34,36,38,.22) inset,0 0 0 0 transparent}.ui.message:first-child{margin-top:0}.ui.message:last-child{margin-bottom:0}.ui.message .header{display:block;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;margin:-.14285em 0 0}.ui.message .header:not(.ui){font-size:1.14285714em}.ui.message p{opacity:.85;margin:.75em 0}.ui.message p:first-child{margin-top:0}.ui.message p:last-child{margin-bottom:0}.ui.message .header+p{margin-top:.25em}.ui.message ul.list{text-align:left;padding:0;opacity:.85;list-style-position:inside;margin:.5em 0 0}.ui.message ul.list:first-child{margin-top:0}.ui.message ul.list:last-child{margin-bottom:0}.ui.message ul.list li{position:relative;list-style-type:none;margin:0 0 .3em 1em;padding:0}.ui.message ul.list li:before{position:absolute;content:'•';left:-1em;height:100%;vertical-align:baseline}.ui.message ul.list li:last-child{margin-bottom:0}.ui.message>.icon{margin-right:.6em}.ui.message>.close.icon{cursor:pointer;position:absolute;margin:0;top:.78575em;right:.5em;opacity:.7;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.message>.close.icon:hover{opacity:1}.ui.message>:first-child{margin-top:0}.ui.message>:last-child{margin-bottom:0}.ui.dropdown .menu>.message{margin:0 -1px}.ui.visible.visible.visible.visible.message{display:block}.ui.icon.visible.visible.visible.visible.message{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ui.hidden.hidden.hidden.hidden.message{display:none}.ui.compact.message{display:inline-block}.ui.attached.message{margin-bottom:-1px;border-radius:.28571429rem .28571429rem 0 0;box-shadow:0 0 0 1px rgba(34,36,38,.15) inset;margin-left:-1px;margin-right:-1px}.ui.attached+.ui.attached.message:not(.top):not(.bottom){margin-top:-1px;border-radius:0}.ui.bottom.attached.message{margin-top:-1px;border-radius:0 0 .28571429rem .28571429rem;box-shadow:0 0 0 1px rgba(34,36,38,.15) inset,0 1px 2px 0 rgba(34,36,38,.15)}.ui.bottom.attached.message:not(:last-child){margin-bottom:1em}.ui.attached.icon.message{display:block;width:auto}.ui.icon.message{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.icon.message>.icon:not(.close){display:block;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;width:auto;line-height:1;vertical-align:middle;font-size:3em;opacity:.8}.ui.icon.message>.content{display:block;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;vertical-align:middle}.ui.icon.message .icon:not(.close)+.content{padding-left:0}.ui.icon.message .circular.icon{width:1em}.ui.floating.message{box-shadow:0 0 0 1px rgba(34,36,38,.22) inset,0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08)}.ui.positive.message{background-color:#fcfff5;color:#2c662d}.ui.attached.positive.message,.ui.positive.message{box-shadow:0 0 0 1px #a3c293 inset,0 0 0 0 transparent}.ui.positive.message .header{color:#1a531b}.ui.negative.message{background-color:#fff6f6;color:#9f3a38}.ui.attached.negative.message,.ui.negative.message{box-shadow:0 0 0 1px #e0b4b4 inset,0 0 0 0 transparent}.ui.negative.message .header{color:#912d2b}.ui.info.message{background-color:#f8ffff;color:#276f86}.ui.attached.info.message,.ui.info.message{box-shadow:0 0 0 1px #a9d5de inset,0 0 0 0 transparent}.ui.info.message .header{color:#0e566c}.ui.warning.message{background-color:#fffaf3;color:#573a08}.ui.attached.warning.message,.ui.warning.message{box-shadow:0 0 0 1px #c9ba9b inset,0 0 0 0 transparent}.ui.warning.message .header{color:#794b02}.ui.error.message{background-color:#fff6f6;color:#9f3a38}.ui.attached.error.message,.ui.error.message{box-shadow:0 0 0 1px #e0b4b4 inset,0 0 0 0 transparent}.ui.error.message .header{color:#912d2b}.ui.success.message{background-color:#fcfff5;color:#2c662d}.ui.attached.success.message,.ui.success.message{box-shadow:0 0 0 1px #a3c293 inset,0 0 0 0 transparent}.ui.success.message .header{color:#1a531b}.ui.black.message,.ui.inverted.message{background-color:#1b1c1d;color:rgba(255,255,255,.9)}.ui.red.message{background-color:#ffe8e6;color:#db2828}.ui.red.message .header{color:#c82121}.ui.orange.message{background-color:#ffedde;color:#f2711c}.ui.orange.message .header{color:#e7640d}.ui.yellow.message{background-color:#fff8db;color:#b58105}.ui.yellow.message .header{color:#9c6f04}.ui.olive.message{background-color:#fbfdef;color:#8abc1e}.ui.olive.message .header{color:#7aa61a}.ui.green.message{background-color:#e5f9e7;color:#1ebc30}.ui.green.message .header{color:#1aa62a}.ui.teal.message{background-color:#e1f7f7;color:#10a3a3}.ui.teal.message .header{color:#0e8c8c}.ui.blue.message{background-color:#dff0ff;color:#2185d0}.ui.blue.message .header{color:#1e77ba}.ui.violet.message{background-color:#eae7ff;color:#6435c9}.ui.violet.message .header{color:#5a30b5}.ui.purple.message{background-color:#f6e7ff;color:#a333c8}.ui.purple.message .header{color:#922eb4}.ui.pink.message{background-color:#ffe3fb;color:#e03997}.ui.pink.message .header{color:#dd238b}.ui.brown.message{background-color:#f1e2d3;color:#a5673f}.ui.brown.message .header{color:#935b38}.ui.small.message{font-size:.92857143em}.ui.message{font-size:1em}.ui.large.message{font-size:1.14285714em}.ui.huge.message{font-size:1.42857143em}.ui.massive.message{font-size:1.71428571em}.ui.ad{display:block;overflow:hidden;margin:1em 0}.ui.ad:first-child,.ui.ad:last-child{margin:0}.ui.ad iframe{margin:0;padding:0;border:none;overflow:hidden}.ui.leaderboard.ad{width:728px;height:90px}.ui[class*="medium rectangle"].ad{width:300px;height:250px}.ui[class*="large rectangle"].ad{width:336px;height:280px}.ui[class*="half page"].ad{width:300px;height:600px}.ui.square.ad{width:250px;height:250px}.ui[class*="small square"].ad{width:200px;height:200px}.ui[class*="small rectangle"].ad{width:180px;height:150px}.ui[class*="vertical rectangle"].ad{width:240px;height:400px}.ui.button.ad{width:120px;height:90px}.ui[class*="square button"].ad{width:125px;height:125px}.ui[class*="small button"].ad{width:120px;height:60px}.ui.skyscraper.ad{width:120px;height:600px}.ui[class*="wide skyscraper"].ad{width:160px}.ui.banner.ad{width:468px;height:60px}.ui[class*="vertical banner"].ad{width:120px;height:240px}.ui[class*="top banner"].ad{width:930px;height:180px}.ui[class*="half banner"].ad{width:234px;height:60px}.ui[class*="large leaderboard"].ad{width:970px;height:90px}.ui.billboard.ad{width:970px;height:250px}.ui.panorama.ad{width:980px;height:120px}.ui.netboard.ad{width:580px;height:400px}.ui[class*="large mobile banner"].ad{width:320px;height:100px}.ui[class*="mobile leaderboard"].ad{width:320px;height:50px}.ui.mobile.ad{display:none}@media only screen and (max-width:767px){.ui.mobile.ad{display:block}}.ui.centered.ad{margin-left:auto;margin-right:auto}.ui.test.ad{position:relative;background:#545454}.ui.test.ad:after{position:absolute;top:50%;left:50%;width:100%;text-align:center;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);content:'Ad';color:#fff;font-size:1em;font-weight:700}.ui.mobile.test.ad:after{font-size:.85714286em}.ui.test.ad[data-text]:after{content:attr(data-text)}.ui.card,.ui.cards>.card{max-width:100%;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:290px;min-height:0;background:#fff;padding:0;border:none;border-radius:.28571429rem;box-shadow:0 1px 3px 0 #d4d4d5,0 0 0 1px #d4d4d5;-webkit-transition:box-shadow .1s ease,-webkit-transform .1s ease;transition:box-shadow .1s ease,transform .1s ease;z-index:''}.ui.card{margin:1em 0}.ui.card a,.ui.cards>.card a{cursor:pointer}.ui.card:first-child{margin-top:0}.ui.card:last-child{margin-bottom:0}.ui.cards{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:-.875em -.5em;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.cards>.card{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:.875em .5em;float:none}.ui.card:after,.ui.cards:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.cards~.ui.cards{margin-top:.875em}.ui.card>:first-child,.ui.cards>.card>:first-child{border-radius:.28571429rem .28571429rem 0 0!important;border-top:none!important}.ui.card>:last-child,.ui.cards>.card>:last-child{border-radius:0 0 .28571429rem .28571429rem!important}.ui.card>:only-child,.ui.cards>.card>:only-child{border-radius:.28571429rem!important}.ui.card>.image,.ui.cards>.card>.image{position:relative;display:block;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding:0;background:rgba(0,0,0,.05)}.ui.card>.image>img,.ui.cards>.card>.image>img{display:block;width:100%;height:auto;border-radius:inherit}.ui.card>.image:not(.ui)>img,.ui.cards>.card>.image:not(.ui)>img{border:none}.ui.card>.content,.ui.cards>.card>.content{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;border:none;border-top:1px solid rgba(34,36,38,.1);background:0 0;margin:0;padding:1em;box-shadow:none;font-size:1em;border-radius:0}.ui.card>.content:after,.ui.cards>.card>.content:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.card>.content>.header,.ui.cards>.card>.content>.header{display:block;margin:'';font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;color:rgba(0,0,0,.85)}.ui.card>.content>.header:not(.ui),.ui.cards>.card>.content>.header:not(.ui){font-weight:700;font-size:1.28571429em;margin-top:-.21425em;line-height:1.2857em}.ui.card>.content>.header+.description,.ui.card>.content>.meta+.description,.ui.cards>.card>.content>.header+.description,.ui.cards>.card>.content>.meta+.description{margin-top:.5em}.ui.card [class*="left floated"],.ui.cards>.card [class*="left floated"]{float:left}.ui.card [class*="right floated"],.ui.cards>.card [class*="right floated"]{float:right}.ui.card [class*="left aligned"],.ui.cards>.card [class*="left aligned"]{text-align:left}.ui.card [class*="center aligned"],.ui.cards>.card [class*="center aligned"]{text-align:center}.ui.card [class*="right aligned"],.ui.cards>.card [class*="right aligned"]{text-align:right}.ui.card .content img,.ui.cards>.card .content img{display:inline-block;vertical-align:middle;width:''}.ui.card .avatar img,.ui.card img.avatar,.ui.cards>.card .avatar img,.ui.cards>.card img.avatar{width:2em;height:2em;border-radius:500rem}.ui.card>.content>.description,.ui.cards>.card>.content>.description{clear:both;color:rgba(0,0,0,.68)}.ui.card>.content p,.ui.cards>.card>.content p{margin:0 0 .5em}.ui.card>.content p:last-child,.ui.cards>.card>.content p:last-child{margin-bottom:0}.ui.card .meta,.ui.cards>.card .meta{font-size:1em;color:rgba(0,0,0,.4)}.ui.card .meta *,.ui.cards>.card .meta *{margin-right:.3em}.ui.card .meta :last-child,.ui.cards>.card .meta :last-child{margin-right:0}.ui.card .meta [class*="right floated"],.ui.cards>.card .meta [class*="right floated"]{margin-right:0;margin-left:.3em}.ui.card>.content a:not(.ui),.ui.cards>.card>.content a:not(.ui){color:'';-webkit-transition:color .1s ease;transition:color .1s ease}.ui.card>.content a:not(.ui):hover,.ui.cards>.card>.content a:not(.ui):hover{color:''}.ui.card>.content>a.header,.ui.cards>.card>.content>a.header{color:rgba(0,0,0,.85)}.ui.card>.content>a.header:hover,.ui.cards>.card>.content>a.header:hover{color:#1e70bf}.ui.card .meta>a:not(.ui),.ui.cards>.card .meta>a:not(.ui){color:rgba(0,0,0,.4)}.ui.card .meta>a:not(.ui):hover,.ui.cards>.card .meta>a:not(.ui):hover{color:rgba(0,0,0,.87)}.ui.card>.button,.ui.card>.buttons,.ui.cards>.card>.button,.ui.cards>.card>.buttons{margin:0 -1px;width:calc(100% + 2px)}.ui.card .dimmer,.ui.cards>.card .dimmer{background-color:'';z-index:10}.ui.card>.content .star.icon,.ui.cards>.card>.content .star.icon{cursor:pointer;opacity:.75;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.card>.content .star.icon:hover,.ui.cards>.card>.content .star.icon:hover{opacity:1;color:#ffb70a}.ui.card>.content .active.star.icon,.ui.cards>.card>.content .active.star.icon{color:#ffe623}.ui.card>.content .like.icon,.ui.cards>.card>.content .like.icon{cursor:pointer;opacity:.75;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.card>.content .like.icon:hover,.ui.cards>.card>.content .like.icon:hover{opacity:1;color:#ff2733}.ui.card>.content .active.like.icon,.ui.cards>.card>.content .active.like.icon{color:#ff2733}.ui.card>.extra,.ui.cards>.card>.extra{max-width:100%;min-height:0!important;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;border-top:1px solid rgba(0,0,0,.05)!important;position:static;background:0 0;width:auto;margin:0;padding:.75em 1em;top:0;left:0;color:rgba(0,0,0,.4);box-shadow:none;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.card>.extra a:not(.ui),.ui.cards>.card>.extra a:not(.ui){color:rgba(0,0,0,.4)}.ui.card>.extra a:not(.ui):hover,.ui.cards>.card>.extra a:not(.ui):hover{color:#1e70bf}.ui.centered.cards{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.ui.centered.card{margin-left:auto;margin-right:auto}.ui.fluid.card{width:100%;max-width:9999px}.ui.cards a.card,.ui.link.card,.ui.link.cards .card,a.ui.card{-webkit-transform:none;-ms-transform:none;transform:none}.ui.cards a.card:hover,.ui.link.card:hover,.ui.link.cards .card:hover,a.ui.card:hover{cursor:pointer;z-index:5;background:#fff;border:none;box-shadow:0 1px 3px 0 #bcbdbd,0 0 0 1px #d4d4d5;-webkit-transform:translateY(-3px);-ms-transform:translateY(-3px);transform:translateY(-3px)}.ui.cards>.red.card,.ui.red.card,.ui.red.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #db2828,0 1px 3px 0 #d4d4d5}.ui.cards>.red.card:hover,.ui.red.card:hover,.ui.red.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #d01919,0 1px 3px 0 #bcbdbd}.ui.cards>.orange.card,.ui.orange.card,.ui.orange.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #f2711c,0 1px 3px 0 #d4d4d5}.ui.cards>.orange.card:hover,.ui.orange.card:hover,.ui.orange.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #f26202,0 1px 3px 0 #bcbdbd}.ui.cards>.yellow.card,.ui.yellow.card,.ui.yellow.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #fbbd08,0 1px 3px 0 #d4d4d5}.ui.cards>.yellow.card:hover,.ui.yellow.card:hover,.ui.yellow.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #eaae00,0 1px 3px 0 #bcbdbd}.ui.cards>.olive.card,.ui.olive.card,.ui.olive.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #b5cc18,0 1px 3px 0 #d4d4d5}.ui.cards>.olive.card:hover,.ui.olive.card:hover,.ui.olive.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #a7bd0d,0 1px 3px 0 #bcbdbd}.ui.cards>.green.card,.ui.green.card,.ui.green.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #21ba45,0 1px 3px 0 #d4d4d5}.ui.cards>.green.card:hover,.ui.green.card:hover,.ui.green.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #16ab39,0 1px 3px 0 #bcbdbd}.ui.cards>.teal.card,.ui.teal.card,.ui.teal.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #00b5ad,0 1px 3px 0 #d4d4d5}.ui.cards>.teal.card:hover,.ui.teal.card:hover,.ui.teal.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #009c95,0 1px 3px 0 #bcbdbd}.ui.blue.card,.ui.blue.cards>.card,.ui.cards>.blue.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #2185d0,0 1px 3px 0 #d4d4d5}.ui.blue.card:hover,.ui.blue.cards>.card:hover,.ui.cards>.blue.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #1678c2,0 1px 3px 0 #bcbdbd}.ui.cards>.violet.card,.ui.violet.card,.ui.violet.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #6435c9,0 1px 3px 0 #d4d4d5}.ui.cards>.violet.card:hover,.ui.violet.card:hover,.ui.violet.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #5829bb,0 1px 3px 0 #bcbdbd}.ui.cards>.purple.card,.ui.purple.card,.ui.purple.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #a333c8,0 1px 3px 0 #d4d4d5}.ui.cards>.purple.card:hover,.ui.purple.card:hover,.ui.purple.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #9627ba,0 1px 3px 0 #bcbdbd}.ui.cards>.pink.card,.ui.pink.card,.ui.pink.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #e03997,0 1px 3px 0 #d4d4d5}.ui.cards>.pink.card:hover,.ui.pink.card:hover,.ui.pink.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #e61a8d,0 1px 3px 0 #bcbdbd}.ui.brown.card,.ui.brown.cards>.card,.ui.cards>.brown.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #a5673f,0 1px 3px 0 #d4d4d5}.ui.brown.card:hover,.ui.brown.cards>.card:hover,.ui.cards>.brown.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #975b33,0 1px 3px 0 #bcbdbd}.ui.cards>.grey.card,.ui.grey.card,.ui.grey.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #767676,0 1px 3px 0 #d4d4d5}.ui.cards>.grey.card:hover,.ui.grey.card:hover,.ui.grey.cards>.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #838383,0 1px 3px 0 #bcbdbd}.ui.black.card,.ui.black.cards>.card,.ui.cards>.black.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #1b1c1d,0 1px 3px 0 #d4d4d5}.ui.black.card:hover,.ui.black.cards>.card:hover,.ui.cards>.black.card:hover{box-shadow:0 0 0 1px #d4d4d5,0 2px 0 0 #27292a,0 1px 3px 0 #bcbdbd}.ui.one.cards{margin-left:0;margin-right:0}.ui.one.cards>.card{width:100%}.ui.two.cards{margin-left:-1em;margin-right:-1em}.ui.two.cards>.card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.three.cards{margin-left:-1em;margin-right:-1em}.ui.three.cards>.card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.four.cards{margin-left:-.75em;margin-right:-.75em}.ui.four.cards>.card{width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.five.cards{margin-left:-.75em;margin-right:-.75em}.ui.five.cards>.card{width:calc(20% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.six.cards{margin-left:-.75em;margin-right:-.75em}.ui.six.cards>.card{width:calc(16.66666667% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.seven.cards{margin-left:-.5em;margin-right:-.5em}.ui.seven.cards>.card{width:calc(14.28571429% - 1em);margin-left:.5em;margin-right:.5em}.ui.eight.cards{margin-left:-.5em;margin-right:-.5em}.ui.eight.cards>.card{width:calc(12.5% - 1em);margin-left:.5em;margin-right:.5em;font-size:11px}.ui.nine.cards{margin-left:-.5em;margin-right:-.5em}.ui.nine.cards>.card{width:calc(11.11111111% - 1em);margin-left:.5em;margin-right:.5em;font-size:10px}.ui.ten.cards{margin-left:-.5em;margin-right:-.5em}.ui.ten.cards>.card{width:calc(10% - 1em);margin-left:.5em;margin-right:.5em}@media only screen and (max-width:767px){.ui.two.doubling.cards{margin-left:0;margin-right:0}.ui.two.doubling.cards .card{width:100%;margin-left:0;margin-right:0}.ui.three.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.three.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.four.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.four.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.five.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.five.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.six.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.six.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.seven.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.seven.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.eight.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.eight.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.nine.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.nine.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.ten.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.ten.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}}@media only screen and (min-width:768px) and (max-width:991px){.ui.two.doubling.cards{margin-left:0;margin-right:0}.ui.two.doubling.cards .card{width:100%;margin-left:0;margin-right:0}.ui.three.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.three.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.four.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.four.doubling.cards .card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.five.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.five.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.six.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.six.doubling.cards .card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.eight.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.eight.doubling.cards .card{width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.nine.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.nine.doubling.cards .card{width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.ten.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.ten.doubling.cards .card{width:calc(20% - 1.5em);margin-left:.75em;margin-right:.75em}}@media only screen and (max-width:767px){.ui.stackable.cards{display:block!important}.ui.stackable.cards .card:first-child{margin-top:0!important}.ui.stackable.cards>.card{display:block!important;height:auto!important;margin:1em;padding:0!important;width:calc(100% - 2em)!important}}.ui.cards>.card{font-size:1em}.ui.comments{margin:1.5em 0;max-width:650px}.ui.comments:first-child{margin-top:0}.ui.comments:last-child{margin-bottom:0}.ui.comments .comment{position:relative;background:0 0;margin:.5em 0 0;padding:.5em 0 0;border:none;border-top:none;line-height:1.2}.ui.comments .comment:first-child{margin-top:0;padding-top:0}.ui.comments .comment .comments{margin:0 0 .5em .5em;padding:1em 0 1em 1em}.ui.comments .comment .comments:before{position:absolute;top:0;left:0}.ui.comments .comment .comments .comment{border:none;border-top:none;background:0 0}.ui.comments .comment .avatar{display:block;width:2.5em;height:auto;float:left;margin:.2em 0 0}.ui.comments .comment .avatar img,.ui.comments .comment img.avatar{display:block;margin:0 auto;width:100%;height:100%;border-radius:.25rem}.ui.comments .comment>.content{display:block}.ui.comments .comment>.avatar~.content{margin-left:3.5em}.ui.comments .comment .author{font-size:1em;color:rgba(0,0,0,.87);font-weight:700}.ui.comments .comment a.author{cursor:pointer}.ui.comments .comment a.author:hover{color:#1e70bf}.ui.comments .comment .metadata{display:inline-block;margin-left:.5em;color:rgba(0,0,0,.4);font-size:.875em}.ui.comments .comment .metadata>*{display:inline-block;margin:0 .5em 0 0}.ui.comments .comment .metadata>:last-child{margin-right:0}.ui.comments .comment .text{margin:.25em 0 .5em;font-size:1em;word-wrap:break-word;color:rgba(0,0,0,.87);line-height:1.3}.ui.comments .comment .actions{font-size:.875em}.ui.comments .comment .actions a{cursor:pointer;display:inline-block;margin:0 .75em 0 0;color:rgba(0,0,0,.4)}.ui.comments .comment .actions a:last-child{margin-right:0}.ui.comments .comment .actions a.active,.ui.comments .comment .actions a:hover{color:rgba(0,0,0,.8)}.ui.comments>.reply.form{margin-top:1em}.ui.comments .comment .reply.form{width:100%;margin-top:1em}.ui.comments .reply.form textarea{font-size:1em;height:12em}.ui.collapsed.comments,.ui.comments .collapsed.comment,.ui.comments .collapsed.comments{display:none}.ui.threaded.comments .comment .comments{margin:-1.5em 0 -1em 1.25em;padding:3em 0 2em 2.25em;box-shadow:-1px 0 0 rgba(34,36,38,.15)}.ui.minimal.comments .comment .actions{opacity:0;position:absolute;top:0;right:0;left:auto;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;-webkit-transition-delay:.1s;transition-delay:.1s}.ui.minimal.comments .comment>.content:hover>.actions{opacity:1}.ui.small.comments{font-size:.9em}.ui.comments{font-size:1em}.ui.large.comments{font-size:1.1em}.ui.huge.comments{font-size:1.2em}.ui.feed{margin:1em 0}.ui.feed:first-child{margin-top:0}.ui.feed:last-child{margin-bottom:0}.ui.feed>.event{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;width:100%;padding:.21428571rem 0;margin:0;background:0 0;border-top:none}.ui.feed>.event:first-child{border-top:0;padding-top:0}.ui.feed>.event:last-child{padding-bottom:0}.ui.feed>.event>.label{display:block;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:2.5em;height:auto;-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch;text-align:left}.ui.feed>.event>.label .icon{opacity:1;font-size:1.5em;width:100%;padding:.25em;background:0 0;border:none;border-radius:none;color:rgba(0,0,0,.6)}.ui.feed>.event>.label img{width:100%;height:auto;border-radius:500rem}.ui.feed>.event>.label+.content{margin:.5em 0 .35714286em 1.14285714em}.ui.feed>.event>.content{display:block;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch;text-align:left;word-wrap:break-word}.ui.feed>.event:last-child>.content{padding-bottom:0}.ui.feed>.event>.content a{cursor:pointer}.ui.feed>.event>.content .date{margin:-.5rem 0 0;padding:0;font-weight:400;font-size:1em;font-style:normal;color:rgba(0,0,0,.4)}.ui.feed>.event>.content .summary{margin:0;font-size:1em;font-weight:700;color:rgba(0,0,0,.87)}.ui.feed>.event>.content .summary img{display:inline-block;width:auto;height:10em;margin:-.25em .25em 0 0;border-radius:.25em;vertical-align:middle}.ui.feed>.event>.content .user{display:inline-block;font-weight:700;margin-right:0;vertical-align:baseline}.ui.feed>.event>.content .user img{margin:-.25em .25em 0 0;width:auto;height:10em;vertical-align:middle}.ui.feed>.event>.content .summary>.date{display:inline-block;float:none;font-weight:400;font-size:.85714286em;font-style:normal;margin:0 0 0 .5em;padding:0;color:rgba(0,0,0,.4)}.ui.feed>.event>.content .extra{margin:.5em 0 0;background:0 0;padding:0;color:rgba(0,0,0,.87)}.ui.feed>.event>.content .extra.images img{display:inline-block;margin:0 .25em 0 0;width:6em}.ui.feed>.event>.content .extra.text{padding:0;border-left:none;font-size:1em;max-width:500px;line-height:1.4285em}.ui.feed>.event>.content .meta{display:inline-block;font-size:.85714286em;margin:.5em 0 0;background:0 0;border:none;border-radius:0;box-shadow:none;padding:0;color:rgba(0,0,0,.6)}.ui.feed>.event>.content .meta>*{position:relative;margin-left:.75em}.ui.feed>.event>.content .meta>:after{content:'';color:rgba(0,0,0,.2);top:0;left:-1em;opacity:1;position:absolute;vertical-align:top}.ui.feed>.event>.content .meta .like{color:'';-webkit-transition:.2s color ease;transition:.2s color ease}.ui.feed>.event>.content .meta .like:hover .icon{color:#ff2733}.ui.feed>.event>.content .meta .active.like .icon{color:#ef404a}.ui.feed>.event>.content .meta>:first-child{margin-left:0}.ui.feed>.event>.content .meta>:first-child::after{display:none}.ui.feed>.event>.content .meta a,.ui.feed>.event>.content .meta>.icon{cursor:pointer;opacity:1;color:rgba(0,0,0,.5);-webkit-transition:color .1s ease;transition:color .1s ease}.ui.feed>.event>.content .meta a:hover,.ui.feed>.event>.content .meta a:hover .icon,.ui.feed>.event>.content .meta>.icon:hover{color:rgba(0,0,0,.95)}.ui.small.feed{font-size:.92857143rem}.ui.feed{font-size:1rem}.ui.large.feed{font-size:1.14285714rem}.ui.items>.item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:1em 0;width:100%;min-height:0;background:0 0;padding:0;border:none;border-radius:0;box-shadow:none;-webkit-transition:box-shadow .1s ease;transition:box-shadow .1s ease;z-index:''}.ui.items>.item a{cursor:pointer}.ui.items{margin:1.5em 0}.ui.items:first-child{margin-top:0!important}.ui.items:last-child{margin-bottom:0!important}.ui.items>.item:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item:first-child{margin-top:0}.ui.items>.item:last-child{margin-bottom:0}.ui.items>.item>.image{position:relative;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;display:block;float:none;margin:0;padding:0;max-height:'';-webkit-align-self:top;-ms-flex-item-align:top;align-self:top}.ui.items>.item>.image>img{display:block;width:100%;height:auto;border-radius:.125rem;border:none}.ui.items>.item>.image:only-child>img{border-radius:0}.ui.items>.item>.content{display:block;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;background:0 0;margin:0;padding:0;box-shadow:none;font-size:1em;border:none;border-radius:0}.ui.items>.item>.content:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image+.content{min-width:0;width:auto;display:block;margin-left:0;-webkit-align-self:top;-ms-flex-item-align:top;align-self:top;padding-left:1.5em}.ui.items>.item>.content>.header{display:inline-block;margin:-.21425em 0 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;color:rgba(0,0,0,.85)}.ui.items>.item>.content>.header:not(.ui){font-size:1.28571429em}.ui.items>.item [class*="left floated"]{float:left}.ui.items>.item [class*="right floated"]{float:right}.ui.items>.item .content img{-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle;width:''}.ui.items>.item .avatar img,.ui.items>.item img.avatar{width:'';height:'';border-radius:500rem}.ui.items>.item>.content>.description{margin-top:.6em;max-width:auto;font-size:1em;line-height:1.4285em;color:rgba(0,0,0,.87)}.ui.items>.item>.content p{margin:0 0 .5em}.ui.items>.item>.content p:last-child{margin-bottom:0}.ui.items>.item .meta{margin:.5em 0;font-size:1em;line-height:1em;color:rgba(0,0,0,.6)}.ui.items>.item .meta *{margin-right:.3em}.ui.items>.item .meta :last-child{margin-right:0}.ui.items>.item .meta [class*="right floated"]{margin-right:0;margin-left:.3em}.ui.items>.item>.content a:not(.ui){color:'';-webkit-transition:color .1s ease;transition:color .1s ease}.ui.items>.item>.content a:not(.ui):hover{color:''}.ui.items>.item>.content>a.header{color:rgba(0,0,0,.85)}.ui.items>.item>.content>a.header:hover{color:#1e70bf}.ui.items>.item .meta>a:not(.ui){color:rgba(0,0,0,.4)}.ui.items>.item .meta>a:not(.ui):hover{color:rgba(0,0,0,.87)}.ui.items>.item>.content .favorite.icon{cursor:pointer;opacity:.75;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.items>.item>.content .favorite.icon:hover{opacity:1;color:#ffb70a}.ui.items>.item>.content .active.favorite.icon{color:#ffe623}.ui.items>.item>.content .like.icon{cursor:pointer;opacity:.75;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.items>.item>.content .like.icon:hover{opacity:1;color:#ff2733}.ui.items>.item>.content .active.like.icon{color:#ff2733}.ui.items>.item .extra{display:block;position:relative;background:0 0;margin:.5rem 0 0;width:100%;padding:0;top:0;left:0;color:rgba(0,0,0,.4);box-shadow:none;-webkit-transition:color .1s ease;transition:color .1s ease;border-top:none}.ui.items>.item .extra>*{margin:.25rem .5rem .25rem 0}.ui.items>.item .extra>[class*="right floated"]{margin:.25rem 0 .25rem .5rem}.ui.items>.item .extra:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image:not(.ui){width:175px}@media only screen and (min-width:768px) and (max-width:991px){.ui.items>.item{margin:1em 0}.ui.items>.item>.image:not(.ui){width:150px}.ui.items>.item>.image+.content{display:block;padding:0 0 0 1em}}@media only screen and (max-width:767px){.ui.items>.item{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin:2em 0}.ui.items>.item>.image{display:block;margin-left:auto;margin-right:auto}.ui.items>.item>.image,.ui.items>.item>.image>img{max-width:100%!important;width:auto!important;max-height:250px!important}.ui.items>.item>.image+.content{display:block;padding:1.5em 0 0}}.ui.items>.item>.image+[class*="top aligned"].content{-webkit-align-self:top;-ms-flex-item-align:top;align-self:top}.ui.items>.item>.image+[class*="middle aligned"].content{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.ui.items>.item>.image+[class*="bottom aligned"].content{-webkit-align-self:bottom;-ms-flex-item-align:bottom;align-self:bottom}.ui.relaxed.items>.item{margin:1.5em 0}.ui[class*="very relaxed"].items>.item{margin:2em 0}.ui.divided.items>.item{border-top:1px solid rgba(34,36,38,.15);margin:0;padding:1em 0}.ui.divided.items>.item:first-child{border-top:none;margin-top:0!important;padding-top:0!important}.ui.divided.items>.item:last-child{margin-bottom:0!important;padding-bottom:0!important}.ui.relaxed.divided.items>.item{margin:0;padding:1.5em 0}.ui[class*="very relaxed"].divided.items>.item{margin:0;padding:2em 0}.ui.items a.item:hover,.ui.link.items>.item:hover{cursor:pointer}.ui.items a.item:hover .content .header,.ui.link.items>.item:hover .content .header{color:#1e70bf}.ui.items>.item{font-size:1em}.ui.statistic{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin:1em 0;max-width:auto}.ui.statistic+.ui.statistic{margin:0 0 0 1.5em}.ui.statistic:first-child{margin-top:0}.ui.statistic:last-child{margin-bottom:0}.ui.statistics{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.statistics>.statistic{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin:0 1.5em 2em;max-width:auto}.ui.statistics{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:1em -1.5em -2em}.ui.statistics:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.statistics:first-child{margin-top:0}.ui.statistics:last-child{margin-bottom:0}.ui.statistic>.value,.ui.statistics .statistic>.value{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:400;line-height:1em;color:#1b1c1d;text-transform:uppercase;text-align:center}.ui.statistic>.label,.ui.statistics .statistic>.label{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1em;font-weight:700;color:rgba(0,0,0,.87);text-transform:uppercase;text-align:center}.ui.statistic>.label~.value,.ui.statistic>.value~.label,.ui.statistics .statistic>.label~.value,.ui.statistics .statistic>.value~.label{margin-top:0}.ui.statistic>.value .icon,.ui.statistics .statistic>.value .icon{opacity:1;width:auto;margin:0}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{line-height:1em;min-height:2em;font-weight:700;text-align:center}.ui.statistic>.text.value+.label,.ui.statistics .statistic>.text.value+.label{text-align:center}.ui.statistic>.value img,.ui.statistics .statistic>.value img{max-height:3rem;vertical-align:baseline}.ui.ten.statistics{margin:0 0 -2em}.ui.ten.statistics .statistic{min-width:10%;margin:0 0 2em}.ui.nine.statistics{margin:0 0 -2em}.ui.nine.statistics .statistic{min-width:11.11111111%;margin:0 0 2em}.ui.eight.statistics{margin:0 0 -2em}.ui.eight.statistics .statistic{min-width:12.5%;margin:0 0 2em}.ui.seven.statistics{margin:0 0 -2em}.ui.seven.statistics .statistic{min-width:14.28571429%;margin:0 0 2em}.ui.six.statistics{margin:0 0 -2em}.ui.six.statistics .statistic{min-width:16.66666667%;margin:0 0 2em}.ui.five.statistics{margin:0 0 -2em}.ui.five.statistics .statistic{min-width:20%;margin:0 0 2em}.ui.four.statistics{margin:0 0 -2em}.ui.four.statistics .statistic{min-width:25%;margin:0 0 2em}.ui.three.statistics{margin:0 0 -2em}.ui.three.statistics .statistic{min-width:33.33333333%;margin:0 0 2em}.ui.two.statistics{margin:0 0 -2em}.ui.two.statistics .statistic{min-width:50%;margin:0 0 2em}.ui.one.statistics{margin:0 0 -2em}.ui.one.statistics .statistic{min-width:100%;margin:0 0 2em}.ui.horizontal.statistic{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.ui.horizontal.statistics{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin:0;max-width:none}.ui.horizontal.statistics .statistic{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;max-width:none;margin:1em 0}.ui.horizontal.statistic>.text.value,.ui.horizontal.statistics>.statistic>.text.value{min-height:0!important}.ui.horizontal.statistic>.value .icon,.ui.horizontal.statistics .statistic>.value .icon{width:1.18em}.ui.horizontal.statistic>.label,.ui.horizontal.statistics .statistic>.label{display:inline-block;vertical-align:middle;margin:0 0 0 .75em}.ui.red.statistic>.value,.ui.red.statistics .statistic>.value,.ui.statistics .red.statistic>.value{color:#db2828}.ui.orange.statistic>.value,.ui.orange.statistics .statistic>.value,.ui.statistics .orange.statistic>.value{color:#f2711c}.ui.statistics .yellow.statistic>.value,.ui.yellow.statistic>.value,.ui.yellow.statistics .statistic>.value{color:#fbbd08}.ui.olive.statistic>.value,.ui.olive.statistics .statistic>.value,.ui.statistics .olive.statistic>.value{color:#b5cc18}.ui.green.statistic>.value,.ui.green.statistics .statistic>.value,.ui.statistics .green.statistic>.value{color:#21ba45}.ui.statistics .teal.statistic>.value,.ui.teal.statistic>.value,.ui.teal.statistics .statistic>.value{color:#00b5ad}.ui.blue.statistic>.value,.ui.blue.statistics .statistic>.value,.ui.statistics .blue.statistic>.value{color:#2185d0}.ui.statistics .violet.statistic>.value,.ui.violet.statistic>.value,.ui.violet.statistics .statistic>.value{color:#6435c9}.ui.purple.statistic>.value,.ui.purple.statistics .statistic>.value,.ui.statistics .purple.statistic>.value{color:#a333c8}.ui.pink.statistic>.value,.ui.pink.statistics .statistic>.value,.ui.statistics .pink.statistic>.value{color:#e03997}.ui.brown.statistic>.value,.ui.brown.statistics .statistic>.value,.ui.statistics .brown.statistic>.value{color:#a5673f}.ui.grey.statistic>.value,.ui.grey.statistics .statistic>.value,.ui.statistics .grey.statistic>.value{color:#767676}.ui.inverted.statistic .value,.ui.inverted.statistics .statistic>.value{color:#fff}.ui.inverted.statistic .label,.ui.inverted.statistics .statistic>.label{color:rgba(255,255,255,.9)}.ui.inverted.red.statistic>.value,.ui.inverted.red.statistics .statistic>.value,.ui.statistics .inverted.red.statistic>.value{color:#ff695e}.ui.inverted.orange.statistic>.value,.ui.inverted.orange.statistics .statistic>.value,.ui.statistics .inverted.orange.statistic>.value{color:#ff851b}.ui.inverted.yellow.statistic>.value,.ui.inverted.yellow.statistics .statistic>.value,.ui.statistics .inverted.yellow.statistic>.value{color:#ffe21f}.ui.inverted.olive.statistic>.value,.ui.inverted.olive.statistics .statistic>.value,.ui.statistics .inverted.olive.statistic>.value{color:#d9e778}.ui.inverted.green.statistic>.value,.ui.inverted.green.statistics .statistic>.value,.ui.statistics .inverted.green.statistic>.value{color:#2ecc40}.ui.inverted.teal.statistic>.value,.ui.inverted.teal.statistics .statistic>.value,.ui.statistics .inverted.teal.statistic>.value{color:#6dffff}.ui.inverted.blue.statistic>.value,.ui.inverted.blue.statistics .statistic>.value,.ui.statistics .inverted.blue.statistic>.value{color:#54c8ff}.ui.inverted.violet.statistic>.value,.ui.inverted.violet.statistics .statistic>.value,.ui.statistics .inverted.violet.statistic>.value{color:#a291fb}.ui.inverted.purple.statistic>.value,.ui.inverted.purple.statistics .statistic>.value,.ui.statistics .inverted.purple.statistic>.value{color:#dc73ff}.ui.inverted.pink.statistic>.value,.ui.inverted.pink.statistics .statistic>.value,.ui.statistics .inverted.pink.statistic>.value{color:#ff8edf}.ui.inverted.brown.statistic>.value,.ui.inverted.brown.statistics .statistic>.value,.ui.statistics .inverted.brown.statistic>.value{color:#d67c1c}.ui.inverted.grey.statistic>.value,.ui.inverted.grey.statistics .statistic>.value,.ui.statistics .inverted.grey.statistic>.value{color:#dcddde}.ui[class*="left floated"].statistic{float:left;margin:0 2em 1em 0}.ui[class*="right floated"].statistic{float:right;margin:0 0 1em 2em}.ui.floated.statistic:last-child{margin-bottom:0}.ui.mini.horizontal.statistic>.value,.ui.mini.horizontal.statistics .statistic>.value,.ui.mini.statistic>.value,.ui.mini.statistics .statistic>.value{font-size:1.5rem}.ui.mini.statistic>.text.value,.ui.mini.statistics .statistic>.text.value{font-size:1rem}.ui.tiny.horizontal.statistic>.value,.ui.tiny.horizontal.statistics .statistic>.value,.ui.tiny.statistic>.value,.ui.tiny.statistics .statistic>.value{font-size:2rem}.ui.tiny.statistic>.text.value,.ui.tiny.statistics .statistic>.text.value{font-size:1rem}.ui.small.statistic>.value,.ui.small.statistics .statistic>.value{font-size:3rem}.ui.small.horizontal.statistic>.value,.ui.small.horizontal.statistics .statistic>.value{font-size:2rem}.ui.small.statistic>.text.value,.ui.small.statistics .statistic>.text.value{font-size:1rem}.ui.statistic>.value,.ui.statistics .statistic>.value{font-size:4rem}.ui.horizontal.statistic>.value,.ui.horizontal.statistics .statistic>.value{display:inline-block;vertical-align:middle;font-size:3rem}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{font-size:2rem}.ui.large.statistic>.value,.ui.large.statistics .statistic>.value{font-size:5rem}.ui.large.horizontal.statistic>.value,.ui.large.horizontal.statistics .statistic>.value{font-size:4rem}.ui.large.statistic>.text.value,.ui.large.statistics .statistic>.text.value{font-size:2.5rem}.ui.huge.statistic>.value,.ui.huge.statistics .statistic>.value{font-size:6rem}.ui.huge.horizontal.statistic>.value,.ui.huge.horizontal.statistics .statistic>.value{font-size:5rem}.ui.huge.statistic>.text.value,.ui.huge.statistics .statistic>.text.value{font-size:2.5rem}.ui.accordion,.ui.accordion .accordion{max-width:100%}.ui.accordion .accordion{margin:1em 0 0;padding:0}.ui.accordion .accordion .title,.ui.accordion .title{cursor:pointer}.ui.accordion .title:not(.ui){padding:.5em 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1em;color:rgba(0,0,0,.87)}.ui.accordion .accordion .title~.content,.ui.accordion .title~.content{display:none}.ui.accordion:not(.styled) .accordion .title~.content:not(.ui),.ui.accordion:not(.styled) .title~.content:not(.ui){margin:'';padding:.5em 0 1em}.ui.accordion:not(.styled) .title~.content:not(.ui):last-child{padding-bottom:0}.ui.accordion .accordion .title .dropdown.icon,.ui.accordion .title .dropdown.icon{display:inline-block;float:none;opacity:1;width:1.25em;height:1em;margin:0 .25rem 0 0;padding:0;font-size:1em;-webkit-transition:-webkit-transform .1s ease,opacity .1s ease;transition:transform .1s ease,opacity .1s ease;vertical-align:baseline;-webkit-transform:none;-ms-transform:none;transform:none}.ui.accordion.menu .item .title{display:block;padding:0}.ui.accordion.menu .item .title>.dropdown.icon{float:right;margin:.21425em 0 0 1em;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.ui.accordion .ui.header .dropdown.icon{font-size:1em;margin:0 .25rem 0 0}.ui.accordion .accordion .active.title .dropdown.icon,.ui.accordion .active.title .dropdown.icon,.ui.accordion.menu .item .active.title>.dropdown.icon{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.ui.styled.accordion{width:600px}.ui.styled.accordion,.ui.styled.accordion .accordion{border-radius:.28571429rem;background:#fff;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),0 0 0 1px rgba(34,36,38,.15)}.ui.styled.accordion .accordion .title,.ui.styled.accordion .title{margin:0;padding:.75em 1em;color:rgba(0,0,0,.4);font-weight:700;border-top:1px solid rgba(34,36,38,.15);-webkit-transition:background .1s ease,color .1s ease;transition:background .1s ease,color .1s ease}.ui.styled.accordion .accordion .title:first-child,.ui.styled.accordion>.title:first-child{border-top:none}.ui.styled.accordion .accordion .content,.ui.styled.accordion .content{margin:0;padding:.5em 1em 1.5em}.ui.styled.accordion .accordion .content{padding:.5em 1em 1.5em}.ui.styled.accordion .accordion .active.title,.ui.styled.accordion .accordion .title:hover,.ui.styled.accordion .active.title,.ui.styled.accordion .title:hover{background:0 0;color:rgba(0,0,0,.87)}.ui.styled.accordion .accordion .active.title,.ui.styled.accordion .active.title{background:0 0;color:rgba(0,0,0,.95)}.ui.accordion .accordion .active.content,.ui.accordion .active.content{display:block}.ui.fluid.accordion,.ui.fluid.accordion .accordion{width:100%}.ui.inverted.accordion .title:not(.ui){color:rgba(255,255,255,.9)}@font-face{font-family:Accordion;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfOIKAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zryj6HgAAAFwAAAAyGhlYWT/0IhHAAACOAAAADZoaGVhApkB5wAAAnAAAAAkaG10eAJuABIAAAKUAAAAGGxvY2EAjABWAAACrAAAAA5tYXhwAAgAFgAAArwAAAAgbmFtZfC1n04AAALcAAABPHBvc3QAAwAAAAAEGAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQASAEkAtwFuABMAADc0PwE2FzYXFh0BFAcGJwYvASY1EgaABQgHBQYGBQcIBYAG2wcGfwcBAQcECf8IBAcBAQd/BgYAAAAAAQAAAEkApQFuABMAADcRNDc2MzIfARYVFA8BBiMiJyY1AAUGBwgFgAYGgAUIBwYFWwEACAUGBoAFCAcFgAYGBQcAAAABAAAAAQAAqWYls18PPPUACwIAAAAAAM/9o+4AAAAAz/2j7gAAAAAAtwFuAAAACAACAAAAAAAAAAEAAAHg/+AAAAIAAAAAAAC3AAEAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAQAAAAC3ABIAtwAAAAAAAAAKABQAHgBCAGQAAAABAAAABgAUAAEAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAASwAAoAAAAABGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAS0AAAEtFpovuE9TLzIAAAIkAAAAYAAAAGAIIweQY21hcAAAAoQAAABMAAAATA984gpnYXNwAAAC0AAAAAgAAAAIAAAAEGhlYWQAAALYAAAANgAAADb/0IhHaGhlYQAAAxAAAAAkAAAAJAKZAedobXR4AAADNAAAABgAAAAYAm4AEm1heHAAAANMAAAABgAAAAYABlAAbmFtZQAAA1QAAAE8AAABPPC1n05wb3N0AAAEkAAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLa/iU+HQFHQAAAHkPHQAAAH4RHQAAAAkdAAABJBIABwEBBw0PERQZHnJhdGluZ3JhdGluZ3UwdTF1MjB1RjBEOXVGMERBAAACAYkABAAGAQEEBwoNVp38lA78lA78lA77lA773Z33bxWLkI2Qj44I9xT3FAWOj5CNkIuQi4+JjoePiI2Gi4YIi/uUBYuGiYeHiIiHh4mGi4aLho2Ijwj7FPcUBYeOiY+LkAgO+92L5hWL95QFi5CNkI6Oj4+PjZCLkIuQiY6HCPcU+xQFj4iNhouGi4aJh4eICPsU+xQFiIeGiYaLhouHjYePiI6Jj4uQCA74lBT4lBWLDAoAAAAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAADfYOJZfDzz1AAsCAAAAAADP/aPuAAAAAM/9o+4AAAAAALcBbgAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAAAtwABAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAEAAAAAtwASALcAAAAAUAAABgAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');font-weight:400;font-style:normal}.ui.accordion .accordion .title .dropdown.icon,.ui.accordion .title .dropdown.icon{font-family:Accordion;line-height:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center}.ui.accordion .accordion .title .dropdown.icon:before,.ui.accordion .title .dropdown.icon:before{content:'\f0da'}.ui.checkbox{position:relative;display:inline-block;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0;vertical-align:baseline;min-height:17px;font-size:1rem;line-height:17px;min-width:17px}.ui.checkbox input[type=checkbox],.ui.checkbox input[type=radio]{cursor:pointer;position:absolute;top:0;left:0;opacity:0!important;outline:0;z-index:3;width:17px;height:17px}.ui.checkbox .box,.ui.checkbox label{cursor:auto;position:relative;display:block;padding-left:1.85714em;outline:0;font-size:1em}.ui.checkbox .box:before,.ui.checkbox label:before{position:absolute;top:0;left:0;width:17px;height:17px;content:'';background:#fff;border-radius:.21428571rem;-webkit-transition:border .1s ease,opacity .1s ease,-webkit-transform .1s ease,box-shadow .1s ease;transition:border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease;border:1px solid #d4d4d5}.ui.checkbox .box:after,.ui.checkbox label:after{position:absolute;font-size:14px;top:0;left:0;width:17px;height:17px;text-align:center;opacity:0;color:rgba(0,0,0,.87);-webkit-transition:border .1s ease,opacity .1s ease,-webkit-transform .1s ease,box-shadow .1s ease;transition:border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease;font-family:Checkbox}.ui.checkbox label,.ui.checkbox+label{color:rgba(0,0,0,.87);-webkit-transition:color .1s ease;transition:color .1s ease}.ui.checkbox+label{vertical-align:middle}.ui.checkbox .box:hover::before,.ui.checkbox label:hover::before{background:#fff;border-color:rgba(34,36,38,.35)}.ui.checkbox label:hover,.ui.checkbox+label:hover{color:rgba(0,0,0,.8)}.ui.checkbox .box:active::before,.ui.checkbox label:active::before{background:#f9fafb;border-color:rgba(34,36,38,.35)}.ui.checkbox .box:active::after,.ui.checkbox input[type=checkbox]:active~label,.ui.checkbox input[type=radio]:active~label,.ui.checkbox label:active::after{color:rgba(0,0,0,.95)}.ui.checkbox input[type=checkbox]:focus~.box:before,.ui.checkbox input[type=checkbox]:focus~label:before,.ui.checkbox input[type=radio]:focus~.box:before,.ui.checkbox input[type=radio]:focus~label:before{background:#f9fafb;border-color:rgba(34,36,38,.35)}.ui.checkbox input[type=checkbox]:focus~.box:after,.ui.checkbox input[type=checkbox]:focus~label,.ui.checkbox input[type=checkbox]:focus~label:after,.ui.checkbox input[type=radio]:focus~.box:after,.ui.checkbox input[type=radio]:focus~label,.ui.checkbox input[type=radio]:focus~label:after{color:rgba(0,0,0,.95)}.ui.checkbox input:checked~.box:before,.ui.checkbox input:checked~label:before{background:#fff;border-color:rgba(34,36,38,.35)}.ui.checkbox input:checked~.box:after,.ui.checkbox input:checked~label:after{opacity:1;color:rgba(0,0,0,.95)}.ui.checkbox input[type=checkbox]:indeterminate~.box:before,.ui.checkbox input[type=checkbox]:indeterminate~label:before{background:#fff;border-color:rgba(34,36,38,.35)}.ui.checkbox input[type=checkbox]:indeterminate~.box:after,.ui.checkbox input[type=checkbox]:indeterminate~label:after{opacity:1;color:rgba(0,0,0,.95)}.ui.checkbox input[type=checkbox]:checked:focus~.box:before,.ui.checkbox input[type=checkbox]:checked:focus~label:before,.ui.checkbox input[type=checkbox]:indeterminate:focus~.box:before,.ui.checkbox input[type=checkbox]:indeterminate:focus~label:before{background:#f9fafb;border-color:rgba(34,36,38,.35)}.ui.read-only.checkbox,.ui.read-only.checkbox label{cursor:default}.ui.checkbox input[disabled]~.box:after,.ui.checkbox input[disabled]~label,.ui.disabled.checkbox .box:after,.ui.disabled.checkbox label{cursor:default;opacity:.5;color:#000}.ui.checkbox input[type=checkbox].hidden,.ui.checkbox input[type=radio].hidden{z-index:-1}.ui.checkbox input[type=checkbox].hidden+label,.ui.checkbox input[type=radio].hidden+label{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ui.radio.checkbox{min-height:15px}.ui.radio.checkbox .box,.ui.radio.checkbox label{padding-left:1.85714em}.ui.radio.checkbox .box:before,.ui.radio.checkbox label:before{content:'';-webkit-transform:none;-ms-transform:none;transform:none;width:15px;height:15px;border-radius:500rem;top:1px;left:0}.ui.radio.checkbox .box:after,.ui.radio.checkbox label:after{border:none;content:''!important;line-height:15px;top:1px;left:0;width:15px;height:15px;border-radius:500rem;-webkit-transform:scale(.46666667);-ms-transform:scale(.46666667);transform:scale(.46666667);background-color:rgba(0,0,0,.87)}.ui.radio.checkbox input[type=radio]:checked~.box:before,.ui.radio.checkbox input[type=radio]:checked~label:before{background-color:#fff}.ui.radio.checkbox input[type=radio]:checked~.box:after,.ui.radio.checkbox input[type=radio]:checked~label:after{background-color:rgba(0,0,0,.95)}.ui.slider.checkbox{min-height:1.25rem}.ui.slider.checkbox input[type=checkbox],.ui.slider.checkbox input[type=radio]{width:3.5rem;height:1.25rem}.ui.slider.checkbox .box,.ui.slider.checkbox label{padding-left:4.5rem;line-height:1rem;color:rgba(0,0,0,.4)}.ui.slider.checkbox .box:before,.ui.slider.checkbox label:before{display:block;position:absolute;content:'';border:none!important;left:0;z-index:1;top:.4rem;background-color:rgba(0,0,0,.05);width:3.5rem;height:.21428571rem;-webkit-transform:none;-ms-transform:none;transform:none;border-radius:500rem;-webkit-transition:background .3s ease;transition:background .3s ease}.ui.slider.checkbox .box:after,.ui.slider.checkbox label:after{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) #fff;background:linear-gradient(transparent,rgba(0,0,0,.05)) #fff;position:absolute;content:''!important;opacity:1;z-index:2;border:none;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),0 0 0 1px rgba(34,36,38,.15) inset;width:1.5rem;height:1.5rem;top:-.25rem;left:0;-webkit-transform:none;-ms-transform:none;transform:none;border-radius:500rem;-webkit-transition:left .3s ease;transition:left .3s ease}.ui.slider.checkbox input[type=checkbox]:focus~.box:before,.ui.slider.checkbox input[type=checkbox]:focus~label:before,.ui.slider.checkbox input[type=radio]:focus~.box:before,.ui.slider.checkbox input[type=radio]:focus~label:before{background-color:rgba(0,0,0,.15);border:none}.ui.slider.checkbox .box:hover,.ui.slider.checkbox label:hover{color:rgba(0,0,0,.8)}.ui.slider.checkbox .box:hover::before,.ui.slider.checkbox label:hover::before{background:rgba(0,0,0,.15)}.ui.slider.checkbox :checked~.box,.ui.slider.checkbox :checked~label{color:rgba(0,0,0,.95)}.ui.slider.checkbox :checked~.box:before,.ui.slider.checkbox :checked~label:before{background-color:#545454}.ui.slider.checkbox :checked~.box:after,.ui.slider.checkbox :checked~label:after{left:2rem}.ui.toggle.checkbox{min-height:1.5rem}.ui.toggle.checkbox input[type=checkbox],.ui.toggle.checkbox input[type=radio]{width:3.5rem;height:1.5rem}.ui.toggle.checkbox .box,.ui.toggle.checkbox label{min-height:1.5rem;padding-left:4.5rem;color:rgba(0,0,0,.87)}.ui.toggle.checkbox label{padding-top:.15em}.ui.toggle.checkbox .box:before,.ui.toggle.checkbox label:before{display:block;position:absolute;content:'';z-index:1;-webkit-transform:none;-ms-transform:none;transform:none;border:none;top:0;background:rgba(0,0,0,.05);width:3.5rem;height:1.5rem;border-radius:500rem}.ui.toggle.checkbox .box:after,.ui.toggle.checkbox label:after{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) #fff;background:linear-gradient(transparent,rgba(0,0,0,.05)) #fff;position:absolute;content:''!important;opacity:1;z-index:2;border:none;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),0 0 0 1px rgba(34,36,38,.15) inset;width:1.5rem;height:1.5rem;top:0;left:0;border-radius:500rem;-webkit-transition:background .3s ease,left .3s ease;transition:background .3s ease,left .3s ease}.ui.toggle.checkbox input[type=checkbox]~.box:after,.ui.toggle.checkbox input[type=checkbox]~label:after,.ui.toggle.checkbox input[type=radio]~.box:after,.ui.toggle.checkbox input[type=radio]~label:after{left:-.05rem}.ui.toggle.checkbox .box:hover::before,.ui.toggle.checkbox input[type=checkbox]:focus~.box:before,.ui.toggle.checkbox input[type=checkbox]:focus~label:before,.ui.toggle.checkbox input[type=radio]:focus~.box:before,.ui.toggle.checkbox input[type=radio]:focus~label:before,.ui.toggle.checkbox label:hover::before{background-color:rgba(0,0,0,.15);border:none}.ui.toggle.checkbox input:checked~.box,.ui.toggle.checkbox input:checked~label{color:rgba(0,0,0,.95)}.ui.toggle.checkbox input:checked~.box:before,.ui.toggle.checkbox input:checked~label:before{background-color:#2185d0}.ui.toggle.checkbox input:checked~.box:after,.ui.toggle.checkbox input:checked~label:after{left:2.15rem}.ui.fitted.checkbox .box,.ui.fitted.checkbox label{padding-left:0!important}.ui.fitted.slider.checkbox,.ui.fitted.toggle.checkbox{width:3.5rem}@font-face{font-family:Checkbox;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBD8AAAC8AAAAYGNtYXAYVtCJAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zn4huwUAAAF4AAABYGhlYWQGPe1ZAAAC2AAAADZoaGVhB30DyAAAAxAAAAAkaG10eBBKAEUAAAM0AAAAHGxvY2EAmgESAAADUAAAABBtYXhwAAkALwAAA2AAAAAgbmFtZSC8IugAAAOAAAABknBvc3QAAwAAAAAFFAAAACAAAwMTAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6AL//f//AAAAAAAg6AD//f//AAH/4xgEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAEUAUQO7AvgAGgAAARQHAQYjIicBJjU0PwE2MzIfAQE2MzIfARYVA7sQ/hQQFhcQ/uMQEE4QFxcQqAF2EBcXEE4QAnMWEP4UEBABHRAXFhBOEBCoAXcQEE4QFwAAAAABAAABbgMlAkkAFAAAARUUBwYjISInJj0BNDc2MyEyFxYVAyUQEBf9SRcQEBAQFwK3FxAQAhJtFxAQEBAXbRcQEBAQFwAAAAABAAAASQMlA24ALAAAARUUBwYrARUUBwYrASInJj0BIyInJj0BNDc2OwE1NDc2OwEyFxYdATMyFxYVAyUQEBfuEBAXbhYQEO4XEBAQEBfuEBAWbhcQEO4XEBACEm0XEBDuFxAQEBAX7hAQF20XEBDuFxAQEBAX7hAQFwAAAQAAAAIAAHRSzT9fDzz1AAsEAAAAAADRsdR3AAAAANGx1HcAAAAAA7sDbgAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAADuwABAAAAAAAAAAAAAAAAAAAABwQAAAAAAAAAAAAAAAIAAAAEAABFAyUAAAMlAAAAAAAAAAoAFAAeAE4AcgCwAAEAAAAHAC0AAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhWZXJzaW9uIDIuMABWAGUAcgBzAGkAbwBuACAAMgAuADBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhDaGVja2JveABDAGgAZQBjAGsAYgBvAHhSZWd1bGFyAFIAZQBnAHUAbABhAHJDaGVja2JveABDAGgAZQBjAGsAYgBvAHhGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype')}.ui.checkbox input:checked~.box:after,.ui.checkbox input:checked~label:after{content:'\e800'}.ui.checkbox input:indeterminate~.box:after,.ui.checkbox input:indeterminate~label:after{font-size:12px;content:'\e801'}.dimmable{position:relative}.ui.dimmer{display:none;position:absolute;top:0!important;left:0!important;width:100%;height:100%;text-align:center;vertical-align:middle;background-color:rgba(0,0,0,.85);opacity:0;line-height:1;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-transition:background-color .5s linear;transition:background-color .5s linear;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;will-change:opacity;z-index:1000}.ui.dimmer>.content{width:100%;height:100%;display:table;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.dimmer>.content>*{display:table-cell;vertical-align:middle;color:#fff}.ui.segment>.ui.dimmer{border-radius:inherit!important}.animating.dimmable:not(body),.dimmed.dimmable:not(body){overflow:hidden}.dimmed.dimmable>.ui.animating.dimmer,.dimmed.dimmable>.ui.visible.dimmer,.ui.active.dimmer{display:block;opacity:1}.ui.disabled.dimmer{width:0!important;height:0!important}.ui.page.dimmer{position:fixed;-webkit-transform-style:'';transform-style:'';-webkit-perspective:2000px;perspective:2000px;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center}body.animating.in.dimmable,body.dimmed.dimmable{overflow:hidden}body.dimmable>.dimmer{position:fixed}.blurring.dimmable>:not(.dimmer){-webkit-filter:blur(0) grayscale(0);filter:blur(0) grayscale(0);-webkit-transition:800ms -webkit-filter ease,800ms filter ease;transition:800ms filter ease}.blurring.dimmed.dimmable>:not(.dimmer){-webkit-filter:blur(5px) grayscale(.7);filter:blur(5px) grayscale(.7)}.blurring.dimmable>.dimmer{background-color:rgba(0,0,0,.6)}.blurring.dimmable>.inverted.dimmer{background-color:rgba(255,255,255,.6)}.ui.dimmer>.top.aligned.content>*{vertical-align:top}.ui.dimmer>.bottom.aligned.content>*{vertical-align:bottom}.ui.inverted.dimmer{background-color:rgba(255,255,255,.85)}.ui.inverted.dimmer>.content>*{color:#fff}.ui.simple.dimmer{display:block;overflow:hidden;opacity:1;width:0;height:0;z-index:-100;background-color:transparent}.dimmed.dimmable>.ui.simple.dimmer{overflow:visible;opacity:1;width:100%;height:100%;background-color:rgba(0,0,0,.85);z-index:1}.ui.simple.inverted.dimmer{background-color:rgba(255,255,255,0)}.dimmed.dimmable>.ui.simple.inverted.dimmer{background-color:rgba(255,255,255,.85)}.ui.dropdown{cursor:pointer;position:relative;display:inline-block;outline:0;text-align:left;-webkit-transition:box-shadow .1s ease,width .1s ease;transition:box-shadow .1s ease,width .1s ease;-webkit-tap-highlight-color:transparent}.ui.dropdown .menu{cursor:auto;position:absolute;display:none;outline:0;top:100%;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;margin:0;padding:0;background:#fff;font-size:1em;text-shadow:none;text-align:left;box-shadow:0 2px 3px 0 rgba(34,36,38,.15);border:1px solid rgba(34,36,38,.15);border-radius:.28571429rem;-webkit-transition:opacity .1s ease;transition:opacity .1s ease;z-index:11;will-change:transform,opacity}.ui.dropdown .menu>*{white-space:nowrap}.ui.dropdown>input:not(.search):first-child,.ui.dropdown>select{display:none!important}.ui.dropdown>.dropdown.icon{position:relative;margin:0 0 0 1em}.ui.dropdown .menu>.item .dropdown.icon{width:auto;float:right;margin:0 0 0 1em}.ui.dropdown .menu>.item .dropdown.icon+.text{margin-right:1em}.ui.dropdown>.text{display:inline-block;-webkit-transition:none;transition:none}.ui.dropdown .menu>.item{position:relative;cursor:pointer;display:block;border:none;height:auto;text-align:left;border-top:none;line-height:1em;color:rgba(0,0,0,.87);padding:.71428571rem 1.14285714rem!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.ui.dropdown .menu>.item:first-child{border-top-width:0}.ui.dropdown .menu .item>[class*="right floated"],.ui.dropdown>.text>[class*="right floated"]{float:right!important;margin-right:0!important;margin-left:1em!important}.ui.dropdown .menu .item>[class*="left floated"],.ui.dropdown>.text>[class*="left floated"]{float:left!important;margin-left:0!important;margin-right:1em!important}.ui.dropdown .menu .item>.flag.floated,.ui.dropdown .menu .item>.icon.floated,.ui.dropdown .menu .item>.image.floated,.ui.dropdown .menu .item>img.floated{margin-top:0}.ui.dropdown .menu>.header{margin:1rem 0 .75rem;padding:0 1.14285714rem;color:rgba(0,0,0,.85);font-size:.78571429em;font-weight:700;text-transform:uppercase}.ui.dropdown .menu>.divider{border-top:1px solid rgba(34,36,38,.1);height:0;margin:.5em 0}.ui.dropdown .menu>.input{width:auto;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:1.14285714rem .71428571rem;min-width:10rem}.ui.dropdown .menu>.header+.input{margin-top:0}.ui.dropdown .menu>.input:not(.transparent) input{padding:.5em 1em}.ui.dropdown .menu>.input:not(.transparent) .button,.ui.dropdown .menu>.input:not(.transparent) .icon,.ui.dropdown .menu>.input:not(.transparent) .label{padding-top:.5em;padding-bottom:.5em}.ui.dropdown .menu>.item>.description,.ui.dropdown>.text>.description{float:right;margin:0 0 0 1em;color:rgba(0,0,0,.4)}.ui.dropdown .menu>.message{padding:.71428571rem 1.14285714rem;font-weight:400}.ui.dropdown .menu>.message:not(.ui){color:rgba(0,0,0,.4)}.ui.dropdown .menu .menu{top:0!important;left:100%!important;right:auto!important;margin:0 0 0 -.5em!important;border-radius:.28571429rem!important;z-index:21!important}.ui.dropdown .menu .menu:after{display:none}.ui.dropdown .menu>.item>.flag,.ui.dropdown .menu>.item>.icon,.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>.label,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.flag,.ui.dropdown>.text>.icon,.ui.dropdown>.text>.image,.ui.dropdown>.text>.label,.ui.dropdown>.text>img{margin-top:0;margin-left:0;float:none;margin-right:.71428571rem}.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.image,.ui.dropdown>.text>img{display:inline-block;vertical-align:middle;width:auto;max-height:2em}.ui.dropdown .ui.menu>.item:before,.ui.menu .ui.dropdown .menu>.item:before{display:none}.ui.menu .ui.dropdown .menu .active.item{border-left:none}.ui.buttons>.ui.dropdown:last-child .menu,.ui.menu .right.dropdown.item .menu,.ui.menu .right.menu .dropdown:last-child .menu{left:auto;right:0}.ui.label.dropdown .menu{min-width:100%}.ui.dropdown.icon.button>.dropdown.icon{margin:0}.ui.button.dropdown .menu{min-width:100%}.ui.selection.dropdown{cursor:pointer;word-wrap:break-word;line-height:1em;white-space:normal;outline:0;-webkit-transform:rotateZ(0);transform:rotateZ(0);min-width:14em;min-height:2.7142em;background:#fff;display:inline-block;padding:.78571429em 2.6em .78571429em 1em;color:rgba(0,0,0,.87);box-shadow:none;border:1px solid rgba(34,36,38,.15);border-radius:.28571429rem;-webkit-transition:box-shadow .1s ease,width .1s ease;transition:box-shadow .1s ease,width .1s ease}.ui.selection.dropdown.active,.ui.selection.dropdown.visible{z-index:10}select.ui.dropdown{height:38px;padding:.5em;border:1px solid rgba(34,36,38,.15);visibility:visible}.ui.selection.dropdown>.delete.icon,.ui.selection.dropdown>.dropdown.icon,.ui.selection.dropdown>.search.icon{cursor:pointer;position:absolute;top:auto;width:auto;z-index:3;margin:-.78571429em;padding:.78571429em;right:1em;opacity:.8;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.compact.selection.dropdown{min-width:0}.ui.selection.dropdown .menu{overflow-x:hidden;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch;border-top-width:0!important;outline:0;margin:0 -1px;min-width:calc(100% + 2px);width:calc(100% + 2px);border-radius:0 0 .28571429rem .28571429rem;box-shadow:0 2px 3px 0 rgba(34,36,38,.15);-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.selection.dropdown .menu:after,.ui.selection.dropdown .menu:before{display:none}.ui.selection.dropdown .menu>.message{padding:.71428571rem 1.14285714rem}@media only screen and (max-width:767px){.ui.selection.dropdown .menu{max-height:7.58571429rem}}@media only screen and (min-width:768px){.ui.selection.dropdown .menu{max-height:10.11428571rem}}@media only screen and (min-width:992px){.ui.selection.dropdown .menu{max-height:15.17142857rem}}@media only screen and (min-width:1920px){.ui.selection.dropdown .menu{max-height:20.22857143rem}}.ui.selection.dropdown .menu>.item{border-top:1px solid #fafafa;padding:.71428571rem 1.14285714rem!important;white-space:normal;word-wrap:normal}.ui.selection.dropdown:hover{border-color:rgba(34,36,38,.35);box-shadow:none}.ui.selection.active.dropdown,.ui.selection.active.dropdown .menu{border-color:rgba(34,36,38,.35);box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.selection.dropdown:focus{border-color:rgba(34,36,38,.35);box-shadow:none}.ui.selection.dropdown:focus .menu{border-color:rgba(34,36,38,.35);box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.selection.visible.dropdown>.text:not(.default){font-weight:400;color:rgba(0,0,0,.8)}.ui.selection.active.dropdown:hover,.ui.selection.active.dropdown:hover .menu{border-color:rgba(34,36,38,.35);box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.active.selection.dropdown>.dropdown.icon,.ui.visible.selection.dropdown>.dropdown.icon{opacity:1;z-index:3}.ui.active.selection.dropdown{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.ui.search.dropdown{min-width:''}.ui.search.dropdown>input.search{background:none!important;border:none!important;box-shadow:none!important;cursor:pointer;top:0;left:0;width:100%;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0);padding:inherit;position:absolute;z-index:2}.ui.search.dropdown>.text{cursor:text;position:relative;z-index:3}.ui.search.selection.dropdown>input.search{line-height:1.2142em;padding:.67861429em 2.6em .67861429em 1em}.ui.search.dropdown.active>input.search,.ui.search.dropdown.visible>input.search{cursor:auto}.ui.search.dropdown.active>.text,.ui.search.dropdown.visible>.text{pointer-events:none}.ui.active.search.dropdown input.search:focus+.text .flag,.ui.active.search.dropdown input.search:focus+.text .icon{opacity:.45}.ui.active.search.dropdown input.search:focus+.text{color:rgba(0,0,0,.4)!important}.ui.search.dropdown .menu{overflow-x:hidden;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch}@media only screen and (max-width:767px){.ui.search.dropdown .menu{max-height:7.58571429rem}}@media only screen and (min-width:768px){.ui.search.dropdown .menu{max-height:10.11428571rem}}@media only screen and (min-width:992px){.ui.search.dropdown .menu{max-height:15.17142857rem}}@media only screen and (min-width:1920px){.ui.search.dropdown .menu{max-height:20.22857143rem}}.ui.multiple.dropdown{padding:.22620476em 2.6em .22620476em .28571429em}.ui.multiple.dropdown .menu{cursor:auto}.ui.multiple.search.dropdown,.ui.multiple.search.dropdown>input.search{cursor:text}.ui.multiple.dropdown>.label{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;vertical-align:baseline;white-space:normal;font-size:1em;padding:.35714286em .71428571em;margin:.21428571em .28571429rem .21428571em 0;box-shadow:0 0 0 1px rgba(34,36,38,.15) inset}.ui.multiple.dropdown .dropdown.icon{margin:0 -.71428571em 0 0;padding:.5em}.ui.multiple.dropdown>.text{position:static;padding:0;max-width:100%;margin:.45240952em 0 .45240952em .71428571em;line-height:1.2142em}.ui.multiple.dropdown>.label~.text{display:none}.ui.multiple.search.dropdown>.text{display:inline-block;position:absolute;top:0;left:0;padding:inherit;margin:.45240952em 0 .45240952em .71428571em;line-height:1.2142em}.ui.multiple.search.dropdown>.label~.text{display:none}.ui.multiple.search.dropdown>input.search{position:static;padding:0;max-width:100%;margin:.45240952em 0 .45240952em .71428571em;width:2.2em;line-height:1.2142em}.ui.inline.dropdown{cursor:pointer;display:inline-block;color:inherit}.ui.inline.dropdown .dropdown.icon{margin:0 .5em 0 .25em;vertical-align:baseline}.ui.inline.dropdown>.text{font-weight:700}.ui.inline.dropdown .menu{cursor:auto;margin-top:.25em;border-radius:.28571429rem}.ui.dropdown .menu .active.item{background:0 0;font-weight:700;color:rgba(0,0,0,.95);box-shadow:none;z-index:12}.ui.dropdown .menu>.item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);z-index:13}.ui.loading.dropdown>i.icon:after,.ui.loading.dropdown>i.icon:before{left:30%!important}.ui.loading.dropdown>i.icon{top:50%!important}.ui.multiple.loading.dropdown>i.icon:after,.ui.multiple.loading.dropdown>i.icon:before{top:0!important;left:0!important}.ui.loading.dropdown>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.dropdown>i.icon:after{position:absolute;content:'';top:50%;left:50%;box-shadow:0 0 0 1px transparent;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;-webkit-animation:dropdown-spin .6s linear;animation:dropdown-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em}.ui.loading.dropdown.button>i.icon:after,.ui.loading.dropdown.button>i.icon:before{display:none}@-webkit-keyframes dropdown-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dropdown-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.default.dropdown:hover>.text,.ui.default.dropdown>.text,.ui.dropdown:hover>.default.text,.ui.dropdown>.default.text{color:rgba(179,179,179,.7)}.ui.loading.dropdown>.text{-webkit-transition:none;transition:none}.ui.dropdown .loading.menu{display:block;visibility:hidden;z-index:-1}.ui.dropdown .menu .selected.item,.ui.dropdown.selected{background:rgba(0,0,0,.03);color:rgba(0,0,0,.95)}.ui.dropdown>.filtered.text{visibility:hidden}.ui.dropdown .filtered.item{display:none!important}.ui.dropdown.error,.ui.dropdown.error>.default.text,.ui.dropdown.error>.text{color:#9f3a38}.ui.selection.dropdown.error{background:#fff6f6;border-color:#e0b4b4}.ui.dropdown.error>.menu,.ui.dropdown.error>.menu .menu,.ui.selection.dropdown.error:hover{border-color:#e0b4b4}.ui.dropdown.error>.menu>.item{color:#9f3a38}.ui.multiple.selection.error.dropdown>.label{border-color:#e0b4b4}.ui.dropdown.error>.menu>.item:hover{background-color:#fff2f2}.ui.dropdown.error>.menu .active.item{background-color:#fdcfcf}.ui.disabled.dropdown,.ui.dropdown .menu>.disabled.item{cursor:default;pointer-events:none;opacity:.45}.ui.dropdown .menu{left:0}.ui.dropdown .menu .right.menu,.ui.dropdown .right.menu>.menu{left:100%!important;right:auto!important;border-radius:.28571429rem!important}.ui.dropdown .menu .left.menu,.ui.dropdown>.left.menu .menu{left:auto!important;right:100%!important;border-radius:.28571429rem!important}.ui.dropdown .item .left.dropdown.icon,.ui.dropdown .left.menu .item .dropdown.icon{width:auto;float:left;margin:0 .71428571rem 0 0}.ui.dropdown .item .left.dropdown.icon+.text,.ui.dropdown .left.menu .item .dropdown.icon+.text{margin-left:1em}.ui.upward.dropdown>.menu{top:auto;bottom:100%;box-shadow:0 0 3px 0 rgba(0,0,0,.08);border-radius:.28571429rem .28571429rem 0 0}.ui.dropdown .upward.menu{top:auto!important;bottom:0!important}.ui.simple.upward.active.dropdown,.ui.simple.upward.dropdown:hover{border-radius:.28571429rem .28571429rem 0 0!important}.ui.upward.dropdown.button:not(.pointing):not(.floating).active{border-radius:.28571429rem .28571429rem 0 0}.ui.upward.selection.dropdown .menu{border-top-width:1px!important;border-bottom-width:0!important;box-shadow:0 -2px 3px 0 rgba(0,0,0,.08)}.ui.upward.selection.dropdown:hover{box-shadow:0 0 2px 0 rgba(0,0,0,.05)}.ui.active.upward.selection.dropdown{border-radius:0 0 .28571429rem .28571429rem!important}.ui.upward.selection.dropdown.visible{box-shadow:0 0 3px 0 rgba(0,0,0,.08);border-radius:0 0 .28571429rem .28571429rem!important}.ui.upward.active.selection.dropdown:hover{box-shadow:0 0 3px 0 rgba(0,0,0,.05)}.ui.upward.active.selection.dropdown:hover .menu{box-shadow:0 -2px 3px 0 rgba(0,0,0,.08)}.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{overflow-x:hidden;overflow-y:auto}.ui.scrolling.dropdown .menu{overflow-x:hidden;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch;min-width:100%!important;width:auto!important}.ui.dropdown .scrolling.menu{position:static;overflow-y:auto;border:none;box-shadow:none!important;border-radius:0!important;margin:0!important;min-width:100%!important;width:auto!important;border-top:1px solid rgba(34,36,38,.15)}.ui.dropdown .scrolling.menu>.item.item.item,.ui.scrolling.dropdown .menu .item.item.item{border-top:none;padding-right:calc(1.14285714rem + 17px)!important}.ui.dropdown .scrolling.menu .item:first-child,.ui.scrolling.dropdown .menu .item:first-child{border-top:none}.ui.dropdown>.animating.menu .scrolling.menu,.ui.dropdown>.visible.menu .scrolling.menu{display:block}@media all and (-ms-high-contrast:none){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{min-width:calc(100% - 17px)}}@media only screen and (max-width:767px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:9.71428571rem}}.ui.simple.dropdown .menu:after,.ui.simple.dropdown .menu:before{display:none}.ui.simple.dropdown .menu{position:absolute;display:block;overflow:hidden;top:-9999px!important;opacity:0;width:0;height:0;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.simple.active.dropdown,.ui.simple.dropdown:hover{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.ui.simple.active.dropdown>.menu,.ui.simple.dropdown:hover>.menu{overflow:visible;width:auto;height:auto;top:100%!important;opacity:1}.ui.simple.dropdown:hover>.menu>.item:hover>.menu,.ui.simple.dropdown>.menu>.item:active>.menu{overflow:visible;width:auto;height:auto;top:0!important;left:100%!important;opacity:1}.ui.simple.disabled.dropdown:hover .menu{display:none;height:0;width:0;overflow:hidden}.ui.simple.visible.dropdown>.menu{display:block}.ui.fluid.dropdown{display:block;width:100%;min-width:0}.ui.fluid.dropdown>.dropdown.icon{float:right}.ui.floating.dropdown .menu{left:0;right:auto;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08)!important;border-radius:.28571429rem!important}.ui.floating.dropdown>.menu{margin-top:.5em!important;border-radius:.28571429rem!important}.ui.pointing.dropdown>.menu{top:100%;margin-top:.71428571rem;border-radius:.28571429rem}.ui.pointing.dropdown>.menu:after{display:block;position:absolute;pointer-events:none;content:'';visibility:visible;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);width:.5em;height:.5em;box-shadow:-1px -1px 0 1px rgba(0,0,0,.1);background:#fff;z-index:2;top:-.25em;left:50%;margin:0 0 0 -.25em}.ui.top.left.pointing.dropdown>.menu{top:100%;bottom:auto;left:0;right:auto;margin:1em 0 0}.ui.top.left.pointing.dropdown>.menu:after{top:-.25em;left:1em;right:auto;margin:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.ui.top.right.pointing.dropdown>.menu{top:100%;bottom:auto;right:0;left:auto;margin:1em 0 0}.ui.top.right.pointing.dropdown>.menu:after{top:-.25em;left:auto;right:1em;margin:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.ui.left.pointing.dropdown>.menu{top:0;left:100%;right:auto;margin:0 0 0 1em}.ui.left.pointing.dropdown>.menu:after{top:1em;left:-.25em;margin:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.ui.right.pointing.dropdown>.menu{top:0;left:auto;right:100%;margin:0 1em 0 0}.ui.right.pointing.dropdown>.menu:after{top:1em;left:auto;right:-.25em;margin:0;-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.ui.bottom.pointing.dropdown>.menu{top:auto;bottom:100%;left:0;right:auto;margin:0 0 1em}.ui.bottom.pointing.dropdown>.menu:after{top:auto;bottom:-.25em;right:auto;margin:0;-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.ui.bottom.pointing.dropdown>.menu .menu{top:auto!important;bottom:0!important}.ui.bottom.left.pointing.dropdown>.menu{left:0;right:auto}.ui.bottom.left.pointing.dropdown>.menu:after{left:1em;right:auto}.ui.bottom.right.pointing.dropdown>.menu{right:0;left:auto}.ui.bottom.right.pointing.dropdown>.menu:after{left:auto;right:1em}@font-face{font-family:Dropdown;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfuIIAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zjo82LgAAAFwAAABVGhlYWQAQ88bAAACxAAAADZoaGVhAwcB6QAAAvwAAAAkaG10eAS4ABIAAAMgAAAAIGxvY2EBNgDeAAADQAAAABJtYXhwAAoAFgAAA1QAAAAgbmFtZVcZpu4AAAN0AAABRXBvc3QAAwAAAAAEvAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDX//3//wAB/+MPLQADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAIABJQElABMAABM0NzY3BTYXFhUUDwEGJwYvASY1AAUGBwEACAUGBoAFCAcGgAUBEgcGBQEBAQcECQYHfwYBAQZ/BwYAAQAAAG4BJQESABMAADc0PwE2MzIfARYVFAcGIyEiJyY1AAWABgcIBYAGBgUI/wAHBgWABwaABQWABgcHBgUFBgcAAAABABIASQC3AW4AEwAANzQ/ATYXNhcWHQEUBwYnBi8BJjUSBoAFCAcFBgYFBwgFgAbbBwZ/BwEBBwQJ/wgEBwEBB38GBgAAAAABAAAASQClAW4AEwAANxE0NzYzMh8BFhUUDwEGIyInJjUABQYHCAWABgaABQgHBgVbAQAIBQYGgAUIBwWABgYFBwAAAAEAAAABAADZuaKOXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAAAAACgAUAB4AQgBkAIgAqgAAAAEAAAAIABQAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgA0AGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgA0AGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVwAAoAAAAABSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAdkAAAHZLDXE/09TLzIAAALQAAAAYAAAAGAIIweQY21hcAAAAzAAAABMAAAATA9+4ghnYXNwAAADfAAAAAgAAAAIAAAAEGhlYWQAAAOEAAAANgAAADYAQ88baGhlYQAAA7wAAAAkAAAAJAMHAelobXR4AAAD4AAAACAAAAAgBLgAEm1heHAAAAQAAAAABgAAAAYACFAAbmFtZQAABAgAAAFFAAABRVcZpu5wb3N0AAAFUAAAACAAAAAgAAMAAAEABAQAAQEBCGljb21vb24AAQIAAQA6+BwC+BsD+BgEHgoAGVP/i4seCgAZU/+LiwwHi2v4lPh0BR0AAACIDx0AAACNER0AAAAJHQAAAdASAAkBAQgPERMWGyAlKmljb21vb25pY29tb29udTB1MXUyMHVGMEQ3dUYwRDh1RjBEOXVGMERBAAACAYkABgAIAgABAAQABwAKAA0AVgCfAOgBL/yUDvyUDvyUDvuUDvtvi/emFYuQjZCOjo+Pj42Qiwj3lIsFkIuQiY6Hj4iNhouGi4aJh4eHCPsU+xQFiIiGiYaLhouHjYeOCPsU9xQFiI+Jj4uQCA77b4v3FBWLkI2Pjo8I9xT3FAWPjo+NkIuQi5CJjogI9xT7FAWPh42Hi4aLhomHh4eIiIaJhosI+5SLBYaLh42HjoiPiY+LkAgO+92d928Vi5CNkI+OCPcU9xQFjo+QjZCLkIuPiY6Hj4iNhouGCIv7lAWLhomHh4iIh4eJhouGi4aNiI8I+xT3FAWHjomPi5AIDvvdi+YVi/eUBYuQjZCOjo+Pj42Qi5CLkImOhwj3FPsUBY+IjYaLhouGiYeHiAj7FPsUBYiHhomGi4aLh42Hj4iOiY+LkAgO+JQU+JQViwwKAAAAAAMCAAGQAAUAAAFMAWYAAABHAUwBZgAAAPUAGQCEAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8NoB4P/g/+AB4AAgAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDw2v/9//8AAAAAACDw1//9//8AAf/jDy0AAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAA5emozXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAUAAACAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoANABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoANABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');font-weight:400;font-style:normal}.ui.dropdown>.dropdown.icon{font-family:Dropdown;line-height:1;height:1em;-webkit-backface-visibility:hidden;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center;width:auto}.ui.dropdown>.dropdown.icon:before{content:'\f0d7'}.ui.dropdown .menu .item .dropdown.icon:before{content:'\f0da'}.ui.dropdown .item .left.dropdown.icon:before,.ui.dropdown .left.menu .item .dropdown.icon:before{content:"\f0d9"}.ui.vertical.menu .dropdown.item>.dropdown.icon:before{content:"\f0da"}.ui.embed{position:relative;max-width:100%;height:0;overflow:hidden;background:#dcddde;padding-bottom:56.25%}.ui.embed embed,.ui.embed iframe,.ui.embed object{position:absolute;border:none;width:100%;height:100%;top:0;left:0;margin:0;padding:0}.ui.embed>.embed{display:none}.ui.embed>.placeholder{position:absolute;cursor:pointer;top:0;left:0;display:block;width:100%;height:100%;background-color:radial-gradient(transparent 45%,rgba(0,0,0,.3))}.ui.embed>.icon{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;z-index:2}.ui.embed>.icon:after{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3;content:'';background:-webkit-radial-gradient(transparent 45%,rgba(0,0,0,.3));background:radial-gradient(transparent 45%,rgba(0,0,0,.3));opacity:.5;-webkit-transition:opacity .5s ease;transition:opacity .5s ease}.ui.embed>.icon:before{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);color:#fff;font-size:6rem;text-shadow:0 2px 10px rgba(34,36,38,.2);-webkit-transition:opacity .5s ease,color .5s ease;transition:opacity .5s ease,color .5s ease;z-index:10}.ui.embed .icon:hover:after{background:-webkit-radial-gradient(transparent 45%,rgba(0,0,0,.3));background:radial-gradient(transparent 45%,rgba(0,0,0,.3));opacity:1}.ui.embed .icon:hover:before{color:#fff}.ui.active.embed>.icon,.ui.active.embed>.placeholder{display:none}.ui.active.embed>.embed{display:block}.ui.square.embed{padding-bottom:100%}.ui[class*="4:3"].embed{padding-bottom:75%}.ui[class*="16:9"].embed{padding-bottom:56.25%}.ui[class*="21:9"].embed{padding-bottom:42.85714286%}.ui.modal{display:none;position:fixed;z-index:1001;top:50%;left:50%;text-align:left;background:#fff;border:none;box-shadow:1px 3px 3px 0 rgba(0,0,0,.2),1px 3px 15px 2px rgba(0,0,0,.2);-webkit-transform-origin:50% 25%;-ms-transform-origin:50% 25%;transform-origin:50% 25%;border-radius:.28571429rem;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;will-change:top,left,margin,transform,opacity}.ui.modal>.icon:first-child+*,.ui.modal>:first-child:not(.icon){border-top-left-radius:.28571429rem;border-top-right-radius:.28571429rem}.ui.modal>:last-child{border-bottom-left-radius:.28571429rem;border-bottom-right-radius:.28571429rem}.ui.modal>.close{cursor:pointer;position:absolute;top:-2.5rem;right:-2.5rem;z-index:1;opacity:.8;font-size:1.25em;color:#fff;width:2.25rem;height:2.25rem;padding:.625rem 0 0}.ui.modal>.close:hover{opacity:1}.ui.modal>.header{display:block;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;background:#fff;margin:0;padding:1.25rem 1.5rem;box-shadow:none;color:rgba(0,0,0,.85);border-bottom:1px solid rgba(34,36,38,.15)}.ui.modal>.header:not(.ui){font-size:1.42857143rem;line-height:1.2857em;font-weight:700}.ui.modal>.content{display:block;width:100%;font-size:1em;line-height:1.4;padding:1.5rem;background:#fff}.ui.modal>.image.content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.ui.modal>.content>.image{display:block;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;width:'';-webkit-align-self:top;-ms-flex-item-align:top;align-self:top}.ui.modal>[class*="top aligned"]{-webkit-align-self:top;-ms-flex-item-align:top;align-self:top}.ui.modal>[class*="middle aligned"]{-webkit-align-self:middle;-ms-flex-item-align:middle;align-self:middle}.ui.modal>[class*=stretched]{-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch}.ui.modal>.content>.description{display:block;-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;min-width:0;-webkit-align-self:top;-ms-flex-item-align:top;align-self:top}.ui.modal>.content>.icon+.description,.ui.modal>.content>.image+.description{-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;min-width:'';width:auto;padding-left:2em}.ui.modal>.content>.image>i.icon{margin:0;opacity:1;width:auto;line-height:1;font-size:8rem}.ui.modal .actions{background:#f9fafb;padding:1rem;border-top:1px solid rgba(34,36,38,.15);text-align:right}.ui.modal .actions>.button{margin-left:.75em}@media only screen and (max-width:767px){.ui.modal{width:95%;margin:0 0 0 -47.5%}}@media only screen and (min-width:768px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:14.57142857rem}.ui.modal{width:88%;margin:0 0 0 -44%}}@media only screen and (min-width:992px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:19.42857143rem}.ui.modal{width:850px;margin:0 0 0 -425px}}@media only screen and (min-width:1200px){.ui.modal{width:900px;margin:0 0 0 -450px}}@media only screen and (min-width:1920px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:19.42857143rem}.ui.modal{width:950px;margin:0 0 0 -475px}}@media only screen and (max-width:992px){.ui.modal>.header{padding-right:2.25rem}.ui.modal>.close{top:1.0535rem;right:1rem;color:rgba(0,0,0,.87)}}@media only screen and (max-width:767px){.ui.modal>.header{padding:.75rem 2.25rem .75rem 1rem!important}.ui.modal>.content{display:block;padding:1rem!important}.ui.modal>.close{top:.5rem!important;right:.5rem!important}.ui.modal .image.content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.ui.modal .content>.image{display:block;max-width:100%;margin:0 auto!important;text-align:center;padding:0 0 1rem!important}.ui.modal>.content>.image>i.icon{font-size:5rem;text-align:center}.ui.modal .content>.description{display:block;width:100%!important;margin:0!important;padding:1rem 0!important;box-shadow:none}.ui.modal>.actions{padding:1rem 1rem 0!important}.ui.modal .actions>.button,.ui.modal .actions>.buttons{margin-bottom:1rem}}.ui.inverted.dimmer>.ui.modal{box-shadow:1px 3px 10px 2px rgba(0,0,0,.2)}.ui.basic.modal{background-color:transparent;border:none;border-radius:0;box-shadow:none!important;color:#fff}.ui.basic.modal>.actions,.ui.basic.modal>.content,.ui.basic.modal>.header{background-color:transparent}.ui.basic.modal>.header{color:#fff}.ui.basic.modal>.close{top:1rem;right:1.5rem}.ui.inverted.dimmer>.basic.modal{color:rgba(0,0,0,.87)}.ui.inverted.dimmer>.ui.basic.modal>.header{color:rgba(0,0,0,.85)}.ui.active.modal{display:block}.scrolling.dimmable.dimmed{overflow:hidden}.scrolling.dimmable.dimmed>.dimmer{overflow:auto;-webkit-overflow-scrolling:touch}.scrolling.dimmable>.dimmer{position:fixed}.modals.dimmer .ui.scrolling.modal{position:static!important;margin:3.5rem auto!important}.scrolling.undetached.dimmable.dimmed{overflow:auto;-webkit-overflow-scrolling:touch}.scrolling.undetached.dimmable.dimmed>.dimmer{overflow:hidden}.scrolling.undetached.dimmable .ui.scrolling.modal{position:absolute;left:50%;margin-top:3.5rem!important}.undetached.dimmable.dimmed>.pusher{z-index:auto}@media only screen and (max-width:992px){.ui.basic.modal>.close{color:#fff}.modals.dimmer .ui.scrolling.modal{margin-top:1rem!important;margin-bottom:1rem!important}}.ui.fullscreen.modal{width:95%!important;left:2.5%!important;margin:1em auto}.ui.fullscreen.scrolling.modal{left:0!important}.ui.fullscreen.modal>.header{padding-right:2.25rem}.ui.fullscreen.modal>.close{top:1.0535rem;right:1rem;color:rgba(0,0,0,.87)}.ui.modal{font-size:1rem}.ui.small.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width:767px){.ui.small.modal{width:95%;margin:0 0 0 -47.5%}}@media only screen and (min-width:768px){.ui.small.modal{width:70.4%;margin:0 0 0 -35.2%}}@media only screen and (min-width:992px){.ui.small.modal{width:680px;margin:0 0 0 -340px}}@media only screen and (min-width:1200px){.ui.small.modal{width:720px;margin:0 0 0 -360px}}@media only screen and (min-width:1920px){.ui.small.modal{width:760px;margin:0 0 0 -380px}}.ui.large.modal>.header{font-size:1.6em}@media only screen and (max-width:767px){.ui.large.modal{width:95%;margin:0 0 0 -47.5%}}@media only screen and (min-width:768px){.ui.large.modal{width:88%;margin:0 0 0 -44%}}@media only screen and (min-width:992px){.ui.large.modal{width:1020px;margin:0 0 0 -510px}}@media only screen and (min-width:1200px){.ui.large.modal{width:1080px;margin:0 0 0 -540px}}@media only screen and (min-width:1920px){.ui.large.modal{width:1140px;margin:0 0 0 -570px}}.ui.nag{display:none;opacity:.95;position:relative;top:0;left:0;z-index:999;min-height:0;width:100%;margin:0;padding:.75em 1em;background:#555;box-shadow:0 1px 2px 0 rgba(0,0,0,.2);font-size:1rem;text-align:center;color:rgba(0,0,0,.87);border-radius:0 0 .28571429rem .28571429rem;-webkit-transition:.2s background ease;transition:.2s background ease}a.ui.nag{cursor:pointer}.ui.nag>.title{display:inline-block;margin:0 .5em;color:#fff}.ui.nag>.close.icon{cursor:pointer;opacity:.4;position:absolute;top:50%;right:1em;font-size:1em;margin:-.5em 0 0;color:#fff;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}.ui.nag:hover{background:#555;opacity:1}.ui.nag .close:hover{opacity:1}.ui.overlay.nag{position:absolute;display:block}.ui.fixed.nag{position:fixed}.ui.bottom.nag,.ui.bottom.nags{border-radius:.28571429rem .28571429rem 0 0;top:auto;bottom:0}.ui.inverted.nag,.ui.inverted.nags .nag{background-color:#f3f4f5;color:rgba(0,0,0,.85)}.ui.inverted.nag .close,.ui.inverted.nag .title,.ui.inverted.nags .nag .close,.ui.inverted.nags .nag .title{color:rgba(0,0,0,.4)}.ui.nags .nag{border-radius:0!important}.ui.nags .nag:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui.bottom.nags .nag:last-child{border-radius:.28571429rem .28571429rem 0 0}.ui.popup{display:none;position:absolute;top:0;right:0;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;z-index:1900;border:1px solid #d4d4d5;line-height:1.4285em;max-width:250px;background-color:#fff;padding:.833em 1em;font-weight:400;font-style:normal;color:rgba(0,0,0,.87);border-radius:.28571429rem;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08);margin:0}.ui.popup>.header{padding:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.125em;line-height:1.2;font-weight:700}.ui.popup>.header+.content{padding-top:.5em}.ui.popup:before{position:absolute;content:'';width:.75em;height:.75em;background:#fff;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:2;box-shadow:1px 1px 0 0 #bababc}.ui.top.popup{margin:0 0 .75em}.ui.top.left.popup{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom}.ui.top.center.popup{-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}.ui.top.right.popup{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom}.ui.left.center.popup{margin:0 .75em 0 0;-webkit-transform-origin:right 50%;-ms-transform-origin:right 50%;transform-origin:right 50%}.ui.right.center.popup{margin:0 0 0 .75em;-webkit-transform-origin:left 50%;-ms-transform-origin:left 50%;transform-origin:left 50%}.ui.bottom.popup{margin:.75em 0 0}.ui.bottom.left.popup{-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top}.ui.bottom.center.popup{-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top}.ui.bottom.right.popup{-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top;margin-right:0}.ui.bottom.center.popup:before{margin-left:-.325em;top:-.325em;left:50%;right:auto;bottom:auto;box-shadow:-1px -1px 0 0 #bababc}.ui.bottom.left.popup{margin-left:0}.ui.bottom.left.popup:before{top:-.325em;left:1em;right:auto;bottom:auto;margin-left:0;box-shadow:-1px -1px 0 0 #bababc}.ui.bottom.right.popup:before{top:-.325em;right:1em;bottom:auto;left:auto;margin-left:0;box-shadow:-1px -1px 0 0 #bababc}.ui.top.center.popup:before{top:auto;right:auto;bottom:-.325em;left:50%;margin-left:-.325em}.ui.top.left.popup{margin-left:0}.ui.top.left.popup:before{bottom:-.325em;left:1em;top:auto;right:auto;margin-left:0}.ui.top.right.popup{margin-right:0}.ui.top.right.popup:before{bottom:-.325em;right:1em;top:auto;left:auto;margin-left:0}.ui.left.center.popup:before{top:50%;right:-.325em;bottom:auto;left:auto;margin-top:-.325em;box-shadow:1px -1px 0 0 #bababc}.ui.right.center.popup:before{top:50%;left:-.325em;bottom:auto;right:auto;margin-top:-.325em;box-shadow:-1px 1px 0 0 #bababc}.ui.popup>.ui.grid:not(.padded){width:calc(100% + 1.75rem);margin:-.7rem -.875rem}.ui.loading.popup{display:block;visibility:hidden;z-index:-1}.ui.animating.popup,.ui.visible.popup{display:block}.ui.visible.popup{-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.ui.basic.popup:before{display:none}.ui.wide.popup{max-width:350px}.ui[class*="very wide"].popup{max-width:550px}.ui.fluid.popup{width:100%;max-width:none}.ui.inverted.popup{background:#1b1c1d;color:#fff;border:none;box-shadow:none}.ui.inverted.popup .header{background-color:none;color:#fff}.ui.inverted.popup:before{background-color:#1b1c1d;box-shadow:none!important}.ui.flowing.popup{max-width:none}.ui.mini.popup{font-size:.71428571rem}.ui.tiny.popup{font-size:.85714286rem}.ui.small.popup{font-size:.92857143rem}.ui.popup{font-size:1rem}.ui.large.popup{font-size:1.14285714rem}.ui.huge.popup{font-size:1.42857143rem}.ui.progress{position:relative;display:block;max-width:100%;border:none;margin:1em 0 2.5em;box-shadow:none;background:rgba(0,0,0,.1);padding:0;border-radius:.28571429rem}.ui.progress:first-child{margin:0 0 2.5em}.ui.progress:last-child{margin:0 0 1.5em}.ui.progress .bar{display:block;line-height:1;position:relative;width:0;min-width:2em;background:#888;border-radius:.28571429rem;-webkit-transition:width .1s ease,background-color .1s ease;transition:width .1s ease,background-color .1s ease}.ui.progress .bar>.progress{white-space:nowrap;position:absolute;width:auto;font-size:.92857143em;top:50%;right:.5em;left:auto;bottom:auto;color:rgba(255,255,255,.7);text-shadow:none;margin-top:-.5em;font-weight:700;text-align:left}.ui.progress>.label{position:absolute;width:100%;font-size:1em;top:100%;right:auto;left:0;bottom:auto;color:rgba(0,0,0,.87);font-weight:700;text-shadow:none;margin-top:.2em;text-align:center;-webkit-transition:color .4s ease;transition:color .4s ease}.ui.indicating.progress[data-percent^="1"] .bar,.ui.indicating.progress[data-percent^="2"] .bar{background-color:#d95c5c}.ui.indicating.progress[data-percent^="3"] .bar{background-color:#efbc72}.ui.indicating.progress[data-percent^="4"] .bar,.ui.indicating.progress[data-percent^="5"] .bar{background-color:#e6bb48}.ui.indicating.progress[data-percent^="6"] .bar{background-color:#ddc928}.ui.indicating.progress[data-percent^="7"] .bar,.ui.indicating.progress[data-percent^="8"] .bar{background-color:#b4d95c}.ui.indicating.progress[data-percent^="9"] .bar,.ui.indicating.progress[data-percent^="100"] .bar{background-color:#66da81}.ui.indicating.progress[data-percent^="1"] .label,.ui.indicating.progress[data-percent^="2"] .label,.ui.indicating.progress[data-percent^="3"] .label,.ui.indicating.progress[data-percent^="4"] .label,.ui.indicating.progress[data-percent^="5"] .label,.ui.indicating.progress[data-percent^="6"] .label,.ui.indicating.progress[data-percent^="7"] .label,.ui.indicating.progress[data-percent^="8"] .label,.ui.indicating.progress[data-percent^="9"] .label,.ui.indicating.progress[data-percent^="100"] .label{color:rgba(0,0,0,.87)}.ui.indicating.progress[data-percent="1"] .bar,.ui.indicating.progress[data-percent="2"] .bar,.ui.indicating.progress[data-percent="3"] .bar,.ui.indicating.progress[data-percent="4"] .bar,.ui.indicating.progress[data-percent="5"] .bar,.ui.indicating.progress[data-percent="6"] .bar,.ui.indicating.progress[data-percent="7"] .bar,.ui.indicating.progress[data-percent="8"] .bar,.ui.indicating.progress[data-percent="9"] .bar{background-color:#d95c5c}.ui.indicating.progress[data-percent="1"] .label,.ui.indicating.progress[data-percent="2"] .label,.ui.indicating.progress[data-percent="3"] .label,.ui.indicating.progress[data-percent="4"] .label,.ui.indicating.progress[data-percent="5"] .label,.ui.indicating.progress[data-percent="6"] .label,.ui.indicating.progress[data-percent="7"] .label,.ui.indicating.progress[data-percent="8"] .label,.ui.indicating.progress[data-percent="9"] .label{color:rgba(0,0,0,.87)}.ui.indicating.progress.success .label{color:#1a531b}.ui.progress.success .bar{background-color:#21ba45!important}.ui.progress.success .bar,.ui.progress.success .bar::after{-webkit-animation:none!important;animation:none!important}.ui.progress.success>.label{color:#1a531b}.ui.progress.warning .bar{background-color:#f2c037!important}.ui.progress.warning .bar,.ui.progress.warning .bar::after{-webkit-animation:none!important;animation:none!important}.ui.progress.warning>.label{color:#794b02}.ui.progress.error .bar{background-color:#db2828!important}.ui.progress.error .bar,.ui.progress.error .bar::after{-webkit-animation:none!important;animation:none!important}.ui.progress.error>.label{color:#912d2b}.ui.active.progress .bar{position:relative;min-width:2em}.ui.active.progress .bar::after{content:'';opacity:0;position:absolute;top:0;left:0;right:0;bottom:0;background:#fff;border-radius:.28571429rem;-webkit-animation:progress-active 2s ease infinite;animation:progress-active 2s ease infinite}@-webkit-keyframes progress-active{0%{opacity:.3;width:0}100%{opacity:0;width:100%}}@keyframes progress-active{0%{opacity:.3;width:0}100%{opacity:0;width:100%}}.ui.disabled.progress{opacity:.35}.ui.disabled.progress .bar,.ui.disabled.progress .bar::after{-webkit-animation:none!important;animation:none!important}.ui.inverted.progress{background:rgba(255,255,255,.08);border:none}.ui.inverted.progress .bar{background:#888}.ui.inverted.progress .bar>.progress{color:#f9fafb}.ui.inverted.progress>.label{color:#fff}.ui.inverted.progress.success>.label{color:#21ba45}.ui.inverted.progress.warning>.label{color:#f2c037}.ui.inverted.progress.error>.label{color:#db2828}.ui.progress.attached{background:0 0;position:relative;border:none;margin:0}.ui.progress.attached,.ui.progress.attached .bar{display:block;height:.2rem;padding:0;overflow:hidden;border-radius:0 0 .28571429rem .28571429rem}.ui.progress.attached .bar{border-radius:0}.ui.progress.top.attached,.ui.progress.top.attached .bar{top:0;border-radius:.28571429rem .28571429rem 0 0}.ui.progress.top.attached .bar{border-radius:0}.ui.card>.ui.attached.progress,.ui.segment>.ui.attached.progress{position:absolute;top:auto;left:0;bottom:100%;width:100%}.ui.card>.ui.bottom.attached.progress,.ui.segment>.ui.bottom.attached.progress{top:100%;bottom:auto}.ui.red.progress .bar{background-color:#db2828}.ui.red.inverted.progress .bar{background-color:#ff695e}.ui.orange.progress .bar{background-color:#f2711c}.ui.orange.inverted.progress .bar{background-color:#ff851b}.ui.yellow.progress .bar{background-color:#fbbd08}.ui.yellow.inverted.progress .bar{background-color:#ffe21f}.ui.olive.progress .bar{background-color:#b5cc18}.ui.olive.inverted.progress .bar{background-color:#d9e778}.ui.green.progress .bar{background-color:#21ba45}.ui.green.inverted.progress .bar{background-color:#2ecc40}.ui.teal.progress .bar{background-color:#00b5ad}.ui.teal.inverted.progress .bar{background-color:#6dffff}.ui.blue.progress .bar{background-color:#2185d0}.ui.blue.inverted.progress .bar{background-color:#54c8ff}.ui.violet.progress .bar{background-color:#6435c9}.ui.violet.inverted.progress .bar{background-color:#a291fb}.ui.purple.progress .bar{background-color:#a333c8}.ui.purple.inverted.progress .bar{background-color:#dc73ff}.ui.pink.progress .bar{background-color:#e03997}.ui.pink.inverted.progress .bar{background-color:#ff8edf}.ui.brown.progress .bar{background-color:#a5673f}.ui.brown.inverted.progress .bar{background-color:#d67c1c}.ui.grey.progress .bar{background-color:#767676}.ui.grey.inverted.progress .bar{background-color:#dcddde}.ui.black.progress .bar{background-color:#1b1c1d}.ui.black.inverted.progress .bar{background-color:#545454}.ui.tiny.progress{font-size:.85714286rem}.ui.tiny.progress .bar{height:.5em}.ui.small.progress{font-size:.92857143rem}.ui.small.progress .bar{height:1em}.ui.progress{font-size:1rem}.ui.progress .bar{height:1.75em}.ui.large.progress{font-size:1.14285714rem}.ui.large.progress .bar{height:2.5em}.ui.big.progress{font-size:1.28571429rem}.ui.big.progress .bar{height:3.5em}.ui.rating:last-child{margin-right:0}.ui.rating .icon{padding:0;margin:0;-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;cursor:pointer;width:1.25em;height:auto;-webkit-transition:opacity .1s ease,background .1s ease,text-shadow .1s ease,color .1s ease;transition:opacity .1s ease,background .1s ease,text-shadow .1s ease,color .1s ease;background:0 0;color:rgba(0,0,0,.15);font-family:Rating;line-height:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center}.ui.rating .active.icon{background:0 0;color:rgba(0,0,0,.85)}.ui.rating .icon.selected,.ui.rating .icon.selected.active{background:0 0;color:rgba(0,0,0,.87)}.ui.star.rating .icon{width:1.25em;height:auto;background:0 0;color:rgba(0,0,0,.15);text-shadow:none}.ui.star.rating .active.icon{background:0 0!important;color:#ffe623!important;text-shadow:0 -1px 0 #ddc507,-1px 0 0 #ddc507,0 1px 0 #ddc507,1px 0 0 #ddc507!important}.ui.star.rating .icon.selected,.ui.star.rating .icon.selected.active{background:0 0!important;color:#fc0!important;text-shadow:0 -1px 0 #e6a200,-1px 0 0 #e6a200,0 1px 0 #e6a200,1px 0 0 #e6a200!important}.ui.heart.rating .icon{width:1.4em;height:auto;background:0 0;color:rgba(0,0,0,.15);text-shadow:none!important}.ui.heart.rating .active.icon{background:0 0!important;color:#ff6d75!important;text-shadow:0 -1px 0 #cd0707,-1px 0 0 #cd0707,0 1px 0 #cd0707,1px 0 0 #cd0707!important}.ui.heart.rating .icon.selected,.ui.heart.rating .icon.selected.active{background:0 0!important;color:#ff3000!important;text-shadow:0 -1px 0 #aa0101,-1px 0 0 #aa0101,0 1px 0 #aa0101,1px 0 0 #aa0101!important}.ui.disabled.rating .icon{cursor:default}.ui.rating .icon.selected,.ui.rating.selected .active.icon,.ui.rating.selected .icon.selected{opacity:1}.ui.mini.rating{font-size:.71428571rem}.ui.tiny.rating{font-size:.85714286rem}.ui.small.rating{font-size:.92857143rem}.ui.rating{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;white-space:nowrap;vertical-align:baseline;font-size:1rem}.ui.large.rating{font-size:1.14285714rem}.ui.huge.rating{font-size:1.42857143rem}.ui.massive.rating{font-size:2rem}@font-face{font-family:Rating;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjCBsAAAC8AAAAYGNtYXCj2pm8AAABHAAAAKRnYXNwAAAAEAAAAcAAAAAIZ2x5ZlJbXMYAAAHIAAARnGhlYWQBGAe5AAATZAAAADZoaGVhA+IB/QAAE5wAAAAkaG10eCzgAEMAABPAAAAAcGxvY2EwXCxOAAAUMAAAADptYXhwACIAnAAAFGwAAAAgbmFtZfC1n04AABSMAAABPHBvc3QAAwAAAAAVyAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADxZQHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEAJAAAAAgACAABAAAAAEAIOYF8AbwDfAj8C7wbvBw8Irwl/Cc8SPxZf/9//8AAAAAACDmAPAE8AzwI/Au8G7wcPCH8JfwnPEj8WT//f//AAH/4xoEEAYQAQ/sD+IPow+iD4wPgA98DvYOtgADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAIAAP/tAgAB0wAKABUAAAEvAQ8BFwc3Fyc3BQc3Jz8BHwEHFycCALFPT7GAHp6eHoD/AHAWW304OH1bFnABGRqgoBp8sFNTsHyyOnxYEnFxElh8OgAAAAACAAD/7QIAAdMACgASAAABLwEPARcHNxcnNwUxER8BBxcnAgCxT0+xgB6enh6A/wA4fVsWcAEZGqCgGnywU1OwfLIBHXESWHw6AAAAAQAA/+0CAAHTAAoAAAEvAQ8BFwc3Fyc3AgCxT0+xgB6enh6AARkaoKAafLBTU7B8AAAAAAEAAAAAAgABwAArAAABFA4CBzEHDgMjIi4CLwEuAzU0PgIzMh4CFz4DMzIeAhUCAAcMEgugBgwMDAYGDAwMBqALEgwHFyg2HhAfGxkKChkbHxAeNigXAS0QHxsZCqAGCwkGBQkLBqAKGRsfEB42KBcHDBILCxIMBxcoNh4AAAAAAgAAAAACAAHAACsAWAAAATQuAiMiDgIHLgMjIg4CFRQeAhcxFx4DMzI+Aj8BPgM1DwEiFCIGMTAmIjQjJy4DNTQ+AjMyHgIfATc+AzMyHgIVFA4CBwIAFyg2HhAfGxkKChkbHxAeNigXBwwSC6AGDAwMBgYMDAwGoAsSDAdbogEBAQEBAaIGCgcEDRceEQkREA4GLy8GDhARCREeFw0EBwoGAS0eNigXBwwSCwsSDAcXKDYeEB8bGQqgBgsJBgUJCwagChkbHxA+ogEBAQGiBg4QEQkRHhcNBAcKBjQ0BgoHBA0XHhEJERAOBgABAAAAAAIAAcAAMQAAARQOAgcxBw4DIyIuAi8BLgM1ND4CMzIeAhcHFwc3Jzc+AzMyHgIVAgAHDBILoAYMDAwGBgwMDAagCxIMBxcoNh4KFRMSCC9wQLBwJwUJCgkFHjYoFwEtEB8bGQqgBgsJBgUJCwagChkbHxAeNigXAwUIBUtAoMBAOwECAQEXKDYeAAABAAAAAAIAAbcAKgAAEzQ3NjMyFxYXFhcWFzY3Njc2NzYzMhcWFRQPAQYjIi8BJicmJyYnJicmNQAkJUARExIQEAsMCgoMCxAQEhMRQCUkQbIGBwcGsgMFBQsKCQkGBwExPyMkBgYLCgkKCgoKCQoLBgYkIz8/QawFBawCBgUNDg4OFRQTAAAAAQAAAA0B2wHSACYAABM0PwI2FzYfAhYVFA8BFxQVFAcGByYvAQcGByYnJjU0PwEnJjUAEI9BBQkIBkCPEAdoGQMDBgUGgIEGBQYDAwEYaAcBIwsCFoEMAQEMgRYCCwYIZJABBQUFAwEBAkVFAgEBAwUFAwOQZAkFAAAAAAIAAAANAdsB0gAkAC4AABM0PwI2FzYfAhYVFA8BFxQVFAcmLwEHBgcmJyY1ND8BJyY1HwEHNxcnNy8BBwAQj0EFCQgGQI8QB2gZDAUGgIEGBQYDAwEYaAc/WBVsaxRXeDY2ASMLAhaBDAEBDIEWAgsGCGSQAQUNAQECRUUCAQEDBQUDA5BkCQURVXg4OHhVEW5uAAABACMAKQHdAXwAGgAANzQ/ATYXNh8BNzYXNh8BFhUUDwEGByYvASY1IwgmCAwLCFS8CAsMCCYICPUIDAsIjgjSCwkmCQEBCVS7CQEBCSYJCg0H9gcBAQePBwwAAAEAHwAfAXMBcwAsAAA3ND8BJyY1ND8BNjMyHwE3NjMyHwEWFRQPARcWFRQPAQYjIi8BBwYjIi8BJjUfCFRUCAgnCAwLCFRUCAwLCCcICFRUCAgnCAsMCFRUCAsMCCcIYgsIVFQIDAsIJwgIVFQICCcICwwIVFQICwwIJwgIVFQICCcIDAAAAAACAAAAJQFJAbcAHwArAAA3NTQ3NjsBNTQ3NjMyFxYdATMyFxYdARQHBiMhIicmNTczNTQnJiMiBwYdAQAICAsKJSY1NCYmCQsICAgIC/7tCwgIW5MWFR4fFRZApQsICDc0JiYmJjQ3CAgLpQsICAgIC8A3HhYVFRYeNwAAAQAAAAcBbgG3ACEAADcRNDc2NzYzITIXFhcWFREUBwYHBiMiLwEHBiMiJyYnJjUABgUKBgYBLAYGCgUGBgUKBQcOCn5+Cg4GBgoFBicBcAoICAMDAwMICAr+kAoICAQCCXl5CQIECAgKAAAAAwAAACUCAAFuABgAMQBKAAA3NDc2NzYzMhcWFxYVFAcGBwYjIicmJyY1MxYXFjMyNzY3JicWFRQHBiMiJyY1NDcGBzcUFxYzMjc2NTQ3NjMyNzY1NCcmIyIHBhUABihDREtLREMoBgYoQ0RLS0RDKAYlJjk5Q0M5OSYrQREmJTU1JSYRQSuEBAQGBgQEEREZBgQEBAQGJBkayQoKQSgoKChBCgoKCkEoJycoQQoKOiMjIyM6RCEeIjUmJSUmNSIeIUQlBgQEBAQGGBIRBAQGBgQEGhojAAAABQAAAAkCAAGJACwAOABRAGgAcAAANzQ3Njc2MzIXNzYzMhcWFxYXFhcWFxYVFDEGBwYPAQYjIicmNTQ3JicmJyY1MxYXNyYnJjU0NwYHNxQXFjMyNzY1NDc2MzI3NjU0JyYjIgcGFRc3Njc2NyYnNxYXFhcWFRQHBgcGBwYjPwEWFRQHBgcABitBQU0ZGhADBQEEBAUFBAUEBQEEHjw8Hg4DBQQiBQ0pIyIZBiUvSxYZDg4RQSuEBAQGBgQEEREZBgQEBAQGJBkaVxU9MzQiIDASGxkZEAYGCxQrODk/LlACFxYlyQsJQycnBRwEAgEDAwIDAwIBAwUCNmxsNhkFFAMFBBUTHh8nCQtKISgSHBsfIh4hRCUGBAQEBAYYEhEEBAYGBAQaGiPJJQUiIjYzISASGhkbCgoKChIXMRsbUZANCyghIA8AAAMAAAAAAbcB2wA5AEoAlAAANzU0NzY7ATY3Njc2NzY3Njc2MzIXFhcWFRQHMzIXFhUUBxYVFAcUFRQHFgcGKwEiJyYnJisBIicmNTcUFxYzMjc2NTQnJiMiBwYVFzMyFxYXFhcWFxYXFhcWOwEyNTQnNjc2NTQnNjU0JyYnNjc2NTQnJisBNDc2NTQnJiMGBwYHBgcGBwYHBgcGBwYHBgcGBwYrARUACwoQTgodEQ4GBAMFBgwLDxgTEwoKDjMdFhYOAgoRARkZKCUbGxsjIQZSEAoLJQUFCAcGBQUGBwgFBUkJBAUFBAQHBwMDBwcCPCUjNwIJBQUFDwMDBAkGBgsLDmUODgoJGwgDAwYFDAYQAQUGAwQGBgYFBgUGBgQJSbcPCwsGJhUPCBERExMMCgkJFBQhGxwWFR4ZFQoKFhMGBh0WKBcXBgcMDAoLDxIHBQYGBQcIBQYGBQgSAQEBAQICAQEDAgEULwgIBQoLCgsJDhQHCQkEAQ0NCg8LCxAdHREcDQ4IEBETEw0GFAEHBwUECAgFBQUFAgO3AAADAAD/2wG3AbcAPABNAJkAADc1NDc2OwEyNzY3NjsBMhcWBxUWFRQVFhUUBxYVFAcGKwEWFRQHBgcGIyInJicmJyYnJicmJyYnIyInJjU3FBcWMzI3NjU0JyYjIgcGFRczMhcWFxYXFhcWFxYXFhcWFxYXFhcWFzI3NjU0JyY1MzI3NjU0JyYjNjc2NTQnNjU0JyYnNjU0JyYrASIHIgcGBwYHBgcGIwYrARUACwoQUgYhJRsbHiAoGRkBEQoCDhYWHTMOCgoTExgPCwoFBgIBBAMFDhEdCk4QCgslBQUIBwYFBQYHCAUFSQkEBgYFBgUGBgYEAwYFARAGDAUGAwMIGwkKDg5lDgsLBgYJBAMDDwUFBQkCDg4ZJSU8AgcHAwMHBwQEBQUECbe3DwsKDAwHBhcWJwIWHQYGExYKChUZHhYVHRoiExQJCgsJDg4MDAwNBg4WJQcLCw+kBwUGBgUHCAUGBgUIpAMCBQYFBQcIBAUHBwITBwwTExERBw0OHBEdHRALCw8KDQ0FCQkHFA4JCwoLCgUICBgMCxUDAgEBAgMBAQG3AAAAAQAAAA0A7gHSABQAABM0PwI2FxEHBgcmJyY1ND8BJyY1ABCPQQUJgQYFBgMDARhoBwEjCwIWgQwB/oNFAgEBAwUFAwOQZAkFAAAAAAIAAAAAAgABtwAqAFkAABM0NzYzMhcWFxYXFhc2NzY3Njc2MzIXFhUUDwEGIyIvASYnJicmJyYnJjUzFB8BNzY1NCcmJyYnJicmIyIHBgcGBwYHBiMiJyYnJicmJyYjIgcGBwYHBgcGFQAkJUARExIQEAsMCgoMCxAQEhMRQCUkQbIGBwcGsgMFBQsKCQkGByU1pqY1BgYJCg4NDg0PDhIRDg8KCgcFCQkFBwoKDw4REg4PDQ4NDgoJBgYBMT8jJAYGCwoJCgoKCgkKCwYGJCM/P0GsBQWsAgYFDQ4ODhUUEzA1oJ82MBcSEgoLBgcCAgcHCwsKCQgHBwgJCgsLBwcCAgcGCwoSEhcAAAACAAAABwFuAbcAIQAoAAA3ETQ3Njc2MyEyFxYXFhURFAcGBwYjIi8BBwYjIicmJyY1PwEfAREhEQAGBQoGBgEsBgYKBQYGBQoFBw4Kfn4KDgYGCgUGJZIZef7cJwFwCggIAwMDAwgICv6QCggIBAIJeXkJAgQICAoIjRl0AWP+nQAAAAABAAAAJQHbAbcAMgAANzU0NzY7ATU0NzYzMhcWHQEUBwYrASInJj0BNCcmIyIHBh0BMzIXFh0BFAcGIyEiJyY1AAgIC8AmJjQ1JiUFBQgSCAUFFhUfHhUWHAsICAgIC/7tCwgIQKULCAg3NSUmJiU1SQgFBgYFCEkeFhUVFh43CAgLpQsICAgICwAAAAIAAQANAdsB0gAiAC0AABM2PwI2MzIfAhYXFg8BFxYHBiMiLwEHBiMiJyY/AScmNx8CLwE/AS8CEwEDDJBABggJBUGODgIDCmcYAgQCCAMIf4IFBgYEAgEZaQgC7hBbEgINSnkILgEBJggCFYILC4IVAggICWWPCgUFA0REAwUFCo9lCQipCTBmEw1HEhFc/u0AAAADAAAAAAHJAbcAFAAlAHkAADc1NDc2OwEyFxYdARQHBisBIicmNTcUFxYzMjc2NTQnJiMiBwYVFzU0NzYzNjc2NzY3Njc2NzY3Njc2NzY3NjMyFxYXFhcWFxYXFhUUFRQHBgcGBxQHBgcGBzMyFxYVFAcWFRYHFgcGBxYHBgcjIicmJyYnJiciJyY1AAUGB1MHBQYGBQdTBwYFJQUFCAcGBQUGBwgFBWQFBQgGDw8OFAkFBAQBAQMCAQIEBAYFBw4KCgcHBQQCAwEBAgMDAgYCAgIBAU8XEBAQBQEOBQUECwMREiYlExYXDAwWJAoHBQY3twcGBQUGB7cIBQUFBQgkBwYFBQYHCAUGBgUIJLcHBQYBEBATGQkFCQgGBQwLBgcICQUGAwMFBAcHBgYICQQEBwsLCwYGCgIDBAMCBBEQFhkSDAoVEhAREAsgFBUBBAUEBAcMAQUFCAAAAAADAAD/2wHJAZIAFAAlAHkAADcUFxYXNxY3Nj0BNCcmBycGBwYdATc0NzY3FhcWFRQHBicGJyY1FzU0NzY3Fjc2NzY3NjcXNhcWBxYXFgcWBxQHFhUUBwYHJxYXFhcWFRYXFhcWFRQVFAcGBwYHBgcGBwYnBicmJyYnJicmJyYnJicmJyYnJiciJyY1AAUGB1MHBQYGBQdTBwYFJQUFCAcGBQUGBwgFBWQGBQcKJBYMDBcWEyUmEhEDCwQFBQ4BBRAQEBdPAQECAgIGAgMDAgEBAwIEBQcHCgoOBwUGBAQCAQIDAQEEBAUJFA4PDwYIBQWlBwYFAQEBBwQJtQkEBwEBAQUGB7eTBwYEAQEEBgcJBAYBAQYECZS4BwYEAgENBwUCBgMBAQEXEyEJEhAREBcIDhAaFhEPAQEFAgQCBQELBQcKDAkIBAUHCgUGBwgDBgIEAQEHBQkIBwUMCwcECgcGCRoREQ8CBgQIAAAAAQAAAAEAAJth57dfDzz1AAsCAAAAAADP/GODAAAAAM/8Y4MAAP/bAgAB2wAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAACAAABAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAEAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAdwAAAHcAAACAAAjAZMAHwFJAAABbgAAAgAAAAIAAAACAAAAAgAAAAEAAAACAAAAAW4AAAHcAAAB3AABAdwAAAHcAAAAAAAAAAoAFAAeAEoAcACKAMoBQAGIAcwCCgJUAoICxgMEAzoDpgRKBRgF7AYSBpgG2gcgB2oIGAjOAAAAAQAAABwAmgAFAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAwAAAABAAAAAAACAA4AQAABAAAAAAADAAwAIgABAAAAAAAEAAwATgABAAAAAAAFABYADAABAAAAAAAGAAYALgABAAAAAAAKADQAWgADAAEECQABAAwAAAADAAEECQACAA4AQAADAAEECQADAAwAIgADAAEECQAEAAwATgADAAEECQAFABYADAADAAEECQAGAAwANAADAAEECQAKADQAWgByAGEAdABpAG4AZwBWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBhAHQAaQBuAGdyYXRpbmcAcgBhAHQAaQBuAGcAUgBlAGcAdQBsAGEAcgByAGEAdABpAG4AZwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AABcUAAoAAAAAFswAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAEuEAABLho6TvIE9TLzIAABPYAAAAYAAAAGAIIwgbY21hcAAAFDgAAACkAAAApKPambxnYXNwAAAU3AAAAAgAAAAIAAAAEGhlYWQAABTkAAAANgAAADYBGAe5aGhlYQAAFRwAAAAkAAAAJAPiAf1obXR4AAAVQAAAAHAAAABwLOAAQ21heHAAABWwAAAABgAAAAYAHFAAbmFtZQAAFbgAAAE8AAABPPC1n05wb3N0AAAW9AAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLZviU+HQFHQAAAP0PHQAAAQIRHQAAAAkdAAAS2BIAHQEBBw0PERQZHiMoLTI3PEFGS1BVWl9kaW5zeH2Ch4xyYXRpbmdyYXRpbmd1MHUxdTIwdUU2MDB1RTYwMXVFNjAydUU2MDN1RTYwNHVFNjA1dUYwMDR1RjAwNXVGMDA2dUYwMEN1RjAwRHVGMDIzdUYwMkV1RjA2RXVGMDcwdUYwODd1RjA4OHVGMDg5dUYwOEF1RjA5N3VGMDlDdUYxMjN1RjE2NHVGMTY1AAACAYkAGgAcAgABAAQABwAKAA0AVgCWAL0BAgGMAeQCbwLwA4cD5QR0BQMFdgZgB8MJkQtxC7oM2Q1jDggOmRAYEZr8lA78lA78lA77lA74lPetFftFpTz3NDz7NPtFcfcU+xBt+0T3Mt73Mjht90T3FPcQBfuU+0YV+wRRofcQMOP3EZ3D9wXD+wX3EXkwM6H7EPsExQUO+JT3rRX7RaU89zQ8+zT7RXH3FPsQbftE9zLe9zI4bfdE9xT3EAX7lPtGFYuLi/exw/sF9xF5MDOh+xD7BMUFDviU960V+0WlPPc0PPs0+0Vx9xT7EG37RPcy3vcyOG33RPcU9xAFDviU98EVi2B4ZG5wCIuL+zT7NAV7e3t7e4t7i3ube5sI+zT3NAVupniyi7aL3M3N3Iu2i7J4pm6mqLKetovci81JizoIDviU98EVi9xJzTqLYItkeHBucKhknmCLOotJSYs6i2CeZKhwCIuL9zT7NAWbe5t7m4ubi5ubm5sI9zT3NAWopp6yi7YIME0V+zb7NgWKioqKiouKi4qMiowI+zb3NgV6m4Ghi6OLubCwuYuji6GBm3oIule6vwWbnKGVo4u5i7Bmi12Lc4F1ensIDviU98EVi2B4ZG5wCIuL+zT7NAV7e3t7e4t7i3ube5sI+zT3NAVupniyi7aL3M3N3Iuni6WDoX4IXED3BEtL+zT3RPdU+wTLssYFl46YjZiL3IvNSYs6CA6L98UVi7WXrKOio6Otl7aLlouXiZiHl4eWhZaEloSUhZKFk4SShZKEkpKSkZOSkpGUkZaSCJaSlpGXj5iPl42Wi7aLrX+jc6N0l2qLYYthdWBgYAj7RvtABYeIh4mGi4aLh42Hjgj7RvdABYmNiY2Hj4iOhpGDlISUhZWFlIWVhpaHmYaYiZiLmAgOZ4v3txWLkpCPlo0I9yOgzPcWBY6SkI+Ri5CLkIePhAjL+xb3I3YFlomQh4uEi4aJh4aGCCMmpPsjBYuKi4mLiIuHioiJiImIiIqHi4iLh4yHjQj7FM/7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOZ4v3txWLkpCPlo0I9yOgzPcWBY6SkI+Ri5CLkIePhAjL+xb3I3YFlomQh4uEi4aJh4aGCCMmpPsjBYuKi4mLiIuCh4aDi4iLh4yHjQj7FM/7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwjKeRXjN3b7DfcAxPZSd/cN4t/7DJ1V9wFV+wEFDq73ZhWLk42RkZEIsbIFkZCRjpOLkouSiJCGCN8291D3UAWQkJKOkouTi5GIkYYIsWQFkYaNhIuEi4OJhYWFCPuJ+4kFhYWFiYOLhIuEjYaRCPsi9yIFhZCJkouSCA77AartFYuSjpKQkAjf3zffBYaQiJKLk4uSjpKQkAiysgWRkJGOk4uSi5KIkIYI3zff3wWQkJKOk4uSi5KIkIYIsmQFkIaOhIuEi4OIhIaGCDc33zcFkIaOhIuEi4OIhYaFCGRkBYaGhIiEi4OLhI6GkAg33zc3BYaGhIiEi4OLhY6FkAhksgWGkYiRi5MIDvtLi8sVi/c5BYuSjpKQkJCQko6SiwiVi4vCBYuul6mkpKSkqpiui66LqX6kcqRymG2LaAiLVJSLBZKLkoiQhpCGjoSLhAiL+zkFi4OIhYaGhoWEiYSLCPuniwWEi4SNhpGGkIiRi5MI5vdUFfcni4vCBYufhJx8mn2ZepJ3i3aLeoR9fX18g3qLdwiLVAUO+yaLshWL+AQFi5GNkY+RjpCQj5KNj42PjI+LCPfAiwWPi4+Kj4mRiZCHj4aPhY2Fi4UIi/wEBYuEiYWHhoeGhoeFiIiKhoqHi4GLhI6EkQj7EvcN+xL7DQWEhYOIgouHi4eLh42EjoaPiJCHkImRi5IIDov3XRWLko2Rj5Kltq+vuKW4pbuZvYu9i7t9uHG4ca9npWCPhI2Fi4SLhYmEh4RxYGdoXnAIXnFbflmLWYtbmF6lXqZnrnG2h5KJkouRCLCLFaRkq2yxdLF0tH+4i7iLtJexorGiq6qksm64Z61goZZ3kXaLdItnfm1ycnJybX9oiwhoi22XcqRypH6pi6+LopGglp9gdWdpbl4I9xiwFYuHjIiOiI6IjoqPi4+LjoyOjo2OjY6Lj4ubkJmXl5eWmZGbi4+LjoyOjo2OjY6LjwiLj4mOiY6IjYiNh4tzi3eCenp6eoJ3i3MIDov3XRWLko2Sj5GouK+utqW3pbqYvouci5yJnIgIm6cFjY6NjI+LjIuNi42JjYqOio+JjomOiY6KjomOiY6JjoqNioyKjomMiYuHi4qLiouLCHdnbVVjQ2NDbVV3Zwh9cgWJiIiJiIuJi36SdJiIjYmOi46LjY+UlJlvl3KcdJ90oHeie6WHkYmSi5IIsIsVqlq0Z711CKGzBXqXfpqCnoKdhp6LoIuikaCWn2B1Z2luXgj3GLAVi4eMiI6IjoiOio+Lj4uOjI6OjY6NjouPi5uQmZeXl5aZkZuLj4uOjI6OjY6NjouPCIuPiY6JjoiNiI2Hi3OLd4J6enp6gneLcwji+10VoLAFtI+wmK2hrqKnqKKvdq1wp2uhCJ2rBZ1/nHycepx6mHqWeY+EjYWLhIuEiYWHhIR/gH1+fG9qaXJmeWV5Y4Jhiwi53BXb9yQFjIKMg4uEi3CDc3x1fHV3fHOBCA6L1BWL90sFi5WPlJKSkpKTj5aLCNmLBZKPmJqepJaZlZeVlY+Qj5ONl42WjpeOmI+YkZWTk5OSk46Vi5uLmYiYhZiFlIGSfgiSfo55i3WLeYd5gXgIvosFn4uchJl8mn2Seot3i3qGfIJ9jYSLhYuEi3yIfoR+i4eLh4uHi3eGen99i3CDdnt8CHt8dYNwiwhmiwV5i3mNeY95kHeRc5N1k36Ph4sIOYsFgIuDjoSShJKHlIuVCLCdFYuGjIePiI+Hj4mQi5CLj42Pj46OjY+LkIuQiZCIjoePh42Gi4aLh4mHh4eIioaLhgjUeRWUiwWNi46Lj4qOi4+KjYqOi4+Kj4mQio6KjYqNio+Kj4mQio6KjIqzfquEpIsIrosFr4uemouri5CKkYqQkY6QkI6SjpKNkouSi5KJkoiRlZWQlouYi5CKkImRiZGJj4iOCJGMkI+PlI+UjZKLkouViJODk4SSgo+CiwgmiwWLlpCalJ6UnpCbi5aLnoiYhJSFlH+QeYuGhoeDiYCJf4h/h3+IfoWBg4KHh4SCgH4Ii4qIiYiGh4aIh4mIiIiIh4eGh4aHh4eHiIiHiIeHiIiHiIeKh4mIioiLCIKLi/tLBQ6L90sVi/dLBYuVj5OSk5KSk46WiwjdiwWPi5iPoZOkk6CRnZCdj56Nn4sIq4sFpougg5x8m3yTd4txCIuJBZd8kHuLd4uHi4eLh5J+jn6LfIuEi4SJhZR9kHyLeot3hHp8fH19eoR3iwhYiwWVeI95i3mLdIh6hH6EfoKBfoV+hX2He4uBi4OPg5KFkYaTh5SHlYiTipOKk4qTiJMIiZSIkYiPgZSBl4CaeKR+moSPCD2LBYCLg4+EkoSSh5SLlQiw9zgVi4aMh4+Ij4ePiZCLkIuPjY+Pjo6Nj4uQi5CJkIiOh4+HjYaLhouHiYeHh4iKhouGCNT7OBWUiwWOi46Kj4mPio+IjoiPh4+IjoePiI+Hj4aPho6HjoiNiI6Hj4aOho6Ii4qWfpKDj4YIk4ORgY5+j36OgI1/jYCPg5CGnYuXj5GUkpSOmYuei5aGmoKfgp6GmouWCPCLBZSLlI+SkpOTjpOLlYuSiZKHlIeUho+Fi46PjY+NkY2RjJCLkIuYhpaBlY6RjZKLkgiLkomSiJKIkoaQhY6MkIyRi5CLm4aXgpOBkn6Pe4sIZosFcotrhGN9iouIioaJh4qHiomKiYqIioaKh4mHioiKiYuHioiLh4qIi4mLCIKLi/tLBQ77lIv3txWLkpCPlo0I9yOgzPcWBY6SkI+RiwiL/BL7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOi/fFFYu1l6yjoqOjrZe2i5aLl4mYh5eHloWWhJaElIWShZOEkoWShJKSkpGTkpKRlJGWkgiWkpaRl4+Yj5eNlou2i61/o3OjdJdqi2GLYXVgYGAI+0b7QAWHiIeJhouGi4eNh44I+0b3QAWJjYmNh4+IjoaRg5SElIWVhZSFlYaWh5mGmImYi5gIsIsVi2ucaa9oCPc6+zT3OvczBa+vnK2Lq4ubiZiHl4eXhpSFkoSSg5GCj4KQgo2CjYONgYuBi4KLgIl/hoCGgIWChAiBg4OFhISEhYaFhoaIhoaJhYuFi4aNiJCGkIaRhJGEkoORgZOCkoCRgJB/kICNgosIgYuBi4OJgomCiYKGgoeDhYSEhYSGgod/h3+Jfot7CA77JouyFYv4BAWLkY2Rj5GOkJCPko2PjY+Mj4sI98CLBY+Lj4qPiZGJkIePho+FjYWLhQiL/AQFi4SJhYeGh4aGh4WIiIqGioeLgYuEjoSRCPsS9w37EvsNBYSFg4iCi4eLh4uHjYSOho+IkIeQiZGLkgiwkxX3JvchpHL3DfsIi/f3+7iLi/v3BQ5ni8sVi/c5BYuSjpKQkJCQko6Siwj3VIuLwgWLrpippKSkpKmYrouvi6l+pHKkcpdti2gIi0IFi4aKhoeIh4eHiYaLCHmLBYaLh42Hj4eOipCLkAiL1AWLn4OcfZp9mXqSdot3i3qEfX18fIR6i3cIi1SniwWSi5KIkIaQho6Ei4QIi/s5BYuDiIWGhoaFhImEiwj7p4sFhIuEjYaRhpCIkYuTCA5njPe6FYyQkI6UjQj3I6DM9xYFj5KPj5GLkIuQh4+ECMv7FvcjdgWUiZCIjYaNhoiFhYUIIyak+yMFjIWKhomHiYiIiYaLiIuHjIeNCPsUz/sVRwWHiYeKiIuHi4eNiY6Jj4uQjJEIo/cjI/AFhZGJkY2QCPeB+z0VnILlW3rxiJ6ZmNTS+wydgpxe54v7pwUOZ4vCFYv3SwWLkI2Pjo+Pjo+NkIsI3osFkIuPiY6Ij4eNh4uGCIv7SwWLhomHh4eIh4eKhosIOIsFhouHjIePiI+Jj4uQCLCvFYuGjIePh46IkImQi5CLj42Pjo6PjY+LkIuQiZCIjoePh42Gi4aLhomIh4eIioaLhgjvZxWL90sFi5CNj46Oj4+PjZCLj4ySkJWWlZaVl5SXmJuVl5GRjo6OkI6RjZCNkIyPjI6MkY2TCIySjJGMj4yPjZCOkY6RjpCPjo6Pj42Qi5SLk4qSiZKJkYiPiJCIjoiPho6GjYeMhwiNh4yGjIaMhYuHi4iLiIuHi4eLg4uEiYSJhImFiYeJh4mFh4WLioqJiomJiIqJiokIi4qKiIqJCNqLBZqLmIWWgJaAkH+LfIt6hn2Af46DjYSLhIt9h36Cf4+Bi3+HgImAhYKEhI12hnmAfgh/fXiDcosIZosFfot+jHyOfI5/joOOg41/j32Qc5N8j4SMhouHjYiOh4+Jj4uQCA5ni/c5FYuGjYaOiI+Hj4mQiwjeiwWQi4+Njo+Pjo2Qi5AIi/dKBYuQiZCHjoiPh42Giwg4iwWGi4eJh4eIiImGi4YIi/tKBbD3JhWLkIyPj4+OjpCNkIuQi4+Jj4iOh42Hi4aLhomHiIeHh4eKhouGi4aMiI+Hj4qPi5AI7/snFYv3SwWLkI2Qj46Oj4+NkIuSi5qPo5OZkJePk46TjZeOmo6ajpiMmIsIsIsFpIueg5d9ln6Qeol1koSRgo2Aj4CLgIeAlH+Pfot9i4WJhIiCloCQfIt7i3yFfoGACICAfoZ8iwg8iwWMiIyJi4mMiYyJjYmMiIyKi4mPhI2GjYeNh42GjYOMhIyEi4SLhouHi4iLiYuGioYIioWKhomHioeJh4iGh4eIh4aIh4iFiISJhImDioKLhouHjYiPh4+Ij4iRiJGJkIqPCIqPipGKkomTipGKj4qOiZCJkYiQiJCIjoWSgZZ+nIKXgZaBloGWhJGHi4aLh42HjwiIjomQi48IDviUFPiUFYsMCgAAAAADAgABkAAFAAABTAFmAAAARwFMAWYAAAD1ABkAhAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAPFlAeD/4P/gAeAAIAAAAAEAAAAAAAAAAAAAACAAAAAAAAIAAAADAAAAFAADAAEAAAAUAAQAkAAAACAAIAAEAAAAAQAg5gXwBvAN8CPwLvBu8HDwivCX8JzxI/Fl//3//wAAAAAAIOYA8ATwDPAj8C7wbvBw8Ifwl/Cc8SPxZP/9//8AAf/jGgQQBhABD+wP4g+jD6IPjA+AD3wO9g62AAMAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAAJrVlLJfDzz1AAsCAAAAAADP/GODAAAAAM/8Y4MAAP/bAgAB2wAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAACAAABAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAEAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAdwAAAHcAAACAAAjAZMAHwFJAAABbgAAAgAAAAIAAAACAAAAAgAAAAEAAAACAAAAAW4AAAHcAAAB3AABAdwAAAHcAAAAAFAAABwAAAAAAA4ArgABAAAAAAABAAwAAAABAAAAAAACAA4AQAABAAAAAAADAAwAIgABAAAAAAAEAAwATgABAAAAAAAFABYADAABAAAAAAAGAAYALgABAAAAAAAKADQAWgADAAEECQABAAwAAAADAAEECQACAA4AQAADAAEECQADAAwAIgADAAEECQAEAAwATgADAAEECQAFABYADAADAAEECQAGAAwANAADAAEECQAKADQAWgByAGEAdABpAG4AZwBWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBhAHQAaQBuAGdyYXRpbmcAcgBhAHQAaQBuAGcAUgBlAGcAdQBsAGEAcgByAGEAdABpAG4AZwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format('woff');font-weight:400;font-style:normal}.ui.rating .icon:before{content:'\f006'}.ui.rating .active.icon:before,.ui.star.rating .active.icon:before,.ui.star.rating .icon:before{content:'\f005'}.ui.star.rating .partial.icon:before{content:'\f006'}.ui.star.rating .partial.icon{content:'\f005'}.ui.heart.rating .active.icon:before,.ui.heart.rating .icon:before{content:'\f004'}.ui.search{position:relative}.ui.search>.prompt{margin:0;outline:0;-webkit-appearance:none;-webkit-tap-highlight-color:rgba(255,255,255,0);text-shadow:none;font-style:normal;font-weight:400;line-height:1.2142em;padding:.67861429em 1em;font-size:1em;background:#fff;border:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87);box-shadow:0 0 0 0 transparent inset;-webkit-transition:background-color .1s ease,color .1s ease,box-shadow .1s ease,border-color .1s ease;transition:background-color .1s ease,color .1s ease,box-shadow .1s ease,border-color .1s ease}.ui.search .prompt{border-radius:500rem}.ui.search .prompt~.search.icon{cursor:pointer}.ui.search>.results{display:none;position:absolute;top:100%;left:0;-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top;background:#fff;margin-top:.5em;width:18em;border-radius:.28571429rem;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08);border:1px solid #d4d4d5;z-index:998}.ui.search>.results>:first-child{border-radius:.28571429rem .28571429rem 0 0}.ui.search>.results>:last-child{border-radius:0 0 .28571429rem .28571429rem}.ui.search>.results .result{cursor:pointer;display:block;overflow:hidden;font-size:1em;padding:.85714286em 1.14285714em;color:rgba(0,0,0,.87);line-height:1.33;border-bottom:1px solid rgba(34,36,38,.1)}.ui.search>.results .result:last-child{border-bottom:none!important}.ui.search>.results .result .image{float:right;overflow:hidden;background:0 0;width:5em;height:3em;border-radius:.25em}.ui.search>.results .result .image img{display:block;width:auto;height:100%}.ui.search>.results .result .image+.content{margin:0 6em 0 0}.ui.search>.results .result .title{margin:-.14285em 0 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;font-size:1em;color:rgba(0,0,0,.85)}.ui.search>.results .result .description{margin-top:0;font-size:.92857143em;color:rgba(0,0,0,.4)}.ui.search>.results .result .price{float:right;color:#21ba45}.ui.search>.results>.message{padding:1em}.ui.search>.results>.message .header{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1rem;font-weight:700;color:rgba(0,0,0,.87)}.ui.search>.results>.message .description{margin-top:.25rem;font-size:1em;color:rgba(0,0,0,.87)}.ui.search>.results>.action{display:block;border-top:none;background:#f3f4f5;padding:.92857143em 1em;color:rgba(0,0,0,.87);font-weight:700;text-align:center}.ui.search>.prompt:focus{border-color:rgba(34,36,38,.35);background:#fff;color:rgba(0,0,0,.95)}.ui.loading.search .input>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.search .input>i.icon:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.category.search>.results .category .result:hover,.ui.search>.results .result:hover{background:#f9fafb}.ui.search .action:hover{background:#e0e0e0}.ui.category.search>.results .category.active{background:#f3f4f5}.ui.category.search>.results .category.active>.name{color:rgba(0,0,0,.87)}.ui.category.search>.results .category .result.active,.ui.search>.results .result.active{position:relative;border-left-color:rgba(34,36,38,.1);background:#f3f4f5;box-shadow:none}.ui.search>.results .result.active .description,.ui.search>.results .result.active .title{color:rgba(0,0,0,.85)}.ui.category.search .results{width:28em}.ui.category.search>.results .category{background:#f3f4f5;box-shadow:none;border-bottom:1px solid rgba(34,36,38,.1);-webkit-transition:background .1s ease,border-color .1s ease;transition:background .1s ease,border-color .1s ease}.ui.category.search>.results .category:last-child{border-bottom:none}.ui.category.search>.results .category:first-child .name+.result{border-radius:0 .28571429rem 0 0}.ui.category.search>.results .category .result{background:#fff;margin-left:100px;border-left:1px solid rgba(34,36,38,.15);border-bottom:1px solid rgba(34,36,38,.1);-webkit-transition:background .1s ease,border-color .1s ease;transition:background .1s ease,border-color .1s ease;padding:.85714286em 1.14285714em}.ui.category.search>.results .category:last-child .result:last-child{border-radius:0 0 .28571429rem;border-bottom:none}.ui.category.search>.results .category>.name{width:100px;background:0 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1em;float:1em;float:left;padding:.4em 1em;font-weight:700;color:rgba(0,0,0,.4)}.ui[class*="left aligned"].search>.results{right:auto;left:0}.ui[class*="right aligned"].search>.results{right:0;left:auto}.ui.fluid.search .results{width:100%}.ui.mini.search{font-size:.71428571em}.ui.small.search{font-size:.92857143em}.ui.search{font-size:1em}.ui.large.search{font-size:1.14285714em}.ui.big.search{font-size:1.28571429em}.ui.huge.search{font-size:1.42857143em}.ui.massive.search{font-size:1.71428571em}.ui.shape{position:relative;vertical-align:top;display:inline-block;-webkit-perspective:2000px;perspective:2000px;-webkit-transition:-webkit-transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out}.ui.shape .sides{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.ui.shape .side{opacity:1;width:100%;margin:0!important;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none}.ui.shape .side *{-webkit-backface-visibility:visible!important;backface-visibility:visible!important}.ui.cube.shape .side{min-width:15em;height:15em;padding:2em;background-color:#e6e6e6;color:rgba(0,0,0,.87);box-shadow:0 0 2px rgba(0,0,0,.3)}.ui.cube.shape .side>.content{width:100%;height:100%;display:table;text-align:center;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.cube.shape .side>.content>div{display:table-cell;vertical-align:middle;font-size:2em}.ui.text.shape.animating .sides{position:static}.ui.text.shape .side{white-space:nowrap}.ui.text.shape .side>*{white-space:normal}.ui.loading.shape{position:absolute;top:-9999px;left:-9999px}.ui.shape .animating.side{position:absolute;top:0;left:0;display:block;z-index:100}.ui.shape .hidden.side{opacity:.6}.ui.shape.animating .sides{position:absolute;-webkit-transition:-webkit-transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out}.ui.shape.animating .side{-webkit-transition:opacity .6s ease-in-out;transition:opacity .6s ease-in-out}.ui.shape .active.side{display:block}.ui.sidebar{position:fixed;top:0;left:0;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:none;transition:none;will-change:transform;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);visibility:hidden;-webkit-overflow-scrolling:touch;height:100%!important;max-height:100%;border-radius:0!important;margin:0!important;overflow-y:auto!important;z-index:102}.ui.sidebar>*{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:rotateZ(0);transform:rotateZ(0)}.ui.left.sidebar{right:auto;left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.sidebar{right:0!important;left:auto!important;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.bottom.sidebar,.ui.top.sidebar{width:100%!important;height:auto!important}.ui.top.sidebar{top:0!important;bottom:auto!important;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.sidebar{top:auto!important;bottom:0!important;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.pushable{height:100%;overflow-x:hidden;padding:0!important}body.pushable{background:#545454!important}.pushable:not(body){-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.pushable:not(body)>.fixed,.pushable:not(body)>.pusher:after,.pushable:not(body)>.ui.sidebar{position:absolute}.pushable>.fixed{position:fixed;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease;will-change:transform;z-index:101}body.pushable>.pusher{background:#fff}.pushable>.pusher{position:relative;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;min-height:100%;-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease;z-index:2;background:inherit}.pushable>.pusher:after{position:fixed;top:0;right:0;content:'';background-color:rgba(0,0,0,.4);overflow:hidden;opacity:0;-webkit-transition:opacity 500ms;transition:opacity 500ms;will-change:opacity;z-index:1000}.ui.sidebar.menu .item{border-radius:0!important}.pushable>.pusher.dimmed:after{width:100%!important;height:100%!important;opacity:1!important}.ui.animating.sidebar{visibility:visible}.ui.visible.sidebar{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.bottom.visible.sidebar,.ui.left.visible.sidebar,.ui.right.visible.sidebar,.ui.top.visible.sidebar{box-shadow:0 0 20px rgba(34,36,38,.15)}.ui.visible.left.sidebar~.fixed,.ui.visible.left.sidebar~.pusher{-webkit-transform:translate3d(260px,0,0);transform:translate3d(260px,0,0)}.ui.visible.right.sidebar~.fixed,.ui.visible.right.sidebar~.pusher{-webkit-transform:translate3d(-260px,0,0);transform:translate3d(-260px,0,0)}.ui.visible.top.sidebar~.fixed,.ui.visible.top.sidebar~.pusher{-webkit-transform:translate3d(0,36px,0);transform:translate3d(0,36px,0)}.ui.visible.bottom.sidebar~.fixed,.ui.visible.bottom.sidebar~.pusher{-webkit-transform:translate3d(0,-36px,0);transform:translate3d(0,-36px,0)}.ui.visible.left.sidebar~.ui.visible.right.sidebar~.fixed,.ui.visible.left.sidebar~.ui.visible.right.sidebar~.pusher,.ui.visible.right.sidebar~.ui.visible.left.sidebar~.fixed,.ui.visible.right.sidebar~.ui.visible.left.sidebar~.pusher{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}html.ios{overflow-x:hidden;-webkit-overflow-scrolling:touch}html.ios,html.ios body{height:initial!important}.ui[class*="very thin"].left.sidebar,.ui[class*="very thin"].right.sidebar{width:60px}.ui.thin.left.sidebar,.ui.thin.right.sidebar{width:150px}.ui.left.sidebar,.ui.right.sidebar{width:260px}.ui.wide.left.sidebar,.ui.wide.right.sidebar{width:350px}.ui[class*="very wide"].left.sidebar,.ui[class*="very wide"].right.sidebar{width:475px}.ui.visible[class*="very thin"].left.sidebar~.fixed,.ui.visible[class*="very thin"].left.sidebar~.pusher{-webkit-transform:translate3d(60px,0,0);transform:translate3d(60px,0,0)}.ui.visible.thin.left.sidebar~.fixed,.ui.visible.thin.left.sidebar~.pusher{-webkit-transform:translate3d(150px,0,0);transform:translate3d(150px,0,0)}.ui.visible.wide.left.sidebar~.fixed,.ui.visible.wide.left.sidebar~.pusher{-webkit-transform:translate3d(350px,0,0);transform:translate3d(350px,0,0)}.ui.visible[class*="very wide"].left.sidebar~.fixed,.ui.visible[class*="very wide"].left.sidebar~.pusher{-webkit-transform:translate3d(475px,0,0);transform:translate3d(475px,0,0)}.ui.visible[class*="very thin"].right.sidebar~.fixed,.ui.visible[class*="very thin"].right.sidebar~.pusher{-webkit-transform:translate3d(-60px,0,0);transform:translate3d(-60px,0,0)}.ui.visible.thin.right.sidebar~.fixed,.ui.visible.thin.right.sidebar~.pusher{-webkit-transform:translate3d(-150px,0,0);transform:translate3d(-150px,0,0)}.ui.visible.wide.right.sidebar~.fixed,.ui.visible.wide.right.sidebar~.pusher{-webkit-transform:translate3d(-350px,0,0);transform:translate3d(-350px,0,0)}.ui.visible[class*="very wide"].right.sidebar~.fixed,.ui.visible[class*="very wide"].right.sidebar~.pusher{-webkit-transform:translate3d(-475px,0,0);transform:translate3d(-475px,0,0)}.ui.overlay.sidebar{z-index:102}.ui.left.overlay.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.overlay.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.overlay.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.overlay.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.animating.ui.overlay.sidebar,.ui.visible.overlay.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.visible.bottom.overlay.sidebar,.ui.visible.left.overlay.sidebar,.ui.visible.right.overlay.sidebar,.ui.visible.top.overlay.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.visible.overlay.sidebar~.fixed,.ui.visible.overlay.sidebar~.pusher{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.ui.push.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease;z-index:102}.ui.left.push.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.push.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.push.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.push.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.ui.visible.push.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.uncover.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:1}.ui.visible.uncover.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.slide.along.sidebar{z-index:1}.ui.left.slide.along.sidebar{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.ui.right.slide.along.sidebar{-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0)}.ui.top.slide.along.sidebar{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.ui.bottom.slide.along.sidebar{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.ui.animating.slide.along.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.visible.slide.along.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.slide.out.sidebar{z-index:1}.ui.left.slide.out.sidebar{-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0)}.ui.right.slide.out.sidebar{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.ui.top.slide.out.sidebar{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.ui.bottom.slide.out.sidebar{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.ui.animating.slide.out.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.visible.slide.out.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.scale.down.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease;z-index:102}.ui.left.scale.down.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.scale.down.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.scale.down.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.scale.down.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.ui.scale.down.left.sidebar~.pusher{-webkit-transform-origin:75% 50%;-ms-transform-origin:75% 50%;transform-origin:75% 50%}.ui.scale.down.right.sidebar~.pusher{-webkit-transform-origin:25% 50%;-ms-transform-origin:25% 50%;transform-origin:25% 50%}.ui.scale.down.top.sidebar~.pusher{-webkit-transform-origin:50% 75%;-ms-transform-origin:50% 75%;transform-origin:50% 75%}.ui.scale.down.bottom.sidebar~.pusher{-webkit-transform-origin:50% 25%;-ms-transform-origin:50% 25%;transform-origin:50% 25%}.ui.animating.scale.down>.visible.ui.sidebar{-webkit-transition:-webkit-transform 500ms ease;transition:transform 500ms ease}.ui.animating.scale.down.sidebar~.pusher,.ui.visible.scale.down.sidebar~.pusher{display:block!important;width:100%;height:100%;overflow:hidden!important}.ui.visible.scale.down.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.visible.scale.down.sidebar~.pusher{-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.ui.sticky{position:static;-webkit-transition:none;transition:none;z-index:800}.ui.sticky.bound{position:absolute;left:auto;right:auto}.ui.sticky.fixed{position:fixed;left:auto;right:auto}.ui.sticky.bound.top,.ui.sticky.fixed.top{top:0;bottom:auto}.ui.sticky.bound.bottom,.ui.sticky.fixed.bottom{top:auto;bottom:0}.ui.native.sticky{position:-webkit-sticky;position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky}.ui.tab{display:none}.ui.tab.active,.ui.tab.open{display:block}.ui.tab.loading{position:relative;overflow:hidden;display:block;min-height:250px}.ui.tab.loading *{position:relative!important;left:-10000px!important}.ui.tab.loading.segment:before,.ui.tab.loading:before{position:absolute;content:'';top:100px;left:50%;margin:-1.25em 0 0 -1.25em;width:2.5em;height:2.5em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.tab.loading.segment:after,.ui.tab.loading:after{position:absolute;content:'';top:100px;left:50%;margin:-1.25em 0 0 -1.25em;width:2.5em;height:2.5em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.table{width:100%;background:#fff;margin:1em 0;border:1px solid rgba(34,36,38,.15);box-shadow:none;border-radius:.28571429rem;text-align:left;color:rgba(0,0,0,.87);border-collapse:separate;border-spacing:0}.ui.table:first-child{margin-top:0}.ui.table:last-child{margin-bottom:0}.ui.table td,.ui.table th{-webkit-transition:background .1s ease,color .1s ease;transition:background .1s ease,color .1s ease}.ui.table thead{box-shadow:none}.ui.table thead th{cursor:auto;background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.92857143em .71428571em;vertical-align:inherit;font-style:none;font-weight:700;text-transform:none;border-bottom:1px solid rgba(34,36,38,.1);border-left:none}.ui.table thead tr>th:first-child{border-left:none}.ui.table thead tr:first-child>th:first-child{border-radius:.28571429rem 0 0}.ui.table thead tr:first-child>th:last-child{border-radius:0 .28571429rem 0 0}.ui.table thead tr:first-child>th:only-child{border-radius:.28571429rem .28571429rem 0 0}.ui.table tfoot{box-shadow:none}.ui.table tfoot th{cursor:auto;border-top:1px solid rgba(34,36,38,.15);background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.71428571em;vertical-align:middle;font-style:normal;font-weight:400;text-transform:none}.ui.table tfoot tr>th:first-child{border-left:none}.ui.table tfoot tr:first-child>th:first-child{border-radius:0 0 0 .28571429rem}.ui.table tfoot tr:first-child>th:last-child{border-radius:0 0 .28571429rem}.ui.table tfoot tr:first-child>th:only-child{border-radius:0 0 .28571429rem .28571429rem}.ui.table tr td{border-top:1px solid rgba(34,36,38,.1)}.ui.table tr:first-child td{border-top:none}.ui.table td{padding:.71428571em;text-align:inherit}.ui.table>.icon{vertical-align:baseline}.ui.table>.icon:only-child{margin:0}.ui.table.segment{padding:0}.ui.table.segment:after{display:none}.ui.table.segment.stacked:after{display:block}@media only screen and (max-width:767px){.ui.table:not(.unstackable){width:100%;padding:0}.ui.table:not(.unstackable) tbody,.ui.table:not(.unstackable) tr,.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{width:auto!important;display:block!important}.ui.table:not(.unstackable) tfoot,.ui.table:not(.unstackable) thead{display:block}.ui.table:not(.unstackable) tr{padding-top:1em;padding-bottom:1em;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset!important}.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{background:0 0;border:none!important;padding:.25em .75em!important;box-shadow:none!important}.ui.table:not(.unstackable) td:first-child,.ui.table:not(.unstackable) th:first-child{font-weight:700}.ui.definition.table:not(.unstackable) thead th:first-child{box-shadow:none!important}}.ui.table td .image,.ui.table td .image img,.ui.table th .image,.ui.table th .image img{max-width:none}.ui.structured.table{border-collapse:collapse}.ui.structured.table thead th{border-left:none;border-right:none}.ui.structured.sortable.table thead th{border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(34,36,38,.15)}.ui.structured.basic.table th{border-left:none;border-right:none}.ui.structured.celled.table tr td,.ui.structured.celled.table tr th{border-left:1px solid rgba(34,36,38,.1);border-right:1px solid rgba(34,36,38,.1)}.ui.definition.table thead:not(.full-width) th:first-child{pointer-events:none;background:0 0;font-weight:400;color:rgba(0,0,0,.4);box-shadow:-1px -1px 0 1px #fff}.ui.definition.table tfoot:not(.full-width) th:first-child{pointer-events:none;background:0 0;font-weight:rgba(0,0,0,.4);color:normal;box-shadow:1px 1px 0 1px #fff}.ui.celled.definition.table thead:not(.full-width) th:first-child{box-shadow:0 -1px 0 1px #fff}.ui.celled.definition.table tfoot:not(.full-width) th:first-child{box-shadow:0 1px 0 1px #fff}.ui.definition.table tr td:first-child{background:rgba(0,0,0,.03);font-weight:700;color:rgba(0,0,0,.95)}.ui.definition.table td:nth-child(2),.ui.definition.table tfoot:not(.full-width) th:nth-child(2),.ui.definition.table thead:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.table td.positive,.ui.table tr.positive{box-shadow:0 0 0 #a3c293 inset;background:#fcfff5!important;color:#2c662d!important}.ui.table td.negative,.ui.table tr.negative{box-shadow:0 0 0 #e0b4b4 inset;background:#fff6f6!important;color:#9f3a38!important}.ui.table td.error,.ui.table tr.error{box-shadow:0 0 0 #e0b4b4 inset;background:#fff6f6!important;color:#9f3a38!important}.ui.table td.warning,.ui.table tr.warning{box-shadow:0 0 0 #c9ba9b inset;background:#fffaf3!important;color:#573a08!important}.ui.table td.active,.ui.table tr.active{box-shadow:0 0 0 rgba(0,0,0,.87) inset;background:#e0e0e0!important;color:rgba(0,0,0,.87)!important}.ui.table tr td.disabled,.ui.table tr.disabled td,.ui.table tr.disabled:hover,.ui.table tr:hover td.disabled{pointer-events:none;color:rgba(40,40,40,.3)}@media only screen and (max-width:991px){.ui[class*="tablet stackable"].table,.ui[class*="tablet stackable"].table tbody,.ui[class*="tablet stackable"].table tr,.ui[class*="tablet stackable"].table tr>td,.ui[class*="tablet stackable"].table tr>th{width:100%!important;display:block!important}.ui[class*="tablet stackable"].table{padding:0}.ui[class*="tablet stackable"].table tfoot,.ui[class*="tablet stackable"].table thead{display:block}.ui[class*="tablet stackable"].table tr{padding-top:1em;padding-bottom:1em;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset!important}.ui[class*="tablet stackable"].table tr>td,.ui[class*="tablet stackable"].table tr>th{background:0 0;border:none!important;padding:.25em .75em;box-shadow:none!important}.ui.definition[class*="tablet stackable"].table thead th:first-child{box-shadow:none!important}}.ui.table [class*="left aligned"],.ui.table[class*="left aligned"]{text-align:left}.ui.table [class*="center aligned"],.ui.table[class*="center aligned"]{text-align:center}.ui.table [class*="right aligned"],.ui.table[class*="right aligned"]{text-align:right}.ui.table [class*="top aligned"],.ui.table[class*="top aligned"]{vertical-align:top}.ui.table [class*="middle aligned"],.ui.table[class*="middle aligned"]{vertical-align:middle}.ui.table [class*="bottom aligned"],.ui.table[class*="bottom aligned"]{vertical-align:bottom}.ui.table td.collapsing,.ui.table th.collapsing{width:1px;white-space:nowrap}.ui.selectable.table tbody tr:hover{background:rgba(0,0,0,.05)!important;color:rgba(0,0,0,.95)!important}.ui.selectable.inverted.table tbody tr:hover{background:rgba(255,255,255,.08)!important;color:#fff!important}.ui.selectable.table tr.error:hover,.ui.selectable.table tr:hover td.error{background:#ffe7e7!important;color:#943634!important}.ui.selectable.table tr.warning:hover,.ui.selectable.table tr:hover td.warning{background:#fff4e4!important;color:#493107!important}.ui.selectable.table tr.active:hover,.ui.selectable.table tr:hover td.active{background:#e0e0e0!important;color:rgba(0,0,0,.87)!important}.ui.selectable.table tr.positive:hover,.ui.selectable.table tr:hover td.positive{background:#f7ffe6!important;color:#275b28!important}.ui.selectable.table tr.negative:hover,.ui.selectable.table tr:hover td.negative{background:#ffe7e7!important;color:#943634!important}.ui.attached.table{width:calc(100% + 2px);margin:0 -1px;border-radius:0;box-shadow:none}.ui[class*="top attached"].table{margin-top:1em;border-radius:.28571429rem .28571429rem 0 0}.ui.table[class*="top attached"]:first-child{margin-top:0}.ui.table[class*="bottom attached"]{margin-top:0;margin-bottom:1em;border-radius:0 0 .28571429rem .28571429rem}.ui.table[class*="bottom attached"]:last-child{margin-bottom:0}.ui.striped.table tbody tr:nth-child(2n),.ui.striped.table>tr:nth-child(2n){background-color:rgba(0,0,50,.02)}.ui.inverted.striped.table tbody tr:nth-child(2n),.ui.inverted.striped.table>tr:nth-child(2n){background-color:rgba(255,255,255,.05)}.ui.table [class*="single line"],.ui.table[class*="single line"]{white-space:nowrap}.ui.red.table{border-top:.2em solid #db2828}.ui.inverted.red.table{background-color:#db2828!important;color:#fff!important}.ui.orange.table{border-top:.2em solid #f2711c}.ui.inverted.orange.table{background-color:#f2711c!important;color:#fff!important}.ui.yellow.table{border-top:.2em solid #fbbd08}.ui.inverted.yellow.table{background-color:#fbbd08!important;color:#fff!important}.ui.olive.table{border-top:.2em solid #b5cc18}.ui.inverted.olive.table{background-color:#b5cc18!important;color:#fff!important}.ui.green.table{border-top:.2em solid #21ba45}.ui.inverted.green.table{background-color:#21ba45!important;color:#fff!important}.ui.teal.table{border-top:.2em solid #00b5ad}.ui.inverted.teal.table{background-color:#00b5ad!important;color:#fff!important}.ui.blue.table{border-top:.2em solid #2185d0}.ui.inverted.blue.table{background-color:#2185d0!important;color:#fff!important}.ui.violet.table{border-top:.2em solid #6435c9}.ui.inverted.violet.table{background-color:#6435c9!important;color:#fff!important}.ui.purple.table{border-top:.2em solid #a333c8}.ui.inverted.purple.table{background-color:#a333c8!important;color:#fff!important}.ui.pink.table{border-top:.2em solid #e03997}.ui.inverted.pink.table{background-color:#e03997!important;color:#fff!important}.ui.brown.table{border-top:.2em solid #a5673f}.ui.inverted.brown.table{background-color:#a5673f!important;color:#fff!important}.ui.grey.table{border-top:.2em solid #767676}.ui.inverted.grey.table{background-color:#767676!important;color:#fff!important}.ui.black.table{border-top:.2em solid #1b1c1d}.ui.inverted.black.table{background-color:#1b1c1d!important;color:#fff!important}.ui.one.column.table td{width:100%}.ui.two.column.table td{width:50%}.ui.three.column.table td{width:33.33333333%}.ui.four.column.table td{width:25%}.ui.five.column.table td{width:20%}.ui.six.column.table td{width:16.66666667%}.ui.seven.column.table td{width:14.28571429%}.ui.eight.column.table td{width:12.5%}.ui.nine.column.table td{width:11.11111111%}.ui.ten.column.table td{width:10%}.ui.eleven.column.table td{width:9.09090909%}.ui.twelve.column.table td{width:8.33333333%}.ui.thirteen.column.table td{width:7.69230769%}.ui.fourteen.column.table td{width:7.14285714%}.ui.fifteen.column.table td{width:6.66666667%}.ui.sixteen.column.table td,.ui.table td.one.wide,.ui.table th.one.wide{width:6.25%}.ui.table td.two.wide,.ui.table th.two.wide{width:12.5%}.ui.table td.three.wide,.ui.table th.three.wide{width:18.75%}.ui.table td.four.wide,.ui.table th.four.wide{width:25%}.ui.table td.five.wide,.ui.table th.five.wide{width:31.25%}.ui.table td.six.wide,.ui.table th.six.wide{width:37.5%}.ui.table td.seven.wide,.ui.table th.seven.wide{width:43.75%}.ui.table td.eight.wide,.ui.table th.eight.wide{width:50%}.ui.table td.nine.wide,.ui.table th.nine.wide{width:56.25%}.ui.table td.ten.wide,.ui.table th.ten.wide{width:62.5%}.ui.table td.eleven.wide,.ui.table th.eleven.wide{width:68.75%}.ui.table td.twelve.wide,.ui.table th.twelve.wide{width:75%}.ui.table td.thirteen.wide,.ui.table th.thirteen.wide{width:81.25%}.ui.table td.fourteen.wide,.ui.table th.fourteen.wide{width:87.5%}.ui.table td.fifteen.wide,.ui.table th.fifteen.wide{width:93.75%}.ui.table td.sixteen.wide,.ui.table th.sixteen.wide{width:100%}.ui.sortable.table thead th{cursor:pointer;white-space:nowrap;border-left:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87)}.ui.sortable.table thead th:first-child{border-left:none}.ui.sortable.table thead th.sorted,.ui.sortable.table thead th.sorted:hover{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ui.sortable.table thead th:after{display:none;font-style:normal;font-weight:400;text-decoration:inherit;content:'';height:1em;width:auto;opacity:.8;margin:0 0 0 .5em;font-family:Icons}.ui.sortable.table thead th.ascending:after{content:'\f0d8'}.ui.sortable.table thead th.descending:after{content:'\f0d7'}.ui.sortable.table th.disabled:hover{cursor:auto;color:rgba(40,40,40,.3)}.ui.sortable.table thead th:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8)}.ui.sortable.table thead th.sorted{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.sortable.table thead th.sorted:after{display:inline-block}.ui.sortable.table thead th.sorted:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.inverted.sortable.table thead th.sorted{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.15);background:linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.15);color:#fff}.ui.inverted.sortable.table thead th:hover{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.08);background:linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.08);color:#fff}.ui.inverted.sortable.table thead th{border-left-color:transparent;border-right-color:transparent}.ui.inverted.table{background:#333;color:rgba(255,255,255,.9);border:none}.ui.inverted.table th{background-color:rgba(0,0,0,.15);border-color:rgba(255,255,255,.1)!important;color:rgba(255,255,255,.9)}.ui.inverted.table tr td{border-color:rgba(255,255,255,.1)!important}.ui.inverted.table tr td.disabled,.ui.inverted.table tr.disabled td,.ui.inverted.table tr.disabled:hover td,.ui.inverted.table tr:hover td.disabled{pointer-events:none;color:rgba(225,225,225,.3)}.ui.inverted.definition.table tfoot:not(.full-width) th:first-child,.ui.inverted.definition.table thead:not(.full-width) th:first-child{background:#fff}.ui.inverted.definition.table tr td:first-child{background:rgba(255,255,255,.02);color:#fff}.ui.collapsing.table{width:auto}.ui.basic.table{background:0 0;border:1px solid rgba(34,36,38,.15);box-shadow:none}.ui.basic.table tfoot,.ui.basic.table thead{box-shadow:none}.ui.basic.table th{background:0 0;border-left:none}.ui.basic.table tbody tr{border-bottom:1px solid rgba(0,0,0,.1)}.ui.basic.table td{background:0 0}.ui.basic.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,0,.05)!important}.ui[class*="very basic"].table{border:none}.ui[class*="very basic"].table:not(.sortable):not(.striped) td,.ui[class*="very basic"].table:not(.sortable):not(.striped) th{padding:''}.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child{padding-left:0}.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child{padding-right:0}.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th{padding-top:0}.ui.celled.table tr td,.ui.celled.table tr th{border-left:1px solid rgba(34,36,38,.1)}.ui.celled.table tr td:first-child,.ui.celled.table tr th:first-child{border-left:none}.ui.padded.table th{padding-left:1em;padding-right:1em}.ui.padded.table td,.ui.padded.table th{padding:1em}.ui[class*="very padded"].table th{padding-left:1.5em;padding-right:1.5em}.ui[class*="very padded"].table td{padding:1.5em}.ui.compact.table th{padding-left:.7em;padding-right:.7em}.ui.compact.table td{padding:.5em .7em}.ui[class*="very compact"].table th{padding-left:.6em;padding-right:.6em}.ui[class*="very compact"].table td{padding:.4em .6em}.ui.small.table{font-size:.9em}.ui.table{font-size:1em}.ui.large.table{font-size:1.1em}.transition{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:300ms;animation-duration:300ms;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animating.transition{-webkit-backface-visibility:hidden;backface-visibility:hidden;visibility:visible!important}.loading.transition{position:absolute;top:-99999px;left:-99999px}.hidden.transition{display:none;visibility:hidden}.visible.transition{display:block!important;visibility:visible!important}.disabled.transition{-webkit-animation-play-state:paused;animation-play-state:paused}.looping.transition{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.transition.browse{-webkit-animation-duration:500ms;animation-duration:500ms}.transition.browse.in{-webkit-animation-name:browseIn;animation-name:browseIn}.transition.browse.left.out,.transition.browse.out{-webkit-animation-name:browseOutLeft;animation-name:browseOutLeft}.transition.browse.right.out{-webkit-animation-name:browseOutRight;animation-name:browseOutRight}@-webkit-keyframes browseIn{0%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1}10%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1;opacity:.7}80%{-webkit-transform:scale(1.05) translateZ(0);transform:scale(1.05) translateZ(0);opacity:1;z-index:999}100%{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0);z-index:999}}@keyframes browseIn{0%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1}10%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1;opacity:.7}80%{-webkit-transform:scale(1.05) translateZ(0);transform:scale(1.05) translateZ(0);opacity:1;z-index:999}100%{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0);z-index:999}}@-webkit-keyframes browseOutLeft{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:-1;-webkit-transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:-1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}@keyframes browseOutLeft{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:-1;-webkit-transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:-1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}@-webkit-keyframes browseOutRight{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:1;-webkit-transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}@keyframes browseOutRight{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:1;-webkit-transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}.drop.transition{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-duration:400ms;animation-duration:400ms;-webkit-animation-timing-function:cubic-bezier(.34,1.61,.7,1);animation-timing-function:cubic-bezier(.34,1.61,.7,1)}.drop.transition.in{-webkit-animation-name:dropIn;animation-name:dropIn}.drop.transition.out{-webkit-animation-name:dropOut;animation-name:dropOut}@-webkit-keyframes dropIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes dropIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes dropOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}@keyframes dropOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}.transition.fade.in{-webkit-animation-name:fadeIn;animation-name:fadeIn}.transition[class*="fade up"].in{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.transition[class*="fade down"].in{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.transition[class*="fade left"].in{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}.transition[class*="fade right"].in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.transition.fade.out{-webkit-animation-name:fadeOut;animation-name:fadeOut}.transition[class*="fade up"].out{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}.transition[class*="fade down"].out{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}.transition[class*="fade left"].out{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}.transition[class*="fade right"].out{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(5%);transform:translateY(5%)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(5%);transform:translateY(5%)}}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-5%);transform:translateY(-5%)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-5%);transform:translateY(-5%)}}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(5%);transform:translateX(5%)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(5%);transform:translateX(5%)}}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-5%);transform:translateX(-5%)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-5%);transform:translateX(-5%)}}.flip.transition.in,.flip.transition.out{-webkit-animation-duration:600ms;animation-duration:600ms}.horizontal.flip.transition.in{-webkit-animation-name:horizontalFlipIn;animation-name:horizontalFlipIn}.horizontal.flip.transition.out{-webkit-animation-name:horizontalFlipOut;animation-name:horizontalFlipOut}.vertical.flip.transition.in{-webkit-animation-name:verticalFlipIn;animation-name:verticalFlipIn}.vertical.flip.transition.out{-webkit-animation-name:verticalFlipOut;animation-name:verticalFlipOut}@-webkit-keyframes horizontalFlipIn{0%{-webkit-transform:perspective(2000px) rotateY(-90deg);transform:perspective(2000px) rotateY(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes horizontalFlipIn{0%{-webkit-transform:perspective(2000px) rotateY(-90deg);transform:perspective(2000px) rotateY(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}}@-webkit-keyframes verticalFlipIn{0%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}}@keyframes verticalFlipIn{0%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}}@-webkit-keyframes horizontalFlipOut{0%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateY(90deg);transform:perspective(2000px) rotateY(90deg);opacity:0}}@keyframes horizontalFlipOut{0%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateY(90deg);transform:perspective(2000px) rotateY(90deg);opacity:0}}@-webkit-keyframes verticalFlipOut{0%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}}@keyframes verticalFlipOut{0%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}}.scale.transition.in{-webkit-animation-name:scaleIn;animation-name:scaleIn}.scale.transition.out{-webkit-animation-name:scaleOut;animation-name:scaleOut}@-webkit-keyframes scaleIn{0%{opacity:0;-webkit-transform:scale(.8);transform:scale(.8)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes scaleIn{0%{opacity:0;-webkit-transform:scale(.8);transform:scale(.8)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes scaleOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}@keyframes scaleOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}.transition.fly{-webkit-animation-duration:.6s;animation-duration:.6s;-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}.transition.fly.in{-webkit-animation-name:flyIn;animation-name:flyIn}.transition[class*="fly up"].in{-webkit-animation-name:flyInUp;animation-name:flyInUp}.transition[class*="fly down"].in{-webkit-animation-name:flyInDown;animation-name:flyInDown}.transition[class*="fly left"].in{-webkit-animation-name:flyInLeft;animation-name:flyInLeft}.transition[class*="fly right"].in{-webkit-animation-name:flyInRight;animation-name:flyInRight}.transition.fly.out{-webkit-animation-name:flyOut;animation-name:flyOut}.transition[class*="fly up"].out{-webkit-animation-name:flyOutUp;animation-name:flyOutUp}.transition[class*="fly down"].out{-webkit-animation-name:flyOutDown;animation-name:flyOutDown}.transition[class*="fly left"].out{-webkit-animation-name:flyOutLeft;animation-name:flyOutLeft}.transition[class*="fly right"].out{-webkit-animation-name:flyOutRight;animation-name:flyOutRight}@-webkit-keyframes flyIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}100%{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes flyIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}100%{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@-webkit-keyframes flyInUp{0%{opacity:0;-webkit-transform:translate3d(0,1500px,0);transform:translate3d(0,1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes flyInUp{0%{opacity:0;-webkit-transform:translate3d(0,1500px,0);transform:translate3d(0,1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes flyInDown{0%{opacity:0;-webkit-transform:translate3d(0,-1500px,0);transform:translate3d(0,-1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInDown{0%{opacity:0;-webkit-transform:translate3d(0,-1500px,0);transform:translate3d(0,-1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyInLeft{0%{opacity:0;-webkit-transform:translate3d(1500px,0,0);transform:translate3d(1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInLeft{0%{opacity:0;-webkit-transform:translate3d(1500px,0,0);transform:translate3d(1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyInRight{0%{opacity:0;-webkit-transform:translate3d(-1500px,0,0);transform:translate3d(-1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInRight{0%{opacity:0;-webkit-transform:translate3d(-1500px,0,0);transform:translate3d(-1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes flyOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@-webkit-keyframes flyOutUp{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes flyOutUp{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@-webkit-keyframes flyOutDown{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes flyOutDown{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@-webkit-keyframes flyOutRight{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes flyOutRight{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@-webkit-keyframes flyOutLeft{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes flyOutLeft{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.transition.slide.in,.transition[class*="slide down"].in{-webkit-animation-name:slideInY;animation-name:slideInY;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="slide up"].in{-webkit-animation-name:slideInY;animation-name:slideInY;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="slide left"].in{-webkit-animation-name:slideInX;animation-name:slideInX;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="slide right"].in{-webkit-animation-name:slideInX;animation-name:slideInX;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}.transition.slide.out,.transition[class*="slide down"].out{-webkit-animation-name:slideOutY;animation-name:slideOutY;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="slide up"].out{-webkit-animation-name:slideOutY;animation-name:slideOutY;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="slide left"].out{-webkit-animation-name:slideOutX;animation-name:slideOutX;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="slide right"].out{-webkit-animation-name:slideOutX;animation-name:slideOutX;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}@-webkit-keyframes slideInY{0%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}100%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes slideInY{0%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}100%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}}@-webkit-keyframes slideInX{0%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}100%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes slideInX{0%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}100%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@-webkit-keyframes slideOutY{0%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}100%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@keyframes slideOutY{0%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}100%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@-webkit-keyframes slideOutX{0%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}100%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}}@keyframes slideOutX{0%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}100%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}}.transition.swing{-webkit-animation-duration:800ms;animation-duration:800ms}.transition[class*="swing down"].in{-webkit-animation-name:swingInX;animation-name:swingInX;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="swing up"].in{-webkit-animation-name:swingInX;animation-name:swingInX;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="swing left"].in{-webkit-animation-name:swingInY;animation-name:swingInY;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="swing right"].in{-webkit-animation-name:swingInY;animation-name:swingInY;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}.transition.swing.out,.transition[class*="swing down"].out{-webkit-animation-name:swingOutX;animation-name:swingOutX;-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center}.transition[class*="swing up"].out{-webkit-animation-name:swingOutX;animation-name:swingOutX;-webkit-transform-origin:bottom center;-ms-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="swing left"].out{-webkit-animation-name:swingOutY;animation-name:swingOutY;-webkit-transform-origin:center right;-ms-transform-origin:center right;transform-origin:center right}.transition[class*="swing right"].out{-webkit-animation-name:swingOutY;animation-name:swingOutY;-webkit-transform-origin:center left;-ms-transform-origin:center left;transform-origin:center left}@-webkit-keyframes swingInX{0%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateX(15deg);transform:perspective(1000px) rotateX(15deg)}80%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}100%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}}@keyframes swingInX{0%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateX(15deg);transform:perspective(1000px) rotateX(15deg)}80%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}100%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}}@-webkit-keyframes swingInY{0%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateY(-17.5deg);transform:perspective(1000px) rotateY(-17.5deg)}80%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}100%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}}@keyframes swingInY{0%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateY(-17.5deg);transform:perspective(1000px) rotateY(-17.5deg)}80%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}100%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}}@-webkit-keyframes swingOutX{0%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}40%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}60%{-webkit-transform:perspective(1000px) rotateX(17.5deg);transform:perspective(1000px) rotateX(17.5deg)}80%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}}@keyframes swingOutX{0%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}40%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}60%{-webkit-transform:perspective(1000px) rotateX(17.5deg);transform:perspective(1000px) rotateX(17.5deg)}80%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}}@-webkit-keyframes swingOutY{0%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}40%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}60%{-webkit-transform:perspective(1000px) rotateY(-10deg);transform:perspective(1000px) rotateY(-10deg)}80%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}}@keyframes swingOutY{0%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}40%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}60%{-webkit-transform:perspective(1000px) rotateY(-10deg);transform:perspective(1000px) rotateY(-10deg)}80%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}}.flash.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:flash;animation-name:flash}.shake.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:shake;animation-name:shake}.bounce.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:bounce;animation-name:bounce}.tada.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:tada;animation-name:tada}.pulse.transition{-webkit-animation-duration:500ms;animation-duration:500ms;-webkit-animation-name:pulse;animation-name:pulse}.jiggle.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:jiggle;animation-name:jiggle}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@-webkit-keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@-webkit-keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.9);transform:scale(.9);opacity:.7}}@keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.9);transform:scale(.9);opacity:.7}}@-webkit-keyframes jiggle{0%,100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}@keyframes jiggle{0%,100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}} diff --git a/static/files/index.html b/static/files/index.html index 24ac1a3ad..dca3909c4 100644 --- a/static/files/index.html +++ b/static/files/index.html @@ -8,7 +8,7 @@ -
+

@@ -23,7 +23,7 @@

-

{{err}}

-
+
- + + - + @@ -56,4 +57,4 @@

- \ No newline at end of file + diff --git a/static/files/js/config-controller.js b/static/files/js/config-controller.js new file mode 100644 index 000000000..47cce43f5 --- /dev/null +++ b/static/files/js/config-controller.js @@ -0,0 +1,12 @@ +/* globals app,window */ + +app.controller("ConfigController", function($scope, $rootScope, storage, api) { + $rootScope.config = $scope; + $scope.edit = false; + $scope.toggle = function(b) { + $scope.edit = b === undefined ? !$scope.edit : b; + }; + $scope.submitConfig = function() { + api.configure($rootScope.state.Config); + }; +}); diff --git a/static/files/js/downloads-controller.js b/static/files/js/downloads-controller.js index 1e833573f..6109b3f98 100644 --- a/static/files/js/downloads-controller.js +++ b/static/files/js/downloads-controller.js @@ -2,4 +2,42 @@ app.controller("DownloadsController", function($scope, $rootScope) { $rootScope.downloads = $scope; -}); \ No newline at end of file + + $scope.numDownloads = function() { + if($scope.state.Downloads && $scope.state.Downloads.Children) + return $scope.state.Downloads.Children.length; + return 0; + }; +}); + +app.controller("NodeController", function($scope, $rootScope, $http) { + var n = $scope.node; + var path = [n.Name]; + if($scope.$parent && $scope.$parent.$parent && $scope.$parent.$parent.node) { + var pnode = $scope.$parent.$parent.node; + path.unshift(pnode.$path); + } + n.$path = path.join("/"); + + //defaults + $scope.closed = function() { return n.$closed; }; + $scope.toggle = function() { n.$closed = !n.$closed; }; + $scope.icon = function() { + var c = ["outline","icon"]; + if($scope.isfile()) { + c.push("file"); + } else { + c.push("folder"); + } + if(!$scope.closed()) { + c.push("open"); + } + return c.join(" "); + }; + $scope.isfile = function() { return !n.Children; }; + $scope.isdir = function() { return !$scope.isfile(); }; + + $scope.remove = function() { + $http.delete("/download/" + n.$path); + }; +}); diff --git a/static/files/js/engine-controller.js b/static/files/js/engine-controller.js deleted file mode 100644 index 2781ee4b5..000000000 --- a/static/files/js/engine-controller.js +++ /dev/null @@ -1,24 +0,0 @@ -/* globals app,window */ - -app.controller("EngineController", function($scope, $rootScope, storage, api) { - $rootScope.engine = $scope; - $scope.edit = false; - $scope.id = "native"; - - $scope.submitConfig = function() { - - if(!$rootScope.data.Engines) - return; - if(!$scope.id) - return; - - var e = $rootScope.data.Engines[$scope.id]; - if(!e) - return; - - var update = {}; - update[$scope.id] = JSON.stringify(e.Config, null, 2); - - api.configure(update); - }; -}); diff --git a/static/files/js/omni-controller.js b/static/files/js/omni-controller.js index 6e3ad7786..f5f156933 100644 --- a/static/files/js/omni-controller.js +++ b/static/files/js/omni-controller.js @@ -8,14 +8,16 @@ app.controller("OmniController", function($scope, $rootScope, storage, api, sear }; //edit fields $scope.edit = false; - $scope.trackers = [{ v: "" }]; + $scope.magnet = { + trackers: [{ v: "" }] + }; $scope.providers = {}; $scope.$watch("inputs.provider", function(p) { if(p) storage.tcProvider = p; $scope.parse(); }); //if unset, set to first provider - $rootScope.$watch("data.SearchProviders", function(searchProviders) { + $rootScope.$watch("state.SearchProviders", function(searchProviders) { //remove last set if(!searchProviders) return; @@ -40,23 +42,23 @@ app.controller("OmniController", function($scope, $rootScope, storage, api, sear return; } - $scope.infohash = RegExp.$1; - $scope.name = m.dn || ""; + console.log("parse magnet", m); + + $scope.magnet.infohash = RegExp.$1; + $scope.magnet.name = m.dn || ""; //no trackers :O - if (!m.tr) - return; + if (!m.tr) m.tr = []; //force array - if (!(m.tr instanceof Array)) - m.tr = [m.tr]; + if (!(m.tr instanceof Array)) m.tr = [m.tr]; //in place map for (var i = 0; i < m.tr.length; i++) - $scope.trackers[i] = { v: m.tr[i] }; + $scope.magnet.trackers[i] = { v: m.tr[i] }; - while ($scope.trackers.length > m.tr.length) - $scope.trackers.pop(); + while ($scope.magnet.trackers.length > m.tr.length) + $scope.magnet.trackers.pop(); - $scope.trackers.push({ v: "" }); + $scope.magnet.trackers.push({ v: "" }); }; var parseSearch = function() { @@ -100,23 +102,22 @@ app.controller("OmniController", function($scope, $rootScope, storage, api, sear }).join(''); }; - $scope.stringify = function() { + $scope.parseMagnetString = function() { $scope.omnierr = null; - if (!/^[A-Za-z0-9]+$/.test($scope.infohash)) { + if (!/^[A-Za-z0-9]+$/.test($scope.magnet.infohash)) { $scope.omnierr = "Invalid Info Hash"; return; } - for (var i = 0; i < $scope.trackers.length;) - if (!$scope.trackers[i].v) - $scope.trackers.splice(i, 1); + for (var i = 0; i < $scope.magnet.trackers.length;) + if (!$scope.magnet.trackers[i].v) + $scope.magnet.trackers.splice(i, 1); else i++; - - $scope.inputs.omni = magnetURI($scope.name, $scope.infohash, $scope.trackers); - $scope.trackers.push({ v: "" }); - $scope.parse(); + console.log($scope.magnet); + $scope.inputs.omni = magnetURI($scope.magnet.name, $scope.magnet.infohash, $scope.magnet.trackers); + $scope.magnet.trackers.push({ v: "" }); }; $scope.submitOmni = function() { @@ -140,12 +141,12 @@ app.controller("OmniController", function($scope, $rootScope, storage, api, sear $scope.submitSearch = function() { //lookup provider's origin - var provider = $scope.data.SearchProviders[$scope.inputs.provider]; + var provider = $scope.state.SearchProviders[$scope.inputs.provider]; if(!provider) return; var origin = /(https?:\/\/[^\/]+)/.test(provider.url) && RegExp.$1; search.all($scope.inputs.provider, $scope.inputs.omni, $scope.page).success(function(results) { - if (results.length === 0) { + if (!results || results.length === 0) { $scope.noResults = true; $scope.hasMore = false; return; @@ -191,4 +192,4 @@ app.controller("OmniController", function($scope, $rootScope, storage, api, sear api.magnet(magnet); }); }; -}); \ No newline at end of file +}); diff --git a/static/files/js/run.js b/static/files/js/run.js index 712160b9b..56556cebc 100644 --- a/static/files/js/run.js +++ b/static/files/js/run.js @@ -5,18 +5,17 @@ app.run(function($rootScope, search, api) { var $scope = window.scope = $rootScope; - //setup realtime data - $scope.data = {}; - $scope.data.$onupdate = function() { - //TODO throttle $applys - $scope.$apply(); - }; - - var rt = window.realtime.sync($scope.data); - rt.onstatus = function(isConnected) { - $scope.connected = isConnected; - $scope.$apply(); - }; + //link up to angular + var rt = realtime("/realtime"); + $scope.state = {}; + rt.add("state", $scope.state, function() { + $scope.$apply(); + }); + rt.onstatus = function(online) { + $scope.$apply(function() { + $scope.connected = online; + }); + }; //expose services $scope.search = search; @@ -34,7 +33,7 @@ app.run(function($rootScope, search, api) { $scope.ready = function(f) { var path = typeof f === "object" ? f.path : f; - return $scope.data.uploads && $scope.data.uploads[path]; + return $scope.state.Uploads && $scope.state.Uploads[path]; }; $scope.previews = {}; @@ -43,8 +42,10 @@ app.run(function($rootScope, search, api) { }; $scope.isEmpty = function(obj) { - if(!obj) - return true; - return Object.keys(obj).length === 0; + return $scope.numKeys(obj) === 0; + }; + + $scope.numKeys = function(obj) { + return obj ? Object.keys(obj).length : 0; }; -}); \ No newline at end of file +}); diff --git a/static/files/js/semantic-checkbox.js b/static/files/js/semantic-checkbox.js index 324abe365..a9086122c 100644 --- a/static/files/js/semantic-checkbox.js +++ b/static/files/js/semantic-checkbox.js @@ -79,4 +79,4 @@ app.directive('checkbox', function() { }); } }; -}); \ No newline at end of file +}); diff --git a/static/files/js/torrents-controller.js b/static/files/js/torrents-controller.js index 027d27d3f..051bb9520 100644 --- a/static/files/js/torrents-controller.js +++ b/static/files/js/torrents-controller.js @@ -18,4 +18,4 @@ app.controller("TorrentsController", function($scope, $rootScope, api) { // $scope.downloading = function(f) { // return f.Completed > 0 && f.Completed < f.Chunks; // }; -}); \ No newline at end of file +}); diff --git a/static/files/js/utils.js b/static/files/js/utils.js index f7543c6a1..9e4cd893c 100644 --- a/static/files/js/utils.js +++ b/static/files/js/utils.js @@ -3,7 +3,7 @@ app.factory('api', function($rootScope, $http, reqerr) { window.http = $http; var request = function(action, data) { - var url = "/api/"+$rootScope.engine.id+"/"+action; + var url = "/api/"+action; $rootScope.apiing = true; return $http.post(url, data).error(reqerr).finally(function() { $rootScope.apiing = false; @@ -49,6 +49,7 @@ app.factory('storage', function() { app.factory('reqerr', function() { return function(err, status) { + alert(err); console.error("request error '%s' (%s)", err, status); }; }); diff --git a/static/files/template/config.html b/static/files/template/config.html new file mode 100644 index 000000000..a875dd619 --- /dev/null +++ b/static/files/template/config.html @@ -0,0 +1,25 @@ +
+

Configuration

+
+
+ {{ k | addspaces }} +
+
+ + +
+
+
+
+ Save +
+
+ Cancel +
+
+
diff --git a/static/files/template/download-tree.html b/static/files/template/download-tree.html new file mode 100644 index 000000000..995abddcd --- /dev/null +++ b/static/files/template/download-tree.html @@ -0,0 +1,20 @@ + + + +
+
+ {{ node.Name }} + {{ node.Name }} + + + + + +
+
{{ node.Size | bytes }}
+
+
+
+
diff --git a/static/files/template/downloads.html b/static/files/template/downloads.html index ba3753393..2caba9dec 100644 --- a/static/files/template/downloads.html +++ b/static/files/template/downloads.html @@ -1,9 +1,18 @@

Downloads

-
+

Download files above

+
+
+
+
+
+ + Downloads ng-click="previews[path] = !previews[path]" class="video play icon" ng-class="{outline: previews[path]}"> -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
- -
-
-
-

{{omnierr}}

@@ -120,4 +124,4 @@ ng-class="{loading: apiing}"> Load Torrent
-
\ No newline at end of file +
diff --git a/static/files/template/torrents.html b/static/files/template/torrents.html index 52aa82b79..3aa974a64 100644 --- a/static/files/template/torrents.html +++ b/static/files/template/torrents.html @@ -4,15 +4,15 @@

Torrents

- Downloading {{ data.filesDownloading || 0 }} files + {{ numKeys(state.Torrents) }} torrents
- -
+ +

Add torrents above

-
@@ -35,49 +35,27 @@
#{{ t.InfoHash }}
-
- -
-
- {{t.status.down | bytes}} - ({{t.status.downps | bytes}}/s) - - -
- -
- - - Stop - -
- + + {{t.Downloaded | bytes}} + ({{t.DownloadRate | bytes}}/s) + + + + + Start + + + Stop + + + Remove +
- @@ -98,20 +77,13 @@
- + {{ f.Path | filename }} - + {{ f.Path | filename }}
-
-
-
-
-
@@ -121,20 +93,27 @@
{{ f.Size | bytes }} - - + {{ f.Percent }}% +
+
+
+
+
+ + - + - {{ t.Files.length }} Files + {{ numKeys(t.Files) }} Files {{ t.Size | bytes }} Total @@ -147,4 +126,4 @@
- \ No newline at end of file +