(function(l, r) { if (l.getElementById('livereloadscript')) return; r = l.createElement('script'); r.async = 1; r.src = '//' + (window.location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1'; r.id = 'livereloadscript'; l.getElementsByTagName('head')[0].appendChild(r) })(window.document); var app = (function () { 'use strict'; function noop() { } const identity = x => x; function assign(tar, src) { // @ts-ignore for (const k in src) tar[k] = src[k]; return tar; } function add_location(element, file, line, column, char) { element.__svelte_meta = { loc: { file, line, column, char } }; } function run(fn) { return fn(); } function blank_object() { return Object.create(null); } function run_all(fns) { fns.forEach(run); } function is_function(thing) { return typeof thing === 'function'; } function safe_not_equal(a, b) { return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function'); } function is_empty(obj) { return Object.keys(obj).length === 0; } function subscribe(store, ...callbacks) { if (store == null) { return noop; } const unsub = store.subscribe(...callbacks); return unsub.unsubscribe ? () => unsub.unsubscribe() : unsub; } function action_destroyer(action_result) { return action_result && is_function(action_result.destroy) ? action_result.destroy : noop; } function append(target, node) { target.appendChild(node); } function insert(target, node, anchor) { target.insertBefore(node, anchor || null); } function detach(node) { node.parentNode.removeChild(node); } function destroy_each(iterations, detaching) { for (let i = 0; i < iterations.length; i += 1) { if (iterations[i]) iterations[i].d(detaching); } } function element(name) { return document.createElement(name); } function svg_element(name) { return document.createElementNS('http://www.w3.org/2000/svg', name); } function text(data) { return document.createTextNode(data); } function space() { return text(' '); } function empty() { return text(''); } function listen(node, event, handler, options) { node.addEventListener(event, handler, options); return () => node.removeEventListener(event, handler, options); } function attr(node, attribute, value) { if (value == null) node.removeAttribute(attribute); else if (node.getAttribute(attribute) !== value) node.setAttribute(attribute, value); } function set_custom_element_data(node, prop, value) { if (prop in node) { node[prop] = value; } else { attr(node, prop, value); } } function xlink_attr(node, attribute, value) { node.setAttributeNS('http://www.w3.org/1999/xlink', attribute, value); } function children(element) { return Array.from(element.childNodes); } function toggle_class(element, name, toggle) { element.classList[toggle ? 'add' : 'remove'](name); } function custom_event(type, detail) { const e = document.createEvent('CustomEvent'); e.initCustomEvent(type, false, false, detail); return e; } class HtmlTag { constructor(anchor = null) { this.a = anchor; this.e = this.n = null; } m(html, target, anchor = null) { if (!this.e) { this.e = element(target.nodeName); this.t = target; this.h(html); } this.i(anchor); } h(html) { this.e.innerHTML = html; this.n = Array.from(this.e.childNodes); } i(anchor) { for (let i = 0; i < this.n.length; i += 1) { insert(this.t, this.n[i], anchor); } } p(html) { this.d(); this.h(html); this.i(this.a); } d() { this.n.forEach(detach); } } let current_component; function set_current_component(component) { current_component = component; } function get_current_component() { if (!current_component) throw new Error('Function called outside component initialization'); return current_component; } function onMount(fn) { get_current_component().$$.on_mount.push(fn); } function afterUpdate(fn) { get_current_component().$$.after_update.push(fn); } function createEventDispatcher() { const component = get_current_component(); return (type, detail) => { const callbacks = component.$$.callbacks[type]; if (callbacks) { // TODO are there situations where events could be dispatched // in a server (non-DOM) environment? const event = custom_event(type, detail); callbacks.slice().forEach(fn => { fn.call(component, event); }); } }; } // TODO figure out if we still want to support // shorthand events, or if we want to implement // a real bubbling mechanism function bubble(component, event) { const callbacks = component.$$.callbacks[event.type]; if (callbacks) { callbacks.slice().forEach(fn => fn(event)); } } const dirty_components = []; const binding_callbacks = []; const render_callbacks = []; const flush_callbacks = []; const resolved_promise = Promise.resolve(); let update_scheduled = false; function schedule_update() { if (!update_scheduled) { update_scheduled = true; resolved_promise.then(flush); } } function tick() { schedule_update(); return resolved_promise; } function add_render_callback(fn) { render_callbacks.push(fn); } let flushing = false; const seen_callbacks = new Set(); function flush() { if (flushing) return; flushing = true; do { // first, call beforeUpdate functions // and update components for (let i = 0; i < dirty_components.length; i += 1) { const component = dirty_components[i]; set_current_component(component); update(component.$$); } set_current_component(null); dirty_components.length = 0; while (binding_callbacks.length) binding_callbacks.pop()(); // then, once components are updated, call // afterUpdate functions. This may cause // subsequent updates... for (let i = 0; i < render_callbacks.length; i += 1) { const callback = render_callbacks[i]; if (!seen_callbacks.has(callback)) { // ...so guard against infinite loops seen_callbacks.add(callback); callback(); } } render_callbacks.length = 0; } while (dirty_components.length); while (flush_callbacks.length) { flush_callbacks.pop()(); } update_scheduled = false; flushing = false; seen_callbacks.clear(); } function update($$) { if ($$.fragment !== null) { $$.update(); run_all($$.before_update); const dirty = $$.dirty; $$.dirty = [-1]; $$.fragment && $$.fragment.p($$.ctx, dirty); $$.after_update.forEach(add_render_callback); } } const outroing = new Set(); let outros; function group_outros() { outros = { r: 0, c: [], p: outros // parent group }; } function check_outros() { if (!outros.r) { run_all(outros.c); } outros = outros.p; } function transition_in(block, local) { if (block && block.i) { outroing.delete(block); block.i(local); } } function transition_out(block, local, detach, callback) { if (block && block.o) { if (outroing.has(block)) return; outroing.add(block); outros.c.push(() => { outroing.delete(block); if (callback) { if (detach) block.d(1); callback(); } }); block.o(local); } } const globals = (typeof window !== 'undefined' ? window : typeof globalThis !== 'undefined' ? globalThis : global); function get_spread_update(levels, updates) { const update = {}; const to_null_out = {}; const accounted_for = { $$scope: 1 }; let i = levels.length; while (i--) { const o = levels[i]; const n = updates[i]; if (n) { for (const key in o) { if (!(key in n)) to_null_out[key] = 1; } for (const key in n) { if (!accounted_for[key]) { update[key] = n[key]; accounted_for[key] = 1; } } levels[i] = n; } else { for (const key in o) { accounted_for[key] = 1; } } } for (const key in to_null_out) { if (!(key in update)) update[key] = undefined; } return update; } function get_spread_object(spread_props) { return typeof spread_props === 'object' && spread_props !== null ? spread_props : {}; } function create_component(block) { block && block.c(); } function mount_component(component, target, anchor) { const { fragment, on_mount, on_destroy, after_update } = component.$$; fragment && fragment.m(target, anchor); // onMount happens before the initial afterUpdate add_render_callback(() => { const new_on_destroy = on_mount.map(run).filter(is_function); if (on_destroy) { on_destroy.push(...new_on_destroy); } else { // Edge case - component was destroyed immediately, // most likely as a result of a binding initialising run_all(new_on_destroy); } component.$$.on_mount = []; }); after_update.forEach(add_render_callback); } function destroy_component(component, detaching) { const $$ = component.$$; if ($$.fragment !== null) { run_all($$.on_destroy); $$.fragment && $$.fragment.d(detaching); // TODO null out other refs, including component.$$ (but need to // preserve final state?) $$.on_destroy = $$.fragment = null; $$.ctx = []; } } function make_dirty(component, i) { if (component.$$.dirty[0] === -1) { dirty_components.push(component); schedule_update(); component.$$.dirty.fill(0); } component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31)); } function init(component, options, instance, create_fragment, not_equal, props, dirty = [-1]) { const parent_component = current_component; set_current_component(component); const prop_values = options.props || {}; const $$ = component.$$ = { fragment: null, ctx: null, // state props, update: noop, not_equal, bound: blank_object(), // lifecycle on_mount: [], on_destroy: [], before_update: [], after_update: [], context: new Map(parent_component ? parent_component.$$.context : []), // everything else callbacks: blank_object(), dirty, skip_bound: false }; let ready = false; $$.ctx = instance ? instance(component, prop_values, (i, ret, ...rest) => { const value = rest.length ? rest[0] : ret; if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) { if (!$$.skip_bound && $$.bound[i]) $$.bound[i](value); if (ready) make_dirty(component, i); } return ret; }) : []; $$.update(); ready = true; run_all($$.before_update); // `false` as a special case of no DOM component $$.fragment = create_fragment ? create_fragment($$.ctx) : false; if (options.target) { if (options.hydrate) { const nodes = children(options.target); // eslint-disable-next-line @typescript-eslint/no-non-null-assertion $$.fragment && $$.fragment.l(nodes); nodes.forEach(detach); } else { // eslint-disable-next-line @typescript-eslint/no-non-null-assertion $$.fragment && $$.fragment.c(); } if (options.intro) transition_in(component.$$.fragment); mount_component(component, options.target, options.anchor); flush(); } set_current_component(parent_component); } class SvelteComponent { $destroy() { destroy_component(this, 1); this.$destroy = noop; } $on(type, callback) { const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = [])); callbacks.push(callback); return () => { const index = callbacks.indexOf(callback); if (index !== -1) callbacks.splice(index, 1); }; } $set($$props) { if (this.$$set && !is_empty($$props)) { this.$$.skip_bound = true; this.$$set($$props); this.$$.skip_bound = false; } } } function dispatch_dev(type, detail) { document.dispatchEvent(custom_event(type, Object.assign({ version: '3.30.0' }, detail))); } function append_dev(target, node) { dispatch_dev('SvelteDOMInsert', { target, node }); append(target, node); } function insert_dev(target, node, anchor) { dispatch_dev('SvelteDOMInsert', { target, node, anchor }); insert(target, node, anchor); } function detach_dev(node) { dispatch_dev('SvelteDOMRemove', { node }); detach(node); } function listen_dev(node, event, handler, options, has_prevent_default, has_stop_propagation) { const modifiers = options === true ? ['capture'] : options ? Array.from(Object.keys(options)) : []; if (has_prevent_default) modifiers.push('preventDefault'); if (has_stop_propagation) modifiers.push('stopPropagation'); dispatch_dev('SvelteDOMAddEventListener', { node, event, handler, modifiers }); const dispose = listen(node, event, handler, options); return () => { dispatch_dev('SvelteDOMRemoveEventListener', { node, event, handler, modifiers }); dispose(); }; } function attr_dev(node, attribute, value) { attr(node, attribute, value); if (value == null) dispatch_dev('SvelteDOMRemoveAttribute', { node, attribute }); else dispatch_dev('SvelteDOMSetAttribute', { node, attribute, value }); } function set_data_dev(text, data) { data = '' + data; if (text.wholeText === data) return; dispatch_dev('SvelteDOMSetData', { node: text, data }); text.data = data; } function validate_each_argument(arg) { if (typeof arg !== 'string' && !(arg && typeof arg === 'object' && 'length' in arg)) { let msg = '{#each} only iterates over array-like objects.'; if (typeof Symbol === 'function' && arg && Symbol.iterator in arg) { msg += ' You can use a spread to convert this iterable into an array.'; } throw new Error(msg); } } function validate_slots(name, slot, keys) { for (const slot_key of Object.keys(slot)) { if (!~keys.indexOf(slot_key)) { console.warn(`<${name}> received an unexpected slot "${slot_key}".`); } } } class SvelteComponentDev extends SvelteComponent { constructor(options) { if (!options || (!options.target && !options.$$inline)) { throw new Error("'target' is a required option"); } super(); } $destroy() { super.$destroy(); this.$destroy = () => { console.warn('Component was already destroyed'); // eslint-disable-line no-console }; } $capture_state() { } $inject_state() { } } /** * @typedef {Object} WrappedComponent Object returned by the `wrap` method * @property {SvelteComponent} component - Component to load (this is always asynchronous) * @property {RoutePrecondition[]} [conditions] - Route pre-conditions to validate * @property {Object} [props] - Optional dictionary of static props * @property {Object} [userData] - Optional user data dictionary * @property {bool} _sveltesparouter - Internal flag; always set to true */ /** * @callback AsyncSvelteComponent * @returns {Promise} Returns a Promise that resolves with a Svelte component */ /** * @callback RoutePrecondition * @param {RouteDetail} detail - Route detail object * @returns {boolean|Promise} If the callback returns a false-y value, it's interpreted as the precondition failed, so it aborts loading the component (and won't process other pre-condition callbacks) */ /** * @typedef {Object} WrapOptions Options object for the call to `wrap` * @property {SvelteComponent} [component] - Svelte component to load (this is incompatible with `asyncComponent`) * @property {AsyncSvelteComponent} [asyncComponent] - Function that returns a Promise that fulfills with a Svelte component (e.g. `{asyncComponent: () => import('Foo.svelte')}`) * @property {SvelteComponent} [loadingComponent] - Svelte component to be displayed while the async route is loading (as a placeholder); when unset or false-y, no component is shown while component * @property {object} [loadingParams] - Optional dictionary passed to the `loadingComponent` component as params (for an exported prop called `params`) * @property {object} [userData] - Optional object that will be passed to events such as `routeLoading`, `routeLoaded`, `conditionsFailed` * @property {object} [props] - Optional key-value dictionary of static props that will be passed to the component. The props are expanded with {...props}, so the key in the dictionary becomes the name of the prop. * @property {RoutePrecondition[]|RoutePrecondition} [conditions] - Route pre-conditions to add, which will be executed in order */ /** * Wraps a component to enable multiple capabilities: * 1. Using dynamically-imported component, with (e.g. `{asyncComponent: () => import('Foo.svelte')}`), which also allows bundlers to do code-splitting. * 2. Adding route pre-conditions (e.g. `{conditions: [...]}`) * 3. Adding static props that are passed to the component * 4. Adding custom userData, which is passed to route events (e.g. route loaded events) or to route pre-conditions (e.g. `{userData: {foo: 'bar}}`) * * @param {WrapOptions} args - Arguments object * @returns {WrappedComponent} Wrapped component */ function wrap(args) { if (!args) { throw Error('Parameter args is required') } // We need to have one and only one of component and asyncComponent // This does a "XNOR" if (!args.component == !args.asyncComponent) { throw Error('One and only one of component and asyncComponent is required') } // If the component is not async, wrap it into a function returning a Promise if (args.component) { args.asyncComponent = () => Promise.resolve(args.component); } // Parameter asyncComponent and each item of conditions must be functions if (typeof args.asyncComponent != 'function') { throw Error('Parameter asyncComponent must be a function') } if (args.conditions) { // Ensure it's an array if (!Array.isArray(args.conditions)) { args.conditions = [args.conditions]; } for (let i = 0; i < args.conditions.length; i++) { if (!args.conditions[i] || typeof args.conditions[i] != 'function') { throw Error('Invalid parameter conditions[' + i + ']') } } } // Check if we have a placeholder component if (args.loadingComponent) { args.asyncComponent.loading = args.loadingComponent; args.asyncComponent.loadingParams = args.loadingParams || undefined; } // Returns an object that contains all the functions to execute too // The _sveltesparouter flag is to confirm the object was created by this router const obj = { component: args.asyncComponent, userData: args.userData, conditions: (args.conditions && args.conditions.length) ? args.conditions : undefined, props: (args.props && Object.keys(args.props).length) ? args.props : {}, _sveltesparouter: true }; return obj } const subscriber_queue = []; /** * Creates a `Readable` store that allows reading by subscription. * @param value initial value * @param {StartStopNotifier}start start and stop notifications for subscriptions */ function readable(value, start) { return { subscribe: writable(value, start).subscribe }; } /** * Create a `Writable` store that allows both updating and reading by subscription. * @param {*=}value initial value * @param {StartStopNotifier=}start start and stop notifications for subscriptions */ function writable(value, start = noop) { let stop; const subscribers = []; function set(new_value) { if (safe_not_equal(value, new_value)) { value = new_value; if (stop) { // store is ready const run_queue = !subscriber_queue.length; for (let i = 0; i < subscribers.length; i += 1) { const s = subscribers[i]; s[1](); subscriber_queue.push(s, value); } if (run_queue) { for (let i = 0; i < subscriber_queue.length; i += 2) { subscriber_queue[i][0](subscriber_queue[i + 1]); } subscriber_queue.length = 0; } } } } function update(fn) { set(fn(value)); } function subscribe(run, invalidate = noop) { const subscriber = [run, invalidate]; subscribers.push(subscriber); if (subscribers.length === 1) { stop = start(set) || noop; } run(value); return () => { const index = subscribers.indexOf(subscriber); if (index !== -1) { subscribers.splice(index, 1); } if (subscribers.length === 0) { stop(); stop = null; } }; } return { set, update, subscribe }; } function derived(stores, fn, initial_value) { const single = !Array.isArray(stores); const stores_array = single ? [stores] : stores; const auto = fn.length < 2; return readable(initial_value, (set) => { let inited = false; const values = []; let pending = 0; let cleanup = noop; const sync = () => { if (pending) { return; } cleanup(); const result = fn(single ? values[0] : values, set); if (auto) { set(result); } else { cleanup = is_function(result) ? result : noop; } }; const unsubscribers = stores_array.map((store, i) => subscribe(store, (value) => { values[i] = value; pending &= ~(1 << i); if (inited) { sync(); } }, () => { pending |= (1 << i); })); inited = true; sync(); return function stop() { run_all(unsubscribers); cleanup(); }; }); } function regexparam (str, loose) { if (str instanceof RegExp) return { keys:false, pattern:str }; var c, o, tmp, ext, keys=[], pattern='', arr = str.split('/'); arr[0] || arr.shift(); while (tmp = arr.shift()) { c = tmp[0]; if (c === '*') { keys.push('wild'); pattern += '/(.*)'; } else if (c === ':') { o = tmp.indexOf('?', 1); ext = tmp.indexOf('.', 1); keys.push( tmp.substring(1, !!~o ? o : !!~ext ? ext : tmp.length) ); pattern += !!~o && !~ext ? '(?:/([^/]+?))?' : '/([^/]+?)'; if (!!~ext) pattern += (!!~o ? '?' : '') + '\\' + tmp.substring(ext); } else { pattern += '/' + tmp; } } return { keys: keys, pattern: new RegExp('^' + pattern + (loose ? '(?=$|\/)' : '\/?$'), 'i') }; } /* node_modules/svelte-spa-router/Router.svelte generated by Svelte v3.30.0 */ const { Error: Error_1, Object: Object_1, console: console_1 } = globals; // (209:0) {:else} function create_else_block(ctx) { let switch_instance; let switch_instance_anchor; let current; const switch_instance_spread_levels = [/*props*/ ctx[2]]; var switch_value = /*component*/ ctx[0]; function switch_props(ctx) { let switch_instance_props = {}; for (let i = 0; i < switch_instance_spread_levels.length; i += 1) { switch_instance_props = assign(switch_instance_props, switch_instance_spread_levels[i]); } return { props: switch_instance_props, $$inline: true }; } if (switch_value) { switch_instance = new switch_value(switch_props()); switch_instance.$on("routeEvent", /*routeEvent_handler_1*/ ctx[7]); } const block = { c: function create() { if (switch_instance) create_component(switch_instance.$$.fragment); switch_instance_anchor = empty(); }, m: function mount(target, anchor) { if (switch_instance) { mount_component(switch_instance, target, anchor); } insert_dev(target, switch_instance_anchor, anchor); current = true; }, p: function update(ctx, dirty) { const switch_instance_changes = (dirty & /*props*/ 4) ? get_spread_update(switch_instance_spread_levels, [get_spread_object(/*props*/ ctx[2])]) : {}; if (switch_value !== (switch_value = /*component*/ ctx[0])) { if (switch_instance) { group_outros(); const old_component = switch_instance; transition_out(old_component.$$.fragment, 1, 0, () => { destroy_component(old_component, 1); }); check_outros(); } if (switch_value) { switch_instance = new switch_value(switch_props()); switch_instance.$on("routeEvent", /*routeEvent_handler_1*/ ctx[7]); create_component(switch_instance.$$.fragment); transition_in(switch_instance.$$.fragment, 1); mount_component(switch_instance, switch_instance_anchor.parentNode, switch_instance_anchor); } else { switch_instance = null; } } else if (switch_value) { switch_instance.$set(switch_instance_changes); } }, i: function intro(local) { if (current) return; if (switch_instance) transition_in(switch_instance.$$.fragment, local); current = true; }, o: function outro(local) { if (switch_instance) transition_out(switch_instance.$$.fragment, local); current = false; }, d: function destroy(detaching) { if (detaching) detach_dev(switch_instance_anchor); if (switch_instance) destroy_component(switch_instance, detaching); } }; dispatch_dev("SvelteRegisterBlock", { block, id: create_else_block.name, type: "else", source: "(209:0) {:else}", ctx }); return block; } // (202:0) {#if componentParams} function create_if_block(ctx) { let switch_instance; let switch_instance_anchor; let current; const switch_instance_spread_levels = [{ params: /*componentParams*/ ctx[1] }, /*props*/ ctx[2]]; var switch_value = /*component*/ ctx[0]; function switch_props(ctx) { let switch_instance_props = {}; for (let i = 0; i < switch_instance_spread_levels.length; i += 1) { switch_instance_props = assign(switch_instance_props, switch_instance_spread_levels[i]); } return { props: switch_instance_props, $$inline: true }; } if (switch_value) { switch_instance = new switch_value(switch_props()); switch_instance.$on("routeEvent", /*routeEvent_handler*/ ctx[6]); } const block = { c: function create() { if (switch_instance) create_component(switch_instance.$$.fragment); switch_instance_anchor = empty(); }, m: function mount(target, anchor) { if (switch_instance) { mount_component(switch_instance, target, anchor); } insert_dev(target, switch_instance_anchor, anchor); current = true; }, p: function update(ctx, dirty) { const switch_instance_changes = (dirty & /*componentParams, props*/ 6) ? get_spread_update(switch_instance_spread_levels, [ dirty & /*componentParams*/ 2 && { params: /*componentParams*/ ctx[1] }, dirty & /*props*/ 4 && get_spread_object(/*props*/ ctx[2]) ]) : {}; if (switch_value !== (switch_value = /*component*/ ctx[0])) { if (switch_instance) { group_outros(); const old_component = switch_instance; transition_out(old_component.$$.fragment, 1, 0, () => { destroy_component(old_component, 1); }); check_outros(); } if (switch_value) { switch_instance = new switch_value(switch_props()); switch_instance.$on("routeEvent", /*routeEvent_handler*/ ctx[6]); create_component(switch_instance.$$.fragment); transition_in(switch_instance.$$.fragment, 1); mount_component(switch_instance, switch_instance_anchor.parentNode, switch_instance_anchor); } else { switch_instance = null; } } else if (switch_value) { switch_instance.$set(switch_instance_changes); } }, i: function intro(local) { if (current) return; if (switch_instance) transition_in(switch_instance.$$.fragment, local); current = true; }, o: function outro(local) { if (switch_instance) transition_out(switch_instance.$$.fragment, local); current = false; }, d: function destroy(detaching) { if (detaching) detach_dev(switch_instance_anchor); if (switch_instance) destroy_component(switch_instance, detaching); } }; dispatch_dev("SvelteRegisterBlock", { block, id: create_if_block.name, type: "if", source: "(202:0) {#if componentParams}", ctx }); return block; } function create_fragment(ctx) { let current_block_type_index; let if_block; let if_block_anchor; let current; const if_block_creators = [create_if_block, create_else_block]; const if_blocks = []; function select_block_type(ctx, dirty) { if (/*componentParams*/ ctx[1]) return 0; return 1; } current_block_type_index = select_block_type(ctx); if_block = if_blocks[current_block_type_index] = if_block_creators[current_block_type_index](ctx); const block = { c: function create() { if_block.c(); if_block_anchor = empty(); }, l: function claim(nodes) { throw new Error_1("options.hydrate only works if the component was compiled with the `hydratable: true` option"); }, m: function mount(target, anchor) { if_blocks[current_block_type_index].m(target, anchor); insert_dev(target, if_block_anchor, anchor); current = true; }, p: function update(ctx, [dirty]) { let previous_block_index = current_block_type_index; current_block_type_index = select_block_type(ctx); if (current_block_type_index === previous_block_index) { if_blocks[current_block_type_index].p(ctx, dirty); } else { group_outros(); transition_out(if_blocks[previous_block_index], 1, 1, () => { if_blocks[previous_block_index] = null; }); check_outros(); if_block = if_blocks[current_block_type_index]; if (!if_block) { if_block = if_blocks[current_block_type_index] = if_block_creators[current_block_type_index](ctx); if_block.c(); } else { if_block.p(ctx, dirty); } transition_in(if_block, 1); if_block.m(if_block_anchor.parentNode, if_block_anchor); } }, i: function intro(local) { if (current) return; transition_in(if_block); current = true; }, o: function outro(local) { transition_out(if_block); current = false; }, d: function destroy(detaching) { if_blocks[current_block_type_index].d(detaching); if (detaching) detach_dev(if_block_anchor); } }; dispatch_dev("SvelteRegisterBlock", { block, id: create_fragment.name, type: "component", source: "", ctx }); return block; } function wrap$1(component, userData, ...conditions) { // Use the new wrap method and show a deprecation warning // eslint-disable-next-line no-console console.warn("Method `wrap` from `svelte-spa-router` is deprecated and will be removed in a future version. Please use `svelte-spa-router/wrap` instead. See http://bit.ly/svelte-spa-router-upgrading"); return wrap({ component, userData, conditions }); } /** * @typedef {Object} Location * @property {string} location - Location (page/view), for example `/book` * @property {string} [querystring] - Querystring from the hash, as a string not parsed */ /** * Returns the current location from the hash. * * @returns {Location} Location object * @private */ function getLocation() { const hashPosition = window.location.href.indexOf("#/"); let location = hashPosition > -1 ? window.location.href.substr(hashPosition + 1) : "/"; // Check if there's a querystring const qsPosition = location.indexOf("?"); let querystring = ""; if (qsPosition > -1) { querystring = location.substr(qsPosition + 1); location = location.substr(0, qsPosition); } return { location, querystring }; } const loc = readable(null, // eslint-disable-next-line prefer-arrow-callback function start(set) { set(getLocation()); const update = () => { set(getLocation()); }; window.addEventListener("hashchange", update, false); return function stop() { window.removeEventListener("hashchange", update, false); }; }); const location = derived(loc, $loc => $loc.location); const querystring = derived(loc, $loc => $loc.querystring); async function push(location) { if (!location || location.length < 1 || location.charAt(0) != "/" && location.indexOf("#/") !== 0) { throw Error("Invalid parameter location"); } // Execute this code when the current call stack is complete await tick(); // Note: this will include scroll state in history even when restoreScrollState is false history.replaceState( { scrollX: window.scrollX, scrollY: window.scrollY }, undefined, undefined ); window.location.hash = (location.charAt(0) == "#" ? "" : "#") + location; } async function pop() { // Execute this code when the current call stack is complete await tick(); window.history.back(); } async function replace(location) { if (!location || location.length < 1 || location.charAt(0) != "/" && location.indexOf("#/") !== 0) { throw Error("Invalid parameter location"); } // Execute this code when the current call stack is complete await tick(); const dest = (location.charAt(0) == "#" ? "" : "#") + location; try { window.history.replaceState(undefined, undefined, dest); } catch(e) { // eslint-disable-next-line no-console console.warn("Caught exception while replacing the current page. If you're running this in the Svelte REPL, please note that the `replace` method might not work in this environment."); } // The method above doesn't trigger the hashchange event, so let's do that manually window.dispatchEvent(new Event("hashchange")); } function link(node, hrefVar) { // Only apply to tags if (!node || !node.tagName || node.tagName.toLowerCase() != "a") { throw Error("Action \"link\" can only be used with tags"); } updateLink(node, hrefVar || node.getAttribute("href")); return { update(updated) { updateLink(node, updated); } }; } // Internal function used by the link function function updateLink(node, href) { // Destination must start with '/' if (!href || href.length < 1 || href.charAt(0) != "/") { throw Error("Invalid value for \"href\" attribute: " + href); } // Add # to the href attribute node.setAttribute("href", "#" + href); node.addEventListener("click", scrollstateHistoryHandler); } /** * The handler attached to an anchor tag responsible for updating the * current history state with the current scroll state * * @param {HTMLElementEventMap} event - an onclick event attached to an anchor tag */ function scrollstateHistoryHandler(event) { // Prevent default anchor onclick behaviour event.preventDefault(); const href = event.currentTarget.getAttribute("href"); // Setting the url (3rd arg) to href will break clicking for reasons, so don't try to do that history.replaceState( { scrollX: window.scrollX, scrollY: window.scrollY }, undefined, undefined ); // This will force an update as desired, but this time our scroll state will be attached window.location.hash = href; } function instance($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots("Router", slots, []); let { routes = {} } = $$props; let { prefix = "" } = $$props; let { restoreScrollState = false } = $$props; /** * Container for a route: path, component */ class RouteItem { /** * Initializes the object and creates a regular expression from the path, using regexparam. * * @param {string} path - Path to the route (must start with '/' or '*') * @param {SvelteComponent|WrappedComponent} component - Svelte component for the route, optionally wrapped */ constructor(path, component) { if (!component || typeof component != "function" && (typeof component != "object" || component._sveltesparouter !== true)) { throw Error("Invalid component object"); } // Path must be a regular or expression, or a string starting with '/' or '*' if (!path || typeof path == "string" && (path.length < 1 || path.charAt(0) != "/" && path.charAt(0) != "*") || typeof path == "object" && !(path instanceof RegExp)) { throw Error("Invalid value for \"path\" argument"); } const { pattern, keys } = regexparam(path); this.path = path; // Check if the component is wrapped and we have conditions if (typeof component == "object" && component._sveltesparouter === true) { this.component = component.component; this.conditions = component.conditions || []; this.userData = component.userData; this.props = component.props || {}; } else { // Convert the component to a function that returns a Promise, to normalize it this.component = () => Promise.resolve(component); this.conditions = []; this.props = {}; } this._pattern = pattern; this._keys = keys; } /** * Checks if `path` matches the current route. * If there's a match, will return the list of parameters from the URL (if any). * In case of no match, the method will return `null`. * * @param {string} path - Path to test * @returns {null|Object.} List of paramters from the URL if there's a match, or `null` otherwise. */ match(path) { // If there's a prefix, remove it before we run the matching if (prefix) { if (typeof prefix == "string" && path.startsWith(prefix)) { path = path.substr(prefix.length) || "/"; } else if (prefix instanceof RegExp) { const match = path.match(prefix); if (match && match[0]) { path = path.substr(match[0].length) || "/"; } } } // Check if the pattern matches const matches = this._pattern.exec(path); if (matches === null) { return null; } // If the input was a regular expression, this._keys would be false, so return matches as is if (this._keys === false) { return matches; } const out = {}; let i = 0; while (i < this._keys.length) { // In the match parameters, URL-decode all values try { out[this._keys[i]] = decodeURIComponent(matches[i + 1] || "") || null; } catch(e) { out[this._keys[i]] = null; } i++; } return out; } /** * Dictionary with route details passed to the pre-conditions functions, as well as the `routeLoading`, `routeLoaded` and `conditionsFailed` events * @typedef {Object} RouteDetail * @property {string|RegExp} route - Route matched as defined in the route definition (could be a string or a reguar expression object) * @property {string} location - Location path * @property {string} querystring - Querystring from the hash * @property {object} [userData] - Custom data passed by the user * @property {SvelteComponent} [component] - Svelte component (only in `routeLoaded` events) * @property {string} [name] - Name of the Svelte component (only in `routeLoaded` events) */ /** * Executes all conditions (if any) to control whether the route can be shown. Conditions are executed in the order they are defined, and if a condition fails, the following ones aren't executed. * * @param {RouteDetail} detail - Route detail * @returns {bool} Returns true if all the conditions succeeded */ async checkConditions(detail) { for (let i = 0; i < this.conditions.length; i++) { if (!await this.conditions[i](detail)) { return false; } } return true; } } // Set up all routes const routesList = []; if (routes instanceof Map) { // If it's a map, iterate on it right away routes.forEach((route, path) => { routesList.push(new RouteItem(path, route)); }); } else { // We have an object, so iterate on its own properties Object.keys(routes).forEach(path => { routesList.push(new RouteItem(path, routes[path])); }); } // Props for the component to render let component = null; let componentParams = null; let props = {}; // Event dispatcher from Svelte const dispatch = createEventDispatcher(); // Just like dispatch, but executes on the next iteration of the event loop async function dispatchNextTick(name, detail) { // Execute this code when the current call stack is complete await tick(); dispatch(name, detail); } // If this is set, then that means we have popped into this var the state of our last scroll position let previousScrollState = null; if (restoreScrollState) { window.addEventListener("popstate", event => { // If this event was from our history.replaceState, event.state will contain // our scroll history. Otherwise, event.state will be null (like on forward // navigation) if (event.state && event.state.scrollY) { previousScrollState = event.state; } else { previousScrollState = null; } }); afterUpdate(() => { // If this exists, then this is a back navigation: restore the scroll position if (previousScrollState) { window.scrollTo(previousScrollState.scrollX, previousScrollState.scrollY); } else { // Otherwise this is a forward navigation: scroll to top window.scrollTo(0, 0); } }); } // Always have the latest value of loc let lastLoc = null; // Current object of the component loaded let componentObj = null; // Handle hash change events // Listen to changes in the $loc store and update the page // Do not use the $: syntax because it gets triggered by too many things loc.subscribe(async newLoc => { lastLoc = newLoc; // Find a route matching the location let i = 0; while (i < routesList.length) { const match = routesList[i].match(newLoc.location); if (!match) { i++; continue; } const detail = { route: routesList[i].path, location: newLoc.location, querystring: newLoc.querystring, userData: routesList[i].userData }; // Check if the route can be loaded - if all conditions succeed if (!await routesList[i].checkConditions(detail)) { // Don't display anything $$invalidate(0, component = null); componentObj = null; // Trigger an event to notify the user, then exit dispatchNextTick("conditionsFailed", detail); return; } // Trigger an event to alert that we're loading the route // We need to clone the object on every event invocation so we don't risk the object to be modified in the next tick dispatchNextTick("routeLoading", Object.assign({}, detail)); // If there's a component to show while we're loading the route, display it const obj = routesList[i].component; // Do not replace the component if we're loading the same one as before, to avoid the route being unmounted and re-mounted if (componentObj != obj) { if (obj.loading) { $$invalidate(0, component = obj.loading); componentObj = obj; $$invalidate(1, componentParams = obj.loadingParams); $$invalidate(2, props = {}); // Trigger the routeLoaded event for the loading component // Create a copy of detail so we don't modify the object for the dynamic route (and the dynamic route doesn't modify our object too) dispatchNextTick("routeLoaded", Object.assign({}, detail, { component, name: component.name })); } else { $$invalidate(0, component = null); componentObj = null; } // Invoke the Promise const loaded = await obj(); // Now that we're here, after the promise resolved, check if we still want this component, as the user might have navigated to another page in the meanwhile if (newLoc != lastLoc) { // Don't update the component, just exit return; } // If there is a "default" property, which is used by async routes, then pick that $$invalidate(0, component = loaded && loaded.default || loaded); componentObj = obj; } // Set componentParams only if we have a match, to avoid a warning similar to ` was created with unknown prop 'params'` // Of course, this assumes that developers always add a "params" prop when they are expecting parameters if (match && typeof match == "object" && Object.keys(match).length) { $$invalidate(1, componentParams = match); } else { $$invalidate(1, componentParams = null); } // Set static props, if any $$invalidate(2, props = routesList[i].props); // Dispatch the routeLoaded event then exit // We need to clone the object on every event invocation so we don't risk the object to be modified in the next tick dispatchNextTick("routeLoaded", Object.assign({}, detail, { component, name: component.name })); return; } // If we're still here, there was no match, so show the empty component $$invalidate(0, component = null); componentObj = null; }); const writable_props = ["routes", "prefix", "restoreScrollState"]; Object_1.keys($$props).forEach(key => { if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console_1.warn(` was created with unknown prop '${key}'`); }); function routeEvent_handler(event) { bubble($$self, event); } function routeEvent_handler_1(event) { bubble($$self, event); } $$self.$$set = $$props => { if ("routes" in $$props) $$invalidate(3, routes = $$props.routes); if ("prefix" in $$props) $$invalidate(4, prefix = $$props.prefix); if ("restoreScrollState" in $$props) $$invalidate(5, restoreScrollState = $$props.restoreScrollState); }; $$self.$capture_state = () => ({ readable, derived, tick, _wrap: wrap, wrap: wrap$1, getLocation, loc, location, querystring, push, pop, replace, link, updateLink, scrollstateHistoryHandler, createEventDispatcher, afterUpdate, regexparam, routes, prefix, restoreScrollState, RouteItem, routesList, component, componentParams, props, dispatch, dispatchNextTick, previousScrollState, lastLoc, componentObj }); $$self.$inject_state = $$props => { if ("routes" in $$props) $$invalidate(3, routes = $$props.routes); if ("prefix" in $$props) $$invalidate(4, prefix = $$props.prefix); if ("restoreScrollState" in $$props) $$invalidate(5, restoreScrollState = $$props.restoreScrollState); if ("component" in $$props) $$invalidate(0, component = $$props.component); if ("componentParams" in $$props) $$invalidate(1, componentParams = $$props.componentParams); if ("props" in $$props) $$invalidate(2, props = $$props.props); if ("previousScrollState" in $$props) previousScrollState = $$props.previousScrollState; if ("lastLoc" in $$props) lastLoc = $$props.lastLoc; if ("componentObj" in $$props) componentObj = $$props.componentObj; }; if ($$props && "$$inject" in $$props) { $$self.$inject_state($$props.$$inject); } $$self.$$.update = () => { if ($$self.$$.dirty & /*restoreScrollState*/ 32) { // Update history.scrollRestoration depending on restoreScrollState history.scrollRestoration = restoreScrollState ? "manual" : "auto"; } }; return [ component, componentParams, props, routes, prefix, restoreScrollState, routeEvent_handler, routeEvent_handler_1 ]; } class Router extends SvelteComponentDev { constructor(options) { super(options); init(this, options, instance, create_fragment, safe_not_equal, { routes: 3, prefix: 4, restoreScrollState: 5 }); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "Router", options, id: create_fragment.name }); } get routes() { throw new Error_1(": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"); } set routes(value) { throw new Error_1(": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"); } get prefix() { throw new Error_1(": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"); } set prefix(value) { throw new Error_1(": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"); } get restoreScrollState() { throw new Error_1(": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"); } set restoreScrollState(value) { throw new Error_1(": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"); } } /* src/components/Icon.svelte generated by Svelte v3.30.0 */ const file = "src/components/Icon.svelte"; function create_fragment$1(ctx) { let span; let svg; let use; let use_xlink_href_value; let svg_class_value; let svg_stroke_value; const block = { c: function create() { span = element("span"); svg = svg_element("svg"); use = svg_element("use"); xlink_attr(use, "xlink:href", use_xlink_href_value = "/icons/feather-sprite.svg#" + /*name*/ ctx[7]); add_location(use, file, 32, 2, 670); attr_dev(svg, "class", svg_class_value = "icon-" + /*name*/ ctx[7] + " svelte-1iby9by"); attr_dev(svg, "width", /*size*/ ctx[0]); attr_dev(svg, "height", /*size*/ ctx[0]); attr_dev(svg, "fill", /*fill*/ ctx[1]); attr_dev(svg, "stroke", svg_stroke_value = /*light*/ ctx[3] ? /*light_color*/ ctx[9] : /*color*/ ctx[2]); attr_dev(svg, "stroke-width", /*width*/ ctx[4]); attr_dev(svg, "stroke-linecap", /*linecap*/ ctx[5]); attr_dev(svg, "stroke-linejoin", /*linejoin*/ ctx[6]); toggle_class(svg, "inactive", /*inactive*/ ctx[8]); add_location(svg, file, 23, 2, 436); add_location(span, file, 22, 0, 427); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); }, m: function mount(target, anchor) { insert_dev(target, span, anchor); append_dev(span, svg); append_dev(svg, use); }, p: function update(ctx, [dirty]) { if (dirty & /*name*/ 128 && use_xlink_href_value !== (use_xlink_href_value = "/icons/feather-sprite.svg#" + /*name*/ ctx[7])) { xlink_attr(use, "xlink:href", use_xlink_href_value); } if (dirty & /*name*/ 128 && svg_class_value !== (svg_class_value = "icon-" + /*name*/ ctx[7] + " svelte-1iby9by")) { attr_dev(svg, "class", svg_class_value); } if (dirty & /*size*/ 1) { attr_dev(svg, "width", /*size*/ ctx[0]); } if (dirty & /*size*/ 1) { attr_dev(svg, "height", /*size*/ ctx[0]); } if (dirty & /*fill*/ 2) { attr_dev(svg, "fill", /*fill*/ ctx[1]); } if (dirty & /*light, light_color, color*/ 524 && svg_stroke_value !== (svg_stroke_value = /*light*/ ctx[3] ? /*light_color*/ ctx[9] : /*color*/ ctx[2])) { attr_dev(svg, "stroke", svg_stroke_value); } if (dirty & /*width*/ 16) { attr_dev(svg, "stroke-width", /*width*/ ctx[4]); } if (dirty & /*linecap*/ 32) { attr_dev(svg, "stroke-linecap", /*linecap*/ ctx[5]); } if (dirty & /*linejoin*/ 64) { attr_dev(svg, "stroke-linejoin", /*linejoin*/ ctx[6]); } if (dirty & /*name, inactive*/ 384) { toggle_class(svg, "inactive", /*inactive*/ ctx[8]); } }, i: noop, o: noop, d: function destroy(detaching) { if (detaching) detach_dev(span); } }; dispatch_dev("SvelteRegisterBlock", { block, id: create_fragment$1.name, type: "component", source: "", ctx }); return block; } function instance$1($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots("Icon", slots, []); let { size = "24" } = $$props; let { fill = "none" } = $$props; let { color = "var(--color)" } = $$props; let { light = false } = $$props; let { width = "2" } = $$props; let { linecap = "round" } = $$props; let { linejoin = "round" } = $$props; let { name } = $$props; let { inactive = false } = $$props; let { light_color = "var(--color)" } = $$props; const writable_props = [ "size", "fill", "color", "light", "width", "linecap", "linejoin", "name", "inactive", "light_color" ]; Object.keys($$props).forEach(key => { if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(` was created with unknown prop '${key}'`); }); $$self.$$set = $$props => { if ("size" in $$props) $$invalidate(0, size = $$props.size); if ("fill" in $$props) $$invalidate(1, fill = $$props.fill); if ("color" in $$props) $$invalidate(2, color = $$props.color); if ("light" in $$props) $$invalidate(3, light = $$props.light); if ("width" in $$props) $$invalidate(4, width = $$props.width); if ("linecap" in $$props) $$invalidate(5, linecap = $$props.linecap); if ("linejoin" in $$props) $$invalidate(6, linejoin = $$props.linejoin); if ("name" in $$props) $$invalidate(7, name = $$props.name); if ("inactive" in $$props) $$invalidate(8, inactive = $$props.inactive); if ("light_color" in $$props) $$invalidate(9, light_color = $$props.light_color); }; $$self.$capture_state = () => ({ size, fill, color, light, width, linecap, linejoin, name, inactive, light_color }); $$self.$inject_state = $$props => { if ("size" in $$props) $$invalidate(0, size = $$props.size); if ("fill" in $$props) $$invalidate(1, fill = $$props.fill); if ("color" in $$props) $$invalidate(2, color = $$props.color); if ("light" in $$props) $$invalidate(3, light = $$props.light); if ("width" in $$props) $$invalidate(4, width = $$props.width); if ("linecap" in $$props) $$invalidate(5, linecap = $$props.linecap); if ("linejoin" in $$props) $$invalidate(6, linejoin = $$props.linejoin); if ("name" in $$props) $$invalidate(7, name = $$props.name); if ("inactive" in $$props) $$invalidate(8, inactive = $$props.inactive); if ("light_color" in $$props) $$invalidate(9, light_color = $$props.light_color); }; if ($$props && "$$inject" in $$props) { $$self.$inject_state($$props.$$inject); } return [ size, fill, color, light, width, linecap, linejoin, name, inactive, light_color ]; } class Icon extends SvelteComponentDev { constructor(options) { super(options); init(this, options, instance$1, create_fragment$1, safe_not_equal, { size: 0, fill: 1, color: 2, light: 3, width: 4, linecap: 5, linejoin: 6, name: 7, inactive: 8, light_color: 9 }); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "Icon", options, id: create_fragment$1.name }); const { ctx } = this.$$; const props = options.props || {}; if (/*name*/ ctx[7] === undefined && !("name" in props)) { console.warn(" was created without expected prop 'name'"); } } get size() { throw new Error(": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"); } set size(value) { throw new Error(": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"); } get fill() { throw new Error(": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"); } set fill(value) { throw new Error(": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"); } get color() { throw new Error(": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"); } set color(value) { throw new Error(": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"); } get light() { throw new Error(": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"); } set light(value) { throw new Error(": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"); } get width() { throw new Error(": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"); } set width(value) { throw new Error(": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"); } get linecap() { throw new Error(": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"); } set linecap(value) { throw new Error(": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"); } get linejoin() { throw new Error(": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"); } set linejoin(value) { throw new Error(": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"); } get name() { throw new Error(": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"); } set name(value) { throw new Error(": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"); } get inactive() { throw new Error(": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"); } set inactive(value) { throw new Error(": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"); } get light_color() { throw new Error(": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"); } set light_color(value) { throw new Error(": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"); } } /* src/Home.svelte generated by Svelte v3.30.0 */ const file$1 = "src/Home.svelte"; function create_fragment$2(ctx) { let hero; let h10; let t1; let p0; let t2; let b0; let t4; let b1; let t6; let t7; let hr0; let t8; let section0; let aside0; let h30; let t10; let icon0; let t11; let p1; let t12; let a0; let t14; let t15; let aside1; let h31; let t17; let icon1; let t18; let p2; let t19; let a1; let t21; let a2; let t23; let t24; let aside2; let h32; let t26; let icon2; let t27; let p3; let t29; let rationale; let section1; let h11; let t31; let p4; let t32; let b2; let t34; let t35; let p5; let t37; let section2; let aside3; let pre0; let t39; let p6; let t41; let section3; let aside4; let pre1; let t43; let hr1; let t44; let section4; let p7; let t45; let a3; let t47; let t48; let a4; let button; let link_action; let current; let mounted; let dispose; icon0 = new Icon({ props: { name: "code", size: "64" }, $$inline: true }); icon1 = new Icon({ props: { name: "box", size: "64" }, $$inline: true }); icon2 = new Icon({ props: { name: "sliders", size: "64" }, $$inline: true }); const block = { c: function create() { hero = element("hero"); h10 = element("h1"); h10.textContent = "fsck CSS"; t1 = space(); p0 = element("p"); t2 = text("An experiment in cleaning up CSS and HTML with modern tools like "); b0 = element("b"); b0.textContent = "flexbox"; t4 = text(" and "); b1 = element("b"); b1.textContent = "grids"; t6 = text("."); t7 = space(); hr0 = element("hr"); t8 = space(); section0 = element("section"); aside0 = element("aside"); h30 = element("h3"); h30.textContent = "Remove Classes"; t10 = space(); create_component(icon0.$$.fragment); t11 = space(); p1 = element("p"); t12 = text("Using a classless style like "); a0 = element("a"); a0.textContent = "MVP.css"; t14 = text(", you\n bring back CSS specificity to its original intent."); t15 = space(); aside1 = element("aside"); h31 = element("h3"); h31.textContent = "Add Flexbox + Grids"; t17 = space(); create_component(icon1.$$.fragment); t18 = space(); p2 = element("p"); t19 = text("Using "); a1 = element("a"); a1.textContent = "flexbox"; t21 = text(" and "); a2 = element("a"); a2.textContent = "CSS grids"; t23 = text(" you can layout anything you want without structure divs."); t24 = space(); aside2 = element("aside"); h32 = element("h3"); h32.textContent = "Modify with Variables"; t26 = space(); create_component(icon2.$$.fragment); t27 = space(); p3 = element("p"); p3.textContent = "Using CSS variables you can replace many uses of classes and ids, avoiding most specificity\n issues. Try the dark mode button below."; t29 = space(); rationale = element("rationale"); section1 = element("section"); h11 = element("h1"); h11.textContent = "Cleaner CSS"; t31 = space(); p4 = element("p"); t32 = text("This website is nothing more than a set of small demos for the idea of\n using flexbox and grids to clean up and simplify CSS. Most everything else\n about CSS stays. Filters, transforms, attributes, and everything that\n applies to the visual display of the components of a design. What gets\n removed is "); b2 = element("b"); b2.textContent = "div"; t34 = text(" heavy, class heavy, not-semantic-at-all layout\n systems cluttering the real information available through simple HTML\n tags."); t35 = space(); p5 = element("p"); p5.textContent = "In short, if you're writing this:"; t37 = space(); section2 = element("section"); aside3 = element("aside"); pre0 = element("pre"); pre0.textContent = "
\n
\n ...\n
\n
"; t39 = space(); p6 = element("p"); p6.textContent = "You could write this if you use flexbox, grids, and variables:"; t41 = space(); section3 = element("section"); aside4 = element("aside"); pre1 = element("pre"); pre1.textContent = "\n ...\n"; t43 = space(); hr1 = element("hr"); t44 = space(); section4 = element("section"); p7 = element("p"); t45 = text("I demonstrate the idea with a series of copies of existing websites and other layout problems \n people frequently encounter. If you have a suggested layout challenge for me, then tell me on Twitter "); a3 = element("a"); a3.textContent = "@lzsthw"; t47 = text(" and I'll give it a shot."); t48 = space(); a4 = element("a"); button = element("button"); button.textContent = "View The Demos"; attr_dev(h10, "class", "svelte-1bhnwkb"); add_location(h10, file$1, 36, 0, 544); add_location(b0, file$1, 37, 68, 630); add_location(b1, file$1, 37, 87, 649); add_location(p0, file$1, 37, 0, 562); attr_dev(hero, "class", "svelte-1bhnwkb"); add_location(hero, file$1, 35, 0, 537); add_location(hr0, file$1, 40, 0, 676); add_location(h30, file$1, 44, 4, 706); attr_dev(a0, "href", "https://andybrewer.github.io/mvp/"); attr_dev(a0, "class", "svelte-1bhnwkb"); add_location(a0, file$1, 46, 36, 801); add_location(p1, file$1, 46, 4, 769); attr_dev(aside0, "class", "svelte-1bhnwkb"); add_location(aside0, file$1, 43, 2, 694); add_location(h31, file$1, 51, 4, 949); attr_dev(a1, "href", "https://css-tricks.com/snippets/css/a-guide-to-flexbox/"); attr_dev(a1, "class", "svelte-1bhnwkb"); add_location(a1, file$1, 53, 13, 1025); attr_dev(a2, "href", "https://css-tricks.com/snippets/css/complete-guide-grid/"); attr_dev(a2, "class", "svelte-1bhnwkb"); add_location(a2, file$1, 53, 95, 1107); add_location(p2, file$1, 53, 4, 1016); attr_dev(aside1, "class", "svelte-1bhnwkb"); add_location(aside1, file$1, 50, 2, 937); add_location(h32, file$1, 57, 4, 1275); add_location(p3, file$1, 59, 4, 1348); add_location(aside2, file$1, 56, 2, 1263); add_location(section0, file$1, 42, 0, 682); add_location(h11, file$1, 68, 2, 1546); add_location(section1, file$1, 67, 0, 1534); add_location(b2, file$1, 75, 13, 1890); add_location(p4, file$1, 71, 0, 1579); add_location(p5, file$1, 79, 0, 2033); add_location(pre0, file$1, 83, 4, 2099); add_location(aside3, file$1, 82, 2, 2087); add_location(section2, file$1, 81, 0, 2075); add_location(p6, file$1, 93, 0, 2231); add_location(pre1, file$1, 97, 4, 2326); add_location(aside4, file$1, 96, 2, 2314); add_location(section3, file$1, 95, 0, 2302); add_location(hr1, file$1, 105, 0, 2399); attr_dev(a3, "href", "https://twitter.com/lzsthw"); add_location(a3, file$1, 108, 107, 2621); add_location(p7, file$1, 107, 2, 2416); attr_dev(button, "id", "demo-link"); attr_dev(button, "class", "svelte-1bhnwkb"); add_location(button, file$1, 110, 28, 2730); attr_dev(a4, "href", "/demos"); add_location(a4, file$1, 110, 2, 2704); add_location(section4, file$1, 106, 0, 2404); attr_dev(rationale, "class", "svelte-1bhnwkb"); add_location(rationale, file$1, 66, 0, 1522); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); }, m: function mount(target, anchor) { insert_dev(target, hero, anchor); append_dev(hero, h10); append_dev(hero, t1); append_dev(hero, p0); append_dev(p0, t2); append_dev(p0, b0); append_dev(p0, t4); append_dev(p0, b1); append_dev(p0, t6); insert_dev(target, t7, anchor); insert_dev(target, hr0, anchor); insert_dev(target, t8, anchor); insert_dev(target, section0, anchor); append_dev(section0, aside0); append_dev(aside0, h30); append_dev(aside0, t10); mount_component(icon0, aside0, null); append_dev(aside0, t11); append_dev(aside0, p1); append_dev(p1, t12); append_dev(p1, a0); append_dev(p1, t14); append_dev(section0, t15); append_dev(section0, aside1); append_dev(aside1, h31); append_dev(aside1, t17); mount_component(icon1, aside1, null); append_dev(aside1, t18); append_dev(aside1, p2); append_dev(p2, t19); append_dev(p2, a1); append_dev(p2, t21); append_dev(p2, a2); append_dev(p2, t23); append_dev(section0, t24); append_dev(section0, aside2); append_dev(aside2, h32); append_dev(aside2, t26); mount_component(icon2, aside2, null); append_dev(aside2, t27); append_dev(aside2, p3); insert_dev(target, t29, anchor); insert_dev(target, rationale, anchor); append_dev(rationale, section1); append_dev(section1, h11); append_dev(rationale, t31); append_dev(rationale, p4); append_dev(p4, t32); append_dev(p4, b2); append_dev(p4, t34); append_dev(rationale, t35); append_dev(rationale, p5); append_dev(rationale, t37); append_dev(rationale, section2); append_dev(section2, aside3); append_dev(aside3, pre0); append_dev(rationale, t39); append_dev(rationale, p6); append_dev(rationale, t41); append_dev(rationale, section3); append_dev(section3, aside4); append_dev(aside4, pre1); append_dev(rationale, t43); append_dev(rationale, hr1); append_dev(rationale, t44); append_dev(rationale, section4); append_dev(section4, p7); append_dev(p7, t45); append_dev(p7, a3); append_dev(p7, t47); append_dev(section4, t48); append_dev(section4, a4); append_dev(a4, button); current = true; if (!mounted) { dispose = action_destroyer(link_action = link.call(null, a4)); mounted = true; } }, p: noop, i: function intro(local) { if (current) return; transition_in(icon0.$$.fragment, local); transition_in(icon1.$$.fragment, local); transition_in(icon2.$$.fragment, local); current = true; }, o: function outro(local) { transition_out(icon0.$$.fragment, local); transition_out(icon1.$$.fragment, local); transition_out(icon2.$$.fragment, local); current = false; }, d: function destroy(detaching) { if (detaching) detach_dev(hero); if (detaching) detach_dev(t7); if (detaching) detach_dev(hr0); if (detaching) detach_dev(t8); if (detaching) detach_dev(section0); destroy_component(icon0); destroy_component(icon1); destroy_component(icon2); if (detaching) detach_dev(t29); if (detaching) detach_dev(rationale); mounted = false; dispose(); } }; dispatch_dev("SvelteRegisterBlock", { block, id: create_fragment$2.name, type: "component", source: "", ctx }); return block; } function instance$2($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots("Home", slots, []); const writable_props = []; Object.keys($$props).forEach(key => { if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(` was created with unknown prop '${key}'`); }); $$self.$capture_state = () => ({ link, Icon }); return []; } class Home extends SvelteComponentDev { constructor(options) { super(options); init(this, options, instance$2, create_fragment$2, safe_not_equal, {}); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "Home", options, id: create_fragment$2.name }); } } /* src/thumbs/Google.svelte generated by Svelte v3.30.0 */ const file$2 = "src/thumbs/Google.svelte"; function create_fragment$3(ctx) { let content; let header; let nav; let nav_left; let a0; let t1; let a1; let t3; let ul; let li0; let t5; let li1; let t7; let li2; let icon; let t8; let li3; let button0; let t10; let figure; let a2; let img; let img_src_value; let link_action; let t11; let search; let input; let t12; let buttons; let button1; let t14; let button2; let current; let mounted; let dispose; icon = new Icon({ props: { name: "grid", color: "#000" }, $$inline: true }); const block = { c: function create() { content = element("content"); header = element("header"); nav = element("nav"); nav_left = element("nav-left"); a0 = element("a"); a0.textContent = "About"; t1 = space(); a1 = element("a"); a1.textContent = "Store"; t3 = space(); ul = element("ul"); li0 = element("li"); li0.textContent = "Gmail"; t5 = space(); li1 = element("li"); li1.textContent = "Image"; t7 = space(); li2 = element("li"); create_component(icon.$$.fragment); t8 = space(); li3 = element("li"); button0 = element("button"); button0.textContent = "Sign In"; t10 = space(); figure = element("figure"); a2 = element("a"); img = element("img"); t11 = space(); search = element("search"); input = element("input"); t12 = space(); buttons = element("buttons"); button1 = element("button"); button1.textContent = "Google Search"; t14 = space(); button2 = element("button"); button2.textContent = "I'm Feeling Lucky"; attr_dev(a0, "class", "svelte-1xw0xeo"); add_location(a0, file$2, 74, 8, 1064); attr_dev(a1, "class", "svelte-1xw0xeo"); add_location(a1, file$2, 75, 8, 1085); add_location(nav_left, file$2, 73, 6, 1045); add_location(li0, file$2, 78, 6, 1133); add_location(li1, file$2, 79, 6, 1154); add_location(li2, file$2, 80, 6, 1175); attr_dev(button0, "class", "svelte-1xw0xeo"); add_location(button0, file$2, 81, 10, 1228); add_location(li3, file$2, 81, 6, 1224); add_location(ul, file$2, 77, 6, 1122); attr_dev(nav, "class", "svelte-1xw0xeo"); add_location(nav, file$2, 72, 4, 1033); attr_dev(header, "class", "svelte-1xw0xeo"); add_location(header, file$2, 71, 2, 1020); if (img.src !== (img_src_value = "http://via.placeholder.com/500x200?text=Google+Doodle")) attr_dev(img, "src", img_src_value); add_location(img, file$2, 88, 6, 1349); attr_dev(a2, "href", "/demos/google"); attr_dev(a2, "class", "svelte-1xw0xeo"); add_location(a2, file$2, 87, 4, 1309); attr_dev(figure, "class", "svelte-1xw0xeo"); add_location(figure, file$2, 86, 2, 1296); attr_dev(input, "type", "text"); attr_dev(input, "class", "svelte-1xw0xeo"); add_location(input, file$2, 93, 2, 1450); attr_dev(button1, "class", "svelte-1xw0xeo"); add_location(button1, file$2, 95, 6, 1490); attr_dev(button2, "class", "svelte-1xw0xeo"); add_location(button2, file$2, 96, 6, 1527); attr_dev(buttons, "class", "svelte-1xw0xeo"); add_location(buttons, file$2, 94, 4, 1474); attr_dev(search, "class", "svelte-1xw0xeo"); add_location(search, file$2, 92, 2, 1439); attr_dev(content, "class", "svelte-1xw0xeo"); add_location(content, file$2, 70, 0, 1008); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); }, m: function mount(target, anchor) { insert_dev(target, content, anchor); append_dev(content, header); append_dev(header, nav); append_dev(nav, nav_left); append_dev(nav_left, a0); append_dev(nav_left, t1); append_dev(nav_left, a1); append_dev(nav, t3); append_dev(nav, ul); append_dev(ul, li0); append_dev(ul, t5); append_dev(ul, li1); append_dev(ul, t7); append_dev(ul, li2); mount_component(icon, li2, null); append_dev(ul, t8); append_dev(ul, li3); append_dev(li3, button0); append_dev(content, t10); append_dev(content, figure); append_dev(figure, a2); append_dev(a2, img); append_dev(content, t11); append_dev(content, search); append_dev(search, input); append_dev(search, t12); append_dev(search, buttons); append_dev(buttons, button1); append_dev(buttons, t14); append_dev(buttons, button2); current = true; if (!mounted) { dispose = action_destroyer(link_action = link.call(null, a2)); mounted = true; } }, p: noop, i: function intro(local) { if (current) return; transition_in(icon.$$.fragment, local); current = true; }, o: function outro(local) { transition_out(icon.$$.fragment, local); current = false; }, d: function destroy(detaching) { if (detaching) detach_dev(content); destroy_component(icon); mounted = false; dispose(); } }; dispatch_dev("SvelteRegisterBlock", { block, id: create_fragment$3.name, type: "component", source: "", ctx }); return block; } function instance$3($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots("Google", slots, []); const writable_props = []; Object.keys($$props).forEach(key => { if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(` was created with unknown prop '${key}'`); }); $$self.$capture_state = () => ({ link, Icon }); return []; } class Google extends SvelteComponentDev { constructor(options) { super(options); init(this, options, instance$3, create_fragment$3, safe_not_equal, {}); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "Google", options, id: create_fragment$3.name }); } } /* src/thumbs/Twitter.svelte generated by Svelte v3.30.0 */ const file$3 = "src/thumbs/Twitter.svelte"; function create_fragment$4(ctx) { let content; let middle; let header; let nav; let back; let icon0; let t0; let name; let h4; let t2; let span; let t4; let images; let figure0; let img0; let img0_src_value; let t5; let figure1; let img1; let img1_src_value; let t6; let button; let t8; let profile; let h3; let t10; let p0; let t12; let p1; let t14; let p2; let icon1; let t15; let icon2; let t16; let a; let t18; let icon3; let t19; let t20; let p3; let b0; let t22; let b1; let t24; let current; icon0 = new Icon({ props: { name: "arrow-left" }, $$inline: true }); icon1 = new Icon({ props: { name: "map", size: "24", color: "var(--color-bg-secondary)" }, $$inline: true }); icon2 = new Icon({ props: { name: "link", size: "24", color: "var(--color-bg-secondary)" }, $$inline: true }); icon3 = new Icon({ props: { name: "calendar", size: "24", color: "var(--color-bg-secondary)" }, $$inline: true }); const block = { c: function create() { content = element("content"); middle = element("middle"); header = element("header"); nav = element("nav"); back = element("back"); create_component(icon0.$$.fragment); t0 = space(); name = element("name"); h4 = element("h4"); h4.textContent = "Zed A. Shaw, Writer"; t2 = space(); span = element("span"); span.textContent = "7,754 Tweets"; t4 = space(); images = element("images"); figure0 = element("figure"); img0 = element("img"); t5 = space(); figure1 = element("figure"); img1 = element("img"); t6 = space(); button = element("button"); button.textContent = "Follow"; t8 = space(); profile = element("profile"); h3 = element("h3"); h3.textContent = "Zed A. Shaw, Writer"; t10 = space(); p0 = element("p"); p0.textContent = "@lzsthw"; t12 = space(); p1 = element("p"); p1.textContent = "The author of The Hard Way Series published by Addison/Wesley including Learn Python The Hard Way and many more. Follow me here for coding tips and book news."; t14 = space(); p2 = element("p"); create_component(icon1.$$.fragment); t15 = text(" Some Place, KY "); create_component(icon2.$$.fragment); t16 = space(); a = element("a"); a.textContent = "learnjsthehardway.org"; t18 = space(); create_component(icon3.$$.fragment); t19 = text(" Joined Jan, 1999."); t20 = space(); p3 = element("p"); b0 = element("b"); b0.textContent = "167"; t22 = text(" Following "); b1 = element("b"); b1.textContent = "10.4k"; t24 = text(" Followers"); attr_dev(back, "class", "svelte-1prpjq7"); add_location(back, file$3, 103, 8, 1582); attr_dev(h4, "class", "svelte-1prpjq7"); add_location(h4, file$3, 105, 10, 1647); attr_dev(span, "class", "svelte-1prpjq7"); add_location(span, file$3, 106, 10, 1686); add_location(name, file$3, 104, 8, 1630); attr_dev(nav, "class", "svelte-1prpjq7"); add_location(nav, file$3, 102, 6, 1568); attr_dev(header, "class", "svelte-1prpjq7"); add_location(header, file$3, 101, 4, 1553); attr_dev(img0, "alt", "Profile background"); if (img0.src !== (img0_src_value = "/header_pic.jpg")) attr_dev(img0, "src", img0_src_value); attr_dev(img0, "class", "svelte-1prpjq7"); add_location(img0, file$3, 113, 8, 1808); attr_dev(figure0, "id", "background"); attr_dev(figure0, "class", "svelte-1prpjq7"); add_location(figure0, file$3, 112, 6, 1775); attr_dev(img1, "alt", "Profile picture"); if (img1.src !== (img1_src_value = "/profile_pic.jpg")) attr_dev(img1, "src", img1_src_value); attr_dev(img1, "class", "svelte-1prpjq7"); add_location(img1, file$3, 117, 8, 1913); attr_dev(button, "id", "follow"); attr_dev(button, "class", "svelte-1prpjq7"); add_location(button, file$3, 118, 8, 1972); attr_dev(figure1, "id", "avatar"); attr_dev(figure1, "class", "svelte-1prpjq7"); add_location(figure1, file$3, 116, 6, 1884); attr_dev(images, "class", "svelte-1prpjq7"); add_location(images, file$3, 111, 4, 1760); add_location(h3, file$3, 123, 6, 2059); add_location(p0, file$3, 124, 6, 2094); add_location(p1, file$3, 125, 6, 2115); add_location(a, file$3, 126, 153, 2434); add_location(p2, file$3, 126, 6, 2287); add_location(b0, file$3, 127, 9, 2564); add_location(b1, file$3, 127, 30, 2585); add_location(p3, file$3, 127, 6, 2561); attr_dev(profile, "class", "svelte-1prpjq7"); add_location(profile, file$3, 122, 4, 2043); attr_dev(middle, "class", "svelte-1prpjq7"); add_location(middle, file$3, 100, 2, 1540); attr_dev(content, "class", "svelte-1prpjq7"); add_location(content, file$3, 99, 0, 1528); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); }, m: function mount(target, anchor) { insert_dev(target, content, anchor); append_dev(content, middle); append_dev(middle, header); append_dev(header, nav); append_dev(nav, back); mount_component(icon0, back, null); append_dev(nav, t0); append_dev(nav, name); append_dev(name, h4); append_dev(name, t2); append_dev(name, span); append_dev(middle, t4); append_dev(middle, images); append_dev(images, figure0); append_dev(figure0, img0); append_dev(images, t5); append_dev(images, figure1); append_dev(figure1, img1); append_dev(figure1, t6); append_dev(figure1, button); append_dev(middle, t8); append_dev(middle, profile); append_dev(profile, h3); append_dev(profile, t10); append_dev(profile, p0); append_dev(profile, t12); append_dev(profile, p1); append_dev(profile, t14); append_dev(profile, p2); mount_component(icon1, p2, null); append_dev(p2, t15); mount_component(icon2, p2, null); append_dev(p2, t16); append_dev(p2, a); append_dev(p2, t18); mount_component(icon3, p2, null); append_dev(p2, t19); append_dev(profile, t20); append_dev(profile, p3); append_dev(p3, b0); append_dev(p3, t22); append_dev(p3, b1); append_dev(p3, t24); current = true; }, p: noop, i: function intro(local) { if (current) return; transition_in(icon0.$$.fragment, local); transition_in(icon1.$$.fragment, local); transition_in(icon2.$$.fragment, local); transition_in(icon3.$$.fragment, local); current = true; }, o: function outro(local) { transition_out(icon0.$$.fragment, local); transition_out(icon1.$$.fragment, local); transition_out(icon2.$$.fragment, local); transition_out(icon3.$$.fragment, local); current = false; }, d: function destroy(detaching) { if (detaching) detach_dev(content); destroy_component(icon0); destroy_component(icon1); destroy_component(icon2); destroy_component(icon3); } }; dispatch_dev("SvelteRegisterBlock", { block, id: create_fragment$4.name, type: "component", source: "", ctx }); return block; } function instance$4($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots("Twitter", slots, []); const writable_props = []; Object.keys($$props).forEach(key => { if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(` was created with unknown prop '${key}'`); }); $$self.$capture_state = () => ({ Icon }); return []; } class Twitter extends SvelteComponentDev { constructor(options) { super(options); init(this, options, instance$4, create_fragment$4, safe_not_equal, {}); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "Twitter", options, id: create_fragment$4.name }); } } /* src/thumbs/Youtube.svelte generated by Svelte v3.30.0 */ const file$4 = "src/thumbs/Youtube.svelte"; function create_fragment$5(ctx) { let content; let header; let nav; let nav_left; let a0; let icon0; let t0; let icon1; let t1; let logo; let t3; let input; let t4; let ul; let li0; let icon2; let t5; let li1; let icon3; let t6; let li2; let icon4; let t7; let li3; let button; let icon5; let t8; let t9; let main; let left; let figure; let img; let img_src_value; let t10; let figcaption; let a1; let t12; let a2; let t14; let p; let t16; let video_actions; let likes; let t18; let video_buttons; let icon6; let t19; let icon7; let t20; let icon8; let t21; let icon9; let t22; let icon10; let current; icon0 = new Icon({ props: { name: "menu" }, $$inline: true }); icon1 = new Icon({ props: { name: "youtube" }, $$inline: true }); icon2 = new Icon({ props: { name: "camera", color: "#000" }, $$inline: true }); icon3 = new Icon({ props: { name: "more-vertical", color: "#000" }, $$inline: true }); icon4 = new Icon({ props: { name: "grid", color: "#000" }, $$inline: true }); icon5 = new Icon({ props: { name: "user" }, $$inline: true }); icon6 = new Icon({ props: { name: "thumbs-up", color: "#999" }, $$inline: true }); icon7 = new Icon({ props: { name: "thumbs-down", color: "#999" }, $$inline: true }); icon8 = new Icon({ props: { name: "corner-up-right", color: "#999" }, $$inline: true }); icon9 = new Icon({ props: { name: "menu", color: "#999" }, $$inline: true }); icon10 = new Icon({ props: { name: "vertical-more" }, $$inline: true }); const block = { c: function create() { content = element("content"); header = element("header"); nav = element("nav"); nav_left = element("nav-left"); a0 = element("a"); create_component(icon0.$$.fragment); t0 = space(); create_component(icon1.$$.fragment); t1 = space(); logo = element("logo"); logo.textContent = "Youtube"; t3 = space(); input = element("input"); t4 = space(); ul = element("ul"); li0 = element("li"); create_component(icon2.$$.fragment); t5 = space(); li1 = element("li"); create_component(icon3.$$.fragment); t6 = space(); li2 = element("li"); create_component(icon4.$$.fragment); t7 = space(); li3 = element("li"); button = element("button"); create_component(icon5.$$.fragment); t8 = text(" Sign In"); t9 = space(); main = element("main"); left = element("left"); figure = element("figure"); img = element("img"); t10 = space(); figcaption = element("figcaption"); a1 = element("a"); a1.textContent = "#tag"; t12 = space(); a2 = element("a"); a2.textContent = "#anothertag"; t14 = space(); p = element("p"); p.textContent = "Title And Stuff"; t16 = space(); video_actions = element("video-actions"); likes = element("likes"); likes.textContent = "Stats Stats"; t18 = space(); video_buttons = element("video-buttons"); create_component(icon6.$$.fragment); t19 = text(" 1.1K\n "); create_component(icon7.$$.fragment); t20 = text(" 22\n "); create_component(icon8.$$.fragment); t21 = text(" SHARE\n "); create_component(icon9.$$.fragment); t22 = text(" SAVE\n "); create_component(icon10.$$.fragment); attr_dev(logo, "class", "svelte-oxwxiv"); add_location(logo, file$4, 78, 56, 1184); add_location(a0, file$4, 78, 8, 1136); add_location(nav_left, file$4, 77, 6, 1117); attr_dev(input, "id", "search"); attr_dev(input, "placeholder", "Search"); attr_dev(input, "name", "search"); attr_dev(input, "class", "svelte-oxwxiv"); add_location(input, file$4, 80, 6, 1233); add_location(li0, file$4, 82, 8, 1307); add_location(li1, file$4, 83, 8, 1360); add_location(li2, file$4, 84, 8, 1420); attr_dev(button, "class", "svelte-oxwxiv"); add_location(button, file$4, 85, 12, 1475); add_location(li3, file$4, 85, 8, 1471); add_location(ul, file$4, 81, 6, 1294); attr_dev(nav, "class", "svelte-oxwxiv"); add_location(nav, file$4, 76, 4, 1105); attr_dev(header, "class", "svelte-oxwxiv"); add_location(header, file$4, 75, 2, 1092); if (img.src !== (img_src_value = "http://via.placeholder.com/800x450?text=Video")) attr_dev(img, "src", img_src_value); add_location(img, file$4, 92, 8, 1604); attr_dev(a1, "class", "svelte-oxwxiv"); add_location(a1, file$4, 94, 10, 1693); attr_dev(a2, "class", "svelte-oxwxiv"); add_location(a2, file$4, 94, 22, 1705); attr_dev(p, "class", "svelte-oxwxiv"); add_location(p, file$4, 95, 10, 1734); add_location(likes, file$4, 97, 12, 1795); add_location(video_buttons, file$4, 98, 12, 1834); set_custom_element_data(video_actions, "class", "svelte-oxwxiv"); add_location(video_actions, file$4, 96, 10, 1767); attr_dev(figcaption, "class", "svelte-oxwxiv"); add_location(figcaption, file$4, 93, 8, 1670); add_location(figure, file$4, 91, 6, 1587); add_location(left, file$4, 90, 4, 1574); attr_dev(main, "class", "svelte-oxwxiv"); add_location(main, file$4, 89, 2, 1563); attr_dev(content, "class", "svelte-oxwxiv"); add_location(content, file$4, 74, 0, 1080); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); }, m: function mount(target, anchor) { insert_dev(target, content, anchor); append_dev(content, header); append_dev(header, nav); append_dev(nav, nav_left); append_dev(nav_left, a0); mount_component(icon0, a0, null); append_dev(a0, t0); mount_component(icon1, a0, null); append_dev(a0, t1); append_dev(a0, logo); append_dev(nav, t3); append_dev(nav, input); append_dev(nav, t4); append_dev(nav, ul); append_dev(ul, li0); mount_component(icon2, li0, null); append_dev(ul, t5); append_dev(ul, li1); mount_component(icon3, li1, null); append_dev(ul, t6); append_dev(ul, li2); mount_component(icon4, li2, null); append_dev(ul, t7); append_dev(ul, li3); append_dev(li3, button); mount_component(icon5, button, null); append_dev(button, t8); append_dev(content, t9); append_dev(content, main); append_dev(main, left); append_dev(left, figure); append_dev(figure, img); append_dev(figure, t10); append_dev(figure, figcaption); append_dev(figcaption, a1); append_dev(figcaption, t12); append_dev(figcaption, a2); append_dev(figcaption, t14); append_dev(figcaption, p); append_dev(figcaption, t16); append_dev(figcaption, video_actions); append_dev(video_actions, likes); append_dev(video_actions, t18); append_dev(video_actions, video_buttons); mount_component(icon6, video_buttons, null); append_dev(video_buttons, t19); mount_component(icon7, video_buttons, null); append_dev(video_buttons, t20); mount_component(icon8, video_buttons, null); append_dev(video_buttons, t21); mount_component(icon9, video_buttons, null); append_dev(video_buttons, t22); mount_component(icon10, video_buttons, null); current = true; }, p: noop, i: function intro(local) { if (current) return; transition_in(icon0.$$.fragment, local); transition_in(icon1.$$.fragment, local); transition_in(icon2.$$.fragment, local); transition_in(icon3.$$.fragment, local); transition_in(icon4.$$.fragment, local); transition_in(icon5.$$.fragment, local); transition_in(icon6.$$.fragment, local); transition_in(icon7.$$.fragment, local); transition_in(icon8.$$.fragment, local); transition_in(icon9.$$.fragment, local); transition_in(icon10.$$.fragment, local); current = true; }, o: function outro(local) { transition_out(icon0.$$.fragment, local); transition_out(icon1.$$.fragment, local); transition_out(icon2.$$.fragment, local); transition_out(icon3.$$.fragment, local); transition_out(icon4.$$.fragment, local); transition_out(icon5.$$.fragment, local); transition_out(icon6.$$.fragment, local); transition_out(icon7.$$.fragment, local); transition_out(icon8.$$.fragment, local); transition_out(icon9.$$.fragment, local); transition_out(icon10.$$.fragment, local); current = false; }, d: function destroy(detaching) { if (detaching) detach_dev(content); destroy_component(icon0); destroy_component(icon1); destroy_component(icon2); destroy_component(icon3); destroy_component(icon4); destroy_component(icon5); destroy_component(icon6); destroy_component(icon7); destroy_component(icon8); destroy_component(icon9); destroy_component(icon10); } }; dispatch_dev("SvelteRegisterBlock", { block, id: create_fragment$5.name, type: "component", source: "", ctx }); return block; } function instance$5($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots("Youtube", slots, []); let cards = [1, 2, 3, 4]; const writable_props = []; Object.keys($$props).forEach(key => { if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(` was created with unknown prop '${key}'`); }); $$self.$capture_state = () => ({ Icon, cards }); $$self.$inject_state = $$props => { if ("cards" in $$props) cards = $$props.cards; }; if ($$props && "$$inject" in $$props) { $$self.$inject_state($$props.$$inject); } return []; } class Youtube extends SvelteComponentDev { constructor(options) { super(options); init(this, options, instance$5, create_fragment$5, safe_not_equal, {}); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "Youtube", options, id: create_fragment$5.name }); } } /* src/thumbs/Instagram.svelte generated by Svelte v3.30.0 */ const file$5 = "src/thumbs/Instagram.svelte"; function get_each_context(ctx, list, i) { const child_ctx = ctx.slice(); child_ctx[1] = list[i]; return child_ctx; } // (108:2) {#each pins as pin} function create_each_block(ctx) { let figure; let img; let img_src_value; let t; const block = { c: function create() { figure = element("figure"); img = element("img"); t = space(); attr_dev(img, "alt", "Stock photo"); if (img.src !== (img_src_value = "http://via.placeholder.com/82x82?text=Story")) attr_dev(img, "src", img_src_value); add_location(img, file$5, 109, 6, 1888); add_location(figure, file$5, 108, 4, 1873); }, m: function mount(target, anchor) { insert_dev(target, figure, anchor); append_dev(figure, img); append_dev(figure, t); }, d: function destroy(detaching) { if (detaching) detach_dev(figure); } }; dispatch_dev("SvelteRegisterBlock", { block, id: create_each_block.name, type: "each", source: "(108:2) {#each pins as pin}", ctx }); return block; } function create_fragment$6(ctx) { let content; let header; let nav; let b0; let icon; let t0; let t1; let input; let t2; let ul; let li0; let button0; let t4; let li1; let a0; let t6; let profile; let figure; let img; let img_src_value; let t7; let info; let p0; let b1; let t9; let button1; let t11; let p1; let b2; let t13; let b3; let t15; let b4; let t17; let p2; let b5; let t19; let p3; let t20; let br; let t21; let a1; let t23; let pins_1; let current; icon = new Icon({ props: { name: "instagram", color: "var(--color-text)" }, $$inline: true }); let each_value = /*pins*/ ctx[0]; validate_each_argument(each_value); let each_blocks = []; for (let i = 0; i < each_value.length; i += 1) { each_blocks[i] = create_each_block(get_each_context(ctx, each_value, i)); } const block = { c: function create() { content = element("content"); header = element("header"); nav = element("nav"); b0 = element("b"); create_component(icon.$$.fragment); t0 = text(" Instagram"); t1 = space(); input = element("input"); t2 = space(); ul = element("ul"); li0 = element("li"); button0 = element("button"); button0.textContent = "Log In"; t4 = space(); li1 = element("li"); a0 = element("a"); a0.textContent = "Sign Up"; t6 = space(); profile = element("profile"); figure = element("figure"); img = element("img"); t7 = space(); info = element("info"); p0 = element("p"); b1 = element("b"); b1.textContent = "zedshaw"; t9 = space(); button1 = element("button"); button1.textContent = "follow"; t11 = space(); p1 = element("p"); b2 = element("b"); b2.textContent = "280"; t13 = text(" posts "); b3 = element("b"); b3.textContent = "4,695 followers"; t15 = space(); b4 = element("b"); b4.textContent = "1,778 following"; t17 = space(); p2 = element("p"); b5 = element("b"); b5.textContent = "Zed A. Shaw"; t19 = space(); p3 = element("p"); t20 = text("Painter in oil, watercolor, and pastel. I’m doing live streams of little paintings on Twitch:"); br = element("br"); t21 = space(); a1 = element("a"); a1.textContent = "www.twitch.tv/zedashaw"; t23 = space(); pins_1 = element("pins"); for (let i = 0; i < each_blocks.length; i += 1) { each_blocks[i].c(); } add_location(b0, file$5, 76, 6, 1071); attr_dev(input, "placeholder", "Search"); add_location(input, file$5, 77, 6, 1146); attr_dev(button0, "class", "svelte-oov5yx"); add_location(button0, file$5, 79, 12, 1198); add_location(li0, file$5, 79, 8, 1194); attr_dev(a0, "class", "svelte-oov5yx"); add_location(a0, file$5, 80, 12, 1239); add_location(li1, file$5, 80, 8, 1235); add_location(ul, file$5, 78, 6, 1181); attr_dev(nav, "class", "svelte-oov5yx"); add_location(nav, file$5, 75, 4, 1059); attr_dev(header, "class", "svelte-oov5yx"); add_location(header, file$5, 74, 2, 1046); attr_dev(img, "alt", "Zed's Face"); if (img.src !== (img_src_value = "http://via.placeholder.com/256x256?text=Zed's Face")) attr_dev(img, "src", img_src_value); add_location(img, file$5, 87, 6, 1326); attr_dev(figure, "class", "svelte-oov5yx"); add_location(figure, file$5, 86, 4, 1311); add_location(b1, file$5, 92, 8, 1450); attr_dev(button1, "class", "svelte-oov5yx"); add_location(button1, file$5, 92, 23, 1465); attr_dev(p0, "class", "svelte-oov5yx"); add_location(p0, file$5, 91, 6, 1438); add_location(b2, file$5, 96, 8, 1519); add_location(b3, file$5, 96, 25, 1536); add_location(b4, file$5, 96, 48, 1559); attr_dev(p1, "class", "svelte-oov5yx"); add_location(p1, file$5, 95, 6, 1507); add_location(b5, file$5, 99, 9, 1603); attr_dev(p2, "class", "svelte-oov5yx"); add_location(p2, file$5, 99, 6, 1600); add_location(br, file$5, 100, 102, 1728); attr_dev(a1, "href", "www.twitch.tv/zedashaw"); attr_dev(a1, "class", "svelte-oov5yx"); add_location(a1, file$5, 101, 8, 1741); attr_dev(p3, "class", "svelte-oov5yx"); add_location(p3, file$5, 100, 6, 1632); attr_dev(info, "class", "svelte-oov5yx"); add_location(info, file$5, 90, 4, 1425); attr_dev(profile, "class", "svelte-oov5yx"); add_location(profile, file$5, 85, 2, 1297); attr_dev(pins_1, "class", "svelte-oov5yx"); add_location(pins_1, file$5, 106, 2, 1840); attr_dev(content, "class", "svelte-oov5yx"); add_location(content, file$5, 73, 0, 1034); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); }, m: function mount(target, anchor) { insert_dev(target, content, anchor); append_dev(content, header); append_dev(header, nav); append_dev(nav, b0); mount_component(icon, b0, null); append_dev(b0, t0); append_dev(nav, t1); append_dev(nav, input); append_dev(nav, t2); append_dev(nav, ul); append_dev(ul, li0); append_dev(li0, button0); append_dev(ul, t4); append_dev(ul, li1); append_dev(li1, a0); append_dev(content, t6); append_dev(content, profile); append_dev(profile, figure); append_dev(figure, img); append_dev(profile, t7); append_dev(profile, info); append_dev(info, p0); append_dev(p0, b1); append_dev(p0, t9); append_dev(p0, button1); append_dev(info, t11); append_dev(info, p1); append_dev(p1, b2); append_dev(p1, t13); append_dev(p1, b3); append_dev(p1, t15); append_dev(p1, b4); append_dev(info, t17); append_dev(info, p2); append_dev(p2, b5); append_dev(info, t19); append_dev(info, p3); append_dev(p3, t20); append_dev(p3, br); append_dev(p3, t21); append_dev(p3, a1); append_dev(content, t23); append_dev(content, pins_1); for (let i = 0; i < each_blocks.length; i += 1) { each_blocks[i].m(pins_1, null); } current = true; }, p: noop, i: function intro(local) { if (current) return; transition_in(icon.$$.fragment, local); current = true; }, o: function outro(local) { transition_out(icon.$$.fragment, local); current = false; }, d: function destroy(detaching) { if (detaching) detach_dev(content); destroy_component(icon); destroy_each(each_blocks, detaching); } }; dispatch_dev("SvelteRegisterBlock", { block, id: create_fragment$6.name, type: "component", source: "", ctx }); return block; } function instance$6($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots("Instagram", slots, []); let pins = [1, 2, 3, 4]; const writable_props = []; Object.keys($$props).forEach(key => { if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(` was created with unknown prop '${key}'`); }); $$self.$capture_state = () => ({ link, Icon, pins }); $$self.$inject_state = $$props => { if ("pins" in $$props) $$invalidate(0, pins = $$props.pins); }; if ($$props && "$$inject" in $$props) { $$self.$inject_state($$props.$$inject); } return [pins]; } class Instagram extends SvelteComponentDev { constructor(options) { super(options); init(this, options, instance$6, create_fragment$6, safe_not_equal, {}); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "Instagram", options, id: create_fragment$6.name }); } } /* src/thumbs/Pinterest.svelte generated by Svelte v3.30.0 */ const file$6 = "src/thumbs/Pinterest.svelte"; function create_fragment$7(ctx) { let content; let header; let nav; let left; let logo; let icon; let t0; let t1; let a0; let t3; let a1; let t5; let input; let t6; let ul; let li0; let button0; let t8; let li1; let button1; let t10; let profile; let info; let h1; let t12; let p0; let t14; let p1; let b0; let t16; let b1; let t18; let t19; let p2; let t21; let figure; let img; let img_src_value; let current; icon = new Icon({ props: { name: "pinterest", color: "var(--color)" }, $$inline: true }); const block = { c: function create() { content = element("content"); header = element("header"); nav = element("nav"); left = element("left"); logo = element("logo"); create_component(icon.$$.fragment); t0 = text(" Pinterest"); t1 = space(); a0 = element("a"); a0.textContent = "Today"; t3 = space(); a1 = element("a"); a1.textContent = "Explore"; t5 = space(); input = element("input"); t6 = space(); ul = element("ul"); li0 = element("li"); button0 = element("button"); button0.textContent = "Log In"; t8 = space(); li1 = element("li"); button1 = element("button"); button1.textContent = "Sign Up"; t10 = space(); profile = element("profile"); info = element("info"); h1 = element("h1"); h1.textContent = "Vincent van Gogh"; t12 = space(); p0 = element("p"); p0.textContent = "Collection by A Person"; t14 = space(); p1 = element("p"); b0 = element("b"); b0.textContent = "420"; t16 = text(" Pins • "); b1 = element("b"); b1.textContent = "3.59k"; t18 = text(" Followers"); t19 = space(); p2 = element("p"); p2.textContent = "\"I dream my painting and I paint my dream.\" ~ Vincent van Gogh"; t21 = space(); figure = element("figure"); img = element("img"); attr_dev(logo, "class", "svelte-1w7ltga"); add_location(logo, file$6, 99, 6, 1437); attr_dev(a0, "class", "svelte-1w7ltga"); add_location(a0, file$6, 100, 8, 1515); attr_dev(a1, "class", "svelte-1w7ltga"); add_location(a1, file$6, 101, 8, 1536); attr_dev(left, "class", "svelte-1w7ltga"); add_location(left, file$6, 98, 6, 1424); attr_dev(input, "placeholder", "Search"); attr_dev(input, "class", "svelte-1w7ltga"); add_location(input, file$6, 104, 6, 1572); attr_dev(button0, "class", "svelte-1w7ltga"); add_location(button0, file$6, 107, 12, 1625); attr_dev(li0, "class", "svelte-1w7ltga"); add_location(li0, file$6, 107, 8, 1621); attr_dev(button1, "id", "signup"); attr_dev(button1, "class", "svelte-1w7ltga"); add_location(button1, file$6, 108, 12, 1666); attr_dev(li1, "class", "svelte-1w7ltga"); add_location(li1, file$6, 108, 8, 1662); attr_dev(ul, "class", "svelte-1w7ltga"); add_location(ul, file$6, 106, 6, 1608); attr_dev(nav, "class", "svelte-1w7ltga"); add_location(nav, file$6, 97, 4, 1412); attr_dev(header, "class", "svelte-1w7ltga"); add_location(header, file$6, 96, 2, 1399); attr_dev(h1, "class", "svelte-1w7ltga"); add_location(h1, file$6, 115, 2, 1767); attr_dev(p0, "class", "svelte-1w7ltga"); add_location(p0, file$6, 116, 2, 1795); attr_dev(b0, "class", "svelte-1w7ltga"); add_location(b0, file$6, 117, 5, 1830); attr_dev(b1, "class", "svelte-1w7ltga"); add_location(b1, file$6, 117, 23, 1848); attr_dev(p1, "class", "svelte-1w7ltga"); add_location(p1, file$6, 117, 2, 1827); attr_dev(p2, "class", "svelte-1w7ltga"); add_location(p2, file$6, 118, 2, 1877); attr_dev(info, "class", "svelte-1w7ltga"); add_location(info, file$6, 114, 2, 1758); attr_dev(img, "alt", "Zed's Face"); if (img.src !== (img_src_value = "http://via.placeholder.com/128x128?text=Zed's Face")) attr_dev(img, "src", img_src_value); attr_dev(img, "class", "svelte-1w7ltga"); add_location(img, file$6, 122, 4, 1969); attr_dev(figure, "class", "svelte-1w7ltga"); add_location(figure, file$6, 121, 2, 1956); attr_dev(profile, "class", "svelte-1w7ltga"); add_location(profile, file$6, 113, 2, 1746); attr_dev(content, "class", "svelte-1w7ltga"); add_location(content, file$6, 95, 0, 1387); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); }, m: function mount(target, anchor) { insert_dev(target, content, anchor); append_dev(content, header); append_dev(header, nav); append_dev(nav, left); append_dev(left, logo); mount_component(icon, logo, null); append_dev(logo, t0); append_dev(left, t1); append_dev(left, a0); append_dev(left, t3); append_dev(left, a1); append_dev(nav, t5); append_dev(nav, input); append_dev(nav, t6); append_dev(nav, ul); append_dev(ul, li0); append_dev(li0, button0); append_dev(ul, t8); append_dev(ul, li1); append_dev(li1, button1); append_dev(content, t10); append_dev(content, profile); append_dev(profile, info); append_dev(info, h1); append_dev(info, t12); append_dev(info, p0); append_dev(info, t14); append_dev(info, p1); append_dev(p1, b0); append_dev(p1, t16); append_dev(p1, b1); append_dev(p1, t18); append_dev(info, t19); append_dev(info, p2); append_dev(profile, t21); append_dev(profile, figure); append_dev(figure, img); current = true; }, p: noop, i: function intro(local) { if (current) return; transition_in(icon.$$.fragment, local); current = true; }, o: function outro(local) { transition_out(icon.$$.fragment, local); current = false; }, d: function destroy(detaching) { if (detaching) detach_dev(content); destroy_component(icon); } }; dispatch_dev("SvelteRegisterBlock", { block, id: create_fragment$7.name, type: "component", source: "", ctx }); return block; } function instance$7($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots("Pinterest", slots, []); const writable_props = []; Object.keys($$props).forEach(key => { if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(` was created with unknown prop '${key}'`); }); $$self.$capture_state = () => ({ Icon }); return []; } class Pinterest extends SvelteComponentDev { constructor(options) { super(options); init(this, options, instance$7, create_fragment$7, safe_not_equal, {}); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "Pinterest", options, id: create_fragment$7.name }); } } /* src/thumbs/Login.svelte generated by Svelte v3.30.0 */ const file$7 = "src/thumbs/Login.svelte"; function create_fragment$8(ctx) { let content; let spacer0; let t0; let form; let header; let t2; let label0; let t4; let input0; let t5; let label1; let t7; let input1; let t8; let br; let t9; let button; let t11; let spacer1; const block = { c: function create() { content = element("content"); spacer0 = element("spacer"); t0 = space(); form = element("form"); header = element("header"); header.textContent = "Login"; t2 = space(); label0 = element("label"); label0.textContent = "Username"; t4 = space(); input0 = element("input"); t5 = space(); label1 = element("label"); label1.textContent = "Password"; t7 = space(); input1 = element("input"); t8 = space(); br = element("br"); t9 = space(); button = element("button"); button.textContent = "Login"; t11 = space(); spacer1 = element("spacer"); add_location(spacer0, file$7, 10, 2, 135); add_location(header, file$7, 12, 4, 166); attr_dev(label0, "for", "username"); add_location(label0, file$7, 13, 4, 193); attr_dev(input0, "type", "text"); attr_dev(input0, "id", "username"); attr_dev(input0, "name", "username"); attr_dev(input0, "size", "32"); attr_dev(input0, "placeholder", "Username"); add_location(input0, file$7, 14, 4, 236); attr_dev(label1, "for", "password"); add_location(label1, file$7, 15, 4, 323); attr_dev(input1, "type", "password"); attr_dev(input1, "id", "password"); attr_dev(input1, "name", "password"); attr_dev(input1, "size", "32"); attr_dev(input1, "placeholder", "Password"); add_location(input1, file$7, 16, 4, 366); add_location(br, file$7, 17, 4, 457); attr_dev(button, "type", "submit"); add_location(button, file$7, 18, 4, 466); add_location(form, file$7, 11, 2, 155); add_location(spacer1, file$7, 20, 2, 515); attr_dev(content, "class", "svelte-t7gl8c"); add_location(content, file$7, 9, 0, 123); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); }, m: function mount(target, anchor) { insert_dev(target, content, anchor); append_dev(content, spacer0); append_dev(content, t0); append_dev(content, form); append_dev(form, header); append_dev(form, t2); append_dev(form, label0); append_dev(form, t4); append_dev(form, input0); append_dev(form, t5); append_dev(form, label1); append_dev(form, t7); append_dev(form, input1); append_dev(form, t8); append_dev(form, br); append_dev(form, t9); append_dev(form, button); append_dev(content, t11); append_dev(content, spacer1); }, p: noop, i: noop, o: noop, d: function destroy(detaching) { if (detaching) detach_dev(content); } }; dispatch_dev("SvelteRegisterBlock", { block, id: create_fragment$8.name, type: "component", source: "", ctx }); return block; } function instance$8($$self, $$props) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots("Login", slots, []); const writable_props = []; Object.keys($$props).forEach(key => { if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(` was created with unknown prop '${key}'`); }); return []; } class Login extends SvelteComponentDev { constructor(options) { super(options); init(this, options, instance$8, create_fragment$8, safe_not_equal, {}); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "Login", options, id: create_fragment$8.name }); } } function simpleSvgPlaceholder({ width = 300, height = 150, text = `${width}×${height}`, fontFamily = 'sans-serif', fontWeight = 'bold', fontSize = Math.floor(Math.min(width, height) * 0.2), dy = fontSize * 0.35, bgColor = '#ddd', textColor = 'rgba(0,0,0,0.5)', dataUri = true, charset = 'UTF-8' } = {}) { const str = ` ${text} `; // Thanks to: filamentgroup/directory-encoder const cleaned = str .replace(/[\t\n\r]/gim, '') // Strip newlines and tabs .replace(/\s\s+/g, ' ') // Condense multiple spaces .replace(/'/gim, '\\i'); // Normalize quotes if (dataUri) { const encoded = encodeURIComponent(cleaned) .replace(/\(/g, '%28') // Encode brackets .replace(/\)/g, '%29'); return `data:image/svg+xml;charset=${charset},${encoded}`; } return cleaned; } var simpleSvgPlaceholder_1 = simpleSvgPlaceholder; const defaults = { bgColor: '#ccc', textColor: '#888', }; const holder = (x, y) => simpleSvgPlaceholder_1({...defaults, width: x, height: y}); /* src/thumbs/Tiles.svelte generated by Svelte v3.30.0 */ const file$8 = "src/thumbs/Tiles.svelte"; function create_fragment$9(ctx) { let content; let tile; let left; let img; let img_src_value; let t0; let middle; let h4; let t2; let p; let t4; let right; let button0; let icon0; let t5; let button1; let icon1; let current; icon0 = new Icon({ props: { name: "check-circle", color: "var(--color-bg)", size: "24" }, $$inline: true }); icon1 = new Icon({ props: { name: "x-circle", color: "var(--color-bg)", size: "24" }, $$inline: true }); const block = { c: function create() { content = element("content"); tile = element("tile"); left = element("left"); img = element("img"); t0 = space(); middle = element("middle"); h4 = element("h4"); h4.textContent = "Tile Example"; t2 = space(); p = element("p"); p.textContent = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."; t4 = space(); right = element("right"); button0 = element("button"); create_component(icon0.$$.fragment); t5 = space(); button1 = element("button"); create_component(icon1.$$.fragment); if (img.src !== (img_src_value = holder(48, 48))) attr_dev(img, "src", img_src_value); add_location(img, file$8, 46, 6, 779); add_location(left, file$8, 45, 4, 766); attr_dev(h4, "class", "svelte-fwzpwr"); add_location(h4, file$8, 50, 6, 841); add_location(p, file$8, 53, 6, 885); attr_dev(middle, "class", "svelte-fwzpwr"); add_location(middle, file$8, 49, 4, 826); attr_dev(button0, "class", "svelte-fwzpwr"); add_location(button0, file$8, 57, 4, 1047); attr_dev(button1, "class", "svelte-fwzpwr"); add_location(button1, file$8, 58, 4, 1131); attr_dev(right, "class", "svelte-fwzpwr"); add_location(right, file$8, 56, 4, 1035); attr_dev(tile, "class", "svelte-fwzpwr"); add_location(tile, file$8, 44, 2, 755); attr_dev(content, "class", "svelte-fwzpwr"); add_location(content, file$8, 43, 0, 743); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); }, m: function mount(target, anchor) { insert_dev(target, content, anchor); append_dev(content, tile); append_dev(tile, left); append_dev(left, img); append_dev(tile, t0); append_dev(tile, middle); append_dev(middle, h4); append_dev(middle, t2); append_dev(middle, p); append_dev(tile, t4); append_dev(tile, right); append_dev(right, button0); mount_component(icon0, button0, null); append_dev(right, t5); append_dev(right, button1); mount_component(icon1, button1, null); current = true; }, p: noop, i: function intro(local) { if (current) return; transition_in(icon0.$$.fragment, local); transition_in(icon1.$$.fragment, local); current = true; }, o: function outro(local) { transition_out(icon0.$$.fragment, local); transition_out(icon1.$$.fragment, local); current = false; }, d: function destroy(detaching) { if (detaching) detach_dev(content); destroy_component(icon0); destroy_component(icon1); } }; dispatch_dev("SvelteRegisterBlock", { block, id: create_fragment$9.name, type: "component", source: "", ctx }); return block; } function instance$9($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots("Tiles", slots, []); const writable_props = []; Object.keys($$props).forEach(key => { if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(` was created with unknown prop '${key}'`); }); $$self.$capture_state = () => ({ Icon, holder }); return []; } class Tiles extends SvelteComponentDev { constructor(options) { super(options); init(this, options, instance$9, create_fragment$9, safe_not_equal, {}); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "Tiles", options, id: create_fragment$9.name }); } } var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; function createCommonjsModule(fn, basedir, module) { return module = { path: basedir, exports: {}, require: function (path, base) { return commonjsRequire(path, (base === undefined || base === null) ? module.path : base); } }, fn(module, module.exports), module.exports; } function commonjsRequire () { throw new Error('Dynamic requires are not currently supported by @rollup/plugin-commonjs'); } var prism = createCommonjsModule(function (module) { /* ********************************************** Begin prism-core.js ********************************************** */ /// var _self = (typeof window !== 'undefined') ? window // if in browser : ( (typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope) ? self // if in worker : {} // if in node js ); /** * Prism: Lightweight, robust, elegant syntax highlighting * * @license MIT * @author Lea Verou * @namespace * @public */ var Prism = (function (_self){ // Private helper vars var lang = /\blang(?:uage)?-([\w-]+)\b/i; var uniqueId = 0; var _ = { /** * By default, Prism will attempt to highlight all code elements (by calling {@link Prism.highlightAll}) on the * current page after the page finished loading. This might be a problem if e.g. you wanted to asynchronously load * additional languages or plugins yourself. * * By setting this value to `true`, Prism will not automatically highlight all code elements on the page. * * You obviously have to change this value before the automatic highlighting started. To do this, you can add an * empty Prism object into the global scope before loading the Prism script like this: * * ```js * window.Prism = window.Prism || {}; * Prism.manual = true; * // add a new