doi
stringlengths
19
24
title
stringlengths
5
132
url
stringlengths
29
29
video_url
stringlengths
117
215
license
stringclasses
16 values
subject
stringclasses
18 values
genre
stringclasses
7 values
release_year
stringclasses
18 values
author
stringlengths
4
180
contributors
stringclasses
53 values
abstract
stringlengths
0
6.18k
transcript
stringlengths
503
65.5k
transcript_segments
dict
keyframes
dict
language
stringclasses
1 value
slides
listlengths
1
79
10.5446/30654 (DOI)
Curly - Rethinking the View Layer
https://av.tib.eu/media/30654
https://tib.flowcenter.de/mfc/medialink/3/de3c96fc2d9484a37e54de4e8170c051a10e2b0c9bca4c4320375c5c9d928d4cb32e/Curly.mp4
CC Attribution - ShareAlike 3.0 Unported: You are free to use, adapt and copy, distribute and transmit the work or content in adapted or unchanged form for any legal and non-commercial purpose as long as the work is attributed to the author in the manner specified by the author or licensor and the work or content is shared also in adapted form only under the conditions of this
Computer Science
Conference/Talk
2015
Schierbeck, Daniel
null
While most parts of Rails have been thoroughly overhauled during the past few years, one part has stubbornly refused improvement. The view layer is still by default using ERB to transform your app’s objects into HTML. While trying to solve a seemingly unrelated problem we discovered a design that suddenly enabled us to move past the limitations of ERB while still integrating closely with Rails. We could now separate presentation logic from display structure; reason about our views and how they relate; and dramatically improve our code. We called the library Curly, and it's pretty awesome.
Perfect. Thank you all for coming here to hear me speak. I'm very honored that you're all here to see me. My name is Daniel Sherpeck. I go by Dash on the Internet. You can find me on the Twitter and the Github and all that. I came all the way from Copenhagen to be here. Copenhagen is not usually like this. Usually it just rains, but I couldn't use a photo of that. That'd be sad. Okay. So, first of disclaimer, it's not going to be any JavaScript here. I'm very sorry we thought that. We'll have something that will look a bit like a mustache. So, you'll feel familiar if you're looking for JavaScript. I'm sure how many here do mainly like JavaScript front-ending? That's fucking a lot. Okay. Great. So, this is all server-side Ruby-generated views right now. It's more like classical EV stuff. So, I'll get into all that later. It just didn't want to disappoint too many people. I work at a place called Sendusk. We do customer support software. We are hosted platforms, so you'll get an email address that people can complain to, and it will give you like a nice UI so your employees can manage support requests, all that stuff. This title, Curly, you're thinking of the view layer, I'm going to get into what Curly is. Curly is an open-source project that helps you write great views. However, I feel like there's a nice story behind some of the design decisions, why Curly looks the way it does. I want to start out by sort of telling you that story, and then I'll talk about Curly and how it will make your lives a lot easier. So, it all started with how we came to build a new template language, and why we did that. It's not something that you typically set out to do. It's sort of painting the ass, and once you did that, you have to write the actual templates in that language, and what if you then decide that it was a stupid language, then you have to rewrite all your templates. So, it's something you really think long and hard about before you do it. And there were lots of options already. So, why did we do it? Well, for the last three to four years, I've been working on a product that we call Help Center. It complements the main send us functionality, which is ticket support. It's a hosted knowledge based in community site, and it integrates with sentence, but it's sort of its own product. This was version two, basically, of an older product that we had. That was also a hosted knowledge based in community site, but it had several shortcomings. And one of the big shortcomings was that it was very difficult to customize. We allowed our customers to upload a custom logo and change some background colors, but when users entered the knowledge base, it all looked sort of alike, right? And they definitely didn't look like the brand of our customers. And our customers were not happy with that, of course, so we then made the choice to allow them to inject JavaScript into their knowledge base and community site. And that worked. Like, you can do a lot of stuff with JavaScript. And they did. The added custom widgets and the added text, the removed features they didn't like, and the reordered stuff. They changed the colors of fonts, everything so that it sort of looked like their brand. It was great, and they were somewhat happy, but that implementation had some shortcomings. Mainly, when you loaded the site, we would first render the default look and feel. And then once DOM loaded, hit, a bunch of JavaScript would be rendered, like, would render everything and change everything, and things would, like, move around and jump. And it sort of felt weird. It didn't feel that professional. Another big problem was that since our customers were using JavaScript to change things, they could depend on anything. Like, they used any last name, any sort of tag name to tie in behavior and to do selectors and move stuff around. And that, in turn, meant that we couldn't really change anything about the HMO without breaking lots of customer sites. And we had tens of thousands of customers. So it was impossible for us to know what would break for whom when it made a change. And in the end, it meant that we didn't really update that site, and we just let it sort of stagnate because there was just too much pain to actually make changes. So it looks like something from, like, the early 2000s, which is sort of bad when you're trying to sell to new customers also. So we decided that for version two, among other things, we wanted to address that problem. We wanted to have a proper fix for it. And we had lots of discussions. But finally, we decided that we wanted direct support for theming and customizable templates. We wanted our customers to help define how the site should actually be rendered when we rendered things into HTML and should have them upfront, not as sort of a thing that happens after we deliver the site. So we had lots of discussions about how that feature should work, like what kind of access should people have, how much responsibility should they have. And, you know, we had, like, one extreme was that we just have a drag and drop thing, and the other extreme was that they did everything themselves. And we ended up somewhat in the middle. So the idea was that we provide a set of predefined components, and we have default templates that they can just use, and they look nice. And then the customers can go in and change all the HTML they want, as long as they don't mess with the components. So the components are just something that they can move and remove if they want to. Maybe they can have multiple instances of them, but they can't actually make changes to them. This allowed us to minimize sort of the API surface that we had to support to just those components, and it made things a bit more manageable for us. Since then, we've learned other things, and it's gotten a bit more complex, but in the beginning, that's what we wanted to do. So at that point, we had already written most of the site. It was functioning, and we had the knowledge base on the community. Everything was there. So we sat down and talked about how we wanted to actually implement it, like how should customers actually do this? We knew that we wanted to actually use HTML. We had to ask some of them, and there's no reason they shouldn't have access to the HTML itself, so otherwise, they just resorted JavaScript again. We didn't want that. So we looked at what we had, and what we had was ERB. All our views were written in ERB, and the views that we intended for the customers to customize, they were also written in ERB. So the simple thing would be to just allow customers to open a text field with the view in it, and just type ahead and save, and we would use that. And we thought of that for around 30 seconds, and then we realized that was the stupidest idea ever, and we didn't want to do that. So early on, we decided that customers should write templates. They shouldn't be programming. They're not necessarily programmers. They may be web developers, but mostly in terms of HTML and CSS, and maybe a sprinkle of JavaScript to use DHA terms. So we started looking at safe templating languages, and there are a few. We were already using Liquid in other parts of our application, so we thought about using it here, too. So there were a few reasons that's why we didn't do that. Liquid is very cool, but it's also very granular. It feels almost like a programming language. It's safe to execute, but you still have to provide very granular data structures for it to be useful. So we would have to define this huge API of nested objects that we passed the customers, and there would be functions, and there would be loops, and all this stuff that was just too powerful and too advanced for what we wanted. We wanted something that was simple and approachable. We also looked at Mustache. So Mustache, if you do JavaScript programming, you probably know Mustache or handlebars, which I think EmberJS uses. It has a very simple syntax, at least Mustache does. Handlebars has added a lot of bells and whistles, and it was actually pretty close to what we wanted. It's very declarative. There's no logic. There's no for loops. It's just simple. The main problem was that it was not well suited for Rails. There was a Ruby implementation, but that was completely decoupled from Rails. So we would have to go all in on Mustache. We were not prepared to do that. We wanted something that we could use on just the outer layer of our views, just the things that our customers should be able to customize and nothing else. There are still lots of small partials and other views that we didn't want to convert. We just wanted to keep them as it were. We also wanted something that was sort of baked into Rails and used some of the niceties of Rails, such as caching and whatnot, which also was a big deal for us. So we came up with a list of things that we wanted, but we couldn't really find any language that provided all of it. So we wanted the templates to be safe, of course, because we were running them and executing them on our service. We also wanted it to be declarative. We wanted our customers to signal their intent in terms of where they wanted to play stuff. Not the we're not supposed to construct advanced stuff. And we wanted to keep all the logic in a separate place. We didn't want to expose that to our customers. We should just decide where to put stuff, but all that advanced stuff in terms of generating, view-related output, all that stuff, conditional stuff, we wanted to keep that out of the product so we could have a symbol product and keep the complex data. And we wanted to be testable. This would be an API. We would have people who depended on it to be stable. So if we made a change and it suddenly broke something for a customer, we would get complaints and they'd be unhappy. So we wanted to have regression tests in place so we could make sure that we respected our end of that working. And we also wanted to integrate well with our existing Rails app. So we decided to build Curly. It's heavily inspired by Mustache, but it's different in some key ways. You keep all your HTML in templates and you use the Curler Bracket notation to place around components where we want them. All the logic is kept in Precenders. And Precenders are just plain Ruby classes that reside in App Precenders. Those Precenders have full access to all the things you know from your B. So you have link helpers and path helpers and form helpers. You can render partials, you can do whatever. And it can be used alongside AP and Hamel. So if you have existing fragments or partials, you can just render those directly from within Curly and the other way around. So it integrates completely into Rails. That was very important for us. This is what a pretty simple but also very typical Curly template would look like. You have your components, as we call them, which are just names surrounded by Curler brackets. And then you have your HTML. So it's very readable and very simple. And all the Precenders were placed in App Precenders. And they just normal Ruby classes that inherit from Curly Precenders. So did you all attend Aaron's keynote this morning? Yes? And he's sleeping. So in it, he talked about not knowing like the problem of not knowing which locals view it's using. So if you render a partial template in Rails, the partial may use some local variables. And it's very difficult to know up front what those are. So he talked about having to parse it self out. Actually in Curly, we decided early on that we wanted an explicit list of variables that a given template should accept. And we wanted to just crash and complain if it didn't provide that. Because we had run into issues previously where we were, like, hit by issues around that. So we decided we wanted it to be explicit. So actually it's very easy in Curly to just ask a Precenter, you know, what do we need? And you'll get a list. So here we say, well, we expect there to be an article variable pass me. I'm presenting an article. And then you can just have a number of public methods. You can see that article is available as an instance variable. It's magic. So each component maps to a public methods on the Precenter class. This is all done automatically for you. A lot of the stuff you could do manually, but Curly removes all the boilerplate and all the overhead. And it ensures that each public method there also has access to all the helpers that you need and to rendering stuff. And there's a simple naming convention where each template maps directly to a Precenter. So we were happy. We used this. It was pretty generic. But we could store our templates in the database. We had some on disk. And then if a customer wanted to customize, we would store their templates in the database. And we were able to inject some resolution mechanism into Rails, meaning that we could actually get the templates from there. But we would reuse the same Precenter. So that made things a lot easier for us because we only needed to test a lot take once. And it was safe. And it was very simple. Our customers were very happy. And we rolled it into our product. And you have an inline editor where you can go in. You can change your templates inside the product. You can preview changes. You're also allowed to edit CSS and JavaScript and all that stuff. And it was very cool. And I was very proud of it when we shipped it. And that's, I think, like two years ago, two and a half years ago. And it's been running ever since. So we were happy. And we sat back. We were proud of ourselves. We started thinking, you know what? We looked at these templates and the Precenders. And then we looked at the rest of our templates that we didn't convert because they weren't customizable. And we started to wonder, maybe this curly thing is actually more useful than we initially thought. Maybe it's not just for customization. Maybe it's something that we want to use more broadly. So just to give you an example, this is a actually simplified version of an actual ERP template that I extracted a few years ago from our app. I think it's pretty typical. It's not overly simple, but it's not hugely complex either. You could definitely go in and make changes in ERP to make it simpler. But hopefully you've all seen sort of this kind of thing. So if you look at it, how much of this is actually structured? How much is it related to the ordering of things or the, you know, HML? I can help you out here. Not a lot. Most of this is actually Ruby code. It's logic that determines how some stuff should be looking. But it's very difficult for, say, a front-end developer to go in and, you know, wrap, you know, if you're told, oh, we need to wrap the common form in a div and give it some class. Or where's the common form? Well, in curly, it's a lot easier. Because all the logic has been extracted and identified, which is just as important, you can go in, you can see what is what, where is the common form. You can rearrange it, and you can suddenly see where all the HTML is. So that's a big deal. And our front-end developers are very happy about that because it made their lives a lot easier, especially if you have, you know, big HTML pages containing a lot of markup. If you remove all the logic, all the Ruby from there, you left just the essence, just what they need. That was really cool. On the other hand, we back-end developers, because some not a very good front-end engineer, I should probably say that, we were left with Ruby classes, and we know them. They're things that we can deal in. Like, we can use private methods to clean up stuff. We can use inheritance. You can do whatever you want. This is separation of structure and logic. And it really helped us to improve the state of affairs for our entire view layer, which was pretty big. And it basically meant that we could move at a much faster pace. We could start dealing with some of the complex logic that had been trapped inside year B. You have some in year B. It's like your option is keeping it there, or maybe extraction of partial, or maybe extracting helper, but none of those options are always perfect. Now, you can just use Ruby. One of the issues that we had previously was that we sometimes reused some views in multiple controllers, and you had to remember to include the same percenter classes in each controller because the view would need it. So that was sort of annoying, like the controller needed to know what the view needed. In curly, you don't need that because you can just include a module. There's nothing magical about it. Or is it not special? They just methods inside a module. And you can use inheritance and whatnot. So that made a lot of sense in each year. So I talked about testing earlier. And testing is a big deal for us. We used RSpec, and we had used ViewTests previously. And it had been sort of a hassle. Like, how many of you do ViewTesting in your Rails apps? Yeah, a few. So hopefully some of you know sort of what I'm talking about. But it can be a hassle. Basically, what you do is you want to test some specific piece of logic. And you just want to test that it's either this or that. But you have to actually pass, you know, you have to pass all the needed variables to the view. Then you need to render it. Then you're given back this huge blob of HTML. But you're really only interested in just a slight, like a tiny part of it. So you try to, you know, use a library for portioning that HTML and getting out, you know, that specific tag that you're interested in. And you can then make an insertion of just that. And we found that to be very brittle and error-prone. Sometimes you would test something as empty and you think that you're testing the right thing. But actually, you're just selecting the wrong thing and it's always empty so your test will always pass. And it doesn't really, you know, it doesn't actually matter that you have a test. So we wanted to change that. So if you look at traditional view testing in a more graphical way, there are three parts. You have the test, you have the view, and you have a port step. And you have to go through this entire cycle. What we did in curly was we just cut out one port. We're not actually interested in testing the template itself. We're interested in testing view logic. So we just pass variables to the presender class itself when we initialize it. And then we just call methods on it. There's nothing magical about it. You can literally just call a method and you'll get back the result and you can make assertions on just that piece. So that was huge for us. And then we could much more easily maintain the API and do specific unit testing. So what we wanted to do is test a logic. We didn't want to test the structure. You can test the structure but just looking at the template and seeing the things in the right order, right? Or just opening your browser. Next up is caching. Caching is also a big deal for us. We use Russian doll saw caching. How many do you use that? Caching, I don't know. So, quite a few. Basically, we have a lot of caches and they're nested. So using the right cache keys is important for us. And typically in year B, you'd have to specify the top level, you know, cache and then the cache key do and then a bunch of stuff in there and it means that everything is like matched together in this one file and it's really difficult to test, too. So we wanted to have better support for caching and curly. And we found a pretty good way of doing it. Basically, if you have a cache key method in your presenter class, that view is going to be cached. If you return some non-nil value, you'll cache that view, the output using that cache key. So that makes it very simple. You can have much more complex logic in your cache key and you can use private methods and whatnot. It also means that you can actually start testing your cache keys. You can ascertain that if you pass in two different values for some variable, then the cache key will be different, which is actually a very nice way of testing that stuff. So what I'm getting at is sometimes it makes sense to use the best tool for the job. And there's definitely value in just having like one size fits all thing. I think that's part of the real mantra. But in this case, I feel that Markov language is actually pretty cool. Like there's a reason we don't just have a precedual thing that renders pixels on a screen in the browser, right? You send back HTML. And HTML is nice because, you know, it's Markov. You can see structure. It's very easy to identify the constituent parts. On the other hand, HTML is pretty bad for actual writing code. It's not actually possible. So you use your Ruby for that. But it feels like it makes sense to separate the two because there are different things. So it's actually fun to see Aaron's talk this morning because he went into some of the things that I've been looking at the last few years and been frustrated at. But he also talked a bit about caching views. And I'm not sure how much you know about the internals of action view. It took me a while to actually figure this stuff out. But I just want to show you basically how view rendering works and where curly fits into action view. So you probably only deal in action controller. You have a controller action and it either implicitly or explicitly renders a view. So you can pass, you know, render some name. Or you can just, like, let that name be the name of the action edit or show or something. So what action controller does is it passes that template name to action view. Action view will look around on the disk and it will try to find that appropriate template. It will load that and wrap it in an object. It will then find the appropriate template handler. Usually that's done by looking at the suffix, like dot e or dot handle, or in our case dot curly. It will then pass the template object to that handler. And the handler is actually responsible for compiling that source code into Ruby. And it will do that and it will return it back to action view as a string containing Ruby code. So what action view does is it keeps an anonymous module around containing a bunch of methods. Each method corresponds to a view. And it will take that Ruby code and it will create a new method on that object named after the view. And it will just put that source code in there and it will e-ballad and then it will call the method. And the method will actually execute the Ruby code and it will return the HTML and action view will return that back to action controller. So the next thing is that the next time action view sees that template name, it doesn't have to actually compile it. Because you can just call that method on the module. So that's what Aaron meant when he said caching of views. And this is of course only done lazily and it's done in each unicorn process if you're using this. So there are different issues but it's a pretty clever implementation of this. So I've been talking about curly for a little while. So do I think that it's just awesome that you should always use curly? Well, no. That's seldom the case. It's not an either or proposition. Curly assails us out a lot but we also tend to have some complex views. We still use ERB for a lot of cases. If you have something that's simple, you'd be great. You don't care that things that mix in a bit together. Ruby is not about being dogmatic. It's about using the best tool for the job. And if you have a two line template, there's no reason to use curly for that. Just use ERB. Or if you're in the initial stages of building something and everything's in flux, you'd be great. You only have one file. You can easily move things around. You don't need to have a pre-centered class and a template match up together. But once you read some threshold of complexity, curly is a great way to actually start thinking of things in terms of a proper API and having a proper language for defining the structure. So I definitely encourage you to have a look. As for Hamel, I've talked to several Hamel people. I see Hamel as being sort of the same as ERB. It's just from a different perspective. So in ERB, you basically put lots of Ruby code inside your HTML. And Hamel, you put a lot of HTML code inside your Ruby. But it's basically the same things in terms of, like, design. You still cut things similarly. You don't separate the structure from a logic. You just blend them in in a different way. So this has been running in production for more than two years. And other companies are also using it. A bunch of people in Brazil are using it for some reason. I don't know. So it's been a huge success. And we've open source that asks curly templates. Someone already took curly. It's a wrapper on a curl. You can just use curl, but okay. So it's called curly templates. And you can just drop it into your Rails app and it will do nothing. So it's not going to break anything. But if you then change one of your templates to be dot curly instead of dot EAB, it will use curly. And you'll have to set up a presenter and you'll extract code and boom, just that one template will use curly and you can use EAB for the rest. So it's very easy to try out and play around with. And I think it's actually pretty cool. So this was maybe a bit short. I think probably we have some time for questions if you want to. Just want to thank you again for coming. And you can go on GitHub and you actually get this. It's open source and all that. And pull across the welcome. I really hope that some people will start looking at it and maybe contributing or finding useful purposes for it. So I think we have some time for questions if anyone wants. Yeah. So the question was in our product, does the customers know sort of what's available in terms of these components? So yeah, we have a nice documentation part and we have auto-completion. So they can just type curly, curly and it'll see a list and we have descriptions and everything. So that's pretty cool. Yeah, exactly. Within the editor. We have sort of an IDE kind of thing. So the question was in this very astute observer, notice that in one case there was actually some HTML in the presenter in the form of a constant tack. And that's right. And basically I don't really care. It's not like I'm very pragmatic about that. And if you use any kind of link helper or form helper, that's basically the same thing, right? But I think, you know, you just want an API that says I'll return a blob of HTML to you and you'll actually create HTML in the presenter still. It's just this is like logic driven HTML, right? So in that case, yeah, it doesn't bother me. It's still very simple. And if you want like a very clean logic only layer, then you should create your own presenter objects or decorators outside of curly that don't know about HTML at all. The benefit of curly is that actually it knows form helpers. It knows link helpers. It knows all your paths. So you can actually do the clever view rendering stuff. It's view logic. It's not domain logic, right? Yeah. So, oh, sorry, the question was that, you know, if you want to render a collection, how do you do that? Basically, you can do it inline and curly. You can use, you know, render a collection, something, something from the presenter, which will just use a normal mechanism which is rendering a different template multiple times. So you have different options there. And you can also like do it in the method itself if you want to just return HTML. That's probably messy. Yeah. Oh, the question is, you know, what if you want to put like classes, if you're generating HTML in your presenter using say link to and you want to put like classes and stuff in there, whether that's like crossing some boundary in terms of where the frontend stuff should go. Well, I consider presenters to be the frontend also. They're just the view logic. They still view code, right? They're not back end code. They're not domain logic. And if you have stuff that sort of smells like the main logic, that should probably go into the model or something. But yeah, it depends on your citation. Like if you have frontend developers who don't mind opening Ruby classes, then I would just do that. But if you have like a strict requirement of all UI stuff being curly, you can also do that. You can just like have, you know, article path something and it returns the print path and then you just do, you know, a ref equals and do the entire thing itself if you really want that. Like we do that in some cases where we want full access. So both valid and both are supported. Cool. Thank you.
{ "avg_logprob": [ -0.2836162745952606, -0.2836162745952606, -0.2640838921070099, -0.2640838921070099, -0.2640838921070099, -0.2640838921070099, -0.27585896849632263, -0.27585896849632263, -0.27585896849632263, -0.27585896849632263, -0.23465479910373688, -0.23465479910373688, -0.23465479910373688, -0.23465479910373688, -0.15410371124744415, -0.15410371124744415, -0.15410371124744415, -0.15410371124744415, -0.17453022301197052, -0.17453022301197052, -0.17453022301197052, -0.17453022301197052, -0.17453022301197052, -0.19494783878326416, -0.19494783878326416, -0.19494783878326416, -0.19494783878326416, -0.17681600153446198, -0.17681600153446198, -0.17681600153446198, -0.17681600153446198, -0.19939713180065155, -0.19939713180065155, -0.19939713180065155, -0.19939713180065155, -0.24663914740085602, -0.24663914740085602, -0.24663914740085602, -0.24663914740085602, -0.16210328042507172, -0.16210328042507172, -0.16210328042507172, -0.16210328042507172, -0.16613654792308807, -0.16613654792308807, -0.16613654792308807, -0.16613654792308807, -0.16613654792308807, -0.1650913804769516, -0.1650913804769516, -0.1650913804769516, -0.1650913804769516, -0.20207220315933228, -0.20207220315933228, -0.20207220315933228, -0.20207220315933228, -0.1632707118988037, -0.1632707118988037, -0.1632707118988037, -0.1632707118988037, -0.112641341984272, -0.112641341984272, -0.112641341984272, -0.112641341984272, -0.112641341984272, -0.15531131625175476, -0.15531131625175476, -0.15531131625175476, -0.15531131625175476, -0.15531131625175476, -0.22617025673389435, -0.22617025673389435, -0.22617025673389435, -0.22617025673389435, -0.17257343232631683, -0.17257343232631683, -0.17257343232631683, -0.17257343232631683, -0.1500682383775711, -0.1500682383775711, -0.1500682383775711, -0.1500682383775711, -0.16407150030136108, -0.16407150030136108, -0.16407150030136108, -0.16407150030136108, -0.16407150030136108, -0.19023066759109497, -0.19023066759109497, -0.19023066759109497, -0.19023066759109497, -0.1071142703294754, -0.1071142703294754, -0.1071142703294754, -0.1071142703294754, -0.12431745231151581, -0.12431745231151581, -0.12431745231151581, -0.12431745231151581, -0.12431745231151581, -0.17878639698028564, -0.17878639698028564, -0.17878639698028564, -0.17878639698028564, -0.17878639698028564, -0.2106158286333084, -0.2106158286333084, -0.2106158286333084, -0.2106158286333084, -0.19027693569660187, -0.19027693569660187, -0.19027693569660187, -0.19027693569660187, -0.1820364147424698, -0.1820364147424698, -0.1820364147424698, -0.1820364147424698, -0.22210930287837982, -0.22210930287837982, -0.22210930287837982, -0.22210930287837982, -0.17421942949295044, -0.17421942949295044, -0.17421942949295044, -0.17421942949295044, -0.26011937856674194, -0.26011937856674194, -0.26011937856674194, -0.19436423480510712, -0.19436423480510712, -0.19436423480510712, -0.19436423480510712, -0.19436423480510712, -0.14554575085639954, -0.14554575085639954, -0.14554575085639954, -0.14554575085639954, -0.16073326766490936, -0.16073326766490936, -0.16073326766490936, -0.16073326766490936, -0.1134895533323288, -0.1134895533323288, -0.1134895533323288, -0.1134895533323288, -0.19394482672214508, -0.19394482672214508, -0.19394482672214508, -0.19394482672214508, -0.19394482672214508, -0.19183382391929626, -0.19183382391929626, -0.19183382391929626, -0.19183382391929626, -0.19183382391929626, -0.1611805558204651, -0.1611805558204651, -0.1611805558204651, -0.1611805558204651, -0.17012366652488708, -0.17012366652488708, -0.17012366652488708, -0.17012366652488708, -0.1904422491788864, -0.1904422491788864, -0.1904422491788864, -0.1904422491788864, -0.17064322531223297, -0.17064322531223297, -0.17064322531223297, -0.17064322531223297, -0.15705545246601105, -0.15705545246601105, -0.15705545246601105, -0.15705545246601105, -0.1650221347808838, -0.1650221347808838, -0.1650221347808838, -0.20493336021900177, -0.20493336021900177, -0.20493336021900177, -0.20493336021900177, -0.2058735191822052, -0.2058735191822052, -0.2058735191822052, -0.2058735191822052, -0.2058735191822052, -0.35605305433273315, -0.35605305433273315, -0.35605305433273315, -0.22721266746520996, -0.22721266746520996, -0.22721266746520996, -0.22721266746520996, -0.1838110089302063, -0.1838110089302063, -0.1838110089302063, -0.1838110089302063, -0.1838110089302063, -0.2246493250131607, -0.2246493250131607, -0.2246493250131607, -0.2246493250131607, -0.2246493250131607, -0.19491086900234222, -0.19491086900234222, -0.19491086900234222, -0.19491086900234222, -0.17831802368164062, -0.17831802368164062, -0.17831802368164062, -0.17831802368164062, -0.17831802368164062, -0.2713027596473694, -0.2713027596473694, -0.2713027596473694, -0.16371585428714752, -0.16371585428714752, -0.16371585428714752, -0.16371585428714752, -0.16371585428714752, -0.22351482510566711, -0.22351482510566711, -0.22351482510566711, -0.22351482510566711, -0.22351482510566711, -0.16020524501800537, -0.16020524501800537, -0.16020524501800537, -0.16020524501800537, -0.20581509172916412, -0.20581509172916412, -0.20581509172916412, -0.20581509172916412, -0.20581509172916412, -0.198027566075325, -0.198027566075325, -0.198027566075325, -0.198027566075325, -0.16804949939250946, -0.16804949939250946, -0.16804949939250946, -0.16804949939250946, -0.24258391559123993, -0.24258391559123993, -0.24258391559123993, -0.24258391559123993, -0.16565361618995667, -0.16565361618995667, -0.16565361618995667, -0.16565361618995667, -0.19804470241069794, -0.19804470241069794, -0.19804470241069794, -0.19804470241069794, -0.19602137804031372, -0.19602137804031372, -0.19602137804031372, -0.19602137804031372, -0.250765860080719, -0.250765860080719, -0.250765860080719, -0.250765860080719, -0.20575548708438873, -0.20575548708438873, -0.20575548708438873, -0.20575548708438873, -0.20575548708438873, -0.15853723883628845, -0.15853723883628845, -0.15853723883628845, -0.15853723883628845, -0.14633771777153015, -0.14633771777153015, -0.14633771777153015, -0.15079843997955322, -0.15079843997955322, -0.15079843997955322, -0.15079843997955322, -0.18153035640716553, -0.18153035640716553, -0.18153035640716553, -0.18153035640716553, -0.17914390563964844, -0.17914390563964844, -0.17914390563964844, -0.17914390563964844, -0.17914390563964844, -0.21728409826755524, -0.21728409826755524, -0.21728409826755524, -0.21728409826755524, -0.2222317010164261, -0.2222317010164261, -0.2222317010164261, -0.2222317010164261, -0.16135624051094055, -0.16135624051094055, -0.16135624051094055, -0.16135624051094055, -0.20631174743175507, -0.20631174743175507, -0.20631174743175507, -0.20631174743175507, -0.23056907951831818, -0.23056907951831818, -0.23056907951831818, -0.23056907951831818, -0.23056907951831818, -0.23056907951831818, -0.18309278786182404, -0.18309278786182404, -0.18309278786182404, -0.18309278786182404, -0.18309278786182404, -0.18309278786182404, -0.18433530628681183, -0.18433530628681183, -0.18433530628681183, -0.18433530628681183, -0.18433530628681183, -0.18433530628681183, -0.33012986183166504, -0.33012986183166504, -0.952838659286499 ], "compression_ratio": [ 1.2941176891326904, 1.2941176891326904, 1.5411255359649658, 1.5411255359649658, 1.5411255359649658, 1.5411255359649658, 1.4730290174484253, 1.4730290174484253, 1.4730290174484253, 1.4730290174484253, 1.5565217733383179, 1.5565217733383179, 1.5565217733383179, 1.5565217733383179, 1.54347825050354, 1.54347825050354, 1.54347825050354, 1.54347825050354, 1.7877551317214966, 1.7877551317214966, 1.7877551317214966, 1.7877551317214966, 1.7877551317214966, 1.5814977884292603, 1.5814977884292603, 1.5814977884292603, 1.5814977884292603, 1.6313364505767822, 1.6313364505767822, 1.6313364505767822, 1.6313364505767822, 1.6529680490493774, 1.6529680490493774, 1.6529680490493774, 1.6529680490493774, 1.6060606241226196, 1.6060606241226196, 1.6060606241226196, 1.6060606241226196, 1.5848214626312256, 1.5848214626312256, 1.5848214626312256, 1.5848214626312256, 1.7701148986816406, 1.7701148986816406, 1.7701148986816406, 1.7701148986816406, 1.7701148986816406, 1.6009174585342407, 1.6009174585342407, 1.6009174585342407, 1.6009174585342407, 1.6363636255264282, 1.6363636255264282, 1.6363636255264282, 1.6363636255264282, 1.6937799453735352, 1.6937799453735352, 1.6937799453735352, 1.6937799453735352, 1.7065637111663818, 1.7065637111663818, 1.7065637111663818, 1.7065637111663818, 1.7065637111663818, 1.6920151710510254, 1.6920151710510254, 1.6920151710510254, 1.6920151710510254, 1.6920151710510254, 1.6216216087341309, 1.6216216087341309, 1.6216216087341309, 1.6216216087341309, 1.6396396160125732, 1.6396396160125732, 1.6396396160125732, 1.6396396160125732, 1.540772557258606, 1.540772557258606, 1.540772557258606, 1.540772557258606, 1.7142857313156128, 1.7142857313156128, 1.7142857313156128, 1.7142857313156128, 1.7142857313156128, 1.5669642686843872, 1.5669642686843872, 1.5669642686843872, 1.5669642686843872, 1.6090909242630005, 1.6090909242630005, 1.6090909242630005, 1.6090909242630005, 1.6877470016479492, 1.6877470016479492, 1.6877470016479492, 1.6877470016479492, 1.6877470016479492, 1.7509727478027344, 1.7509727478027344, 1.7509727478027344, 1.7509727478027344, 1.7509727478027344, 1.6122448444366455, 1.6122448444366455, 1.6122448444366455, 1.6122448444366455, 1.5517241954803467, 1.5517241954803467, 1.5517241954803467, 1.5517241954803467, 1.517241358757019, 1.517241358757019, 1.517241358757019, 1.517241358757019, 1.6338027715682983, 1.6338027715682983, 1.6338027715682983, 1.6338027715682983, 1.5526316165924072, 1.5526316165924072, 1.5526316165924072, 1.5526316165924072, 1.4468084573745728, 1.4468084573745728, 1.4468084573745728, 1.614545464515686, 1.614545464515686, 1.614545464515686, 1.614545464515686, 1.614545464515686, 1.5506608486175537, 1.5506608486175537, 1.5506608486175537, 1.5506608486175537, 1.5909091234207153, 1.5909091234207153, 1.5909091234207153, 1.5909091234207153, 1.6558139324188232, 1.6558139324188232, 1.6558139324188232, 1.6558139324188232, 1.7680000066757202, 1.7680000066757202, 1.7680000066757202, 1.7680000066757202, 1.7680000066757202, 1.7105263471603394, 1.7105263471603394, 1.7105263471603394, 1.7105263471603394, 1.7105263471603394, 1.6008968353271484, 1.6008968353271484, 1.6008968353271484, 1.6008968353271484, 1.5669642686843872, 1.5669642686843872, 1.5669642686843872, 1.5669642686843872, 1.5021458864212036, 1.5021458864212036, 1.5021458864212036, 1.5021458864212036, 1.5550847053527832, 1.5550847053527832, 1.5550847053527832, 1.5550847053527832, 1.543859601020813, 1.543859601020813, 1.543859601020813, 1.543859601020813, 1.4432989358901978, 1.4432989358901978, 1.4432989358901978, 1.5973451137542725, 1.5973451137542725, 1.5973451137542725, 1.5973451137542725, 1.73828125, 1.73828125, 1.73828125, 1.73828125, 1.73828125, 1.44021737575531, 1.44021737575531, 1.44021737575531, 1.5871559381484985, 1.5871559381484985, 1.5871559381484985, 1.5871559381484985, 1.7003891468048096, 1.7003891468048096, 1.7003891468048096, 1.7003891468048096, 1.7003891468048096, 1.813008189201355, 1.813008189201355, 1.813008189201355, 1.813008189201355, 1.813008189201355, 1.6807512044906616, 1.6807512044906616, 1.6807512044906616, 1.6807512044906616, 1.6947791576385498, 1.6947791576385498, 1.6947791576385498, 1.6947791576385498, 1.6947791576385498, 1.394736886024475, 1.394736886024475, 1.394736886024475, 1.7142857313156128, 1.7142857313156128, 1.7142857313156128, 1.7142857313156128, 1.7142857313156128, 1.7786561250686646, 1.7786561250686646, 1.7786561250686646, 1.7786561250686646, 1.7786561250686646, 1.5248868465423584, 1.5248868465423584, 1.5248868465423584, 1.5248868465423584, 1.5587189197540283, 1.5587189197540283, 1.5587189197540283, 1.5587189197540283, 1.5587189197540283, 1.5892857313156128, 1.5892857313156128, 1.5892857313156128, 1.5892857313156128, 1.6857142448425293, 1.6857142448425293, 1.6857142448425293, 1.6857142448425293, 1.7307692766189575, 1.7307692766189575, 1.7307692766189575, 1.7307692766189575, 1.6666666269302368, 1.6666666269302368, 1.6666666269302368, 1.6666666269302368, 1.9111111164093018, 1.9111111164093018, 1.9111111164093018, 1.9111111164093018, 1.6199095249176025, 1.6199095249176025, 1.6199095249176025, 1.6199095249176025, 1.51260507106781, 1.51260507106781, 1.51260507106781, 1.51260507106781, 1.6858237981796265, 1.6858237981796265, 1.6858237981796265, 1.6858237981796265, 1.6858237981796265, 1.570212721824646, 1.570212721824646, 1.570212721824646, 1.570212721824646, 1.5227272510528564, 1.5227272510528564, 1.5227272510528564, 1.5746606588363647, 1.5746606588363647, 1.5746606588363647, 1.5746606588363647, 1.679425835609436, 1.679425835609436, 1.679425835609436, 1.679425835609436, 1.6759999990463257, 1.6759999990463257, 1.6759999990463257, 1.6759999990463257, 1.6759999990463257, 1.5555555820465088, 1.5555555820465088, 1.5555555820465088, 1.5555555820465088, 1.6405529975891113, 1.6405529975891113, 1.6405529975891113, 1.6405529975891113, 1.574561357498169, 1.574561357498169, 1.574561357498169, 1.574561357498169, 1.5862069129943848, 1.5862069129943848, 1.5862069129943848, 1.5862069129943848, 1.8498293161392212, 1.8498293161392212, 1.8498293161392212, 1.8498293161392212, 1.8498293161392212, 1.8498293161392212, 1.8591065406799316, 1.8591065406799316, 1.8591065406799316, 1.8591065406799316, 1.8591065406799316, 1.8591065406799316, 1.797945261001587, 1.797945261001587, 1.797945261001587, 1.797945261001587, 1.797945261001587, 1.797945261001587, 1.20652174949646, 1.20652174949646, 0.5555555820465088 ], "end": [ 21, 27.84000015258789, 34.84000015258789, 38.959999084472656, 46.040000915527344, 52.36000061035156, 56.439998626708984, 63.91999816894531, 72.36000061035156, 78.16000366210938, 84.5999984741211, 89.16000366210938, 99.23999786376953, 105.91999816894531, 114.19999694824219, 120.80000305175781, 127, 135.83999633789062, 142.27999877929688, 147.39999389648438, 150.72000122070312, 155.0399932861328, 163, 168.1999969482422, 174.8000030517578, 182.0399932861328, 189.27999877929688, 196.27999877929688, 203.32000732421875, 210.67999267578125, 217.9600067138672, 224.8000030517578, 232.75999450683594, 238.67999267578125, 245.24000549316406, 252.47999572753906, 258.6400146484375, 265.3999938964844, 272.44000244140625, 276.9200134277344, 285.5199890136719, 292.79998779296875, 299.7200012207031, 307, 313.6000061035156, 319.20001220703125, 323.79998779296875, 328.32000732421875, 334.3999938964844, 338.9599914550781, 347.4800109863281, 352.7200012207031, 358.4800109863281, 364.0799865722656, 371.2799987792969, 379.7200012207031, 384.1600036621094, 391.9599914550781, 400.5199890136719, 405.6400146484375, 411.9599914550781, 416.55999755859375, 422.3599853515625, 429, 433.32000732421875, 439.9599914550781, 443.32000732421875, 449.5199890136719, 454.79998779296875, 461.3999938964844, 465.7200012207031, 473.239990234375, 478.2799987792969, 485.4800109863281, 491.55999755859375, 497.760009765625, 506.6000061035156, 512.0800170898438, 520.5599975585938, 527.5599975585938, 535.3200073242188, 541.0399780273438, 546.0800170898438, 551.760009765625, 557.8400268554688, 563.52001953125, 567.0800170898438, 574.6799926757812, 582.760009765625, 588, 593.4000244140625, 603.5999755859375, 608.3200073242188, 614.2000122070312, 620.8400268554688, 625.4000244140625, 630.6799926757812, 636.0399780273438, 642.1599731445312, 649.8800048828125, 656.3200073242188, 662.1199951171875, 667.9600219726562, 675, 679.719970703125, 686.1199951171875, 692.6400146484375, 697.719970703125, 702.9600219726562, 711.7999877929688, 716.0399780273438, 720.9600219726562, 728.5999755859375, 734.6400146484375, 742.6799926757812, 748.8800048828125, 756.0800170898438, 760.6799926757812, 767.7999877929688, 773.9199829101562, 779.1599731445312, 786.280029296875, 793.280029296875, 798.3200073242188, 808.2000122070312, 815.0800170898438, 825.8400268554688, 833.3599853515625, 838.4000244140625, 842.9600219726562, 849.9600219726562, 854.719970703125, 860.9600219726562, 865.5999755859375, 873.3200073242188, 880.239990234375, 885.8800048828125, 895.3200073242188, 901.9600219726562, 908.239990234375, 912.8800048828125, 924.8800048828125, 932.9600219726562, 937.4400024414062, 941.7999877929688, 946.5999755859375, 951.1199951171875, 958.47998046875, 964.8400268554688, 969.3599853515625, 974.0800170898438, 979.239990234375, 985.1599731445312, 991.7999877929688, 996.2000122070312, 1003, 1008.47998046875, 1017.9600219726562, 1024.1199951171875, 1031.1600341796875, 1035.719970703125, 1042.43994140625, 1051.52001953125, 1061, 1068.3199462890625, 1074.1600341796875, 1078.4000244140625, 1087.719970703125, 1092.56005859375, 1098.52001953125, 1102.5999755859375, 1109.0799560546875, 1113.47998046875, 1120, 1126.8800048828125, 1136.280029296875, 1144.52001953125, 1152.3599853515625, 1159.9200439453125, 1166.760009765625, 1172.1199951171875, 1178.800048828125, 1186.239990234375, 1192.8800048828125, 1198.280029296875, 1204.199951171875, 1208.52001953125, 1218.0799560546875, 1226.199951171875, 1235.3599853515625, 1241.3599853515625, 1247.4000244140625, 1255.239990234375, 1260.1600341796875, 1265.52001953125, 1270.52001953125, 1275.199951171875, 1279.8800048828125, 1286.1199951171875, 1291.1199951171875, 1294.199951171875, 1298.9200439453125, 1305, 1311.9599609375, 1317.5999755859375, 1324.52001953125, 1330.719970703125, 1337.4000244140625, 1342.239990234375, 1347.3599853515625, 1356.9200439453125, 1362.6800537109375, 1366.1199951171875, 1374.47998046875, 1382.3199462890625, 1389.800048828125, 1396.8399658203125, 1401.0400390625, 1404.47998046875, 1412.199951171875, 1416.9599609375, 1422.199951171875, 1428, 1433.0799560546875, 1437.280029296875, 1443.3599853515625, 1450.5999755859375, 1460.52001953125, 1465.719970703125, 1471.8800048828125, 1477.0400390625, 1483.3199462890625, 1489.8800048828125, 1495.6800537109375, 1500.9599609375, 1510.56005859375, 1515.5999755859375, 1524.199951171875, 1528.0799560546875, 1533.8800048828125, 1542.1600341796875, 1550.1600341796875, 1554.719970703125, 1562.1199951171875, 1568.52001953125, 1575.43994140625, 1582.1600341796875, 1589.8800048828125, 1598.0400390625, 1603.8399658203125, 1609.760009765625, 1617.3199462890625, 1624, 1628.3599853515625, 1633.8800048828125, 1640.0799560546875, 1645.56005859375, 1653.8399658203125, 1659.6400146484375, 1666.8399658203125, 1673.0400390625, 1681.6800537109375, 1688.800048828125, 1694.3599853515625, 1700.9200439453125, 1704.9599609375, 1710.56005859375, 1714.719970703125, 1720.3599853515625, 1727.1199951171875, 1735.52001953125, 1741.1199951171875, 1750, 1757.52001953125, 1764.239990234375, 1770.8800048828125, 1778.43994140625, 1782.47998046875, 1788.0400390625, 1796.760009765625, 1802.0799560546875, 1807.3199462890625, 1813.6800537109375, 1819.719970703125, 1823.6800537109375, 1830.47998046875, 1834.8800048828125, 1838.9599609375, 1846.56005859375, 1851.280029296875, 1859.0400390625, 1865.1199951171875, 1871.239990234375, 1875.800048828125, 1883.199951171875, 1890.5999755859375, 1898.1199951171875, 1903.43994140625, 1909.47998046875, 1914.56005859375, 1922.43994140625, 1927.199951171875, 1934.52001953125, 1939.280029296875, 1944.6800537109375, 1950.719970703125, 1954, 1959.52001953125, 1963.9200439453125, 1968.6400146484375, 1972.56005859375, 1978.43994140625, 1982.8800048828125, 1987.6800537109375, 1993.280029296875, 1998.3199462890625, 2002.6800537109375, 2007.6400146484375, 2011.9200439453125, 2016.760009765625, 2022.6400146484375, 2026.8800048828125, 2032.52001953125, 2035.52001953125, 2054 ], "id": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324 ], "no_speech_prob": [ 0.043053317815065384, 0.043053317815065384, 0.00015498862194363028, 0.00015498862194363028, 0.00015498862194363028, 0.00015498862194363028, 0.0000158689908857923, 0.0000158689908857923, 0.0000158689908857923, 0.0000158689908857923, 0.00001268719006475294, 0.00001268719006475294, 0.00001268719006475294, 0.00001268719006475294, 0.000007418655059154844, 0.000007418655059154844, 0.000007418655059154844, 0.000007418655059154844, 0.000011489059943414759, 0.000011489059943414759, 0.000011489059943414759, 0.000011489059943414759, 0.000011489059943414759, 0.000008210980922740418, 0.000008210980922740418, 0.000008210980922740418, 0.000008210980922740418, 0.0000036834853744949214, 0.0000036834853744949214, 0.0000036834853744949214, 0.0000036834853744949214, 0.000005560511453950312, 0.000005560511453950312, 0.000005560511453950312, 0.000005560511453950312, 0.000004305592483433429, 0.000004305592483433429, 0.000004305592483433429, 0.000004305592483433429, 0.000008377063750231173, 0.000008377063750231173, 0.000008377063750231173, 0.000008377063750231173, 0.000004900668500340544, 0.000004900668500340544, 0.000004900668500340544, 0.000004900668500340544, 0.000004900668500340544, 0.00000911972347239498, 0.00000911972347239498, 0.00000911972347239498, 0.00000911972347239498, 0.000002209849071732606, 0.000002209849071732606, 0.000002209849071732606, 0.000002209849071732606, 0.000005351659183361335, 0.000005351659183361335, 0.000005351659183361335, 0.000005351659183361335, 0.00001114643964683637, 0.00001114643964683637, 0.00001114643964683637, 0.00001114643964683637, 0.00001114643964683637, 0.000004624764642358059, 0.000004624764642358059, 0.000004624764642358059, 0.000004624764642358059, 0.000004624764642358059, 0.000007022862519079354, 0.000007022862519079354, 0.000007022862519079354, 0.000007022862519079354, 0.000004553318831312936, 0.000004553318831312936, 0.000004553318831312936, 0.000004553318831312936, 0.000003791111112150247, 0.000003791111112150247, 0.000003791111112150247, 0.000003791111112150247, 0.000007504665063606808, 0.000007504665063606808, 0.000007504665063606808, 0.000007504665063606808, 0.000007504665063606808, 0.000006739071523043094, 0.000006739071523043094, 0.000006739071523043094, 0.000006739071523043094, 0.000004507128323893994, 0.000004507128323893994, 0.000004507128323893994, 0.000004507128323893994, 0.000005348608738131588, 0.000005348608738131588, 0.000005348608738131588, 0.000005348608738131588, 0.000005348608738131588, 0.000004062498646817403, 0.000004062498646817403, 0.000004062498646817403, 0.000004062498646817403, 0.000004062498646817403, 0.0000064433575062139425, 0.0000064433575062139425, 0.0000064433575062139425, 0.0000064433575062139425, 0.0000031664194466429763, 0.0000031664194466429763, 0.0000031664194466429763, 0.0000031664194466429763, 0.0000015360222960225656, 0.0000015360222960225656, 0.0000015360222960225656, 0.0000015360222960225656, 0.000005948549187451135, 0.000005948549187451135, 0.000005948549187451135, 0.000005948549187451135, 0.000004985382474842481, 0.000004985382474842481, 0.000004985382474842481, 0.000004985382474842481, 0.000005276645424601156, 0.000005276645424601156, 0.000005276645424601156, 0.000017096159353968687, 0.000017096159353968687, 0.000017096159353968687, 0.000017096159353968687, 0.000017096159353968687, 0.0000053389230743050575, 0.0000053389230743050575, 0.0000053389230743050575, 0.0000053389230743050575, 0.000004937414814776275, 0.000004937414814776275, 0.000004937414814776275, 0.000004937414814776275, 0.0000028519350507849595, 0.0000028519350507849595, 0.0000028519350507849595, 0.0000028519350507849595, 0.000006052417575119762, 0.000006052417575119762, 0.000006052417575119762, 0.000006052417575119762, 0.000006052417575119762, 0.000012078495274181478, 0.000012078495274181478, 0.000012078495274181478, 0.000012078495274181478, 0.000012078495274181478, 0.000010762083547888324, 0.000010762083547888324, 0.000010762083547888324, 0.000010762083547888324, 0.000016699241314199753, 0.000016699241314199753, 0.000016699241314199753, 0.000016699241314199753, 0.000007470692253264133, 0.000007470692253264133, 0.000007470692253264133, 0.000007470692253264133, 0.000019478007743600756, 0.000019478007743600756, 0.000019478007743600756, 0.000019478007743600756, 0.000009647992555983365, 0.000009647992555983365, 0.000009647992555983365, 0.000009647992555983365, 0.00000976198134594597, 0.00000976198134594597, 0.00000976198134594597, 0.000004845464445679681, 0.000004845464445679681, 0.000004845464445679681, 0.000004845464445679681, 0.000005158558451512363, 0.000005158558451512363, 0.000005158558451512363, 0.000005158558451512363, 0.000005158558451512363, 0.0000034307952319068136, 0.0000034307952319068136, 0.0000034307952319068136, 0.000005160542968951631, 0.000005160542968951631, 0.000005160542968951631, 0.000005160542968951631, 0.0000053134854169911705, 0.0000053134854169911705, 0.0000053134854169911705, 0.0000053134854169911705, 0.0000053134854169911705, 0.000003483270347715006, 0.000003483270347715006, 0.000003483270347715006, 0.000003483270347715006, 0.000003483270347715006, 0.000003940448550565634, 0.000003940448550565634, 0.000003940448550565634, 0.000003940448550565634, 0.000003359884885867359, 0.000003359884885867359, 0.000003359884885867359, 0.000003359884885867359, 0.000003359884885867359, 0.000009251798473997042, 0.000009251798473997042, 0.000009251798473997042, 0.000004385059128253488, 0.000004385059128253488, 0.000004385059128253488, 0.000004385059128253488, 0.000004385059128253488, 0.000003143783715131576, 0.000003143783715131576, 0.000003143783715131576, 0.000003143783715131576, 0.000003143783715131576, 0.0000030500723369186744, 0.0000030500723369186744, 0.0000030500723369186744, 0.0000030500723369186744, 0.0000046034906517888885, 0.0000046034906517888885, 0.0000046034906517888885, 0.0000046034906517888885, 0.0000046034906517888885, 0.00000884033852344146, 0.00000884033852344146, 0.00000884033852344146, 0.00000884033852344146, 0.000005629811312246602, 0.000005629811312246602, 0.000005629811312246602, 0.000005629811312246602, 0.0000035342072806088254, 0.0000035342072806088254, 0.0000035342072806088254, 0.0000035342072806088254, 0.0000013969836345495423, 0.0000013969836345495423, 0.0000013969836345495423, 0.0000013969836345495423, 0.000006846315955044702, 0.000006846315955044702, 0.000006846315955044702, 0.000006846315955044702, 0.000005156095994607313, 0.000005156095994607313, 0.000005156095994607313, 0.000005156095994607313, 0.000004130987690587062, 0.000004130987690587062, 0.000004130987690587062, 0.000004130987690587062, 0.000011048076885344926, 0.000011048076885344926, 0.000011048076885344926, 0.000011048076885344926, 0.000011048076885344926, 0.000005496915946423542, 0.000005496915946423542, 0.000005496915946423542, 0.000005496915946423542, 0.000003555397142918082, 0.000003555397142918082, 0.000003555397142918082, 0.00000305901926367369, 0.00000305901926367369, 0.00000305901926367369, 0.00000305901926367369, 0.000013353102076507639, 0.000013353102076507639, 0.000013353102076507639, 0.000013353102076507639, 0.000013780003428109922, 0.000013780003428109922, 0.000013780003428109922, 0.000013780003428109922, 0.000013780003428109922, 0.000019105744286207482, 0.000019105744286207482, 0.000019105744286207482, 0.000019105744286207482, 0.000008154467650456354, 0.000008154467650456354, 0.000008154467650456354, 0.000008154467650456354, 0.00001051245544658741, 0.00001051245544658741, 0.00001051245544658741, 0.00001051245544658741, 0.000001970101720871753, 0.000001970101720871753, 0.000001970101720871753, 0.000001970101720871753, 0.000008166423867805861, 0.000008166423867805861, 0.000008166423867805861, 0.000008166423867805861, 0.000008166423867805861, 0.000008166423867805861, 0.0000020026361653435742, 0.0000020026361653435742, 0.0000020026361653435742, 0.0000020026361653435742, 0.0000020026361653435742, 0.0000020026361653435742, 0.00000362833566214249, 0.00000362833566214249, 0.00000362833566214249, 0.00000362833566214249, 0.00000362833566214249, 0.00000362833566214249, 0.000016868589227669872, 0.000016868589227669872, 0.00016602707910351455 ], "seek": [ 0, 0, 2784, 2784, 2784, 2784, 5236, 5236, 5236, 5236, 7816, 7816, 7816, 7816, 10592, 10592, 10592, 10592, 13584, 13584, 13584, 13584, 13584, 16300, 16300, 16300, 16300, 18928, 18928, 18928, 18928, 21796, 21796, 21796, 21796, 24524, 24524, 24524, 24524, 27244, 27244, 27244, 27244, 29972, 29972, 29972, 29972, 29972, 32832, 32832, 32832, 32832, 35272, 35272, 35272, 35272, 37972, 37972, 37972, 37972, 40564, 40564, 40564, 40564, 40564, 43332, 43332, 43332, 43332, 43332, 46140, 46140, 46140, 46140, 48548, 48548, 48548, 48548, 51208, 51208, 51208, 51208, 54104, 54104, 54104, 54104, 54104, 56708, 56708, 56708, 56708, 59340, 59340, 59340, 59340, 62084, 62084, 62084, 62084, 62084, 64988, 64988, 64988, 64988, 64988, 67972, 67972, 67972, 67972, 70296, 70296, 70296, 70296, 72860, 72860, 72860, 72860, 75608, 75608, 75608, 75608, 77916, 77916, 77916, 77916, 80820, 80820, 80820, 83336, 83336, 83336, 83336, 83336, 86096, 86096, 86096, 86096, 88588, 88588, 88588, 88588, 91288, 91288, 91288, 91288, 94180, 94180, 94180, 94180, 94180, 96936, 96936, 96936, 96936, 96936, 99620, 99620, 99620, 99620, 102412, 102412, 102412, 102412, 105152, 105152, 105152, 105152, 107840, 107840, 107840, 107840, 110260, 110260, 110260, 110260, 112688, 112688, 112688, 115236, 115236, 115236, 115236, 117880, 117880, 117880, 117880, 117880, 120852, 120852, 120852, 123536, 123536, 123536, 123536, 126016, 126016, 126016, 126016, 126016, 128612, 128612, 128612, 128612, 128612, 131196, 131196, 131196, 131196, 133740, 133740, 133740, 133740, 133740, 136612, 136612, 136612, 138980, 138980, 138980, 138980, 138980, 141696, 141696, 141696, 141696, 141696, 144336, 144336, 144336, 144336, 147188, 147188, 147188, 147188, 147188, 150096, 150096, 150096, 150096, 152808, 152808, 152808, 152808, 155472, 155472, 155472, 155472, 158216, 158216, 158216, 158216, 160976, 160976, 160976, 160976, 163388, 163388, 163388, 163388, 165964, 165964, 165964, 165964, 168880, 168880, 168880, 168880, 168880, 171472, 171472, 171472, 171472, 174112, 174112, 174112, 176424, 176424, 176424, 176424, 178804, 178804, 178804, 178804, 181368, 181368, 181368, 181368, 181368, 183896, 183896, 183896, 183896, 186512, 186512, 186512, 186512, 189060, 189060, 189060, 189060, 191456, 191456, 191456, 191456, 193928, 193928, 193928, 193928, 193928, 193928, 196864, 196864, 196864, 196864, 196864, 196864, 199832, 199832, 199832, 199832, 199832, 199832, 202688, 202688, 203552 ], "start": [ 0, 21, 27.84000015258789, 34.84000015258789, 38.959999084472656, 46.040000915527344, 52.36000061035156, 56.439998626708984, 63.91999816894531, 72.36000061035156, 78.16000366210938, 84.5999984741211, 89.16000366210938, 99.23999786376953, 105.91999816894531, 114.19999694824219, 120.80000305175781, 127, 135.83999633789062, 142.27999877929688, 147.39999389648438, 150.72000122070312, 155.0399932861328, 163, 168.1999969482422, 174.8000030517578, 182.0399932861328, 189.27999877929688, 196.27999877929688, 203.32000732421875, 210.67999267578125, 217.9600067138672, 224.8000030517578, 232.75999450683594, 238.67999267578125, 245.24000549316406, 252.47999572753906, 258.6400146484375, 265.3999938964844, 272.44000244140625, 276.9200134277344, 285.5199890136719, 292.79998779296875, 299.7200012207031, 307, 313.6000061035156, 319.20001220703125, 323.79998779296875, 328.32000732421875, 334.3999938964844, 338.9599914550781, 347.4800109863281, 352.7200012207031, 358.4800109863281, 364.0799865722656, 371.2799987792969, 379.7200012207031, 384.1600036621094, 391.9599914550781, 400.5199890136719, 405.6400146484375, 411.9599914550781, 416.55999755859375, 422.3599853515625, 429, 433.32000732421875, 439.9599914550781, 443.32000732421875, 449.5199890136719, 454.79998779296875, 461.3999938964844, 465.7200012207031, 473.239990234375, 478.2799987792969, 485.4800109863281, 491.55999755859375, 497.760009765625, 506.6000061035156, 512.0800170898438, 520.5599975585938, 527.5599975585938, 535.3200073242188, 541.0399780273438, 546.0800170898438, 551.760009765625, 557.8400268554688, 563.52001953125, 567.0800170898438, 574.6799926757812, 582.760009765625, 588, 593.4000244140625, 603.5999755859375, 608.3200073242188, 614.2000122070312, 620.8400268554688, 625.4000244140625, 630.6799926757812, 636.0399780273438, 642.1599731445312, 649.8800048828125, 656.3200073242188, 662.1199951171875, 667.9600219726562, 675, 679.719970703125, 686.1199951171875, 692.6400146484375, 697.719970703125, 702.9600219726562, 711.7999877929688, 716.0399780273438, 720.9600219726562, 728.5999755859375, 734.6400146484375, 742.6799926757812, 748.8800048828125, 756.0800170898438, 760.6799926757812, 767.7999877929688, 773.9199829101562, 779.1599731445312, 786.280029296875, 793.280029296875, 798.3200073242188, 808.2000122070312, 815.0800170898438, 825.8400268554688, 833.3599853515625, 838.4000244140625, 842.9600219726562, 849.9600219726562, 854.719970703125, 860.9600219726562, 865.5999755859375, 873.3200073242188, 880.239990234375, 885.8800048828125, 895.3200073242188, 901.9600219726562, 908.239990234375, 912.8800048828125, 924.8800048828125, 932.9600219726562, 937.4400024414062, 941.7999877929688, 946.5999755859375, 951.1199951171875, 958.47998046875, 964.8400268554688, 969.3599853515625, 974.0800170898438, 979.239990234375, 985.1599731445312, 991.7999877929688, 996.2000122070312, 1003, 1008.47998046875, 1017.9600219726562, 1024.1199951171875, 1031.1600341796875, 1035.719970703125, 1042.43994140625, 1051.52001953125, 1061, 1068.3199462890625, 1074.1600341796875, 1078.4000244140625, 1087.719970703125, 1092.56005859375, 1098.52001953125, 1102.5999755859375, 1109.0799560546875, 1113.47998046875, 1120, 1126.8800048828125, 1136.280029296875, 1144.52001953125, 1152.3599853515625, 1159.9200439453125, 1166.760009765625, 1172.1199951171875, 1178.800048828125, 1186.239990234375, 1192.8800048828125, 1198.280029296875, 1204.199951171875, 1208.52001953125, 1218.0799560546875, 1226.199951171875, 1235.3599853515625, 1241.3599853515625, 1247.4000244140625, 1255.239990234375, 1260.1600341796875, 1265.52001953125, 1270.52001953125, 1275.199951171875, 1279.8800048828125, 1286.1199951171875, 1291.1199951171875, 1294.199951171875, 1298.9200439453125, 1305, 1311.9599609375, 1317.5999755859375, 1324.52001953125, 1330.719970703125, 1337.4000244140625, 1342.239990234375, 1347.3599853515625, 1356.9200439453125, 1362.6800537109375, 1366.1199951171875, 1374.47998046875, 1382.3199462890625, 1389.800048828125, 1396.8399658203125, 1401.0400390625, 1404.47998046875, 1412.199951171875, 1416.9599609375, 1422.199951171875, 1428, 1433.0799560546875, 1437.280029296875, 1443.3599853515625, 1450.5999755859375, 1460.52001953125, 1465.719970703125, 1471.8800048828125, 1477.0400390625, 1483.3199462890625, 1489.8800048828125, 1495.6800537109375, 1500.9599609375, 1510.56005859375, 1515.5999755859375, 1524.199951171875, 1528.0799560546875, 1533.8800048828125, 1542.1600341796875, 1550.1600341796875, 1554.719970703125, 1562.1199951171875, 1568.52001953125, 1575.43994140625, 1582.1600341796875, 1589.8800048828125, 1598.0400390625, 1603.8399658203125, 1609.760009765625, 1617.3199462890625, 1624, 1628.3599853515625, 1633.8800048828125, 1640.0799560546875, 1645.56005859375, 1653.8399658203125, 1659.6400146484375, 1666.8399658203125, 1673.0400390625, 1681.6800537109375, 1688.800048828125, 1694.3599853515625, 1700.9200439453125, 1704.9599609375, 1710.56005859375, 1714.719970703125, 1720.3599853515625, 1727.1199951171875, 1735.52001953125, 1741.1199951171875, 1750, 1757.52001953125, 1764.239990234375, 1770.8800048828125, 1778.43994140625, 1782.47998046875, 1788.0400390625, 1796.760009765625, 1802.0799560546875, 1807.3199462890625, 1813.6800537109375, 1819.719970703125, 1823.6800537109375, 1830.47998046875, 1834.8800048828125, 1838.9599609375, 1846.56005859375, 1851.280029296875, 1859.0400390625, 1865.1199951171875, 1871.239990234375, 1875.800048828125, 1883.199951171875, 1890.5999755859375, 1898.1199951171875, 1903.43994140625, 1909.47998046875, 1914.56005859375, 1922.43994140625, 1927.199951171875, 1934.52001953125, 1939.280029296875, 1944.6800537109375, 1950.719970703125, 1954, 1959.52001953125, 1963.9200439453125, 1968.6400146484375, 1972.56005859375, 1978.43994140625, 1982.8800048828125, 1987.6800537109375, 1993.280029296875, 1998.3199462890625, 2002.6800537109375, 2007.6400146484375, 2011.9200439453125, 2016.760009765625, 2022.6400146484375, 2026.8800048828125, 2032.52001953125, 2035.52001953125 ], "temperature": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "text": [ " Perfect. Thank you all for coming here to hear me speak. I'm very honored that you're", " all here to see me. My name is Daniel Sherpeck. I go by Dash on the Internet. You can find", " me on the Twitter and the Github and all that. I came all the way from Copenhagen to be here.", " Copenhagen is not usually like this. Usually it just rains, but I couldn't use a photo", " of that. That'd be sad. Okay. So, first of disclaimer, it's not going to be any JavaScript", " here. I'm very sorry we thought that. We'll have something that will look a bit like", " a mustache. So, you'll feel familiar if you're looking for JavaScript. I'm sure how many", " here do mainly like JavaScript front-ending? That's fucking a lot. Okay. Great. So, this", " is all server-side Ruby-generated views right now. It's more like classical EV stuff. So,", " I'll get into all that later. It just didn't want to disappoint too many people. I work", " at a place called Sendusk. We do customer support software. We are hosted platforms,", " so you'll get an email address that people can complain to, and it will give you like", " a nice UI so your employees can manage support requests, all that stuff. This title, Curly,", " you're thinking of the view layer, I'm going to get into what Curly is. Curly is an open-source", " project that helps you write great views. However, I feel like there's a nice story", " behind some of the design decisions, why Curly looks the way it does. I want to start out", " by sort of telling you that story, and then I'll talk about Curly and how it will make", " your lives a lot easier. So, it all started with how we came to build a new template language,", " and why we did that. It's not something that you typically set out to do. It's sort of", " painting the ass, and once you did that, you have to write the actual templates in that", " language, and what if you then decide that it was a stupid language, then you have to", " rewrite all your templates. So, it's something you really think long and hard about before", " you do it. And there were lots of options already. So, why did we do it? Well, for the", " last three to four years, I've been working on a product that we call Help Center. It", " complements the main send us functionality, which is ticket support. It's a hosted knowledge", " based in community site, and it integrates with sentence, but it's sort of its own product.", " This was version two, basically, of an older product that we had. That was also a hosted", " knowledge based in community site, but it had several shortcomings. And one of the big", " shortcomings was that it was very difficult to customize. We allowed our customers to", " upload a custom logo and change some background colors, but when users entered the knowledge", " base, it all looked sort of alike, right? And they definitely didn't look like the brand", " of our customers. And our customers were not happy with that, of course, so we then made", " the choice to allow them to inject JavaScript into their knowledge base and community site.", " And that worked. Like, you can do a lot of stuff with JavaScript. And they did. The added", " custom widgets and the added text, the removed features they didn't like, and the reordered", " stuff. They changed the colors of fonts, everything so that it sort of looked like their brand.", " It was great, and they were somewhat happy, but that implementation had some shortcomings.", " Mainly, when you loaded the site, we would first render the default look and feel. And", " then once DOM loaded, hit, a bunch of JavaScript would be rendered, like, would render everything", " and change everything, and things would, like, move around and jump. And it sort of felt", " weird. It didn't feel that professional. Another big problem was that since our customers", " were using JavaScript to change things, they could depend on anything. Like, they used", " any last name, any sort of tag name to tie in behavior and to do selectors and move stuff", " around. And that, in turn, meant that we couldn't really change anything about the HMO without", " breaking lots of customer sites. And we had tens of thousands of customers. So it was impossible", " for us to know what would break for whom when it made a change. And in the end, it meant", " that we didn't really update that site, and we just let it sort of stagnate because there", " was just too much pain to actually make changes. So it looks like something from, like, the", " early 2000s, which is sort of bad when you're trying to sell to new customers also. So we", " decided that for version two, among other things, we wanted to address that problem.", " We wanted to have a proper fix for it. And we had lots of discussions. But finally, we", " decided that we wanted direct support for theming and customizable templates. We wanted", " our customers to help define how the site should actually be rendered when we rendered things", " into HTML and should have them upfront, not as sort of a thing that happens after we deliver", " the site. So we had lots of discussions about how that feature should work, like what kind", " of access should people have, how much responsibility should they have. And, you know, we had, like,", " one extreme was that we just have a drag and drop thing, and the other extreme was that", " they did everything themselves. And we ended up somewhat in the middle. So the idea was", " that we provide a set of predefined components, and we have default templates that they can", " just use, and they look nice. And then the customers can go in and change all the HTML", " they want, as long as they don't mess with the components. So the components are just", " something that they can move and remove if they want to. Maybe they can have multiple", " instances of them, but they can't actually make changes to them. This allowed us to minimize", " sort of the API surface that we had to support to just those components, and it made things", " a bit more manageable for us. Since then, we've learned other things, and it's gotten", " a bit more complex, but in the beginning, that's what we wanted to do. So at that point,", " we had already written most of the site. It was functioning, and we had the knowledge", " base on the community. Everything was there. So we sat down and talked about how we wanted", " to actually implement it, like how should customers actually do this? We knew that we", " wanted to actually use HTML. We had to ask some of them, and there's no reason they shouldn't", " have access to the HTML itself, so otherwise, they just resorted JavaScript again. We didn't", " want that. So we looked at what we had, and what we had was ERB. All our views were written", " in ERB, and the views that we intended for the customers to customize, they were also", " written in ERB. So the simple thing would be to just allow customers to open a text field", " with the view in it, and just type ahead and save, and we would use that. And we thought", " of that for around 30 seconds, and then we realized that was the stupidest idea ever,", " and we didn't want to do that. So early on, we decided that customers should write templates.", " They shouldn't be programming. They're not necessarily programmers. They may be web developers,", " but mostly in terms of HTML and CSS, and maybe a sprinkle of JavaScript to use DHA terms.", " So we started looking at safe templating languages, and there are a few. We were already using", " Liquid in other parts of our application, so we thought about using it here, too. So", " there were a few reasons that's why we didn't do that. Liquid is very cool, but it's also", " very granular. It feels almost like a programming language. It's safe to execute, but you still", " have to provide very granular data structures for it to be useful. So we would have to define", " this huge API of nested objects that we passed the customers, and there would be functions,", " and there would be loops, and all this stuff that was just too powerful and too advanced", " for what we wanted. We wanted something that was simple and approachable.", " We also looked at Mustache. So Mustache, if you do JavaScript programming, you probably", " know Mustache or handlebars, which I think EmberJS uses. It has a very simple syntax,", " at least Mustache does. Handlebars has added a lot of bells and whistles, and it was actually", " pretty close to what we wanted. It's very declarative. There's no logic. There's no", " for loops. It's just simple. The main problem was that it was not well suited for Rails.", " There was a Ruby implementation, but that was completely decoupled from Rails. So we", " would have to go all in on Mustache. We were not prepared to do that. We wanted something", " that we could use on just the outer layer of our views, just the things that our customers", " should be able to customize and nothing else. There are still lots of small partials and", " other views that we didn't want to convert. We just wanted to keep them as it were. We", " also wanted something that was sort of baked into Rails and used some of the niceties of", " Rails, such as caching and whatnot, which also was a big deal for us.", " So we came up with a list of things that we wanted, but we couldn't really find any language", " that provided all of it. So we wanted the templates to be safe, of course, because we", " were running them and executing them on our service. We also wanted it to be declarative.", " We wanted our customers to signal their intent in terms of where they wanted to play stuff.", " Not the we're not supposed to construct advanced stuff. And we wanted to keep all the logic", " in a separate place. We didn't want to expose that to our customers. We should just decide", " where to put stuff, but all that advanced stuff in terms of generating, view-related", " output, all that stuff, conditional stuff, we wanted to keep that out of the product", " so we could have a symbol product and keep the complex data.", " And we wanted to be testable. This would be an API. We would have people who depended", " on it to be stable. So if we made a change and it suddenly broke something for a customer,", " we would get complaints and they'd be unhappy. So we wanted to have regression tests in place", " so we could make sure that we respected our end of that working.", " And we also wanted to integrate well with our existing Rails app.", " So we decided to build Curly. It's heavily inspired by Mustache, but it's different", " in some key ways. You keep all your HTML in templates and you use the Curler Bracket notation", " to place around components where we want them. All the logic is kept in Precenders. And", " Precenders are just plain Ruby classes that reside in App Precenders. Those Precenders", " have full access to all the things you know from your B. So you have link helpers and", " path helpers and form helpers. You can render partials, you can do whatever. And it can", " be used alongside AP and Hamel. So if you have existing fragments or partials, you", " can just render those directly from within Curly and the other way around. So it integrates", " completely into Rails. That was very important for us. This is what a pretty simple but also", " very typical Curly template would look like. You have your components, as we call them,", " which are just names surrounded by Curler brackets. And then you have your HTML. So it's", " very readable and very simple. And all the Precenders were placed in App Precenders.", " And they just normal Ruby classes that inherit from Curly Precenders. So did you all attend", " Aaron's keynote this morning? Yes? And he's sleeping. So in it, he talked about not knowing", " like the problem of not knowing which locals view it's using. So if you render a partial", " template in Rails, the partial may use some local variables. And it's very difficult to", " know up front what those are. So he talked about having to parse it self out. Actually", " in Curly, we decided early on that we wanted an explicit list of variables that a given", " template should accept. And we wanted to just crash and complain if it didn't provide that.", " Because we had run into issues previously where we were, like, hit by issues around that.", " So we decided we wanted it to be explicit. So actually it's very easy in Curly to just", " ask a Precenter, you know, what do we need? And you'll get a list. So here we say, well,", " we expect there to be an article variable pass me. I'm presenting an article. And then", " you can just have a number of public methods. You can see that article is available as an", " instance variable. It's magic. So each component maps to a public methods on the Precenter", " class. This is all done automatically for you. A lot of the stuff you could do manually,", " but Curly removes all the boilerplate and all the overhead. And it ensures that each", " public method there also has access to all the helpers that you need and to rendering", " stuff. And there's a simple naming convention where each template maps directly to a Precenter.", " So we were happy. We used this. It was pretty generic. But we could store our templates", " in the database. We had some on disk. And then if a customer wanted to customize, we", " would store their templates in the database. And we were able to inject some resolution", " mechanism into Rails, meaning that we could actually get the templates from there. But", " we would reuse the same Precenter. So that made things a lot easier for us because we", " only needed to test a lot take once. And it was safe. And it was very simple. Our customers", " were very happy. And we rolled it into our product. And you have an inline editor where", " you can go in. You can change your templates inside the product. You can preview changes.", " You're also allowed to edit CSS and JavaScript and all that stuff. And it was very cool.", " And I was very proud of it when we shipped it. And that's, I think, like two years ago,", " two and a half years ago. And it's been running ever since. So we were happy. And we sat back.", " We were proud of ourselves. We started thinking, you know what? We looked at these templates", " and the Precenders. And then we looked at the rest of our templates that we didn't convert", " because they weren't customizable. And we started to wonder, maybe this curly thing is actually", " more useful than we initially thought. Maybe it's not just for customization. Maybe it's", " something that we want to use more broadly. So just to give you an example, this is a", " actually simplified version of an actual ERP template that I extracted a few years ago", " from our app. I think it's pretty typical. It's not overly simple, but it's not hugely", " complex either. You could definitely go in and make changes in ERP to make it simpler.", " But hopefully you've all seen sort of this kind of thing. So if you look at it, how much", " of this is actually structured? How much is it related to the ordering of things or the,", " you know, HML? I can help you out here. Not a lot. Most of this is actually Ruby code.", " It's logic that determines how some stuff should be looking. But it's very difficult", " for, say, a front-end developer to go in and, you know, wrap, you know, if you're told,", " oh, we need to wrap the common form in a div and give it some class. Or where's the common", " form? Well, in curly, it's a lot easier. Because all the logic has been extracted and identified,", " which is just as important, you can go in, you can see what is what, where is the common", " form. You can rearrange it, and you can suddenly see where all the HTML is. So that's a big", " deal. And our front-end developers are very happy about that because it made their lives", " a lot easier, especially if you have, you know, big HTML pages containing a lot of markup.", " If you remove all the logic, all the Ruby from there, you left just the essence, just", " what they need. That was really cool. On the other hand, we back-end developers, because", " some not a very good front-end engineer, I should probably say that, we were left with", " Ruby classes, and we know them. They're things that we can deal in. Like, we can use private", " methods to clean up stuff. We can use inheritance. You can do whatever you want. This is separation", " of structure and logic. And it really helped us to improve the state of affairs for our", " entire view layer, which was pretty big. And it basically meant that we could move at a", " much faster pace. We could start dealing with some of the complex logic that had been trapped", " inside year B. You have some in year B. It's like your option is keeping it there, or maybe", " extraction of partial, or maybe extracting helper, but none of those options are always", " perfect. Now, you can just use Ruby. One of the issues that we had previously was that", " we sometimes reused some views in multiple controllers, and you had to remember to include", " the same percenter classes in each controller because the view would need it. So that was", " sort of annoying, like the controller needed to know what the view needed. In curly, you", " don't need that because you can just include a module. There's nothing magical about it.", " Or is it not special? They just methods inside a module. And you can use inheritance and", " whatnot. So that made a lot of sense in each year. So I talked about testing earlier. And", " testing is a big deal for us. We used RSpec, and we had used ViewTests previously. And", " it had been sort of a hassle. Like, how many of you do ViewTesting in your Rails apps?", " Yeah, a few. So hopefully some of you know sort of what I'm talking about. But it can", " be a hassle. Basically, what you do is you want to test some specific piece of logic.", " And you just want to test that it's either this or that. But you have to actually pass,", " you know, you have to pass all the needed variables to the view. Then you need to render", " it. Then you're given back this huge blob of HTML. But you're really only interested", " in just a slight, like a tiny part of it. So you try to, you know, use a library for", " portioning that HTML and getting out, you know, that specific tag that you're interested", " in. And you can then make an insertion of just that. And we found that to be very brittle", " and error-prone. Sometimes you would test something as empty and you think that you're", " testing the right thing. But actually, you're just selecting the wrong thing and it's always", " empty so your test will always pass. And it doesn't really, you know, it doesn't actually", " matter that you have a test. So we wanted to change that. So if you look at traditional", " view testing in a more graphical way, there are three parts. You have the test, you have", " the view, and you have a port step. And you have to go through this entire cycle. What", " we did in curly was we just cut out one port. We're not actually interested in testing the", " template itself. We're interested in testing view logic. So we just pass variables to the", " presender class itself when we initialize it. And then we just call methods on it. There's", " nothing magical about it. You can literally just call a method and you'll get back the", " result and you can make assertions on just that piece. So that was huge for us. And then", " we could much more easily maintain the API and do specific unit testing.", " So what we wanted to do is test a logic. We didn't want to test the structure. You can", " test the structure but just looking at the template and seeing the things in the right", " order, right? Or just opening your browser. Next up is caching. Caching is also a big deal", " for us. We use Russian doll saw caching. How many do you use that? Caching, I don't know.", " So, quite a few. Basically, we have a lot of caches and they're nested. So using the", " right cache keys is important for us. And typically in year B, you'd have to specify", " the top level, you know, cache and then the cache key do and then a bunch of stuff in", " there and it means that everything is like matched together in this one file and it's", " really difficult to test, too. So we wanted to have better support for caching and curly.", " And we found a pretty good way of doing it. Basically, if you have a cache key method", " in your presenter class, that view is going to be cached. If you return some non-nil value,", " you'll cache that view, the output using that cache key. So that makes it very simple. You", " can have much more complex logic in your cache key and you can use private methods and whatnot.", " It also means that you can actually start testing your cache keys. You can ascertain", " that if you pass in two different values for some variable, then the cache key will be", " different, which is actually a very nice way of testing that stuff.", " So what I'm getting at is sometimes it makes sense to use the best tool for the job. And", " there's definitely value in just having like one size fits all thing. I think that's part", " of the real mantra. But in this case, I feel that Markov language is actually pretty cool.", " Like there's a reason we don't just have a precedual thing that renders pixels on a", " screen in the browser, right? You send back HTML. And HTML is nice because, you know,", " it's Markov. You can see structure. It's very easy to identify the constituent parts. On", " the other hand, HTML is pretty bad for actual writing code. It's not actually possible.", " So you use your Ruby for that. But it feels like it makes sense to separate the two because", " there are different things. So it's actually fun to see Aaron's talk this morning because", " he went into some of the things that I've been looking at the last few years and been", " frustrated at. But he also talked a bit about caching views. And I'm not sure how much you", " know about the internals of action view. It took me a while to actually figure this stuff", " out. But I just want to show you basically how view rendering works and where curly fits", " into action view. So you probably only deal in action controller. You have a controller", " action and it either implicitly or explicitly renders a view. So you can pass, you know,", " render some name. Or you can just, like, let that name be the name of the action edit or", " show or something. So what action controller does is it passes that template name to action", " view. Action view will look around on the disk and it will try to find that appropriate", " template. It will load that and wrap it in an object. It will then find the appropriate", " template handler. Usually that's done by looking at the suffix, like dot e or dot handle, or", " in our case dot curly. It will then pass the template object to that handler. And the handler", " is actually responsible for compiling that source code into Ruby. And it will do that", " and it will return it back to action view as a string containing Ruby code. So what", " action view does is it keeps an anonymous module around containing a bunch of methods.", " Each method corresponds to a view. And it will take that Ruby code and it will create", " a new method on that object named after the view. And it will just put that source code", " in there and it will e-ballad and then it will call the method. And the method will", " actually execute the Ruby code and it will return the HTML and action view will return", " that back to action controller. So the next thing is that the next time action view sees", " that template name, it doesn't have to actually compile it. Because you can just call that", " method on the module. So that's what Aaron meant when he said caching of views. And this", " is of course only done lazily and it's done in each unicorn process if you're using this.", " So there are different issues but it's a pretty clever implementation of this. So I've been", " talking about curly for a little while. So do I think that it's just awesome that you", " should always use curly? Well, no. That's seldom the case. It's not an either or proposition.", " Curly assails us out a lot but we also tend to have some complex views. We still use ERB", " for a lot of cases. If you have something that's simple, you'd be great. You don't care that", " things that mix in a bit together. Ruby is not about being dogmatic. It's about using", " the best tool for the job. And if you have a two line template, there's no reason to", " use curly for that. Just use ERB. Or if you're in the initial stages of building something", " and everything's in flux, you'd be great. You only have one file. You can easily move", " things around. You don't need to have a pre-centered class and a template match up together. But", " once you read some threshold of complexity, curly is a great way to actually start thinking", " of things in terms of a proper API and having a proper language for defining the structure.", " So I definitely encourage you to have a look. As for Hamel, I've talked to several Hamel", " people. I see Hamel as being sort of the same as ERB. It's just from a different perspective.", " So in ERB, you basically put lots of Ruby code inside your HTML. And Hamel, you put a", " lot of HTML code inside your Ruby. But it's basically the same things in terms of, like,", " design. You still cut things similarly. You don't separate the structure from a logic.", " You just blend them in in a different way. So this has been running in production for", " more than two years. And other companies are also using it. A bunch of people in Brazil", " are using it for some reason. I don't know. So it's been a huge success. And we've open", " source that asks curly templates. Someone already took curly. It's a wrapper on a curl.", " You can just use curl, but okay. So it's called curly templates. And you can just drop it", " into your Rails app and it will do nothing. So it's not going to break anything. But if", " you then change one of your templates to be dot curly instead of dot EAB, it will use", " curly. And you'll have to set up a presenter and you'll extract code and boom, just that", " one template will use curly and you can use EAB for the rest. So it's very easy to try", " out and play around with. And I think it's actually pretty cool.", " So this was maybe a bit short. I think probably we have some time for questions if you want", " to. Just want to thank you again for coming. And you can go on GitHub and you actually", " get this. It's open source and all that. And pull across the welcome. I really hope that", " some people will start looking at it and maybe contributing or finding useful purposes for", " it. So I think we have some time for questions if anyone wants. Yeah. So the question was", " in our product, does the customers know sort of what's available in terms of these components?", " So yeah, we have a nice documentation part and we have auto-completion. So they can just", " type curly, curly and it'll see a list and we have descriptions and everything. So that's", " pretty cool. Yeah, exactly. Within the editor. We have sort of an IDE kind of thing. So the", " question was in this very astute observer, notice that in one case there was actually", " some HTML in the presenter in the form of a constant tack. And that's right. And basically", " I don't really care. It's not like I'm very pragmatic about that. And if you use any kind", " of link helper or form helper, that's basically the same thing, right? But I think, you know,", " you just want an API that says I'll return a blob of HTML to you and you'll actually", " create HTML in the presenter still. It's just this is like logic driven HTML, right? So in", " that case, yeah, it doesn't bother me. It's still very simple. And if you want like a very", " clean logic only layer, then you should create your own presenter objects or decorators outside", " of curly that don't know about HTML at all. The benefit of curly is that actually it knows", " form helpers. It knows link helpers. It knows all your paths. So you can actually do the", " clever view rendering stuff. It's view logic. It's not domain logic, right? Yeah. So, oh,", " sorry, the question was that, you know, if you want to render a collection, how do you", " do that? Basically, you can do it inline and curly. You can use, you know, render a collection,", " something, something from the presenter, which will just use a normal mechanism which is", " rendering a different template multiple times. So you have different options there. And you", " can also like do it in the method itself if you want to just return HTML. That's probably", " messy. Yeah. Oh, the question is, you know, what if you want to put like classes, if you're", " generating HTML in your presenter using say link to and you want to put like classes and", " stuff in there, whether that's like crossing some boundary in terms of where the frontend", " stuff should go. Well, I consider presenters to be the frontend also. They're just the", " view logic. They still view code, right? They're not back end code. They're not domain logic.", " And if you have stuff that sort of smells like the main logic, that should probably go", " into the model or something. But yeah, it depends on your citation. Like if you have", " frontend developers who don't mind opening Ruby classes, then I would just do that. But", " if you have like a strict requirement of all UI stuff being curly, you can also do that.", " You can just like have, you know, article path something and it returns the print path", " and then you just do, you know, a ref equals and do the entire thing itself if you really", " want that. Like we do that in some cases where we want full access. So both valid and both", " are supported. Cool.", " Thank you." ], "tokens": [ [ 10246, 13, 1044, 291, 439, 337, 1348, 510, 281, 1568, 385, 1710, 13, 286, 478, 588, 14556, 300, 291, 434 ], [ 439, 510, 281, 536, 385, 13, 1222, 1315, 307, 8033, 11789, 494, 547, 13, 286, 352, 538, 23453, 322, 264, 7703, 13, 509, 393, 915 ], [ 385, 322, 264, 5794, 293, 264, 460, 355, 836, 293, 439, 300, 13, 286, 1361, 439, 264, 636, 490, 50135, 4698, 281, 312, 510, 13 ], [ 50135, 4698, 307, 406, 2673, 411, 341, 13, 11419, 309, 445, 27805, 11, 457, 286, 2809, 380, 764, 257, 5052 ], [ 295, 300, 13, 663, 1116, 312, 4227, 13, 1033, 13, 407, 11, 700, 295, 40896, 11, 309, 311, 406, 516, 281, 312, 604, 15778 ], [ 510, 13, 286, 478, 588, 2597, 321, 1194, 300, 13, 492, 603, 362, 746, 300, 486, 574, 257, 857, 411 ], [ 257, 37798, 13, 407, 11, 291, 603, 841, 4963, 498, 291, 434, 1237, 337, 15778, 13, 286, 478, 988, 577, 867 ], [ 510, 360, 8704, 411, 15778, 1868, 12, 2029, 30, 663, 311, 5546, 257, 688, 13, 1033, 13, 3769, 13, 407, 11, 341 ], [ 307, 439, 7154, 12, 1812, 19907, 12, 21848, 770, 6809, 558, 586, 13, 467, 311, 544, 411, 13735, 15733, 1507, 13, 407, 11 ], [ 286, 603, 483, 666, 439, 300, 1780, 13, 467, 445, 994, 380, 528, 281, 8505, 886, 867, 561, 13, 286, 589 ], [ 412, 257, 1081, 1219, 17908, 301, 74, 13, 492, 360, 5474, 1406, 4722, 13, 492, 366, 19204, 9473, 11 ], [ 370, 291, 603, 483, 364, 3796, 2985, 300, 561, 393, 11024, 281, 11, 293, 309, 486, 976, 291, 411 ], [ 257, 1481, 15682, 370, 428, 6619, 393, 3067, 1406, 12475, 11, 439, 300, 1507, 13, 639, 4876, 11, 7907, 356, 11 ], [ 291, 434, 1953, 295, 264, 1910, 4583, 11, 286, 478, 516, 281, 483, 666, 437, 7907, 356, 307, 13, 7907, 356, 307, 364, 1269, 12, 41676 ], [ 1716, 300, 3665, 291, 2464, 869, 6809, 13, 2908, 11, 286, 841, 411, 456, 311, 257, 1481, 1657 ], [ 2261, 512, 295, 264, 1715, 5327, 11, 983, 7907, 356, 1542, 264, 636, 309, 775, 13, 286, 528, 281, 722, 484 ], [ 538, 1333, 295, 3585, 291, 300, 1657, 11, 293, 550, 286, 603, 751, 466, 7907, 356, 293, 577, 309, 486, 652 ], [ 428, 2909, 257, 688, 3571, 13, 407, 11, 309, 439, 1409, 365, 577, 321, 1361, 281, 1322, 257, 777, 12379, 2856, 11 ], [ 293, 983, 321, 630, 300, 13, 467, 311, 406, 746, 300, 291, 5850, 992, 484, 281, 360, 13, 467, 311, 1333, 295 ], [ 5370, 264, 1256, 11, 293, 1564, 291, 630, 300, 11, 291, 362, 281, 2464, 264, 3539, 21165, 294, 300 ], [ 2856, 11, 293, 437, 498, 291, 550, 4536, 300, 309, 390, 257, 6631, 2856, 11, 550, 291, 362, 281 ], [ 28132, 439, 428, 21165, 13, 407, 11, 309, 311, 746, 291, 534, 519, 938, 293, 1152, 466, 949 ], [ 291, 360, 309, 13, 400, 456, 645, 3195, 295, 3956, 1217, 13, 407, 11, 983, 630, 321, 360, 309, 30, 1042, 11, 337, 264 ], [ 1036, 1045, 281, 1451, 924, 11, 286, 600, 668, 1364, 322, 257, 1674, 300, 321, 818, 10773, 5169, 13, 467 ], [ 715, 17988, 264, 2135, 2845, 505, 14980, 11, 597, 307, 10550, 1406, 13, 467, 311, 257, 19204, 3601 ], [ 2361, 294, 1768, 3621, 11, 293, 309, 3572, 1024, 365, 8174, 11, 457, 309, 311, 1333, 295, 1080, 1065, 1674, 13 ], [ 639, 390, 3037, 732, 11, 1936, 11, 295, 364, 4906, 1674, 300, 321, 632, 13, 663, 390, 611, 257, 19204 ], [ 3601, 2361, 294, 1768, 3621, 11, 457, 309, 632, 2940, 2099, 49886, 13, 400, 472, 295, 264, 955 ], [ 2099, 49886, 390, 300, 309, 390, 588, 2252, 281, 19734, 13, 492, 4350, 527, 4581, 281 ], [ 6580, 257, 2375, 9699, 293, 1319, 512, 3678, 4577, 11, 457, 562, 5022, 9065, 264, 3601 ], [ 3096, 11, 309, 439, 2956, 1333, 295, 20025, 11, 558, 30, 400, 436, 2138, 994, 380, 574, 411, 264, 3360 ], [ 295, 527, 4581, 13, 400, 527, 4581, 645, 406, 2055, 365, 300, 11, 295, 1164, 11, 370, 321, 550, 1027 ], [ 264, 3922, 281, 2089, 552, 281, 10711, 15778, 666, 641, 3601, 3096, 293, 1768, 3621, 13 ], [ 400, 300, 2732, 13, 1743, 11, 291, 393, 360, 257, 688, 295, 1507, 365, 15778, 13, 400, 436, 630, 13, 440, 3869 ], [ 2375, 43355, 293, 264, 3869, 2487, 11, 264, 7261, 4122, 436, 994, 380, 411, 11, 293, 264, 319, 765, 4073 ], [ 1507, 13, 814, 3105, 264, 4577, 295, 35316, 11, 1203, 370, 300, 309, 1333, 295, 2956, 411, 641, 3360, 13 ], [ 467, 390, 869, 11, 293, 436, 645, 8344, 2055, 11, 457, 300, 11420, 632, 512, 2099, 49886, 13 ], [ 47468, 11, 562, 291, 13210, 264, 3621, 11, 321, 576, 700, 15529, 264, 7576, 574, 293, 841, 13, 400 ], [ 550, 1564, 35727, 13210, 11, 2045, 11, 257, 3840, 295, 15778, 576, 312, 28748, 11, 411, 11, 576, 15529, 1203 ], [ 293, 1319, 1203, 11, 293, 721, 576, 11, 411, 11, 1286, 926, 293, 3012, 13, 400, 309, 1333, 295, 2762 ], [ 3657, 13, 467, 994, 380, 841, 300, 4843, 13, 3996, 955, 1154, 390, 300, 1670, 527, 4581 ], [ 645, 1228, 15778, 281, 1319, 721, 11, 436, 727, 5672, 322, 1340, 13, 1743, 11, 436, 1143 ], [ 604, 1036, 1315, 11, 604, 1333, 295, 6162, 1315, 281, 7582, 294, 5223, 293, 281, 360, 3048, 830, 293, 1286, 1507 ], [ 926, 13, 400, 300, 11, 294, 1261, 11, 4140, 300, 321, 2809, 380, 534, 1319, 1340, 466, 264, 389, 18976, 1553 ], [ 7697, 3195, 295, 5474, 7533, 13, 400, 321, 632, 10688, 295, 5383, 295, 4581, 13, 407, 309, 390, 6243 ], [ 337, 505, 281, 458, 437, 576, 1821, 337, 7101, 562, 309, 1027, 257, 1319, 13, 400, 294, 264, 917, 11, 309, 4140 ], [ 300, 321, 994, 380, 534, 5623, 300, 3621, 11, 293, 321, 445, 718, 309, 1333, 295, 32853, 473, 570, 456 ], [ 390, 445, 886, 709, 1822, 281, 767, 652, 2962, 13, 407, 309, 1542, 411, 746, 490, 11, 411, 11, 264 ], [ 2440, 8132, 82, 11, 597, 307, 1333, 295, 1578, 562, 291, 434, 1382, 281, 3607, 281, 777, 4581, 611, 13, 407, 321 ], [ 3047, 300, 337, 3037, 732, 11, 3654, 661, 721, 11, 321, 1415, 281, 2985, 300, 1154, 13 ], [ 492, 1415, 281, 362, 257, 2296, 3191, 337, 309, 13, 400, 321, 632, 3195, 295, 11088, 13, 583, 2721, 11, 321 ], [ 3047, 300, 321, 1415, 2047, 1406, 337, 552, 278, 293, 47922, 21165, 13, 492, 1415 ], [ 527, 4581, 281, 854, 6964, 577, 264, 3621, 820, 767, 312, 28748, 562, 321, 28748, 721 ], [ 666, 17995, 293, 820, 362, 552, 30264, 11, 406, 382, 1333, 295, 257, 551, 300, 2314, 934, 321, 4239 ], [ 264, 3621, 13, 407, 321, 632, 3195, 295, 11088, 466, 577, 300, 4111, 820, 589, 11, 411, 437, 733 ], [ 295, 2105, 820, 561, 362, 11, 577, 709, 6357, 820, 436, 362, 13, 400, 11, 291, 458, 11, 321, 632, 11, 411, 11 ], [ 472, 8084, 390, 300, 321, 445, 362, 257, 5286, 293, 3270, 551, 11, 293, 264, 661, 8084, 390, 300 ], [ 436, 630, 1203, 2969, 13, 400, 321, 4590, 493, 8344, 294, 264, 2808, 13, 407, 264, 1558, 390 ], [ 300, 321, 2893, 257, 992, 295, 659, 37716, 6677, 11, 293, 321, 362, 7576, 21165, 300, 436, 393 ], [ 445, 764, 11, 293, 436, 574, 1481, 13, 400, 550, 264, 4581, 393, 352, 294, 293, 1319, 439, 264, 17995 ], [ 436, 528, 11, 382, 938, 382, 436, 500, 380, 2082, 365, 264, 6677, 13, 407, 264, 6677, 366, 445 ], [ 746, 300, 436, 393, 1286, 293, 4159, 498, 436, 528, 281, 13, 2704, 436, 393, 362, 3866 ], [ 14519, 295, 552, 11, 457, 436, 393, 380, 767, 652, 2962, 281, 552, 13, 639, 4350, 505, 281, 17522 ], [ 1333, 295, 264, 9362, 3753, 300, 321, 632, 281, 1406, 281, 445, 729, 6677, 11, 293, 309, 1027, 721 ], [ 257, 857, 544, 38798, 337, 505, 13, 4162, 550, 11, 321, 600, 3264, 661, 721, 11, 293, 309, 311, 5768 ], [ 257, 857, 544, 3997, 11, 457, 294, 264, 2863, 11, 300, 311, 437, 321, 1415, 281, 360, 13, 407, 412, 300, 935, 11 ], [ 321, 632, 1217, 3720, 881, 295, 264, 3621, 13, 467, 390, 18483, 11, 293, 321, 632, 264, 3601 ], [ 3096, 322, 264, 1768, 13, 5471, 390, 456, 13, 407, 321, 3227, 760, 293, 2825, 466, 577, 321, 1415 ], [ 281, 767, 4445, 309, 11, 411, 577, 820, 4581, 767, 360, 341, 30, 492, 2586, 300, 321 ], [ 1415, 281, 767, 764, 17995, 13, 492, 632, 281, 1029, 512, 295, 552, 11, 293, 456, 311, 572, 1778, 436, 4659, 380 ], [ 362, 2105, 281, 264, 17995, 2564, 11, 370, 5911, 11, 436, 445, 725, 14813, 15778, 797, 13, 492, 994, 380 ], [ 528, 300, 13, 407, 321, 2956, 412, 437, 321, 632, 11, 293, 437, 321, 632, 390, 14929, 33, 13, 1057, 527, 6809, 645, 3720 ], [ 294, 14929, 33, 11, 293, 264, 6809, 300, 321, 10226, 337, 264, 4581, 281, 19734, 11, 436, 645, 611 ], [ 3720, 294, 14929, 33, 13, 407, 264, 2199, 551, 576, 312, 281, 445, 2089, 4581, 281, 1269, 257, 2487, 2519 ], [ 365, 264, 1910, 294, 309, 11, 293, 445, 2010, 2286, 293, 3155, 11, 293, 321, 576, 764, 300, 13, 400, 321, 1194 ], [ 295, 300, 337, 926, 2217, 3949, 11, 293, 550, 321, 5334, 300, 390, 264, 6631, 377, 1558, 1562, 11 ], [ 293, 321, 994, 380, 528, 281, 360, 300, 13, 407, 2440, 322, 11, 321, 3047, 300, 4581, 820, 2464, 21165, 13 ], [ 814, 4659, 380, 312, 9410, 13, 814, 434, 406, 4725, 41504, 13, 814, 815, 312, 3670, 8849, 11 ], [ 457, 5240, 294, 2115, 295, 17995, 293, 24387, 11, 293, 1310, 257, 24745, 295, 15778, 281, 764, 413, 4983, 2115, 13 ], [ 407, 321, 1409, 1237, 412, 3273, 9100, 990, 8650, 11, 293, 456, 366, 257, 1326, 13, 492, 645, 1217, 1228 ], [ 38943, 294, 661, 3166, 295, 527, 3861, 11, 370, 321, 1194, 466, 1228, 309, 510, 11, 886, 13, 407 ], [ 456, 645, 257, 1326, 4112, 300, 311, 983, 321, 994, 380, 360, 300, 13, 38943, 307, 588, 1627, 11, 457, 309, 311, 611 ], [ 588, 39962, 13, 467, 3417, 1920, 411, 257, 9410, 2856, 13, 467, 311, 3273, 281, 14483, 11, 457, 291, 920 ], [ 362, 281, 2893, 588, 39962, 1412, 9227, 337, 309, 281, 312, 4420, 13, 407, 321, 576, 362, 281, 6964 ], [ 341, 2603, 9362, 295, 15646, 292, 6565, 300, 321, 4678, 264, 4581, 11, 293, 456, 576, 312, 6828, 11 ], [ 293, 456, 576, 312, 16121, 11, 293, 439, 341, 1507, 300, 390, 445, 886, 4005, 293, 886, 7339 ], [ 337, 437, 321, 1415, 13, 492, 1415, 746, 300, 390, 2199, 293, 3109, 712, 13 ], [ 492, 611, 2956, 412, 13252, 6000, 13, 407, 13252, 6000, 11, 498, 291, 360, 15778, 9410, 11, 291, 1391 ], [ 458, 13252, 6000, 420, 4813, 42162, 11, 597, 286, 519, 3968, 607, 41, 50, 4960, 13, 467, 575, 257, 588, 2199, 28431, 11 ], [ 412, 1935, 13252, 6000, 775, 13, 8854, 306, 42162, 575, 3869, 257, 688, 295, 25474, 293, 49282, 11, 293, 309, 390, 767 ], [ 1238, 1998, 281, 437, 321, 1415, 13, 467, 311, 588, 16694, 1166, 13, 821, 311, 572, 9952, 13, 821, 311, 572 ], [ 337, 16121, 13, 467, 311, 445, 2199, 13, 440, 2135, 1154, 390, 300, 309, 390, 406, 731, 24736, 337, 48526, 13 ], [ 821, 390, 257, 19907, 11420, 11, 457, 300, 390, 2584, 979, 263, 15551, 490, 48526, 13, 407, 321 ], [ 576, 362, 281, 352, 439, 294, 322, 13252, 6000, 13, 492, 645, 406, 4927, 281, 360, 300, 13, 492, 1415, 746 ], [ 300, 321, 727, 764, 322, 445, 264, 10847, 4583, 295, 527, 6809, 11, 445, 264, 721, 300, 527, 4581 ], [ 820, 312, 1075, 281, 19734, 293, 1825, 1646, 13, 821, 366, 920, 3195, 295, 1359, 644, 12356, 293 ], [ 661, 6809, 300, 321, 994, 380, 528, 281, 7620, 13, 492, 445, 1415, 281, 1066, 552, 382, 309, 645, 13, 492 ], [ 611, 1415, 746, 300, 390, 1333, 295, 19453, 666, 48526, 293, 1143, 512, 295, 264, 6201, 43469, 295 ], [ 48526, 11, 1270, 382, 269, 2834, 293, 25882, 11, 597, 611, 390, 257, 955, 2028, 337, 505, 13 ], [ 407, 321, 1361, 493, 365, 257, 1329, 295, 721, 300, 321, 1415, 11, 457, 321, 2809, 380, 534, 915, 604, 2856 ], [ 300, 5649, 439, 295, 309, 13, 407, 321, 1415, 264, 21165, 281, 312, 3273, 11, 295, 1164, 11, 570, 321 ], [ 645, 2614, 552, 293, 32368, 552, 322, 527, 2643, 13, 492, 611, 1415, 309, 281, 312, 16694, 1166, 13 ], [ 492, 1415, 527, 4581, 281, 6358, 641, 8446, 294, 2115, 295, 689, 436, 1415, 281, 862, 1507, 13 ], [ 1726, 264, 321, 434, 406, 3442, 281, 7690, 7339, 1507, 13, 400, 321, 1415, 281, 1066, 439, 264, 9952 ], [ 294, 257, 4994, 1081, 13, 492, 994, 380, 528, 281, 19219, 300, 281, 527, 4581, 13, 492, 820, 445, 4536 ], [ 689, 281, 829, 1507, 11, 457, 439, 300, 7339, 1507, 294, 2115, 295, 17746, 11, 1910, 12, 12004 ], [ 5598, 11, 439, 300, 1507, 11, 27708, 1507, 11, 321, 1415, 281, 1066, 300, 484, 295, 264, 1674 ], [ 370, 321, 727, 362, 257, 5986, 1674, 293, 1066, 264, 3997, 1412, 13 ], [ 400, 321, 1415, 281, 312, 1500, 712, 13, 639, 576, 312, 364, 9362, 13, 492, 576, 362, 561, 567, 1367, 3502 ], [ 322, 309, 281, 312, 8351, 13, 407, 498, 321, 1027, 257, 1319, 293, 309, 5800, 6902, 746, 337, 257, 5474, 11 ], [ 321, 576, 483, 19585, 293, 436, 1116, 312, 22172, 13, 407, 321, 1415, 281, 362, 24590, 6921, 294, 1081 ], [ 370, 321, 727, 652, 988, 300, 321, 20020, 527, 917, 295, 300, 1364, 13 ], [ 400, 321, 611, 1415, 281, 13365, 731, 365, 527, 6741, 48526, 724, 13 ], [ 407, 321, 3047, 281, 1322, 7907, 356, 13, 467, 311, 10950, 7547, 538, 13252, 6000, 11, 457, 309, 311, 819 ], [ 294, 512, 2141, 2098, 13, 509, 1066, 439, 428, 17995, 294, 21165, 293, 291, 764, 264, 7907, 1918, 1603, 501, 302, 24657 ], [ 281, 1081, 926, 6677, 689, 321, 528, 552, 13, 1057, 264, 9952, 307, 4305, 294, 6001, 66, 16292, 13, 400 ], [ 6001, 66, 16292, 366, 445, 11121, 19907, 5359, 300, 40134, 294, 3132, 6001, 66, 16292, 13, 3950, 6001, 66, 16292 ], [ 362, 1577, 2105, 281, 439, 264, 721, 291, 458, 490, 428, 363, 13, 407, 291, 362, 2113, 854, 433, 293 ], [ 3100, 854, 433, 293, 1254, 854, 433, 13, 509, 393, 15529, 644, 12356, 11, 291, 393, 360, 2035, 13, 400, 309, 393 ], [ 312, 1143, 12385, 5372, 293, 8234, 338, 13, 407, 498, 291, 362, 6741, 29197, 420, 644, 12356, 11, 291 ], [ 393, 445, 15529, 729, 3838, 490, 1951, 7907, 356, 293, 264, 661, 636, 926, 13, 407, 309, 3572, 1024 ], [ 2584, 666, 48526, 13, 663, 390, 588, 1021, 337, 505, 13, 639, 307, 437, 257, 1238, 2199, 457, 611 ], [ 588, 7476, 7907, 356, 12379, 576, 574, 411, 13, 509, 362, 428, 6677, 11, 382, 321, 818, 552, 11 ], [ 597, 366, 445, 5288, 13221, 538, 7907, 1918, 26179, 13, 400, 550, 291, 362, 428, 17995, 13, 407, 309, 311 ], [ 588, 49857, 293, 588, 2199, 13, 400, 439, 264, 6001, 66, 16292, 645, 7074, 294, 3132, 6001, 66, 16292, 13 ], [ 400, 436, 445, 2710, 19907, 5359, 300, 21389, 490, 7907, 356, 6001, 66, 16292, 13, 407, 630, 291, 439, 6888 ], [ 14018, 311, 33896, 341, 2446, 30, 1079, 30, 400, 415, 311, 8296, 13, 407, 294, 309, 11, 415, 2825, 466, 406, 5276 ], [ 411, 264, 1154, 295, 406, 5276, 597, 23335, 1910, 309, 311, 1228, 13, 407, 498, 291, 15529, 257, 14641 ], [ 12379, 294, 48526, 11, 264, 14641, 815, 764, 512, 2654, 9102, 13, 400, 309, 311, 588, 2252, 281 ], [ 458, 493, 1868, 437, 729, 366, 13, 407, 415, 2825, 466, 1419, 281, 48377, 309, 2698, 484, 13, 5135 ], [ 294, 7907, 356, 11, 321, 3047, 2440, 322, 300, 321, 1415, 364, 13691, 1329, 295, 9102, 300, 257, 2212 ], [ 12379, 820, 3241, 13, 400, 321, 1415, 281, 445, 8252, 293, 11024, 498, 309, 994, 380, 2893, 300, 13 ], [ 1436, 321, 632, 1190, 666, 2663, 8046, 689, 321, 645, 11, 411, 11, 2045, 538, 2663, 926, 300, 13 ], [ 407, 321, 3047, 321, 1415, 309, 281, 312, 13691, 13, 407, 767, 309, 311, 588, 1858, 294, 7907, 356, 281, 445 ], [ 1029, 257, 6001, 50085, 11, 291, 458, 11, 437, 360, 321, 643, 30, 400, 291, 603, 483, 257, 1329, 13, 407, 510, 321, 584, 11, 731, 11 ], [ 321, 2066, 456, 281, 312, 364, 7222, 7006, 1320, 385, 13, 286, 478, 15578, 364, 7222, 13, 400, 550 ], [ 291, 393, 445, 362, 257, 1230, 295, 1908, 7150, 13, 509, 393, 536, 300, 7222, 307, 2435, 382, 364 ], [ 5197, 7006, 13, 467, 311, 5585, 13, 407, 1184, 6542, 11317, 281, 257, 1908, 7150, 322, 264, 6001, 50085 ], [ 1508, 13, 639, 307, 439, 1096, 6772, 337, 291, 13, 316, 688, 295, 264, 1507, 291, 727, 360, 16945, 11 ], [ 457, 7907, 356, 30445, 439, 264, 39228, 37008, 293, 439, 264, 19922, 13, 400, 309, 28111, 300, 1184 ], [ 1908, 3170, 456, 611, 575, 2105, 281, 439, 264, 854, 433, 300, 291, 643, 293, 281, 22407 ], [ 1507, 13, 400, 456, 311, 257, 2199, 25290, 10286, 689, 1184, 12379, 11317, 3838, 281, 257, 6001, 50085, 13 ], [ 407, 321, 645, 2055, 13, 492, 1143, 341, 13, 467, 390, 1238, 19577, 13, 583, 321, 727, 3531, 527, 21165 ], [ 294, 264, 8149, 13, 492, 632, 512, 322, 12355, 13, 400, 550, 498, 257, 5474, 1415, 281, 19734, 11, 321 ], [ 576, 3531, 641, 21165, 294, 264, 8149, 13, 400, 321, 645, 1075, 281, 10711, 512, 8669 ], [ 7513, 666, 48526, 11, 3620, 300, 321, 727, 767, 483, 264, 21165, 490, 456, 13, 583 ], [ 321, 576, 26225, 264, 912, 6001, 50085, 13, 407, 300, 1027, 721, 257, 688, 3571, 337, 505, 570, 321 ], [ 787, 2978, 281, 1500, 257, 688, 747, 1564, 13, 400, 309, 390, 3273, 13, 400, 309, 390, 588, 2199, 13, 2621, 4581 ], [ 645, 588, 2055, 13, 400, 321, 14306, 309, 666, 527, 1674, 13, 400, 291, 362, 364, 294, 1889, 9839, 689 ], [ 291, 393, 352, 294, 13, 509, 393, 1319, 428, 21165, 1854, 264, 1674, 13, 509, 393, 14281, 2962, 13 ], [ 509, 434, 611, 4350, 281, 8129, 24387, 293, 15778, 293, 439, 300, 1507, 13, 400, 309, 390, 588, 1627, 13 ], [ 400, 286, 390, 588, 4570, 295, 309, 562, 321, 25312, 309, 13, 400, 300, 311, 11, 286, 519, 11, 411, 732, 924, 2057, 11 ], [ 732, 293, 257, 1922, 924, 2057, 13, 400, 309, 311, 668, 2614, 1562, 1670, 13, 407, 321, 645, 2055, 13, 400, 321, 3227, 646, 13 ], [ 492, 645, 4570, 295, 4175, 13, 492, 1409, 1953, 11, 291, 458, 437, 30, 492, 2956, 412, 613, 21165 ], [ 293, 264, 6001, 66, 16292, 13, 400, 550, 321, 2956, 412, 264, 1472, 295, 527, 21165, 300, 321, 994, 380, 7620 ], [ 570, 436, 4999, 380, 47922, 13, 400, 321, 1409, 281, 2441, 11, 1310, 341, 32066, 551, 307, 767 ], [ 544, 4420, 813, 321, 9105, 1194, 13, 2704, 309, 311, 406, 445, 337, 39387, 13, 2704, 309, 311 ], [ 746, 300, 321, 528, 281, 764, 544, 19511, 13, 407, 445, 281, 976, 291, 364, 1365, 11, 341, 307, 257 ], [ 767, 26335, 3037, 295, 364, 3539, 14929, 47, 12379, 300, 286, 34086, 257, 1326, 924, 2057 ], [ 490, 527, 724, 13, 286, 519, 309, 311, 1238, 7476, 13, 467, 311, 406, 24324, 2199, 11, 457, 309, 311, 406, 27417 ], [ 3997, 2139, 13, 509, 727, 2138, 352, 294, 293, 652, 2962, 294, 14929, 47, 281, 652, 309, 18587, 13 ], [ 583, 4696, 291, 600, 439, 1612, 1333, 295, 341, 733, 295, 551, 13, 407, 498, 291, 574, 412, 309, 11, 577, 709 ], [ 295, 341, 307, 767, 18519, 30, 1012, 709, 307, 309, 4077, 281, 264, 21739, 295, 721, 420, 264, 11 ], [ 291, 458, 11, 389, 12683, 30, 286, 393, 854, 291, 484, 510, 13, 1726, 257, 688, 13, 4534, 295, 341, 307, 767, 19907, 3089, 13 ], [ 467, 311, 9952, 300, 24799, 577, 512, 1507, 820, 312, 1237, 13, 583, 309, 311, 588, 2252 ], [ 337, 11, 584, 11, 257, 1868, 12, 521, 10754, 281, 352, 294, 293, 11, 291, 458, 11, 7019, 11, 291, 458, 11, 498, 291, 434, 1907, 11 ], [ 1954, 11, 321, 643, 281, 7019, 264, 2689, 1254, 294, 257, 3414, 293, 976, 309, 512, 1508, 13, 1610, 689, 311, 264, 2689 ], [ 1254, 30, 1042, 11, 294, 32066, 11, 309, 311, 257, 688, 3571, 13, 1436, 439, 264, 9952, 575, 668, 34086, 293, 9234, 11 ], [ 597, 307, 445, 382, 1021, 11, 291, 393, 352, 294, 11, 291, 393, 536, 437, 307, 437, 11, 689, 307, 264, 2689 ], [ 1254, 13, 509, 393, 39568, 309, 11, 293, 291, 393, 5800, 536, 689, 439, 264, 17995, 307, 13, 407, 300, 311, 257, 955 ], [ 2028, 13, 400, 527, 1868, 12, 521, 8849, 366, 588, 2055, 466, 300, 570, 309, 1027, 641, 2909 ], [ 257, 688, 3571, 11, 2318, 498, 291, 362, 11, 291, 458, 11, 955, 17995, 7183, 19273, 257, 688, 295, 1491, 1010, 13 ], [ 759, 291, 4159, 439, 264, 9952, 11, 439, 264, 19907, 490, 456, 11, 291, 1411, 445, 264, 12801, 11, 445 ], [ 437, 436, 643, 13, 663, 390, 534, 1627, 13, 1282, 264, 661, 1011, 11, 321, 646, 12, 521, 8849, 11, 570 ], [ 512, 406, 257, 588, 665, 1868, 12, 521, 11403, 11, 286, 820, 1391, 584, 300, 11, 321, 645, 1411, 365 ], [ 19907, 5359, 11, 293, 321, 458, 552, 13, 814, 434, 721, 300, 321, 393, 2028, 294, 13, 1743, 11, 321, 393, 764, 4551 ], [ 7150, 281, 2541, 493, 1507, 13, 492, 393, 764, 32122, 13, 509, 393, 360, 2035, 291, 528, 13, 639, 307, 14634 ], [ 295, 3877, 293, 9952, 13, 400, 309, 534, 4254, 505, 281, 3470, 264, 1785, 295, 17478, 337, 527 ], [ 2302, 1910, 4583, 11, 597, 390, 1238, 955, 13, 400, 309, 1936, 4140, 300, 321, 727, 1286, 412, 257 ], [ 709, 4663, 11638, 13, 492, 727, 722, 6260, 365, 512, 295, 264, 3997, 9952, 300, 632, 668, 14994 ], [ 1854, 1064, 363, 13, 509, 362, 512, 294, 1064, 363, 13, 467, 311, 411, 428, 3614, 307, 5145, 309, 456, 11, 420, 1310 ], [ 30197, 295, 14641, 11, 420, 1310, 49844, 36133, 11, 457, 6022, 295, 729, 3956, 366, 1009 ], [ 2176, 13, 823, 11, 291, 393, 445, 764, 19907, 13, 1485, 295, 264, 2663, 300, 321, 632, 8046, 390, 300 ], [ 321, 2171, 319, 4717, 512, 6809, 294, 3866, 26903, 11, 293, 291, 632, 281, 1604, 281, 4090 ], [ 264, 912, 3043, 260, 5359, 294, 1184, 10561, 570, 264, 1910, 576, 643, 309, 13, 407, 300, 390 ], [ 1333, 295, 11304, 11, 411, 264, 10561, 2978, 281, 458, 437, 264, 1910, 2978, 13, 682, 32066, 11, 291 ], [ 500, 380, 643, 300, 570, 291, 393, 445, 4090, 257, 10088, 13, 821, 311, 1825, 12066, 466, 309, 13 ], [ 1610, 307, 309, 406, 2121, 30, 814, 445, 7150, 1854, 257, 10088, 13, 400, 291, 393, 764, 32122, 293 ], [ 25882, 13, 407, 300, 1027, 257, 688, 295, 2020, 294, 1184, 1064, 13, 407, 286, 2825, 466, 4997, 3071, 13, 400 ], [ 4997, 307, 257, 955, 2028, 337, 505, 13, 492, 1143, 497, 19588, 66, 11, 293, 321, 632, 1143, 13909, 51, 4409, 8046, 13, 400 ], [ 309, 632, 668, 1333, 295, 257, 39526, 13, 1743, 11, 577, 867, 295, 291, 360, 13909, 51, 8714, 294, 428, 48526, 7733, 30 ], [ 865, 11, 257, 1326, 13, 407, 4696, 512, 295, 291, 458, 1333, 295, 437, 286, 478, 1417, 466, 13, 583, 309, 393 ], [ 312, 257, 39526, 13, 8537, 11, 437, 291, 360, 307, 291, 528, 281, 1500, 512, 2685, 2522, 295, 9952, 13 ], [ 400, 291, 445, 528, 281, 1500, 300, 309, 311, 2139, 341, 420, 300, 13, 583, 291, 362, 281, 767, 1320, 11 ], [ 291, 458, 11, 291, 362, 281, 1320, 439, 264, 2978, 9102, 281, 264, 1910, 13, 1396, 291, 643, 281, 15529 ], [ 309, 13, 1396, 291, 434, 2212, 646, 341, 2603, 46115, 295, 17995, 13, 583, 291, 434, 534, 787, 3102 ], [ 294, 445, 257, 4036, 11, 411, 257, 5870, 644, 295, 309, 13, 407, 291, 853, 281, 11, 291, 458, 11, 764, 257, 6405, 337 ], [ 8044, 278, 300, 17995, 293, 1242, 484, 11, 291, 458, 11, 300, 2685, 6162, 300, 291, 434, 3102 ], [ 294, 13, 400, 291, 393, 550, 652, 364, 8969, 313, 295, 445, 300, 13, 400, 321, 1352, 300, 281, 312, 588, 49325 ], [ 293, 6713, 12, 1424, 546, 13, 4803, 291, 576, 1500, 746, 382, 6707, 293, 291, 519, 300, 291, 434 ], [ 4997, 264, 558, 551, 13, 583, 767, 11, 291, 434, 445, 18182, 264, 2085, 551, 293, 309, 311, 1009 ], [ 6707, 370, 428, 1500, 486, 1009, 1320, 13, 400, 309, 1177, 380, 534, 11, 291, 458, 11, 309, 1177, 380, 767 ], [ 1871, 300, 291, 362, 257, 1500, 13, 407, 321, 1415, 281, 1319, 300, 13, 407, 498, 291, 574, 412, 5164 ], [ 1910, 4997, 294, 257, 544, 35942, 636, 11, 456, 366, 1045, 3166, 13, 509, 362, 264, 1500, 11, 291, 362 ], [ 264, 1910, 11, 293, 291, 362, 257, 2436, 1823, 13, 400, 291, 362, 281, 352, 807, 341, 2302, 6586, 13, 708 ], [ 321, 630, 294, 32066, 390, 321, 445, 1723, 484, 472, 2436, 13, 492, 434, 406, 767, 3102, 294, 4997, 264 ], [ 12379, 2564, 13, 492, 434, 3102, 294, 4997, 1910, 9952, 13, 407, 321, 445, 1320, 9102, 281, 264 ], [ 1183, 3216, 1508, 2564, 562, 321, 5883, 1125, 309, 13, 400, 550, 321, 445, 818, 7150, 322, 309, 13, 821, 311 ], [ 1825, 12066, 466, 309, 13, 509, 393, 3736, 445, 818, 257, 3170, 293, 291, 603, 483, 646, 264 ], [ 1874, 293, 291, 393, 652, 19810, 626, 322, 445, 300, 2522, 13, 407, 300, 390, 2603, 337, 505, 13, 400, 550 ], [ 321, 727, 709, 544, 3612, 6909, 264, 9362, 293, 360, 2685, 4985, 4997, 13 ], [ 407, 437, 321, 1415, 281, 360, 307, 1500, 257, 9952, 13, 492, 994, 380, 528, 281, 1500, 264, 3877, 13, 509, 393 ], [ 1500, 264, 3877, 457, 445, 1237, 412, 264, 12379, 293, 2577, 264, 721, 294, 264, 558 ], [ 1668, 11, 558, 30, 1610, 445, 5193, 428, 11185, 13, 3087, 493, 307, 269, 2834, 13, 383, 2834, 307, 611, 257, 955, 2028 ], [ 337, 505, 13, 492, 764, 7220, 2722, 1866, 269, 2834, 13, 1012, 867, 360, 291, 764, 300, 30, 383, 2834, 11, 286, 500, 380, 458, 13 ], [ 407, 11, 1596, 257, 1326, 13, 8537, 11, 321, 362, 257, 688, 295, 269, 13272, 293, 436, 434, 15646, 292, 13, 407, 1228, 264 ], [ 558, 19459, 9317, 307, 1021, 337, 505, 13, 400, 5850, 294, 1064, 363, 11, 291, 1116, 362, 281, 16500 ], [ 264, 1192, 1496, 11, 291, 458, 11, 19459, 293, 550, 264, 19459, 2141, 360, 293, 550, 257, 3840, 295, 1507, 294 ], [ 456, 293, 309, 1355, 300, 1203, 307, 411, 21447, 1214, 294, 341, 472, 3991, 293, 309, 311 ], [ 534, 2252, 281, 1500, 11, 886, 13, 407, 321, 1415, 281, 362, 1101, 1406, 337, 269, 2834, 293, 32066, 13 ], [ 400, 321, 1352, 257, 1238, 665, 636, 295, 884, 309, 13, 8537, 11, 498, 291, 362, 257, 19459, 2141, 3170 ], [ 294, 428, 35594, 1508, 11, 300, 1910, 307, 516, 281, 312, 269, 15095, 13, 759, 291, 2736, 512, 2107, 12, 77, 388, 2158, 11 ], [ 291, 603, 19459, 300, 1910, 11, 264, 5598, 1228, 300, 19459, 2141, 13, 407, 300, 1669, 309, 588, 2199, 13, 509 ], [ 393, 362, 709, 544, 3997, 9952, 294, 428, 19459, 2141, 293, 291, 393, 764, 4551, 7150, 293, 25882, 13 ], [ 467, 611, 1355, 300, 291, 393, 767, 722, 4997, 428, 19459, 9317, 13, 509, 393, 15526, 1408 ], [ 300, 498, 291, 1320, 294, 732, 819, 4190, 337, 512, 7006, 11, 550, 264, 19459, 2141, 486, 312 ], [ 819, 11, 597, 307, 767, 257, 588, 1481, 636, 295, 4997, 300, 1507, 13 ], [ 407, 437, 286, 478, 1242, 412, 307, 2171, 309, 1669, 2020, 281, 764, 264, 1151, 2290, 337, 264, 1691, 13, 400 ], [ 456, 311, 2138, 2158, 294, 445, 1419, 411, 472, 2744, 9001, 439, 551, 13, 286, 519, 300, 311, 644 ], [ 295, 264, 957, 32094, 13, 583, 294, 341, 1389, 11, 286, 841, 300, 3934, 5179, 2856, 307, 767, 1238, 1627, 13 ], [ 1743, 456, 311, 257, 1778, 321, 500, 380, 445, 362, 257, 16969, 901, 551, 300, 6125, 433, 18668, 322, 257 ], [ 2568, 294, 264, 11185, 11, 558, 30, 509, 2845, 646, 17995, 13, 400, 17995, 307, 1481, 570, 11, 291, 458, 11 ], [ 309, 311, 3934, 5179, 13, 509, 393, 536, 3877, 13, 467, 311, 588, 1858, 281, 5876, 264, 16085, 317, 3166, 13, 1282 ], [ 264, 661, 1011, 11, 17995, 307, 1238, 1578, 337, 3539, 3579, 3089, 13, 467, 311, 406, 767, 1944, 13 ], [ 407, 291, 764, 428, 19907, 337, 300, 13, 583, 309, 3417, 411, 309, 1669, 2020, 281, 4994, 264, 732, 570 ], [ 456, 366, 819, 721, 13, 407, 309, 311, 767, 1019, 281, 536, 14018, 311, 751, 341, 2446, 570 ], [ 415, 1437, 666, 512, 295, 264, 721, 300, 286, 600, 668, 1237, 412, 264, 1036, 1326, 924, 293, 668 ], [ 15751, 412, 13, 583, 415, 611, 2825, 257, 857, 466, 269, 2834, 6809, 13, 400, 286, 478, 406, 988, 577, 709, 291 ], [ 458, 466, 264, 2154, 1124, 295, 3069, 1910, 13, 467, 1890, 385, 257, 1339, 281, 767, 2573, 341, 1507 ], [ 484, 13, 583, 286, 445, 528, 281, 855, 291, 1936, 577, 1910, 22407, 1985, 293, 689, 32066, 9001 ], [ 666, 3069, 1910, 13, 407, 291, 1391, 787, 2028, 294, 3069, 10561, 13, 509, 362, 257, 10561 ], [ 3069, 293, 309, 2139, 26947, 356, 420, 20803, 6125, 433, 257, 1910, 13, 407, 291, 393, 1320, 11, 291, 458, 11 ], [ 15529, 512, 1315, 13, 1610, 291, 393, 445, 11, 411, 11, 718, 300, 1315, 312, 264, 1315, 295, 264, 3069, 8129, 420 ], [ 855, 420, 746, 13, 407, 437, 3069, 10561, 775, 307, 309, 11335, 300, 12379, 1315, 281, 3069 ], [ 1910, 13, 16261, 1910, 486, 574, 926, 322, 264, 12355, 293, 309, 486, 853, 281, 915, 300, 6854 ], [ 12379, 13, 467, 486, 3677, 300, 293, 7019, 309, 294, 364, 2657, 13, 467, 486, 550, 915, 264, 6854 ], [ 12379, 41967, 13, 11419, 300, 311, 1096, 538, 1237, 412, 264, 3889, 970, 11, 411, 5893, 308, 420, 5893, 4813, 11, 420 ], [ 294, 527, 1389, 5893, 32066, 13, 467, 486, 550, 1320, 264, 12379, 2657, 281, 300, 41967, 13, 400, 264, 41967 ], [ 307, 767, 6250, 337, 715, 4883, 300, 4009, 3089, 666, 19907, 13, 400, 309, 486, 360, 300 ], [ 293, 309, 486, 2736, 309, 646, 281, 3069, 1910, 382, 257, 6798, 19273, 19907, 3089, 13, 407, 437 ], [ 3069, 1910, 775, 307, 309, 5965, 364, 24932, 10088, 926, 19273, 257, 3840, 295, 7150, 13 ], [ 6947, 3170, 23249, 281, 257, 1910, 13, 400, 309, 486, 747, 300, 19907, 3089, 293, 309, 486, 1884 ], [ 257, 777, 3170, 322, 300, 2657, 4926, 934, 264, 1910, 13, 400, 309, 486, 445, 829, 300, 4009, 3089 ], [ 294, 456, 293, 309, 486, 308, 12, 3129, 345, 293, 550, 309, 486, 818, 264, 3170, 13, 400, 264, 3170, 486 ], [ 767, 14483, 264, 19907, 3089, 293, 309, 486, 2736, 264, 17995, 293, 3069, 1910, 486, 2736 ], [ 300, 646, 281, 3069, 10561, 13, 407, 264, 958, 551, 307, 300, 264, 958, 565, 3069, 1910, 8194 ], [ 300, 12379, 1315, 11, 309, 1177, 380, 362, 281, 767, 31413, 309, 13, 1436, 291, 393, 445, 818, 300 ], [ 3170, 322, 264, 10088, 13, 407, 300, 311, 437, 14018, 4140, 562, 415, 848, 269, 2834, 295, 6809, 13, 400, 341 ], [ 307, 295, 1164, 787, 1096, 19320, 953, 293, 309, 311, 1096, 294, 1184, 517, 299, 1865, 1399, 498, 291, 434, 1228, 341, 13 ], [ 407, 456, 366, 819, 2663, 457, 309, 311, 257, 1238, 13494, 11420, 295, 341, 13, 407, 286, 600, 668 ], [ 1417, 466, 32066, 337, 257, 707, 1339, 13, 407, 360, 286, 519, 300, 309, 311, 445, 3476, 300, 291 ], [ 820, 1009, 764, 32066, 30, 1042, 11, 572, 13, 663, 311, 47717, 264, 1389, 13, 467, 311, 406, 364, 2139, 420, 24830, 13 ], [ 7907, 356, 1256, 6227, 505, 484, 257, 688, 457, 321, 611, 3928, 281, 362, 512, 3997, 6809, 13, 492, 920, 764, 14929, 33 ], [ 337, 257, 688, 295, 3331, 13, 759, 291, 362, 746, 300, 311, 2199, 11, 291, 1116, 312, 869, 13, 509, 500, 380, 1127, 300 ], [ 721, 300, 2890, 294, 257, 857, 1214, 13, 19907, 307, 406, 466, 885, 3000, 25915, 13, 467, 311, 466, 1228 ], [ 264, 1151, 2290, 337, 264, 1691, 13, 400, 498, 291, 362, 257, 732, 1622, 12379, 11, 456, 311, 572, 1778, 281 ], [ 764, 32066, 337, 300, 13, 1449, 764, 14929, 33, 13, 1610, 498, 291, 434, 294, 264, 5883, 10232, 295, 2390, 746 ], [ 293, 1203, 311, 294, 19298, 11, 291, 1116, 312, 869, 13, 509, 787, 362, 472, 3991, 13, 509, 393, 3612, 1286 ], [ 721, 926, 13, 509, 500, 380, 643, 281, 362, 257, 659, 12, 36814, 1508, 293, 257, 12379, 2995, 493, 1214, 13, 583 ], [ 1564, 291, 1401, 512, 14678, 295, 14024, 11, 32066, 307, 257, 869, 636, 281, 767, 722, 1953 ], [ 295, 721, 294, 2115, 295, 257, 2296, 9362, 293, 1419, 257, 2296, 2856, 337, 17827, 264, 3877, 13 ], [ 407, 286, 2138, 5373, 291, 281, 362, 257, 574, 13, 1018, 337, 8234, 338, 11, 286, 600, 2825, 281, 2940, 8234, 338 ], [ 561, 13, 286, 536, 8234, 338, 382, 885, 1333, 295, 264, 912, 382, 14929, 33, 13, 467, 311, 445, 490, 257, 819, 4585, 13 ], [ 407, 294, 14929, 33, 11, 291, 1936, 829, 3195, 295, 19907, 3089, 1854, 428, 17995, 13, 400, 8234, 338, 11, 291, 829, 257 ], [ 688, 295, 17995, 3089, 1854, 428, 19907, 13, 583, 309, 311, 1936, 264, 912, 721, 294, 2115, 295, 11, 411, 11 ], [ 1715, 13, 509, 920, 1723, 721, 14138, 13, 509, 500, 380, 4994, 264, 3877, 490, 257, 9952, 13 ], [ 509, 445, 10628, 552, 294, 294, 257, 819, 636, 13, 407, 341, 575, 668, 2614, 294, 4265, 337 ], [ 544, 813, 732, 924, 13, 400, 661, 3431, 366, 611, 1228, 309, 13, 316, 3840, 295, 561, 294, 9435 ], [ 366, 1228, 309, 337, 512, 1778, 13, 286, 500, 380, 458, 13, 407, 309, 311, 668, 257, 2603, 2245, 13, 400, 321, 600, 1269 ], [ 4009, 300, 8962, 32066, 21165, 13, 8734, 1217, 1890, 32066, 13, 467, 311, 257, 46906, 322, 257, 22591, 13 ], [ 509, 393, 445, 764, 22591, 11, 457, 1392, 13, 407, 309, 311, 1219, 32066, 21165, 13, 400, 291, 393, 445, 3270, 309 ], [ 666, 428, 48526, 724, 293, 309, 486, 360, 1825, 13, 407, 309, 311, 406, 516, 281, 1821, 1340, 13, 583, 498 ], [ 291, 550, 1319, 472, 295, 428, 21165, 281, 312, 5893, 32066, 2602, 295, 5893, 462, 13868, 11, 309, 486, 764 ], [ 32066, 13, 400, 291, 603, 362, 281, 992, 493, 257, 35594, 293, 291, 603, 8947, 3089, 293, 9351, 11, 445, 300 ], [ 472, 12379, 486, 764, 32066, 293, 291, 393, 764, 462, 13868, 337, 264, 1472, 13, 407, 309, 311, 588, 1858, 281, 853 ], [ 484, 293, 862, 926, 365, 13, 400, 286, 519, 309, 311, 767, 1238, 1627, 13 ], [ 407, 341, 390, 1310, 257, 857, 2099, 13, 286, 519, 1391, 321, 362, 512, 565, 337, 1651, 498, 291, 528 ], [ 281, 13, 1449, 528, 281, 1309, 291, 797, 337, 1348, 13, 400, 291, 393, 352, 322, 23331, 293, 291, 767 ], [ 483, 341, 13, 467, 311, 1269, 4009, 293, 439, 300, 13, 400, 2235, 2108, 264, 2928, 13, 286, 534, 1454, 300 ], [ 512, 561, 486, 722, 1237, 412, 309, 293, 1310, 19270, 420, 5006, 4420, 9932, 337 ], [ 309, 13, 407, 286, 519, 321, 362, 512, 565, 337, 1651, 498, 2878, 2738, 13, 865, 13, 407, 264, 1168, 390 ], [ 294, 527, 1674, 11, 775, 264, 4581, 458, 1333, 295, 437, 311, 2435, 294, 2115, 295, 613, 6677, 30 ], [ 407, 1338, 11, 321, 362, 257, 1481, 14333, 644, 293, 321, 362, 8399, 12, 1112, 14657, 313, 13, 407, 436, 393, 445 ], [ 2010, 32066, 11, 32066, 293, 309, 603, 536, 257, 1329, 293, 321, 362, 24406, 293, 1203, 13, 407, 300, 311 ], [ 1238, 1627, 13, 865, 11, 2293, 13, 15996, 264, 9839, 13, 492, 362, 1333, 295, 364, 40930, 733, 295, 551, 13, 407, 264 ], [ 1168, 390, 294, 341, 588, 5357, 1169, 27878, 11, 3449, 300, 294, 472, 1389, 456, 390, 767 ], [ 512, 17995, 294, 264, 35594, 294, 264, 1254, 295, 257, 5754, 9426, 13, 400, 300, 311, 558, 13, 400, 1936 ], [ 286, 500, 380, 534, 1127, 13, 467, 311, 406, 411, 286, 478, 588, 46904, 466, 300, 13, 400, 498, 291, 764, 604, 733 ], [ 295, 2113, 36133, 420, 1254, 36133, 11, 300, 311, 1936, 264, 912, 551, 11, 558, 30, 583, 286, 519, 11, 291, 458, 11 ], [ 291, 445, 528, 364, 9362, 300, 1619, 286, 603, 2736, 257, 46115, 295, 17995, 281, 291, 293, 291, 603, 767 ], [ 1884, 17995, 294, 264, 35594, 920, 13, 467, 311, 445, 341, 307, 411, 9952, 9555, 17995, 11, 558, 30, 407, 294 ], [ 300, 1389, 11, 1338, 11, 309, 1177, 380, 8677, 385, 13, 467, 311, 920, 588, 2199, 13, 400, 498, 291, 528, 411, 257, 588 ], [ 2541, 9952, 787, 4583, 11, 550, 291, 820, 1884, 428, 1065, 35594, 6565, 420, 7919, 3391, 2380 ], [ 295, 32066, 300, 500, 380, 458, 466, 17995, 412, 439, 13, 440, 5121, 295, 32066, 307, 300, 767, 309, 3255 ], [ 1254, 854, 433, 13, 467, 3255, 2113, 854, 433, 13, 467, 3255, 439, 428, 14518, 13, 407, 291, 393, 767, 360, 264 ], [ 13494, 1910, 22407, 1507, 13, 467, 311, 1910, 9952, 13, 467, 311, 406, 9274, 9952, 11, 558, 30, 865, 13, 407, 11, 1954, 11 ], [ 2597, 11, 264, 1168, 390, 300, 11, 291, 458, 11, 498, 291, 528, 281, 15529, 257, 5765, 11, 577, 360, 291 ], [ 360, 300, 30, 8537, 11, 291, 393, 360, 309, 294, 1889, 293, 32066, 13, 509, 393, 764, 11, 291, 458, 11, 15529, 257, 5765, 11 ], [ 746, 11, 746, 490, 264, 35594, 11, 597, 486, 445, 764, 257, 2710, 7513, 597, 307 ], [ 22407, 257, 819, 12379, 3866, 1413, 13, 407, 291, 362, 819, 3956, 456, 13, 400, 291 ], [ 393, 611, 411, 360, 309, 294, 264, 3170, 2564, 498, 291, 528, 281, 445, 2736, 17995, 13, 663, 311, 1391 ], [ 16191, 13, 865, 13, 876, 11, 264, 1168, 307, 11, 291, 458, 11, 437, 498, 291, 528, 281, 829, 411, 5359, 11, 498, 291, 434 ], [ 17746, 17995, 294, 428, 35594, 1228, 584, 2113, 281, 293, 291, 528, 281, 829, 411, 5359, 293 ], [ 1507, 294, 456, 11, 1968, 300, 311, 411, 14712, 512, 12866, 294, 2115, 295, 689, 264, 1868, 521 ], [ 1507, 820, 352, 13, 1042, 11, 286, 1949, 36987, 281, 312, 264, 1868, 521, 611, 13, 814, 434, 445, 264 ], [ 1910, 9952, 13, 814, 920, 1910, 3089, 11, 558, 30, 814, 434, 406, 646, 917, 3089, 13, 814, 434, 406, 9274, 9952, 13 ], [ 400, 498, 291, 362, 1507, 300, 1333, 295, 10036, 411, 264, 2135, 9952, 11, 300, 820, 1391, 352 ], [ 666, 264, 2316, 420, 746, 13, 583, 1338, 11, 309, 5946, 322, 428, 45590, 13, 1743, 498, 291, 362 ], [ 1868, 521, 8849, 567, 500, 380, 1575, 5193, 19907, 5359, 11, 550, 286, 576, 445, 360, 300, 13, 583 ], [ 498, 291, 362, 411, 257, 10910, 11695, 295, 439, 15682, 1507, 885, 32066, 11, 291, 393, 611, 360, 300, 13 ], [ 509, 393, 445, 411, 362, 11, 291, 458, 11, 7222, 3100, 746, 293, 309, 11247, 264, 4482, 3100 ], [ 293, 550, 291, 445, 360, 11, 291, 458, 11, 257, 1895, 6915, 293, 360, 264, 2302, 551, 2564, 498, 291, 534 ], [ 528, 300, 13, 1743, 321, 360, 300, 294, 512, 3331, 689, 321, 528, 1577, 2105, 13, 407, 1293, 7363, 293, 1293 ], [ 366, 8104, 13, 8561, 13 ], [ 50364, 1044, 291, 13, 51288 ] ] }
{ "frames": [ [ 0, 155 ], [ 156, 311 ], [ 312, 1931 ], [ 1932, 2387 ], [ 2388, 4043 ], [ 4044, 8639 ], [ 8640, 12527 ], [ 12528, 13127 ], [ 13128, 23855 ], [ 23856, 24659 ], [ 24660, 28559 ], [ 28560, 29063 ], [ 29064, 30359 ], [ 30360, 33419 ], [ 33420, 33899 ], [ 33900, 35267 ], [ 35268, 37595 ], [ 37596, 39035 ], [ 39036, 46451 ], [ 46452, 46559 ], [ 46560, 46667 ], [ 46668, 46823 ], [ 46824, 46907 ], [ 46908, 46991 ], [ 46992, 47039 ], [ 47040, 47111 ], [ 47112, 47159 ], [ 47160, 47771 ], [ 47772, 47975 ], [ 47976, 48143 ], [ 48144, 48251 ], [ 48252, 48335 ], [ 48336, 48419 ], [ 48420, 49067 ], [ 49068, 49751 ], [ 49752, 50039 ], [ 50040, 50603 ], [ 50604, 50915 ], [ 50916, 51011 ], [ 51012, 51167 ], [ 51168, 51362 ] ], "slide": [ "Curly_0_155.png", "Curly_156_311.png", "Curly_312_1931.png", "Curly_1932_2387.png", "Curly_2388_4043.png", "Curly_4044_8639.png", "Curly_8640_12527.png", "Curly_12528_13127.png", "Curly_13128_23855.png", "Curly_23856_24659.png", "Curly_24660_28559.png", "Curly_28560_29063.png", "Curly_29064_30359.png", "Curly_30360_33419.png", "Curly_33420_33899.png", "Curly_33900_35267.png", "Curly_35268_37595.png", "Curly_37596_39035.png", "Curly_39036_46451.png", "Curly_46452_46559.png", "Curly_46560_46667.png", "Curly_46668_46823.png", "Curly_46824_46907.png", "Curly_46908_46991.png", "Curly_46992_47039.png", "Curly_47040_47111.png", "Curly_47112_47159.png", "Curly_47160_47771.png", "Curly_47772_47975.png", "Curly_47976_48143.png", "Curly_48144_48251.png", "Curly_48252_48335.png", "Curly_48336_48419.png", "Curly_48420_49067.png", "Curly_49068_49751.png", "Curly_49752_50039.png", "Curly_50040_50603.png", "Curly_50604_50915.png", "Curly_50916_51011.png", "Curly_51012_51167.png", "Curly_51168_51362.png" ], "timestamp": [ [ 0, 6.239999771118164 ], [ 6.239999771118164, 12.479999542236328 ], [ 12.479999542236328, 77.27999877929688 ], [ 77.27999877929688, 95.5199966430664 ], [ 95.5199966430664, 161.75999450683594 ], [ 161.75999450683594, 345.6000061035156 ], [ 345.6000061035156, 501.1199951171875 ], [ 501.1199951171875, 525.1199951171875 ], [ 525.1199951171875, 954.239990234375 ], [ 954.239990234375, 986.4000244140625 ], [ 986.4000244140625, 1142.4000244140625 ], [ 1142.4000244140625, 1162.56005859375 ], [ 1162.56005859375, 1214.4000244140625 ], [ 1214.4000244140625, 1336.800048828125 ], [ 1336.800048828125, 1356 ], [ 1356, 1410.719970703125 ], [ 1410.719970703125, 1503.8399658203125 ], [ 1503.8399658203125, 1561.43994140625 ], [ 1561.43994140625, 1858.0799560546875 ], [ 1858.0799560546875, 1862.4000244140625 ], [ 1862.4000244140625, 1866.719970703125 ], [ 1866.719970703125, 1872.9599609375 ], [ 1872.9599609375, 1876.3199462890625 ], [ 1876.3199462890625, 1879.6800537109375 ], [ 1879.6800537109375, 1881.5999755859375 ], [ 1881.5999755859375, 1884.47998046875 ], [ 1884.47998046875, 1886.4000244140625 ], [ 1886.4000244140625, 1910.8800048828125 ], [ 1910.8800048828125, 1919.0400390625 ], [ 1919.0400390625, 1925.760009765625 ], [ 1925.760009765625, 1930.0799560546875 ], [ 1930.0799560546875, 1933.43994140625 ], [ 1933.43994140625, 1936.800048828125 ], [ 1936.800048828125, 1962.719970703125 ], [ 1962.719970703125, 1990.0799560546875 ], [ 1990.0799560546875, 2001.5999755859375 ], [ 2001.5999755859375, 2024.1600341796875 ], [ 2024.1600341796875, 2036.6400146484375 ], [ 2036.6400146484375, 2040.47998046875 ], [ 2040.47998046875, 2046.719970703125 ], [ 2046.719970703125, 2054.52001953125 ] ] }
en
[ null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null ]
10.5446/33479 (DOI)
Ecstasy and Despair: How Powerful Emotions Trigger Digital Activism
https://av.tib.eu/media/33479
https://tib.flowcenter.de/mfc/medialink/3/de4503ae58b62ba7292fdcff4b20679e6c26757b3b44e883686e993d23c4ea6a42/re_publica_2013_-_Deanna_Zandt__Ecstasy_and_Despair__How_Powerful_Emotions_Trigger_Digital_Activism_.mp4
"CC Attribution - ShareAlike 3.0 Germany:\nYou are free to use, adapt and copy, distribute and trans(...TRUNCATED)
Computer Science
Conference/Talk
2013
Zandt, Deanna
null
"What does my friend Nicole's bum have to do with breast cancer, murdered young black men, and the f(...TRUNCATED)
" I'd like to introduce to you now our next speaker, Diana Zand. Diana is a media technologist and c(...TRUNCATED)
{"avg_logprob":[-0.313405305147171,-0.313405305147171,-0.313405305147171,-0.313405305147171,-0.23987(...TRUNCATED)
{"frames":[[0,839],[840,4823],[4824,6071],[6072,10439],[10440,11027],[11028,13259],[13260,14375],[14(...TRUNCATED)
en
[{"bytes":"iVBORw0KGgoAAAANSUhEUgAAAgAAAAEgCAIAAABNXlwGAAEAAElEQVR4nOz9W68k65YdhsV3i8jMVbX3PmefS7NPm(...TRUNCATED)
10.5446/57246 (DOI)
The Intersection of Geospatial Open Source and Commerce
https://av.tib.eu/media/57246
https://tib.flowcenter.de/mfc/medialink/3/de634188852e02267ca46bb12ba7975956327a41572c0190e759f23f3ecfd5746c/FOSS4G_-_The_Intersection_of_Geospatial_Open_Sourc_2_EKhNNaeyQ.mp4
"CC Attribution 3.0 Unported:\nYou are free to use, adapt and copy, distribute and transmit the work(...TRUNCATED)
Computer Science
Conference/Talk
2021
Terner, Michael
Adams, Till (Moderation) Varela, Gonzalo
"FOSS4G conferences have helped generate interest in, and adoption of free and open source geospatia(...TRUNCATED)
" Hello, anybody there? Can you hear me? So I see us on the when you less platform now with a backup(...TRUNCATED)
{"avg_logprob":[-0.4284622371196747,-0.4284622371196747,-0.4284622371196747,-0.24670818448066711,-0.(...TRUNCATED)
{"frames":[[0,359],[360,443],[444,515],[516,563],[564,647],[648,731],[732,779],[780,827],[828,1031],(...TRUNCATED)
en
[{"bytes":"iVBORw0KGgoAAAANSUhEUgAAAgAAAAEgCAIAAABNXlwGAAEAAElEQVR4nOz9yY4s2fY+CO3etvXeRHe6zPsHVKoBA(...TRUNCATED)
10.5446/20155 (DOI)
Speeding up search with locality sensitive hashing
https://av.tib.eu/media/20155
https://tib.flowcenter.de/mfc/medialink/3/dee3403ac3abf4a91935da038f7c9eb108d5f8d3ffd6f6d223d1eb4e63dabe1422/Maciej_Kula_-_Speeding_up_search_with_locality_sensitive_hashing.mp4
"CC Attribution - NonCommercial - ShareAlike 3.0 Unported:\nYou are free to use, adapt and copy, dis(...TRUNCATED)
Computer Science
Conference/Talk
2015
Kula, Maciej
null
"Maciej Kula - Speeding up search with locality sensitive hashing Locality sensitive hashing (LSH) i(...TRUNCATED)
" Hello, I'm Maciej and I'm a data scientist at List. We're a fashion company. We basically go all a(...TRUNCATED)
{"avg_logprob":[-0.24786528944969177,-0.24786528944969177,-0.24786528944969177,-0.24786528944969177,(...TRUNCATED)
{"frames":[[0,83],[84,2231],[2232,6827],[6828,7451],[7452,7607],[7608,7667],[7668,10907],[10908,1124(...TRUNCATED)
en
[{"bytes":"iVBORw0KGgoAAAANSUhEUgAAAgAAAAEgCAIAAABNXlwGAAEAAElEQVR4nOz9aZBm2XkeiN1z7vKtudbaVV2970A30(...TRUNCATED)
10.5446/36435 (DOI)
Medical Devices: Pwnage and Honeypots
https://av.tib.eu/media/36435
https://tib.flowcenter.de/mfc/medialink/3/de0109506e9c497aa601532a05b80ba1efc7500f8702c472cfebad14ff27160226/DEF_CON_23_-_Scott_Erven_and_Mark_Collao_-Medical_Devices__Pwnage_and_Honeypots_ZusL2BY6_XU.mp4
"CC Attribution 3.0 Unported:\nYou are free to use, adapt and copy, distribute and transmit the work(...TRUNCATED)
Computer Science
Conference/Talk
2015
Erven, Scott Collao, Mark
null
"We know medical devices are exposed to the Internet both directly and indirectly, so just how hard (...TRUNCATED)
" Thanks everyone for coming out. You guys having a good time? Yeah. Awesome. I appreciate you guys (...TRUNCATED)
{"avg_logprob":[-0.30490565299987793,-0.30490565299987793,-0.30490565299987793,-0.30490565299987793,(...TRUNCATED)
{"frames":[[0,239],[240,1439],[1440,2219],[2220,3479],[3480,3539],[3540,4727],[4728,6239],[6240,8195(...TRUNCATED)
en
[{"bytes":"iVBORw0KGgoAAAANSUhEUgAAAgAAAAEgCAIAAABNXlwGAAEAAElEQVR4nOz997OtaXYehr3xSzudc+65+fbtnKYn9(...TRUNCATED)
10.5446/30860 (DOI)
Just in Time: Things we can only do with LuaTeX
https://av.tib.eu/media/30860
https://tib.flowcenter.de/mfc/medialink/3/de1d5ad9d1996fb6faa0dce913647fffea27728cca790388de3e3e48fadd224b47/Just_in_Time__Things_we_can_only_do_with_LuaTeX.mp4
"CC Attribution - NoDerivatives 2.0 UK: England & Wales:\nYou are free to use, copy, distribute and (...TRUNCATED)
Computer Science
Conference/Talk
2012
Hagen, Hans
null
"All the time that I’ve been using TEX, I’ve been lucky enough to stumble into a solution just i(...TRUNCATED)
" When I submitted the talks, Karl's idea was that it would be handy to put them in a row also becau(...TRUNCATED)
{"avg_logprob":[-0.23420727252960205,-0.23420727252960205,-0.23420727252960205,-0.23420727252960205,(...TRUNCATED)
{"frames":[[0,59],[60,611],[612,1175],[1176,1451],[1452,8999],[9000,18347],[18348,19043],[19044,1916(...TRUNCATED)
en
[{"bytes":"iVBORw0KGgoAAAANSUhEUgAAAgAAAAEgCAIAAABNXlwGAADlRklEQVR4nOz96ZOl13kfCJ79vMu9N/fK2lAFFHYQB(...TRUNCATED)
10.5446/39667 (DOI)
The Road to Resilience: How Real Hacking Redeems a Damnable Profession
https://av.tib.eu/media/39667
https://tib.flowcenter.de/mfc/medialink/3/de8008a6fa29e2dbfcf38e36d3bb7f13fce6b09d75dc12c969587f8d6ed9388905/DEF_CON_26___Richard_Thieme_-_The_Road_to_Resilience_How_Real_Hacking.mp4
"CC Attribution 3.0 Unported:\nYou are free to use, adapt and copy, distribute and transmit the work(...TRUNCATED)
Computer Science
Conference/Talk
2018
Thieme, Richard
null
"Two years ago Richard Thieme spoke on “Playing Through the Pain: The Impact of Dark Knowledge on (...TRUNCATED)
" So this is Richard Thiem, I will give him the stage. Thank you, thanks very much. Thanks, it's oka(...TRUNCATED)
{"avg_logprob":[-0.3105105459690094,-0.3105105459690094,-0.3105105459690094,-0.3105105459690094,-0.3(...TRUNCATED)
{"frames":[[0,167],[168,7511],[7512,8123],[8124,9059],[9060,9935],[9936,12299],[12300,15431],[15432,(...TRUNCATED)
en
[{"bytes":"iVBORw0KGgoAAAANSUhEUgAAAgAAAAEgCAIAAABNXlwGAAEAAElEQVR4nOz995dl13EmiB7vrsu86X1WVZZFoYAqk(...TRUNCATED)
10.5446/55097 (DOI)
Studying the Coulomb State of a Pion and a Muon
https://av.tib.eu/media/55097
https://tib.flowcenter.de/mfc/medialink/3/de5c305b9cf5a779ca8e9b66c073385c30a694a2d3c98dcffc8f05a773ae0f4bf1e04b/1991_Master_Schwartz_1080.mp4
"CC Attribution - NonCommercial - NoDerivatives 4.0 International:\nYou are free to use, copy, distr(...TRUNCATED)
Physics
Conference/Talk
1991
Schwartz, Melvin
null
"Afternoon coffee at the physics department of New York City’s Columbia University once resembled (...TRUNCATED)
" Thank you very much. Ladies and gentlemen, it's a real pleasure to be here. And what I'm going to (...TRUNCATED)
{"avg_logprob":[-0.3723853826522827,-0.3723853826522827,-0.11925100535154343,-0.11925100535154343,-0(...TRUNCATED)
{"frames":[[0,95],[96,2519],[2520,3143],[3144,4391],[4392,6251],[6252,6875],[6876,8123],[8124,10607](...TRUNCATED)
en
[{"bytes":"iVBORw0KGgoAAAANSUhEUgAAAgAAAAEgCAIAAABNXlwGAAC0R0lEQVR4nO29B5wcx3Un3FXdPXHzLsIiZ4AACTBTJ(...TRUNCATED)
10.5446/48285 (DOI)
Learning to Hack on Postgres Planner
https://av.tib.eu/media/48285
https://tib.flowcenter.de/mfc/medialink/3/de5c5c6daada4309ae50e3be2d45b0690656ad90e775ff67cd3d91c831328221264b/Intro_to_Postgres_Planner_-_Hacking_Melanie_Plageman.mp4
"CC Attribution 3.0 Unported:\nYou are free to use, adapt and copy, distribute and transmit the work(...TRUNCATED)
Information Science
Conference/Talk
2019
Plageman, Melanie
null
"his talk will cover the process of debugging a bad plan starting from the explain output through ha(...TRUNCATED)
" Okay, so I work at Pivotal on Green Plum. I wanted to give a talk about Postgres Planner. And the (...TRUNCATED)
{"avg_logprob":[-0.2993311882019043,-0.2993311882019043,-0.2993311882019043,-0.2993311882019043,-0.2(...TRUNCATED)
{"frames":[[0,155],[156,875],[876,1691],[1692,1787],[1788,2291],[2292,2903],[2904,4127],[4128,6227],(...TRUNCATED)
en
[{"bytes":"iVBORw0KGgoAAAANSUhEUgAAAgAAAAEgCAIAAABNXlwGAACiK0lEQVR4nO39B7Rlx3UeCJ+qE++5ObzUEY3uBtBoN(...TRUNCATED)
10.5446/38613 (DOI)
On relative log de Rham-Witt complex
https://av.tib.eu/media/38613
https://tib.flowcenter.de/mfc/medialink/3/de8d17b26ef480e845fac204675b6efb74497cf4948a224d1957fe18dbb9982f0e/A__Shiho_-_On_relative_log_de_Rham-Witt_complex_nGV6YFfaeFY.mp4
"CC Attribution 3.0 Unported:\nYou are free to use, adapt and copy, distribute and transmit the work(...TRUNCATED)
Mathematics
Conference/Talk
2018
Shiho, A.
Hirayama, Kazuki
"The notion of relative log de Rham-Witt complex, which is the log version of relative de Rham-Witt (...TRUNCATED)
" Thank you very much. First of all, I'd like to thank the organizers for the invitation. And it's a(...TRUNCATED)
{"avg_logprob":[-0.5320324897766113,-0.5320324897766113,-0.5320324897766113,-0.5320324897766113,-0.4(...TRUNCATED)
{"frames":[[0,6359],[6360,7391],[7392,8423],[8424,12575],[12576,18335],[18336,19223],[19224,28847],[(...TRUNCATED)
en
[{"bytes":"iVBORw0KGgoAAAANSUhEUgAAAgAAAAEgCAIAAABNXlwGAAEAAElEQVR4nOz957ctSXYfiGVGmuOue75eedfV1Y1uo(...TRUNCATED)
README.md exists but content is empty.
Downloads last month
0