Daedalus in the meantime, hating Crete and his long exile
91 | and having been touched by the love of his birthplace,
92 | had been closed in by the sea. He says, "Although Minos obstructs
93 | the land and waves, the sky at least lies open; we will fly there.
94 | Minos may possess everything, but he does not possess the air."
95 |
96 |
97 | 02
98 |
99 |
Geode planning
100 |
He spoke and sends down his mind into unknown arts
101 | and changes his nature. For he puts feathers in a row
102 | beginning with the small ones, and the shorter ones following the long ones,
103 | so that you should think it has grown on an incline; in the same way that
104 | a countryman's pipe gradually builds up with reeds of different lengths.
105 |
106 |
107 |
115 |
123 |
124 |
125 | 03
126 |
127 |
Disaster management
128 |
Then he binds the middle ones with thread and the last feathers with wax
129 | and then bends what he has created by a small curvature as
130 | to mimic real birds. Together with his father, the boy Icarus
131 | was standing nearby, unaware that he was facing danger,
132 | now with a beaming face was capturing the feathers
133 | which the wandering air has moved, with his thumb now was softening the yellow wax
134 | and with his play he kept interrupting the marvelous work of his father.
135 |
136 |
137 | 04
138 |
139 |
Impact theory
140 |
After the finishing touch had been placed
141 | on the work, the craftsman balanced his body
142 | on the twin wings and suspended his body in the open air;
143 | "I warn you to travel in the middle course, Icarus, so that the waves
144 | may not weigh down your wings if you go too low,
145 | and so that the sun will not scorch your wings if you go too high.
146 | Stay between both. I order you not to look at Boötes,
147 | or Helice, or the drawn sword of Orion.
148 |
149 |
150 |
151 |
159 |
167 |
168 |
169 | 05
170 |
171 |
Incubation assertion
172 |
With me leading, seize the way!
173 | He hands over at the same time the rules of flying
174 | and fits the unknown wings on his shoulders.
175 | Between the work and warnings the old cheeks grew wet,
176 | and his fatherly hands trembled; He gave to his son kisses
177 | not to be repeated, and having lifted himself up on his wings
178 | he flies before and he fears for his comrade.
179 |
180 |
181 | 06
182 |
183 |
Hyperdrive vessel
184 |
Just as a bird
185 | who has led forth a tender offspring from a high nest into the air,
186 | and encourages him to follow and instructs him in the destructive arts
187 | and he moves himself and looks back at the wings of his son.
188 | Someone while catching fish with a trembling rod,
189 | either a shepherd leaning on his staff or a plowman on a plow
190 | saw these men and was stunned, and they who were able to snatch the sky,
191 | he believed were gods.
192 |
193 |
194 |
202 |
210 |
218 |
219 |
220 |
228 |
229 |
230 | 07
231 |
232 |
Icarian Engine
233 |
And now Juno's Samos was on the left
234 | side for Delos and Paros had been left behind
235 | and on the right was Lebynthos and Kalymnos rich in honey,
236 | when the boy began to rejoice in his bold flight
237 | and deserted his leader, and attracted by a desire for the sky
238 | he took his path went higher.
239 |
240 |
241 | 08
242 |
243 |
Neutrospace Accelerator
244 |
The vicinity of the sun
245 | softens the fragrant wax, the chains of the feathers;
246 | the wax melted: he shook his bare arms
247 | and lacking oarage he takes up no air,
248 | and his mouth shouting his father's name
249 | is swept up in the blue sea, which takes its name from him.
250 |
251 |
252 |
253 |
260 |
261 |
262 |
263 |
264 |
265 |
--------------------------------------------------------------------------------
/dist/js.c39dff1f.js:
--------------------------------------------------------------------------------
1 | // modules are defined as an array
2 | // [ module function, map of requires ]
3 | //
4 | // map of requires is short require name -> numeric require
5 | //
6 | // anything defined in a previous bundle is accessed via the
7 | // orig method which is the require for previous bundles
8 | parcelRequire = (function (modules, cache, entry, globalName) {
9 | // Save the require from previous bundle to this closure if any
10 | var previousRequire = typeof parcelRequire === 'function' && parcelRequire;
11 | var nodeRequire = typeof require === 'function' && require;
12 |
13 | function newRequire(name, jumped) {
14 | if (!cache[name]) {
15 | if (!modules[name]) {
16 | // if we cannot find the module within our internal map or
17 | // cache jump to the current global require ie. the last bundle
18 | // that was added to the page.
19 | var currentRequire = typeof parcelRequire === 'function' && parcelRequire;
20 | if (!jumped && currentRequire) {
21 | return currentRequire(name, true);
22 | }
23 |
24 | // If there are other bundles on this page the require from the
25 | // previous one is saved to 'previousRequire'. Repeat this as
26 | // many times as there are bundles until the module is found or
27 | // we exhaust the require chain.
28 | if (previousRequire) {
29 | return previousRequire(name, true);
30 | }
31 |
32 | // Try the node require function if it exists.
33 | if (nodeRequire && typeof name === 'string') {
34 | return nodeRequire(name);
35 | }
36 |
37 | var err = new Error('Cannot find module \'' + name + '\'');
38 | err.code = 'MODULE_NOT_FOUND';
39 | throw err;
40 | }
41 |
42 | localRequire.resolve = resolve;
43 | localRequire.cache = {};
44 |
45 | var module = cache[name] = new newRequire.Module(name);
46 |
47 | modules[name][0].call(module.exports, localRequire, module, module.exports, this);
48 | }
49 |
50 | return cache[name].exports;
51 |
52 | function localRequire(x){
53 | return newRequire(localRequire.resolve(x));
54 | }
55 |
56 | function resolve(x){
57 | return modules[name][1][x] || x;
58 | }
59 | }
60 |
61 | function Module(moduleName) {
62 | this.id = moduleName;
63 | this.bundle = newRequire;
64 | this.exports = {};
65 | }
66 |
67 | newRequire.isParcelRequire = true;
68 | newRequire.Module = Module;
69 | newRequire.modules = modules;
70 | newRequire.cache = cache;
71 | newRequire.parent = previousRequire;
72 | newRequire.register = function (id, exports) {
73 | modules[id] = [function (require, module) {
74 | module.exports = exports;
75 | }, {}];
76 | };
77 |
78 | var error;
79 | for (var i = 0; i < entry.length; i++) {
80 | try {
81 | newRequire(entry[i]);
82 | } catch (e) {
83 | // Save first error but execute all entries
84 | if (!error) {
85 | error = e;
86 | }
87 | }
88 | }
89 |
90 | if (entry.length) {
91 | // Expose entry point to Node, AMD or browser globals
92 | // Based on https://github.com/ForbesLindesay/umd/blob/master/template.js
93 | var mainExports = newRequire(entry[entry.length - 1]);
94 |
95 | // CommonJS
96 | if (typeof exports === "object" && typeof module !== "undefined") {
97 | module.exports = mainExports;
98 |
99 | // RequireJS
100 | } else if (typeof define === "function" && define.amd) {
101 | define(function () {
102 | return mainExports;
103 | });
104 |
105 | //
14 |
15 |
16 |
17 |
18 |
50 |
51 |
Daedalus in the meantime, hating Crete and his long exile
83 | and having been touched by the love of his birthplace,
84 | had been closed in by the sea. He says, "Although Minos obstructs
85 | the land and waves, the sky at least lies open; we will fly there.
86 | Minos may possess everything, but he does not possess the air."
87 |
88 |
89 | 02
90 |
91 |
Geode planning
92 |
He spoke and sends down his mind into unknown arts
93 | and changes his nature. For he puts feathers in a row
94 | beginning with the small ones, and the shorter ones following the long ones,
95 | so that you should think it has grown on an incline; in the same way that
96 | a countryman's pipe gradually builds up with reeds of different lengths.
97 |
98 |
99 |
107 |
115 |
116 |
117 | 03
118 |
119 |
Disaster management
120 |
Then he binds the middle ones with thread and the last feathers with wax
121 | and then bends what he has created by a small curvature as
122 | to mimic real birds. Together with his father, the boy Icarus
123 | was standing nearby, unaware that he was facing danger,
124 | now with a beaming face was capturing the feathers
125 | which the wandering air has moved, with his thumb now was softening the yellow wax
126 | and with his play he kept interrupting the marvelous work of his father.
127 |
128 |
129 | 04
130 |
131 |
Impact theory
132 |
After the finishing touch had been placed
133 | on the work, the craftsman balanced his body
134 | on the twin wings and suspended his body in the open air;
135 | "I warn you to travel in the middle course, Icarus, so that the waves
136 | may not weigh down your wings if you go too low,
137 | and so that the sun will not scorch your wings if you go too high.
138 | Stay between both. I order you not to look at Boötes,
139 | or Helice, or the drawn sword of Orion.
140 |
141 |
142 |
143 |
151 |
159 |
160 |
161 | 05
162 |
163 |
Incubation assertion
164 |
With me leading, seize the way!
165 | He hands over at the same time the rules of flying
166 | and fits the unknown wings on his shoulders.
167 | Between the work and warnings the old cheeks grew wet,
168 | and his fatherly hands trembled; He gave to his son kisses
169 | not to be repeated, and having lifted himself up on his wings
170 | he flies before and he fears for his comrade.
171 |
172 |
173 | 06
174 |
175 |
Hyperdrive vessel
176 |
Just as a bird
177 | who has led forth a tender offspring from a high nest into the air,
178 | and encourages him to follow and instructs him in the destructive arts
179 | and he moves himself and looks back at the wings of his son.
180 | Someone while catching fish with a trembling rod,
181 | either a shepherd leaning on his staff or a plowman on a plow
182 | saw these men and was stunned, and they who were able to snatch the sky,
183 | he believed were gods.
184 |
185 |
186 |
194 |
202 |
210 |
211 |
212 |
220 |
221 |
222 | 07
223 |
224 |
Icarian Engine
225 |
And now Juno's Samos was on the left
226 | side for Delos and Paros had been left behind
227 | and on the right was Lebynthos and Kalymnos rich in honey,
228 | when the boy began to rejoice in his bold flight
229 | and deserted his leader, and attracted by a desire for the sky
230 | he took his path went higher.
231 |
232 |
233 | 08
234 |
235 |
Neutrospace Accelerator
236 |
The vicinity of the sun
237 | softens the fragrant wax, the chains of the feathers;
238 | the wax melted: he shook his bare arms
239 | and lacking oarage he takes up no air,
240 | and his mouth shouting his father's name
241 | is swept up in the blue sea, which takes its name from him.