From 87f2d5da23a0bb7159d64827390b5083b80f1375 Mon Sep 17 00:00:00 2001 From: blendoit Date: Sat, 19 Oct 2019 18:44:33 -0700 Subject: Generator module --- evaluator.py | 75 ++-- example_airfoil.py | 12 +- generator.py | 1 + log_base.txt | 1271 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 1311 insertions(+), 48 deletions(-) diff --git a/evaluator.py b/evaluator.py index 0307079..2adc702 100644 --- a/evaluator.py +++ b/evaluator.py @@ -29,33 +29,38 @@ class Evaluator: self.I_ = {'x': 0, 'z': 0, 'xz': 0} def _get_lift_rectangular(aircraft, lift=50): - L_prime = [ + L_prime = np.array([ lift / (aircraft.wing.semi_span * 2) for _ in range(aircraft.wing.semi_span) - ] + ]) return L_prime def _get_lift_elliptical(aircraft, L_0=3.2): - L_prime = [ - L_0 / (aircraft.wing.semi_span * 2) * + L_prime = np.array([ + 0.5 * L_0 / (aircraft.wing.semi_span * 2) * sqrt(1 - (y / aircraft.wing.semi_span)**2) for y in range(aircraft.wing.semi_span) - ] + ]) return L_prime def get_lift_total(self, aircraft): """Combination of rectangular and elliptical lift.""" - F_z = [ - self._get_lift_rectangular(aircraft) + - self._get_lift_elliptical(aircraft) / 2 - for i in range(aircraft.wing.semi_span) - ] - return F_z + # F_z = self._get_lift_rectangular(aircraft) + self._get_lift_elliptical( + # aircraft) + # F_z = self._get_lift_rectangular( + # aircraft) + self._get_lift_elliptical(aircraft) / 2 + # F_z = [i + j for i, j in self._get_lift_rectangular] + # return F_z + return 420 def get_mass_distribution(self, total_mass): F_z = [total_mass / self.semi_span for x in range(0, self.semi_span)] return F_z + def get_mass_total(self, aircraft): + """Get the total aircraft mass.""" + return 2000 + def get_drag(aircraft, drag): # Transform semi-span integer into list semi_span = [x for x in range(0, aircraft.wing.semi_span)] @@ -68,6 +73,10 @@ class Evaluator: F_x.extend([1.25 * drag for x in semi_span[cutoff:]]) return F_x + def get_drag_total(self, aircraft): + """Get total drag force acting on the aircraft.""" + return 500 + def get_centroid(aircraft): """Return the coordinates of the centroid.""" stringer_area = aircraft.stringer.area @@ -151,36 +160,20 @@ class Evaluator: area * zDist[_] * (I_z * V_z - I_xz * V_x) / denom) return z - def analysis(self): - """Perform all analysis calculations and store in self.results.""" - # with concurrent.futures.ProcessPoolExecutor() as executor: - # for aircraft in self.aircrafts: - # lift = executor.submit(self.get_lift_total(aircraft)) - # drag = executor.submit(self.get_drag_total(aircraft)) - # mass = executor.submit(self.get_mass_total(aircraft)) - # thrust = executor.submit(self.get_thrust_total(aircraft)) - - # for aircraft in self.aircrafts: - # print(lift.result()) - # print(drag.result()) - # print(mass.result()) - # print(thrust.result()) - - # for f in concurrent.futures.as_completed(l, d, m, t): - # print(f.result()) - - for aircraft in self.aircrafts: - # lift = self.get_lift_total(aircraft), - # drag = self.get_drag(aircraft.wing), - # centroid = self.get_centroid(aircraft.wing) - results = {"Lift": 400, "Drag": 20, "Centroid": [0.2, 4.5]} - self.results.append(results) - # results = { - # "Lift": self.get_lift_total(aircraft), - # "Drag": self.get_drag(aircraft), - # "Centroid": self.get_centroid(aircraft) - # } - return results + def analyze(self, aircraft): + """Analyze a single aircraft.""" + aircraft.results = {} + aircraft.results.update({'Lift': self.get_lift_total(aircraft)}) + aircraft.results.update({'Drag': self.get_drag_total(aircraft)}) + aircraft.results.update({'Mass': self.get_mass_total(aircraft)}) + print(aircraft.results) + return None + + def analyze_all(self): + """Perform all analysis calculations on a all aircraft in evaluator.""" + with concurrent.futures.ProcessPoolExecutor() as executor: + executor.map(self.analyze, self.aircrafts) + return None # def analysis(self, V_x, V_z): # """Perform all analysis calculations and store in class instance.""" diff --git a/example_airfoil.py b/example_airfoil.py index 82ee254..6c69bf0 100644 --- a/example_airfoil.py +++ b/example_airfoil.py @@ -61,16 +61,14 @@ stringer2 = creator.wing.Stringer(af2, 'stringer2') stringer2.info_save(SAVE_PATH) -for _ in range(5): +for _ in range(100): aircraft = generator.default_aircraft(eval) - aircraft2 = generator.default_aircraft(eval) - eval.tree_print(aircraft, aircraft2) - eval.tree_save(aircraft) + # eval.tree_print(aircraft) -print(eval.analysis()) +eval.analyze_all() -# creator.wing.plot_geom(af) -# eval.tree_print() +# creator.wing.plot_geom(generator.default_aircraft(eval).wing) +eval.tree_print(generator.default_aircraft(eval)) # Final execution time final_time = time.time() - start_time diff --git a/generator.py b/generator.py index 0ad8d0f..30fc039 100644 --- a/generator.py +++ b/generator.py @@ -4,6 +4,7 @@ and methods to generate default aircraft. """ import random +import concurrent.futures import creator diff --git a/log_base.txt b/log_base.txt index 150c896..e2e1c09 100644 --- a/log_base.txt +++ b/log_base.txt @@ -9897,3 +9897,1274 @@ 2019-10-19 15:09:45,760 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1265_tree.txt 2019-10-19 15:09:45,783 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_4292_tree.txt 2019-10-19 15:09:45,805 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_3669_tree.txt +2019-10-19 15:12:33,214 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 15:12:33,234 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 15:12:33,235 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 15:12:42,495 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 15:12:42,515 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 15:12:42,516 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 15:14:45,507 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 15:14:45,527 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 15:14:45,528 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 15:18:04,353 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 15:18:04,374 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 15:18:04,375 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 15:24:43,598 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 15:24:43,616 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 15:24:43,617 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 15:24:54,708 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 15:24:54,727 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 15:24:54,728 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 15:25:09,637 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 15:25:09,658 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 15:25:09,659 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 15:39:32,551 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 15:39:32,569 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 15:39:32,570 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 15:39:41,252 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 15:39:41,270 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 15:39:41,271 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 15:40:15,730 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 15:40:15,748 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 15:40:15,749 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 15:40:31,850 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 15:40:31,870 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 15:40:31,871 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 16:34:16,535 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 16:34:16,553 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 16:34:16,554 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 16:37:11,319 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 16:37:11,363 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 16:37:11,364 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 16:42:32,659 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 16:42:32,677 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 16:42:32,678 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 16:43:29,721 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 16:43:29,740 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 16:43:29,741 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 16:45:38,963 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 16:45:38,982 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 16:45:38,983 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 16:47:30,709 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 16:47:30,729 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 16:47:30,730 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 16:50:06,434 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 16:50:06,454 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 16:50:06,455 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 16:54:01,389 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 16:54:01,408 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 16:54:01,409 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 16:54:10,761 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 16:54:10,780 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 16:54:10,781 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 16:54:31,226 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 16:54:31,244 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 16:54:31,245 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 16:54:58,332 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 16:54:58,352 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 16:54:58,353 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 16:55:07,378 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 16:55:07,397 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 16:55:07,398 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:03:36,416 - DEBUG - $HOME=/home/blendux +2019-10-19 17:03:36,416 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib +2019-10-19 17:03:36,416 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data +2019-10-19 17:03:36,421 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc +2019-10-19 17:03:36,422 - DEBUG - matplotlib version 3.1.1 +2019-10-19 17:03:36,423 - DEBUG - interactive is False +2019-10-19 17:03:36,423 - DEBUG - platform is linux +2019-10-19 17:03:36,423 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'random', 'math', 'hashlib', '_hashlib', '_blake2', '_sha3', 'bisect', '_bisect', '_random', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket'] +2019-10-19 17:03:36,455 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib +2019-10-19 17:03:36,456 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json +2019-10-19 17:03:36,546 - DEBUG - Loaded backend qt5agg version unknown. +2019-10-19 17:03:36,555 - DEBUG - Loaded backend tkagg version unknown. +2019-10-19 17:03:36,556 - DEBUG - Loaded backend TkAgg version unknown. +2019-10-19 17:10:26,563 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:10:26,584 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:10:26,585 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:11:58,605 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:11:58,626 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:11:58,627 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:12:09,918 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:12:09,939 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:12:09,940 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:12:56,867 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:12:56,888 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:12:56,889 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:13:35,898 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:13:35,918 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:13:35,919 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:14:14,860 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:14:14,880 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:14:14,881 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:14:27,199 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:14:27,219 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:14:27,220 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:15:22,100 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:15:22,120 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:15:22,121 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:18:52,949 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:18:52,970 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:18:52,971 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:19:28,172 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:19:28,193 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:19:28,194 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:20:50,154 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:20:50,174 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:20:50,175 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:22:31,919 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:22:31,940 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:22:31,941 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:22:59,814 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:22:59,834 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:22:59,835 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:25:34,547 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:25:34,569 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:25:34,570 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:34:26,427 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:34:26,446 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:34:26,447 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:34:49,429 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:34:49,449 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:34:49,450 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:35:40,701 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:35:40,722 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:35:40,723 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:38:42,619 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:38:42,639 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:38:42,640 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:40:16,774 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:40:16,795 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:40:16,796 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:40:34,555 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:40:34,576 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:40:34,577 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:41:35,415 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:41:35,435 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:41:35,436 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:42:01,986 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:42:02,007 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:42:02,008 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:43:45,810 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:43:45,830 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:43:45,831 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:44:26,795 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:44:26,816 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:44:26,817 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:49:14,793 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:49:14,812 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:49:14,813 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:50:21,069 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:50:21,089 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:50:21,090 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:51:38,270 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:51:38,290 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:51:38,291 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:52:15,800 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:52:15,820 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:52:15,821 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:52:25,231 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:52:25,251 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:52:25,252 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:52:31,861 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:52:31,880 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:52:31,881 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:52:46,091 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:52:46,111 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:52:46,112 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:54:08,249 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:54:08,269 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:54:08,270 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:56:11,324 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:56:11,345 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:56:11,345 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:57:34,657 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:57:34,677 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:57:34,678 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:58:57,703 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:58:57,723 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:58:57,724 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:59:31,474 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:59:31,495 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:59:31,496 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:59:44,120 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:59:44,141 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:59:44,142 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:59:51,995 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:59:52,015 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:59:52,016 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 17:59:58,948 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 17:59:58,969 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 17:59:58,970 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:00:28,035 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:00:28,056 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:00:28,057 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:01:22,989 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:01:23,010 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:01:23,010 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:01:52,882 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:01:52,902 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:01:52,903 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:02:48,318 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:02:48,338 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:02:48,339 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:04:42,031 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:04:42,051 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:04:42,052 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:04:51,490 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:04:51,510 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:04:51,511 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:05:36,187 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:05:36,207 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:05:36,208 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:05:50,131 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:05:50,152 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:05:50,153 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:07:14,771 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:07:14,790 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:07:14,791 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:07:33,319 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:07:33,339 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:07:33,340 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:08:50,057 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:08:50,077 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:08:50,078 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:10:01,491 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:10:01,511 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:10:01,512 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:14:43,612 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:14:43,633 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:14:43,634 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:15:42,523 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:15:42,542 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:15:42,543 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:15:51,216 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:15:51,236 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:15:51,237 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:18:31,252 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:18:31,272 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:18:31,273 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:19:47,442 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:19:47,461 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:19:47,462 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:22:42,368 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:22:42,388 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:22:42,389 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:23:45,833 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:23:45,853 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:23:45,854 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:24:49,873 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:24:49,893 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:24:49,894 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:25:18,522 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:25:18,543 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:25:18,544 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:25:50,541 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:25:50,561 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:25:50,562 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:27:50,074 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:27:50,095 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:27:50,096 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:28:51,341 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:28:51,361 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:28:51,362 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:29:14,842 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:29:14,862 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:29:14,863 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:29:38,740 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:29:38,759 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:29:38,760 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:30:10,427 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:30:10,447 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:30:10,448 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:30:12,611 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0. +2019-10-19 18:30:12,612 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,612 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,612 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,612 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,612 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,612 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,612 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,612 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,612 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,612 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,612 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,612 - DEBUG - findfont: score() = 0.05 +2019-10-19 18:30:12,612 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 0.33499999999999996 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 1.05 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 1.335 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,613 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 10.525 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 11.525 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,614 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 7.698636363636363 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 3.6863636363636365 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,615 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 3.9713636363636367 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 6.698636363636363 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 4.971363636363637 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,616 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 10.525 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 7.413636363636363 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,617 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,618 - DEBUG - findfont: score() = 6.413636363636363 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 4.6863636363636365 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,619 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:30:12,620 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,620 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,620 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,620 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,620 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,620 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,620 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,620 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,620 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000. +2019-10-19 18:30:12,633 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0. +2019-10-19 18:30:12,633 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,633 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,633 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,633 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,633 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,633 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,633 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,633 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,633 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,634 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,634 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,634 - DEBUG - findfont: score() = 0.05 +2019-10-19 18:30:12,634 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,634 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,634 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,634 - DEBUG - findfont: score() = 0.33499999999999996 +2019-10-19 18:30:12,634 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,634 - DEBUG - findfont: score() = 1.05 +2019-10-19 18:30:12,634 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,634 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,634 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,634 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,634 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 1.335 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:30:12,635 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 10.525 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 11.525 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 7.698636363636363 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,636 - DEBUG - findfont: score() = 3.6863636363636365 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 3.9713636363636367 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 6.698636363636363 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 4.971363636363637 +2019-10-19 18:30:12,637 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:30:12,638 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 10.525 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 7.413636363636363 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,639 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 6.413636363636363 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,640 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 4.6863636363636365 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:30:12,641 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:30:12,641 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000. +2019-10-19 18:30:56,399 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:30:56,420 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:30:56,421 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:32:03,305 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:32:03,325 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:32:03,326 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:32:25,305 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:32:25,324 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:32:25,325 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:32:36,474 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:32:36,494 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:32:36,495 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:32:37,672 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0. +2019-10-19 18:32:37,672 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,672 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,672 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,672 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,672 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,672 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,672 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,672 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,672 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 0.05 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 0.33499999999999996 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 1.05 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,673 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 1.335 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 10.525 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,674 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 11.525 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 7.698636363636363 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 3.6863636363636365 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,675 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 3.9713636363636367 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 6.698636363636363 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 4.971363636363637 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,676 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 10.525 +2019-10-19 18:32:37,677 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 7.413636363636363 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,678 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 6.413636363636363 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,679 - DEBUG - findfont: score() = 4.6863636363636365 +2019-10-19 18:32:37,680 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,680 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,680 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,680 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:32:37,680 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,680 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,680 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,680 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,680 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,680 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,680 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,680 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,680 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000. +2019-10-19 18:32:37,690 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0. +2019-10-19 18:32:37,690 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 0.05 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 0.33499999999999996 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 1.05 +2019-10-19 18:32:37,691 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 1.335 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,692 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 10.525 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 11.525 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 7.698636363636363 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,693 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 3.6863636363636365 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 3.9713636363636367 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,694 - DEBUG - findfont: score() = 6.698636363636363 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 4.971363636363637 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,695 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 10.525 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 7.413636363636363 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,696 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 6.413636363636363 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,697 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 4.6863636363636365 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:32:37,698 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:32:37,699 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000. +2019-10-19 18:33:35,890 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:33:35,911 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:33:35,912 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:33:37,090 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0. +2019-10-19 18:33:37,090 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,090 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,090 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,090 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,090 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,090 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,090 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,090 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 0.05 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 0.33499999999999996 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 1.05 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,091 - DEBUG - findfont: score() = 1.335 +2019-10-19 18:33:37,092 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,092 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,092 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,092 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,092 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,092 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,092 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,092 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,092 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,092 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,092 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,092 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,092 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 10.525 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 11.525 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 7.698636363636363 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,093 - DEBUG - findfont: score() = 3.6863636363636365 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 3.9713636363636367 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 6.698636363636363 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,094 - DEBUG - findfont: score() = 4.971363636363637 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:33:37,095 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 10.525 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 7.413636363636363 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:33:37,096 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 6.413636363636363 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,097 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 4.6863636363636365 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,098 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,098 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000. +2019-10-19 18:33:37,109 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0. +2019-10-19 18:33:37,109 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,109 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,109 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,109 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,109 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,109 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,109 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,109 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,109 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,109 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,109 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 0.05 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 0.33499999999999996 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 1.05 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 1.335 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,110 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 10.525 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 11.525 +2019-10-19 18:33:37,111 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 7.698636363636363 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 3.6863636363636365 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,112 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 3.9713636363636367 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 6.698636363636363 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 4.971363636363637 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,113 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 10.525 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 7.413636363636363 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,114 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,115 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 6.413636363636363 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 11.335 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 11.24 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 10.145 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 10.24 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 4.6863636363636365 +2019-10-19 18:33:37,116 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,117 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,117 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,117 - DEBUG - findfont: score() = 11.145 +2019-10-19 18:33:37,117 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,117 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,117 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,117 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,117 - DEBUG - findfont: score() = 10.335 +2019-10-19 18:33:37,117 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,117 - DEBUG - findfont: score() = 10.05 +2019-10-19 18:33:37,117 - DEBUG - findfont: score() = 11.05 +2019-10-19 18:33:37,117 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000. +2019-10-19 18:33:47,085 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:33:47,106 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:33:47,107 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:33:50,832 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:33:50,851 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:33:50,852 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:34:11,004 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:34:11,025 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:34:11,026 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:41:06,934 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:41:06,954 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:41:06,955 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:41:13,067 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:41:13,088 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:41:13,089 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:41:33,700 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:41:33,720 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:41:33,720 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:42:16,689 - DEBUG - $HOME=/home/blendux +2019-10-19 18:42:16,689 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib +2019-10-19 18:42:16,689 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data +2019-10-19 18:42:16,695 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc +2019-10-19 18:42:16,696 - DEBUG - matplotlib version 3.1.1 +2019-10-19 18:42:16,696 - DEBUG - interactive is False +2019-10-19 18:42:16,697 - DEBUG - platform is linux +2019-10-19 18:42:16,697 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'random', 'math', 'hashlib', '_hashlib', '_blake2', '_sha3', 'bisect', '_bisect', '_random', 'concurrent', 'concurrent.futures', 'concurrent.futures._base', 'logging', 'time', 'traceback', 'linecache', 'tokenize', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'token', 'weakref', '_weakrefset', 'collections.abc', 'string', '_string', 'threading', 'atexit', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 'datetime', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket'] +2019-10-19 18:42:16,730 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib +2019-10-19 18:42:16,731 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json +2019-10-19 18:42:16,826 - DEBUG - Loaded backend qt5agg version unknown. +2019-10-19 18:42:16,836 - DEBUG - Loaded backend tkagg version unknown. +2019-10-19 18:42:16,837 - DEBUG - Loaded backend TkAgg version unknown. +2019-10-19 18:42:18,814 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:42:18,834 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:42:18,836 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:42:30,148 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:42:30,166 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:42:30,167 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:42:37,423 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:42:37,443 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:42:37,444 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:43:55,774 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:43:55,795 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:43:55,796 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt +2019-10-19 18:44:05,033 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt +2019-10-19 18:44:05,052 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt +2019-10-19 18:44:05,053 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt -- cgit v1.2.3